diff --git a/src/Mod/CMakeLists.txt b/src/Mod/CMakeLists.txt index 99ba91dd5f84..557ad8065255 100644 --- a/src/Mod/CMakeLists.txt +++ b/src/Mod/CMakeLists.txt @@ -53,5 +53,6 @@ add_subdirectory(Plot) add_subdirectory(Spreadsheet) +add_subdirectory(DDA) diff --git a/src/Mod/DDA/App/AppDDA.cpp b/src/Mod/DDA/App/AppDDA.cpp new file mode 100644 index 000000000000..7b867c84c5b8 --- /dev/null +++ b/src/Mod/DDA/App/AppDDA.cpp @@ -0,0 +1,50 @@ +/*************************************************************************** + * Copyright (c) YEAR YOUR NAME * + * * + * 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 +#endif + +#include + + +/* registration table */ +extern struct PyMethodDef DDA_methods[]; + +PyDoc_STRVAR(module_DDA_doc, +"This module is the DDA module."); + + +/* Python entry */ +extern "C" { +void DDAAppExport initDDA() { + + // ADD YOUR CODE HERE + // + // + (void) Py_InitModule3("DDA", DDA_methods, module_DDA_doc); /* mod name, table ptr */ + Base::Console().Log("Loading DDA module... done\n"); +} + +} // extern "C" diff --git a/src/Mod/DDA/App/AppDDAPy.cpp b/src/Mod/DDA/App/AppDDAPy.cpp new file mode 100644 index 000000000000..cf9b0f6c68c2 --- /dev/null +++ b/src/Mod/DDA/App/AppDDAPy.cpp @@ -0,0 +1,38 @@ +/*************************************************************************** + * Copyright (c) YEAR YOUR NAME * + * * + * 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_ +#endif + +#include + +#include +#include +#include + + +/* registration table */ +struct PyMethodDef DDA_methods[] = { + {NULL, NULL} /* end of table marker */ +}; diff --git a/src/Mod/DDA/App/CMakeLists.txt b/src/Mod/DDA/App/CMakeLists.txt new file mode 100644 index 000000000000..d53d998688b6 --- /dev/null +++ b/src/Mod/DDA/App/CMakeLists.txt @@ -0,0 +1,46 @@ + +include_directories( + ${Boost_INCLUDE_DIRS} + ${OCC_INCLUDE_DIR} + ${PYTHON_INCLUDE_PATH} + ${ZLIB_INCLUDE_DIR} + ${XERCESC_INCLUDE_DIR} +) + +set(DDA_LIBS + FreeCADApp +) + +SET(DDA_SRCS + AppDDA.cpp + AppDDAPy.cpp + PreCompiled.cpp + PreCompiled.h +) + +add_library(DDA SHARED ${DDA_SRCS}) +target_link_libraries(DDA ${DDA_LIBS}) + + +fc_target_copy_resource(DDA + ${CMAKE_SOURCE_DIR}/src/Mod/DDA + ${CMAKE_BINARY_DIR}/Mod/DDA + Init.py) + +if(MSVC) + set_target_properties(DDA PROPERTIES SUFFIX ".pyd") + set_target_properties(DDA PROPERTIES DEBUG_OUTPUT_NAME "DDA_d") + set_target_properties(DDA PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/Mod/DDA) + set_target_properties(DDA PROPERTIES PREFIX "../") +elseif(MINGW) + set_target_properties(DDA PROPERTIES SUFFIX ".pyd") + set_target_properties(DDA PROPERTIES DEBUG_OUTPUT_NAME "DDA_d") + set_target_properties(DDA PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/Mod/DDA) + set_target_properties(DDA PROPERTIES PREFIX "") +else(MSVC) + set_target_properties(DDA PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/Mod/DDA) + set_target_properties(DDA PROPERTIES PREFIX "") + set_target_properties(Fem PROPERTIES INSTALL_RPATH ${INSTALL_RPATH}) +endif(MSVC) + +install(TARGETS DDA DESTINATION lib) diff --git a/src/Mod/DDA/App/Makefile.am b/src/Mod/DDA/App/Makefile.am new file mode 100644 index 000000000000..4cd8b4f55267 --- /dev/null +++ b/src/Mod/DDA/App/Makefile.am @@ -0,0 +1,47 @@ + +lib_LTLIBRARIES=libDDA.la DDA.la + +libDDA_la_SOURCES=\ + AppDDAPy.cpp \ + PreCompiled.cpp \ + PreCompiled.h + +includedir = @includedir@/Mod/DDA/App + +# the library search path. +libDDA_la_LDFLAGS = -L../../../Base -L../../../App $(all_libraries) \ + -version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@ +libDDA_la_CPPFLAGS = -DDDAAppExport= + +libDDA_la_LIBADD = \ + @BOOST_SYSTEM_LIB@ \ + -l@PYTHON_LIB@ \ + -lxerces-c \ + -lFreeCADBase \ + -lFreeCADApp + +#-------------------------------------------------------------------------------------- +# Loader of libDDA + +DDA_la_SOURCES=\ + AppDDA.cpp + +# the library search path. +DDA_la_LDFLAGS = $(libDDA_la_LDFLAGS) -module -avoid-version +DDA_la_CPPFLAGS = $(libDDA_la_CPPFLAGS) + +DDA_la_LIBADD = \ + $(libDDA_la_LIBADD) \ + -lDDA + +DDA_la_DEPENDENCIES = libDDA.la + +#-------------------------------------------------------------------------------------- + +# set the include path found by configure +AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes) + +libdir = $(prefix)/Mod/DDA + +EXTRA_DIST = \ + CMakeLists.txt diff --git a/src/Mod/DDA/App/PreCompiled.cpp b/src/Mod/DDA/App/PreCompiled.cpp new file mode 100644 index 000000000000..59619b4a2a35 --- /dev/null +++ b/src/Mod/DDA/App/PreCompiled.cpp @@ -0,0 +1,24 @@ +/*************************************************************************** + * Copyright (c) YEAR YOUR NAME * + * * + * 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" diff --git a/src/Mod/DDA/App/PreCompiled.h b/src/Mod/DDA/App/PreCompiled.h new file mode 100644 index 000000000000..bc7d6a059a85 --- /dev/null +++ b/src/Mod/DDA/App/PreCompiled.h @@ -0,0 +1,61 @@ +/*************************************************************************** + * Copyright (c) YEAR YOUR NAME * + * * + * 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 APP_PRECOMPILED_H +#define APP_PRECOMPILED_H + +#include + +// Exporting of App classes +#ifdef FC_OS_WIN32 +# define DDAAppExport __declspec(dllexport) +#else // for Linux +# define DDAAppExport +#endif + +#ifdef _PreComp_ + +// standard +#include +#include +#include + +// STL +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +// Xerces +#include + +#endif //_PreComp_ + +#endif + diff --git a/src/Mod/DDA/Base.py b/src/Mod/DDA/Base.py new file mode 100644 index 000000000000..09b241dcf11a --- /dev/null +++ b/src/Mod/DDA/Base.py @@ -0,0 +1,1946 @@ +# coding=gbk + +#*************************************************************************** +#* * +#* Copyright (c) 2009, 2010 * +#* Xiaolong Cheng * +#* * +#* 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, Part, math, sys, os, Image, Drawing, WorkingPlane +from FreeCAD import Vector +#from draftlibs import fcvec, fcgeo +import fcvec, fcgeo +from pivy import coin +from PyQt4 import QtGui , QtCore +import PartGui + + +#--------------------------------------------------------------------------- +# General functions +#--------------------------------------------------------------------------- + +__currentProjectPath__ = r'D:/DDAProject' +__workbenchPath__ = r'D:/Program Files (x86)/FreeCAD0.13/Mod/DDA' +__radius4boltEndpoint__ = 0.01 +__radius4Points__ = 1 +__windowInfo__ = [] # xmin , xmax , ymin , ymax + +DDAStages = ['PreDL','DL','DC','DF','DG'] +__currentStage__ = None + +StepForStage = ['FirstStep' , 'ShapesAvailable' , 'SpecialStep'] +__currentStep__ = None + + + +__ifGraphLatest__ = False + +# brush colors come from Mr. Shi's code +__brushColors__ = [( 0.0 , 0.0 , 0.0 , 1.0 ) ,( 0.0 , 0.4 , 0.4 , 1.0 ) ,( 0.0 , 0.4 , 0.0 , 1.0 ) + ,( 0.0 , 0.6 , 0.0 , 1.0 ) ,( 0.0 , 0.8 , 0.0 , 1.0 ) ,( 0.0 , 1.0 , 0.0 , 1.0 ) + ,( 0.0 , 1.0 , 0.2 , 1.0 ) ,( 0.0 , 0.6 , 0.6 , 1.0 ) ,( 0.0 , 0.4 , 0.8 , 1.0 ) + ,( 0.0 , 0.4 , 0.8 , 1.0 ) ,( 0.0 , 0.2 , 1.0 , 1.0 ) ,(1.0 , 1.0 , 1.0 , 1.0)] + +# pen colors come from Mr. Shi's code +__penColors__ = [( 0.0 , 0.0 , 0.0 , 1.0 ) ,( 0.0 , 0.0 , 0.0 , 1.0 ) ,( 0.0 , 1.0 , 0.0 , 1.0 ) + ,( 0.0 , 0.0 , 1.0 , 1.0 ) ,( 1.0 , 0.0 , 0.0 , 1.0 ) ,( 1.0 , 0.0 , 1.0 , 1.0 ) ] + +__shapeBeModifying__ = [None , None , None] # docName , objName , subElement +__clearShapeModifyingNodes__ = False + +def ifGraphLatest(): + return __ifGraphLatest__ + + + +def sleepQT(seconds): + t=QtCore.QTimer() + e=QtCore.QEventLoop() + QtCore.QObject.connect(t,QtCore.SIGNAL("timeout()"),e,QtCore.SLOT("quit()")) + t.setSingleShot(True) + t.start(seconds*1000) # make a pause of 20 s + e.exec_() # stops here until the timeout() signal is emitted + + +def getRealTypeAndIndex(objName): + name = objName + for i in range(1 , len(name)): + if not name[-i] in '1234567890': + if i==1: + break + else: + No = int(name[len(name)-i+1:]) + return name[:len(name)-i+1] , No + return name , 0 + +def setGraphLatest(): + ''' + graph is latest + ''' + __ifGraphLatest__ = True + +def getDatabaser4CurrentStage(): + import DDADatabase + if __currentStage__=='PreDL': + return DDADatabase.dl_database + elif __currentStage__ == 'DL': + return DDADatabase.dc_inputDatabase + elif __currentStage__== 'DC' or __currentStage__== 'DF': + return DDADatabase.df_inputDatabase + return None + + +def changeStage(stage): + ''' + there are 4 stages for DDA : 'DL','DC','DF','DG' + :param id: stage index + ''' + assert stage in DDAStages + global __currentStage__ + __currentStage__ = stage + print '##############\n#change to tage : ' , __currentStage__ , '\n############' + +def changeStep4Stage(step): + ''' + there are 3 steps for one stage : 'FirstStep' , 'ShapesAvailable' , 'SpecialStep' + :param id: stage index + ''' + assert step in StepForStage + global __currentStage__ , __currentStep__ + __currentStep__ = step + print '##############\n#change to step \'' , step , '\' in stage : ' , __currentStage__ , '\n############' + + +def setGraphRevised(): + ''' + graph has been revised + ''' + __ifGraphLatest__ = False + + +def showErrorMessageBox( title , text): + box = QtGui.QMessageBox( QtGui.QMessageBox.Critical , title , text ) # 3个参数分别为图标,title,和text + box.exec_() + + +def typecheck (args_and_types, name="?"): + "typecheck([arg1,type),(arg2,type),...]): checks arguments types" + for v, t in args_and_types: + if not isinstance (v, t): + w = "typecheck[" + str(name) + "]: " + w += str(v) + " is not " + str(t) + "\n" + FreeCAD.Console.PrintWarning(w) + raise TypeError("Draft." + str(name)) + + +def tolerance(): + "tolerance(): returns the tolerance value from Draft user settings" + return 0.01 + +def getParam(param , index = 0): + ''' + all the parameters are from Draft.getParam + :param param: parameter name + :param index: if param is color , index is colorIndex + ''' + if param == "snapRange" : + return 4 + elif param == "gridSpacing": + return 1 + elif param == "gridEvery": + return 10 + elif param == "UiMode": + return 0 + elif param == "linewidth": + return 2 + elif param == "textheight": + return 10 + elif param == "constructioncolor": + return 746455039 + elif param == "color": + return 255 + elif param == "snapcolor": + return 255 + elif param == "modconstrain": + return 0 + elif param == "modsnap": + return 1 + elif param == "modalt": + return 2 + elif param == "BorderLineColor": + return ( 0.0 , 0.0 , 0.0 ) + elif param == "BoundaryLineColor": + return ( 0.0 , 0.0 , 0.0 ) + elif param == "BlockColor": + return __brushColors__[index] + elif param == "BlockBoundaryLineColor": + return __penColors__[index] + elif param == "JointLineColor": + return __penColors__[index] + elif param == "TunnelLineColor": + return __penColors__[index] + elif param == "AdditionalLineColor": + return ( 0.0 , 0.0 , 0.0 ) + elif param == "MaterialLineColor": + return ( 0.0 , 0.0 , 1.0) + elif param == "TmpBoltElementColor": + return ( 0.0 , 1.0 , 0.0) + elif param == "BoltElementColor": + return ( 0.0 , 1.0 , 0.0) + elif param == "FixedPointColor": +# p = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/DDA") +# print 'fixed point color :' , p.GetUnsigned('fixedpointcolor') + return ( 1.0 , 0.0 , 0.0) + elif param == "LoadingPointColor": +# p = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/DDA") +# print 'loading point color :' , p.GetUnsigned('loadingpointcolor') + return ( 1.0 , 0.0 , 1.0) + elif param == "MeasuredPointColor": + return ( 0.0 , 1.0 , 1.0) + elif param == "HolePointColor": + return ( 0.8 , 0.8 , 0.0) +# else : +# FreeCAD.Console.PrintError('type \'%s\' not found\n'% param) + +def getType(obj): + "getType(object): returns the Draft type of the given object" + if "Proxy" in obj.PropertiesList: + if hasattr(obj.Proxy, "Type"): + return obj.Proxy.Type + if obj.isDerivedFrom("Part::Feature"): + return "Part" + if (obj.Type == "App::Annotation"): + return "Annotation" + if obj.isDerivedFrom("Mesh::Feature"): + return "Mesh" + return "Unknown" + +def dimSymbol(): + "returns the current dim symbol from the preferences as a pivy SoMarkerSet" + s = getParam("dimsymbol") + marker = coin.SoMarkerSet() + if s == 0: marker.markerIndex = coin.SoMarkerSet.CIRCLE_FILLED_5_5 + elif s == 1: marker.markerIndex = coin.SoMarkerSet.CIRCLE_FILLED_7_7 + elif s == 2: marker.markerIndex = coin.SoMarkerSet.CIRCLE_FILLED_9_9 + elif s == 3: marker.markerIndex = coin.SoMarkerSet.CIRCLE_LINE_5_5 + elif s == 4: marker.markerIndex = coin.SoMarkerSet.CIRCLE_LINE_7_7 + elif s == 5: marker.markerIndex = coin.SoMarkerSet.CIRCLE_LINE_9_9 + elif s == 6: marker.markerIndex = coin.SoMarkerSet.SLASH_5_5 + elif s == 7: marker.markerIndex = coin.SoMarkerSet.SLASH_7_7 + elif s == 8: marker.markerIndex = coin.SoMarkerSet.SLASH_9_9 + elif s == 9: marker.markerIndex = coin.SoMarkerSet.BACKSLASH_5_5 + elif s == 10: marker.markerIndex = coin.SoMarkerSet.BACKSLASH_7_7 + elif s == 11: marker.markerIndex = coin.SoMarkerSet.BACKSLASH_9_9 + return marker + + +def formatObject(target, origin=None): + ''' + formatObject(targetObject,[originObject]): This function applies + to the given target object the current properties + set on the toolbar (line color and line width), + or copies the properties of another object if given as origin. + It also places the object in construction group if needed. + ''' + pass + +def getSelection(): + "getSelection(): returns the current FreeCAD selection" + return FreeCADGui.Selection.getSelection() + +def select(objs): + "select(object): deselects everything and selects only the passed object or list" + FreeCADGui.Selection.clearSelection() + if not isinstance(objs, list): + objs = [objs] + for obj in objs: + FreeCADGui.Selection.addSelection(obj) + +def recomputeDocument(): + ''' + recompute FreeCAD.ActiveDocument + ''' + FreeCAD.ActiveDocument.recompute() + + +def makeWire(pointslist, closed=False, placement=None, face=True, support=None , fname = 'Line' , colorIndex = 0): + '''makeWire(pointslist,[closed],[placement]): Creates a Wire object + from the given list of vectors. If closed is True or first + and last points are identical, the wire is closed. If face is + true (and wire is closed), the wire will appear filled. Instead of + a pointslist, you can also pass a Part Wire.''' + if not isinstance(pointslist, list): + nlist = [] + for v in pointslist.Vertexes: + nlist.append(v.Point) + if fcgeo.isReallyClosed(pointslist): + nlist.append(pointslist.Vertexes[0].Point) + pointslist = nlist + if placement: typecheck([(placement, FreeCAD.Placement)], "makeWire") + obj = FreeCAD.ActiveDocument.addObject("Part::Part2DObjectPython", fname) + _Wire(obj) + _ViewProviderWire(obj.ViewObject) + obj.Points = pointslist + obj.Closed = closed + if closed: + if pointslist[0] != pointslist[-1]: + pointslist.append(pointslist[0]) + obj.Support = support + obj.ViewObject.LineColor = getParam(fname+'Color' , colorIndex) + if not face: obj.ViewObject.DisplayMode = "Wireframe" + if placement: obj.Placement = placement + formatObject(obj) + select(obj) + FreeCAD.ActiveDocument.recompute() + + setGraphRevised() + + return obj + +def addShapeMover(docName , objName , subName , point): + assert isinstance(docName , str) and isinstance(objName , str) and isinstance(subName , str) + removeShapeMover() + import Part + + # create only one for the node. Create node every time will occur bugs + # for that FreeCAD updates graphs only when script done, this will occure bugs + # if user click objects one by one. For this situation, FreeCAD will create + # 'ABC', 'ABC001' ... at end of script before I delete the first 'ABC' + # I will try to fix the bug later by adding node actually + obj = FreeCAD.ActiveDocument.getObject("ShapeMover") + if not obj: + obj = FreeCAD.ActiveDocument.addObject("Part::FeaturePython","ShapeMover") + _ShapeModifier(obj) + _ViewProviderDDA(obj.ViewObject) + obj.RelatedDocumentName = docName + obj.RelatedObjectName = objName + obj.RelatedSubElement = subName + shape = Part.Vertex(point) + obj.Shape = shape + obj.ViewObject.PointSize = 10 + obj.ViewObject.Visibility = True + print '\tShapeMover added' + +def removeShapeMover(): + hideShapeMover() +# objName = None +# for obj in FreeCAD.ActiveDocument.Objects: +# shapeType , idx = getRealTypeAndIndex(obj.Label) +# if shapeType=='ShapeMover': +# objName = obj.Label +# break +# if objName: +# from drawGui import todo +# todo.delay(FreeCAD.ActiveDocument.removeObject, objName) +# print '\tShapeMover remove ' , objName + +def hideShapeMover(): + tmp = FreeCAD.ActiveDocument.getObject('ShapeMover') + if tmp: + tmp.ViewObject.Visibility = False + + +def addShapeModifier(docName , objName , subName , point1 , point2): + assert isinstance(docName , str) and isinstance(objName , str) and isinstance(subName , str) + removeShapeModifier() + import Part + # create only one for the node. Create node every time will occur bugs + # for that FreeCAD updates graphs only when script done, this will occure bugs + # if user click objects one by one. For this situation, FreeCAD will create + # 'ABC', 'ABC001' ... at end of script before I delete the first 'ABC' + # I will try to fix the bug later by adding node actually + obj = FreeCAD.ActiveDocument.getObject("ShapeModifier") + if not obj: + obj = FreeCAD.ActiveDocument.addObject("Part::FeaturePython","ShapeModifier") + _ShapeModifier(obj) + _ViewProviderDDA(obj.ViewObject) + obj.Points = [point1 , point2] + obj.ViewObject.PointSize = 10 + obj.ViewObject.Visibility = True + print '\tShapeModifier added' + +def removeShapeModifier(): + hideShapeModifier() +# objName = None +# for obj in FreeCAD.ActiveDocument.Objects: +# shapeType , idx = getRealTypeAndIndex(obj.Label) +# if shapeType=='ShapeModifier': +# objName = obj.Label +# break +# if objName: +# from drawGui import todo +# todo.delay(FreeCAD.ActiveDocument.removeObject, objName) +# print '\tShapeModifier remove ' , objName + +def hideShapeModifier(): + tmp = FreeCAD.ActiveDocument.getObject('ShapeModifier') + if tmp: + tmp.ViewObject.Visibility = False + +def checkIfAnyObjectsExisting(): + return len(FreeCAD.ActiveDocument.Objects)>0 + + +#def __confirmViewProvider4Lines(fname , viewObject): +# if fname=='AdditionalLine': +# _ViewProviderAdditionalLines(viewObject) +# elif fname == 'MaterialLine': +# _ViewProviderMaterialLine(viewObject) +# elif fname == 'BoltElement': +# _ViewProviderBoltElement(viewObject) +# elif fname == 'TmpBoltElement': +# _ViewProviderBoltElement(viewObject) +# elif fname == 'JointLine': +# _ViewProviderJointLines(viewObject) +## elif fname == 'BoundaryLine': +## _ViewProviderBoundaryLines(viewObject) +# else: +# raise Exception('unkown shapes') + +def addLines2Document(shapeType , ifStore2Database=False , args=None, closed=False): + obj = FreeCAD.ActiveDocument.getObject(shapeType) + if not obj: + obj = FreeCAD.ActiveDocument.addObject("Part::FeaturePython", shapeType) + _Lines(obj) + _ViewProviderDDALines(obj.ViewObject) + + if ifStore2Database: + database = getDatabaser4CurrentStage() + database.add(shapeType=shapeType, idxes=[0], args=args, ifRecord=True) + + obj.ViewObject.RedrawTrigger = True + return obj + +def addPolyLine2Document(shapeType , ifStore2Database=False , pointsList=None, closed=False): + obj = FreeCAD.ActiveDocument.getObject(shapeType) + if not obj: + obj = FreeCAD.ActiveDocument.addObject("Part::FeaturePython", shapeType) + _Lines(obj) + _ViewProviderDDAPolyLines(obj.ViewObject) + + if closed: + if pointsList[0] != pointsList[-1]: + pointsList.append(pointsList[0]) + + if ifStore2Database: # polyLines only lives in DL part + from DDADatabase import dl_database + from loadDataTools import DDAPolyLine + dl_database.add(shapeType, [0] ,[DDAPolyLine(pointsList,1)] , ifRecord = True) + + obj.ViewObject.RedrawTrigger = True + return obj + + +def addCircles2Document(shapeType , ifStore2Database=False , pts=None , ifRecord=False): + obj = FreeCAD.ActiveDocument.getObject(shapeType) + if not obj: + obj = FreeCAD.ActiveDocument.addObject("Part::FeaturePython", shapeType) + _Lines(obj) + _ViewProviderDDAPoint(obj.ViewObject) + + if ifStore2Database: + from loadDataTools import DDAPoint + for p in pts: + assert isinstance(p , DDAPoint) + + database = getDatabaser4CurrentStage() + assert database + database.add(shapeType, [0] , pts,ifRecord) + + obj.ViewObject.RedrawTrigger = True + return obj + + +def makeCircle(center , radius, placement=None, face=False, support=None, fname = 'Circle'): + '''makeCircle(radius,[placement,face,startangle,endangle]): Creates a circle + object with given radius. If placement is given, it is + used. If face is False, the circle is shown as a + wireframe, otherwise as a face. If startangle AND endangle are given + (in degrees), they are used and the object appears as an arc.''' +# if placement: typecheck([(placement, FreeCAD.Placement)], "makeCircle") + obj = FreeCAD.ActiveDocument.addObject("Part::Part2DObjectPython", fname) + _Circle(obj) + _ViewProviderDDAPoint(obj.ViewObject) + obj.Radius = radius + obj.ViewObject.Center = center + obj.ViewObject.BlockNo = -1 + + if not face: obj.ViewObject.DisplayMode = "Wireframe" + color = getParam(fname+'Color') +# if color: + obj.ViewObject.LineColor = color +# else: +# FreeCAD.Console.PrintError('in DDA.makeCircle. color not found.\n') +# obj.ViewObject.LineColor =( 0.0 , 0.0 , 0.0 , 1.0 ) + if placement: + print '**********placement is not None ************\n' + else: + print '**********placement is None ************\n' + obj.Placement = placement + formatObject(obj) + select(obj) + FreeCAD.ActiveDocument.recompute() + + setGraphRevised() + + return obj + +def addCircle2Document(center , radius, placement=None, face=False, support=None, fname = 'Circle'): +# if placement: typecheck([(placement, FreeCAD.Placement)], "addCircle2Document") + obj = FreeCAD.ActiveDocument.addObject("Part::FeaturePython", fname) + _Circle(obj) + _ViewProviderDDAPoint(obj.ViewObject) + obj.Radius = radius + obj.ViewObject.Center = center + +# if not face: obj.ViewObject.DisplayMode = "Wireframe" +# color = getParam(fname+'Color') +# obj.ViewObject.LineColor = color +# +# formatObject(obj) +# select(obj) +# setGraphRevised() + return obj + +def addPolygon2Document(points , placement=None , support=None , fname = 'Polygon' , materialIndex = 0 , ifColorGradual = False): + if not isinstance(points, list): + nlist = [] + for v in points.Vertexes: + nlist.append(v.Point) + if fcgeo.isReallyClosed(points): + nlist.append(points.Vertexes[0].Point) + points = nlist + obj = FreeCAD.ActiveDocument.addObject("Part::Part2DObjectPython", fname) + _Polygon(obj) + _ViewProviderPolygon(obj.ViewObject) + obj.Points = points +# obj.ViewObject.ShapeColor = getParam(fname+'Color' , colorIndex) +# obj.ViewObject.FaceColor = getParam(fname+'Color' , colorIndex) + obj.ViewObject.Material = 1 + obj.ViewObject.DisplayMode = "Polygon" + formatObject(obj) + select(obj) + setGraphRevised() + return obj + + +def refreshShape4Type(shapeType): + obj = FreeCAD.ActiveDocument.getObject(shapeType) + if obj: + obj.ViewObject.RedrawTrigger = True + +def refreshAllShapes(): + from DDADatabase import __allShapeTypes__ + for shapeType in __allShapeTypes__: + refreshShape4Type(shapeType) + +def updateTmpBoltElements(): + ''' + tmp function for compromise. + setting a array of points to coin, coin didn't update if first n points is the same. + use _ViewProviderDDALines.updateGeometry() and 'TunnelBoltsSelectionTool' for detail problem + ''' + import DDADatabase + import Part + bolts = DDADatabase.tmpBoltElements + lines = [] + for bolt in bolts: + lines.append(Part.makeLine(bolt.startPoint , bolt.endPoint)) + shape = Part.Compound(lines) + + obj = FreeCAD.ActiveDocument.getObject('TmpBoltElement') + if not obj: + obj = FreeCAD.ActiveDocument.addObject("Part::FeaturePython", 'TmpBoltElement') + _Lines(obj) + obj.ViewObject.Proxy = 0 + obj.Shape = shape + FreeCADGui.ActiveDocument.getObject("TmpBoltElement").LineColor = (1.0,0.0,0.0) + + + + + +def refreshPolygons(): + obj = FreeCAD.ActiveDocument.getObject('Block') + if not obj: + obj = FreeCAD.ActiveDocument.addObject("Part::FeaturePython", 'Block') + + _Polygons(obj) + _ViewProviderPolygons(obj.ViewObject) + obj.Points = [] # trigger redraw + + obj.ViewObject.DisplayMode = "Shaded" + obj.ViewObject.RedrawTrigger = True # trigger update colors + + return obj + +def refreshBlockBoundaryLines(): + obj = FreeCAD.ActiveDocument.getObject('BlockBoundaryLines') + if not obj: + obj = FreeCAD.ActiveDocument.addObject("App::FeaturePython", 'BlockBoundaryLines') + + _BlockBoundaryLines(obj) + _ViewProviderBlockBoundaryLines(obj.ViewObject) + obj.Points = [] # trigger redraw + + obj.ViewObject.RedrawTrigger = True # trigger update colors + +################################################## +## +## there is a list contains points of all polygons +## +################################################## +# +#__polygons__ = [] +#__blocksMaterials__ = [] +# + +# +#def initPolygonSets(): +# __polygons__ = [] +# +#def addPolygons2Document(points , placement=None , support=None , fname = 'Polygon'): +# __polygons__.append(points) +# +# +# +#def polygonsAddedDone(): +# obj = FreeCAD.ActiveDocument.addObject("Part::FeaturePython", 'Block') +# _Polygons(obj) +# obj.Points = [] +# +# import Part +# faces = [] +# for pts in __polygons__: +# edges = [] +# for i in range(len(pts)-1): +# edges.append(Part.makeLine(pts[i] , pts[(i+1)])) +# +# wire = Part.Wire(edges) +# faces.append(Part.Face(wire)) +## print 'one face done' +# obj.Shape = Part.Compound(faces) +# +# +# colors = [] +## __blocksMaterials__ = [1]*len(__polygons__) +# for i in range(len(__polygons__)): +# colors.append(__brushColors__[__blocksMaterials__[i]]) +# +# _ViewProviderPolygons(obj.ViewObject) +# obj.ViewObject.DisplayMode = "Shaded" +# obj.ViewObject.Material = 1 +# +## _ViewProviderPolygons(obj.ViewObject) +## obj.ViewObject.Proxy = 0 +## formatObject(obj) +## select(obj) +## setGraphRevised() +# return obj +# +# + +#--------------------------------------------------------------------------- +# Python Features definitions +#--------------------------------------------------------------------------- + +class _ViewProviderDDA: + "A generic View Provider for Draft objects" + + def __init__(self, obj): + obj.Proxy = self + self.appPart = obj.Object # obj.Object.ViewObject is obj + self.owner = obj # obj is ViewObject + + obj.setEditorMode('Deviation' , 2) + obj.setEditorMode('BoundingBox' , 2) + obj.setEditorMode('ControlPoints' , 2) + obj.setEditorMode('DrawStyle' , 2) + obj.setEditorMode('DisplayMode' , 2) + obj.setEditorMode('Lighting' , 2) + obj.setEditorMode('LineWidth' , 2) + obj.setEditorMode('PointColor' , 2) + obj.setEditorMode('PointSize' , 2) + obj.setEditorMode('Selectable' , 2) + obj.setEditorMode('ShapeColor' , 2) + obj.setEditorMode('Transparency' , 2) + obj.setEditorMode('Visibility' , 2) + obj.setEditorMode('LineColor' , 2) + + obj.addProperty("App::PropertyBool", "IfShowAssist", "Base", "if show StartPoint and EndPoint") + obj.setEditorMode('IfShowAssist' , 2) + obj.addProperty("App::PropertyBool", "RedrawTrigger", "Base", "if show StartPoint and EndPoint") + obj.setEditorMode('RedrawTrigger' , 2) + + def attach(self, obj): + self.Object = obj.Object + return + + def updateData(self, fp, prop): + return + + def getDisplayModes(self, obj): + modes = [] + return modes + + def setDisplayMode(self, mode): + return mode + + def onChanged(self, vp, prop): + return + + def __getstate__(self): + return None + + def __setstate__(self, state): + return None + +# def setEdit(self, vp, mode): +# FreeCADGui.runCommand("Draft_Edit") +# return True +# +# def unsetEdit(self, vp, mode): +# if FreeCAD.activeDraftCommand: +# FreeCAD.activeDraftCommand.finish() +# return + +# def getIcon(self): +# return(":/icons/Draft_Draft.svg") + +class _ShapeModifier: + ''' + shape modifier + ''' + def __init__(self, obj): + obj.addProperty("App::PropertyString", "RelatedDocumentName", "Base", + "document name") + obj.addProperty("App::PropertyString", "RelatedObjectName", "Base", + "object name and No.") + obj.addProperty("App::PropertyString", "RelatedSubElement", "Base", + "sub element name and No.") + obj.addProperty("App::PropertyVectorList", "Points", "Base", + "Vertexes of the polygon") + obj.Proxy = self + self.owner = obj + + def execute(self, fp): + self.createGeometry(fp) + + def onChanged(self, fp, prop): + if prop in ["Points"]: + self.createGeometry(fp) + + def createGeometry(self, fp): + pts = self.owner.Points + if len(pts)==2: + p1 = Part.Vertex(pts[0]) + p2 = Part.Vertex(pts[1]) + fp.Shape = Part.Compound([p1,p2]) + + +class _Wire: + "The Wire object" + + def __init__(self, obj): + obj.addProperty("App::PropertyVectorList", "Points", "Base", + "The vertices of the wire") + obj.addProperty("App::PropertyBool", "Closed", "Base", + "If the wire is closed or not") + obj.addProperty("App::PropertyLink", "Base", "Base", + "The base object is the wire is formed from 2 objects") + obj.addProperty("App::PropertyLink", "Tool", "Base", + "The tool object is the wire is formed from 2 objects") + obj.addProperty("App::PropertyVector","Start","Base", + "The start point of this line") + obj.addProperty("App::PropertyVector","End","Base", + "The end point of this line") + obj.addProperty("App::PropertyDistance","FilletRadius","Base","Radius to use to fillet the corners") + obj.Proxy = self + obj.Closed = False + self.Type = "Wire" + + def execute(self, fp): + self.createGeometry(fp) + + def onChanged(self, fp, prop): + if prop in ["Points", "Closed", "Base", "Tool"]: + self.createGeometry(fp) + + def createGeometry(self, fp): + plm = fp.Placement + if fp.Base and (not fp.Tool): # make face + FreeCAD.Console.PrintError("Checking , In DDA.py 's makeWire use fp.Base\n") + if fp.Base.isDerivedFrom("Sketcher::SketchObject"): + shape = fp.Base.Shape.copy() + if fp.Base.Shape.isClosed(): + shape = Part.Face(shape) + fp.Shape = shape + p = [] + for v in shape.Vertexes: p.append(v.Point) + if fp.Points != p: fp.Points = p + elif fp.Base and fp.Tool: # concatenate 2 shapes : fp.Tool and fp.Base + if ('Shape' in fp.Base.PropertiesList) and ('Shape' in fp.Tool.PropertiesList): + sh1 = fp.Base.Shape.copy() + sh2 = fp.Tool.Shape.copy() + shape = sh1.fuse(sh2) + if fcgeo.isCoplanar(shape.Faces): + shape = fcgeo.concatenate(shape) + fp.Shape = shape + p = [] + for v in shape.Vertexes: p.append(v.Point) + if fp.Points != p: fp.Points = p + elif fp.Points: + if fp.Points[0] == fp.Points[-1]: + if not fp.Closed: fp.Closed = True + fp.Points.pop() + if fp.Closed and (len(fp.Points) > 2): + shape = Part.makePolygon(fp.Points + [fp.Points[0]]) + shape = Part.Face(shape) + else: + edges = [] + pts = fp.Points[1:] + lp = fp.Points[0] + for p in pts: + edges.append(Part.Line(lp, p).toShape()) + lp = p + shape = Part.Wire(edges) + fp.Shape = shape + fp.Placement = plm + +class _Lines: + ''' + data class for _ViewProviderLines , + ''' + def __init__(self , obj): +# obj.addProperty("App::PropertyVectorList", "Points", "Base", "Vertexes of the polygon") + obj.Proxy = self + self.Type = "Lines" + + def onChanged(self, fp, prop): + "Do something when a property has changed" + if prop in ["Points"]: + self.createGeometry(fp) + + def execute(self, fp): + "Do something when doing a recomputation, this method is mandatory" + pass + + def createGeometry(self, fp): + pass + +class _BlockBoundaryLines: + ''' + data class for _ViewProviderLines , + ''' + def __init__(self , obj): + obj.addProperty("App::PropertyVectorList", "Points", "Base", "Vertexes of the polygon") + obj.Proxy = self + self.Type = "Lines" + + def onChanged(self, fp, prop): + "Do something when a property has changed" + if prop in ["Points"]: + self.createGeometry(fp) + + def execute(self, fp): + "Do something when doing a recomputation, this method is mandatory" + pass + + def createGeometry(self, fp): + pass + + +class _Polygons: + def __init__(self , obj): + obj.addProperty("App::PropertyVectorList", "Points", "Base", "Vertexes of the polygon") + obj.Proxy = self + self.Type = "Polygon" + + def onChanged(self, fp, prop): + "Do something when a property has changed" + if prop in ["Points"]: + self.createGeometry(fp) + + def execute(self, fp): + "Do something when doing a recomputation, this method is mandatory" + FreeCAD.Console.PrintMessage("Recompute Python Box feature\n") + self.createGeometry(fp) + + def createGeometry(self, fp): + import Part + from DDADatabase import df_inputDatabase + blocks = df_inputDatabase.blocks + + faces = [] + for block in blocks: + pts = [(p[1],p[2],-1) for p in block.vertices] + if pts[0]!=pts[-1]: + pts.append(pts[0]) + edges = [] + for i in range(len(pts)-1): + edges.append(Part.makeLine(pts[i] , pts[(i+1)])) + + + try: + wire = Part.Wire(edges) + faces.append(Part.Face(wire)) + except: + raise +# print 'one face done' + fp.Shape = Part.Compound(faces) + + +class _Circle: + "The Circle object" + + def __init__(self, obj): + obj.Proxy = self + self.owner = obj + obj.addProperty("App::PropertyDistance","Radius","Base", + "Radius of the circle") + + + def execute(self, fp): + self.createGeometry(fp) + + def onChanged(self, fp, prop): + if prop in ["Radius"]: + self.createGeometry(fp) + + def createGeometry(self,fp): + return + import Part + c = self.owner.ViewObject.Center + shape = Part.makeCircle(fp.Radius,self.owner.ViewObject.Center,Vector(0,0,1)) +# center = Part.Vertex(self.owner.ViewObject.Center) + tmp = Vector(c[0] , c[1] , c[2]) + p1 = Vector(tmp[0]-self.owner.Radius/2 , tmp[1] , tmp[2]) + p2 = Vector(tmp[0]+self.owner.Radius/2 , tmp[1] , tmp[2]) + p3 = Vector(tmp[0] , tmp[1]-self.owner.Radius/2 , tmp[2]) + p4 = Vector(tmp[0] , tmp[1]+self.owner.Radius/2 , tmp[2]) + line1 = Part.makeLine(p1 , p2) + line2 = Part.makeLine(p3 , p4) + +# print self.owner.ViewObject.Center +# self.owner.ViewObject.PointSize = 100 + fp.Shape = Part.Compound([shape,line1 , line2]) +# fp.Shape = center + +class _ViewProviderDDAPoint(_ViewProviderDDA): + def __init__(self, obj ): + obj.Proxy = self + self.owner = obj # this viewObject + obj.addProperty("App::PropertyVector", "Center", "Base", "material of the additional lines") + _ViewProviderDDA.__init__(self, obj) + + def onChanged(self, vp, prop): + if prop == "RedrawTrigger": + self.updateGeometry() + + def updateGeometry(self): + label = self.appPart.Label + + # confirm color + color = getParam(label+'Color') + assert color + self.color.rgb.setValue(color[0],color[1],color[2]) + + # get centers + import DDADatabase + database = getDatabaser4CurrentStage() + assert database + + if label=='FixedPoint': + points = database.fixedPoints + elif label=='MeasuredPoint': + points = database.measuredPoints + elif label=='LoadingPoint': + points = database.loadingPoints + elif label=='HolePoint': + points = database.holePoints + + pts = [ p for p in points if p.visible] + self.updateCircels(pts) + + def updateCircels(self, points): + import math + rad = math.pi/180.0 + pts = [] + nums = [] + sum = 0 + + radius = __radius4Points__ + for p in points: + tpts = [] + # circle + for angle in [i*4 for i in range(91)]: + tpts.append((p.x+radius*math.cos(float(angle)*rad) \ + , p.y+radius*math.sin(float(angle)*rad) , 0)) + # cross + tpts.append((p.x-radius , p.y , 0)) + tpts.append((p.x , p.y , 0)) + tpts.append((p.x , p.y+radius , 0)) + tpts.append((p.x , p.y-radius , 0)) + + pts.extend(tpts) + nums.extend(range(sum , sum+len(tpts))) + sum+=len(tpts) + nums.append(-1) + + if len(pts)==0: + self.rootNode.whichChild = coin.SO_SWITCH_NONE + else: + self.rootNode.whichChild = 0 + self.data.point.setValues(0 , len(pts),pts) + self.lineset.coordIndex.setValues(0,len(nums), nums) + + def attach(self , obj): + self.pointMaker = coin.SoSeparator() + + self.drawStyle = coin.SoDrawStyle() +# self.drawStyle.style = coin.SoDrawStyle.LINES + self.drawStyle.lineWidth = 1 +# self.drawStyle.pointSize = 3 + self.pointMaker.addChild(self.drawStyle) + + self.norm = coin.SoNormal() + self.norm.vector.setValue(0,0,1) + self.pointMaker.addChild(self.norm) + + coin.SoNormalBinding() # without this , color will be very ugly + self.normalBinding = coin.SoNormalBinding() + self.normalBinding.value = coin.SoNormalBinding.OVERALL + self.pointMaker.addChild(self.normalBinding) + + self.color = coin.SoBaseColor() + self.color.rgb.setValue(1,0,0) + self.pointMaker.addChild(self.color) + + self.data = coin.SoCoordinate3() + self.pointMaker.addChild(self.data) + + t=coin.SoType.fromName("SoBrepEdgeSet") + self.lineset = t.createInstance() + self.pointMaker.addChild(self.lineset) + + self.rootNode = coin.SoSwitch() + self.rootNode.addChild(self.pointMaker) + + obj.addDisplayMode(self.rootNode,"PointMaker") + + def getDisplayModes(self,obj): + + "Return a list of display modes." + modes=[] + modes.append("PointMaker") + return modes + + def getDefaultDisplayMode(self): + "Return the name of the default display mode. It must be defined in getDisplayModes." + return "PointMaker" + + def setDisplayMode(self,mode): + return mode + +class _ViewProviderDDALines(_ViewProviderDDA): + def __init__(self, obj ): + obj.Proxy = self + self.owner = obj # this viewObject + obj.addProperty("App::PropertyInteger", "Material", "Base", "material of the additional lines") + obj.addProperty("App::PropertyVector", "StartPoint", "Base", "start point of the line") + obj.addProperty("App::PropertyVector", "EndPoint", "Base", "end point of the line") + obj.setEditorMode("StartPoint" , 2) + obj.setEditorMode("EndPoint" , 2) + + + self.ifUpdateLine4StartEndPoint=True + _ViewProviderDDA.__init__(self, obj) + + def attach(self , obj): + self.lines = coin.SoSeparator() + + self.drawStyle = coin.SoDrawStyle() +# self.drawStyle.style = coin.SoDrawStyle.LINES + self.drawStyle.lineWidth = 1 + self.drawStyle.pointSize = 3 + self.lines.addChild(self.drawStyle) + + self.norm = coin.SoNormal() + self.norm.vector.setValue(0,0,1) + self.lines.addChild(self.norm) + + coin.SoNormalBinding() # without this , color will be very ugly + self.normalBinding = coin.SoNormalBinding() + self.normalBinding.value = coin.SoNormalBinding.OVERALL + self.lines.addChild(self.normalBinding) + + # set color for block + self.matColors = coin.SoMaterial() + self.lines.addChild(self.matColors) + + self.tmpMatBind = coin.SoMaterialBinding() + self.tmpMatBind.value = coin.SoMaterialBinding.PER_PART + self.lines.addChild(self.tmpMatBind) + + # point + self.data = coin.SoCoordinate3() + self.lines.addChild(self.data) + + t=coin.SoType.fromName("SoBrepEdgeSet") + self.lineset = t.createInstance() + self.lines.addChild(self.lineset) + + self.rootNode = coin.SoSwitch() + self.rootNode.addChild(self.lines) + + obj.addDisplayMode(self.rootNode,"Lines") + + def updateGeometry(self): + label = self.appPart.Label + import DDADatabase + + if label == 'JointLine': + assert __currentStage__ == 'DL' + + jointLines = DDADatabase.dc_inputDatabase.jointLines + lines = [line for line in jointLines if line.visible] + self.updateLines(lines) + elif label == 'BoltElement': + database = getDatabaser4CurrentStage() + bolts = database.boltElements + lines = [line for line in bolts if line.visible] + self.updateLines(lines) +# elif label == 'TmpBoltElement': +# bolts = DDADatabase.tmpBoltElements +# lines = [line for line in bolts if line.visible] +## if len(lines)>1: # if the first point stay same ,coin won't update +## idx = -1 +## t = lines[idx] +## lines[idx] = lines[0] +## lines[idx] = t +# for line in lines: +# print line.startPoint , ' ' , line.endPoint +# self.updateLines(lines) + + def updateLines(self, lines): + ''' + :param lines: DDALines + ''' + colors = [] + pts = [] + + if len(lines)==0: + self.rootNode.whichChild = coin.SO_SWITCH_NONE + else: + self.rootNode.whichChild = 0 + + for line in lines: + pts.extend([line.startPoint , line.endPoint]) + col = getParam( self.appPart.Label+'Color' , line.materialNo) + assert col + colors.append(col) + + self.data.point.setValues(0 , len(pts),pts) + self.data.point.startEditing() + self.data.point.finishEditing() + self.matColors.diffuseColor.setValues(0,len(colors),colors) + + nums = [] + for i in range(len(pts)/2): + nums.append(2*i) + nums.append(2*i+1) + nums.append(-1) + + self.lineset.coordIndex.setValues(0,len(nums), nums) + self.lineset.coordIndex.startEditing() + self.lineset.coordIndex.finishEditing() + + def showAssistance(self): + ''' + show selected line's StartPoint and EndPoint + ''' + self.owner.setEditorMode('StartPoint' , 0) + self.owner.setEditorMode('EndPoint' , 0) + + self.ifUpdateLine4StartEndPoint = False + try: + objName , objNo , no = self.getOjbName_No_EdgeNo() + except: + return +# print objName , objNo , no + + from DDADatabase import dc_inputDatabase + + if no == -1 : + return + try: + pnt= dc_inputDatabase.jointLines[no-1].startPoint + self.owner.StartPoint = Vector(pnt[0] , pnt[1] , pnt[2]) + except: + print 'whowAssistance point error : ' , pnt , ' no : ' , no + try: + pnt= dc_inputDatabase.jointLines[no-1].endPoint + self.owner.EndPoint = Vector(pnt[0] , pnt[1] , pnt[2]) + except: + print 'whowAssistance point error : ' , pnt , ' no : ' , no + + try: + self.owner.Material = dc_inputDatabase.jointLines[no-1].materialNo + except: + print 'whowAssistance material error : idxes No. ' , no-1 + + self.ifUpdateLine4StartEndPoint = True + + def hideAssistance(self): + ''' + show selected line's StartPoint and EndPoint + ''' + self.owner.setEditorMode('StartPoint' , 2) + self.owner.setEditorMode('EndPoint' , 2) + + def getOjbName_No_EdgeNo(self): + ''' + Gui.Seletion's selected edge of this object + ''' + sel=FreeCADGui.Selection.getSelectionEx() ## give a list of SelectionObject. Note, this is empty if nothing is selected! + s=sel[0] + objNo = 0 + objName = s.Object.Label + tmp = len(objName)-1 + while tmp>0: + if not(objName[tmp]>='0' and objName[tmp]<='9'): + break + tmp-=1 + tmpNo = objName[tmp+1:] + if len(tmpNo)>0: + objNo = int(tmpNo) + objName = objName[:tmp+1] + + + names = s.SubElementNames # sub-element names + if len(names)<2 and len(names[0])==0: + print 'obj : ' , objName , ' sub : ' , names + FreeCAD.Console.PrintError('unknown edge in _ViewProviderJointLines') + return objName , -1 , -1 + i = 0 + name = names[0] + for i in range(len(name)): + if name[i] >='0' and name[i]<='9': + break + i+=1 + num = name[i:] + print 'selected Edge : ' , name , ' -> ' , num + return objName , objNo , int(num) + + def updateLine4StartEndPoint(self, vp, prop): + from DDADatabase import dc_inputDatabase + from loadDataTools import DDALine + objName , objNo , num = self.getOjbName_No_EdgeNo() + tmpLine = dc_inputDatabase.jointLines[num-1] + p1 = vp.getPropertyByName('StartPoint') + p2 = vp.getPropertyByName('EndPoint') + sp = (p1[0] , p1[1] , 0) + ep = (p2[0] , p2[1] , 0) + dc_inputDatabase.changeVertices('JointLine', [num-1]\ + , [DDALine(sp,ep,tmpLine.materialNo)] , ifRecord=True) + self.updateGeometry() + + def onChanged(self, vp, prop): + "Here we can do something when a single property got changed" + FreeCAD.Console.PrintMessage("Change property: " + str(prop) + "\n") + + from DDADatabase import dc_inputDatabase + from loadDataTools import DDALine + + if prop == "RedrawTrigger": + self.updateGeometry() + elif prop == 'Material': + if not self.ifUpdateLine4StartEndPoint: + return + objName , objNo , subIdx = self.getOjbName_No_EdgeNo() + materialNo = vp.getPropertyByName('Material') + material2 = dc_inputDatabase.jointLines[subIdx].materialNo + if dc_inputDatabase.jointLines[subIdx].materialNo \ + == materialNo: + return + + dc_inputDatabase.changeMaterial(self.appPart.Label, [subIdx-1]\ + , materialNo , ifRecord=True) + self.updateGeometry() + elif prop == 'StartPoint': + if self.ifUpdateLine4StartEndPoint: + self.updateLine4StartEndPoint(vp, prop) + elif prop == 'EndPoint': + if self.ifUpdateLine4StartEndPoint: + self.updateLine4StartEndPoint(vp, prop) + elif prop == 'IfShowAssist': + if self.owner.IfShowAssist: + self.showAssistance() + else: + self.hideAssistance() + + def getDisplayModes(self,obj): + + "Return a list of display modes." + modes=[] + modes.append("Lines") + return modes + + def getDefaultDisplayMode(self): + "Return the name of the default display mode. It must be defined in getDisplayModes." + return "Lines" + + def setDisplayMode(self,mode): + return mode + +class _ViewProviderDDAPolyLines(_ViewProviderDDA): + def __init__(self, obj ): + obj.Proxy = self + self.owner = obj # this viewObject + obj.addProperty("App::PropertyInteger", "Material", "Base", "material of the additional lines") + _ViewProviderDDA.__init__(self, obj) + + def attach(self , obj): + self.lines = coin.SoSeparator() + + self.drawStyle = coin.SoDrawStyle() +# self.drawStyle.style = coin.SoDrawStyle.LINES + self.drawStyle.lineWidth = 1 + self.drawStyle.pointSize = 3 + self.lines.addChild(self.drawStyle) + + self.norm = coin.SoNormal() + self.norm.vector.setValue(0,0,1) + self.lines.addChild(self.norm) + + coin.SoNormalBinding() # without this , color will be very ugly + self.normalBinding = coin.SoNormalBinding() + self.normalBinding.value = coin.SoNormalBinding.OVERALL + self.lines.addChild(self.normalBinding) + + # set color for block + self.matColors = coin.SoMaterial() + self.lines.addChild(self.matColors) + + self.tmpMatBind = coin.SoMaterialBinding() + self.tmpMatBind.value = coin.SoMaterialBinding.OVERALL + self.lines.addChild(self.tmpMatBind) + + # points + self.data = coin.SoCoordinate3() + self.lines.addChild(self.data) + + t=coin.SoType.fromName("SoBrepEdgeSet") + self.lineset = t.createInstance() + self.lines.addChild(self.lineset) + + self.rootNode = coin.SoSwitch() + self.rootNode.addChild(self.lines) + + obj.addDisplayMode(self.rootNode,"PolyLines") + + def updateGeometry(self): + import DDADatabase + + lines = None + label = self.appPart.Label # get object' name + + if label == 'BoundaryLine': + lines = DDADatabase.dl_database.boundaryNodes + elif label == 'BorderLine': + lines = DDADatabase.dl_database.borderNodes + elif label == 'AdditionalLines': + lines = DDADatabase.dl_database.additionalLines + assert lines + + tmpLines = [line for line in lines if line.visible] + + color = getParam(label+'Color') + assert color + self.matColors.diffuseColor.setValue(color) + self.updateLines(tmpLines) + + + def updateLines(self, lines): + ''' + :param lines: DDAPolyLines + ''' + nums = [] + sum = 0 + pts = [] + + if len(lines)==0: + self.rootNode.whichChild = coin.SO_SWITCH_NONE + else: + self.rootNode.whichChild = 0 + + for pline in lines: + tpts = list(pline.pts) + pts.extend(tpts) + nums.extend(range(sum , sum+len(tpts))) + nums.append(-1) + sum+= len(tpts) + + self.data.point.setValues(0 , len(pts),pts) + self.lineset.coordIndex.setValues(0,len(nums), nums) + + def onChanged(self, vp, prop): + "Here we can do something when a single property got changed" + FreeCAD.Console.PrintMessage("Change property: " + str(prop) + "\n") + if prop == "RedrawTrigger": + self.updateGeometry() + elif prop == 'Material': + from DDADatabase import dc_inputDatabase + objName , objNo , subIdx = self.getOjbName_No_EdgeNo() + materialNo = p2 = vp.getPropertyByName('Material') + dc_inputDatabase.changeMaterial(self.appPart.Label, [subIdx-1]\ + , materialNo , ifRecord=True) + self.updateGeometry() + + + def getDisplayModes(self,obj): + + "Return a list of display modes." + modes=[] + modes.append("PolyLines") + return modes + + def getDefaultDisplayMode(self): + "Return the name of the default display mode. It must be defined in getDisplayModes." + return "PolyLines" + + def setDisplayMode(self,mode): + return mode + +class _ViewProviderBlockBoundaryLines(_ViewProviderDDA): + def __init__(self, obj ): + _ViewProviderDDA.__init__(self, obj) + + def attach(self , obj): + self.Object = obj.Object + self.lines = coin.SoSeparator() + + self.drawStyle = coin.SoDrawStyle() +# self.drawStyle.style = coin.SoDrawStyle.LINES + self.drawStyle.lineWidth = 1 + self.drawStyle.pointSize = 3 + self.lines.addChild(self.drawStyle) + + self.norm = coin.SoNormal() + self.norm.vector.setValue(0,0,1) + self.lines.addChild(self.norm) + + coin.SoNormalBinding() # without this , color will be very ugly + self.normalBinding = coin.SoNormalBinding() + self.normalBinding.value = coin.SoNormalBinding.OVERALL + self.lines.addChild(self.normalBinding) + + # set color for lines + __baseColor__ = coin.SoBaseColor() + __baseColor__.rgb.setValue( 0.0 , 0.0 , 0.0 ) + self.lines.addChild(__baseColor__) + + # point + self.data = coin.SoCoordinate3() + self.lines.addChild(self.data) + + self.lineset=coin.SoLineSet() + self.lines.addChild(self.lineset) + + obj.addDisplayMode(self.lines,"Lines") + + def updateGeometry(self): + import DDADatabase + + blocks = DDADatabase.df_inputDatabase.blocks + self.updateLines(blocks) + + + def updateLines(self, blocks): + ''' + :param lines: DDALines + ''' + colors = [] + pts = [] + nums = [] + for block in blocks: + tpts = [(p[1],p[2],0) for p in block.vertices] + if tpts[0] != tpts[-1]: tpts.append(tpts[0]) + pts.extend(tpts) + nums.append(len(tpts)) + + self.data.point.setValues(0 , len(pts),pts) + self.lineset.numVertices.setValues(0,len(nums), nums) + + def onChanged(self, vp, prop): + "Here we can do something when a single property got changed" + FreeCAD.Console.PrintMessage("Change property: " + str(prop) + "\n") + + from DDADatabase import dc_inputDatabase + + if prop == "RedrawTrigger": + self.updateGeometry() + + def getDisplayModes(self,obj): + + "Return a list of display modes." + modes=[] + modes.append("Lines") + return modes + + def getDefaultDisplayMode(self): + "Return the name of the default display mode. It must be defined in getDisplayModes." + return "Lines" + + def setDisplayMode(self,mode): + return mode + + +class _ViewProviderAdditionalLines(_ViewProviderDDALines): + ''' + provide graph for additional lines + ''' + def __init__(self, obj ): + _ViewProviderDDALines.__init__(self, obj) + obj.setEditorMode("Points" , 0) + + +class _ViewProviderBoundaryLines(_ViewProviderDDALines): + ''' + provide graph for additional lines + ''' + def __init__(self, obj ): + _ViewProviderDDALines.__init__(self, obj) + obj.setEditorMode("Points" , 0) + + +class _ViewProviderBoltElement(_ViewProviderDDALines): + def __init__(self, obj ): + obj.Proxy = self + self.owner = obj # this viewObject + obj.addProperty("App::PropertyVector", "StartPoint", "Base", "start point of the line") + obj.addProperty("App::PropertyVector", "EndPoint", "Base", "end point of the line") + obj.setEditorMode("Points" , 2) + _ViewProviderDDALines.__init__(self, obj) + + def updateLines(self, vp, prop): + _ViewProviderDDALines.updateLines(self, vp, prop) + +class _ViewProviderMaterialLine(_ViewProviderDDALines): + def __init__(self, obj ): + obj.Proxy = self + obj.addProperty("App::PropertyVector", "StartPoint", "Base", "start point of the line") + obj.addProperty("App::PropertyVector", "EndPoint", "Base", "end point of the line") + obj.addProperty("App::PropertyInteger", "Material", "Base", "material") + +#class _ViewProviderJointLines(_ViewProviderDDALines): +# ''' +# A view provider for the polygon object +# ''' +# def __init__(self, obj ): +# obj.Proxy = self +# self.owner = obj # this viewObject +# obj.addProperty("App::PropertyVector", "StartPoint", "Base", "start point of the line") +# obj.addProperty("App::PropertyVector", "EndPoint", "Base", "end point of the line") +# obj.setEditorMode("Points" , 2) +# obj.setEditorMode("StartPoint" , 2) +# obj.setEditorMode("EndPoint" , 2) +# _ViewProviderDDALines.__init__(self, obj) +# +# def updateLines(self , fp , prop): +# ''' +# "If a property of the handled feature has changed we have the chance to handle this here" +# :param fp: the handled feature +# :param prop: property name +# ''' +# if prop == "Points": +## s = fp.getPropertyByName("Points") +## pts = s +# +# from DDADatabase import dc_inputDatabase +# pts = [] +# for line in dc_inputDatabase.jointLines: +# pts.append(line.startPoint) +# pts.append(line.endPoint) +# +# self.data.point.setValues(0 , len(pts),pts) +# +# nums = [] +# for i in range(len(pts)/2): +# nums.append(2*i) +# nums.append(2*i+1) +# nums.append(-1) +# +# self.lineset.coordIndex.setValues(0,len(nums), nums) +# +# +# file = open(__currentProjectPath__+'/testVector.txt' , 'ab') +# for i in range(len(pts)/2): +# file.write('%f %f %f %f\n'%(pts[2*i].x,pts[2*i].y,pts[2*i+1].x,pts[2*i+1].y)) +# file.close() +# +# +# def showAssistance(self): +# ''' +# show selected line's StartPoint and EndPoint +# ''' +# self.owner.setEditorMode('StartPoint' , 0) +# self.owner.setEditorMode('EndPoint' , 0) +# try: +# objName , objNo , no = self.getOjbName_No_EdgeNo() +# except: +# return +## print objName , objNo , no +# +# if no == -1 : +# return +# try: +# pnt= self.data.point[2*(no-1)] +# self.owner.StartPoint = Vector(pnt[0] , pnt[1] , pnt[2]) +# except: +# print pnt , ' no : ' , no +# try: +# pnt= self.data.point[2*(no-1)+1] +# self.owner.EndPoint = Vector(pnt[0] , pnt[1] , pnt[2]) +# except: +# print pnt , ' no : ' , no +# +# def hideAssistance(self): +# ''' +# show selected line's StartPoint and EndPoint +# ''' +# self.owner.setEditorMode('StartPoint' , 2) +# self.owner.setEditorMode('EndPoint' , 2) +# +# def getOjbName_No_EdgeNo(self): +# ''' +# Gui.Seletion's selected edge of this object +# ''' +# sel=FreeCADGui.Selection.getSelectionEx() ## give a list of SelectionObject. Note, this is empty if nothing is selected! +# s=sel[0] +# objNo = 0 +# objName = s.Object.Label +# tmp = len(objName)-1 +# while tmp>0: +# if not(objName[tmp]>='0' and objName[tmp]<='9'): +# break +# tmp-=1 +# tmpNo = objName[tmp+1:] +# if len(tmpNo)>0: +# objNo = int(tmpNo) +# objName = objName[:tmp+1] +# +# +# names = s.SubElementNames # sub-element names +# if len(names)<2 and len(names[0])==0: +# print 'obj : ' , objName , ' sub : ' , names +# FreeCAD.Console.PrintError('unknown edge in _ViewProviderJointLines') +# return objName , -1 , -1 +# i = 0 +# name = names[0] +# for i in range(len(name)): +# if name[i] >='0' and name[i]<='9': +# break +# i+=1 +# num = name[i:] +# print 'selected Edge : ' , name , ' -> ' , num +# return objName , objNo , int(num) +# +# def onChanged(self, vp, prop): +# "Here we can do something when a single property got changed" +# FreeCAD.Console.PrintMessage("Change property: " + str(prop) + "\n") +# _ViewProviderDDALines.onChanged(self, vp, prop) # handle color or all lines +# +# from DDADatabase import dc_inputDatabase +# +# if prop == 'StartPoint': +# objName , objNo , num = self.getOjbName_No_EdgeNo() +# pts = vp.getPropertyByName('Points') +# pts[2*(num-1)] = vp.getPropertyByName('StartPoint') +# self.owner.Points = pts +# jointLineChanges = dc_inputDatabase.jointLinesChanges +# jointLineChanges[(objNo , num)] = (vp.getPropertyByName('StartPoint'),vp.getPropertyByName('EndPoint')) +## recomputeDocument() +# elif prop == 'EndPoint': +# objName , objNo , num = self.getOjbName_No_EdgeNo() +# pts = vp.getPropertyByName('Points') +# pts[2*(num-1)+1] = vp.getPropertyByName('EndPoint') +# self.owner.Points = pts +# jointLineChanges = dc_inputDatabase.jointLinesChanges +# jointLineChanges[(objNo , num)] = (vp.getPropertyByName('StartPoint'),vp.getPropertyByName('EndPoint')) +## recomputeDocument() +# elif prop == 'IfShowAssist': +# if self.owner.IfShowAssist: +# self.showAssistance() +# else: +# self.hideAssistance() + + +class _ViewProviderPolygons(_ViewProviderDDA): + ''' + A view provider for the polygon object + ''' + def __init__(self, obj ): + obj.addProperty("App::PropertyInteger","Material","Base","Material of the block") + obj.addProperty("App::PropertyInteger","BlockNo","Base","Material of the block") + obj.setEditorMode("Material" , 0) + obj.setEditorMode("BlockNo" , 1) + obj.Proxy = self + _ViewProviderDDA.__init__(self, obj) + self.ifUpdateLine4StartEndPoint=True + + def updateData(self , fp , prop): + ''' + "If a property of the handled feature has changed we have the chance to handle this here" + :param fp: the handled feature + :param prop: property name + ''' + pass + + def getObjName_SubIdx(self): + sels=FreeCADGui.Selection.getSelectionEx() + assert len(sels)>0 + objName = sels[0].SubElementNames[0] + obj , idx = getRealTypeAndIndex(objName) + return sels[0].ObjectName , idx + + def showAssistance(self): + ''' + show selected line's StartPoint and EndPoint + ''' + self.ifUpdateLine4StartEndPoint=False + + sels=FreeCADGui.Selection.getSelectionEx() + assert len(sels)>0 and len(sels[0].SubElementNames)==1 + objName = sels[0].SubElementNames[0] + + self.owner.setEditorMode('BlockNo' , 1) + self.owner.setEditorMode('Material' , 0) + objN , idx = getRealTypeAndIndex(objName) + + self.owner.BlockNo = idx + + from DDADatabase import df_inputDatabase + self.owner.Material = df_inputDatabase.blocks[idx-1].materialNo + + self.ifUpdateLine4StartEndPoint=True + + def hideAssistance(self): + ''' + show selected line's StartPoint and EndPoint + ''' + self.owner.setEditorMode('BlockNo' , 2) + self.owner.setEditorMode('Material' , 2) + + def updateGeometry(self): + colors = [] + from DDADatabase import df_inputDatabase + blocks = df_inputDatabase.blocks + for i in [block.materialNo for block in blocks]: + colors.append(__brushColors__[i]) + self.owner.DiffuseColor = colors + + def onChanged(self, vp, prop): + "Here we can do something when a single property got changed" + FreeCAD.Console.PrintMessage("Change property: " + str(prop) + "\n") + import random + if prop == "RedrawTrigger": + self.updateGeometry() + elif prop == 'IfShowAssist': + if self.owner.IfShowAssist: + self.showAssistance() + else: + self.hideAssistance() + elif prop == 'Material': + if self.ifUpdateLine4StartEndPoint: + from DDADatabase import df_inputDatabase + objName , subIdx = self.getObjName_SubIdx() + subIdx-=1 + materialNo = vp.getPropertyByName('Material') + material2 = df_inputDatabase.blocks[subIdx].materialNo + if df_inputDatabase.blocks[subIdx].materialNo == materialNo: + return + + df_inputDatabase.changeMaterial('Block', [subIdx], materialNo , ifRecord=True) + self.updateGeometry() + +class _ViewProviderWire(_ViewProviderDDA): + "A View Provider for the Wire object" + def __init__(self, obj): + _ViewProviderDDA.__init__(self, obj) + + def attach(self, obj): + self.Object = obj.Object + col = coin.SoBaseColor() + col.rgb.setValue(obj.LineColor[0], + obj.LineColor[1], + obj.LineColor[2]) + self.coords = coin.SoCoordinate3() + self.pt = coin.SoAnnotation() + self.pt.addChild(col) + self.pt.addChild(self.coords) + self.pt.addChild(dimSymbol()) + + def updateData(self, obj, prop): # updataData 就是增加结点,所以只处理最后一个就行了 + if prop == "Points": +# if obj.Points: +# p = obj.Points[-1] +# self.coords.point.setValue((p.x, p.y, p.z)) + if obj.Points: + self.coords.point.setValues(0 , len(obj.Points),obj.Points) + + return + + def onChanged(self, vp, prop): + if prop == "EndArrow": + rn = vp.RootNode + if vp.EndArrow: + rn.addChild(self.pt) + else: + rn.removeChild(self.pt) + return + + def claimChildren(self): + return [self.Object.Base, self.Object.Tool] + +class SelectionObserver: + def __init__(self): + self.lock = False # 同步锁 + + self.__docName = None + self.__objName = None + self.__subElementName = None + + + def __refreshObjs(self): + ''' + remove and add objs that obj.ViewObject.IfShowAssist == True + ''' + for tmp in self.objs: + obj = tmp[0] + names = tmp[1] + FreeCADGui.Selection.removeSelection(obj , names[0]) + FreeCADGui.Selection.addSelection(obj , names[0]) + + def __hideProperties(self,sels): + print 'SelectionObserver -> hide properties ' + FreeCAD.Console.PrintMessage('FreeCAD Message : Seleted objects num > 1\n') + for s in sels: # 获取还在显示辅助信息的对象 + if s.Object.ViewObject.IfShowAssist == True and len(s.SubElementNames)>0 : + s.Object.ViewObject.IfShowAssist = False + self.objs.append(( s.Object , s.SubElementNames[0] )) + self.__refreshObjs() + + def __showproperties4OneObject(self , sels): + if sels[0].Object.ViewObject.IfShowAssist == True: # tigger the 'ViewObject.IfShowAssist' + sels[0].Object.ViewObject.IfShowAssist = False + + sels[0].Object.ViewObject.IfShowAssist = True + self.objs.append(( sels[0].Object , sels[0].SubElementNames[0] )) + self.__refreshObjs() + + def __keepObjectNames(self , docName , objName , subElementName): + self.__docName = docName + self.__objName = objName + self.__subElementName = subElementName + print 'selected ObjectName saved %s -> %s ->%s'%(docName , objName , subElementName) + + def __clearObjectNames(self): + self.__docName = None + self.__objName = None + self.__subElementName = None + print 'selected ObjectName cleared' + + + def __clearShapeModifiers(self): + removeShapeModifier() + removeShapeMover() + print 'clear shape modifying nodes successfully' + +# def clearSelection(self,doc): +# global __clearShapeModifyingNodes__ +# if __clearShapeModifyingNodes__: +# self.__clearShapeModifiers() +# __clearShapeModifyingNodes__ = False + + def __checkIfShapeModifyingNodesSelected(self): + flag = False + sels=FreeCADGui.Selection.getSelectionEx() + for sel in sels: + if sel.ObjectName =='ShapeModifier' or sel.ObjectName == 'ShapeMover': + flag = True + break + return flag + + def addSelection(self, doc, obj, sub, pos=None): + print 'entering SelectionObserver' + print '%s -> %s -> %s'%(doc , obj , sub) + if not doc or len(doc)==0 or not obj or len(obj)==0 : + return + if self.lock==True: # 由于FreeCAD先更新propertybrowser,后调用此函数,所以为了正确显示,有时需要连续两次从selectionNode添加或删除obj + print 'addSelecion locked, return' + return + + self.lock = True + self.objs = [] + sels=FreeCADGui.Selection.getSelectionEx() + + # handle selection + if len(sels)>1 or len(sels[0].SubElementNames)>1: # 当被选物体多于两个,隐藏坐标信息 + self.__clearShapeModifiers() + self.__hideProperties(sels) + elif len(sels[0].SubElementNames)>0: # only one object is selected , update messages in properties in property browser + self.__keepObjectNames(doc, obj , sub) + self.__showproperties4OneObject(sels) + + # telling selected object + shapeType , idx = getRealTypeAndIndex(self.__objName) + print 'Object name : %s index : %d'%(shapeType,idx) + + subName , subIdx = getRealTypeAndIndex(self.__subElementName) + print 'SubObject name : %s index : %d'%(subName , subIdx) + + if shapeType=='JointLine' or 'Point' in shapeType: + FreeCADGui.runCommand('DDA_ShapeModifierTrigger') + + self.__clearObjectNames() + + else : + FreeCAD.Console.PrintError('unkwon condition in Base.SelectionObserver') + print 'SelectionObserver done' + self.lock = False + +DDAObserver = SelectionObserver() + +def enableSelectionObserver(flag): + DDAObserver.lock = not flag + print '\tFreeCAD selection observer locked : ' , not flag + +def enableSeletionObserver(flag): + if flag: + FreeCADGui.Selection.addObserver(DDAObserver) + else: + FreeCADGui.Selection.removeObserver(DDAObserver) +#pts = [ (6,13,0) , (7,13,0) , (7,-2,0) , (35,-2,0) , (35,13,0) , (36,13,0) , (36,-3,0) , (6,-3,0) ] +#addPolygon2Document(pts, None, None, 'FixedPoint', 2) + +p = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/DDA") +print 'fixed point color :' , p.GetUnsigned('fixedpointcolor') \ No newline at end of file diff --git a/src/Mod/DDA/CMakeLists.txt b/src/Mod/DDA/CMakeLists.txt new file mode 100644 index 000000000000..6bd8f639713f --- /dev/null +++ b/src/Mod/DDA/CMakeLists.txt @@ -0,0 +1,91 @@ + +add_subdirectory(App) +if(FREECAD_BUILD_GUI) + add_subdirectory(Gui) +endif(FREECAD_BUILD_GUI) + + +SET(DDA_SRCS + Base.py + boost_python-vc90-mt-1_39.dll + checkConcave_and_triangulate.py + CMakeLists.txt + dc.ps + dc_Ff.c + DDA-preferences.ui + DDA.dox + DDACalcTools.pyd + DDADatabase.py + DDADisplay.py + DDAGui.pyd + DDAPanel.py + DDAShapes.py + DDAToolbars.py + DDATools.py + DDA_rc.py + DFCalculation.py + df_Ff.c + DGPlayer.py + dg_ff.c + dl.ps + drawGui.py + fcgeo.py + fcvec.py + Ff.c + Graph.py + Init.py + InitGui.py + interfaceTools.py + LICENCE.lgpl.txt + loadDataTools.py + Makefile.am + PyDDA.pyd + PyTriangulation.pyd + storeScene.py + testInterfaceTools.py + test_rc.py + TrackerTools.py + ui_DC.py + ui_DF.py + ui_DFCalcProcess.py + ui_DL.py + ui_tunnelBolts.py + ui_TunnelSelection.py + UserGuide.docx + WorkingPlane1.py + __init__.py + +) + +SOURCE_GROUP("" FILES ${Draft_SRCS}) + +SET(DDALibs_SRCS + draftlibs/dxfColorMap.py + draftlibs/dxfImportObjects.py + draftlibs/dxfLibrary.py + draftlibs/dxfReader.py + draftlibs/__init__.py +) +SOURCE_GROUP("draftlibs" FILES ${DraftLibs_SRCS}) + +SET(all_files ${DDA_SRCS} ${DDALibs_SRCS}) + +ADD_CUSTOM_TARGET(DDA ALL + SOURCES ${all_files} +) + +fc_copy_sources(DDA "${CMAKE_BINARY_DIR}/Mod/DDA" ${all_files}) + + +INSTALL( + FILES + ${DDALibs_SRCS} + DESTINATION + Mod/DDA/draftlibs +) +INSTALL( + FILES + ${DDA_SRCS} + DESTINATION + Mod/DDA +) diff --git a/src/Mod/DDA/DDA-preferences.ui b/src/Mod/DDA/DDA-preferences.ui new file mode 100644 index 000000000000..2fcb1858c854 --- /dev/null +++ b/src/Mod/DDA/DDA-preferences.ui @@ -0,0 +1,391 @@ + + + Gui::Dialog::DlgSettingsDraft + + + + 0 + 0 + 633 + 566 + + + + Form + + + + + 50 + 30 + 511 + 121 + + + + Point Colors + + + + + 20 + 20 + 431 + 16 + + + + set colors for fixed , measured , loading and hole points + + + + + + 50 + 50 + 264 + 54 + + + + + + + Fixed point : + + + + + + + + + + Mod/DDA + + + fixedpointcolor + + + + 255 + 0 + 0 + + + + + + + + Measured point : + + + + + + + + + + Mod/DDA + + + measuredpointcolor + + + + 0 + 255 + 255 + + + + + + + + Loading point: + + + + + + + + + + loadingpointcolor + + + Mod/DDA + + + + 255 + 0 + 255 + + + + + + + + Hole point : + + + + + + + + + + Mod/DDA + + + holepointcolor + + + + 200 + 200 + 0 + + + + + + + + + + + 50 + 180 + 511 + 211 + + + + Material Colors + + + + + 20 + 20 + 391 + 16 + + + + Colors for joints and blocks with different materials + + + + + + 50 + 50 + 222 + 141 + + + + + + + Materail 1: + + + + + + + + + + + + + + Materail 2: + + + + + + + + + + + + + + Materail 3: + + + + + + + + + + + + + + Materail 4: + + + + + + + + + + + + + + Materail 5: + + + + + + + + + + + + + + Materail 6: + + + + + + + + + + + + + + Materail 7: + + + + + + + + + + + + + + Materail 8: + + + + + + + + + + + + + + Material 9: + + + + + + + + + + + + + + Material 10: + + + + + + + + + + + + + + + + + Gui::ColorButton + QPushButton +
Gui/Widgets.h
+
+ + Gui::FileChooser + QWidget +
Gui/FileDialog.h
+
+ + Gui::PrefFileChooser + Gui::FileChooser +
Gui/PrefWidgets.h
+
+ + Gui::PrefSpinBox + QSpinBox +
Gui/PrefWidgets.h
+
+ + Gui::PrefColorButton + Gui::ColorButton +
Gui/PrefWidgets.h
+
+ + Gui::PrefCheckBox + QCheckBox +
Gui/PrefWidgets.h
+
+ + Gui::PrefComboBox + QComboBox +
Gui/PrefWidgets.h
+
+ + Gui::PrefLineEdit + QLineEdit +
Gui/PrefWidgets.h
+
+ + Gui::PrefDoubleSpinBox + QDoubleSpinBox +
Gui/PrefWidgets.h
+
+
+ + + +
diff --git a/src/Mod/DDA/DDA.dox b/src/Mod/DDA/DDA.dox new file mode 100644 index 000000000000..9d28ff02784b --- /dev/null +++ b/src/Mod/DDA/DDA.dox @@ -0,0 +1,3 @@ +/** \defgroup TEMPLATE DDA + * \ingroup WORKBENCHES */ + diff --git a/src/Mod/DDA/DDACalcTools.pyd b/src/Mod/DDA/DDACalcTools.pyd new file mode 100644 index 000000000000..3b785bb4f36b Binary files /dev/null and b/src/Mod/DDA/DDACalcTools.pyd differ diff --git a/src/Mod/DDA/DDADatabase.py b/src/Mod/DDA/DDADatabase.py new file mode 100644 index 000000000000..5876b361d8d9 --- /dev/null +++ b/src/Mod/DDA/DDADatabase.py @@ -0,0 +1,522 @@ +# coding=gbk + + +#*************************************************************************** +#* * +#* Copyright (c) 2009, 2010 * +#* Xiaolong Cheng * +#* * +#* 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 * +#* * +#*************************************************************************** + + +''' +DDA part , store related information +every part (DLDataBase , DCDataBase ...) store related dictionaries for specified items . For example , for additional line , DLDatabase store 2 dictionaries , 'shape2id' and 'id2materialNumber'(every material has a different material number) +''' + +import FreeCAD + +__allShapeTypes__ = ["BorderLine","BoundaryLine","JointLine","AdditionalLine"\ + ,"Block","MaterialLine","BoltElement","FixedPoint"\ + ,"LoadingPoint","MeasuredPoint","HolePoint"] + + +class BaseDatabase(object): + def __init__(self): + self.shapeTypes = [] + self.operationTypes = ['ADD' , 'DELETE' , 'MOVE' , 'CHANGEMATERIAL'\ + , 'CHANGEVERTICES'] + # + # schema operationType(str) shapeType(str) idxes(int in tuple) objects + # + # operationType 'ADD' and 'DELETE' + # shapeTypes : work with all shapes except 'JointLine' and 'Block' + # objects : maybe one or more,but not objects needed be transmitted + # as parameter. just shapeType and idxes is enough + # + # operationType 'MOVE' + # shapeTypes : work with 'JointLines' and 4 kinds of points + # objects : only one object at one time, and be kinds of DDALines + # and DDAPoint + # + # operationType 'CHANGEMATERIAL' + # shapeTypes : all shpes except 'BoundaryLine' and 4 kinds of point + # objects : maybe one or more , but not objects needed be transmitted + # as parameter. just shapeType and idxes is enough + # + # operationType 'CHANGEVERTICES' + # shapeTypes : all shapeTyps except 'Block' and 4 kinds of points + # objects : one object one time, and must be kinds of DDALine and DDAPolyline + # + + self.undoList = [] + self.redoList = [] + self.operationIdx = 0 # [0:len(self.undoList)] + + self.ifDisplayDatabase = True + + def displayRedoAndUndoList(self): + if self.ifDisplayDatabase: + print '####### undo/redo list#######' + for t1 , t2 in zip(self.undoList , self.redoList): + print '# ' , t1 , ' <-----> ' , t2 + print '#############################' + + def clearRedoUndoList(self): + self.undoList = [] + self.redoList = [] + + def checkShapeType(self , shapeType): + assert shapeType in self.shapeTypes + + def getData4Type(self , shapeType): + if shapeType == "BorderLine": return self.borderNodes + elif shapeType == "BoundaryLine": return self.boundaryNodes + elif shapeType == "JointLine": return self.jointLines + elif shapeType == "AdditionalLine": return self.additionalLines + elif shapeType == "Block": return self.blocks + elif shapeType == "MaterialLine": return self.materialLines + elif shapeType == "BoltElement": return self.boltElements + elif shapeType == "FixedPoint": return self.fixedPoints + elif shapeType == "LoadingPoint": return self.loadingPoints + elif shapeType == "MeasuredPoint": return self.measuredPoints + elif shapeType == "HolePoint": return self.holePoints + + def handleAdd(self , operation): + objs = self.getData4Type(operation[1]) + for idx in operation[2]: + objs[idx].visible = True + + def handleDelete(self , operation): + t = operation + objs = self.getData4Type(t[1]) + for idx in t[2]: + objs[idx].visible = False + + def handleChangeVertices(self , operation): + objs = self.getData4Type(operation[1]) + assert len(operation[2])==1 + objs[operation[2][0]] = operation[3] + + def handleChangeMaterial(self , operation): + objs = self.getData4Type(operation[1]) + assert len(operation[2])==1 + objs[operation[2][0]].materialNo = operation[3] + + def handle4Operation(self , operation): + if operation[0] == 'ADD' :self.handleAdd(operation) + elif operation[0] == 'DELETE' :self.handleDelete(operation) + elif operation[0] == 'CHANGEMATERIAL':self.handleChangeMaterial(operation) + elif operation[0] == 'CHANGEVERITCES':self.handleChangeVertices(operation) + + def undo(self): + assert self.operationIdx>=0 + if self.operationIdx==0: + return + + self.operationIdx-=1 + operation = self.undoList[self.operationIdx] + self.handle4Operation(operation) + + print 'undo ' , self.operationIdx , ' ' , operation + + return operation[1] + + def redo(self): + assert self.operationIdx <= len(self.redoList) + if self.operationIdx==len(self.redoList): + return + + operation = self.redoList[self.operationIdx] + self.handle4Operation(operation) + + print 'redo ' , self.operationIdx , ' ' , operation + + self.operationIdx+=1 + return operation[1] + + def checkParaTyps(self , shapeType , idxes , args ): + self.checkShapeType(shapeType) + assert isinstance( idxes , list) + + + + def add(self , shapeType , idxes , args , ifRecord=False): + ''' + add object for database + :param operation: 'ADD' or 'DELETE' or 'MOVE' or 'CHANGEMATERIAL' + :param shapeType: in self.shapeTypes + :param idxes: the index of handle node in self.$shapeType + :param args: content + ''' + self.checkParaTyps(shapeType, idxes, args) + if ifRecord: + length = len(self.getData4Type(shapeType)) + newIdxes = tuple(range(length , length+len(args))) + op1 = ('DELETE' , shapeType , newIdxes , None) + op2 = ('ADD' , shapeType , newIdxes , None) + self.undoList.append(op1) + self.redoList.append(op2) + self.operationIdx = len(self.undoList) + self.displayRedoAndUndoList() + + def remove(self , shapeType , idxes , args , ifRecord=False): + ''' + paras are same to self.remove(...) + ''' + self.checkParaTyps(shapeType, idxes, args) + if ifRecord: + op1 = ('ADD' , shapeType , tuple(idxes) , None) + op2 = ('DELETE' , shapeType , tuple(idxes) , None) + self.undoList.append(op1) + self.redoList.append(op2) + self.operationIdx = len(self.undoList) + self.displayRedoAndUndoList() + + + def changeVertices(self , shapeType , idxes , args , ifRecord=False): + ''' + paras are same to self.add(...) + ''' + self.checkParaTyps(shapeType, idxes, args) + if ifRecord: + objs = self.getData4Type(shapeType) + op1 = ('CHANGEVERITCES' , shapeType , idxes , objs[idxes[0]]) + op2 = ('CHANGEVERITCES' , shapeType , idxes , args[0]) + self.undoList.append(op1) + self.redoList.append(op2) + self.operationIdx = len(self.undoList) + self.displayRedoAndUndoList() + + def changeMaterial(self , shapeType , idxes , args , ifRecord=False): + ''' + paras are same to self.add(...) + ''' + self.checkParaTyps(shapeType, idxes, args) + if ifRecord: + objs = self.getData4Type(shapeType) + op1 = ('CHANGEMATERIAL' , shapeType , idxes , objs[idxes[0]].materialNo) + op2 = ('CHANGEMATERIAL' , shapeType , idxes , args) + self.undoList.append(op1) + self.redoList.append(op2) + self.operationIdx = len(self.undoList) + self.displayRedoAndUndoList() + +class DLDatabase(BaseDatabase): + ''' + store DL data + ''' + def __init__(self): + super(DLDatabase , self ).__init__() + self.reset() + self.shapeTypes = __allShapeTypes__[:] + + def reset(self): + self.jointSets = [] # 保存 (dip , dip direction , spacing , length , bridge , random) + self.slope = [] # 保存 (dip , dip direction) + self.tunnels = [] # 保存 (ShapeNumber , a , b , c, r , centerX , centerY) + self.additionalLines = [] + self.materialLines = [] + self.boltElements = [] + self.fixedPoints = [] + self.loadingPoints = [] + self.measuredPoints = [] + self.holePoints = [] + self.boundaryNodes = [] + self.borderNodes = [] + + def add(self , shapeType , idxes , args , ifRecord=False): + super( DLDatabase , self).add(shapeType , idxes , args , ifRecord) + + from loadDataTools import DDAPolyLine , FixedPoint , MeasuredPoint , LoadingPoint , Graph , HolePoint + + if shapeType == "BorderLine": + self.borderNodes = args + if shapeType == "BoltElement": + self.boltElements = args + elif shapeType == "BoundaryLine": + self.boundaryNodes = args + elif shapeType == "FixedPoint": + self.fixedPoints.extend(args) + elif shapeType == "LoadingPoint": + self.loadingPoints.extend(args) + elif shapeType == "MeasuredPoint": + self.measuredPoints.extend(args) + elif shapeType == "HolePoint": + self.holePoints.extend(args) + +class DCInputDatabase(BaseDatabase): + ''' + store DL data + ''' + def __init__(self): + super(DCInputDatabase , self).__init__() + self.reset() + self.resetShapeTypes() + + def resetShapeTypes(self): + self.shapeTypes = __allShapeTypes__[5:] + [__allShapeTypes__[2]] + + def reset(self): + self.boundaryLinesNum = 0 # special number, currently I don't fully understand it in data.dc, I will learn it later + self.additionalLines = [] + self.jointLines = [] + self.materialLines = [] + self.fixedPoints = [] + self.loadingPoints = [] + self.measuredPoints = [] + self.holePoints = [] + # key:value is { (int(obj.LabelNo),int(subElementNo)) : (startPoint,endPoint) } for data change + # or key:value is { (int(obj.LabelNo),int(subElementNo)) : 'Delete'} for delete + self.jointLinesChanges = {} + + def add(self , shapeType , idxes=[0] , args=None , ifRecord=False): + super( DCInputDatabase , self).add(shapeType , idxes , args , ifRecord) + + from loadDataTools import DDAPolyLine , FixedPoint , MeasuredPoint , LoadingPoint , Graph , HolePoint + + if shapeType == "AdditionalLine": + self.borderNodes = [DDAPolyLine(args , 1)] + elif shapeType == "FixedPoint": + self.fixedPoints.extend(args) + elif shapeType == "LoadingPoint": + self.loadingPoints.extend(args) + elif shapeType == "MeasuredPoint": + self.measuredPoints.extend(args) + elif shapeType == "HolePoint": + self.holePoints.extend(args) + + def changeVertices(self , shapeType , idxes , args , ifRecord=False): + ''' + :param shapeType: + :param idxes: index of args + :param args: one shape object , maybe a DDALine object + :param ifRecord: + ''' + assert shapeType=='JointLine' + + super( DCInputDatabase , self).changeVertices(shapeType, idxes , args , ifRecord) + self.jointLines[idxes[0]] = args[0] + + def changeMaterial(self , shapeType , idxes , args , ifRecord=False): + ''' + :param shapeType: + :param idxes: index of args + :param args: one shape object , maybe a DDALine object + :param ifRecord: + ''' + assert len(idxes)==1 and isinstance(args , int) + objs = self.getData4Type(shapeType) + if objs[idxes[0]].materialNo==args: + # Whenever user change Material using property browser + # ,FreeCAD run this property changing twice + return + super( DCInputDatabase , self).changeMaterial(shapeType, idxes , args , ifRecord) + objs[idxes[0]].materialNo = args + +class DFParameters: + def __init__(self): + self.reset() + + def reset(self): + self.ifDynamic = 0 # 0 :static 1:dynamic + self.stepsNum = 0 + self.blockMatsNum = 0 + self.jointMatsNum = 0 + self.ratio = 0 + self.OneSteptimeLimit = 0 + self.springStiffness = 0 + self.SOR = 0 + + self.blockMats = [] + self.jointMats = [] + self.loadingPointMats = [] + +class DFInputDatabase(BaseDatabase): + def __init__(self): + super(DFInputDatabase , self).__init__() + self.reset() + self.shapeTypes = [__allShapeTypes__[4]]+__allShapeTypes__[6:] # 4 kinds of points + + def reset(self): + from loadDataTools import Block , FixedPoint , MeasuredPoint , LoadingPoint , Graph , HolePoint +# self.graphData = Graph() + self.blocks = [] + self.fixedPoints = [] + self.measuredPoints = [] + self.loadingPoints = [] + self.holePoints = [] + self.boltElements = [] + self.paras = DFParameters() + self.blockMatCollections = set() + self.jointMatCollections = set() + + def add(self , shapeType , idxes , args , ifRecord=False): + super( DFInputDatabase , self).add(shapeType , idxes , args , ifRecord) + + from loadDataTools import DDAPolyLine , FixedPoint , MeasuredPoint , LoadingPoint , Graph , HolePoint + + if shapeType == "FixedPoint": + self.fixedPoints.extend(args) + elif shapeType == "LoadingPoint": + self.loadingPoints.extend(args) + elif shapeType == "MeasuredPoint": + self.measuredPoints.extend(args) + elif shapeType == "HolePoint": + self.holePoints.extend(args) + + def changeVertices(self , shapeType , idxes , args , ifRecord=False): + ''' + :param shapeType: + :param idxes: index of args + :param args: one shape object , maybe a DDALine object + :param ifRecord: + ''' + super( DCInputDatabase , self).changeVertices(shapeType, idxes , args , ifRecord) + self.jointLines[idxes[0]] = args[0] + + def changeMaterial(self , shapeType , idxes , args , ifRecord=False): + ''' + :param shapeType: + :param idxes: index of args + :param args: one shape object , maybe a DDALine object + :param ifRecord: + ''' + assert len(idxes)==1 and isinstance(args , int) + objs = self.getData4Type(shapeType) + if objs[idxes[0]].materialNo==args: + # Whenever user change Material using property browser + # ,FreeCAD run this property changing twice + return + super( DFInputDatabase , self).changeMaterial(shapeType, idxes , args , ifRecord) + objs[idxes[0]].materialNo = args + + +dl_database = DLDatabase() +dc_inputDatabase = DCInputDatabase() +df_inputDatabase = DFInputDatabase() + + +def clearDLRedoUndoList(): + dl_database.clearRedoUndoList() + +def clearDCRedoUndoList(): + dc_inputDatabase.clearRedoUndoList() + +def clearDFRedoUndoList(): + df_inputDatabase.clearRedoUndoList() + + +############################################# +# +# used to configure bolts elements +# +############################################# +tmpBoltElements = [] + + +############################################# +# +# DDA redo/undo observer +# +############################################# +from pivy import coin +class OperationObverser: + ''' + observe the operation, catch keyboard event to supply redo/undo application + ''' + def __init__(self): + self.call = None + self.on = False + self.zDown = False + self.yDown = False + + def Activated(self, name="None"): + self.on = True + self.view = FreeCADGui.ActiveDocument.ActiveView + self.call = self.view.addEventCallback("SoEvent", self.action) + + def IsActive(self): + return self.on + + def RedrawObject(self , objName): + if not objName: + return + print 'trigger obj \'%s\' in OperationObverser'%objName + obj = FreeCAD.ActiveDocument.getObject(objName) + assert obj + obj.ViewObject.RedrawTrigger = True + + def handleDelete(self): + import Base + sels=FreeCADGui.Selection.getSelectionEx() + sel = sels[0] + objName = sel.ObjectName + assert len(sel.SubElementNames)==1 + type , idx = Base.getRealTypeAndIndex(sel.SubElementNames[0]) + database = Base.getDatabaser4CurrentStage() + database.remove(objName, [idx], args=None, ifRecord=True) + + def action(self, arg): + "scene event handler" + if arg["Type"] == "SoKeyboardEvent": + if arg["CtrlDown"] and arg["Key"] == 'z': + if arg['State'] == 'DOWN' and not self.zDown: + print 'ctrl z' + import Base + database = Base.getDatabaser4CurrentStage() + self.RedrawObject(database.undo()) + if arg["CtrlDown"] and arg["Key"] == 'y': + if arg['State'] == 'DOWN' and not self.yDown: + print 'ctrl y' + import Base + database = Base.getDatabaser4CurrentStage() + self.RedrawObject(database.redo()) + if arg["Key"] == 'DELETE': + if arg['State'] == 'UP': + print 'Delete pressed' +# self.handleDelete() + + if arg["Key"] == 'z': + if arg['State'] == 'DOWN': self.zDown = True + elif arg['State'] == 'UP': self.zDown = False + + if arg["Key"] == 'y': + if arg['State'] == 'DOWN': self.yDown = True + elif arg['State'] == 'UP': self.yDown = False + + def Deactivated(self): + if self.call: + self.view.removeEventCallback("SoEvent", self.call) + self.call=None + self.on = False + self.view = None + + +import FreeCADGui +FreeCADGui.DDAOperationObverser = OperationObverser() + +def enableOperationObverser(flag): + if flag: + FreeCADGui.DDAOperationObverser.Activated() + else: + FreeCADGui.DDAOperationObverser.Deactivated() + +#from loadDataTools import Graph +#dc_database = Graph() \ No newline at end of file diff --git a/src/Mod/DDA/DDADisplay.py b/src/Mod/DDA/DDADisplay.py new file mode 100644 index 000000000000..b42b8bd6a4d0 --- /dev/null +++ b/src/Mod/DDA/DDADisplay.py @@ -0,0 +1,291 @@ +# coding=gbk + +#*************************************************************************** +#* * +#* Copyright (c) 2009, 2010 * +#* Xiaolong Cheng * +#* * +#* 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 +import FreeCADGui +import Base +import PyDDA +from Graph import * +import sys +import os +import time + +import DDAShapes +from Base import showErrorMessageBox + +def clearDocument(): + ''' + remove all objects from view + ''' + + print '###########################\n######### clearing document ####' + import DDADatabase + DDADatabase.enableOperationObverser(False) + + label = FreeCAD.ActiveDocument.Label + FreeCAD.closeDocument(label) + FreeCAD.newDocument(label) + print '##############################' + FreeCADGui.runCommand('DDA_ResetCamera') + DDADatabase.enableOperationObverser(True) + + +class DisplayDL(): + ''' + this class only has on object at one time and calculate for DDA .It has different stages for different processes such as Dl , DC , DF , DG + ''' + def __init__(self): + self.original_path = os.getcwd() + + def calculate(self): + import Base + Base.__currentStage__ = 'DL' + + self.process = PyDDA.DL() + self.graph = DLGraph() + + print 'change dir to ' , Base.__workbenchPath__ + os.chdir(Base.__workbenchPath__) + +# print 'calculating file : ' , self.current_path+'\\'+open('Ff.c','r').read() + print 'calculating file : ' , open('Ff.c','r').read() + + self.process.calculateStage2() +# import Base +# file = open(Base.__currentProjectPath__+'/data.dc' , 'rb') +# content = file.read(-1) # read all +# file.close() +# +# file = open(Base.__currentProjectPath__+'/tmpData.dc' , 'wb') +# file.write(content) +# file.close() + + print 'change dir to ' , self.original_path + os.chdir(self.original_path) + + def preview(self): + clearDocument() + self.calculate() + self.graph.showStage1Graph(self.process) +# Base.setGraphLatest() + + def GetResources(self): + return { + 'MenuText': 'Caluclate', + 'ToolTip': "Calculate DL."} + + def Activated(self): + from DDAShapes import DDACheckSaveJointSetsAndTunnels + from storeScene import DLStoreData + FreeCADGui.runCommand('DDA_CheckSaveJointSetsAndTunnels') + if not DDACheckSaveJointSetsAndTunnels.isDataValid() : + return + FreeCADGui.runCommand("DDA_StoreData") + if not DLStoreData.isDataValid(): + return + + clearDocument() + self.calculate() + print 'calculate done' + FreeCADGui.runCommand('DDA_ShowDCInputGraph') +# self.graph.showStage2Graph(self.process) + + FreeCADGui.runCommand('DDA_ResetCamera') + + import DDADatabase + DDADatabase.clearDLRedoUndoList() + + + def finish(self): + pass + +class DCPreview(): + ''' + temporary class , provide DC preview function + ''' + def __init__(self): + self.original_path = os.getcwd() + self.current_path = Base.__workbenchPath__ + self.ifOnlyCalculate = False + + def calculate(self , stageID = 1): + self.process = PyDDA.DC() + self.graph = DCGraph() + + file = open(self.current_path+'/dc_ff.c','wb') + file.write(Base.__currentProjectPath__+'/data.dc') + file.close() + + print 'change dir to ' , self.current_path + os.chdir(self.current_path) + + print 'calculating file : ' , open('dc_ff.c','r').read() + + if stageID ==1 : + self.process.calculateStage1() + else: + self.process.calculateStage2() + + print 'change dir to ' , self.original_path + os.chdir(self.original_path) + + def GetResources(self): + return { + 'MenuText': 'DC_Preview', + 'ToolTip': "preview DC."} + + def Activated(self): +# if not Base.ifGraphLatest(): + clearDocument() + self.calculate(1) + if not self.ifOnlyCalculate: + self.graph.showStage1Graph(self.process) + + + def finish(self): + pass + +class DCCalculate(DCPreview): + ''' + temporary class , provide DC calculate function and display + ''' + def GetResources(self): + return { + 'MenuText': 'DC_Calculate', + 'ToolTip': "Calculate DC."} + + def Activated(self): + import Base + Base.__currentStage__ = 'DC' + self.calculate(2) + if not self.ifOnlyCalculate: + clearDocument() + FreeCADGui.runCommand('DDA_DisplayDFInputGraph') + + FreeCADGui.runCommand('DDA_ResetCamera') + + print 'DC data draw done in DCCalculate' + + def finish(self): + pass + +class DisplayDFInputData: + ''' + load df input data , and show it. + ''' + def GetResources(self): + return { + 'MenuText': 'DisplayDFInputData', + 'ToolTip': "Display DF Input Data"} + + def Activated(self): + from Base import __currentProjectPath__ + FreeCADGui.runCommand('DDA_LoadDFInputGraphData') + clearDocument() + graph = DCGraph() + graph.showGraph4File() + + def finish(self): + pass + + +class DCOnlyCalculate: + ''' + temporary class , provide DC calculate function + ''' + def GetResources(self): + return { + 'MenuText': 'DC_OnlyCalculate', + 'ToolTip': "Calculate DC."} + + def Activated(self): + DDADCCalculatCmd.ifOnlyCalculate = True + FreeCADGui.runCommand('DDA_DCChangesConfirm') + FreeCADGui.runCommand('DDA_DCCalculate') + DDADCCalculatCmd.ifOnlyCalculate = False + + def finish(self): + pass + +class DisplayDCInputData: + ''' + load dc input data , and show it. + ''' + def GetResources(self): + return { + 'MenuText': 'DisplayDCInputData', + 'ToolTip': "Display DC Input Data"} + + def Activated(self): + from Base import __currentProjectPath__ + Base.changeStage('DL') + FreeCADGui.runCommand('DDA_LoadDCInputData') + graph = DLGraph() + graph.showGraph4File() + + def finish(self): + pass + +class DisplayDLInputData: + ''' + load dc input data , and show it. + ''' + def GetResources(self): + return { + 'MenuText': 'DisplayDCInputData', + 'ToolTip': "Display DC Input Data"} + + def Activated(self): + from Base import __currentProjectPath__ + Base.changeStage('PreDL') + FreeCADGui.runCommand('DDA_LoadDLInputData') + graph = DLInputGraph() + graph.showGraph4File() + + def finish(self): + pass + + + + +DDADisplayCmd = DisplayDL() +#DDADCPreviewCmd = DCPreview() +DDADCCalculatCmd = DCCalculate() + + +#DDADFCalculatCmd = DFCalculation() +#DDADFCalculation1StepCmd = DFCalculation1Step() +FreeCADGui.DDADisplayCmd = DDADisplayCmd +FreeCADGui.addCommand('DDA_DLCalculate', DDADisplayCmd) +#FreeCADGui.addCommand('DDA_DCPreview', DDADCPreviewCmd) +FreeCADGui.addCommand('DDA_DCCalculate', DDADCCalculatCmd) +FreeCADGui.addCommand('DDA_DCOnlyCalculate', DCOnlyCalculate()) +#FreeCADGui.addCommand('DDA_DFCalculat', DDADFCalculatCmd) +#FreeCADGui.addCommand('DDA_DFCalculate1Step', DDADFCalculation1StepCmd) +FreeCADGui.addCommand('DDA_ShowDLInputGraph', DisplayDLInputData()) +FreeCADGui.addCommand('DDA_ShowDCInputGraph', DisplayDCInputData()) +FreeCADGui.addCommand('DDA_DisplayDFInputGraph', DisplayDFInputData()) \ No newline at end of file diff --git a/src/Mod/DDA/DDAGui.pyd b/src/Mod/DDA/DDAGui.pyd new file mode 100644 index 000000000000..04d8b2e3c6a4 Binary files /dev/null and b/src/Mod/DDA/DDAGui.pyd differ diff --git a/src/Mod/DDA/DDAPanel.py b/src/Mod/DDA/DDAPanel.py new file mode 100644 index 000000000000..0747a35846c3 --- /dev/null +++ b/src/Mod/DDA/DDAPanel.py @@ -0,0 +1,367 @@ +# coding=gbk + +#*************************************************************************** +#* * +#* Copyright (c) 2009, 2010 * +#* Xiaolong Cheng * +#* * +#* 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 +from pivy import coin +from PyQt4 import QtCore , QtGui +from ui_DC import * +from ui_DL import * +from drawGui import getMainWindow + + +__currentDDAPanel__ = None # which panel is using current time , DL or DC +#from Base import __currentDDAPanel__ + +class DLCMD : + ''' + The DDA Line Panel , call DL Panel out + ''' + + def __init__( self ): + self.__initUI() + self.__initConnections() + + def __initConnections(self): + ''' + connect qtoolbar actions to functions + ''' + self.act_LoadDLInputData.triggered.connect(self.loadDLInputData) + self.act_Border.triggered.connect(self.generateBorder) + self.act_BoundaryNode.triggered.connect(self.drawBoundaryNodes) + self.act_JointSet.triggered.connect(self.showJointSetPanel) + self.act_Tunnel.triggered.connect(self.showTunnelPanel) + self.act_Calculate.triggered.connect(self.calculate) + self.act_Confirm.triggered.connect(self.confirm) + self.act_LoadDCInputData.triggered.connect(self.loadDCInputData) + + + def __initUI(self): + ''' + init DLCMD's UI , using QToolbar + ''' + self.mw = getMainWindow() + self.ui = QtGui.QToolBar('DLCMD' , self.mw) + self.ui.setVisible(False) + self.mw.addToolBar(QtCore.Qt.TopToolBarArea , self.ui) + self.ui.setMovable(True) + self.act_LoadDLInputData = QtGui.QAction('LoadDLInputData',self.ui) + self.act_BoundaryNode = QtGui.QAction('BoundaryNodes' ,self.ui) + self.act_Border = QtGui.QAction('GenerateBorder' ,self.ui) + self.act_JointSet = QtGui.QAction('JointSet' ,self.ui) + self.act_Tunnel = QtGui.QAction('Tunnel',self.ui) + self.act_Calculate = QtGui.QAction('Calculate',self.ui) + self.act_Confirm = QtGui.QAction('Confirm',self.ui) + self.act_LoadDCInputData = QtGui.QAction('LoadDCInputData',self.ui) + self.ui.addAction(self.act_LoadDLInputData) + self.ui.addAction(self.act_Border) + self.ui.addAction(self.act_BoundaryNode) + self.ui.addAction(self.act_JointSet) + self.ui.addAction(self.act_Tunnel) + self.ui.addSeparator() + self.ui.addAction(self.act_Calculate) + self.ui.addAction(self.act_Confirm) + self.ui.addAction(self.act_LoadDCInputData) + + def refreshButton4FirstStep(self): + self.act_Border.setEnabled(False) + self.act_BoundaryNode.setEnabled(True) + self.act_Border.setEnabled(False) + self.act_JointSet.setEnabled(False) + self.act_Tunnel.setEnabled(False) + + self.act_Calculate.setEnabled(True) + self.act_LoadDLInputData.setEnabled(True) + self.act_Confirm.setEnabled(False) + self.act_LoadDCInputData.setEnabled(True) + + def refreshButton4ShapesAvailableStep(self): + self.act_Border.setEnabled(True) + self.act_BoundaryNode.setEnabled(True) + self.act_Border.setEnabled(True) + self.act_JointSet.setEnabled(True) + self.act_Tunnel.setEnabled(True) + + self.act_Calculate.setEnabled(True) + self.act_LoadDLInputData.setEnabled(True) + self.act_Confirm.setEnabled(True) + self.act_LoadDCInputData.setEnabled(True) + + def refreshButton4SpecialStep(self): + self.act_Border.setEnabled(False) + self.act_BoundaryNode.setEnabled(True) + self.act_Border.setEnabled(False) + self.act_JointSet.setEnabled(False) + self.act_Tunnel.setEnabled(False) + + self.act_Calculate.setEnabled(True) + self.act_LoadDLInputData.setEnabled(True) + self.act_Confirm.setEnabled(True) + self.act_LoadDCInputData.setEnabled(True) + + def refreshButtons(self): + from Base import __currentStep__ + assert __currentStep__ + if __currentStep__ == 'FirstStep' : + self.refreshButton4FirstStep() + elif __currentStep__ == 'ShapesAvailable' : + self.refreshButton4ShapesAvailableStep() + elif __currentStep__ == 'SpecialStep': + self.refreshButton4SpecialStep() + + def loadDCInputData(self): + FreeCADGui.runCommand('DDA_ShowDCInputGraph') + self.refreshButtons() + + + def loadDLInputData(self): + FreeCADGui.runCommand('DDA_ShowDLInputGraph') + import Base + Base.__currentStep__ = 'ShapesAvailable' + self.refreshButtons() + + def generateBorder(self): + FreeCADGui.runCommand('DDA_GenerateBorder') + + def drawBoundaryNodes(self): + FreeCADGui.runCommand('DDA_BoundaryLine') + import DDADatabase , Base + self.refreshButtons() + + def showJointSetPanel(self): + FreeCADGui.runCommand('DDA_JointSet') + + def showTunnelPanel(self): + FreeCADGui.runCommand('DDA_Tunnel') + + def calculate(self): + FreeCADGui.runCommand('DDA_DLCalculate') + self.refreshButtons() + + def confirm(self): + FreeCADGui.runCommand('DDA_DCInputDataStore') + + def GetResources(self): + return { + 'MenuText': 'DLPanel', + 'ToolTip': "call DL panel out"} + + def Activated(self, name="None"): + FreeCAD.Console.PrintMessage( 'Creator activing\n') + if FreeCAD.activeDDACommand: + FreeCAD.activeDDACommand.finish() + self.doc = FreeCAD.ActiveDocument + self.view = FreeCADGui.ActiveDocument.ActiveView + if not self.doc: + FreeCAD.Console.PrintMessage( 'FreeCAD.ActiveDocument get failed\n') + self.finish() + else: + FreeCAD.activeDDACommand = self # FreeCAD.activeDDACommand 在不同的时间会接收不同的命令 + if not self.ui.isVisible(): + self.ui.show() +# import DDAToolbars +# DDAToolbars.lineToolbar.on() + + import Base + Base.changeStage('PreDL') + Base.changeStep4Stage('FirstStep') + self.refreshButtons() + + # activate DL Panel + global __currentDDAPanel__ + print __currentDDAPanel__ + if __currentDDAPanel__ != None : + __currentDDAPanel__.hide() + __currentDDAPanel__ = self.ui + __currentDDAPanel__.show() + print 'panel shown ' , __currentDDAPanel__ + + + def IsActive(self): + if FreeCADGui.ActiveDocument: + return True + else: + return False + + def finish(self): + pass + +class DCCMD : + ''' + The DDA Line Panel , call DL Panel out + ''' + def __init__( self ): + self.__initUI() + self.__initConnections() + + def __initConnections(self): + ''' + connect actions to functions + ''' + self.act_FixedPoint.triggered.connect(self.drawFixedPoint) + self.act_LoadingPoint.triggered.connect(self.drawLoadingPoint) + self.act_MeasuredPoint.triggered.connect(self.drawMeasuredPoint) + self.act_HolePoint.triggered.connect(self.drawHolePoint) + self.act_MaterialLine.triggered.connect(self.drawMaterialLine) + self.act_MaterialLine.triggered.connect(self.generateTunnelBolts) +# self.act_Preview.triggered.connect(self.preview) + self.act_Calculate.triggered.connect(self.calculate) + self.act_Confirm.triggered.connect(self.confirm) + self.act_LoadData.triggered.connect(self.loadDFInputData) + + def __initUI(self): + ''' + init DLCMD's UI , using QToolbar + ''' + self.mw = getMainWindow() + self.ui = QtGui.QToolBar('DCCMD' , self.mw) + self.ui.setVisible(False) + self.mw.addToolBar(QtCore.Qt.TopToolBarArea , self.ui) + self.ui.setMovable(True) + self.act_FixedPoint = QtGui.QAction('FixedPoint' ,self.ui) + self.act_LoadingPoint = QtGui.QAction('LoadingPoint',self.ui) + self.act_MeasuredPoint = QtGui.QAction('MeasuredPoint' ,self.ui) + self.act_HolePoint = QtGui.QAction('HolePoint' ,self.ui) + self.act_MaterialLine = QtGui.QAction('MaterialLine' ,self.ui) +# self.act_Preview = QtGui.QAction('Preview',self.ui) + self.act_Calculate = QtGui.QAction('Calculate',self.ui) + self.act_Confirm = QtGui.QAction('Confirm',self.ui) + self.act_LoadData = QtGui.QAction('LoadDFInputData',self.ui) + self.act_GenerateBolts = QtGui.QAction('GenerateTunnelBolts',self.ui) + self.ui.addAction(self.act_FixedPoint) + self.ui.addAction(self.act_LoadingPoint) + self.ui.addAction(self.act_MeasuredPoint) + self.ui.addAction(self.act_HolePoint) + self.ui.addAction(self.act_MaterialLine) + self.ui.addAction(self.act_GenerateBolts) + self.ui.addSeparator() +# self.ui.addAction(self.act_Preview) + self.ui.addAction(self.act_Calculate) + self.ui.addAction(self.act_Confirm) + self.ui.addAction(self.act_LoadData) + + def refreshButton4FirstStep(self): + self.act_FixedPoint.setEnabled(False) + self.act_LoadingPoint.setEnabled(False) + self.act_MeasuredPoint.setEnabled(False) + self.act_HolePoint.setEnabled(False) + self.act_MaterialLine.setEnabled(False) + self.act_GenerateBolts.setEnabled(False) + + self.act_Calculate.setEnabled(True) + self.act_Confirm.setEnabled(False) + self.act_LoadData.setEnabled(True) + + def refreshButton4ShapesAvailableStep(self): + self.act_FixedPoint.setEnabled(True) + self.act_LoadingPoint.setEnabled(True) + self.act_MeasuredPoint.setEnabled(True) + self.act_HolePoint.setEnabled(True) + self.act_MaterialLine.setEnabled(True) + self.act_GenerateBolts.setEnabled(True) + + self.act_Calculate.setEnabled(True) + self.act_Confirm.setEnabled(True) + self.act_LoadData.setEnabled(True) + + def refreshButtons(self): + from Base import __currentStep__ + assert __currentStep__ + if __currentStep__ == 'FirstStep' : + self.refreshButton4FirstStep() + elif __currentStep__ == 'ShapesAvailable' : + self.refreshButton4ShapesAvailableStep() + + def drawFixedPoint(self): + FreeCADGui.runCommand('DDA_FixedPoint') + + def drawLoadingPoint(self): + FreeCADGui.runCommand('DDA_LoadingPoint') + + def drawMeasuredPoint(self): + FreeCADGui.runCommand('DDA_MeasuredPoint') + + def drawHolePoint(self): + FreeCADGui.runCommand('DDA_HolePoint') + + def drawMaterialLine(self): + FreeCADGui.runCommand('DDA_MaterialLine') + + def generateTunnelBolts(self): + FreeCADGui.runCommand('DDA_GenerateTunnelBolts') + + def confirm(self): + FreeCADGui.runCommand('DDA_DFInputGraphDataStore') + + def calculate(self): + FreeCADGui.runCommand('DDA_DCCalculate') + + def loadDFInputData(self): + FreeCADGui.runCommand('DDA_DisplayDFInputGraph') + + def GetResources(self): + return { + 'MenuText': 'DCPanel', + 'ToolTip': "call DC panel out"} + + def Activated(self, name="None"): + FreeCAD.Console.PrintMessage( 'Creator activing\n') + if FreeCAD.activeDDACommand: + FreeCAD.activeDDACommand.finish() + self.doc = FreeCAD.ActiveDocument + self.view = FreeCADGui.ActiveDocument.ActiveView + + import Base + Base.changeStage('DC') + + # activate DC Panel + global __currentDDAPanel__ + if __currentDDAPanel__ != None : + __currentDDAPanel__.hide() + __currentDDAPanel__ = self.ui + __currentDDAPanel__.show() + + self.featureName = name + + if not self.doc: + FreeCAD.Console.PrintMessage( 'FreeCAD.ActiveDocument get failed\n') + self.finish() + else: + FreeCAD.activeDDACommand = self # FreeCAD.activeDDACommand 在不同的时间会接收不同的命令 + self.ui.show() + + def IsActive(self): + if FreeCADGui.ActiveDocument: + return True + else: + return False + + def finish(self): + pass + +DLPanel = DLCMD() +DCPanel = DCCMD() +FreeCADGui.addCommand('DDA_DL', DLPanel) +FreeCADGui.addCommand('DDA_DC', DCPanel) \ No newline at end of file diff --git a/src/Mod/DDA/DDAShapes.py b/src/Mod/DDA/DDAShapes.py new file mode 100644 index 000000000000..2ca2e63595dc --- /dev/null +++ b/src/Mod/DDA/DDAShapes.py @@ -0,0 +1,1161 @@ +# coding=gbk + + + +#*************************************************************************** +#* * +#* Copyright (c) 2009, 2010 * +#* Xiaolong Cheng * +#* * +#* 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 * +#* * +#*************************************************************************** + + +##################################################### +# +# all shapes are inherited from classes in DDATools +# +##################################################### + +from DDATools import * +try: + from PyQt4 import QtCore, QtGui, QtSvg +except: + FreeCAD.Console.PrintError("Error: Python-qt4 package must be installed on your system to use the Draft module.") + +import FreeCADGui +import DDADatabase +import DDADisplay +from Base import showErrorMessageBox + + +class BoundaryLines( Line ): + ''' + The DDA Boundary Line definition. + Most operations are inherited from DDATools.Line + ''' + def __init__( self , wiremode = True ): + Line.__init__( self , wiremode = True ,shapeType = 'BoundaryLine' , mustColse=True ) + + + def GetResources(self): + return { + 'MenuText': 'BoundaryLine', + 'ToolTip': "Creates Boundary Line of DL."} + + def finish(self, closed=False, cont=False): + Line.finish(self, closed, cont) + if len(DDADatabase.dl_database.boundaryNodes)>0: + Base.__currentStep__ = 'ShapesAvailable' + from DDAPanel import DLPanel + DLPanel.refreshButtons() + +class BorderGenerator: + def GetResources(self): + return { + 'MenuText': 'GenerateBorder', + 'ToolTip': "generate border for current boundary."} + + def drawFixedPoints(self , pts): + ''' + draw fixed points for border + :param pts: + ''' + from Base import addCircles2Document + from loadDataTools import DDAPoint + addCircles2Document('FixedPoint', ifStore2Database=True \ + , pts=[DDAPoint(t[0],t[1]) for t in pts], ifRecord = True) + + def getIntersectX(self,p1 , p2 , y): + k1 = float(p1[1]-p2[1])/float(p1[0]-p2[0]) + b1 = p1[1]-k1*p1[0] + print k1 , ' ' , b1 + newX1 = (y-float(b1))/float(k1) + return newX1 + + def Activated(self): + from interfaceTools import BorderCalculator + border = BorderCalculator() + + from DDADatabase import dl_database + boundary = dl_database.boundaryNodes + + assert boundary + pts = border.calcualteBorder(boundary[0].pts) + + assert pts + + Base.addPolyLine2Document('BorderLine' , ifStore2Database=True , pointsList=pts) + self.drawFixedPoints(pts[1:5]) + + def finish(self): + pass + +class TunnelBoltsGenerator: + def GetResources(self): + return { + 'MenuText': 'GenerateTunnelBolts', + 'ToolTip': "generate bolts for tunnel."} + + def Activated(self): + from interfaceTools import Tunnel2BoltsGenerator + +# ---------------test code-------------- +# from DDADatabase import dl_database +# tunnels = dl_database.tunnels +# +# assert tunnels +# t = tunnels[0] +# bolts = Tunnel2BoltsGenerator.generateBolts( centerX=t[5] , centerY=t[6] \ +# , halfWidth=t[1] , halfHeight=t[2] , arcRadius=t[3] \ +# , boltsDistance=1 , boltLength=12 , boltLength2=10) +# +# import Base +# Base.addLines2Document(shapeType = 'BoltElement', ifStore2Database=True, args=bolts) + + from DDATools import TunnelSelectionTool , TunnelBoltsSelectionTool + dialog = TunnelSelectionTool() + idx = dialog.select() + if idx==None: + return + + boltsDialog = TunnelBoltsSelectionTool() + boltsDialog.configure(idx) + print 'abc' + + def finish(self): + pass + + +class AdditionalLines( Line ): + ''' + The DDA Boundary Line definition. + Most operations are inherited from DDATools.Line + ''' + + def __init__( self , wiremode = False , shapeType = 'AdditionalLine' , mustColse=False): + Line.__init__( self , wiremode = False , shapeType = shapeType, mustColse= mustColse ) + + + def GetResources(self): + return { + 'MenuText': 'AdditionalLine', + 'ToolTip': "Creates Additional Line of DL."} + + def Activated(self): + Line.Activated(self) + + def action(self, arg): + Line.action(self , arg) + + def initDialog(self): + self.dialog = QtGui.QDialog() + layout = QtGui.QVBoxLayout(self.dialog) + layout2 = QtGui.QHBoxLayout(self.dialog) + self.spinbox = QtGui.QSpinBox(self.dialog) + self.spinbox.setRange ( 0, 10 ) + button = QtGui.QPushButton(self.dialog) + button.setText('OK') + layout2.addWidget(self.spinbox) + layout2.addWidget(button) + label = QtGui.QLabel(self.dialog) + label.setText('select material Number :') + layout.addWidget(label ) + layout.addLayout(layout2 ) + self.dialog.setLayout(layout) + QtCore.QObject.connect( button , QtCore.SIGNAL("pressed()"),self.getMaterialNumber) + QtCore.QObject.connect( button , QtCore.SIGNAL("pressed()"),self.dialog.accept) + + def getMaterialNumber(self): + return self.spinbox.value() + + def clearDialog(self): + self.dialog = None + self.spinbox = None + + def finish(self , closed=False, cont=False): + flag = False + if (not self.isWire and len(self.node) == 2) or cont == False: # 绘制结束时再弹出选择材质的对话框 + FreeCAD.Console.PrintError('finishing additional line\n') + self.initDialog() + self.dialog.exec_() + flag = True + + FreeCAD.Console.PrintError('Additional line finishing\n') + obj = Line.finish(self , closed, cont) + +# if obj : +# FreeCAD.Console.PrintError('shape just drawn found\n') + +# print 'iswire : ' , self.isWire , ' length of nodes : ' , len(self.node) , ' continue : ' , cont + + if flag: # 绘制结束时再存入database + assert obj + obj.Material = self.getMaterialNumber() + self.clearDialog() + + +class MaterialLines( AdditionalLines ): + ''' + The DDA Boundary Line definition. + Most operations are inherited from DDATools.Line + ''' + + def __init__( self , wiremode = False ,shapeType = 'MaterialLine' , mustColse=False): + AdditionalLines.__init__( self , wiremode = False ,shapeType = shapeType , mustColse = mustColse ) + + + def GetResources(self): + return { + 'MenuText': 'MaterialLine', + 'ToolTip': "Creates Material Line of DL."} + + def Activated(self): + AdditionalLines.Activated(self) + + def action(self, arg): + AdditionalLines.action(self , arg) + + def generateBlockName(self , index): + ''' + generate block names + :param index: block No. + ''' + if index==0: + return 'Block' + elif index <1000: + return 'Block%03d'%index + else: + return "Block%d"%index + + + def setBlocksMat(self , nodes , material): + ''' + set material to blocks that intersect with the line ( nodes[0] , nodes[1] ) + :param nodes: 0: start point , 1: end point + ''' + from interfaceTools import rectSelection + import checkConcave_and_triangulate as Py + blocksIdxes = rectSelection.getIntersectedRectsNo(nodes[0][0], nodes[0][1], nodes[1][0], nodes[1][1]) + from DDADatabase import df_inputDatabase + blocks = df_inputDatabase.blocks + for idx in blocksIdxes: + if not Py.ifSegmentAndPolygonIntersect(nodes, blocks[idx].getPoints()): + blocks[idx].materialNo = material + + obj = FreeCAD.ActiveDocument.getObject('Block') + obj.ViewObject.RedrawTrigger = True # trigger material changes + + def finish(self , closed=False, cont=False): + tmpMaterialNo = 0 + if (not self.isWire and len(self.node) == 2) or cont == False: # 绘制结束时再弹出选择材质的对话框 + print 'finishing material line\n' + self.initDialog() + self.dialog.exec_() + tmpMaterialNo = self.getMaterialNumber() + self.setBlocksMat(self.node, tmpMaterialNo) + self.clearDialog() +# FreeCADGui.runCommand('DDA_StoreBlocksMaterial') + + print ' line finishing' + obj = Line.finish(self , closed, cont) +# FreeCAD.ActiveDocument.removeObject(obj.Label) + +# obj.ViewObject. +# FreeCADGui.runCommand('DDA_DCChangesConfirm') +# todo.delay(self.doc.removeObject , obj.Label) + + +class JointSets(Creator): + def __init__(self): + self.__columnNum = 7 + self.__initWidgets() + self.__initConnections() + + + def __initWidgets(self): + self.strList = QtCore.QStringList() + self.strList<1 : + return + + if s.ObjectName=='ShapeMover' or s.ObjectName=='ShapeModifier': + return + + import Base + obj = sels[0].Object + name , idx = Base.getRealTypeAndIndex(obj.Label) + print 'trigger modifier for %s --> %d'%(name , idx) + + self.docName = s.DocumentName + self.objName = s.ObjectName + self.subElement = s.SubElementNames[0] + Base.__shapeBeModifying__ = [self.docName , self.objName , self.subElement] + print 'prepare done in ShapeModifierTrigger' + + if name=='JointLine': + FreeCADGui.runCommand('DDA_JointLineModifier') + +class LineModifier(Creator): + def __init__(self , shapeType='LineModifier'): + super(LineModifier,self).__init__(shapeType) + from DDATools import lineTracker + self.p1 = None + self.p2 = None + self.docName = None + self.objName = None + self.subElement = None + self.owner = None + + def GetResources(self): + return { + 'MenuText': 'LineModifier', + 'ToolTip': "Modify 1 line."} + + def Activated(self): + print 'LineModifier Activating' + super(LineModifier,self).Activated() + self.linetrack = lineTracker() + print '\t\t\t ========= line track', self.linetrack + obj = FreeCAD.ActiveDocument.getObject('ShapeModifier') + assert obj + self.docName = obj.RelatedDocumentName + self.objName = obj.RelatedObjectName + self.subElement = obj.RelatedSubElement + assert self.p1 + assert self.p2 + self.startTracking() + self.call = self.view.addEventCallback("SoEvent", self.action) + + def setPoints(self , p1 , p2 ): + self.p1 = p1 + self.p2 = p2 + + def startTracking(self): + self.linetrack.p1(self.p1) + self.linetrack.p2(self.p2) + self.linetrack.on() + + def refreshPoints(self): + self.linetrack.p2(self.p2) +# print self.p1 ,' <---> ',self.p2 + + def action(self, arg): + if arg["Type"] == "SoKeyboardEvent": + FreeCAD.Console.PrintMessage('keyboardEvent') + if arg["Key"] == "ESCAPE": + FreeCAD.Console.PrintError('Escape pressed, finising\n') + self.finish() + elif arg["Type"] == "SoLocation2Event": # mouse movement detection + point, ctrlPoint = getPoint(self, arg) +# self.ui.cross(True) + self.p2 = point + self.refreshPoints() + + elif arg["Type"] == "SoMouseButtonEvent": + if (arg["State"] == "DOWN") and (arg["Button"] == "BUTTON1"):# left button + print 'LineModifier left button clicked' + self.saveResult() + self.finish() + if (arg["State"] == "DOWN") and (arg["Button"] == "BUTTON1"):# right button + self.finish() + + def saveResult(self): + if not self.p1 or not self.p2: + print 'data unvalid in JointLineModifier. finishing. ' + assert False + return + if self.shapeType=='LineModifier': + self.owner.saveResult(self.p1 , self.p2) + elif self.shapeType=='LineMover': + subVector = self.p2 - self.p1 + p1 = self.originP1 + subVector + p2 = self.originP2 + subVector + self.owner.saveResult(p1 , p2) + + def finish(self): + print 'LineModifier finish' + if self.linetrack: + self.linetrack.finalize() + self.linetrack = None + super(LineModifier,self).finish() +# self.owner.finish() + import Base + Base.removeShapeModifier() + Base.removeShapeMover() + self.p1 = None + self.p2 = None + +class JointLineModifier(ShapeModifierBase): + def __init__(self , shapeType='JointLineModifier'): + super(JointLineModifier,self).__init__(shapeType) + self.lineModifier = None + self.__selectedAssistantNodeName = None + + def GetResources(self): + return { + 'MenuText': 'JointLineModifier', + 'ToolTip': "Modify 1 joint line."} + + def Activated(self): + print 'JointLineModifier Activating' + if self.lineModifier: + del self.lineModifier + self.lineModifier = None + self.getPointsAndCreateNodes() + self.view = FreeCADGui.ActiveDocument.ActiveView + self.call = self.view.addEventCallback("SoEvent", self.action) + + def __checkClickValid(self): + view=FreeCADGui.ActiveDocument.ActiveView + objs = view.getObjectsInfo(view.getCursorPos()) + if not objs or len(objs)==0: # click on blank + print 'click on blank in ', self.shapeType + return False + + findNeededShape = False + getOriginalObject = False + for obj in objs: + if obj['Document']==self.docName and obj['Object']==self.objName \ + and obj['Component']==self.subElement : # get original object + print 'get original object in ' , self.shapeType + getOriginalObject = True + if obj['Object']=='ShapeModifier' or obj['Object']=='ShapeMover': + print 'get needed object in ' , self.shapeType + findNeededShape = True + return findNeededShape and getOriginalObject + + def action(self, arg): + if arg["Type"] == "SoKeyboardEvent": + FreeCAD.Console.PrintMessage('keyboardEvent') + if arg["Key"] == "ESCAPE": + FreeCAD.Console.PrintError('Escape pressed, finising\n') + self.finish() + elif arg["Type"] == "SoMouseButtonEvent": + if (arg["State"] == "DOWN") and (arg["Button"] == "BUTTON1"):# left button + view=FreeCADGui.ActiveDocument.ActiveView + obj = view.getObjectInfo(view.getCursorPos()) + if not self.__checkClickValid(): # click unvalid + print 'click on other object or blank section, exiting' + self.finish() + self.clearAssistanceNodes() + return + + p1 , p2 = self.getPoints() + assert p1 + assert p2 + if self.__selectedAssistantNodeName == 'ShapeModifier': + self.lineModifier = LineModifier() + elif self.__selectedAssistantNodeName == 'ShapeMover': + self.lineModifier = LineMover() + else: + raise + + print '\t\t\t line Modifier : ' ,self.lineModifier + + self.lineModifier.owner = self + self.lineModifier.setPoints(p1, p2) + print p1 , p2 + print 'JointLineModifier start LineModifier tracking' + self.finish() + self.lineModifier.Activated() + elif (arg["State"] == "DOWN") and (arg["Button"] == "BUTTON2"):# left button + self.finish() + + def clearAssistanceNodes(self): + import Base + Base.__clearShapeModifyingNodes__ = True + Base.hideShapeModifier() + Base.hideShapeMover() + print 'hide assist nodes in JointLineModifier' + + def getPoints(self): + view=FreeCADGui.ActiveDocument.ActiveView + objs = view.getObjectsInfo(view.getCursorPos()) + obj = None + for o in objs: + if o['Object']=='ShapeModifier' or o['Object']=='ShapeMover': + obj = o + break + self.__selectedAssistantNodeName = obj['Object'] + assert obj + name , idx = Base.getRealTypeAndIndex(obj['Object']) + print 'jointline modifier triggered by %s -> %d'%(name,idx) + pName , pIdx = Base.getRealTypeAndIndex(obj['Component']) + print 'jointline modifier triggered by subelement %s -> %d'%(pName,pIdx) + object = FreeCAD.getDocument(self.docName).getObject(self.objName) + subName , subIdx = Base.getRealTypeAndIndex(self.subElement) + print 'jointline modifier selected sub line %s -> %d'%(subName,subIdx) + + from DDADatabase import dc_inputDatabase + from loadDataTools import DDALine + tmpLine = dc_inputDatabase.jointLines[subIdx-1] + + p1 = None + p2 = None + if pIdx==2: + p1 = FreeCAD.Vector(tmpLine.startPoint) + p2 = FreeCAD.Vector(tmpLine.endPoint) + else: + # pIdx==1 maybe ShapeMover or ShapeModifier, + # but ShapeMover doesn't care about order of p1 and p2 + p1 = FreeCAD.Vector(tmpLine.endPoint) + p2 = FreeCAD.Vector(tmpLine.startPoint) + return p1 , p2 + + def createAssistanceNodes(self, p1 , p2 , mid): + if self.docName==None or self.objName==None or self.subElement==None: + print 'data unvalid, stop assistance node in ', self.shapeType + return + Base.addShapeMover( self.docName , self.objName , self.subElement , mid) + Base.addShapeModifier( self.docName , self.objName , self.subElement , p1, p2) + + def getPointsAndCreateNodes(self): + import Base + sel = Base.__shapeBeModifying__ + self.docName = sel[0] + self.objName = sel[1] + self.subElement = sel[2] + subName , subIdx = Base.getRealTypeAndIndex(self.subElement) + obj = FreeCAD.ActiveDocument.getObject(self.objName) + from DDADatabase import dc_inputDatabase + line = dc_inputDatabase.jointLines[subIdx-1] + p1 = line.startPoint + p2 = line.endPoint + mid = FreeCAD.Vector((p1[0]+p2[0])/2 , (p1[1]+p2[1])/2 , 0) + self.createAssistanceNodes(p1, p2, mid) + + def finish(self): + super(JointLineModifier,self).finish() + if self.call: + self.view.removeEventCallback("SoEvent",self.call) + self.call = None + if self.view: + self.view = None + print 'JointLineModifier finish' + + def saveResult(self , p1 , p2): + obj = FreeCAD.getDocument(self.docName).getObject(self.objName) + assert obj + if not p1 or not p2: + print 'data unvalid in JointLineModifier. finishing. ' + return + import Base + print 'p1 : ' , p1 , ' p2 : ', p2 , ' in JointLineModifier.finish' + objName , objNo = Base.getRealTypeAndIndex(self.objName) + subName , subIdx = Base.getRealTypeAndIndex(self.subElement) + + from DDADatabase import dc_inputDatabase + from loadDataTools import DDALine + tmpLine = dc_inputDatabase.jointLines[subIdx-1] + sp = (p1[0] , p1[1] , 0) + ep = (p2[0] , p2[1] , 0) + dc_inputDatabase.changeVertices('JointLine', [subIdx-1]\ + , [DDALine(sp,ep,tmpLine.materialNo)] , ifRecord=True) + + self.clearAssistanceNodes() + obj.ViewObject.RedrawTrigger = True + print 'JointLineModifier save result successfully. ' + + +class LineMover(LineModifier): + + def __init__(self , shapeType='LineMover'): + super(LineMover,self).__init__(shapeType) + self.linetrack2 = lineTracker() + print 'linetrack2 added' + self.originP1 = None + self.originP2 = None + + def GetResources(self): + return { + 'MenuText': 'LineMover', + 'ToolTip': "Move line."} + + def Activated(self): + super(LineMover,self).Activated() + print 'Activated in ', self.shapeType + + def setPoints(self , p1 , p2 ): + self.originP1 = p1 + self.originP2= p2 + self.p1 = self.p2 = (p1+p2).multiply(0.5) + + def refreshPoints(self): + self.linetrack.p2(self.p2) + subVector = self.p2.sub(self.p1) + self.linetrack2.p1(self.originP1.add(subVector)) + self.linetrack2.p2(self.originP2.add(subVector)) + + def startTracking(self): + self.linetrack.p1(self.p1) + self.linetrack.p1(self.p2) + self.refreshPoints() + self.linetrack.on() + self.linetrack2.on() + self.iftracking = True + + def finish(self): + if self.linetrack2: + self.linetrack2.finalize() + self.linetrack2 = None + super(LineMover,self).finish() + self.originP1 = None + self.originP2 = None + +#class JointLineMover(JointLineModifier): +# def __init__(self , shapeType='JointLineMover'): +# super(JointLineMover).__init__(self,shapeType) +# +# def GetResources(self): +# return { +# 'MenuText': 'JointLineMover', +# 'ToolTip': "Modify 1 joint line."} +# +# def Activated(self): +# print 'JointLineModifier Activating' +# self.lineModifier = LineMover() +# self.lineModifier.owner = self +# self.getPointsAndCreateNodes() +# self.view = FreeCADGui.ActiveDocument.ActiveView +# self.call = self.view.addEventCallback("SoEvent", self.action) +# +# def action(self, arg): +# super(JointLineMover,self).action(arg) +# +# def getPoints(self): +# view=FreeCADGui.ActiveDocument.ActiveView +# objs = view.getObjectsInfo(view.getCursorPos()) +# obj = None +# for o in objs: +# if o['Object'] =='ShapeMover': +# obj = o +# break +# assert obj +# name , idx = Base.getRealTypeAndIndex(obj['Object']) +# print obj['Object'] +# print 'jointline mover for %s -> %d'%(name,idx) +# pName , pIdx = Base.getRealTypeAndIndex(obj['Component']) +# print obj['Component'] +# print 'jointline mover for subelement %s -> %d'%(pName,pIdx) +# object = self.doc.getObject(self.objName) +# pts = object.ViewObject.Points +# subName , subIdx = Base.getRealTypeAndIndex(self.subElement) +# print 'jointline mover selected sub linet %s -> %d'%(subName,subIdx) +# originP1 = None +# originP2 = None +# originP1 = pts[2*(subIdx-1)] +# originP2 = pts[2*(subIdx-1)+1] +# return originP1 , originP2 +# +# def finish(self): +# super(JointLineMover,self).finish() +# +# def saveResult(self , p1 , p2): +# super(JointLineMover,self).finish() +# obj = FreeCAD.getDocument(self.docName).getObject(self.objName) +# pts = obj.ViewObject.Points +# if not self.p1 or not self.p2: +# print 'data unvalid in JointLineMover. finising. ' +# return +# import Base +# subName , subIdx = Base.getRealTypeAndIndex(self.subElement) +# subVector = self.p2 - self.p1 +# pts[2*(subIdx-1)] = self.originP1 + subVector +# pts[2*(subIdx-1)+1] = self.originP2 + subVector +# obj.ViewObject.Points = pts +# print 'JointLineMover finishes successfully. ' + + +class CircleMover(ShapeModifierBase): + def __init__(self , shapeType='CircleMover'): + super(CircleMover,self).__init__(shapeType) + + def GetResources(self): + return { + 'MenuText': 'CircleMover', + 'ToolTip': "Move circle."} + + def Activated(self): + super(CircleMover,self).Activated() + + +DDAJointSets = JointSets() +DDATunnels = Tunnels() +DDACheckSaveJointSetsAndTunnels = CheckSaveJointSetsAndTunnels() + +FreeCADGui.addCommand('DDA_ShapeModifierTrigger', ShapeModifierTrigger()) +FreeCADGui.addCommand('DDA_JointLineModifier', JointLineModifier()) +FreeCADGui.addCommand('DDA_GenerateBorder', BorderGenerator()) +FreeCADGui.addCommand('DDA_GenerateTunnelBolts', TunnelBoltsGenerator()) +FreeCADGui.addCommand('DDA_BoundaryLine', BoundaryLines()) +FreeCADGui.addCommand('DDA_AdditionalLine', AdditionalLines()) +FreeCADGui.addCommand('DDA_MaterialLine', MaterialLines()) +FreeCADGui.addCommand('DDA_JointSet', DDAJointSets ) +FreeCADGui.addCommand('DDA_Tunnel', DDATunnels) +FreeCADGui.addCommand('DDA_FixedPoint', FixedPoint()) +FreeCADGui.addCommand('DDA_LoadingPoint', LoadingPoint()) +FreeCADGui.addCommand('DDA_MeasuredPoint', MeasuredPoint()) +FreeCADGui.addCommand('DDA_HolePoint', HolePoint()) +FreeCADGui.addCommand('DDA_CheckSaveJointSetsAndTunnels' , DDACheckSaveJointSetsAndTunnels) +FreeCADGui.addCommand('DDA_StoreBlocksMaterial' , StoreBlocksMaterial()) +#FreeCADGui.addCommand('DDA_Table', TestTable()) \ No newline at end of file diff --git a/src/Mod/DDA/DDAToolbars.py b/src/Mod/DDA/DDAToolbars.py new file mode 100644 index 000000000000..65d445fd9a7b --- /dev/null +++ b/src/Mod/DDA/DDAToolbars.py @@ -0,0 +1,163 @@ + +#*************************************************************************** +#* * +#* Copyright (c) 2009, 2010 * +#* Xiaolong Cheng * +#* * +#* 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 FreeCADGui + +__errorStyleSheet__ = "background-color:rgba(255,160,30,255)" +__normalStyleSheet__ = "background-color:rgba(255,255,255,255)" + +def getMainWindow(): + "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") + + +class LineToolbar: + def __init__(self): + self.__initToolbar() + self.sourceCmd = None + self.crossedViews = [] + + def __initToolbarStyle(self): + self.__toolbar.setWindowFlags(QtCore.Qt.Tool | QtCore.Qt.FramelessWindowHint) + self.__toolbar.setFloatable(True) + self.__toolbar.setMovable(True) + + def __initToolbar(self): + # init self.__toolbar style + mainWindow = getMainWindow() + self.__toolbar = QtGui.QToolBar('LineToolbar',mainWindow) + self.__toolbar.setAllowedAreas(QtCore.Qt.NoToolBarArea) + self.__toolbar.setFixedSize(400,40) + self.__toolbar.setVisible(False) + self.__initToolbarStyle() + mainWindow.addToolBar(self.__toolbar) + + self.__xlabel = QtGui.QLabel('x : ') + self.__act_xLabel = self.__toolbar.addWidget(self.__xlabel) + self.__act_xLabel.setVisible(True) + + self.xValue = QtGui.QLineEdit() + self.__act_xValue = self.__toolbar.addWidget(self.xValue) + self.__act_xValue.setVisible(True) + + self.__ylabel = QtGui.QLabel('y : ') + self.__act_yLabel = self.__toolbar.addWidget(self.__ylabel) + self.__act_yLabel.setVisible(True) + + self.yValue = QtGui.QLineEdit() + self.__act_yValue = self.__toolbar.addWidget(self.yValue) + self.__act_yValue.setVisible(True) + + self.__toolbar.addSeparator() + + self.__actFinish = self.__toolbar.addAction(QtCore.QString('Finish')) + self.__actClose = self.__toolbar.addAction(QtCore.QString('Close')) + + # connection + self.xValue.textEdited.connect(self.checkDataValid) + self.yValue.textEdited.connect(self.checkDataValid) + + def on(self): + self.__toolbar.show() +# self.__initToolbarStyle() +# self.__toolbar.move(100,100) + + def offUi(self): + self.__toolbar.hide() + + def checkDataValid(self,text): + if not self.xValue.hasFocus() and not self.yValue.hasFocus(): + return + + tmpError = False + try: + tmp = float(self.xValue.text()) + except ValueError: + self.xValue.setStyleSheet(__errorStyleSheet__) + tmpError = True + else: + self.xValue.setStyleSheet(__normalStyleSheet__) + + try: + tmp = float(self.yValue.text()) + except ValueError: + self.yValue.setStyleSheet(__errorStyleSheet__) + tmpError = True + else: + self.yValue.setStyleSheet(__normalStyleSheet__) + + if not tmpError: + import Base + Base.showErrorMessageBox('ValueError', 'please input float number') + return + else: + self.validatePoint() + + def validatePoint(self): + "function for checking and sending numbers entered manually" + assert self.sourceCmd + self.sourceCmd.numericInput(float(self.xValue.text())\ + , float(self.yValue.text()), 0) + + + def cross(self, on=True): + if on: + if not self.crossedViews: + mw = getMainWindow() + self.crossedViews = mw.findChildren(QtGui.QFrame, "SoQtWidgetName") + for w in self.crossedViews: + w.setCursor(QtCore.Qt.CrossCursor) + else: + for w in self.crossedViews: + w.unsetCursor() + self.crossedViews = [] + + def displayPoint(self, point, last=None, plane=None): + "this function displays the passed coords in the x, y, and z widgets" + dp = point + self.xValue.setText("%.6f" % dp.x) + self.yValue.setText("%.6f" % dp.y) + +lineToolbar = LineToolbar() +lineToolbar.offUi() +FreeCADGui.DDAToolbar = lineToolbar +# def setVisible(self , flag): +# if flag: +# self.__toolbar.show() +# self.__initToolbarStyle() +# else: +# self.__toolbar.hide() + + +#toolbar = LineToolbar() +#toolbar.setVisible(True) +#print toolbar \ No newline at end of file diff --git a/src/Mod/DDA/DDATools.py b/src/Mod/DDA/DDATools.py new file mode 100644 index 000000000000..b15347a4f36b --- /dev/null +++ b/src/Mod/DDA/DDATools.py @@ -0,0 +1,1328 @@ +# coding=gbk + +#*************************************************************************** +#* * +#* Copyright (c) 2009, 2010 * +#* Xiaolong Cheng * +#* * +#* 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 + +FreeCAD.Console.PrintMessage( 'DDATools moudle begin\n') +__title__ = "FreeCAD DDA Workbench GUI Tools" +__author__ = "Cheng Xiaolong" + +FreeCAD.Console.PrintMessage ('Importing DDATools moudle\n') + +#--------------------------------------------------------------------------- +# Generic stuff +#--------------------------------------------------------------------------- +import os, FreeCAD, FreeCADGui, Part, WorkingPlane, math, re +from pivy import coin +from FreeCAD import Vector +#from draftlibs import fcvec, fcgeo +import fcvec, fcgeo +from functools import partial +import Base +from drawGui import todo , QtCore, QtGui +from TrackerTools import * + +FreeCAD.Console.PrintMessage ('base moudles import done\n') + +def translate(context, text): + "convenience function for Qt translator" + return QtGui.QApplication.translate(context, text, None, QtGui.QApplication.UnicodeUTF8).toUtf8() + +def msg(text=None, mode=None): + "prints the given message on the FreeCAD status bar" + if not text: FreeCAD.Console.PrintMessage("") + else: + if mode == 'warning': + FreeCAD.Console.PrintWarning(text) + elif mode == 'error': + FreeCAD.Console.PrintError(text) + else: + FreeCAD.Console.PrintMessage(text) + + +# last snapped objects, for quick intersection calculation +lastObj = [0, 0] + +# set modifier keys +MODS = ["shift", "ctrl", "alt"] +MODCONSTRAIN = MODS[Base.getParam("modconstrain")] +MODSNAP = MODS[Base.getParam("modsnap")] +MODALT = MODS[Base.getParam("modalt")] + +def getSupport(args): + "returns the supporting object and sets the working plane" + snapped = FreeCADGui.ActiveDocument.ActiveView.getObjectInfo((args["Position"][0], args["Position"][1])) + if not snapped: return None + obj = None + plane.save() + try: + obj = FreeCAD.ActiveDocument.getObject(snapped['Object']) + shape = obj.Shape + component = getattr(shape, snapped["Component"]) + if plane.alignToFace(component, 0) \ + or plane.alignToCurve(component, 0): # 这一句要研究下,‘0’是什么意思,度数吗? + self.display(plane.axis) + except: + FreeCAD.Console.PrintWarning("function 'getSupport' get Exceptions\n") + + return obj + +def hasMod(args, mod): + "checks if args has a specific modifier" + if mod == "shift": + return args["ShiftDown"] + elif mod == "ctrl": + return args["CtrlDown"] + elif mod == "alt": + return args["AltDown"] + +def setMod(args, mod, state): + "sets a specific modifier state in args" + if mod == "shift": + args["ShiftDown"] = state + elif mod == "ctrl": + args["CtrlDown"] = state + elif mod == "alt": + args["AltDown"] = state + + + +def snapPoint(target, point, cursor, ctrl=False): + ''' + Snap function used by the Draft tools + + Currently has two modes: passive and active. Pressing CTRL while + clicking puts you in active mode: + + - In passive mode (an open circle appears), your point is + snapped to the nearest point on any underlying geometry. + + - In active mode (ctrl pressed, a filled circle appears), your point + can currently be snapped to the following points: + - Nodes and midpoints of all Part shapes + - Nodes and midpoints of lines/wires + - Centers and quadrant points of circles + - Endpoints of arcs + - Intersection between line, wires segments, arcs and circles + - When constrained (SHIFT pressed), Intersections between + constraining axis and lines/wires + ''' + + def getConstrainedPoint(edge, last, constrain): + "check for constrained snappoint" + p1 = edge.Vertexes[0].Point + p2 = edge.Vertexes[-1].Point + ar = [] + if (constrain == 0): + if ((last.y > p1.y) and (last.y < p2.y) or (last.y > p2.y) and (last.y < p1.y)): + pc = (last.y - p1.y) / (p2.y - p1.y) # 按比例计算,如为线段,下行中的cp计算结果应该就在edge上 + cp = (Vector(p1.x + pc * (p2.x - p1.x), p1.y + pc * (p2.y - p1.y), p1.z + pc * (p2.z - p1.z))) + ar.append([cp, 1, cp]) # constrainpoint + if (constrain == 1): + if ((last.x > p1.x) and (last.x < p2.x) or (last.x > p2.x) and (last.x < p1.x)): + pc = (last.x - p1.x) / (p2.x - p1.x) + cp = (Vector(p1.x + pc * (p2.x - p1.x), p1.y + pc * (p2.y - p1.y), p1.z + pc * (p2.z - p1.z))) + ar.append([cp, 1, cp]) # constrainpoint + return ar + + def getPassivePoint(info): + "returns a passive snap point" + cur = Vector(info['x'], info['y'], info['z']) + return [cur, 2, cur] + + def getScreenDist(dist, cursor): + "returns a 3D distance from a screen pixels distance" + p1 = FreeCADGui.ActiveDocument.ActiveView.getPoint(cursor) + p2 = FreeCADGui.ActiveDocument.ActiveView.getPoint((cursor[0] + dist, cursor[1])) + return (p2.sub(p1)).Length # 好像计算结果是屏幕上两个点的x方向距离,为什么 ,后面在计算snapRadius时用到,用来计算半径 + + def getGridSnap(target, point): + "returns a grid snap point if available" + if target.grid: + return target.grid.getClosestNode(point) + return None + + def getPerpendicular(edge, last): + "returns a point on an edge, perpendicular to the given point" + dv = last.sub(edge.Vertexes[0].Point) + nv = fcvec.project(dv, fcgeo.vec(edge)) + np = (edge.Vertexes[0].Point).add(nv) # 将edge作直线看,np是线外点到些直线的垂点 + return np + + # checking if alwaySnap setting is on + extractrl = False + if Base.getParam("alwaysSnap"): + extractrl = ctrl + ctrl = True + + # setting Radius , the raius is for snapping , not radius of circle + radius = getScreenDist(Base.getParam("snapRange"), cursor) + + # checking if parallel to one of the edges of the last objects + target.snap.off() + target.extsnap.off() + if (len(target.node) > 0): + for o in [lastObj[1], lastObj[0]]: # 前文中申明,last snapped objects , 用来快速求交 + if o: + ob = target.doc.getObject(o) + if ob: + edges = ob.Shape.Edges + if len(edges) < 10: + for e in edges: + if isinstance(e.Curve, Part.Line): + last = target.node[len(target.node) - 1] + de = Part.Line(last, last.add(fcgeo.vec(e))).toShape() + np = getPerpendicular(e, point) # point为函数参数,计算point到e的垂点 + if (np.sub(point)).Length < radius: # snap 成功 + target.snap.coords.point.setValue((np.x, np.y, np.z)) + target.snap.setMarker("circle") + target.snap.on() # target.snap和target.extsnap区别 + target.extsnap.p1(e.Vertexes[0].Point) + target.extsnap.p2(np) + target.extsnap.on() + point = np + else: + last = target.node[len(target.node) - 1] + de = Part.Line(last, last.add(fcgeo.vec(e))).toShape() + np = getPerpendicular(de, point) + if (np.sub(point)).Length < radius: # 取edge首尾端点所成线段算距离,为何有效 + target.snap.coords.point.setValue((np.x, np.y, np.z)) + target.snap.setMarker("circle") + target.snap.on() + point = np + + # check if we snapped to something + snapped = target.view.getObjectInfo((cursor[0], cursor[1])) + + if (snapped == None): + # nothing has been snapped, check fro grid snap + gpt = getGridSnap(target, point) # 选取最近点 + if gpt: + if radius != 0: + dv = point.sub(gpt) + if dv.Length <= radius: + target.snap.coords.point.setValue((gpt.x, gpt.y, gpt.z)) + target.snap.setMarker("point") + target.snap.on() + return gpt + return point + else: + # we have something to snap + obj = target.doc.getObject(snapped['Object']) + if hasattr(obj.ViewObject, "Selectable"): + if not obj.ViewObject.Selectable: + return point + if not ctrl: + # are we in passive snap? + snapArray = [getPassivePoint(snapped)] + else: + snapArray = [] + comp = snapped['Component'] # 'Component'保存什么? + if obj.isDerivedFrom("Part::Feature"): + if "Edge" in comp: + # get the stored objects to calculate intersections + intedges = [] + if lastObj[0]: + lo = target.doc.getObject(lastObj[0]) + if lo: + if lo.isDerivedFrom("Part::Feature"): + intedges = lo.Shape.Edges + + nr = int(comp[4:]) - 1 # 这计算的是什么? + edge = obj.Shape.Edges[nr] + for v in edge.Vertexes: + snapArray.append([v.Point, 0, v.Point]) # 点和数放在一起,中间这一位什么意思? + if isinstance(edge.Curve, Part.Line): + # the edge is a line + midpoint = fcgeo.findMidpoint(edge) + snapArray.append([midpoint, 1, midpoint]) # 点和数放在一起,中间这一位什么意思? + if (len(target.node) > 0): + last = target.node[len(target.node) - 1] # target.node 中保存的是点 + snapArray.extend(getConstrainedPoint(edge, last, target.constrain)) + np = getPerpendicular(edge, last) + snapArray.append([np, 1, np]) + + elif isinstance (edge.Curve, Part.Circle): + # the edge is an arc + rad = edge.Curve.Radius + pos = edge.Curve.Center + for i in [0, 30, 45, 60, 90, 120, 135, 150, 180, 210, 225, 240, 270, 300, 315, 330]: + ang = math.radians(i) + cur = Vector(math.sin(ang) * rad + pos.x, math.cos(ang) * rad + pos.y, pos.z) + snapArray.append([cur, 1, cur]) + for i in [15, 37.5, 52.5, 75, 105, 127.5, 142.5, 165, 195, 217.5, 232.5, 255, 285, 307.5, 322.5, 345]: + ang = math.radians(i) + cur = Vector(math.sin(ang) * rad + pos.x, math.cos(ang) * rad + pos.y, pos.z) + snapArray.append([cur, 0, pos]) # 点和数放在一起,中间这一位什么意思?保存东西还可以不一样 + + for e in intedges: + # get the intersection points + pt = fcgeo.findIntersection(e, edge) + if pt: + for p in pt: + snapArray.append([p, 3, p]) + elif "Vertex" in comp: + # directly snapped to a vertex + p = Vector(snapped['x'], snapped['y'], snapped['z']) + snapArray.append([p, 0, p]) + elif comp == '': + # workaround for the new view provider + p = Vector(snapped['x'], snapped['y'], snapped['z']) + snapArray.append([p, 2, p]) + else: + snapArray = [getPassivePoint(snapped)] + elif Base.getType(obj) == "Dimension": + for pt in [obj.Start, obj.End, obj.Dimline]: + snapArray.append([pt, 0, pt]) + elif Base.getType(obj) == "Mesh": + for v in obj.Mesh.Points: + snapArray.append([v.Vector, 0, v.Vector]) + if not lastObj[0]: # 为什么 + lastObj[0] = obj.Name + lastObj[1] = obj.Name + if (lastObj[1] != obj.Name): + lastObj[0] = lastObj[1] + lastObj[1] = obj.Name + + # calculating shortest distance + shortest = 1000000000000000000 + spt = Vector(snapped['x'], snapped['y'], snapped['z']) + newpoint = [Vector(0, 0, 0), 0, Vector(0, 0, 0)] + for pt in snapArray: + if pt[0] == None: FreeCAD.Console.PrintMessage ("snapPoint: debug 'i[0]' is 'None'") + di = pt[0].sub(spt) + if di.Length < shortest: + shortest = di.Length + newpoint = pt + if radius != 0: + dv = point.sub(newpoint[2]) + if (not extractrl) and (dv.Length > radius): + newpoint = getPassivePoint(snapped) + target.snap.coords.point.setValue((newpoint[2].x, newpoint[2].y, newpoint[2].z)) + if (newpoint[1] == 1): + target.snap.setMarker("square") + elif (newpoint[1] == 0): + target.snap.setMarker("point") + elif (newpoint[1] == 3): + target.snap.setMarker("square") + else: + target.snap.setMarker("circle") + target.snap.on() + return newpoint[2] + +def getPoint(target, args, mobile=False, sym=False, workingplane=True): + ''' + Function used by the Draft Tools. + returns a constrained 3d point and its original point. + if mobile=True, the constraining occurs from the location of + mouse cursor when Shift is pressed, otherwise from last entered + point. If sym=True, x and y values stay always equal. If workingplane=False, + the point wont be projected on the Working Plane. + ''' + ui = FreeCADGui.DDAToolbar + view = FreeCADGui.ActiveDocument.ActiveView + point = view.getPoint(args["Position"][0], args["Position"][1]) + point = snapPoint(target, point, args["Position"], hasMod(args, MODSNAP)) + + if (not plane.weak) and workingplane: + # working plane was explicitely selected - project onto it + viewDirection = view.getViewDirection() + if FreeCADGui.ActiveDocument.ActiveView.getCameraType() == "Perspective": + camera = FreeCADGui.ActiveDocument.ActiveView.getCameraNode() + p = camera.getField("position").getValue() + # view is from camera to point: + viewDirection = point.sub(Vector(p[0], p[1], p[2])) + # if we are not snapping to anything, project along view axis, + # otherwise perpendicularly + if view.getObjectInfo((args["Position"][0], args["Position"][1])): + pass + # point = plane.projectPoint(point) + else: + point = plane.projectPoint(point, viewDirection) + ctrlPoint = Vector(point.x, point.y, point.z) + if (hasMod(args, MODCONSTRAIN)): # constraining + if mobile and (target.constrain == None): + target.node.append(point) # target.node中保存的是点,竟然这样添加 + point = constrainPoint(target, point, mobile=mobile, sym=sym) + else: + target.constrain = None + ui.xValue.setEnabled(True) + ui.yValue.setEnabled(True) +# ui.zValue.setEnabled(True) + if target.node: + if target.featureName == "Rectangle": + ui.displayPoint(point, target.node[0], plane=plane) + else: + ui.displayPoint(point, target.node[-1], plane=plane) + else: ui.displayPoint(point, plane=plane) + return point, ctrlPoint + + +def getSupport(args): + "returns the supporting object and sets the working plane" + snapped = FreeCADGui.ActiveDocument.ActiveView.getObjectInfo((args["Position"][0], args["Position"][1])) + if not snapped: return None + obj = None + plane.save() + try: + obj = FreeCAD.ActiveDocument.getObject(snapped['Object']) + shape = obj.Shape + component = getattr(shape, snapped["Component"]) + if plane.alignToFace(component, 0) \ + or plane.alignToCurve(component, 0): # 这一句要研究下,‘0’是什么意思,度数吗? + self.display(plane.axis) + except: + pass + return obj + + +#--------------------------------------------------------------------------- +# Geometry constructors +#--------------------------------------------------------------------------- + +class Creator(object): + "A generic DDA Shape Creator used by creation tools such as line or arc" + + def __init__(self,shapeType = 'xxx'): +# self.commitList = [] + self.shapeType = shapeType + + def Activated(self, name="None"): + FreeCAD.Console.PrintMessage( 'Creator activing\n') + if FreeCAD.activeDDACommand: + FreeCAD.activeDDACommand.finish() + self.ui = None + self.call = None + self.doc = None + self.support = None +# self.commitList = [] + self.doc = FreeCAD.ActiveDocument + self.view = FreeCADGui.ActiveDocument.ActiveView + self.featureName = name + + # debug message + print self.shapeType , ' in Creator' + +# import Base +# Base.__lastShapeName__=self.shapeType +# + if not self.doc: + FreeCAD.Console.PrintMessage( 'FreeCAD.ActiveDocument get failed\n') + self.finish() + else: + FreeCAD.activeDDACommand = self # FreeCAD.activeDDACommand 在不同的时间会接收不同的命令 +# self.ui = FreeCADGui.DDADockWidget + FreeCAD.Console.PrintMessage('setting mouse cursor in Creator\n') +# self.ui.cross(True) +# self.ui.sourceCmd = self + FreeCAD.Console.PrintMessage('self.ui works fine\n') +# self.ui.setTitle(name) +# self.ui.show() + rot = self.view.getCameraNode().getField("orientation").getValue() # camera 的朝向,一个matrix + upv = Vector(rot.multVec(coin.SbVec3f(0, 1, 0)).getValue()) # camera 的朝上方向 + plane.setup(fcvec.neg(self.view.getViewDirection()), Vector(0, 0, 0), upv) + self.node = [] + self.pos = [] + self.constrain = None + self.obj = None + self.snap = snapTracker() + self.extsnap = lineTracker(dotted=True) + self.planetrack = PlaneTracker() + # 源代码中使用Draft.getParam(...)作判断来确定是否使用gridTracker() + self.grid = gridTracker() + + import Base + Base.enableSelectionObserver(False) + + + + import DDAToolbars + FreeCADGui.DDAToolBar = DDAToolbars.lineToolbar + FreeCADGui.DDAToolBar.on() + self.ui = FreeCADGui.DDAToolBar + self.ui.sourceCmd = self + + def IsActive(self): + if FreeCADGui.ActiveDocument: + return True + else: + return False + + def finish(self): + self.snap.finalize() + self.extsnap.finalize() + self.node = [] + self.planetrack.finalize() + if self.grid: self.grid.finalize() + if self.support: plane.restore() + FreeCAD.activeDDACommand = None + if self.ui: + FreeCAD.Console.PrintMessage('closing UI\n') + self.ui.offUi() + self.ui.cross(False) + self.ui.sourceCmd = None +# msg("") + if self.call: + self.view.removeEventCallback("SoEvent", self.call) + self.call = None +# if self.commitList: +# todo.delayCommit(self.commitList) +# self.commitList = [] + import Base + Base.enableSelectionObserver(True) + + +# def commit(self, name, func): +# "stores partial actions to be committed to the FreeCAD document" +# self.commitList.append((name, func)) + +class Line(Creator): + "The Line FreeCAD command definition" + + def __init__(self, wiremode=False , shapeType = 'xxx' , mustColse=False): + self.isWire = wiremode + self.shapeType = shapeType + self.mustColse = mustColse + + def GetResources(self): + return { + #'Pixmap' : 'Draft_Line', + #'Accel' : "L,I", + 'MenuText': "Line", + 'ToolTip': "Creates a 2-point line. CTRL to snap, SHIFT to constrain"} + + def Activated(self, name="Line"): + FreeCAD.Console.PrintMessage( 'Line activing\n') + Creator.Activated(self, name) + if self.doc: + self.obj = None + self.linetrack = lineTracker() + self.constraintrack = lineTracker(dotted=True) + + self.obj = self.doc.getObject('Line') + if not self.obj: + self.obj = self.doc.addObject("Part::Feature", 'Line') # 新建一个用于显示的object + + # self.obj.ViewObject.Selectable = False + #Draft.formatObject(self.obj) + #if not Draft.getParam("UiMode"): self.makeDumbTask() + self.call = self.view.addEventCallback("SoEvent", self.action) + msg( "Pick first point:\n") + +# import DDAToolbars +# FreeCADGui.DDAToolBar = DDAToolbars.lineToolbar +# FreeCADGui.DDAToolBar.on() +# self.ui = FreeCADGui.DDAToolBar +# self.ui.sourceCmd = self + + def finish(self, closed=False, cont=False): + "terminates the operation and closes the poly if asked" + #if not Draft.getParam("UiMode"): + FreeCAD.Console.PrintMessage( 'finishing\n') + FreeCADGui.Control.closeDialog() + if self.obj: + self.obj.Shape = Part.Shape([]) + self.obj.ViewObject.Visibility = False +# old = self.obj.Name +# todo.delay(self.doc.removeObject, old) + + self.obj = None # 可能到些都是辅助图元,下面if里的内容才是真正的最终图元 ,self.commit(...)里的内容才是真正的图元 +# if (len(self.node) > 1): +# self.commit("Create Wire", +# partial(Base.makeWire, self.node, closed, +# face=False, support=self.support , fname = self.shapeType)) + tmpObj = None +# if self.shapeType == 'BoundaryLine' and len(self.node) > 2: +# Base.addLines2Document(self.node , True , face=False, support=self.support , fname = self.shapeType) +# elif(len(self.node) > 1): +# tmpObj = Base.addLines2Document(self.node , True , face=False, support=self.support , fname = self.shapeType) + + if self.shapeType!= 'MaterialLine': + tmpObj = Base.addPolyLine2Document(self.shapeType, ifStore2Database = True , pointsList=self.node , closed=True) + + if self.ui: + self.linetrack.finalize() + self.constraintrack.finalize() + Creator.finish(self) + + return tmpObj + + def action(self, arg): + "scene event handler" + if arg["Type"] == "SoKeyboardEvent": + FreeCAD.Console.PrintMessage('keyboardEvent') + if arg["Key"] == "ESCAPE": + FreeCAD.Console.PrintError('Escape pressed, finising\n') + self.finish(closed = self.mustColse) + elif arg["Type"] == "SoLocation2Event": # mouse movement detection + point, ctrlPoint = getPoint(self, arg) + #FreeCAD.Console.PrintMessage('setting mouse cursor in Line action\n') + self.ui.cross(True) + self.linetrack.p2(point) + # Draw constraint tracker line. +# if hasMod(arg, MODCONSTRAIN): +# self.constraintrack.p1(point) +# self.constraintrack.p2(ctrlPoint) +# self.constraintrack.on() +# else: +# self.constraintrack.off() + elif arg["Type"] == "SoMouseButtonEvent": + if (arg["State"] == "DOWN") and (arg["Button"] == "BUTTON1"): + if (arg["Position"] == self.pos): + FreeCAD.Console.PrintError('same point, finising\n') + self.finish(closed=self.mustColse, cont=True) + else: + if not self.node: self.support = getSupport(arg) + point, ctrlPoint = getPoint(self, arg) + self.pos = arg["Position"] + self.node.append(point) + self.linetrack.p1(point) + self.drawSegment(point) +# if (not self.isWire and len(self.node) == 2): +# FreeCAD.Console.PrintError('not Wire and len(node)==2, finising\n') +# self.finish(closed=False, cont=True) +# if (len(self.node) > 2): +# # DNC: allows to close the curve +# # by placing ends close to each other +# # with tol = Draft tolerance +# # old code has been to insensitive +# # if fcvec.equals(point,self.node[0]): +# if ((point - self.node[0]).Length < Base.tolerance()): +# self.undolast() +# FreeCAD.Console.PrintError('< tolerance, finising\n') +# self.finish(closed=True, cont=True) +# msg( "Wire has been closed\n") + + def drawSegment(self, point): + "draws a new segment" + if (len(self.node) == 1): + self.linetrack.on() + msg(translate("draft", "Pick next point:\n")) + self.planetrack.set(self.node[0]) + elif (len(self.node) == 2): + last = self.node[len(self.node) - 2] # 参数中的point是最新的点,取倒数第二个点和point绘线 + newseg = Part.Line(last, point).toShape() + self.obj.Shape = newseg + self.obj.ViewObject.Visibility = True + if self.isWire: + msg(translate("draft", "Pick next point, or (F)inish or (C)lose:\n")) + else: + currentshape = self.obj.Shape + last = self.node[len(self.node) - 2] + newseg = Part.Line(last, point).toShape() + if not currentshape: + newshape = newseg + else : + newshape = currentshape.fuse(newseg) + self.obj.Shape = newshape + msg(translate("draft", "Pick next point, or (F)inish or (C)lose:\n")) + +# def wipe(self): +# "removes all previous segments and starts from last point" +# if len(self.node) > 1: +# FreeCAD.Console.PrintMessage ("nullifying") +# # self.obj.Shape.nullify() - for some reason this fails +# self.obj.ViewObject.Visibility = False +# self.node = [self.node[-1]] # 清空了除最后一个点外保存的所有点 +# FreeCAD.Console.PrintMessage ("setting trackers") +# self.linetrack.p1(self.node[0]) +# self.planetrack.set(self.node[0]) +# msg(translate("draft", "Pick next point:\n")) +# FreeCAD.Console.PrintMessage ("done\n") + + def numericInput(self, numx, numy, numz): + "this function gets called by the toolbar when valid x, y, and z have been entered there" + point = Vector(numx, numy, numz) + self.node.append(point) + self.linetrack.p1(point) + self.drawSegment(point) +# if (not self.isWire and len(self.node) == 2): +# self.finish(False, cont=True) + #self.ui.setNextFocus() + + +class Rectangle(Creator): + "the DDA_Rectangle FreeCAD command definition" + + def GetResources(self): + return { + #'Pixmap' : 'Draft_Rectangle', + # 'Accel' : "R, E", + 'MenuText': "Rectangle", + 'ToolTip': "Creates a 2-point rectangle. CTRL to snap"} + + def Activated(self): + Creator.Activated(self, "Rectangle") + if self.ui: + self.refpoint = None + self.ui.pointUi() + #self.ui.extUi() + self.call = self.view.addEventCallback("SoEvent", self.action) + self.rect = rectangleTracker() + msg( "Pick first point:\n") + + def finish(self, closed=False, cont=False): + "terminates the operation and closes the poly if asked" + Creator.finish(self) + if self.ui: + self.rect.off() + self.rect.finalize() + if cont and self.ui: + if self.ui.continueMode: + self.Activated() + + def createObject(self): + "creates the final object in the current doc" + p1 = self.node[0] + p3 = self.node[-1] + diagonal = p3.sub(p1) # diagonal 对角线 + p2 = p1.add(fcvec.project(diagonal, plane.v)) # 添加plane.v方向的偏移量 + p4 = p1.add(fcvec.project(diagonal, plane.u)) + length = p4.sub(p1).Length + if abs(fcvec.angle(p4.sub(p1), plane.u, plane.axis)) > 1: length = -length + height = p2.sub(p1).Length + if abs(fcvec.angle(p2.sub(p1), plane.v, plane.axis)) > 1: height = -height + p = plane.getRotation() + p.move(p1) +# try: + self.commit("Create Rectangle", + partial(Base.makeRectangle, length, height, + p, False, support=self.support)) +# except: +# print "Draft: error delaying commit" + self.finish(cont=True) + + def action(self, arg): + "scene event handler" + if arg["Type"] == "SoKeyboardEvent": + if arg["Key"] == "ESCAPE": + self.finish() + elif arg["Type"] == "SoLocation2Event": # mouse movement detection + point, ctrlPoint = getPoint(self, arg, mobile=True) + self.rect.update(point) + self.ui.cross(True) + elif arg["Type"] == "SoMouseButtonEvent": + if (arg["State"] == "DOWN") and (arg["Button"] == "BUTTON1"): + if (arg["Position"] == self.pos): + self.finish() + else: + if not self.node: self.support = getSupport(arg) + point, ctrlPoint = getPoint(self, arg) + self.appendPoint(point) + + def numericInput(self, numx, numy, numz): + "this function gets called by the toolbar when valid x, y, and z have been entered there" + point = Vector(numx, numy, numz) + self.appendPoint(point) + + def appendPoint(self, point): + self.node.append(point) + if (len(self.node) > 1): + FreeCAD.Console.PrintMessage('DDA_Rectangle create object\n') + self.rect.update(point) + self.createObject() + else: + msg("Pick opposite point:\n") +# self.ui.setRelative() + self.rect.setorigin(point) + self.rect.on() + self.planetrack.set(point) + + + +class Circle(Creator): + "the Draft_Arc FreeCAD command definition" + + def __init__(self , shapeType = 'xxx'): + self.closedCircle = True + self.featureName = "Circle" + self.shapeType = shapeType + self.center = None + + def GetResources(self): + return { + 'MenuText': "Circle", + 'ToolTip': "Creates a circle"} + + def Activated(self): + Creator.Activated(self, self.featureName) + if self.ui: + self.step = 0 + self.center = None + self.rad = None + self.call = self.view.addEventCallback("SoEvent", self.action) + msg("Pick center point:\n") + + def finish(self, closed=True, cont=False): + "finishes the arc" + Creator.finish(self) + + tmpObj = None + if self.center : + import Base + print 'Circle ending' + view=FreeCADGui.ActiveDocument.ActiveView + obj = view.getObjectInfo(view.getCursorPos()) + objName , objIdx = Base.getRealTypeAndIndex(obj['Object']) + assert objName == 'Block' + subName , subIdx = Base.getRealTypeAndIndex(obj['Component']) + tmpObj = self.drawCircle(subIdx) + +# from loadDataTools import DDAPoint +# Base.addCircles2Document(self.shapeType, ifStore2Database=True \ +# , pts=[DDAPoint(self.center[0],self.center[1])], ifRecord = True) +# + print 'DDAPoint with center (%f , %f) is drawn'%(self.center[0],self.center[1]) +# FreeCADGui.runCommand('DDA_DCChangesConfirm') + return tmpObj + + def drawCircle(self , blockNo): + from loadDataTools import DDAPoint + import Base + point = DDAPoint(self.center[0],self.center[1]) + point.blockNo = blockNo + return Base.addCircles2Document(self.shapeType, ifStore2Database=True \ + , pts= [point], ifRecord = True) + + + def action(self, arg): + "scene event handler" + if arg["Type"] == "SoKeyboardEvent": + if arg["Key"] == "ESCAPE": + self.finish() + elif arg["Type"] == "SoLocation2Event": + point, ctrlPoint = getPoint(self, arg) + # this is to make sure radius is what you see on screen + self.ui.cross(True) + + elif arg["Type"] == "SoMouseButtonEvent": + if (arg["State"] == "DOWN") and (arg["Button"] == "BUTTON1"): + point, ctrlPoint = getPoint(self, arg) + self.center = FreeCAD.Vector(point[0],point[1],0) + import Base + self.rad = Base.__radius4Points__ + self.finish() +# +# def drawArc(self): +# "actually draws the FreeCAD object" +# print '**********draw Circle*************\n' +# p = plane.getRotation() +# p.move(self.center) +# tmpObj = None +## tmpObj = Base.makeCircle( self.center , self.rad, p , face=False, support=self.support , fname = self.shapeType) +# if self.closedCircle: +# tmpObj = Base.makeCircle( self.center , self.rad, p , face=False, support=self.support , fname = self.shapeType) +# else: +# print "Draft: error delaying commit" +# return tmpObj + + def numericInput(self, numx, numy, numz): + "this function gets called by the toolbar when valid x, y, and z have been entered there" + self.center = Vector(numx, numy, numz) + self.node = [self.center] + self.arctrack.setCenter(self.center) + self.arctrack.on() + self.ui.radiusUi() + self.ui.setNextFocus() + msg("Pick radius:\n") + +class DataTable(QtCore.QObject): + ''' + for jointSets , tunnels , format the table manipulations + ''' + dataInvalidSignal = QtCore.pyqtSignal( int ) + saveDataSignal = QtCore.pyqtSignal() + def __init__(self , row , column , headers , firstColumnDropDown = False , lastColumnNoEdit = True , columnWidth = None , VHeaders = None): + super(DataTable, self).__init__() + self.__dataValid = False + self.__firstColumnDropDown = firstColumnDropDown + self.__lastColumnNoEdit = lastColumnNoEdit + self.__normalColorBrush = QtGui.QBrush(QtGui.QColor(255,255,255)) + self.__errorColorBrush = QtGui.QBrush(QtGui.QColor(255,160,30)) + self.table = QtGui.QTableWidget(0 , column) + self.table.setHorizontalHeaderLabels(headers) +# print 'row : %d , column : %d'%(row,column) + for i in range(row): + self.addRow() + + if VHeaders: + self.table.setVerticalHeaderLabels(VHeaders) + + self.__columnWidth = columnWidth + if columnWidth != None : +# print 'set column width to ' , columnWidth + for i in range(column): + self.table.setColumnWidth( i , columnWidth) + + self.table.cellChanged.connect(self.checkCell) + self.table.cellClicked.connect(self.handleClick) + + def getColumnStartIndex(self): + if self.__firstColumnDropDown : + return 1 + return 0 + + def getColumnEndIndex(self): + if self.__lastColumnNoEdit : + return self.table.columnCount()-1 + return self.table.columnCount() + + def addDelButton4Row(self, row): + 'add the del button for the row' + newItem = QtGui.QTableWidgetItem("Del") + newItem.setFlags(QtCore.Qt.ItemIsSelectable | QtCore.Qt.ItemIsEnabled) + self.table.setItem(row, self.table.columnCount()-1, newItem) + + def addComboBox4Row(self, row , column): + 'add the del button for the row' + newItem = QtGui.QComboBox() + newItem.addItems(['0' , '1' , '2' , '3' , '4']) + self.table.setCellWidget(row, column, newItem) + + + def addBlankItem4Cell(self, row , column): + 'add the del button for the row' + newItem = QtGui.QTableWidgetItem() + self.table.setItem(row, column, newItem) + newItem.setBackground(self.__errorColorBrush) + + + def deleteRow(self , row): + if self.table.rowCount()==0: + FreeCAD.Console.PrintError('deleting row that doesnot exist\n') + return + + print '****** DataTable deleting row : ' , self.table.currentRow() , ' ***********' + + dataList = [] + self.saveData(dataList) + + self.table.setRowCount(self.table.rowCount()-1) + del dataList[row] + self.refreshData(dataList) + + def saveData(self , dataList): + num = self.table.columnCount() + if self.__lastColumnNoEdit: + num = num-1 + for i in range( self.table.rowCount()): + array = range(num) + start = 0 + if self.__firstColumnDropDown: + start = 1 + array[0] = str(self.table.cellWidget(i,0).currentText()) + for j in range(start , num): + array[j] = self.table.item(i,j).text() + +# print 'new tuple : ' , array + dataList.append(array) + + def handleClick(self , row , column): + if self.__lastColumnNoEdit == True and column == self.table.columnCount()-1 : + self.deleteRow(row) + + def checkCell ( self, row , column): +# print 'checking cell : (%d , %d)'%(row , column) + if self.__firstColumnDropDown == True and column==0 : + return + + if self.__lastColumnNoEdit == True and column == self.table.columnCount()-1 : + return + + try: + num = float(self.table.item(row , column).text()) + except: + self.__dataValid = False + self.table.item(row , column).setBackground(self.__errorColorBrush) + self.dataInvalidSignal.emit(0) # data in table is invalid + else : + self.table.item(row , column).setBackground(self.__normalColorBrush) + valid = self.checkTable() + self.dataInvalidSignal.emit(valid) # data in table is invalid + + def writeData2Table(self , data): + for i in range(len(data)): + print data[i] + start = self.getColumnStartIndex() + end = self.getColumnEndIndex() + if (len(data)!=self.table.rowCount()) or (len(data[0])!=end - start) : # 行数 或者 列数不相等 +# print 'data table column count and row count unvalid ( %d , %d ) <-->(%d , %d)'\ +# %( len(data) , len(data[0]) , self.table.rowCount() , end-start ) + raise + for i in range(self.table.rowCount()): + for j in range(start , end): + self.table.item(i,j).setText(str(data[i][j])) + + + def checkTable( self ): +# print '******** begining check table *********' + valid = True + for i in range(self.table.rowCount()): + start = 0 + if self.__firstColumnDropDown : + start = 1 + + end = self.table.columnCount() + if self.__lastColumnNoEdit : + end = end-1 + + for j in range(start , end): + try: +# print ' checking (%d , %d) , content : %s , len :%d'%(i,j , self.table.item(i , j).text(),len(self.table.item(i , j).text())) + num = float(self.table.item(i , j).text()) + except: + tmpInvalid = True +# print ' except occured at column : %d .start : %d , end %d'%(j , start , end) + if j==start: + tmpInvalid = False # 测试本行,如果全是未填写数据的空格,则此行检测正确 + for k in range(start , end): + if len(self.table.item(i,k).text())>0: +# print ' except text : ' , self.table.item(i,k).text() + tmpInvalid = True + break + if tmpInvalid : +# print ' cell (%d , %d) : %s parse failed.'%(i , j ,self.table.item(i , j).text()) + valid = False + break + else : # this is a blank line , check next line + break + + if not valid : + break + +# print 'table check result : ' , valid + return valid + + + def addRow(self): + self.table.setRowCount(self.table.rowCount()+1) + row = self.table.rowCount()-1 + + start = self.getColumnStartIndex() + end = self.getColumnEndIndex() + + if self.__firstColumnDropDown : + self.addComboBox4Row(row , 0) + + if self.__lastColumnNoEdit : + self.addDelButton4Row(row) + + for j in range(start , end): + self.addBlankItem4Cell( row, j ) + + def refreshData(self , dataList): + ''' + refresh data in table , the data comes from 'dataList' + :param dataList: source data + ''' + + # 当读入数据时,需要完全重写数据,所以要事先检查一次,如果行列数符合,便不再处理table本身,直接读入数据 + if self.table.rowCount()!= len(dataList): + self.clearTable() + for i in range(len(dataList)): + self.addRow() + + for i in range(len(dataList)) : + tuple = dataList[i] + start = self.getColumnStartIndex() + end = self.getColumnEndIndex() + for j in range( start , end ): + if start ==1 : + self.table.cellWidget(i,0).setCurrentIndex(int(tuple[0])) + self.table.item( i , j ).setText(str(tuple[j])) + + def clearTable(self): + ''' + clear data in the table + ''' + self.table.setRowCount(0) + +class TunnelSelectionTool(QtGui.QDialog): + ''' + tools to choose tunnel + ''' + def __init__(self,parent=None): + QtGui.QDialog.__init__(self,parent) + self.initUI() + + def initUI(self): + + import ui_TunnelSelection + self.ui = ui_TunnelSelection.Ui_Dialog() + self.ui.setupUi(self) + headers = ['type','a','b','c','r','centerX','centerY'] + self.ui.tableWidget.setHorizontalHeaderLabels(headers) + + def select(self): + import DDADatabase + database = DDADatabase.dl_database + tunnels = database.tunnels + if len(tunnels)==0: return None + + table = self.ui.tableWidget + table.setRowCount(len(tunnels)) + for i , t in enumerate(tunnels): + for j , v in enumerate(t): + item = QtGui.QTableWidgetItem() + item.setText(str(v)) + table.setItem(i, j, item) + + flag = self.exec_() + if QtGui.QDialog.Accepted==flag: + return table.currentRow() + return None + + def getSelectedTunnelNo(self): + if self.ui.tableWidget.rowCount()>0: + return self.ui.tableWidget.currentRow() + +class TunnelBoltsSelectionTool(QtGui.QDialog): + def __init__(self,parent=None): + QtGui.QDialog.__init__(self,parent) + self.initUI() + self.bolts = [] + + + def initUI(self): + import ui_tunnelBolts + self.ui = ui_tunnelBolts.Ui_Dialog() + self.ui.setupUi(self) + self.ui.spinBox_startBoltIdx.valueChanged.connect(self.refreshBolts) + self.ui.spinBox_endBoltIdx.valueChanged.connect(self.refreshBolts) + + def calcBolts(self): + a = float(self.ui.a.text()) + b = float(self.ui.b.text()) + c = float(self.ui.c.text()) + centerX = float(self.ui.centerX.text()) + centerY = float(self.ui.centerY.text()) + + length = self.ui.spinBox_boltLength.value() + length2 = self.ui.spinBox_boltLength2.value() + + print 'generate bolt elements for Tunnel (%f , %f , %f , %f , %f ,%f , %f)' \ + %( a , b , c , centerX , centerY , length , length2 ) + + from interfaceTools import Tunnel2BoltsGenerator + + self.bolts = Tunnel2BoltsGenerator.generateBolts( centerX=centerX , centerY=centerY \ + , halfWidth=a , halfHeight=b , arcRadius=c \ + , boltsDistance=1 , boltLength=length , boltLength2=length2) + + # set panel + self.ui.spinBox_startBoltIdx.setValue(1) + self.ui.spinBox_startBoltIdx.setRange(1 , len(self.bolts)) + self.ui.spinBox_endBoltIdx.setValue(len(self.bolts)) + self.ui.spinBox_endBoltIdx.setRange(1 , len(self.bolts)) + + # store tmp result + import DDADatabase , Base + DDADatabase.tmpBoltElements = self.bolts[:] +# Base.addLines2Document(shapeType='TmpBoltElement', ifStore2Database=False, args=None) +# FreeCAD.ActiveDocument.getObject('TmpBoltElement').ViewObject.Visibility = True + Base.updateTmpBoltElements() + + + def storeData2Panel(self, tunnelIdx): + from DDADatabase import dl_database + tunnels = dl_database.tunnels + + assert tunnels and tunnelIdx< len(tunnels) + t = tunnels[tunnelIdx] + + self.ui.tunnelNo.setText(str(tunnelIdx)) + self.ui.tunnelType.setText('2') + self.ui.a.setText(str(t[1])) + self.ui.b.setText(str(t[2])) + self.ui.c.setText(str(t[3])) + self.ui.centerX.setText(str(t[5])) + self.ui.centerY.setText(str(t[6])) + + self.ui.spinBox_boltLength.setValue(12) + self.ui.spinBox_boltLength2.setValue(10) + self.ui.spinBox_boltDistance.setValue(1) + + def refreshBolts(self , idx): + startIdx = self.ui.spinBox_startBoltIdx.value() + endIdx = self.ui.spinBox_endBoltIdx.value() + import DDADatabase + bolts = self.bolts[startIdx-1:endIdx] + if endIdx == idx: + t = bolts[-1] + bolts[-1] = bolts[0] + bolts[0] = t +# bolts.reverse() + DDADatabase.tmpBoltElements = bolts +# obj = FreeCAD.ActiveDocument.getObject('TmpBoltElement') +# if obj: obj.ViewObject.RedrawTrigger = True + import Base + Base.updateTmpBoltElements() + + def accept(self): + QtGui.QDialog.accept(self) + import DDADatabase , Base + bolts = self.bolts[ self.ui.spinBox_startBoltIdx.value()-1:\ + self.ui.spinBox_endBoltIdx.value() ] + Base.addLines2Document(shapeType = 'BoltElement' \ + , ifStore2Database=True, args=bolts) + + def done(self , r): + QtGui.QDialog.done(self , r) + import DDADatabase , Part + DDADatabase.tmpBoltElements = [] + FreeCAD.ActiveDocument.getObject('TmpBoltElement').Shape=Part.Shape() +# FreeCAD.ActiveDocument.getObject('TmpBoltElement').ViewObject.RedrawTrigger = True +# FreeCAD.ActiveDocument.getObject('TmpBoltElement').ViewObject.Visibility = False + + def configure(self , tunnelIdx): + import DDADatabase + from DDADatabase import dl_database + tunnels = dl_database.tunnels + assert tunnelIdx < len(tunnels) + self.storeData2Panel(tunnelIdx) + self.calcBolts() + self.exec_() + +class ChooseProjectPath: + ''' + choose workbench for DDA + ''' + def GetResources(self): + return { + 'MenuText': "Choose Workbench", + 'ToolTip': "choose"} + + def Activated(self): + if FreeCAD.activeDDACommand: + FreeCAD.activeDDACommand.finish() + dialog = QtGui.QFileDialog() + dialog.setDirectory('D:/') + dialog.setFileMode(QtGui.QFileDialog.DirectoryOnly) + dir = str(dialog.getExistingDirectory()) + if dir: + print 'change to new project path : ', dir + import Base + Base.__currentProjectPath__ = dir + + +class SetPanelSize: + ''' + choose workbench for DDA + ''' + def __init__(self): + self.initSettingPanel() + + def GetResources(self): + return { + 'MenuText': "SetPanelSize", + 'ToolTip': "Set Panel Size"} + + def initSettingPanel(self): + self.mainDialog = QtGui.QWidget() + layout = QtGui.QGridLayout(self.mainDialog) + + startPointLabel = QtGui.QLabel('please input the left-bottom corner coordinate.') + layout.addWidget(startPointLabel , 0 , 0 , 1 , 4 , QtCore.Qt.AlignLeft) + + xLabel = QtGui.QLabel('X :') + layout.addWidget(xLabel , 1 , 0 , QtCore.Qt.AlignLeft) + self.xValue = QtGui.QDoubleSpinBox() + self.xValue.setDecimals(2) + self.xValue.setRange(-99999.99 , 9999.99) + self.xValue.setSingleStep(0.01) + layout.addWidget(self.xValue , 1 , 1 , QtCore.Qt.AlignLeft) + + yLabel = QtGui.QLabel('Y :') + layout.addWidget(yLabel , 1 , 2 , QtCore.Qt.AlignLeft) + self.yValue = QtGui.QDoubleSpinBox() + self.yValue.setDecimals(2) + self.yValue.setRange(-99999.99 , 9999.99) + self.yValue.setSingleStep(0.01) + layout.addWidget(self.yValue , 1 , 3 , QtCore.Qt.AlignLeft) + + sizeLabel = QtGui.QLabel('please input size of work panel.') + layout.addWidget(sizeLabel , 2 , 0 , 1 ,4 , QtCore.Qt.AlignLeft) + + + widthLabel = QtGui.QLabel('Width :') + layout.addWidget(widthLabel , 3 , 0 , QtCore.Qt.AlignLeft) + self.widthValue = QtGui.QDoubleSpinBox() + self.widthValue.setDecimals(2) + self.widthValue.setRange(1 , 9999.99) + self.widthValue.setSingleStep(0.01) + self.widthValue.setValue(200) + layout.addWidget(self.widthValue , 3 , 1 , QtCore.Qt.AlignLeft) + + heightLabel = QtGui.QLabel('Hieght :') + layout.addWidget(heightLabel , 3 , 2 , QtCore.Qt.AlignLeft) + self.heightValue = QtGui.QDoubleSpinBox() + self.heightValue.setDecimals(2) + self.heightValue.setRange(1 , 9999.99) + self.heightValue.setSingleStep(0.01) + self.heightValue.setValue(150) + layout.addWidget(self.heightValue , 3 , 3 , QtCore.Qt.AlignLeft) + + okBtn = QtGui.QPushButton(text='OK') + layout.addWidget(okBtn , 4 , 2 , QtCore.Qt.AlignLeft) + cancelBtn = QtGui.QPushButton(text='Cancel') + layout.addWidget(cancelBtn , 4 , 3 , QtCore.Qt.AlignLeft) + + okBtn.pressed.connect(self.saveResult) + okBtn.pressed.connect(self.mainDialog.hide) + cancelBtn.pressed.connect(self.mainDialog.hide) + + self.mainDialog.setLayout(layout) + + def saveResult(self): + import Base + Base.__windowInfo__ = \ + [self.xValue.value() , self.xValue.value()+self.widthValue.value()\ + ,self.yValue.value() , self.yValue.value()+self.heightValue.value()] + + print Base.__windowInfo__ + FreeCADGui.runCommand('DDA_ResetCamera') + + def Activated(self): + self.mainDialog.show() + + + +#--------------------------------------------------------------------------- +# Adds the icons & commands to the FreeCAD command manager, and sets defaults +#--------------------------------------------------------------------------- + +# drawing commands +FreeCAD.Console.PrintMessage ('add command\n') +FreeCADGui.addCommand('Line', Line()) +FreeCADGui.addCommand('Circle',Circle()) +FreeCAD.Console.PrintMessage ('command added done\n') + +FreeCADGui.addCommand('DDA_ChooseProjectPath', ChooseProjectPath()) +FreeCADGui.addCommand('DDA_SetPanelSize', SetPanelSize()) + +# a global place to look for active draft Command +FreeCAD.Console.PrintMessage ('set active command\n') +FreeCAD.activeDDACommand = None diff --git a/src/Mod/DDA/DDA_rc.py b/src/Mod/DDA/DDA_rc.py new file mode 100644 index 000000000000..87fde2dd1ab3 --- /dev/null +++ b/src/Mod/DDA/DDA_rc.py @@ -0,0 +1,31172 @@ +# -*- coding: utf-8 -*- + +# Resource object code +# +# Created: Sun Nov 27 18:32:10 2011 +# by: The Resource Compiler for PyQt (Qt v4.7.3) +# +# WARNING! All changes made in this file will be lost! + +from PyQt4 import QtCore + +qt_resource_data = "\ +\x00\x00\x01\x60\ +\x3c\ +\x73\x76\x67\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x3e\x0a\x20\x20\ +\x20\x20\x3c\x70\x61\x74\x74\x65\x72\x6e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x70\x61\x74\x74\x65\x72\x6e\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\x3d\x22\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x2e\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x2e\x31\x22\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\x20\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\ +\x30\x30\x30\x3b\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3a\x2e\x30\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x67\x33\x33\x38\x39\x22\x3e\x0a\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\x64\x3d\x22\x4d\x30\x2c\x30\x2e\x30\x35\ +\x20\x6c\x2e\x31\x32\x2c\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x33\x39\x31\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\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\x01\xaa\ +\x3c\ +\x73\x76\x67\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x3e\x0a\x20\x20\ +\x20\x20\x3c\x70\x61\x74\x74\x65\x72\x6e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x63\x72\x6f\x73\x73\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x70\x61\x74\x74\x65\x72\x6e\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\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x2e\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x2e\x31\x22\ +\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\x20\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\ +\x30\x30\x30\x30\x3b\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ +\x74\x68\x3a\x2e\x30\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x67\x33\x33\x38\x32\x22\x3e\x0a\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\x64\x3d\x22\x4d\x30\x2c\x30\x20\x6c\ +\x2e\x31\x32\x2c\x2e\x31\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x33\x38\x34\ +\x22\x20\x2f\x3e\x0a\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\x64\x3d\ +\x22\x4d\x2e\x31\x32\x2c\x30\x20\x6c\x2d\x2e\x31\x32\x2c\x2e\x31\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x61\x74\x68\x33\x33\x38\x36\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\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\x01\xae\ +\x3c\ +\x73\x76\x67\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x3e\x20\x20\x20\ +\x20\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x74\x65\x72\x6e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x71\x75\x61\x72\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x70\x61\x74\x74\x65\x72\x6e\ +\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\x3d\ +\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x2e\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\ +\x3d\x22\x2e\x31\x22\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\x20\x73\x74\x72\x6f\x6b\ +\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x20\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x2e\x30\x30\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x33\x33\x39\x34\ +\x22\x3e\x0a\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\x64\x3d\x22\x4d\ +\x30\x2c\x30\x2e\x30\x35\x20\x6c\x2e\x31\x32\x2c\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ +\x74\x68\x33\x33\x39\x36\x22\x20\x2f\x3e\x0a\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\x64\x3d\x22\x4d\x30\x2e\x30\x35\x2c\x30\x20\x6c\ +\x30\x2c\x2e\x31\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x33\x39\x38\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\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\x01\x61\ +\x3c\ +\x73\x76\x67\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x3e\x0a\x20\x20\ +\x20\x20\x3c\x70\x61\x74\x74\x65\x72\x6e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x69\x6d\x70\x6c\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x70\x61\x74\x74\x65\x72\x6e\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\x3d\x22\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x2e\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x2e\x31\ +\x22\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\x20\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\ +\x30\x30\x30\x30\x30\x3b\x20\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ +\x64\x74\x68\x3a\x2e\x30\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x67\x33\x33\x37\x37\x22\x3e\x0a\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\x64\x3d\x22\x4d\x30\x2c\x30\x20\ +\x6c\x2e\x31\x32\x2c\x2e\x31\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x33\x37\ +\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\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\x04\x69\ +\x00\ +\x00\x15\x07\x78\x9c\xbd\x58\xdb\x6e\x1b\x37\x10\x7d\xef\x57\x2c\ +\x36\x2f\x2d\xb0\xa1\x78\xbf\xb8\x52\x7e\xa1\x0f\x45\x3e\x40\xb0\ +\xd7\xb2\x10\x47\x0e\x24\xb5\x49\xfa\xf5\x1d\xde\x96\xb4\xe1\x59\ +\xcf\x4b\x2c\x01\xc2\x90\x7b\x20\x9e\x1d\xce\x99\x19\x72\x7b\xf9\ +\xf7\xf0\xe9\xb7\x61\xd8\xde\xcd\xf7\x97\x68\x80\xf9\x6d\x7f\xbd\ +\xce\xe7\x53\x1a\xc0\xe7\x78\xb7\x1b\x6f\x9f\x4e\xb7\xe7\xf9\x3a\ +\x8f\x75\xb2\x60\x3e\x9f\x8e\xd7\xcb\x6e\xfc\xe7\x32\x9f\xff\xfe\ +\xb6\xbf\x9d\xff\x3a\x7d\xbe\x34\xd0\x8f\xdd\xc8\x97\xc1\xcf\x7e\ +\xf0\xfd\x78\x77\x7d\xd8\x8d\xcc\x2c\x33\x0f\xf3\xf1\xf0\x70\x4d\ +\x53\x9f\xca\xdc\xf6\x50\x1f\x0e\xc3\xe5\xfa\xf3\x71\xde\x8d\xf7\ +\xc7\xc7\xc7\x9b\xd3\xd3\x69\xfe\x13\x66\xce\x4f\x5f\xe6\x9b\x0f\ +\x3c\x7d\xea\xf8\x63\xfa\xe7\x9b\xee\x8f\x87\xe1\x7a\xde\x9f\x2e\ +\xf7\x4f\xe7\xaf\xbb\xf1\x72\xbb\x7f\x9c\x7f\x67\x5c\xfc\xd1\x3d\ +\x8f\x2f\x78\x50\x9a\x8b\x65\xe5\xec\x84\x87\x06\x19\x06\xc0\x7c\ +\x1d\x0c\x53\xc6\x09\x2d\xfd\xa4\x98\x91\xd2\x07\x6d\x87\xfd\x20\ +\x98\x52\x41\x7a\xe3\xa6\xc5\x1a\xf8\x20\xe0\xfb\x51\x32\xeb\x60\ +\x28\xcc\xc4\x57\x60\x3d\xea\xbf\xb1\x5f\x35\x52\x8b\x4c\xa4\xd7\ +\x7c\x1c\x36\x6f\xf1\x13\x9a\x09\x0e\x04\xd5\x64\x99\x97\x56\x5b\ +\x2b\x80\x9f\x62\x32\x72\x36\x76\x5a\xac\xca\xcf\xb2\x38\x74\x42\ +\xc0\xca\x38\xac\x47\xa1\xfc\x24\x8d\x9f\x97\xd9\x7f\x9c\x05\xa5\ +\x2c\x0f\xc0\x8f\xb3\xe4\x53\xe3\xd4\xd4\xcc\xca\x50\x94\xb5\x61\ +\xe9\x35\x5c\x07\x43\x19\x6a\x02\x43\xe9\x59\xd9\x61\x61\x99\xe4\ +\x02\x5c\x08\x0c\x25\x93\x2a\xf2\x0e\xd3\x62\x55\x7e\x9a\x69\x0b\ +\x70\x0b\x0b\xe3\xa8\x0e\x84\xb2\xb3\x04\x76\x40\xc9\xc4\x68\x97\ +\x93\xe4\x8c\x7b\xa3\x82\x4e\xfe\xd3\xa1\x6c\x7b\x33\x2b\x3f\xf0\ +\xb3\xcf\xa4\xf8\x2a\xb0\xc7\xa1\x1c\x3d\x81\xa3\xd2\xcc\xc5\x97\ +\xd7\x93\x74\x20\x12\xe7\xa4\x49\x1c\x65\x8e\xf1\xb4\xb4\x8a\x6a\ +\x0b\xae\x71\x34\x49\x57\x89\x22\x8e\xeb\x60\x18\x43\x43\x51\x89\ +\xe6\x4c\xc4\x35\xe4\x14\x98\x82\xa8\xe6\x5e\x24\x86\xa2\xea\x13\ +\x48\xe4\xfd\xf3\x8d\x61\xa6\x95\x18\xe2\xb8\x0e\x86\x32\xa4\xe8\ +\x44\x97\xdd\xd0\x93\xf2\xcc\x69\x2b\x8a\x4e\xea\x72\xaf\x32\xd4\ +\x29\xc6\xb2\x0f\x51\x5c\x07\x43\x19\x52\x74\xa2\x04\x13\x96\xc7\ +\x94\x05\x5c\x8d\xb3\x59\x27\x8a\x25\xc7\xc0\xec\x62\x55\x7e\x8e\ +\xc5\x61\x8c\xbc\x15\x54\x07\x42\xd9\x51\x74\x22\x8b\x00\x55\xf4\ +\x9f\x34\x86\x2b\x93\xf2\x74\x64\x9c\xb4\x5d\xad\xca\xae\x64\x3c\ +\x9b\xd2\x34\x86\xea\x40\x28\x3b\x8a\x42\xb4\x60\x21\xee\x01\x14\ +\x02\x58\x42\x3b\x1f\xb2\x42\x7c\x76\x46\x8c\xfc\x6a\xb6\x2c\x98\ +\x44\x91\x15\x82\xe3\x3a\x18\xc6\xd0\x52\x14\xa2\x2c\xcb\x69\x42\ +\x1a\xe6\xa2\xfb\x5c\x22\x58\x8a\x5f\x0c\xfc\x6a\xb6\xf0\x73\xd5\ +\x37\x6b\xb8\x0e\x86\x12\xa4\x08\x24\x26\xc2\x49\x4b\x50\x89\x13\ +\x2e\x6b\xc3\xc2\x4c\xfa\x6d\x3e\x8b\x33\xaf\x3c\x29\x0f\x50\x02\ +\x94\xf8\x17\x8e\x15\x89\x89\xc0\x82\x29\x75\x82\xd0\x09\x90\x1a\ +\x81\x35\x76\x94\xf8\x17\x25\xc2\xec\x24\x3c\xe8\xd4\x38\x23\x73\ +\x9d\x48\xda\x4f\x99\xab\x9a\x6d\x03\x7d\x49\x6a\xab\xb8\x0e\x86\ +\x32\xa4\x68\x00\xaa\xab\xcd\x21\x06\x9a\x0f\x20\x01\x9d\x77\x31\ +\x67\x78\x19\x57\xae\x66\xdb\xcf\xa4\xc6\x5c\xc8\x70\x5c\x07\xc3\ +\x18\x3a\x92\x06\x96\x72\x23\x14\xb3\x42\x8a\x52\x25\xde\x66\xe8\ +\x69\x0c\xd7\x72\xb0\xa3\x88\x00\x2a\x6d\x52\xbf\x8d\x4a\x70\x22\ +\x28\x29\x89\xdd\x94\xa4\x75\x53\x72\x8d\x21\x45\x25\x7a\xf1\x61\ +\xec\xab\x52\xc3\x9c\x54\x62\x4a\xfd\x5d\xac\x96\x87\xb9\x5a\xda\ +\x65\x0c\xd5\x81\x50\x76\x14\x95\xa8\x90\xbb\x51\x37\x41\xbd\xe0\ +\xbc\xa4\xb9\x9a\x43\xd5\xb4\x58\x8d\x9d\xa9\x1b\x87\xa3\x3a\x10\ +\xca\x8e\xa2\x10\x59\x8a\xe1\x73\xdf\x41\xca\xcb\x82\x9c\x16\xab\ +\xb2\x33\x4d\x9a\x38\xca\xbc\xad\x5f\x4f\x51\x47\xd7\x89\x7a\xc8\ +\x35\x10\x7b\x79\x67\x75\xa9\xec\x8b\xd5\xf2\x5f\x7a\x9b\xa4\x4b\ +\x1c\xd6\xa3\x50\x7e\x24\x6d\xe4\x18\x89\x1d\x80\x62\xf0\x4a\x5c\ +\xe5\xfc\xe2\x79\x69\x21\xab\xd5\x94\x61\x3b\xf1\x62\xb0\x1e\x85\ +\xf2\x23\x29\x23\x9f\x33\x54\x4c\xd0\x9d\xfb\x7e\x79\x83\xe2\x49\ +\xc2\x50\x85\x1c\xb4\x01\x29\xf0\xb2\xef\xf2\x01\x21\x95\xf5\x6a\ +\x36\xef\x85\x7a\xc0\x59\xc3\x75\x30\x94\x20\x49\x1b\xa6\x64\xac\ +\x98\x1b\x8c\xaf\xc7\xc8\x77\x29\x6f\x81\x22\x0f\xb9\x64\x01\xcd\ +\x78\x23\xf8\x2e\x1e\x0c\x14\x7d\x80\x6a\x4b\x12\x85\xfe\xc5\xf0\ +\xf7\x6d\xf1\x02\xe9\x84\x01\x39\x59\x7b\x13\xe0\x94\x60\xfa\xbb\ +\x02\xe3\x9c\x07\xc1\xbc\x42\x10\x8e\x24\x06\x6a\x58\x29\xbf\x18\ +\xac\x43\xa1\xfc\x28\x22\xd1\x70\xba\x9d\xb4\x01\x92\x3c\xb7\x57\ +\xa9\xad\x8c\x3f\x2d\xe5\xe5\x3a\xf6\x7c\x3a\xcf\xa2\x4b\x93\x0e\ +\x10\xe5\x1a\x25\xc0\x01\xca\x05\x58\x5e\xbc\xdf\x35\x4a\xe0\x94\ +\xf8\x8f\xa7\xd6\x00\x1f\x68\x4d\x80\x62\xbd\x46\x79\x76\xb8\xaf\ +\xe6\xcb\x4b\x00\xf5\xf2\x16\xe0\x05\xb0\xc7\xa1\x1c\x7b\x09\x6c\ +\x37\x87\x72\xb1\xb9\x29\xb7\x96\xe9\xc2\x73\x93\x6f\x3c\xb7\x9b\ +\x78\x03\xfa\x3f\xe0\xde\x25\x35\ +\x00\x00\x74\xe7\ +\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\x69\x4a\x00\x00\x00\x59\ +\x00\x00\x69\xeb\x00\x00\x00\x5a\x00\x00\x6a\x6c\x00\x00\x05\xd9\ +\x00\x00\x69\xab\x00\x00\x05\xda\x00\x00\x69\xcb\x00\x00\x05\xea\ +\x00\x00\x6a\x4c\x00\x00\x07\x78\x00\x00\x47\xee\x00\x00\x48\x83\ +\x00\x00\x02\x05\x00\x00\x48\x83\x00\x00\x4c\xaa\x00\x00\x68\x34\ +\x00\x00\x43\xe9\x00\x04\xa6\x79\x00\x00\x4e\x9d\x00\x04\xbb\x04\ +\x00\x00\x07\x74\x00\x04\xbb\x04\x00\x00\x51\xd8\x00\x05\x30\x45\ +\x00\x00\x08\xed\x00\x05\x30\x45\x00\x00\x5c\x63\x00\x05\x46\xc5\ +\x00\x00\x09\x12\x00\x05\x46\xc5\x00\x00\x5c\xd7\x00\x05\x56\x45\ +\x00\x00\x2e\x6d\x00\x05\x56\x45\x00\x00\x5c\xf9\x00\x05\xac\xf4\ +\x00\x00\x10\x0a\x00\x05\xb8\xfd\x00\x00\x67\x34\x00\x05\xcf\xc7\ +\x00\x00\x67\xac\x00\x05\xe0\x85\x00\x00\x15\xef\x00\x06\xab\x8c\ +\x00\x00\x44\xc1\x00\x10\x84\x49\x00\x00\x36\x3d\x00\x12\x05\xba\ +\x00\x00\x64\xec\x00\x16\xc6\xda\x00\x00\x55\xdc\x00\x2a\xa6\x79\ +\x00\x00\x49\xf2\x00\x2b\xc4\xaf\x00\x00\x4a\xb4\x00\x2b\xe0\x65\ +\x00\x00\x4a\xdf\x00\x39\xdf\x33\x00\x00\x22\x92\x00\x3d\xa1\x19\ +\x00\x00\x4d\x6e\x00\x3e\x93\x83\x00\x00\x23\x70\x00\x48\x8f\x7c\ +\x00\x00\x17\xef\x00\x4b\x66\x35\x00\x00\x20\x72\x00\x4b\x66\x37\ +\x00\x00\x20\xaf\x00\x4b\x66\x39\x00\x00\x20\xec\x00\x4b\x87\xd4\ +\x00\x00\x51\x37\x00\x57\x60\x54\x00\x00\x62\x41\x00\x58\xfd\xf4\ +\x00\x00\x30\x8c\x00\x59\x98\x25\x00\x00\x0c\xd4\x00\x59\x98\x25\ +\x00\x00\x63\x2b\x00\x6a\x58\x9a\x00\x00\x5e\x4f\x00\x79\xef\xd4\ +\x00\x00\x48\x26\x00\x7e\x7f\x0e\x00\x00\x41\xae\x00\x8a\x23\x95\ +\x00\x00\x1a\x39\x00\x8a\x23\x97\x00\x00\x1a\x79\x00\x8a\x23\x99\ +\x00\x00\x1a\xb9\x00\x91\xbc\xe9\x00\x00\x09\x39\x00\xa6\x37\x3f\ +\x00\x00\x19\x90\x00\xaa\x80\x25\x00\x00\x50\xbb\x00\xc6\xe3\x6e\ +\x00\x00\x17\x0b\x00\xcb\xa8\x14\x00\x00\x47\x70\x00\xfc\x00\xca\ +\x00\x00\x59\xd2\x01\x21\xd6\x39\x00\x00\x35\x94\x01\x22\xb4\xf9\ +\x00\x00\x0c\xfd\x01\x2f\x8e\x7e\x00\x00\x3c\x42\x01\x48\xfe\xa3\ +\x00\x00\x23\xcc\x01\x53\xf3\xaa\x00\x00\x54\x08\x01\x56\x16\x4a\ +\x00\x00\x59\x81\x01\x67\x0d\x8a\x00\x00\x56\xe1\x01\x69\x11\x7a\ +\x00\x00\x60\xe6\x01\x82\x39\x0a\x00\x00\x5e\xbd\x01\x8b\x68\x75\ +\x00\x00\x66\xf5\x01\xa1\x7f\x63\x00\x00\x11\xbb\x01\xc1\xd9\xde\ +\x00\x00\x37\xa2\x01\xd2\x8f\xd3\x00\x00\x31\x17\x01\xdf\x11\x43\ +\x00\x00\x03\x90\x01\xe2\xf4\x5a\x00\x00\x64\xa5\x01\xfc\xae\xd3\ +\x00\x00\x48\x67\x02\x05\xbe\x25\x00\x00\x4f\xb4\x02\x46\x58\x0a\ +\x00\x00\x60\x74\x02\x65\xad\x62\x00\x00\x6b\x00\x02\x6e\x07\xe2\ +\x00\x00\x32\xbb\x02\x76\x24\x13\x00\x00\x26\x33\x02\x7d\xe0\x55\ +\x00\x00\x33\x41\x02\x94\x46\x1a\x00\x00\x5e\x86\x02\xa7\x2c\x15\ +\x00\x00\x02\x9e\x02\xaa\x36\x95\x00\x00\x49\x97\x02\xb1\xf0\xba\ +\x00\x00\x57\xea\x02\xbf\xaa\x8e\x00\x00\x25\x54\x02\xc0\x66\xf2\ +\x00\x00\x39\xca\x02\xc8\x3f\xf5\x00\x00\x40\x25\x02\xd9\xa4\xb9\ +\x00\x00\x43\xa2\x02\xdb\x1a\x94\x00\x00\x04\x9b\x03\x01\x84\xc4\ +\x00\x00\x5a\x45\x03\x12\x97\x6a\x00\x00\x59\x0c\x03\x1a\x14\x14\ +\x00\x00\x1e\xc8\x03\x1a\x16\x59\x00\x00\x33\xc7\x03\x2f\x1a\x6a\ +\x00\x00\x4b\x44\x03\x7e\xca\xb5\x00\x00\x2a\xb2\x03\x88\x1f\xd4\ +\x00\x00\x2b\x53\x03\x9e\x58\xa5\x00\x00\x00\x32\x03\xb3\x9e\xfa\ +\x00\x00\x5f\x2f\x03\xb5\xc8\x9a\x00\x00\x60\x0b\x03\xbd\xd4\xe4\ +\x00\x00\x4b\xb5\x03\xc4\x3c\xf5\x00\x00\x4d\x40\x03\xc5\xd5\x5e\ +\x00\x00\x05\xef\x03\xcb\x0d\xe5\x00\x00\x63\x4e\x03\xdc\x0c\xd4\ +\x00\x00\x4a\x4a\x03\xf2\x70\x35\x00\x00\x1c\x77\x03\xf2\xbd\x60\ +\x00\x00\x0d\xb5\x03\xfb\x0f\x04\x00\x00\x1e\x74\x04\x21\x23\x23\ +\x00\x00\x14\x8b\x04\x56\x06\x93\x00\x00\x1d\x1f\x04\x60\x7c\x15\ +\x00\x00\x62\x86\x04\x79\xef\x9a\x00\x00\x57\x99\x04\x82\x77\xf4\ +\x00\x00\x32\xff\x04\x87\xf9\x9e\x00\x00\x5a\xd4\x04\x8c\xd6\xae\ +\x00\x00\x3f\x48\x04\xa0\x8a\x25\x00\x00\x03\x67\x04\xa0\x8a\x25\ +\x00\x00\x4e\x09\x04\xa4\x31\x5a\x00\x00\x5c\x1b\x04\xa8\xeb\x85\ +\x00\x00\x21\x29\x04\xe1\x6e\xe3\x00\x00\x06\x55\x04\xe4\x0f\x75\ +\x00\x00\x01\xc1\x04\xeb\x41\xc3\x00\x00\x1c\xc8\x04\xef\xd9\xa8\ +\x00\x00\x30\x30\x05\x03\x83\x95\x00\x00\x44\xff\x05\x05\xcb\x13\ +\x00\x00\x29\xd0\x05\x0f\xf2\x74\x00\x00\x5d\xca\x05\x1b\x10\x59\ +\x00\x00\x2c\x92\x05\x2a\xe5\x97\x00\x00\x31\x95\x05\x44\x3b\x5f\ +\x00\x00\x46\xea\x05\x5c\xd9\xc4\x00\x00\x09\xe8\x05\x5c\xd9\xc4\ +\x00\x00\x5d\x46\x05\x63\xf6\x93\x00\x00\x30\xc5\x05\x65\xee\x65\ +\x00\x00\x53\x18\x05\x87\xb0\xc3\x00\x00\x62\x62\x05\x96\xa8\xa5\ +\x00\x00\x0c\x00\x05\x96\xa8\xa5\x00\x00\x63\x07\x05\xad\x4b\xc3\ +\x00\x00\x2a\xf8\x05\xb9\x03\xc8\x00\x00\x12\xa8\x05\xbd\x0c\xba\ +\x00\x00\x54\x71\x05\xbd\x8e\xde\x00\x00\x3e\x68\x05\xbe\x56\x93\ +\x00\x00\x2f\xde\x05\xc5\x50\x04\x00\x00\x07\x9b\x05\xe5\x8e\x2e\ +\x00\x00\x0a\xb2\x05\xfb\xdc\x83\x00\x00\x2a\x1a\x06\x1e\xe6\xb5\ +\x00\x00\x66\x6b\x06\x29\xee\xa9\x00\x00\x4e\x2b\x06\x32\xe3\xe3\ +\x00\x00\x51\x60\x06\x57\x19\xf4\x00\x00\x00\x00\x06\x5a\xef\x15\ +\x00\x00\x49\xc3\x06\x5b\xd2\xb5\x00\x00\x28\x23\x06\x6c\x88\x8e\ +\x00\x00\x28\xe3\x06\x74\x1d\x55\x00\x00\x37\x3a\x06\x8b\x96\x44\ +\x00\x00\x08\x15\x06\x97\x58\xc9\x00\x00\x34\x20\x06\xbc\x80\xa5\ +\x00\x00\x12\x5d\x06\xc9\xb8\x05\x00\x00\x4c\x01\x06\xe8\x05\x4e\ +\x00\x00\x04\x4c\x06\xee\xaa\x57\x00\x00\x65\xcc\x06\xf0\xcb\x25\ +\x00\x00\x10\xfd\x06\xfa\xff\xc3\x00\x00\x2a\x6a\x06\xfc\x1a\x14\ +\x00\x00\x21\xe9\x06\xfc\xa0\x8a\x00\x00\x5d\xf7\x07\x08\x90\xe5\ +\x00\x00\x1b\x52\x07\x0d\xb7\xf7\x00\x00\x24\xe3\x07\x0e\x86\x3e\ +\x00\x00\x11\x4a\x07\x35\x68\x6e\x00\x00\x0e\x62\x07\x35\xe8\x9a\ +\x00\x00\x61\x17\x07\x44\x41\x2a\x00\x00\x53\xb5\x07\x4a\x1f\x63\ +\x00\x00\x01\x46\x07\x4d\x73\x22\x00\x00\x5c\x83\x07\x4e\xa6\xf2\ +\x00\x00\x52\x27\x07\x58\xcb\xe8\x00\x00\x5c\xaf\x07\x63\xfe\x0e\ +\x00\x00\x0b\x39\x07\x80\xc6\xb3\x00\x00\x69\x12\x07\x88\x72\x5a\ +\x00\x00\x4c\xcb\x07\xa3\xe4\x0e\x00\x00\x15\x67\x07\xc1\xfc\x13\ +\x00\x00\x1d\xb8\x08\x27\xb4\xba\x00\x00\x5f\xd0\x08\x32\xc4\xaa\ +\x00\x00\x61\x96\x08\x36\x74\x14\x00\x00\x16\xc6\x08\x44\xb9\x83\ +\x00\x00\x22\x3e\x08\x49\xc9\x30\x00\x00\x0d\xed\x08\x61\x7c\xb3\ +\x00\x00\x12\xd9\x08\xa2\xca\x67\x00\x00\x33\x85\x08\xa3\xe0\x33\ +\x00\x00\x4e\xbf\x08\xb1\x15\x28\x00\x00\x1e\x29\x08\xb4\x04\x04\ +\x00\x00\x62\xb6\x08\xd0\x32\xf4\x00\x00\x51\xfa\x08\xd4\xcd\x69\ +\x00\x00\x52\x53\x08\xe1\x9b\xbe\x00\x00\x10\x85\x08\xe1\xc1\xfa\ +\x00\x00\x53\x43\x08\xeb\x8d\x7a\x00\x00\x68\xdb\x09\x20\xda\x24\ +\x00\x00\x6a\x08\x09\x20\xda\xb4\x00\x00\x6a\x89\x09\x20\xda\xd4\ +\x00\x00\x69\x67\x09\x4d\x96\xd9\x00\x00\x17\x70\x09\x65\xda\x8a\ +\x00\x00\x55\x91\x09\x68\x0d\x29\x00\x00\x5b\x60\x09\x71\x8d\x25\ +\x00\x00\x04\x16\x09\x75\x23\x14\x00\x00\x4b\x0a\x09\x76\xed\x34\ +\x00\x00\x41\x06\x09\x86\xa6\x05\x00\x00\x16\x16\x09\x8b\x23\xba\ +\x00\x00\x61\xd3\x09\x9e\xfd\x7e\x00\x00\x41\x48\x09\xb6\x2a\x63\ +\x00\x00\x21\x7b\x09\xcd\x1c\x55\x00\x00\x63\x7c\x09\xd2\x21\xea\ +\x00\x00\x3c\xe9\x09\xe5\x23\x0e\x00\x00\x39\x29\x09\xec\x2b\x45\ +\x00\x00\x07\xdd\x09\xef\x33\xa3\x00\x00\x0f\x07\x09\xf0\x1f\x6e\ +\x00\x00\x02\x2a\x09\xfd\x45\x1a\x00\x00\x5e\xf6\x0a\x09\xc1\x7a\ +\x00\x00\x60\xab\x0a\x28\x9a\x65\x00\x00\x31\xf8\x0a\x28\x9a\x67\ +\x00\x00\x32\x39\x0a\x28\x9a\x69\x00\x00\x32\x7a\x0a\x2d\xbe\xe4\ +\x00\x00\x1f\x17\x0a\x35\xa9\xfa\x00\x00\x58\x3e\x0a\x3f\x27\x74\ +\x00\x00\x4f\xe6\x0a\x3f\x6b\x05\x00\x00\x50\x13\x0a\x49\xa5\x4a\ +\x00\x00\x66\xa6\x0a\x60\xe0\x15\x00\x00\x18\x30\x0a\x60\xe0\x17\ +\x00\x00\x18\x77\x0a\x60\xe0\x19\x00\x00\x18\xbe\x0a\x65\x9b\xea\ +\x00\x00\x5d\x6a\x0a\x78\x05\x80\x00\x00\x00\xdd\x0a\x7f\x8f\x65\ +\x00\x00\x27\x58\x0a\x98\x86\x18\x00\x00\x1a\xf9\x0a\x99\x5c\xaa\ +\x00\x00\x62\x0b\x0a\xa8\x16\x95\x00\x00\x0b\xcf\x0a\xa9\x89\xec\ +\x00\x00\x2b\x9c\x0a\xc8\x5c\x59\x00\x00\x0a\x13\x0a\xd0\x50\xb8\ +\x00\x00\x4a\x1d\x0a\xd0\xe6\xf5\x00\x00\x0e\xce\x0a\xd6\xf1\xfa\ +\x00\x00\x51\x9b\x0a\xeb\x91\x88\x00\x00\x40\xa3\x0b\x07\x78\x8a\ +\x00\x00\x55\x30\x0b\x1b\xe0\x73\x00\x00\x34\x74\x0b\x24\x9d\xb4\ +\x00\x00\x35\x0d\x0b\x24\xc5\xc9\x00\x00\x0c\x2b\x0b\x26\x7e\x0e\ +\x00\x00\x4f\x4c\x0b\x2b\x50\xfa\x00\x00\x57\x42\x0b\x2d\xb3\xf9\ +\x00\x00\x43\x14\x0b\x37\x73\x69\x00\x00\x67\xce\x0b\x40\x40\x3e\ +\x00\x00\x2c\xf4\x0b\x43\xcd\x19\x00\x00\x2b\xf2\x0b\x66\x28\xd2\ +\x00\x00\x40\x64\x0b\x88\xe0\x07\x00\x00\x06\xe2\x0b\x94\x44\xc5\ +\x00\x00\x1f\x68\x0b\xc2\x99\x6a\x00\x00\x54\xc3\x0b\xd3\x27\xae\ +\x00\x00\x02\xd2\x0b\xd4\x7e\x9e\x00\x00\x07\x0f\x0b\xf5\xee\x53\ +\x00\x00\x5d\x19\x0c\x06\x50\x2e\x00\x00\x08\x6c\x0c\x08\x46\x23\ +\x00\x00\x50\x74\x0c\x19\xfa\x99\x00\x00\x52\xad\x0c\x28\x9b\x45\ +\x00\x00\x4a\x85\x0c\x31\x7e\x4a\x00\x00\x5f\x64\x0c\x38\x4d\xe5\ +\x00\x00\x04\xd0\x0c\x3a\x16\xd0\x00\x00\x0f\xb2\x0c\x5a\xc0\xc8\ +\x00\x00\x4d\x16\x0c\x6e\x87\xf5\x00\x00\x15\x3a\x0c\x91\xa0\x7a\ +\x00\x00\x66\x2c\x0c\x96\x90\x59\x00\x00\x2c\x3d\x0c\xca\xdd\xfa\ +\x00\x00\x65\x32\x0c\xd6\xef\x12\x00\x00\x1d\x71\x0c\xde\x99\x49\ +\x00\x00\x43\x5a\x0c\xf0\xde\xaa\x00\x00\x56\x7d\x0d\x1c\xf6\xee\ +\x00\x00\x1b\xe9\x0d\x3a\x6c\xba\x00\x00\x5f\x98\x0d\x45\xe2\x6a\ +\x00\x00\x64\x5e\x0d\x59\xa1\x45\x00\x00\x50\xe1\x0d\x5a\xad\x33\ +\x00\x00\x4c\x69\x0d\x5e\xe7\x6e\x00\x00\x19\x05\x0d\x64\xa5\xd9\ +\x00\x00\x3b\xbe\x0d\x6d\xf8\xf4\x00\x00\x05\x43\x0d\x76\xb5\x92\ +\x00\x00\x1c\x2b\x0d\x9b\xec\xc9\x00\x00\x36\xe9\x0d\xa5\xd9\x94\ +\x00\x00\x1b\xa2\x0d\xa6\xda\xa4\x00\x00\x2e\x19\x0d\xc6\xc6\x2a\ +\x00\x00\x61\x56\x0d\xf2\x39\xba\x00\x00\x58\xa3\x0e\x2b\x04\x15\ +\x00\x00\x4f\x1f\x0e\x2c\xe4\x2a\x00\x00\x64\x1b\x0e\x4e\xcc\xc5\ +\x00\x00\x06\x24\x0e\x6f\x9a\x1a\x00\x00\x65\x84\x0e\x7b\x7a\x2c\ +\x00\x00\x20\x1a\x0e\x8f\x6a\x37\x00\x00\x23\x2a\x0e\x91\x65\xf5\ +\x00\x00\x10\x31\x0e\xca\xd7\x34\x00\x00\x13\xdd\x0e\xcd\x1c\x55\ +\x00\x00\x63\xb1\x0e\xcd\x1c\x65\x00\x00\x63\xe6\x0e\xea\xe5\x03\ +\x00\x00\x48\xca\x0e\xed\xe1\xf9\x00\x00\x2e\xa5\x0f\x07\x8d\xe3\ +\x00\x00\x49\x30\x0f\x17\x82\x4e\x00\x00\x00\x9b\x0f\x1f\x8d\xa5\ +\x00\x00\x4e\xe9\x0f\x4f\x75\x3a\x00\x00\x6a\xcd\x0f\x5f\xca\xd5\ +\x00\x00\x1f\xbb\x0f\x75\xb0\x54\x00\x00\x50\x40\x0f\x77\xc3\xb4\ +\x00\x00\x44\x24\x0f\x89\x0b\xbe\x00\x00\x2e\xef\x0f\x8f\xa8\xa7\ +\x00\x00\x0f\x71\x0f\x98\x0a\x39\x00\x00\x67\x5a\x0f\x9e\xec\xa0\ +\x00\x00\x0b\x68\x0f\xbf\x87\xa3\x00\x00\x5b\xd1\x0f\xcd\xce\x95\ +\x00\x00\x22\xdc\x0f\xdf\x21\x05\x00\x00\x16\x79\x0f\xf6\x06\x1e\ +\x00\x00\x14\x1b\x0f\xf6\x29\x0a\x00\x00\x4c\x33\x0f\xf7\x77\xaa\ +\x00\x00\x56\x2c\x0f\xfb\x5f\xae\x00\x00\x4f\x82\x69\x00\x00\x6b\ +\x35\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\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\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\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\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\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\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\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\x2a\x52\x1b\x5e\ +\xfa\x59\x1a\x70\xb9\x7e\xbf\x68\x46\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\ +\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\x7e\xbf\x68\x46\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\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\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\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\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\x60\x3b\x4f\x53\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\ +\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\ +\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\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\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\x08\x52\x1b\x5e\xfa\x7e\xbf\x68\ +\x46\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\x08\x52\x20\x96\x64\x6d\x4b\x91\xcf\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\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\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\ +\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\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\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\x16\x53\xd1\x73\xb0\x95\xed\x54\x08\x7e\xbf\x68\x46\x00\x3a\ +\x52\x1b\x5e\xfa\x97\x62\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\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\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\ +\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\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\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\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\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\ +\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\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\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\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\x5d\xf2\x95\xed\x54\x08\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\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\xab\xc1\ +\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\ +\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\ +\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\ +\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\ +\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\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\ +\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\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\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\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\ +\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\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\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\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\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\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\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\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\ +\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\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\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\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\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\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\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\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\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\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\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\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\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\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\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\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\ +\x44\x69\x61\x6c\x6f\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\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\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\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\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\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\ +\x44\x69\x61\x6c\x6f\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\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\ +\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\ +\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\ +\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\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\ +\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\ +\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\ +\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\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\ +\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\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\ +\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\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\ +\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\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\ +\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\ +\x00\x00\x07\x83\ +\x00\ +\x00\x36\xc1\x78\x9c\xed\x5b\x5b\x73\xd3\x3a\x10\x7e\xef\xaf\xd0\ +\xe4\xe5\x00\x53\xe2\xf4\x0e\x1d\x37\x0c\xb4\x14\x38\x03\x07\x98\ +\x14\x38\x6f\x1d\xc5\x56\x62\x51\x5b\xf2\x91\x64\x92\xf0\xeb\xcf\ +\x4a\x96\x63\xc7\x76\xee\x4d\x5a\x3a\x9d\xe9\x4c\xa3\x8b\x77\x57\ +\xab\x6f\x2f\x5a\xcb\xee\xab\x61\x14\xa2\x5f\x44\x48\xca\xd9\x59\ +\x63\xaf\xd9\x6a\x20\xc2\x3c\xee\x53\xd6\x3f\x6b\x7c\xbb\xba\x7c\ +\xfe\xa2\xf1\xaa\xbd\xe3\x26\x34\x9f\x74\x08\x93\xda\x3b\xc8\xf5\ +\x42\x2c\x65\xfb\x5d\x42\x4f\x4f\x2f\x28\x0e\x79\x1f\xfe\x87\xfd\ +\x0e\x51\x0a\x1e\x96\x17\x02\xf7\x94\xeb\xa4\x93\x60\xf6\x80\xfa\ +\x7d\xa2\x90\x69\x9f\x35\xbe\xfe\x30\xcd\x06\x62\x38\x22\x67\x8d\ +\x99\x44\x34\x33\xe4\xc6\x82\xc7\x44\xa8\x91\x7d\xa2\x4f\x78\x44\ +\x94\x18\x99\x41\xe4\x0a\xe2\x29\xf3\x0b\xb9\xc3\x76\xcb\x75\x86\ +\xb6\x31\xd2\x8d\x91\x6d\x80\x08\x2a\x68\x1f\x9d\x1c\xb9\x4e\xfa\ +\x33\xed\x0e\x08\xed\x07\xaa\x7d\xbc\xff\xd2\x75\xec\x6f\x43\xd3\ +\xc9\x88\xba\x4e\xc6\xbc\x4e\x92\x01\x65\x3e\x1f\x5c\x51\x15\x12\ +\x2b\x8c\x54\x02\x84\x6f\x7f\x88\x62\x2e\x94\xf3\x76\xa8\xff\xb9\ +\x8e\xed\xad\xd2\x0b\xf1\x88\x27\xb9\x66\xbe\xbf\xe1\xc3\x8f\xa6\ +\xcb\x92\x2b\xf1\x93\x31\xf6\x80\x50\xc3\x4a\xcf\x92\xa8\x4b\x44\ +\xfb\xd8\x75\xec\xaf\x54\xf6\x22\x87\x0a\x89\x08\x8b\x3e\x65\x25\ +\x0a\x2f\x67\x52\xa0\x8a\x44\xb9\x1a\x8b\x3b\xf9\x4e\xf0\x24\x06\ +\x99\xc7\x7b\x69\xdb\x7b\xfb\x96\x41\x85\xbd\xca\x75\x55\x50\xd7\ +\xc5\xbf\x97\xa8\xc7\x45\x84\x15\xe2\xb1\x02\xa4\xc9\xa2\xce\xaa\ +\x22\xcd\xd7\xdc\x5c\xe5\x4d\xd5\x5f\x1d\xb7\xd9\x5a\x9c\xaa\xc8\ +\x7a\x52\xb9\x3a\x6b\xd6\xf1\xbe\xba\x8e\x05\x56\x32\x63\x2d\x75\ +\x22\xcc\x5f\x4f\x4e\xb0\xb5\x20\xc1\x89\x55\x55\x91\xf2\x11\x77\ +\x49\x98\xc1\x44\x91\xa1\x32\x1d\x7b\xd7\x07\x45\x9e\x55\xb4\xc0\ +\xc4\x89\x09\x25\x03\x43\x52\x8d\x42\x52\xc2\xca\x54\x19\x91\xb1\ +\x7d\x90\xaa\xb8\x94\x49\xb9\xe7\x2c\xc3\xf8\xaa\x2f\x82\xf4\xce\ +\x79\xd4\xe5\x05\xe0\xf7\xf5\x40\x0c\x03\x9e\x1e\xe8\xc2\xc0\xcc\ +\x65\x71\x1e\x5e\xd1\xb8\x7e\x65\x57\x01\x95\x08\xfe\x54\x40\x10\ +\xb8\xb9\x80\xfb\xc8\x0b\x38\x97\xc4\xd7\x26\x82\xa8\x59\x38\x4c\ +\x44\xd0\x50\x02\x33\x19\x62\xd3\xd4\x36\xc4\xbb\x3f\xc1\x6f\x21\ +\x8f\x87\x7a\x26\x53\x1c\x5d\x0a\x42\xce\x5f\x5f\x34\xd1\xce\x87\ +\x9e\xed\x8f\x70\x1c\xeb\x07\x80\x87\x25\xbc\x8b\x00\x70\x28\x4a\ +\xa4\xb2\x3d\x08\x97\xe6\xf6\x68\x48\xa0\x8b\x29\x4c\x99\x6e\xe3\ +\x9c\x35\x67\x48\xe1\x2e\x0c\xab\x00\xcc\x77\x40\xc3\x50\x4f\x84\ +\x88\x61\xe5\x90\xa9\x20\x21\x65\xc4\x78\x5e\xd9\xdc\x59\x78\xc3\ +\x2a\x9a\xf3\x12\x21\x08\x53\x1f\x98\x4f\x86\x25\xf5\x4d\xc7\xeb\ +\xa2\xc4\xf5\xfe\xbd\x65\x3a\xb0\x00\xae\x7c\x49\xd4\x59\xa3\x55\ +\x62\xe2\x59\xc1\xfd\x61\xcf\x42\xcf\x5b\x75\x29\x9a\xdb\x17\xac\ +\x82\xf9\xcc\x3e\x71\xdf\xc9\x42\xea\xc2\xdc\x4a\x40\x5e\xc4\xb6\ +\xc6\x10\xfc\x87\x33\x82\x9e\xf4\xb0\x54\x44\xaa\xa7\x75\xbb\x35\ +\x8d\xab\x53\x66\xbb\x96\x1c\xdf\x00\x89\x3e\xe9\xe1\x24\xcc\x30\ +\x8d\x99\x9f\x23\xe9\xee\x04\xfb\x2c\x28\xb8\x4b\x1c\xde\x2f\xa9\ +\xce\xc7\x26\x0b\xbe\xa2\x68\x72\x77\x28\x92\x20\x58\x11\x14\x63\ +\x81\x75\xca\x46\x3d\xeb\xa2\xca\xf1\x7d\x29\x91\xe6\xba\x71\xd7\ +\x49\xa3\x6a\x1e\x84\x8b\xc3\x0b\x07\x60\xbb\xbc\x80\x0b\xfa\x5b\ +\xbb\xbe\xb0\x1a\x98\x97\x89\x7a\xa1\x6e\x5c\x9f\xac\x18\xf0\x3e\ +\xe1\x21\xea\xc4\x7a\x4b\x51\x87\xf4\x23\x70\x82\x77\x10\xf6\x3a\ +\x10\x0c\xea\xa2\x9e\x84\x7e\x08\x7a\xd7\xfb\x33\x17\x17\xe1\x21\ +\x8d\x92\xa8\x43\x7f\x93\xf2\x1a\xa1\xab\x04\xa0\x34\x4b\x3f\x6e\ +\x4d\xe4\xeb\xe3\x51\x9b\xab\xef\x1d\x9f\x9c\x9c\xec\xef\x1d\x4d\ +\x24\xef\xf9\x22\xcb\x64\x17\x73\xcc\x33\xa3\xf3\x8f\x80\x30\x44\ +\x86\x59\x0c\x96\x66\x47\xa4\xb6\x36\x88\xbf\xbb\x3a\x68\x8f\x10\ +\x16\x24\x0d\x8f\x3a\xa5\x05\x53\xa4\x0c\xc5\x3c\x1c\x99\x99\x4d\ +\x64\xe2\xfb\x2f\x1c\x26\x64\x1c\xe5\x53\xbd\xa0\x90\xb0\xbe\x0a\ +\x10\xef\x21\x82\x3d\xf3\x5f\x8f\x66\x8f\x22\x99\x6e\x3b\x90\x80\ +\x50\xde\x32\xbc\x98\x99\x31\x08\x38\x84\xdf\x54\x14\x43\xd3\x18\ +\x9d\x8f\xb0\x84\x38\x0d\x72\x63\xad\x9a\xec\xf1\xe6\xea\xc1\xd7\ +\x08\x5d\x1f\x75\x8f\xb6\x12\x75\x41\x51\x56\xe1\x99\x05\xdc\xcf\ +\xe8\x7b\xc7\x0e\x6a\x22\xa9\x5e\xde\x45\xad\xe8\xa0\xce\x2b\x09\ +\xe3\x1d\x38\xa8\x4b\x60\x7b\x6e\x52\x58\x51\x71\x52\x5a\x24\xcf\ +\x8e\xcd\x74\x53\x90\xe2\x2e\xe9\xa6\x0e\x5a\xb3\xfd\x54\x6b\x7b\ +\x0e\xea\x2a\x20\x75\xb9\x7b\xaf\x74\x5a\x80\x04\x76\x4a\x7a\xbe\ +\xba\x7f\x58\x2e\x7f\xb6\xe2\xa5\x40\x79\xb4\xe3\x3a\x3b\x3e\x59\ +\xdc\x8e\xf3\x93\x69\x40\xbc\x9b\xda\x93\xa9\x1e\x98\x1f\xa4\x67\ +\x82\x8b\xea\x90\x94\x1e\x4f\x13\x66\x08\xea\xc3\xa3\xf6\x09\xd2\ +\x89\xcc\x3f\x34\xe0\xec\x2f\x85\xba\xc4\x1e\x54\x89\xbf\x3a\x9e\ +\xe6\x9e\xfe\x53\x8e\x3a\xfb\xf6\x29\xc4\x03\x59\x53\x38\x5a\x12\ +\x4a\x8b\xc3\x57\xf3\x7e\xc4\x6d\x3d\x6e\xf7\x37\x82\xdb\x39\xa5\ +\xa2\x05\x71\x3b\x46\x6d\x8c\xe1\x71\xa4\x4b\x69\x24\x3b\x94\xa4\ +\xd5\x8b\x02\x76\x21\xaf\xe3\x1b\xc4\x6f\xaa\xd9\xad\x41\x36\x65\ +\xf7\x08\xda\x7a\xd0\x1e\x6e\x04\xb4\x73\x8e\x7b\xb3\x40\x6b\x88\ +\x5b\xdc\xf6\x4c\x85\x6e\x80\x99\x32\x19\x3f\xe3\xec\xb9\xa6\xe0\ +\xa3\x6e\xc8\xbd\x1b\x89\x9e\x74\x49\x9f\x32\x53\x9a\x1b\x50\x38\ +\x43\x60\xf4\xec\xa9\x3e\x94\x6c\x0f\xcb\xcf\x52\x49\xb6\x85\x65\ +\xa9\xb0\xc8\x38\x3e\xe2\xb9\x0e\xcf\x2f\x36\x82\xe7\xa3\xdb\x75\ +\xc2\x99\xe3\xed\x09\x1e\x19\x64\x4b\xa0\xa3\xfd\x22\x11\xb9\x37\ +\xfe\xc9\x21\x39\xf5\xd3\x3c\xd5\x6c\x02\x7a\x63\x76\x1e\x32\x8f\ +\x44\x18\xcc\xeb\x27\x7d\x0a\x67\x43\x3c\x42\xa6\x6c\x29\x76\x51\ +\x17\xd4\x15\xe1\x1b\x3b\xac\x4f\xd7\x52\xc2\xc1\x5a\xd2\x70\x84\ +\x88\x4f\x4d\xcd\x7a\x13\xf6\x60\xde\x81\x65\x4b\x30\x32\x6f\xd1\ +\x32\xfa\x9a\xf9\x47\xc3\xfb\xd1\x2e\xea\xed\xe2\x68\x23\x76\xf1\ +\x72\x75\xbb\xd0\x2f\x66\x32\x7b\xe8\x09\x42\x3c\xec\xa7\xd0\x87\ +\x1d\xd7\x3e\x5c\xc3\x5f\xd7\xbf\x29\xf3\xa8\x4f\xe0\x67\x66\x34\ +\x06\x5c\x03\x2a\x74\x55\xe9\x0d\x19\x60\x41\x76\x53\x0b\xf3\xb0\ +\x7e\x27\x73\xa3\x5f\xe3\x0c\x02\x38\x5f\x35\x9b\x6b\x54\x7d\xa6\ +\x23\xfd\x6f\x10\x09\x65\x2f\xe3\xb7\x02\x6f\xad\x8a\x9c\xe1\x23\ +\xbe\xeb\xf0\x7d\xbc\x09\x7c\xaf\x85\xee\x8a\xd7\xc7\x00\xee\x0c\ +\xc4\x85\x97\x8a\x3d\x48\xc5\x73\xaf\x9f\x16\x59\xd3\x32\xe6\x81\ +\x6f\xca\xa0\x66\xc2\x26\x90\x9c\xde\xd3\x40\x07\x17\x63\xb1\x80\ +\x69\xc6\x11\x45\x44\x06\xeb\xf0\x5d\xb2\x2e\x02\xdc\x1e\x26\xb6\ +\x27\x07\x27\x68\x15\xe6\xad\x74\xdd\xe4\x7a\xc9\x0b\x27\x9d\xef\ +\xef\x6e\xef\xc2\x89\xe5\x54\x38\xa0\xfe\xe9\x57\x4f\xb2\x15\x4d\ +\x9c\x89\x1e\xee\x25\x94\x39\x49\xed\x9d\x5f\x42\x31\x45\x0a\x51\ +\x71\xf8\x1d\xd3\x3d\xe1\xf0\xab\xd2\xc3\x6c\xc8\x19\xcc\x3d\x8d\ +\xd2\x22\x08\xa8\xb4\xfd\x55\x9d\x9e\xbe\x1f\x53\x74\x1d\xd3\xb9\ +\xb4\xd3\xd1\x75\xec\xf7\x90\x8e\x4c\x77\x3a\x53\x4b\xe7\x87\xb3\ +\x2b\xe7\xfb\x6b\x95\xce\x61\x9a\xd1\xd1\x12\xba\x5e\xf5\xc2\xcf\ +\x3a\xe5\xa9\x85\xaf\xfc\x68\xb7\x35\xfd\x8e\xcf\x9f\x7f\xad\x46\ +\xfe\xea\x3f\x5e\xab\x79\xbc\x56\x73\xdb\x52\xdd\xdf\xb4\xe5\x60\ +\xb9\xb4\xe5\xf3\xf9\xeb\xdb\x4f\x5b\x8e\x1f\x5c\xda\x72\xf2\xa0\ +\xd2\x96\x25\xaa\x10\x87\xab\xc7\xa0\x19\xd5\x66\x2c\x08\x1c\x87\ +\x9e\xc0\xe9\xc8\x1c\xc0\xea\x0a\xcb\x1b\xa9\x2f\xd8\xf4\x4a\x83\ +\xde\x88\xb0\x95\x13\x18\xf7\xb0\x65\x76\x3f\x43\xd0\xb6\x7d\xd9\ +\x44\xee\xa9\x6f\xf5\x52\x2f\xcb\x3c\xa7\xf9\xae\xba\x94\x33\xcf\ +\x36\xbf\x5b\x1a\x13\xb9\x66\xd5\x6f\x2d\x91\x61\x4e\x26\x97\x36\ +\xaf\xdc\xaf\xe4\x95\x59\x4a\x79\x58\x49\x29\x27\xb2\xc9\xb2\x28\ +\x13\x39\x64\xae\xa4\x82\x26\x0b\x6a\xb4\xce\x29\x8b\xae\xd6\xd9\ +\x9c\x35\x8e\x1b\x28\x75\x13\x67\x8d\xbd\xbd\x86\xa3\x67\xc6\x74\ +\x18\xe1\xb8\x97\x30\x4f\x2b\xaa\xfd\xdf\x17\xd3\xbe\x14\x3c\xfa\ +\x44\x23\xd2\xe1\x89\xf0\x20\x0f\x2a\xcd\xd2\x9f\xde\x24\x52\xf1\ +\x28\xe5\x28\x8d\x24\xc5\x9e\x54\xca\xc2\xe7\x39\x85\x1b\x31\xf9\ +\x17\x39\x7a\x3f\x86\x8a\x30\x5f\xb6\xed\xd7\x38\xb0\x1b\xb6\x63\ +\x27\x55\x15\xf6\x61\xc9\x40\xc1\xd1\x04\xd2\xcf\x73\x9a\x81\x56\ +\x9c\x19\x30\x0a\x28\xf3\x9d\x2d\x48\xe9\x7a\x4e\xad\x30\x55\x89\ +\xa7\x49\xa5\xa9\xa5\x92\xcb\xf5\xc5\xb2\xd7\x1a\xeb\xf5\x33\x1e\ +\xdc\x8a\x28\x99\x8f\xaf\x97\x25\x1f\xdd\x8e\x30\xf6\xd0\x33\x45\ +\x98\xf1\xe8\xfa\xc2\x4c\x76\x98\x8f\xc6\x04\x91\xc6\x06\xa4\xb1\ +\x16\x8f\x33\x46\x8c\x0d\xe8\xb6\xeb\x24\xb4\xbd\xf3\x3f\x2b\xb8\ +\x06\xd6\ +\x00\x00\x0d\x74\ +\x00\ +\x00\x80\x2b\x78\x9c\xed\x1d\x6b\x73\xda\xb8\xf6\x7b\x7e\x85\x26\ +\x1f\x3a\xb9\x33\xd9\x00\x69\x92\xbe\x08\x3b\x6d\xfa\x9c\xe9\xee\ +\x76\x4b\xda\xbd\x7b\xbf\xec\x08\x5b\x80\x6e\x6d\xcb\x95\x44\x80\ +\x9d\xfb\xe3\xef\x39\x92\x8c\x8d\x31\x10\x30\x60\xb2\xa5\xd3\x99\ +\x60\x49\x3e\x3a\x3a\x3a\x2f\x1d\x1d\xc9\xcd\x9f\x47\x61\x40\xee\ +\x98\x54\x5c\x44\xd7\xc7\x8d\xb3\xfa\x31\x61\x91\x27\x7c\x1e\xf5\ +\xae\x8f\xbf\xdc\xbe\xfd\xe9\xe9\xf1\xcf\xad\xa3\xe6\x80\xa7\x8d\ +\x2e\xa0\x51\xeb\x88\x34\xbd\x80\x2a\xd5\x7a\x37\xe0\xcf\x9f\xbf\ +\xe6\x34\x10\x3d\xf8\x1b\xf4\xda\x4c\x6b\x78\x59\xbd\x96\xb4\xab\ +\x9b\x35\xdb\x08\x5a\x0f\xb9\xdf\x63\x9a\x98\xe7\xeb\xe3\xdf\xff\ +\x30\x8f\xc7\x24\xa2\x21\xbb\x3e\x5e\x08\x04\x3b\x23\xcd\x58\x8a\ +\x98\x49\x3d\x76\x6f\xf4\x98\x08\x99\x96\x63\x53\x49\x9a\x92\x79\ +\xda\xfc\x22\xcd\x51\xab\xde\xac\x8d\xdc\xc3\x18\x1f\xc6\xee\x01\ +\x50\xd0\xfd\xd6\xe5\x33\x28\xb2\x3f\x6d\x71\x9f\xf1\x5e\x5f\xb7\ +\xae\xce\x9f\x35\x6b\xee\xb7\x81\x59\x4b\x80\x36\x6b\x49\xe7\x45\ +\x98\x0c\x79\xe4\x8b\xe1\x2d\xd7\x01\x73\xc8\x28\x2d\x01\xf9\xd6\ +\x3b\x16\x31\x49\x03\xa2\xdc\x60\x9a\x35\x57\x31\x0b\x32\xa0\x63\ +\x31\x48\x89\xf3\xf5\x95\x18\x7d\x34\x45\x0e\x62\xae\x4b\x15\x53\ +\x0f\x00\x1d\xbb\x01\x44\x83\xb0\xc3\x64\xeb\xaa\x59\x73\xbf\x2c\ +\xfa\xd9\x1e\x66\x40\x84\x54\xf6\x78\x94\x83\xf0\x6c\x21\x04\xae\ +\x59\x98\x52\x32\x3b\x99\xef\xa4\x18\xc4\x80\x73\x32\x9d\xbd\xe4\ +\xd9\x36\x9f\xe9\x5c\xa7\xc4\x2a\xa0\x97\x99\x74\xd2\x2e\xa0\xda\ +\x2c\x52\x0b\x69\xe7\x7a\x03\xc6\xd5\xdc\xa3\x81\x2d\xfd\xeb\x3c\ +\xed\x38\x1d\x51\x01\xa0\xf7\x33\x80\xfa\x42\xf2\xbf\x45\xa4\x27\ +\xa0\x1a\xcf\x26\xb0\xf2\xd0\x66\x89\xf4\x91\x76\x58\x90\x80\x0a\ +\xf0\x61\xfa\xfd\x02\x32\xb1\x91\x9e\x6a\x30\x21\x95\x25\x11\x8f\ +\x34\x93\x5d\xea\x31\x12\x0a\x9f\xe5\x08\x55\x4c\x2d\x5b\x68\x31\ +\xcb\xa0\x5e\x9b\xc6\x7d\xc9\x50\x8c\xb4\x7e\x92\xac\x7b\x23\xc2\ +\x8e\xc8\xce\x3b\x56\xc4\x50\xe1\x61\x45\x47\x8c\xfe\xba\x58\x3c\ +\x40\x21\x82\x5b\x1e\x17\x8f\xf1\xb6\xcf\x15\x81\xff\xba\xcf\xc8\ +\x97\x0f\x66\x88\x30\x62\x32\xec\x73\xaf\x6f\x0a\x2d\x11\xa0\x7c\ +\x10\x30\x32\xe4\x41\x40\x86\x42\x7e\x7b\x4e\x6e\x01\x6a\x87\x4a\ +\xfb\x86\x29\x8f\x03\x24\x12\x0d\x12\xde\x4a\x24\x12\xe1\x51\x78\ +\x8a\xa9\xa4\x9a\x11\x6d\x5f\x3c\xc5\x3e\x00\xa4\xa6\xea\xdb\x34\ +\x9c\x81\x62\xa6\xe7\xb7\x92\xb1\x9b\x97\xaf\xc9\x2d\xb4\xb8\xe3\ +\x6c\x48\xd4\x58\x01\xc5\x48\x57\x48\xd3\x0b\xd7\x0a\xdb\x4a\x3b\ +\x43\xd4\xd3\xa0\x37\xef\x3d\x3d\x33\x54\x42\x82\xbe\x89\x50\xd7\ +\x11\xa5\x7d\xc0\xfd\xfa\xb8\x9e\x23\x99\xe7\x60\x7f\xe1\xbf\x18\ +\x4e\xf0\xca\xf4\xf5\x89\xea\xfe\xf2\xae\xa0\xa3\x5a\xa2\xe3\xef\ +\xdd\x5b\x8e\xaf\xee\xc3\xf2\x29\x3f\xd8\xd9\x29\xa2\xe3\xbc\xee\ +\x6a\xf9\xfe\xca\x21\xe0\x66\xbb\x0c\x06\x4b\x65\xaf\x59\xb3\x6a\ +\x68\xa2\xa3\xa6\xaa\x4b\x6b\xac\xf3\x72\x0a\xeb\x7c\x5d\x7d\xc5\ +\xba\x74\x10\x00\x68\x11\x88\xc2\x19\xdc\xba\xa2\x82\x7e\x5f\x0d\ +\xb4\x16\x51\x81\xae\x82\xba\x8e\xad\x5b\x5b\x59\xa1\x56\xf0\xb3\ +\x83\x34\xba\x20\x02\xd5\x20\x3a\xff\x05\x37\x22\x6f\xc6\x16\xf1\ +\x4c\xae\x5f\x03\x2e\x2f\x84\x58\x96\xe3\x52\xc9\x7c\x74\x76\xf0\ +\xcf\x74\x45\x0f\xb4\x55\x84\x55\xf6\xc7\x74\x65\x27\x18\x30\xac\ +\x33\x7f\xa7\x19\x7a\xa6\x93\x8d\xab\x2b\xc7\x0e\xfb\xa9\xad\x4a\ +\x73\x5f\x91\x00\x2d\xb1\x87\x73\x05\xa8\x1d\xd1\x78\xdf\xa5\x67\ +\x99\x76\x58\x5d\x7e\x14\x8e\x5a\x8d\xc1\x97\x08\x0e\x02\x34\x85\ +\xbe\xa3\x05\x12\xe8\xc7\x13\xa2\x75\xbd\xe6\x1b\x11\xc1\xaf\x81\ +\x71\xc7\xf6\x5e\x98\x1e\x6f\xc6\x73\x9e\x15\x2a\x67\x90\x48\x87\ +\x41\x5b\xe2\x4b\x3a\x8c\x9c\xc3\xcb\x91\x2a\x19\x12\xa1\xe3\x7b\ +\xb6\x1b\xb9\xbb\xb8\x98\x2f\x78\x8d\xf3\xcb\x05\xa2\x77\x7e\x79\ +\x59\x99\xf5\x4a\x69\xf5\xe3\x09\xe1\x12\xfe\x5c\xea\x0a\x06\x1c\ +\xbc\x23\x8c\xc2\x54\x20\x83\xed\x98\x47\x45\xcb\x56\x05\xe5\x9d\ +\x34\x6c\x51\x3c\xb2\xfb\x9a\xb1\xc9\x00\x37\xe7\x0a\xde\x51\xe0\ +\xf3\x5c\xcf\x2e\x60\x73\x3e\x15\xba\x59\x09\xea\x0a\x2c\x9f\x99\ +\xb4\x07\xca\xea\x5b\x5e\x5f\x3d\x2e\xb9\xbe\xaa\x97\x32\x6d\x94\ +\x1b\xa5\xbd\x97\x91\xa0\xcb\x32\xf6\x8c\x91\xc9\x00\xd1\x68\xc1\ +\x18\x79\x97\x33\x49\xbe\xb1\xf1\x4e\xe2\x2a\xd0\xa1\x97\x20\xb0\ +\xaf\xac\x5f\x2e\xb8\xa1\xfa\x1c\x3b\xab\x2a\xb6\xe2\x69\x19\x54\ +\xd7\x3b\x0d\x4a\x0d\x7d\x2b\xf6\xf5\xbc\x51\x66\xa9\xb8\xaf\x5a\ +\xe0\xaa\x9c\x16\x50\x6e\x6c\x1b\x90\x7e\x6f\x20\x25\x8b\xf4\x87\ +\xc8\x67\xa3\x62\x93\xda\xd8\x89\x49\x85\xd1\xe0\xa8\x0e\x5a\xc5\ +\x96\x1e\xb4\x4a\x5a\xb0\x0d\xad\xb2\x6e\x04\xf7\x65\xa0\xf7\x56\ +\xa9\x3c\x29\xa7\x54\xa8\x1d\xda\x4e\x74\xca\x6e\xdc\x74\x18\x8d\ +\x61\xbe\x83\x4a\x39\xa8\x94\x7d\xda\x7d\x6a\xd4\xcb\x2d\x8f\x1a\ +\xe5\x96\x47\x2e\xac\x65\xb2\x13\xcc\x2b\x15\x68\xb3\x8f\xb0\x82\ +\x7e\xe3\x73\x3d\xa3\xcd\x70\x69\xcd\xa0\xa2\x4c\x14\xbd\x28\xf0\ +\x97\x8e\xd6\xc4\x21\xa6\x02\x7c\x49\x12\xcd\xfa\x1a\xef\x7e\x24\ +\xdf\xc9\x1a\x2d\x3b\x32\x33\x68\x3b\xc3\xfb\xa9\x03\xab\x96\xc4\ +\x8b\xfb\x0b\x62\x6a\x88\xfb\xcc\xfb\x56\x68\x88\xb1\xa2\x54\xdc\ +\xcc\x40\x00\xb6\x45\xf6\xed\x12\xc0\x90\x0c\x69\xa4\x89\x16\x93\ +\x94\x0b\x13\x60\xad\x65\x62\x6a\x52\x84\xa6\xc2\x25\x6d\x10\xaa\ +\x12\x96\xdf\x06\x37\xb7\xe9\x1d\xe0\x60\xcd\xbb\x8b\xa5\xd3\xc8\ +\xcf\xc4\xf8\xa8\x27\x85\x52\x44\x31\x85\x49\x72\x25\x62\x7c\xab\ +\xec\xfe\x00\x52\x22\x62\x23\xbe\xb7\xa6\xbe\x6a\x36\x7f\xb2\x0d\ +\x36\x2f\x13\xca\xfa\xd0\x75\x5c\xae\x88\x01\xc7\xfc\x53\x60\xa7\ +\x78\x9c\x49\x32\xea\x30\x70\x42\x63\x9d\x70\x14\x78\xb9\x21\xb0\ +\xda\x29\x11\xc0\xed\x72\xc8\x15\x4b\x8a\x94\x6d\x4f\x83\x21\x1d\ +\x03\xe7\x69\x2a\x31\x25\x8c\x44\xe2\xa7\x09\xc4\x6d\x88\xc2\xbb\ +\x40\x74\x68\x40\x36\xd0\x87\xa3\x40\xae\x9b\x0e\xd0\xaf\x05\x8a\ +\x1c\x00\x9b\x9f\xdb\xb5\x19\xf1\x38\xdc\xe3\x8c\xa9\xaa\xe5\xa7\ +\xf1\x74\x2b\x02\x54\x62\x6f\xf3\x57\x21\x43\x1a\x04\xe3\x53\x02\ +\x84\x64\xd2\xb0\x21\x86\x84\xdd\xde\xca\xa9\x33\x16\x31\x67\x8a\ +\x20\x72\x8a\x05\x50\xce\xfc\x33\x92\x88\x9e\x88\x8d\xef\x93\x95\ +\x40\x7c\xa7\x43\x41\xb2\x92\xbd\xd1\x44\x10\x93\xb7\x41\xae\x94\ +\x66\xd4\x2f\xb1\x1b\xba\xc0\xb6\x98\x4e\xa6\x11\x98\x1a\xdc\x6e\ +\x8c\x89\xc1\xe2\x15\x20\xf1\x5b\xb2\x4d\x75\x90\x89\x22\x99\xb8\ +\xdc\x8a\x48\x3c\xdd\xac\x4d\x31\x2e\x54\xd6\x3a\x60\xe0\x14\xdc\ +\x29\x70\x16\x94\xce\xc8\x8b\xdb\xf9\xc7\x2c\x00\x28\x35\x42\x12\ +\x09\x9d\x79\xbf\x63\x83\xae\xb1\x79\x27\x0a\xc6\xf0\x02\x8b\x08\ +\xa0\x0e\x7e\x0e\x14\xdd\xdc\x7e\xfe\xb8\x15\xa1\x78\x39\x8d\x77\ +\x82\xee\x89\xcf\x15\xed\x04\x69\x24\x18\x03\x36\xff\x7a\xc8\x26\ +\xc8\x4e\x50\x7b\x8f\x43\xc0\x6b\x2c\x7e\xf1\x80\x02\xe8\xaf\xbc\ +\x04\xb5\x4d\xf1\x92\x15\x2e\xb4\x06\x27\x9b\xa2\x92\xce\x8d\x81\ +\x45\x83\xb0\xf5\xbb\x7e\xfe\xfc\xfd\x04\x62\xb3\x66\x0a\x57\x26\ +\x98\xe2\x7f\xb3\xf7\x3c\xd2\xf3\x09\x86\x2d\x72\x41\x18\x7b\x68\ +\xe4\x62\xfa\xf8\xc8\xa4\xd6\x1d\x1d\x39\xaf\x4f\x9d\x22\x49\xd1\ +\xca\x03\x9c\x43\x6b\x4b\xba\xb5\x03\x0d\x85\x61\x93\x92\x01\x52\ +\x49\x7d\x3e\x50\x93\x8c\x3c\xa3\x0b\x40\x26\x55\xcc\x3c\x0e\x9e\ +\x60\x2c\x80\x90\xea\x0c\x4f\x6c\x60\x71\xdd\xe6\x3b\x08\x02\xa2\ +\xaa\x69\xe4\x31\x72\xc2\xa3\x2e\x8f\x00\xef\x12\x82\xba\x64\xbf\ +\x4b\xd2\xa8\x57\x45\x38\x67\x49\x26\xc9\x12\x56\x57\x83\x6e\x97\ +\xe7\x23\xc5\x6e\x0c\xf1\x68\x37\x66\x1f\xa8\xf7\xd9\x12\xef\x81\ +\x6a\x9f\x2d\x9b\xfb\xed\x78\xc0\x25\xf6\x41\x8b\xcc\xfd\x94\xdf\ +\x0a\x12\xca\x6c\x40\xa4\x0b\x8f\xe0\xbc\xa6\xa1\x91\x33\xf2\x5b\ +\xb2\x8a\x34\x5e\xef\x38\xff\xc6\x90\x03\x96\x72\x95\xd0\xe8\x0a\ +\x92\xfa\x16\xfb\x9a\xa4\x1f\x8e\xcb\xc7\x6b\x56\xe0\x73\x24\xc5\ +\x61\xa5\x37\x9f\xcd\xcb\x9e\x64\x2b\x7b\x32\x04\x8f\x6e\xa1\x5d\ +\x89\x03\x1a\xed\xe7\x51\xb6\xc5\x23\x5c\x81\x15\x1d\xdb\xff\xf1\ +\x69\x5f\x79\xb1\xdc\x1e\xd5\xaf\xa2\x78\x02\x77\xb3\x43\xf6\xef\ +\x3f\xc9\xc9\xad\x88\x0b\x3d\x8d\x1d\x61\xf0\x1f\x72\xf2\x56\x82\ +\x6c\x55\x88\xc3\x9f\x80\x43\x9b\xfb\xc5\x0e\xd7\x83\xd9\x2d\xdc\ +\x4e\xf4\xb6\xc4\xfe\x1a\x98\xde\x89\xc9\xa5\xa4\x27\xb9\x3f\x65\ +\x3f\xcd\xd2\xd8\x2d\xa5\xb7\x61\x3f\xbf\x28\x66\x3a\x7d\xc8\xcb\ +\x5d\x8b\xff\x7e\xea\xbd\xad\x64\xdc\x34\x96\xec\x16\xcc\x8f\xb3\ +\x23\x7b\xb9\x93\xfe\x15\x18\xc4\xd7\x62\xd0\x09\xd8\xbc\xf5\x8d\ +\x6f\x6a\x93\x55\x4e\xa9\xb3\x2a\x2c\x19\x24\xe9\x30\x3d\x64\x20\ +\x42\x8c\x7a\x7d\x2b\x5d\xb8\xbf\xb6\xd9\x74\x79\x8b\x78\xab\x71\ +\x56\x9f\xfe\xd7\xac\xb9\x9a\x6d\x33\x7f\x3b\x99\xd1\x1f\x49\x06\ +\x96\x2c\x77\xe6\xca\xc0\x2f\x98\xd1\x8e\x4c\xa0\x08\xbb\x63\x2b\ +\x24\x2a\xec\x6e\x85\x5f\xe2\x86\x03\x1c\x9d\x1d\x5c\x12\x6a\xb5\ +\xa7\xb1\x60\x79\x07\x5a\x5a\x9e\x91\x36\x46\x58\xba\x63\x02\x4b\ +\x36\x46\xfa\x62\x48\x42\x1a\x8d\x89\xfa\x3e\xa0\x92\xa9\x89\xb8\ +\x84\x09\x98\x12\x81\xd8\x05\x27\x4b\x1a\xf5\x9d\xe4\xac\xa1\x6c\ +\xbc\xb1\x73\xfc\x40\x25\x63\xdb\xee\x50\xc9\xb3\x25\x4b\x76\x18\ +\xe6\xca\xe0\x07\xbc\xc3\x22\xc2\x38\x9f\x04\x6e\xc4\xec\x06\x12\ +\x80\x30\x16\x66\xc1\x55\x2c\x8b\x8b\xed\x50\x48\x47\x3c\x1c\x84\ +\x6d\xfe\x77\x9e\xd3\xe7\xc6\x7a\xaf\x16\xc7\x7a\x1b\x57\x4f\x9e\ +\x3c\x39\x6f\x5c\x96\x89\xf8\xae\x6e\x2e\xad\x30\x12\xd1\x25\x3e\ +\x4c\x48\x48\x03\x73\x8f\x09\x4f\xa6\xc9\x13\x42\xfa\x3c\xa2\x9a\ +\xe1\x5e\x27\x93\x26\x92\xae\xc8\x09\x46\x65\xd9\xe8\x8c\x3c\x26\ +\xd7\xa4\x0e\xe6\xaf\x51\x22\x1a\xbb\x40\x5d\x5c\xed\x44\x5b\x4c\ +\x78\xf1\xc1\x6a\x8b\x55\x37\x4d\x16\xdb\x99\xc3\xa6\xc9\xc6\x37\ +\x4d\xd6\xd5\x97\xaf\x79\xc8\x22\x93\x04\xf6\x00\x34\xe6\xe2\xc5\ +\x89\xd3\x98\xc5\x82\xfe\x74\x7d\x41\xaf\xfc\x1c\xab\xcf\xc3\x4f\ +\x0f\x5e\x83\x6c\xdb\xdf\x58\x21\xd1\xa1\x48\x80\x96\x6c\x3a\xce\ +\x95\x9f\x5b\x11\x80\xd1\x8a\xbc\x2a\xa2\xc0\x2b\x2c\x7a\x7f\x00\ +\x57\x23\x4d\x26\x37\x02\x8b\xb9\xb8\x3e\xee\xdb\x74\x07\x91\x67\ +\x9d\x0a\xdd\xa7\xda\xa4\xe8\x52\xa2\x93\x69\x3b\x3b\xfa\x8a\xad\ +\x71\x51\xa3\xfb\xc4\xe7\xdd\x2e\xac\x5e\xa0\x1c\x17\x2c\x01\xac\ +\x61\xcc\xe6\x95\x05\x98\x2c\x7b\xb4\x64\x54\xdb\x8d\x2a\x05\x88\ +\x95\x58\xc7\x2c\xd8\x51\xad\xad\x63\xf0\xa2\x1e\xb0\x83\x66\x79\ +\x12\xb9\x58\x01\xb8\x51\x8d\x0d\x45\x11\x16\xc4\x2a\xa0\x97\xcb\ +\xdd\xc7\x2a\x74\x2a\x86\x07\xfd\x58\xa4\x1f\xaf\xca\xa9\xc7\x75\ +\x43\x22\xc9\x86\x19\xb6\x20\x56\x17\xec\xb7\xa2\x5c\x12\x70\xff\ +\x27\xa8\xca\x64\x4e\x6c\x7f\x26\xff\x05\xa7\x47\x99\x33\x02\xfe\ +\xc4\x1f\xdc\x4a\x24\xb3\x7e\x76\x5e\x41\x24\x13\x87\x97\x30\xdf\ +\x41\x3d\x14\xba\x4f\x25\xaf\x5a\x5c\x77\xdb\x60\x4a\x3f\x74\x01\ +\xa3\x6d\x6a\x87\xc5\x4b\xd6\xc5\xe1\x98\xc3\x92\xb5\xcc\x92\xf5\ +\xfe\x07\x0a\x37\x7b\x9c\x10\x39\x2a\x3d\x4d\x98\x5e\xa9\x5b\xa4\ +\xef\xce\x8e\x3e\x00\xbe\x34\x42\x17\x8f\x66\xde\x54\x03\xaf\x8f\ +\xbe\xde\xa3\xef\x03\xa1\x5f\xbc\x94\x9c\x06\xf6\x27\xee\xaa\x26\ +\x1d\x29\x3d\x0e\xf2\x4d\x15\x8d\x54\xd2\xd2\x95\x30\xc9\xbb\xf6\ +\xe7\x11\xe0\x63\x7f\x85\x22\x12\x49\x33\x44\x92\x74\x69\xc8\x83\ +\x71\x51\xbf\xa7\xef\x59\x70\xc7\xf0\x7a\xe8\xd3\x14\xb8\x7d\xc9\ +\xa0\x6a\x7c\x58\x6a\x91\x39\x2a\x78\xff\xf9\x2b\x11\xf8\xf6\x79\ +\x2b\x59\xd0\xd8\xc7\xfa\x80\x69\xc0\x7b\x11\xcc\xc6\x0c\x74\x10\ +\x72\x94\xaf\x97\x58\xff\x19\x79\xf8\x7f\x93\xc7\x5b\x49\x39\xb0\ +\x4e\x2f\x2d\xf9\x7a\xc3\x30\xb6\x08\x68\x30\xbd\x3a\x0e\x2b\x1a\ +\x15\xab\xb1\x0e\x26\xa5\xd0\xa4\x34\xca\x99\x94\xc6\xba\x57\xca\ +\xa4\x36\x25\x8c\x03\xbc\x29\x5b\xf5\x19\xab\xd0\xb0\x2c\x19\xc8\ +\xc1\xb2\x6c\xc4\xb2\xbc\xe5\x01\xbb\xe9\x0b\x01\x3a\x76\xc6\xb8\ +\x74\xa1\xce\xb3\x75\xcb\xfc\x7b\x1e\xad\xea\xdf\x3f\xae\x2f\x26\ +\x50\x29\xfa\xac\xbe\xdf\xe2\xe7\xb9\xdf\x1d\x4b\x36\xe9\x3e\x1e\ +\x86\x2e\x30\x79\x81\x9a\x2b\xfe\x5c\xf6\xcf\x8a\x02\x52\x4e\x69\ +\x5a\xac\x0e\x4a\x73\x8e\xd2\x5c\xe1\xa8\x7b\x81\xd2\x2c\xbf\x09\ +\xf0\x88\x86\xf1\x0b\xf2\x91\x51\x1f\x14\x1a\x95\x52\x0c\xad\x3b\ +\xb1\x8f\x49\xae\x1b\x4b\x71\xe5\xa1\xbd\xb6\x79\x5f\xb9\xb2\x5c\ +\x7a\xe5\x6b\xa1\xc9\x65\x75\xd9\x9d\xd8\xfd\x93\x6a\xbb\x7f\x56\ +\x5d\xf7\x37\x5c\x7a\xb0\x32\xa8\x90\xfe\x0e\x83\x0a\xa7\xc0\x61\ +\x50\xe1\x2c\xb4\x41\xb5\xf4\xab\x9c\x04\x8b\x40\x85\x73\x60\x11\ +\xa8\x70\x0a\x5e\x51\xef\x9b\xaa\x7a\x1a\x52\x24\x2a\x9c\x8a\x14\ +\x89\x52\xd3\x51\xb9\xab\x52\x72\x4b\xa1\xb1\x24\x17\x71\xae\xb7\ +\xf2\x95\xd9\x2f\x64\x65\x62\x37\x36\x7e\x98\x59\x49\xed\xa3\xbb\ +\xb2\xa9\x4b\xf2\x33\xc3\xc4\xb4\x2a\x13\xef\x4a\x28\xe1\x22\x5b\ +\xc6\xd9\xd7\x7d\x58\xf0\x64\x89\x44\x25\x23\xc9\xe7\xc5\xce\x48\ +\xb2\x4c\x06\xa8\x01\xeb\xea\x53\xf7\xad\x2a\xd7\xc9\x87\xf6\x6f\ +\x78\x49\x4b\xe4\x53\x59\xe6\x1e\x89\xd5\xbc\xb0\xa9\x09\xfc\x27\ +\xba\x62\x1f\x81\xd0\xe4\x24\x4b\xdb\x0a\x8f\xdd\x7c\x9e\xb7\x1b\ +\xf7\x40\x34\x50\x49\xf5\xb3\xee\x27\x01\x5e\x06\x26\x75\x11\x56\ +\xd6\xed\xaf\xef\x08\x30\x1a\x3e\x82\x0c\x09\x6f\xeb\x9a\x67\x49\ +\x9c\x69\xf1\x7d\x83\x87\x38\xd3\x4e\xe3\x4c\x4b\xb2\x7b\x1f\x74\ +\x9c\xe9\x3d\x66\xf8\xe3\xa5\x2b\xb8\x5d\xa2\x5c\xda\x3f\x05\x53\ +\x83\xdf\x20\x15\x72\x8c\xf7\x36\x6a\x77\xfb\x3d\x0a\x09\xd2\x45\ +\x65\x0b\x1f\x05\xfa\x45\x6c\x25\xe7\x51\x4f\xbf\xc0\xa0\x15\x5e\ +\xb9\x90\x66\xe9\x24\xfb\x30\xbe\xcf\x7c\x8c\x60\xa1\x49\x4a\x54\ +\xa6\xdb\xc3\x81\x66\x60\xae\x1c\x94\xdd\x5c\x61\xe7\x3a\x43\x16\ +\xd8\x57\xfb\x54\x4e\x27\x4f\x57\x4e\xc1\x4a\xdb\x65\x1a\x65\x5a\ +\x38\xfd\x3d\xd9\x10\xb3\x07\x87\xae\x8f\xaf\x8e\x89\xfd\x7a\xeb\ +\xf5\x71\xa3\x71\x8c\x69\x4d\xcd\x98\x8f\x42\x1a\x27\x79\x59\xad\ +\xef\x9f\xcc\xf3\x5b\x29\xc2\x5f\xc0\x59\x69\x8b\x81\xc4\x3c\x9e\ +\x5c\x2b\xfc\x84\xef\x40\x69\x11\xda\x1e\x95\xc1\x24\x5b\x62\xb1\ +\xcc\x7c\xe6\x37\x23\xa9\xe9\x97\x7d\x51\xdd\x8d\x34\x8b\x7c\xd5\ +\x72\x5f\xf5\x05\x55\xe7\x0a\x8e\xac\x34\x61\xe8\x0b\x21\xd4\x10\ +\x80\xfd\xcc\xef\x59\x1f\x85\xcb\x54\x18\x02\xe4\xfb\x5d\x8c\x48\ +\xe6\x23\x4a\xc5\x88\x7c\x1a\xa8\x7e\x52\x3f\x0f\x19\x8b\xac\x2a\ +\x87\x49\x4e\x81\x15\x62\x33\x4b\xbb\x79\x28\x21\xb4\x8d\xa1\xe5\ +\xb2\x73\x8a\x09\x34\xa9\xdc\x09\x2a\xcb\xe6\x6b\x76\x52\x77\x83\ +\x96\x3b\x2c\x5c\x4c\xa2\xb4\x76\x47\x34\xb2\xab\x9d\x39\xc8\x4c\ +\x6a\x77\x82\x4c\x92\x55\x50\x8c\x4c\x5a\xbb\x13\x64\xa6\x92\xcd\ +\x8a\x31\xca\x35\x29\x8f\xd6\x74\x81\xf9\x82\xb9\x64\xca\x28\x52\ +\x65\x54\x2e\xd8\xde\x88\xd9\x34\x58\x3b\x8a\xc9\xb3\xed\x55\x01\ +\x02\x00\xbb\xe0\xfc\x39\x6e\xa4\x47\x7e\xf2\x91\x6d\xc5\x7b\x11\ +\x0d\x5a\x5e\x80\x67\xfe\xfc\x13\x3c\x80\x8d\x2b\x18\x5b\x6a\x5a\ +\x80\x0b\xc0\xf8\x5d\x16\x56\xee\xf4\xad\xf9\x52\xb9\x6d\x62\x41\ +\x06\x42\xb7\xc0\x0c\xbe\x89\xf0\xaa\xb4\x14\x26\x16\x5b\x8a\xe0\ +\x85\x4d\xce\x22\xe1\x6f\xa2\xc7\x31\xba\x9a\x66\x78\x53\xdb\x1e\ +\xcd\x51\xeb\xe9\xe5\xe4\x73\xea\xf8\x3d\xf5\xc7\xe7\x99\x2f\xaa\ +\xd7\xf0\xed\x59\x40\x3e\xc3\x4b\xe6\x8c\x63\x9c\x87\xf6\xb8\xfe\ +\x34\x07\xae\x51\x04\xce\xfe\x54\x6e\x6a\xa6\x48\xbb\x53\x4a\x4f\ +\x4e\x79\x6e\x97\xc6\x57\x8d\xfb\x10\xe5\xbe\x34\xbe\xac\x5f\xe5\ +\xc0\x5d\xac\x46\xe3\xec\x23\xd4\x37\x6b\x03\xde\x3a\xfa\x3f\xd0\ +\x8d\x77\x9a\ +\x00\x00\x12\x15\ +\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\ +\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\x39\x36\x33\ +\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\x36\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x6d\x6f\x76\ +\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\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\x36\ +\x35\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\x33\x35\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\x73\x74\x79\ +\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x32\x31\x35\x37\x63\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\x33\x33\x35\ +\x36\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\x36\x64\ +\x61\x61\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\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x33\x35\x38\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\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x33\x33\x35\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\x33\x37\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\ +\x22\x31\x36\x33\x34\x2e\x33\x30\x38\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x79\x31\x3d\x22\x31\x32\x31\x38\x2e\x30\x31\x35\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x32\x30\x33\ +\x32\x2e\x35\x33\x35\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\ +\x32\x3d\x22\x31\x32\x31\x38\x2e\x30\x31\x35\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\x39\x37\x31\ +\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\x39\x34\x34\x35\x34\x33\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x32\ +\x35\x2e\x39\x32\x37\x30\x36\x33\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x2e\x38\x32\ +\x34\x37\x36\x37\x35\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\x36\x34\ +\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\ +\x37\x32\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\x30\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\x32\x35\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\x36\x38\ +\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\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\x34\ +\x33\x35\x31\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\x6d\x6f\x76\x65\ +\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\x36\x2e\x35\x35\x39\x31\x35\x36\x34\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\x36\x2e\x35\x35\x39\ +\x31\x35\x36\x34\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\x37\x38\x31\x33\x33\x2c\x30\x2c\x30\x2c\x30\x2e\x31\ +\x33\x37\x38\x31\x33\x33\x2c\x2d\x32\x32\x31\x2e\x33\x39\x36\x39\ +\x39\x2c\x2d\x31\x33\x38\x2e\x33\x35\x32\x37\x35\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\x64\x3d\x22\x70\x61\x74\x68\x33\x33\x37\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\ +\x20\x31\x38\x35\x37\x2e\x38\x32\x31\x34\x2c\x31\x30\x35\x32\x2e\ +\x33\x33\x35\x20\x4c\x20\x31\x37\x37\x35\x2e\x32\x32\x37\x36\x2c\ +\x31\x31\x32\x37\x2e\x37\x37\x32\x34\x20\x4c\x20\x31\x38\x32\x37\ +\x2e\x38\x35\x32\x36\x2c\x31\x31\x32\x37\x2e\x37\x37\x32\x34\x20\ +\x4c\x20\x31\x38\x32\x37\x2e\x38\x35\x32\x36\x2c\x31\x32\x31\x34\ +\x2e\x30\x32\x32\x34\x20\x4c\x20\x31\x38\x31\x30\x2e\x31\x33\x33\ +\x38\x2c\x31\x32\x31\x34\x2e\x30\x32\x32\x34\x20\x4c\x20\x31\x38\ +\x31\x30\x2e\x31\x33\x33\x38\x2c\x31\x32\x31\x34\x2e\x34\x36\x20\ +\x4c\x20\x31\x37\x33\x34\x2e\x30\x34\x30\x31\x2c\x31\x32\x31\x34\ +\x2e\x34\x36\x20\x4c\x20\x31\x37\x33\x34\x2e\x30\x34\x30\x31\x2c\ +\x31\x31\x36\x32\x2e\x33\x39\x37\x34\x20\x4c\x20\x31\x36\x35\x38\ +\x2e\x36\x30\x32\x36\x2c\x31\x32\x34\x35\x2e\x30\x32\x32\x34\x20\ +\x4c\x20\x31\x37\x33\x34\x2e\x30\x34\x30\x31\x2c\x31\x33\x32\x37\ +\x2e\x36\x31\x36\x32\x20\x4c\x20\x31\x37\x33\x34\x2e\x30\x34\x30\ +\x31\x2c\x31\x32\x37\x34\x2e\x39\x39\x31\x32\x20\x4c\x20\x31\x38\ +\x32\x37\x2e\x38\x35\x32\x36\x2c\x31\x32\x37\x34\x2e\x39\x39\x31\ +\x32\x20\x4c\x20\x31\x38\x32\x37\x2e\x38\x35\x32\x36\x2c\x31\x32\ +\x38\x38\x2e\x31\x34\x37\x34\x20\x4c\x20\x31\x38\x32\x38\x2e\x32\ +\x39\x30\x31\x2c\x31\x32\x38\x38\x2e\x31\x34\x37\x34\x20\x4c\x20\ +\x31\x38\x32\x38\x2e\x32\x39\x30\x31\x2c\x31\x33\x36\x34\x2e\x32\ +\x34\x31\x32\x20\x4c\x20\x31\x37\x37\x36\x2e\x32\x32\x37\x36\x2c\ +\x31\x33\x36\x34\x2e\x32\x34\x31\x32\x20\x4c\x20\x31\x38\x35\x38\ +\x2e\x38\x35\x32\x36\x2c\x31\x34\x33\x39\x2e\x36\x37\x38\x37\x20\ +\x4c\x20\x31\x39\x34\x31\x2e\x34\x34\x36\x34\x2c\x31\x33\x36\x34\ +\x2e\x32\x34\x31\x32\x20\x4c\x20\x31\x38\x38\x38\x2e\x38\x32\x31\ +\x34\x2c\x31\x33\x36\x34\x2e\x32\x34\x31\x32\x20\x4c\x20\x31\x38\ +\x38\x38\x2e\x38\x32\x31\x34\x2c\x31\x32\x37\x34\x2e\x39\x39\x31\ +\x32\x20\x4c\x20\x31\x38\x39\x34\x2e\x34\x34\x36\x34\x2c\x31\x32\ +\x37\x34\x2e\x39\x39\x31\x32\x20\x4c\x20\x31\x38\x39\x34\x2e\x34\ +\x34\x36\x34\x2c\x31\x32\x37\x34\x2e\x35\x35\x33\x37\x20\x4c\x20\ +\x31\x39\x37\x30\x2e\x35\x30\x38\x38\x2c\x31\x32\x37\x34\x2e\x35\ +\x35\x33\x37\x20\x4c\x20\x31\x39\x37\x30\x2e\x35\x30\x38\x38\x2c\ +\x31\x33\x32\x36\x2e\x36\x31\x36\x32\x20\x4c\x20\x32\x30\x34\x35\ +\x2e\x39\x34\x36\x34\x2c\x31\x32\x34\x33\x2e\x39\x39\x31\x32\x20\ +\x4c\x20\x31\x39\x37\x30\x2e\x35\x30\x38\x38\x2c\x31\x31\x36\x31\ +\x2e\x33\x39\x37\x34\x20\x4c\x20\x31\x39\x37\x30\x2e\x35\x30\x38\ +\x38\x2c\x31\x32\x31\x34\x2e\x30\x32\x32\x34\x20\x4c\x20\x31\x38\ +\x38\x38\x2e\x38\x32\x31\x34\x2c\x31\x32\x31\x34\x2e\x30\x32\x32\ +\x34\x20\x4c\x20\x31\x38\x38\x38\x2e\x38\x32\x31\x34\x2c\x31\x32\ +\x30\x33\x2e\x38\x33\x35\x20\x4c\x20\x31\x38\x38\x38\x2e\x33\x38\ +\x33\x38\x2c\x31\x32\x30\x33\x2e\x38\x33\x35\x20\x4c\x20\x31\x38\ +\x38\x38\x2e\x33\x38\x33\x38\x2c\x31\x31\x32\x37\x2e\x37\x37\x32\ +\x34\x20\x4c\x20\x31\x39\x34\x30\x2e\x34\x34\x36\x34\x2c\x31\x31\ +\x32\x37\x2e\x37\x37\x32\x34\x20\x4c\x20\x31\x38\x35\x37\x2e\x38\ +\x32\x31\x34\x2c\x31\x30\x35\x32\x2e\x33\x33\x35\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\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\ +\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x35\x36\x37\x39\ +\x36\x31\x31\x35\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\x30\x2e\x38\x38\x33\x38\x31\x39\x35\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\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\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\x64\x3d\x22\x70\x61\ +\x74\x68\x32\x33\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x4d\x20\x31\x38\x33\x38\x2e\x39\x36\x38\x38\x2c\ +\x31\x30\x32\x34\x2e\x33\x34\x33\x38\x20\x4c\x20\x31\x37\x35\x36\ +\x2e\x33\x37\x35\x2c\x31\x30\x39\x39\x2e\x37\x38\x31\x32\x20\x4c\ +\x20\x31\x38\x30\x39\x2c\x31\x30\x39\x39\x2e\x37\x38\x31\x32\x20\ +\x4c\x20\x31\x38\x30\x39\x2c\x31\x31\x38\x36\x2e\x30\x33\x31\x32\ +\x20\x4c\x20\x31\x37\x39\x31\x2e\x32\x38\x31\x32\x2c\x31\x31\x38\ +\x36\x2e\x30\x33\x31\x32\x20\x4c\x20\x31\x37\x39\x31\x2e\x32\x38\ +\x31\x32\x2c\x31\x31\x38\x36\x2e\x34\x36\x38\x38\x20\x4c\x20\x31\ +\x37\x31\x35\x2e\x31\x38\x37\x35\x2c\x31\x31\x38\x36\x2e\x34\x36\ +\x38\x38\x20\x4c\x20\x31\x37\x31\x35\x2e\x31\x38\x37\x35\x2c\x31\ +\x31\x33\x34\x2e\x34\x30\x36\x32\x20\x4c\x20\x31\x36\x33\x39\x2e\ +\x37\x35\x2c\x31\x32\x31\x37\x2e\x30\x33\x31\x32\x20\x4c\x20\x31\ +\x37\x31\x35\x2e\x31\x38\x37\x35\x2c\x31\x32\x39\x39\x2e\x36\x32\ +\x35\x20\x4c\x20\x31\x37\x31\x35\x2e\x31\x38\x37\x35\x2c\x31\x32\ +\x34\x37\x20\x4c\x20\x31\x38\x30\x39\x2c\x31\x32\x34\x37\x20\x4c\ +\x20\x31\x38\x30\x39\x2c\x31\x32\x36\x30\x2e\x31\x35\x36\x32\x20\ +\x4c\x20\x31\x38\x30\x39\x2e\x34\x33\x37\x35\x2c\x31\x32\x36\x30\ +\x2e\x31\x35\x36\x32\x20\x4c\x20\x31\x38\x30\x39\x2e\x34\x33\x37\ +\x35\x2c\x31\x33\x33\x36\x2e\x32\x35\x20\x4c\x20\x31\x37\x35\x37\ +\x2e\x33\x37\x35\x2c\x31\x33\x33\x36\x2e\x32\x35\x20\x4c\x20\x31\ +\x38\x34\x30\x2c\x31\x34\x31\x31\x2e\x36\x38\x37\x35\x20\x4c\x20\ +\x31\x39\x32\x32\x2e\x35\x39\x33\x38\x2c\x31\x33\x33\x36\x2e\x32\ +\x35\x20\x4c\x20\x31\x38\x36\x39\x2e\x39\x36\x38\x38\x2c\x31\x33\ +\x33\x36\x2e\x32\x35\x20\x4c\x20\x31\x38\x36\x39\x2e\x39\x36\x38\ +\x38\x2c\x31\x32\x34\x37\x20\x4c\x20\x31\x38\x37\x35\x2e\x35\x39\ +\x33\x38\x2c\x31\x32\x34\x37\x20\x4c\x20\x31\x38\x37\x35\x2e\x35\ +\x39\x33\x38\x2c\x31\x32\x34\x36\x2e\x35\x36\x32\x35\x20\x4c\x20\ +\x31\x39\x35\x31\x2e\x36\x35\x36\x32\x2c\x31\x32\x34\x36\x2e\x35\ +\x36\x32\x35\x20\x4c\x20\x31\x39\x35\x31\x2e\x36\x35\x36\x32\x2c\ +\x31\x32\x39\x38\x2e\x36\x32\x35\x20\x4c\x20\x32\x30\x32\x37\x2e\ +\x30\x39\x33\x38\x2c\x31\x32\x31\x36\x20\x4c\x20\x31\x39\x35\x31\ +\x2e\x36\x35\x36\x32\x2c\x31\x31\x33\x33\x2e\x34\x30\x36\x32\x20\ +\x4c\x20\x31\x39\x35\x31\x2e\x36\x35\x36\x32\x2c\x31\x31\x38\x36\ +\x2e\x30\x33\x31\x32\x20\x4c\x20\x31\x38\x36\x39\x2e\x39\x36\x38\ +\x38\x2c\x31\x31\x38\x36\x2e\x30\x33\x31\x32\x20\x4c\x20\x31\x38\ +\x36\x39\x2e\x39\x36\x38\x38\x2c\x31\x31\x37\x35\x2e\x38\x34\x33\ +\x38\x20\x4c\x20\x31\x38\x36\x39\x2e\x35\x33\x31\x32\x2c\x31\x31\ +\x37\x35\x2e\x38\x34\x33\x38\x20\x4c\x20\x31\x38\x36\x39\x2e\x35\ +\x33\x31\x32\x2c\x31\x30\x39\x39\x2e\x37\x38\x31\x32\x20\x4c\x20\ +\x31\x39\x32\x31\x2e\x35\x39\x33\x38\x2c\x31\x30\x39\x39\x2e\x37\ +\x38\x31\x32\x20\x4c\x20\x31\x38\x33\x38\x2e\x39\x36\x38\x38\x2c\ +\x31\x30\x32\x34\x2e\x33\x34\x33\x38\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\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x33\x37\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\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x30\x2e\x38\x38\x33\x38\x31\ +\x39\x35\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\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\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\x08\x8b\ +\x00\ +\x00\x1c\x9e\x78\x9c\xed\x58\xdf\x8f\x9b\x48\x12\x7e\xcf\x5f\xe1\ +\x73\x5e\x12\xdd\xd0\xf4\x2f\xa0\xf1\x8c\xb3\x0f\x89\x76\xb5\x52\ +\x4e\x27\xdd\x26\xba\xc7\x15\x86\xb6\x87\x1b\x0c\x16\xe0\xb1\x9d\ +\xbf\xfe\xbe\x6a\x30\xc6\x63\x4f\x76\xb2\x1b\xe9\x74\x7b\x47\x94\ +\x31\x7c\x5d\x55\xdd\x5d\x55\x5d\xf5\xc1\xdd\x0f\xfb\x75\x31\x79\ +\xb4\x75\x93\x57\xe5\x7c\x2a\x18\x9f\x4e\x6c\x99\x56\x59\x5e\xae\ +\xe6\xd3\xcf\x9f\x7e\xf4\xcc\x74\xd2\xb4\x49\x99\x25\x45\x55\xda\ +\xf9\xb4\xac\xa6\x3f\xbc\x7b\x75\xf7\x17\xcf\x9b\xbc\xaf\x6d\xd2\ +\xda\x6c\xb2\xcb\xdb\xfb\xc9\xcf\xe5\x43\x93\x26\x1b\x3b\x79\x73\ +\xdf\xb6\x9b\x99\xef\xef\x76\x3b\x96\xf7\x20\xab\xea\x95\xff\x76\ +\xe2\x79\xd0\x6c\x1e\x57\xaf\x26\x93\x09\xa6\x2d\x9b\x59\x96\xce\ +\xa7\xbd\xfc\x66\x5b\x17\x4e\x2e\x4b\x7d\x5b\xd8\xb5\x2d\xdb\xc6\ +\x17\x4c\xf8\xd3\x93\x78\x7a\x12\x4f\x69\xf2\xfc\xd1\xa6\xd5\x7a\ +\x5d\x95\x8d\xd3\x2c\x9b\xd7\x23\xe1\x3a\x5b\x0e\xd2\xb4\x98\x9d\ +\x72\x42\x22\x8e\x63\x9f\x4b\x5f\x4a\x0f\x12\x5e\x73\x28\xdb\x64\ +\xef\x9d\xab\x62\x8d\xd7\x54\x25\xe7\xdc\xc7\xd8\x49\xf2\x65\x52\ +\xb3\x7d\x01\x4f\x3c\xbb\x18\x37\x3a\x9e\x1d\xde\xdf\xe0\xff\xa0\ +\x70\x04\x58\x53\x6d\xeb\xd4\x2e\xa1\x69\x59\x69\x5b\xff\xc3\xa7\ +\x0f\xc3\xa0\xc7\x59\xd6\x66\x23\x33\x47\xe7\x9f\xcd\x7b\x16\x91\ +\x32\x59\xdb\x66\x93\xa4\xb6\xf1\x8f\xb8\xd3\xdf\xe5\x59\x7b\x3f\ +\x9f\x86\x7a\xb3\x77\xcf\xf7\x36\x5f\xdd\xb7\x23\x20\xcf\xe6\x53\ +\xec\x30\x30\x52\xb8\xe7\xe3\x1a\x66\x43\x22\x71\xa6\x64\x27\xda\ +\x1b\x1e\x0f\xe9\xf0\x5c\x2b\xab\x52\x5a\xca\x7c\xba\xa9\xed\xd2\ +\xd6\xc8\x3f\xdb\x78\x1f\xea\x64\xd9\xb2\xa3\x1f\x07\x33\xd5\xb6\ +\xdd\x6c\xdb\x5f\xed\xbe\xb5\x65\x67\x0f\x3b\x19\x6d\xcb\x0d\x93\ +\xda\x80\x4d\xdf\xc1\xc0\x5d\x66\x97\x0d\x19\xea\x16\x4f\x4f\x58\ +\xbd\x72\x63\x18\x45\x04\x6c\x52\xff\x54\x27\x59\x8e\xbc\xeb\xe4\ +\x46\x93\xa6\x55\x51\xd8\x14\x1e\x48\x8a\x5d\x72\x68\xa6\x83\x00\ +\x4c\x9d\xab\x86\x4a\xc7\xbd\x51\x98\x6d\xda\x6a\x73\x94\xc5\x7e\ +\xdb\x43\x81\x4d\x12\xe8\xc1\x62\x55\xcf\x5e\x73\x77\xdd\x3a\xa8\ +\x42\x24\xf2\xf6\x30\x13\xb7\xd3\x93\x4e\xb5\x5c\x36\x16\x13\xf3\ +\x11\xe6\xbc\x0f\x8d\x50\x05\x62\x3a\xf1\xff\xd8\x6c\xfc\xda\x6c\ +\xe2\xfa\x6c\x6a\x98\xed\xce\x3f\xdf\xf6\xd7\xdd\x78\xe1\x25\xa5\ +\xa2\xe8\x1b\xbc\xb4\x5c\x26\xc9\xef\xf6\x12\xe6\x8a\xbf\xc9\x4b\ +\xcb\x64\xb9\x94\x8b\x17\xcc\x76\xcd\x4b\x4a\x19\xf1\x3b\xbd\xf4\ +\x5b\xc9\xe6\xca\xc4\xec\x1e\x47\x64\x3e\x7d\x7d\xc5\x9f\x5f\x73\ +\xb7\x51\x27\x33\x62\x3e\x8d\x39\x0a\xab\x89\x82\x01\x3c\x00\x14\ +\x22\xe6\x6c\x0c\xee\x25\x40\x19\x46\x2c\xe6\xa1\x3c\x89\xca\x2b\ +\xa2\xab\x7e\xa6\xcf\x65\xde\xa2\x28\x6e\x1b\x5b\xff\x42\x85\xe5\ +\xef\xe5\xe7\xc6\x9e\xfc\x31\xec\x71\x83\x62\xb0\xc1\x26\x51\xc0\ +\x8f\x26\x86\x6a\xd0\x1e\xa8\x66\x9d\x8b\xaa\x6c\x7a\xe1\xa7\xc7\ +\xcd\xaf\x7b\x84\x7c\x32\x9b\x28\x89\x3f\xe2\xaa\xc4\xa1\x93\x10\ +\xc8\x7b\xfc\xf0\xab\x32\x5f\xa8\xb2\x7d\xc5\x4c\xbf\x02\xaf\xaa\ +\xf3\x55\x8e\x82\xe3\xe4\xa4\x60\xca\x5d\xe7\x3a\xf0\xfd\x68\x6f\ +\x28\x31\xa7\xdc\xbb\x23\x1f\x25\xc5\xf7\x8c\xbb\xab\x36\xe3\xb9\ +\xcf\xa7\xc0\x91\x3d\x85\x28\xdd\x53\xdc\xb8\x62\xa1\x8a\x4f\x4a\ +\x29\x1c\x24\xb4\xd4\x4c\xeb\xf0\x24\xbb\xbc\x2a\xbb\xbc\x2a\x5b\ +\x03\x8c\x81\xf1\x50\xe8\x8b\x7c\xf8\x54\x27\x65\x83\x7e\xb5\x9e\ +\x4f\xd7\x49\x5b\xe7\xfb\x37\x82\x69\xc5\x23\x1d\xc7\x37\x1e\x3c\ +\x18\xf2\x40\x04\xa1\xf5\xa2\x1b\xc1\x24\x97\x91\x50\xd6\x33\x37\ +\x9c\x21\xed\xb4\xe1\xe2\xc6\xd3\x51\xc0\x54\x2c\xcd\x8d\x90\x5a\ +\x33\x69\x64\xf8\xf6\x9b\x92\xee\xce\xa7\x52\xef\xee\x86\x04\xa3\ +\x5e\x93\x3d\xe6\x76\x77\xea\x07\x8b\xa4\xb1\xbd\xdd\x4d\xb2\xb2\ +\xae\x12\xc0\xdb\x4b\x77\xf5\x03\x8b\xaa\xce\x6c\x7d\x1c\x0a\xdd\ +\x75\x36\xd4\x17\x8b\x8e\x45\xbd\x7a\x92\x43\xb0\x3a\x8c\xf3\xeb\ +\xe3\xcd\x7d\x92\x55\xbb\xf9\x54\x3e\x1d\xfc\x52\x55\x70\x60\xc0\ +\x82\xa7\x03\x2e\xa6\x8a\x45\x11\x8f\x82\xf8\x62\x10\x33\x29\xc5\ +\x94\x09\xa2\x8b\xa1\x6d\x8d\x2e\xdb\x7a\x45\x72\xb0\xd8\xcc\x4a\ +\x21\x10\xbd\x4c\x73\x5f\xed\x56\x35\xf9\xa4\xad\xb7\xf6\xa9\x22\ +\x3a\xf5\x96\x98\x99\xb7\xed\x7c\xde\xf3\x81\x91\x04\xe9\x7a\x8b\ +\x45\xb5\xbf\x6e\x60\x97\x97\xd8\xa3\xd7\x33\x0c\x21\x23\xf3\x8c\ +\xc4\x91\x73\x44\x52\x3d\x23\xb1\x3f\xd5\xfb\xa7\x43\x14\x83\xe3\ +\xc1\xbb\x5b\xdb\x36\xc9\x92\x36\x39\x45\xfb\x88\xe0\x78\x86\x47\ +\x06\x00\x2e\x38\xfb\xc7\x87\x1f\x87\x36\x91\xa6\xb3\x7f\x56\xf5\ +\xc3\xa9\xc2\x93\x40\xb2\x00\xbf\x98\x4f\x87\xd6\x45\xbc\x22\x9d\ +\x51\x7e\x27\xed\xbb\x7c\x8d\x18\x12\xf1\xfb\x2b\xf8\x17\xf2\x6e\ +\x18\x38\x13\xa6\xea\x76\x32\xda\x99\xad\x6d\x47\xec\xae\x72\xe1\ +\x2c\x5d\xe7\xa4\xe4\xff\xd2\xe6\x45\xf1\x33\x4d\x32\x6e\x67\x7e\ +\xbf\xd0\x63\xc7\x19\xed\xe3\xce\x3f\x6e\xd4\x3d\xad\x4e\x0e\x70\ +\x71\x17\x4f\x9d\x57\x24\x0b\x5b\xcc\xa7\x1f\x69\x70\x72\x31\xba\ +\xaa\xab\xed\x66\x5d\x65\xb6\x57\x3f\x3a\x6e\x35\xae\x3f\xe3\x4c\ +\x1a\xe9\xda\xfd\xa6\xaa\x5b\x6f\x99\x17\xb6\x23\x7a\xfe\x7d\xb5\ +\xb6\xfe\x01\x15\xf5\xc1\xff\xd0\xe7\x54\xe3\x7f\x4c\x16\xbe\xa3\ +\x7d\x7e\x9e\x82\xd3\xfb\x99\xa3\x80\x9b\x72\xf5\xac\xc5\x7d\xb6\ +\x01\x4d\x56\x4c\xea\xc8\xa0\x90\x3c\x2b\x77\x78\x46\xae\xbd\xa8\ +\x4f\xa8\x3d\x2a\x8c\x4c\xa8\x6e\x38\xfd\x1b\x9e\x3c\xf4\x3c\x26\ +\x82\x40\x50\xe1\x52\x9a\x99\x30\x0e\xe5\xdb\x13\x89\xd9\x24\xed\ +\xfd\x88\x0e\x5c\x9d\x3f\x64\x32\x46\x61\x53\x67\xc4\xe1\xea\x8e\ +\x5e\x22\xf9\xc7\xbd\x39\x6a\xba\x25\x02\x4b\x59\x86\x33\x9d\xd2\ +\xf5\x84\xda\xd0\xee\xc0\x22\x82\x11\x0c\xf4\x6f\x13\x54\x65\xc9\ +\x64\x24\x25\xea\xb3\x44\x81\x8a\x23\x39\xf9\x38\x71\xa4\x81\xa3\ +\x21\x00\x0d\x24\xda\x85\x8e\x1d\x1a\x2b\x26\x42\x13\xdc\x08\x2d\ +\x34\x6d\x30\x22\x54\xa8\x18\xf7\x37\x42\x45\x86\xa9\x28\x50\x0e\ +\x43\xeb\x91\x4e\x52\x61\x34\xe4\xdc\x8c\xd7\xdc\x51\x36\x6c\xbf\ +\x98\xf5\x15\xfa\x96\x1e\x46\x64\xcd\x3d\xd6\xdb\x02\xbe\x7a\xb4\ +\xd8\x5a\x06\x36\x57\x57\x0f\x76\xf6\xba\xeb\xd9\xfd\x63\x57\x86\ +\x66\x02\xf5\x98\x83\x21\x20\x31\x3a\x86\x0c\xba\x73\x94\xa0\x7e\ +\x0b\xa7\xcf\x16\xdb\xb6\x1d\x63\xff\xaa\xf2\x72\x86\x13\x51\x1e\ +\x4d\x7b\x38\xa5\xb6\x2e\x72\xfc\xcc\xf4\x11\xcb\x12\xd4\xf4\xba\ +\x4e\x0e\xf0\x6f\x69\x8f\xe8\xb0\xce\xf1\x39\xfe\xef\xcc\x1f\xc7\ +\x39\x40\x5a\xa4\x8a\xf9\x45\x6e\x70\x65\x18\x42\xc8\x11\x4c\x62\ +\x90\x08\x2c\x7e\x1c\xef\xbc\x11\x48\x0c\x16\x23\xdc\x5d\x06\x40\ +\x4e\x09\x49\x39\x10\x31\xa3\x95\x99\xbc\x27\x34\x04\x6a\x04\xa1\ +\x20\x22\x71\x24\x08\x0b\x40\x1f\x48\x5f\x85\x38\x8d\x30\x72\x8e\ +\x11\x43\x10\xb2\xd3\x76\xa8\x06\xaa\x03\x66\x0c\x57\xc0\x02\xc1\ +\x02\x11\x85\x94\x55\x9c\xc5\xa1\x31\xc0\x22\xb0\x10\xd8\x19\x61\ +\xa4\x1d\x85\x2c\x44\xe7\x39\x93\x34\x82\x45\xc8\x64\xc2\x24\xe3\ +\x11\xa7\xf5\x98\x70\xd0\xd6\x8c\xe3\xd6\xed\xc7\x18\xbc\xe2\x1a\ +\xd3\x4b\xaa\x7e\x45\x06\x7b\x43\x6a\x01\x95\x31\xd3\xc6\xc8\x0e\ +\xeb\xd7\x2e\x43\x86\xf7\x51\x75\x8e\xc1\x66\xdc\x7b\xe3\x84\xf2\ +\x00\xde\x90\x58\x91\x84\x63\x35\xd5\x26\x9c\x2c\xce\xe0\x4b\x9c\ +\x41\xe5\x3c\x30\x20\xef\x09\xc3\x1a\xa5\x12\x63\xa9\x98\xce\x6c\ +\x48\x08\xde\x03\x84\x26\x5b\xb4\x52\xcc\xd5\x61\x91\xe9\x76\x82\ +\xb0\xe2\x4c\x3b\xd4\x68\x22\xfc\xce\x20\x40\x38\x88\xa6\x35\x92\ +\x99\x40\x68\xc2\x8c\x0b\x27\x61\x34\x49\x1c\x9d\x61\x38\xda\xa1\ +\xec\x95\x07\x10\xd1\x12\x9c\x3c\x2b\x35\xb0\x90\xbc\x28\x03\x9a\ +\x9b\xec\x85\xd2\xe5\x0c\xd1\xbe\x88\x49\x78\x94\x96\xf3\x34\xa1\ +\xbe\x5c\x56\x85\xf3\x1a\x30\x43\x1f\x7d\x73\xf1\xae\x64\xd4\xdb\ +\x97\x17\x8c\x68\x41\x55\xe1\xbb\x16\x8c\x75\x52\x3f\xd8\xba\x2b\ +\x09\xdd\xbd\xd7\xb4\x49\xdd\x9e\x21\xeb\x3c\x3b\x7b\xb6\x65\x76\ +\x56\x44\x5e\x5e\x6e\x08\xed\x5e\x59\x67\xfc\xa2\x04\xdd\x3e\xe6\ +\x4d\xbe\xc8\x0b\x7a\x70\xb7\x85\xbd\xcd\xf2\x66\x83\x16\x3f\xcb\ +\x4b\x5a\xf8\x6d\xf5\x68\xeb\x65\x51\xed\x86\x71\x54\x0d\xfc\x78\ +\x8b\x24\x7d\x58\xb9\x1d\xcd\x92\x14\x45\x63\x5b\x24\xad\xfd\x73\ +\x94\xb4\xae\xdd\x45\xea\xb2\xdd\xa1\x28\x69\x74\x37\xca\x73\xc3\ +\x22\x15\xb9\xc6\xc6\x71\x24\x05\x17\x38\x26\x5c\x73\x70\x0c\xae\ +\x9f\x69\x57\x2e\x2c\xdf\x9a\x6b\x2f\xca\x2c\x97\x0e\xff\xf3\xad\ +\xa8\x8f\xdb\x25\x4d\x11\x06\xed\x46\xc4\xd4\x4c\x14\x4a\x1e\x96\ +\x43\xdd\x28\x40\x59\x52\x9a\x9a\x04\x47\x71\x0f\x83\x30\xfc\x7f\ +\xdc\xfe\x83\x71\x33\xd1\xe5\x79\x8b\x62\x30\x6d\x25\xbb\x06\x2b\ +\x62\xed\x28\xa3\x14\x58\x1c\x8e\x22\x50\x50\xca\x08\xfd\xa4\xa3\ +\x97\x21\xe3\x32\x88\x88\x5e\xa2\x41\xa0\x6b\x3b\xf4\xd2\xc2\x95\ +\xb6\xd1\x91\xc9\xfe\xfb\xe8\x8b\x7b\xc3\xf0\x3d\x75\x1c\xf7\xcd\ +\xfe\xdb\x03\xff\xe7\x0c\x67\x7c\x19\xce\xd8\x30\xae\x43\x8a\x10\ +\x6e\x40\xcf\x3a\x4a\x20\x59\xa0\x63\x9c\x42\x0d\xd2\x16\x04\x1c\ +\xfd\x5f\x20\xae\x06\x01\x23\x8c\x0e\x29\xd1\x1d\xf0\x14\xc8\x39\ +\x8c\x5e\x3a\x8c\x10\xa4\xcd\x23\x22\x5b\x44\x51\x34\x98\x02\x6d\ +\x11\x98\xa4\xdd\x06\xa0\x6a\x3a\x40\xcc\x25\xa8\x63\x8c\x37\x0e\ +\x41\x34\xf0\x4c\xdb\x80\x11\x05\x22\x20\x4a\xa8\xc1\x6a\xa2\x28\ +\x36\xae\x2a\x70\xc3\x75\x44\xd9\x15\xb3\xd8\x80\x1e\xc5\x28\x0f\ +\x26\x34\x44\x51\x34\xe7\xb8\xd5\x8e\x94\x71\x22\x99\xda\xcd\xcd\ +\xc1\x84\x74\x18\xd3\xab\x8b\x44\x7d\x09\x5d\x6e\x82\xf0\x81\x21\ +\x12\xf1\x54\xa0\x51\x5a\x9e\x6b\x0b\x8c\x8b\xc0\xbd\x0e\x11\x91\ +\xd3\x81\x24\x5f\x68\x16\xea\xa8\x7f\x43\x32\x32\xbe\xe6\xb3\xe7\ +\xf2\xd7\x91\x9d\xcb\x2f\x80\x2f\x27\x3b\xe3\x0a\xf3\x5d\xb2\xf9\ +\x37\x5e\x34\x1b\x5c\xe9\xe8\x6b\xf9\xaa\xfb\x6a\x81\x9f\x3b\xfa\ +\x8e\xf2\xee\xd5\xbf\x01\xd6\x56\x1c\x39\ +\x00\x00\x09\x02\ +\x00\ +\x00\x35\x6d\x78\x9c\xed\x5a\x5b\x6f\xe3\xba\x11\x7e\xcf\xaf\x50\ +\xbd\x2f\x1b\xd4\x92\x49\x8a\x17\x49\x89\x73\x1e\xba\x38\xc5\x01\ +\x5a\x14\xe8\xd9\x45\x1f\x0f\x68\x89\x72\xd4\xc8\x92\x21\xc9\xb1\ +\xb3\xbf\xbe\x43\x59\x57\x5b\xbe\x25\xde\xa0\x67\x77\x2d\x24\xb6\ +\xc8\xe1\xed\x9b\x6f\x86\x33\x12\xef\x7f\xd9\x2c\x62\xe3\x59\x65\ +\x79\x94\x26\xd3\x11\xb6\xd0\xc8\x50\x89\x9f\x06\x51\x32\x9f\x8e\ +\xbe\x7c\xfe\xd5\x74\x46\x46\x5e\xc8\x24\x90\x71\x9a\xa8\xe9\x28\ +\x49\x47\xbf\x3c\xdc\xdc\xff\xc5\x34\x8d\xbf\x65\x4a\x16\x2a\x30\ +\xd6\x51\xf1\x68\xfc\x96\x3c\xe5\xbe\x5c\x2a\xe3\xe3\x63\x51\x2c\ +\xbd\xc9\x64\xbd\x5e\x5b\x51\x55\x68\xa5\xd9\x7c\x72\x6b\x98\xe6\ +\xc3\xcd\xcd\x7d\xfe\x3c\xbf\x31\x0c\x03\xc6\x4d\x72\x2f\xf0\xa7\ +\xa3\xaa\xc1\x72\x95\xc5\xa5\x60\xe0\x4f\x54\xac\x16\x2a\x29\xf2\ +\x09\xb6\xf0\x64\xd4\x8a\xfb\xad\xb8\xaf\x47\x8f\x9e\x95\x9f\x2e\ +\x16\x69\x92\x97\x2d\x93\xfc\x43\x47\x38\x0b\xc2\x46\x5a\xcf\x66\ +\x6d\x97\x42\xd8\x75\xdd\x09\x22\x13\x42\x4c\x90\x30\xf3\x97\xa4\ +\x90\x1b\xb3\xdf\x14\xe6\x38\xd4\x94\x20\x84\x26\x50\xd7\x4a\x9e\ +\x27\xe5\x6d\x62\x80\xe2\xe0\x64\xca\xda\xee\xe8\x00\xff\x12\xfe\ +\x9a\x06\x75\x81\x95\xa7\xab\xcc\x57\x21\xb4\x54\x56\xa2\x8a\xc9\ +\xa7\xcf\x9f\x9a\x4a\x13\x59\x41\x11\x74\xba\xa9\xd1\xef\x8d\xdb\ +\x53\x49\x22\x17\x2a\x5f\x4a\x5f\xe5\x93\xba\xbc\x6c\xbf\x8e\x82\ +\xe2\x71\x3a\xe2\x74\xb9\x29\xef\x1f\x55\x34\x7f\x2c\x3a\x05\x51\ +\x30\x1d\xc1\x0a\x6d\x8e\x49\x79\xdf\x21\x10\xde\x0a\x54\xdd\x79\ +\x4d\x0d\xb2\xa8\x30\x32\x42\x98\x63\x97\x12\xf5\xb4\xbd\x20\xf5\ +\xf5\x3c\xa6\xa3\x4f\x99\x0c\x8b\x3f\xfe\x29\xfd\x2c\xb5\x34\x7c\ +\x0f\x20\x76\x1f\xa8\x30\xd7\xe2\xdb\x31\xf5\x1d\x0c\x4a\xcb\x3a\ +\xa8\x6d\x86\x59\xc2\x30\x4b\xe5\x6b\x42\x6c\xa5\x3b\x03\x14\x2f\ +\x1a\x83\xbe\xa8\xbd\x05\xca\xe8\x4d\x75\xf9\xc7\x06\xe6\x69\x78\ +\x86\x4d\xe0\x1f\x1e\x94\x78\xd9\x4a\x60\xd0\x31\x7c\xa1\x41\x99\ +\xaf\x1a\xa9\x23\xdd\x54\x33\x30\xd3\x2c\x9a\x47\x00\x4d\x29\x47\ +\xb0\x65\x97\x9f\x7e\x1b\x58\x74\x67\x6d\x36\x27\x60\xa0\x93\x33\ +\x56\xbf\xdb\x90\x39\xce\xe9\x89\x20\x8b\xe9\x45\x55\x13\xd9\x9d\ +\x4a\x7f\x85\xb8\x94\x64\x6f\x02\xaa\x82\x7b\xb7\x9b\x53\x9a\x7b\ +\x15\x00\xdc\x25\xdf\x1f\x00\xe0\x38\x94\xcc\xfe\x9e\xc9\x20\x02\ +\x77\xd9\x5d\x7a\xbf\xc6\xc6\x94\x9a\xbc\xb2\x1a\x68\x97\x17\xe9\ +\xb2\x96\xae\xac\x19\x4a\x40\x8a\x9b\xee\xa8\xad\xc8\x8b\x97\x58\ +\x6d\xeb\x4c\x3f\x8d\xd3\xcc\xfb\x10\x96\x9f\xbb\xb2\x28\x05\xd7\ +\x11\x15\x2f\x1e\xee\x34\x49\xc3\x30\x57\xe0\x2a\x5a\x9a\x1e\x1b\ +\xce\x31\xc9\xe5\xc3\xa1\x81\xe1\x70\x8b\xc9\xa4\xbf\xf4\x4b\x91\ +\x12\x08\x9f\xc4\x49\x20\xfb\xfd\x50\x12\x88\xbd\x13\x46\xfa\x4e\ +\xc6\x7b\x18\xd5\xec\x83\xe1\x62\x30\xa6\xe9\x48\xc6\x6b\xf9\x92\ +\x37\x23\x94\xdb\x97\xf7\x98\x29\xd8\x6e\x3f\x0c\xf2\xae\x0b\x77\ +\x7f\x10\x9b\x77\xfc\xd2\xbc\x2a\xfc\x92\x44\x05\xec\xac\xab\x5c\ +\x65\xbf\xeb\xdd\xe9\x5f\xc9\x97\x5c\xed\x49\x7d\xce\x64\x92\xc3\ +\x56\xb8\x98\x8e\x16\xb2\xc8\xa2\xcd\x47\x3c\x46\xfa\xb2\xb8\xeb\ +\x30\xe2\x52\xf8\x4d\x10\xb1\x1c\xe2\x70\xfb\xb6\x69\xee\x83\xcd\ +\xc1\x2e\x64\x11\x4e\x51\x4b\x3e\x1f\xac\x95\x0b\x62\x09\x57\xd8\ +\xed\x7c\xc3\x41\xd9\x70\x50\x36\x03\x3f\x4e\x2d\x9b\x32\x0c\x2b\ +\xba\xdc\x40\x05\x72\x4e\xd3\x0e\xa3\x77\xa4\x1d\x7e\x2f\xd3\xbc\ +\xc4\x8b\x3b\x1d\x63\xf8\xf1\xbc\xb8\xc3\xa9\x89\x4c\x74\x92\x28\ +\x0e\xe7\x26\x33\xc5\xa0\xe6\x8f\xea\x14\x71\xec\xfa\x68\x87\x40\ +\x77\x67\xb0\xc5\xe1\x8e\x29\x3a\x96\xde\x55\xff\xd1\x11\x6d\xe1\ +\xfa\xe1\xec\xe0\x88\x6f\xf5\xe6\xb6\x10\x27\xd1\x82\x29\x5c\x8e\ +\x54\x18\x4a\x89\x5e\x83\x94\xed\x0c\x59\xe4\x09\x94\x42\x19\x86\ +\xe4\xdb\xa1\x54\xf2\xea\x3c\x56\xbd\x37\xa7\xde\x8b\x51\x97\x38\ +\x21\x17\xfd\xc0\xa1\x24\x43\xf4\xe0\x4e\xb5\xaf\x8d\x59\x2c\xfd\ +\xa7\x9d\x3d\xe2\xee\x04\x87\x6a\x02\x30\xc4\xce\xd8\xa8\x40\x6a\ +\xc8\xed\x00\x0e\x47\x69\x32\x30\xb1\x63\xa4\x7c\xfd\xca\xf0\xf0\ +\xca\xc8\xf5\x8c\x97\x62\xd8\x14\xec\xd3\xe6\x4b\x6d\x13\x9b\xf6\ +\x7b\x1a\x30\x65\x30\x33\xe7\xbd\x4c\x78\x38\x7c\x3d\x2f\xa8\xd4\ +\x31\x1d\xc6\xd4\x62\xdc\xa1\xfd\xf0\x0f\x59\x8e\x4b\x90\xdb\x6e\ +\x11\x10\xe8\x41\x44\xd8\x21\x9d\x3f\xd4\xd6\x1f\x6c\xab\xa1\x91\ +\xd1\x3c\x0b\xc8\x29\x75\x61\xc6\x38\x3f\x8e\xd2\xaf\x48\x5f\xaf\ +\x0b\xef\x74\xf7\xce\xf1\xee\x5d\xa9\xaf\x1d\x25\x58\x68\xfb\x19\ +\x64\x7a\x5d\xd9\x51\x54\x5f\x27\x57\x52\x14\xd7\x58\x8b\xae\x17\ +\x3e\xaa\x29\xd1\xd3\xd4\x7e\xe3\x13\xaa\x3a\x69\x59\x80\xa5\x38\ +\x91\x0f\xbe\x51\x55\xe2\x44\x06\xf8\xed\x54\x75\xae\x17\xc2\xc0\ +\xd6\x83\x9c\x3e\x37\x53\x39\x36\x63\xd4\xcc\x78\x08\x21\xce\xe9\ +\x25\xbe\xfb\x43\xe8\xe8\xeb\x55\x80\x0d\x0f\xcf\x5f\xe7\x9c\x80\ +\xa1\x0e\xb7\x20\xf7\xa3\xac\xc7\x70\x9b\x59\x90\x5b\xba\xb8\x9f\ +\x8a\xda\xb6\xe5\xc2\x50\x9d\x70\xd5\x1f\x94\xf5\x07\x65\x0f\xe7\ +\xcd\x08\x44\x11\x75\x89\x2b\xca\x04\x1a\xd6\x4a\x31\xb6\xc9\xd8\ +\x64\xc4\x82\x04\x9e\x50\x77\x6c\x0a\xc8\xa4\x6d\x1b\x33\xe7\x76\ +\xaf\xc3\xe3\x06\xbb\x9f\xf3\x53\xca\x5a\xe3\x3b\xf2\xf0\x80\xb0\ +\x8e\x35\x1e\x7a\x08\x71\x71\xfc\xa2\x7b\xbd\x80\x28\x52\x5f\x57\ +\xe2\x29\xe1\x47\xcc\x7d\x60\xf0\x59\xf9\xb9\x12\x4b\x09\x7f\xe5\ +\xf3\x1f\xfd\x60\x43\x58\x82\x61\x81\xed\x3e\x49\xa1\x90\x63\xe2\ +\xb0\x1e\x49\x1d\xcb\x21\x94\xe2\x1d\x8e\xee\x89\xfa\x43\xa2\xc7\ +\x29\xea\x10\xd1\xa1\xa8\x4d\x04\x17\x63\x93\x3a\x16\x38\x73\xee\ +\x96\x14\xc5\x16\x77\x18\xb6\xaf\x42\x51\x7a\x16\x45\xf9\x37\xa1\ +\x28\xbf\x84\xa2\xd2\xd6\xd7\xb5\x28\x2a\x2e\xa3\x28\xf5\xf5\x75\ +\x2d\x8a\x8a\x6b\x3e\x2b\xa2\x2e\x15\xfb\xca\xf9\x51\xd2\x34\x8a\ +\x5c\x76\x01\x89\x10\x62\xb3\xbd\xfd\xf8\xdc\x44\x0d\xc6\x12\x17\ +\xb1\xc6\xc7\xca\x0e\xc5\x19\xa3\x0d\x25\x4f\x54\x47\x69\xd7\xa3\ +\x09\x43\xe4\x3b\xa4\xc9\x45\x00\x08\xfe\xfd\x01\x70\xc0\x4e\xde\ +\xf0\x2e\x03\xe2\x20\x31\x3a\x62\x70\x84\xb5\xdb\xe3\x06\xc3\x9e\ +\xe7\x52\x0b\x33\xd1\xc9\x09\x5f\xa0\x14\x3b\xcc\xc2\x36\xea\xec\ +\x2e\x64\x3a\xa2\x36\x85\x18\xae\xeb\xaf\x5e\xa0\x14\x53\x64\x11\ +\x22\xec\x76\xf5\x6f\x7d\x41\x02\xbb\x28\x25\x36\x76\x08\xaf\xde\ +\x94\x34\xb7\x04\x76\x68\x22\x18\x44\x7a\x7a\x53\xe6\xb0\x16\x7e\ +\xfb\x0a\xa7\xa3\x21\x3a\xdf\x0d\x10\xe5\x10\x74\x8e\x1b\x18\x74\ +\x3a\x10\x96\x5e\xe4\x74\x18\x09\xc3\x81\x27\xb6\x67\x3a\x1d\xc2\ +\x5e\xf9\x8a\x71\x58\x93\x07\xb4\x3e\x48\x90\x41\x2e\x5d\x4d\xc9\ +\x97\x87\x4a\xbb\xcf\x03\x1d\x71\xb9\xf9\x9c\x8c\x95\x2e\x71\x60\ +\x98\x9e\x71\xc8\xe2\x4f\xe5\xc0\xee\x27\xfa\xa4\x4b\xf9\xab\x69\ +\xa0\x0f\xc9\x04\xcf\x91\x5a\xdf\x34\x20\xcc\x64\xa3\x9a\xa5\x9c\ +\xab\x92\xe8\x00\xfc\x36\xb9\xae\x2a\x66\x69\x16\xa8\xac\xae\xe2\ +\xe5\xa7\x57\x55\xd9\xc2\xf6\xf0\xd7\xcd\x0e\x88\xd0\x6b\x53\x8f\ +\x86\xeb\xf3\x47\x19\xa4\xeb\xe9\x88\xec\x56\x7e\x4d\xd3\x85\x7e\ +\x02\xc3\x76\x2b\xca\xfc\x74\x4f\xbc\xcc\x13\xf6\x4b\x57\x59\x06\ +\xec\x31\x63\xf9\xa2\x60\x01\xe5\x57\x8d\x66\xfe\x98\xae\xe7\x99\ +\x06\xa2\xc8\x56\x6a\xb7\x65\x90\xfa\x2b\x7d\x88\xcc\x5c\x6d\x19\ +\x5d\x1d\x5d\xea\x48\xe8\xb6\xe6\x6c\x96\x6e\x86\x3b\x58\x47\x09\ +\x2c\xcc\xac\x0e\x43\x41\xf6\xb2\xb7\xfc\x4a\xa2\x3e\x1e\x25\x98\ +\x73\x40\x62\xd3\xfa\xb0\xdd\x2a\x0d\xbc\x7b\xa0\x6e\x21\x37\xd1\ +\x22\xfa\xaa\x82\xf6\x41\xd1\xfd\x42\x15\x32\x90\x85\x6c\x59\x50\ +\x97\xd8\x1c\xd7\xde\xf7\x3e\x0b\x42\xef\xdf\x9f\x7e\x6d\xbc\xa3\ +\xef\x7b\xff\x49\xb3\xa7\xd6\xb1\x69\x01\x39\x4b\x57\x30\xed\xc6\ +\x63\xeb\xe3\x56\xbe\xa7\x9d\x89\x2c\x1e\xa2\x05\xe8\x56\x1f\x63\ +\xfb\xeb\x66\x11\x03\x1f\x9b\x8a\x9e\xb0\x66\x71\xdb\xe9\xb6\xdb\ +\x4c\x6d\x8f\xa9\x0d\x9e\xec\x0b\xfc\x45\xa4\x1b\x4d\x7e\x2f\xa2\ +\x38\xfe\x4d\x0f\xd2\xf1\xe2\x55\xa7\x51\x11\xab\x87\x72\xcc\xed\ +\xcf\x7a\x15\x93\x6a\x19\xcd\x23\xab\x76\x95\xf7\x93\x1a\x86\xf2\ +\x6e\xde\xc2\xd3\xa3\x4c\x83\x70\x2c\x67\x2a\x9e\x8e\xfe\xa1\x2b\ +\x8d\xbd\xda\x79\x96\xae\x96\x8b\x34\x50\x55\xf3\x1a\xd6\x79\x3d\ +\xcf\xa2\x75\xbb\xe5\xcf\x58\x16\xea\xa3\x49\x98\x6b\x39\x0c\xf6\ +\xb4\xb1\x89\x6d\x62\x09\xc7\xa6\xee\x6d\xcf\x77\xce\x29\x17\x9d\ +\x37\x6d\x4b\x59\x3c\xf6\x37\x9b\x0c\x7c\x1a\x6c\x36\xfd\x37\x5f\ +\x5a\xc9\x06\x64\x85\x90\xde\xc2\xce\x30\x06\x7f\x67\xe9\x63\x21\ +\xd4\x40\x63\x28\x23\xcc\x80\xc1\x30\x61\x63\x04\x05\xe6\xb6\xc4\ +\x6c\x8a\xbe\x1a\x0b\x03\xeb\x46\x67\x4b\x9b\x17\x49\x9f\x2f\xbc\ +\xff\x10\xb3\x79\x73\x62\xf1\xbb\x26\x13\x29\x53\xc7\x10\xd8\xd1\ +\xbb\xe9\xec\xd9\xe5\x6d\xb6\x8a\x95\xa7\x9e\x55\x92\x06\x01\x6c\ +\xea\x59\xfa\xa4\xbc\x24\x4d\x54\xf5\x7b\x6b\xb6\x1e\xb9\x5b\xc8\ +\xec\x49\x65\xdb\xaa\xe7\x28\x8f\x66\x51\xac\x7b\x29\x7f\xc6\xea\ +\x2e\x88\xf2\x25\xa8\xd8\x8b\x12\xbd\x5d\xdd\xa5\xcf\x2a\x0b\xe3\ +\x74\xdd\xd4\xab\x44\xc2\x97\x39\x93\xfe\x93\x26\x45\x12\x78\xd2\ +\x07\xbf\xb2\xd2\x0a\xef\x86\x1f\x5a\x6f\x1d\xeb\x7a\xe9\x07\x2d\ +\xd9\xa6\x7f\xaf\x8d\x5e\xb8\x16\x13\x98\xd2\x4e\xb1\x7e\x10\xed\ +\x20\x0b\x4a\x49\xf7\x95\x74\xed\x5f\x00\x50\x4a\x1c\x26\xba\xef\ +\x05\x2a\xef\xa4\x41\x2e\xeb\x46\xc3\x74\xda\x87\x7e\x08\xee\xea\ +\xa9\xec\xb9\x70\xd7\x8d\x77\x10\xaf\x6e\x35\x9e\x60\x4c\xde\x6c\ +\x55\x14\xdd\xb2\xff\xa6\x51\xe2\x95\x50\xd6\xa5\xe0\x11\x54\x16\ +\x83\xa7\x2b\x3c\x5a\x97\xb5\xc3\x57\x05\x81\x84\x8d\x26\xcb\x40\ +\x55\x5d\x2d\xeb\xd2\x6d\xdc\xe6\xa1\xff\x5f\x55\x33\xfc\x8e\xaa\ +\x36\x71\xcf\x77\xfc\x54\xf7\xbb\xab\x9b\xb3\x41\x75\x0b\xfe\x6d\ +\xd4\x7d\x9e\xb2\x11\xa2\xe4\xa7\xb2\xaf\xaf\x6c\x5b\x0c\x2a\x9b\ +\x7f\x23\x65\x9b\xc2\xa4\x3f\xad\xfb\x7a\x0a\xef\x47\x60\x6d\xb2\ +\x05\xb1\x9f\x0e\x53\x21\x6f\xf0\x7d\xbf\x03\xf8\x60\xe0\x07\xc1\ +\x0e\x47\xb7\x3b\x3a\xd3\x3d\x33\xe4\x3a\x7b\x71\x9c\x80\x44\x0b\ +\xb8\x61\x8f\x21\x50\xb4\x4a\x6d\x43\xb4\x04\x34\xd2\x9a\xe7\x86\ +\x6b\xe9\x12\x3c\x1e\x38\x94\x51\xea\xb5\x03\xd8\x5b\x74\x56\xaa\ +\xe9\x0d\x3a\x3b\x8c\xe1\x85\x08\xe1\xde\xab\x80\x2d\x42\x4e\xf9\ +\x36\xde\xe1\x63\x82\x2b\x33\x32\xcc\xad\xd5\xf0\x3f\x0d\x2e\xf7\ +\x93\xf9\x36\x2f\x81\xaf\x7b\x9d\x47\x3d\xdc\xfc\x0f\x82\x68\xd2\ +\xd6\ +\x00\x00\x0b\x6e\ +\x00\ +\x00\x2d\x39\x78\x9c\xed\x5a\x6d\x6f\xdb\xc8\x11\xfe\x9e\x5f\xc1\ +\x3a\x5f\x2e\xa8\x48\xed\xfb\x8b\x6c\xe7\x80\x36\xb8\xc3\x01\x07\ +\xb4\xe8\xdd\xb5\x1f\x0f\xb4\x44\xc9\x6c\x28\x52\xa0\x68\xcb\xce\ +\xaf\xef\x33\xbb\x24\x25\xd9\x72\xe2\x24\xb8\xa6\x0d\xa2\x20\x11\ +\x39\x3b\xbb\x33\x3b\x2f\xcf\xcc\xae\x72\xf1\xfd\xdd\xba\x4a\x6e\ +\x8b\x76\x5b\x36\xf5\xe5\x19\xcf\xd8\x59\x52\xd4\xf3\x66\x51\xd6\ +\xab\xcb\xb3\xdf\x7e\xfd\x21\x75\x67\xc9\xb6\xcb\xeb\x45\x5e\x35\ +\x75\x71\x79\x56\x37\x67\xdf\xbf\x7e\x71\xf1\xa7\x34\x4d\xfe\xda\ +\x16\x79\x57\x2c\x92\x5d\xd9\x5d\x27\x3f\xd5\x6f\xb7\xf3\x7c\x53\ +\x24\xdf\x5d\x77\xdd\x66\x36\x9d\xee\x76\xbb\xac\xec\x89\x59\xd3\ +\xae\xa6\xaf\x92\x34\x7d\xfd\xe2\xc5\xc5\xf6\x76\xf5\x22\x49\x12\ +\xc8\xad\xb7\xb3\xc5\xfc\xf2\xac\x9f\xb0\xb9\x69\xab\xc0\xb8\x98\ +\x4f\x8b\xaa\x58\x17\x75\xb7\x9d\xf2\x8c\x4f\xcf\xf6\xec\xf3\x3d\ +\xfb\x9c\xa4\x97\xb7\xc5\xbc\x59\xaf\x9b\x7a\x1b\x66\xd6\xdb\x97\ +\x07\xcc\xed\x62\x39\x72\x93\x36\x3b\x19\x98\xb8\xf7\x7e\xca\xc4\ +\x54\x88\x14\x1c\xe9\xf6\xbe\xee\xf2\xbb\xf4\x78\x2a\x74\x3c\x35\ +\x55\x30\xc6\xa6\x18\xdb\x73\x3e\x8f\x6b\x76\x57\xc1\x14\x4f\x2a\ +\x13\x46\x0f\xa5\xc3\xfc\x1b\xfc\x1d\x27\x0c\x84\x6c\xdb\xdc\xb4\ +\xf3\x62\x89\x99\x45\x56\x17\xdd\xf4\xcd\xaf\x6f\xc6\xc1\x94\x65\ +\x8b\x6e\x71\xb0\xcc\x60\xfd\x23\xb9\x47\x2e\xa9\xf3\x75\xb1\xdd\ +\xe4\xf3\x62\x3b\x1d\xe8\x61\xfe\xae\x5c\x74\xd7\x97\x67\x46\x6d\ +\xee\xc2\xfb\x75\x51\xae\xae\xbb\x03\x42\xb9\xb8\x3c\xc3\x0e\xa5\ +\xe1\x22\xbc\x1f\x04\x10\x8f\x0c\xfd\x72\xb3\x71\x84\x65\xca\x26\ +\xad\x10\xda\xc9\xc0\x31\xa8\x3d\x5b\x34\x73\xd2\xe3\xf2\xec\x4d\ +\x9b\x2f\xbb\xdf\xff\xde\x54\xf7\xab\xa6\xce\xc8\x80\xaf\xc1\x78\ +\xb1\x28\x96\x5b\x9a\x10\xa5\xd2\x1b\xc4\xaa\x30\x86\xd1\x51\xd0\ +\x06\x82\x36\xc5\x9c\x42\x22\x72\x1f\x88\xe8\xee\xc9\x0a\xc7\xac\ +\x32\x9a\x2a\x39\x52\x76\xf3\xfb\x1d\x34\x4d\x66\x89\x14\xf8\x87\ +\x9f\xe4\xb8\x8f\x1c\x1c\x5e\xc6\x17\x3b\xc9\xf3\x8e\x6c\xf5\x9e\ +\x65\x7a\x0d\xd2\xa6\x2d\x57\x25\x8c\x13\xf8\x04\xcf\x64\xf8\x1c\ +\xcf\xc1\xa6\x0f\xf6\x26\x8d\x40\x8a\x4e\x9f\xb1\xfb\x87\x13\xb5\ +\x73\x1f\x56\x84\x65\x9a\x36\xd5\x2b\xf2\x50\x95\xe3\x1d\xf2\xc0\ +\xa9\x3f\xcb\x50\xbd\xb9\x1f\x2e\xf3\x21\xcf\x8d\x06\x68\xf3\x45\ +\x99\x57\x3f\xd2\x17\xf0\xe2\x91\x84\x79\x53\x55\xd8\xfe\xe5\x59\ +\x5e\xed\xf2\xfb\xed\xb8\x7e\xc8\xb8\xd9\x75\x5b\x00\x21\x5e\xe2\ +\xb9\xc8\xdb\x61\x0d\xc9\x95\x4a\xe5\x91\xf9\x8f\x85\x48\xc3\xf6\ +\x7b\x59\xf5\xc4\xdf\xea\xb2\x03\x18\xdc\x6c\x8b\xf6\x17\x4a\xa8\ +\xbf\xd5\xbf\x6d\x8b\x47\x5c\xbf\xb6\x79\xbd\x45\xf6\xae\x2f\xcf\ +\xd6\x79\xd7\x96\x77\xdf\xf1\x09\xa3\x3f\x99\xf1\x4e\x0b\xaf\xf0\ +\x2c\x98\xc8\x9c\x70\x46\xbe\x1a\xa7\xcf\x61\x25\x24\x4e\x26\x8c\ +\x62\x62\x4f\x85\x7d\x8d\x15\x99\xf5\x56\x9a\x91\xba\x3c\xc9\xbb\ +\x3c\xc9\xdb\x22\xf0\x54\x26\x95\xe6\x08\x8d\xd1\xa4\xc7\xe6\x38\ +\xb4\xc3\xfb\x0d\xf5\x94\xcd\x5f\xf7\x1c\x17\xdb\xae\xd9\x0c\xdc\ +\x3d\x84\x80\x82\x65\x4c\xba\x37\x68\x92\x34\xcb\xe5\xb6\xc0\xf4\ +\x43\xda\xb6\xbb\xaf\x8a\xc8\x9f\x62\xfd\xa6\x9d\xbd\x5c\x86\xcf\ +\x79\x20\x35\x30\x79\xd9\xdd\xcf\xf8\xf9\xb8\x8d\xf7\xc9\x73\x29\ +\x3f\x21\x8f\x7f\xbc\x3c\xb6\x97\x77\x31\x3d\xb6\xce\x17\x8c\x4f\ +\xed\xdd\xd7\x1c\x9f\x1f\x83\x79\xc6\x8b\x6f\x98\xf7\xcc\x98\x32\ +\xef\xc5\x3c\xa7\xbe\xe6\x98\xfa\x28\xcc\x33\xcf\x82\x34\xff\x09\ +\xf0\x75\x12\x05\x9f\x87\x68\xe2\x13\xd0\xeb\x24\x08\x7e\x19\x40\ +\xfb\x40\xf0\x99\x6f\xc1\x07\x3b\x58\xc6\x3f\x18\x7a\x96\xc9\xff\ +\x5e\xe0\x59\xa6\xbf\xea\xb0\xfb\xaa\xeb\xe8\x47\x84\x9d\xfb\x70\ +\xd8\xf1\x4f\x69\xd7\x3e\x35\xec\xf8\x97\x45\xbb\x23\x7b\xbe\xdf\ +\xf4\xa7\xdd\x74\xda\xa5\xa7\xdd\xff\x99\x31\xf5\xbc\xc0\x3d\x11\ +\xfd\x56\xc8\x4f\x49\xa3\xa7\x32\x32\x1a\xfa\x62\x4a\xe7\xf7\xf0\ +\x34\xb6\x3b\x74\xf8\x5f\xdc\x96\xc5\xee\xc5\xa8\xca\x55\x3e\xea\ +\xb6\xc9\x57\x45\xf0\x2a\x24\x47\xb7\xf6\x03\x57\x4d\xbb\x28\xda\ +\x61\xc8\x84\xcf\xd1\x50\xef\xf8\x78\xa9\xf5\xe2\x58\x3b\x5a\x75\ +\x1c\x67\xa7\xc7\xb7\xd7\xf9\xa2\xd9\xc1\x25\x0f\x07\xdf\x35\x0d\ +\x9c\xa0\x33\xfd\x70\x80\x1c\x28\x1f\xb1\x93\xb3\x4f\x50\x6f\xda\ +\x16\xe6\x4b\xab\xfc\xbe\xc0\x06\xc2\xd7\x90\x0f\xdb\xeb\x66\xb7\ +\x6a\xc9\x10\x5d\x7b\x53\x3c\x9c\xb9\x68\xe6\x37\x74\x39\x96\xde\ +\x44\x97\xf6\x57\x32\x07\x1c\x34\x37\xbd\xba\x6a\xee\x4e\x2f\xb0\ +\x2b\x6b\x6c\x2c\xed\x2f\x79\xb8\x70\x8f\xb6\xdf\x73\x0c\xd7\x3e\ +\x56\xbb\x27\x38\xee\xf6\xc7\xb4\x87\x43\x64\x78\xff\xc4\xd8\x3a\ +\xbf\x2b\xd7\xe5\xbb\x62\xb1\xcf\xf7\x8b\x75\xd1\xe5\x8b\xbc\xcb\ +\xf7\x51\x30\x50\xa4\xe1\x76\xb8\xee\x69\x17\xcb\xd9\x3f\xde\xfc\ +\x30\x22\xc4\x7c\x3e\xfb\x57\xd3\xbe\xdd\xa7\x36\x31\xe4\x57\xcd\ +\x0d\xd4\x1e\x41\x8b\x2e\x91\xe6\x33\xca\x9d\xbc\x7b\x5d\xae\xe1\ +\x5b\xba\x9e\xfb\xf3\xdd\xba\x42\x3c\x8e\x03\x47\xcc\xd4\x83\xef\ +\x17\x8d\xcb\xb6\x45\xbc\x7e\x3b\x79\x63\xb9\x98\xaf\x4b\x9a\x34\ +\xfd\xa5\x2b\xab\xea\x27\x12\x72\x80\x64\xfd\xa2\x65\x57\x15\xaf\ +\x83\xcc\xf8\x38\xec\x62\xda\x6f\x63\xc0\xa2\x83\x5d\x5e\x4c\x07\ +\x33\x84\xb7\xd5\xde\x3c\x47\x21\x33\x5a\xb8\xca\xaf\x8a\xea\xf2\ +\xec\x67\x1a\x4c\x1e\x8d\xae\xda\xe6\x66\xb3\x6e\x16\x45\x3f\x7d\ +\x30\xeb\xea\x10\x08\xe2\x3d\xdc\xd5\x76\x43\x99\x3e\x66\x76\xf7\ +\x08\x7f\x58\xe6\xbc\xe5\x1c\x90\x05\x10\xd2\x82\x19\x2d\xbd\x98\ +\xa4\x78\xe6\x02\x87\x50\x0b\xaa\xe7\xdc\x48\x05\x6c\x92\x22\xe3\ +\x4c\x72\x6b\x26\x29\x37\x2a\x33\xca\xfb\x57\xfb\xa2\xb2\xc9\xbb\ +\xeb\x47\x80\xbe\x6c\x10\xe3\x5b\x44\xc9\x0c\xf8\x50\xde\xac\xcf\ +\x23\x81\x06\x67\x35\xb9\xac\x8a\x94\xdb\xbc\x2d\xf3\xba\x3b\xa2\ +\xed\x42\xe4\x1e\x91\xb6\x5d\x5b\x74\xf3\xeb\x81\xd6\x15\x77\x5d\ +\x8a\x68\x44\x22\xe1\x18\x1f\xde\xf2\xaa\x5c\xd5\xb3\x6d\x97\xb7\ +\x5d\x24\x2c\x80\x3c\x6d\xde\x95\x4d\x8d\x59\x75\x71\x4e\xf6\xe8\ +\x93\x62\x58\xa6\x2a\xba\xae\x68\x53\xba\x44\x2d\xeb\xd5\x40\xdd\ +\x01\x80\x1e\xd2\xc2\x8a\xa3\x11\xe3\x82\x8b\xb2\xa5\x83\x2a\xd6\ +\xaf\xba\xf6\xfc\xaa\x6a\xe6\x6f\xd3\x4d\xdb\xac\x10\x69\x74\x69\ +\x3a\xeb\xae\xce\x77\x6d\xd9\x61\x95\x94\x9c\x36\xab\xda\x14\xa4\ +\xa8\x6c\x3d\xbf\x46\xa9\x8b\xda\x8e\x35\x2e\xd3\xe7\x7d\x09\x64\ +\xe1\x73\xbe\x44\x30\x1e\xbd\x1c\xdc\x95\xc0\x22\xcd\xdb\x22\x6a\ +\x12\x9f\x23\x26\xcc\x78\xc6\x85\x3e\x5f\xe7\xed\xdb\xa2\x8d\xc3\ +\xb7\xe5\xb6\xbc\x2a\x2b\x9a\x17\x1e\x2b\xd2\x1d\x01\x92\xdf\xcf\ +\xca\x9a\xcc\x72\xde\xdc\x16\xed\xb2\x6a\x76\xe3\x78\x51\xe7\xf8\ +\x4a\xaf\xf2\xf9\x5b\x8a\xba\x7a\x31\xcb\xe7\x00\xae\x9b\x2a\xef\ +\x8a\xe8\x91\x65\xbe\x2e\xab\xfb\xd9\x5f\x80\x62\xf0\x4d\xbe\x4e\ +\xfe\x59\xb4\x79\xf2\x0b\x2c\x74\x9e\x0e\x11\x9b\x46\xdf\xe1\x3c\ +\x5f\x2e\xcb\x79\xf4\xc5\x89\x09\x07\xb5\x3d\x5c\x01\x20\x9e\xd0\ +\x25\xa8\xf4\xb0\x3d\x25\x44\x49\x9c\xcd\xbc\xd7\x5a\x9a\x09\x57\ +\x32\xe3\x0a\xc5\x32\x99\x27\xa9\xcc\x8c\xb6\x4e\x51\xc8\x0a\x21\ +\xb9\x48\x52\x93\x19\xc9\x94\xb5\x13\x70\x79\xe3\x0d\x51\xac\x83\ +\x5d\x26\x26\xf3\xd2\xea\x04\x71\xce\x84\x36\x9c\x0a\xb0\xd4\x4a\ +\xe2\x3c\xcf\xb4\xe5\x13\x9e\x09\xcd\x94\xc6\x2b\x77\x56\xe3\xd5\ +\xa9\xc0\x2e\x33\xa6\x24\x4a\x33\x16\x54\x42\x69\x2c\x88\x34\x90\ +\x9e\x31\x3d\xb1\x99\x32\x46\x06\x8a\x67\x06\x22\x38\x8f\xb2\x48\ +\x88\x30\x42\x78\x39\x51\x99\x40\x22\x91\x14\x83\x54\x83\x5e\x0e\ +\x75\xdf\x38\x9e\x88\x8c\x26\xc8\x8c\xb8\xe1\x38\xa7\x9c\xf4\x41\ +\x09\xc1\x03\xc5\x23\x2b\xbd\x9e\x88\xcc\x0b\x7c\x92\x54\x60\xa9\ +\x71\x71\xe6\x9d\xf5\xd0\xc8\x7b\x8e\xb5\xa1\xa2\x0d\x7b\xb0\x99\ +\x64\x56\x99\xc4\x66\x41\x1d\xe8\x47\xdf\x49\xe4\x13\x7e\x12\x26\ +\xba\xa4\x67\x43\xce\xf7\x33\x93\x9e\x73\x92\xc6\x99\xc9\x20\x21\ +\x1d\x44\xa4\xa3\x8c\x74\x10\xd2\xf3\x12\x21\x8a\x21\x04\x11\x92\ +\x31\x4f\x58\xc2\xb8\xf0\xb4\x0d\x06\x7f\x6a\x43\x92\x4d\x24\x68\ +\xc9\x03\xf0\x80\x1a\xb7\x2e\xbc\x05\xac\x04\x51\x80\x18\x1f\xf7\ +\xce\x3c\x41\x8e\xcd\x34\xf4\x15\x44\x82\x4b\x52\xce\x7a\xa7\x90\ +\x8f\x9c\x62\x36\x6c\x40\x71\xef\x13\x4e\xeb\x1b\x4c\xd1\x19\x1a\ +\x20\x4d\xe6\x25\x2f\xa6\x8e\x52\x02\xa3\xdc\x13\xa0\xc1\xbe\x4c\ +\x08\x6b\x31\x0a\xad\xa4\x94\x20\x18\xcd\xb4\x4f\x54\x6f\x00\x08\ +\x22\xf7\x93\xc9\x1c\x76\x2e\x48\x51\xc3\xa0\x02\x76\x6d\x99\x12\ +\x90\x20\xb2\xb0\x16\x28\x71\x2b\x08\x30\x3f\x18\x4d\x28\xa6\x02\ +\x92\x7a\xa3\x44\x70\x94\x12\x90\x42\x0e\xf6\x8c\x4b\xa2\x84\x7d\ +\x4f\xc2\x8e\x82\x1a\x9e\xd6\x44\xb8\x70\xee\x55\x82\x26\x92\x7b\ +\xab\x54\x08\x4e\x69\xc8\x31\xd0\x86\x61\x51\x91\x91\x30\xe8\x25\ +\x2c\x59\x58\x60\xbf\x28\xef\x89\xc9\xb4\x83\x88\x89\xce\x0c\xf3\ +\x08\x45\x1f\x82\x7c\xc2\x59\xb0\xbd\x86\xea\xb4\x67\xaf\x18\x0f\ +\x46\xb4\x12\xd2\x04\x14\x67\x5c\x05\x43\x1b\xb2\x92\x1a\x9c\x41\ +\xbf\xf5\x18\xc4\x05\x76\x6f\x94\x21\x23\x4a\x65\x9d\x47\x20\x69\ +\xad\x8c\x84\xb4\xb0\x63\x07\xaf\x46\x65\x02\xdb\xa4\x9f\x96\xf4\ +\x6c\x64\xa2\x30\x2f\xe9\x19\xc9\x44\x61\xc2\xb0\x7e\x3a\x08\x18\ +\x38\x83\xab\x83\x88\x9e\x95\x3c\x17\x85\x40\x29\x2b\x04\x77\x21\ +\xa8\x9c\x71\xa4\xb6\x52\x38\xe4\x05\x82\x36\x9e\x16\x89\x21\x15\ +\xa3\x10\x98\x20\xad\xc7\xb0\x82\xed\x9c\x90\x14\xa8\x20\x70\x4e\ +\x6b\x62\xc3\x21\xc4\x86\x38\x0c\x4f\x11\x17\x10\x31\xa8\x89\xc1\ +\x33\xd6\x31\xc4\xb7\xce\x1c\x72\x92\x2b\xda\x8f\x93\x1c\xfb\x49\ +\x3d\x6c\x09\xe6\x40\x8a\x4e\x27\xd7\x4a\xe9\x74\x0c\x7a\x41\x3b\ +\x40\x66\x5b\x2d\x4c\xd0\xc8\x33\x4f\x1a\x51\xd4\xe2\x35\x6e\x08\ +\x21\x0f\x8f\x22\x1d\x83\x8b\x94\x0e\x53\x2c\xcc\x00\xbf\x93\x74\ +\x25\x29\x52\x10\x91\xc1\x39\xa0\x8c\x90\x02\x20\x31\x7d\x76\x91\ +\x43\x11\x67\xcc\x70\xa5\x22\x85\xf6\xc5\x28\x4f\x58\xf2\xee\xf0\ +\x30\xf6\xad\x48\x7f\x5e\x91\x3e\x55\x98\xfb\x83\xea\xe9\xc2\x3c\ +\xb0\x3e\xa8\xcd\x4a\x21\xa0\x99\x37\x03\x1d\x7d\x67\xd1\x56\xe8\ +\xa7\xbb\x99\x1a\x68\x0f\xd7\x4a\x17\x39\x8e\x33\x6d\x8b\x7a\x1d\ +\xf6\xf4\x15\xd4\xf6\x87\x95\xdd\x13\x04\x04\xcc\x42\x61\x8f\x05\ +\x2e\x14\x76\x81\x0a\xa4\x42\x5b\x8a\x6a\xa3\x08\x17\xb4\xb6\xda\ +\x12\x34\x3a\xce\xad\xa3\x64\x8c\x55\x57\x0c\xa5\x1a\xb5\x5f\x78\ +\x27\x1d\x00\x0d\x30\xef\x2d\xb1\x38\xad\xf5\x04\x5f\xca\x13\x12\ +\xa0\x82\x10\xc8\x1b\xc0\xac\x8b\xbd\x80\xf4\x8a\x5a\x03\xe4\x95\ +\x16\xa8\x13\x96\xda\x5e\x1e\xea\x32\x92\x94\x03\x90\x09\x25\x44\ +\x6c\x0a\x92\x9f\x13\xc7\xc3\x02\x2e\xb4\x5a\x51\x51\xee\x0c\x61\ +\x0b\x84\x33\x2c\x46\xb0\xc1\x98\x45\x7f\x82\xcc\x25\xdc\x30\xd6\ +\x87\x96\x21\xe6\xb2\xa3\xdf\x2b\x00\xf1\x2e\x94\x2a\xd4\x11\x41\ +\x28\xab\x85\x42\x03\x30\x81\xba\x52\x0a\xe5\x80\x9b\x43\x95\x10\ +\x54\x26\x70\x64\x35\x0a\xcd\x0f\xe1\xa6\xb4\x46\x13\xcc\x5b\x83\ +\x02\xab\x63\x35\xb2\x3c\xe1\x2a\x0b\x10\x83\x42\x66\xb8\xb4\x93\ +\x9e\x4c\x0b\x02\x4e\xa8\xe9\x80\xe9\x1d\xb1\xb1\x58\x20\x74\x6f\ +\xeb\x0a\x28\x1e\x44\x89\x00\x52\xb4\x25\x45\xb8\x47\xa6\xb7\xa8\ +\xcd\x68\xf8\xc9\x8c\x96\x90\x06\xfa\x00\xca\xac\x26\x78\xc2\x02\ +\x32\xec\xc8\x0e\x38\x1d\xf0\x93\x7b\xfd\x08\x41\x51\x83\x1e\x21\ +\xe8\x1e\x40\x9f\x81\x55\x7d\xca\xe5\xfe\x71\x2f\x1c\x5e\xdb\x9b\ +\x80\x5a\xf5\xbb\xa2\x6d\xde\x9b\x84\x64\x48\x2f\x18\x94\x1c\xe8\ +\x94\x27\x88\xe9\xd9\xd5\x4d\xd7\x1d\xd2\xfe\xdd\x94\xf5\x2c\x64\ +\xe8\xe7\xa4\xeb\x01\x35\x5e\x5d\x01\x0d\xff\xc0\x14\x3e\x91\x71\ +\x88\x73\x71\x70\xcd\x73\xea\x38\x48\x3d\x89\x72\xf0\x9d\x8c\xd9\ +\xc6\x50\x5b\x85\xa1\x3c\x1b\x1f\x0f\x59\x38\xa3\x9e\x83\x51\x6b\ +\x6a\x3d\x2a\x9d\xd2\xe2\xd5\xc3\x9c\x46\x9f\x8c\xce\x06\x4d\xfa\ +\xc4\xe8\xd0\xd2\xc8\x24\x4f\x94\xcb\xd0\x3f\x2a\xb4\xc4\xfd\x43\ +\xc2\x12\x04\x2e\x42\xc2\xc6\x86\x9e\xa2\xf7\x09\x9e\x03\x96\x67\ +\xc6\x0b\x8e\xf8\xdf\xbd\x7c\xfc\x63\xd8\xab\xf7\x1c\xa6\x4e\x9b\ +\x4f\xa5\xee\x83\xe6\x83\x66\x68\x5d\x43\x97\x6b\x71\x6a\x46\x3e\ +\xf4\xb8\x35\x3e\x8f\x2c\x5c\x5b\x64\x87\x60\x62\x82\x44\xc7\x79\ +\x1a\xbd\xcd\x63\xf3\x69\x4f\xed\x9c\xe0\x93\xf1\xb2\x11\xf6\xeb\ +\xaf\x2e\xd1\xfb\x85\xa6\x9c\x0b\x35\x18\xd0\xd0\x99\x82\x01\xf7\ +\xd8\xd3\x4c\x07\x3c\xdf\x32\xee\x0f\xce\xb8\xe3\x5f\xf5\x9e\xca\ +\x38\x8b\x6a\xc8\x63\xc6\x69\x9c\xf4\x62\x07\x3b\x3c\x1e\xb2\xa0\ +\x69\x40\x85\x00\xee\x87\x90\xe1\x54\xa0\xfe\x7f\x32\xce\x7c\x74\ +\xc6\x79\x76\xf4\xdf\x3c\x9e\xc8\x38\x9c\x0f\xb5\x0b\x09\x87\x53\ +\x36\xfa\xe2\x98\x70\xfb\xe7\x81\x83\x1b\x3a\x5c\x53\x7f\x0e\xc7\ +\xe0\xe4\x6a\xe8\x02\xeb\x5b\xbe\x7d\x4d\xf9\xe6\xdd\xd1\x7d\xd1\ +\x13\xf9\x66\x2d\xfa\x8e\x18\x26\xdc\x5a\x13\xce\x63\xc3\xd3\x21\ +\x03\x97\x74\x07\x80\x56\x6e\x82\x23\x1c\x5d\x13\xb8\x13\x01\xf3\ +\xbf\x99\x6d\x56\xc8\x8f\xcd\x36\x34\xb9\xcf\xc8\x36\x89\x96\xcf\ +\x4b\x1e\x8f\xd8\x68\x55\x45\xac\x6f\x07\xcf\x23\x0b\x77\x08\x41\ +\x2b\x25\x81\x15\x65\xa4\x15\xe6\xcb\xe5\xdb\xc5\x74\x15\xef\xe2\ +\xf1\x75\x41\xbf\x1d\xbc\x7e\xf1\x1f\x62\x9b\x4c\x39\ +\x00\x00\x0b\xed\ +\x00\ +\x00\x3c\xb2\x78\x9c\xe5\x5b\x5b\x6f\xdb\xca\x11\x7e\xf7\xaf\x60\ +\x95\x97\x18\x15\x57\x7b\xbf\xc8\x76\xce\x43\x83\x14\x07\x28\xd0\ +\xa2\x27\x41\x1f\x0f\x68\x92\x92\xd9\x50\xa2\x40\xd2\xb7\xfc\xfa\ +\xce\xac\x44\x89\x94\xa8\x9b\xe3\x18\x68\x22\x21\x91\x34\x3b\x7b\ +\x9b\xf9\xbe\xd9\xd9\x5d\xfa\xfa\xb7\xa7\x59\x1e\x3c\xa4\x65\x95\ +\x15\xf3\x9b\x01\x23\x74\x10\xa4\xf3\xb8\x48\xb2\xf9\xf4\x66\xf0\ +\xe5\xf3\xa7\xd0\x0e\x82\xaa\x8e\xe6\x49\x94\x17\xf3\xf4\x66\x30\ +\x2f\x06\xbf\x7d\xb8\xb8\xfe\x4b\x18\x06\x7f\x2b\xd3\xa8\x4e\x93\ +\xe0\x31\xab\xef\x82\xdf\xe7\x5f\xab\x38\x5a\xa4\xc1\xfb\xbb\xba\ +\x5e\x8c\x47\xa3\xc7\xc7\x47\x92\xad\x84\xa4\x28\xa7\xa3\xcb\x20\ +\x0c\x3f\x5c\x5c\x5c\x57\x0f\xd3\x8b\x20\x08\xa0\xdf\x79\x35\x4e\ +\xe2\x9b\xc1\xaa\xc2\xe2\xbe\xcc\xbd\x62\x12\x8f\xd2\x3c\x9d\xa5\ +\xf3\xba\x1a\x31\xc2\x46\x83\x8d\x7a\xbc\x51\x8f\xb1\xf7\xec\x21\ +\x8d\x8b\xd9\xac\x98\x57\xbe\xe6\xbc\x7a\xd7\x52\x2e\x93\xc9\x5a\ +\x1b\x47\xf3\x28\xbc\x12\x73\xce\x8d\x28\x1f\x71\x1e\x82\x46\x58\ +\x3d\xcf\xeb\xe8\x29\xec\x56\x85\x31\xf6\x55\xe5\x94\xd2\x11\x94\ +\x6d\x34\x4f\xd3\x1a\x3f\xe5\x60\x8a\xbd\x83\xf1\xa5\xed\xde\xc1\ +\xfc\x0b\xf8\xb7\xae\xd0\x08\x48\x55\xdc\x97\x71\x3a\x81\x9a\x29\ +\x99\xa7\xf5\xe8\xe3\xe7\x8f\xeb\xc2\x90\x92\xa4\x4e\x5a\xcd\x34\ +\xd6\xef\xf4\xdb\x71\xc9\x3c\x9a\xa5\xd5\x22\x8a\xd3\x6a\xd4\xc8\ +\x7d\xfd\xc7\x2c\xa9\xef\x6e\x06\x5a\x2e\x9e\xfc\xef\xbb\x34\x9b\ +\xde\xd5\x2d\x41\x96\xdc\x0c\x60\x86\x42\x33\xee\x7f\xb7\x00\xc4\ +\x96\x0a\xab\xe6\xc6\xeb\x12\x4a\xa4\x09\x4a\xce\x95\x15\x5e\xa3\ +\x19\xf6\x38\x29\x62\x1c\xc7\xcd\xe0\x63\x19\x4d\xea\x3f\x3f\xa6\ +\xf9\xbf\x8a\x6c\x5e\x13\xb4\xe0\x07\xd0\xbc\x4e\xd2\x49\x85\x35\ +\x96\xdd\xe2\x2f\xe8\x57\xfa\x32\x28\x5d\xf7\xb4\x80\x9e\x16\x69\ +\x8c\x98\x58\x6a\xb7\xfa\xa8\x9f\xd1\x0c\x5d\x55\xb1\xb4\x55\xd0\ +\x19\xed\xe2\xcf\x27\x18\x6a\x30\x0e\x04\x87\xff\x58\xaf\xc6\xf3\ +\x52\x83\x81\x9b\xe1\x83\xf6\xea\x7c\x43\x63\x1d\x68\x66\x35\x82\ +\xb0\x28\xb3\x69\x06\xd6\xf1\x7a\x9c\x11\xe1\x5f\xdd\x3a\x30\xe9\ +\xd6\xdc\x84\xe6\xc0\xd1\xd1\x09\xb3\xdf\xae\xa8\xac\x3d\x3e\x10\ +\x4a\x14\x4e\x6a\x35\x90\xed\xa1\x74\x67\xc8\xbc\xa6\xfa\x2e\x43\ +\xad\xcc\xbd\xdd\xcc\x31\xcf\xbd\xc8\x00\xda\xf1\x9f\xcf\x00\x10\ +\x3b\xd2\xa8\xfc\x7b\x19\x25\x19\x44\xcc\xf6\xd4\xbb\x25\x82\x49\ +\x19\xea\x15\x6b\xa0\x5e\x55\x17\x8b\x46\x7b\x45\x68\x90\x80\x96\ +\x0e\xdd\x60\x53\x50\xd5\xcf\x79\xba\x2c\x0b\xe3\x22\x2f\xca\xf1\ +\xbb\x89\x7f\x5d\x79\x51\x01\xd1\x23\xab\x9f\xc7\xac\x55\xa5\x98\ +\x4c\xaa\x14\xa2\xc5\x06\xa6\x87\xba\xb3\x21\x3f\xbf\x3b\xda\xd3\ +\x1d\xdb\xd8\x64\xd4\x9d\xfa\xb9\x96\x32\x94\x1d\xb5\x93\xa1\xe2\ +\xed\xac\x64\xa8\x7a\x23\x1b\xe1\xaf\x28\xdf\xb1\x51\x83\x3e\xe8\ +\x2e\x07\x32\xdd\x0c\xa2\xfc\x31\x7a\xae\xd6\x3d\xf8\x15\x6c\x7c\ +\x57\xa6\xb0\xe2\xbe\xeb\xc5\x5d\xdb\xdc\xdd\x4e\x84\x6e\xc5\xa5\ +\xe9\x4a\xf8\x65\x9e\xd5\xb0\xb8\xde\x57\x69\xf9\x07\x2e\x50\xff\ +\x9c\x7f\xa9\xd2\x1d\xad\xcf\x65\x34\xaf\x60\x35\x9c\xdd\x0c\x66\ +\x51\x5d\x66\x4f\xef\xd9\x90\xe2\x9b\x68\x67\x15\x77\x12\xbe\x73\ +\xca\x89\xe5\x56\x8b\xcb\x75\xf5\x18\x38\x07\x0b\x11\xe1\x5a\xd2\ +\x0d\xf8\x62\x60\xab\x36\x9c\x18\x67\xc4\x66\xbc\x93\x5e\xdd\x49\ +\xaf\x6e\x09\x71\x5c\x12\x21\x15\x83\x19\x9d\x4f\x50\x43\xed\x71\ +\xd8\x31\xfa\x86\xb0\x63\x6f\x45\xcd\x73\xa2\xb8\x6d\x91\xe1\xd7\ +\x8b\xe2\x56\xcb\x90\x86\xf4\x28\x50\xac\xd6\xa1\x0a\x4d\xaf\xe7\ +\x0f\xfa\x94\x6a\xe6\x62\xba\x05\xa0\xab\x13\xd0\x62\xb5\x0d\x4d\ +\x8b\xe9\x6d\xf7\x1f\xec\x51\x18\x17\x4f\x6e\xf7\xf6\xf8\xbd\xd1\ +\x5c\x18\x73\xd4\x5a\x30\x84\xf3\x2d\x35\x99\x44\x11\x7d\x89\xa5\ +\x84\xed\x63\xe4\x11\x2b\x4d\xa2\xc9\x84\xff\x38\x2b\x79\x5c\x9d\ +\x86\xaa\xb7\xc6\xd4\x5b\x21\xea\x9c\x20\xe4\xe8\x2f\x9c\x4a\x2a\ +\x2a\xf7\xae\x54\xbb\xde\xb8\xcd\xa3\xf8\xeb\xd6\x1a\x71\x75\x04\ +\x43\x0d\x00\x14\x55\x27\x2c\x54\xa0\xd5\x17\x76\xc0\x0e\x07\x61\ +\xd2\x33\xb0\x43\xa0\x7c\xf9\xcc\x58\xff\xcc\xf8\xeb\x91\x57\x32\ +\x58\x14\xc4\x71\xfa\x4a\x11\xb2\x50\xbc\x25\x81\xa5\x82\x91\xd9\ +\xb7\xa2\x70\x7f\xfa\x7a\x5a\x52\x89\x39\x1d\x63\x92\x28\x6d\x65\ +\x37\xfd\xa3\xc4\x3a\x4e\xdd\x66\x89\x80\x44\x0f\x32\xc2\x16\xe8\ +\xe2\xbe\xba\x71\x6f\x5d\x34\x4d\x94\x4d\xcb\x84\x1f\x73\x17\x53\ +\x4a\xeb\xc3\x56\xfa\x44\xf1\xfd\xb2\xf4\x0e\x9b\xb7\x87\x9b\x77\ +\x11\xbe\xb7\x9c\x40\xe8\xf2\xd5\x8b\xf4\xa6\xb0\xe5\xa8\xae\x4f\ +\x5e\xc9\x51\x1a\x6d\x6d\xda\x51\xf8\xa0\xa7\x4c\xc7\x53\xbb\x95\ +\x8f\xb8\xea\x28\xb3\xc0\x96\xe6\xc8\x7e\xf0\x3b\x5d\x65\x8e\xec\ +\x00\x7f\x9c\xab\x4e\x8d\x42\x0c\xd0\xba\x17\xd3\xa7\xee\x54\x0e\ +\x8d\x98\xae\x47\xdc\x67\x21\xad\xe5\x39\xb1\xfb\xdd\xc4\xe2\xfb\ +\x45\x06\xeb\xef\x5e\xbf\x2c\x38\x01\x42\xad\x26\xb0\xf7\x93\xaa\ +\x83\x70\xa1\x08\xec\x2d\x1d\xeb\x6e\x45\x85\x20\x0e\xba\x6a\xa5\ +\xab\x71\xaf\x6e\xdc\xab\xbb\x7f\xdf\x4c\x41\x95\x4a\xc7\x9d\xf1\ +\x1b\x68\x98\xab\x64\x4c\xf0\x61\xa8\x38\x81\x0d\x3c\x97\x6e\x18\ +\x1a\xd8\x49\x0b\xc1\x94\xbd\xdc\x69\xf0\x30\x61\x77\xf7\xfc\x52\ +\xaa\x0d\xf9\x0e\x1c\x1e\x70\xd5\x62\xe3\xbe\x43\x88\xb3\xf3\x17\ +\x6c\xf5\x0c\xa0\x44\xf8\x7e\x25\x9c\x72\x7d\x80\xee\x3d\x9d\xdf\ +\xfa\xd7\x2b\xa1\x94\xeb\x17\x9e\xff\xe0\xc1\x86\x21\x46\x31\xc3\ +\x44\x17\xa4\x20\xd4\x8c\x5b\xd5\x01\xa9\x25\x96\x4b\xc9\xb6\x30\ +\xba\xa3\x1a\xf7\xa9\x1e\x86\xa8\xe5\xa6\x05\x51\xc1\x8d\x36\xc3\ +\x50\x5a\x02\xc1\x5c\x3b\x0f\x51\x46\xb4\x55\x4c\xbc\x0a\x44\xe5\ +\x49\x10\xd5\x3f\x04\xa2\xfa\x1c\x88\x46\x02\xdf\xaf\x05\x51\x73\ +\x1e\x44\x65\x8c\xef\xd7\x82\xa8\x79\xcd\xb3\x22\xe9\xa4\xd9\x75\ +\xce\xaf\xb2\x4d\x93\xd4\xa9\x33\x40\x44\xa9\xba\xdd\x59\x8f\x4f\ +\xdd\xa8\x41\x5f\xe6\x2c\xd4\xc4\x2c\x15\x13\x73\x42\x6f\x7d\x9b\ +\x27\x89\x59\xda\xeb\xc1\x44\x51\xfe\x13\xc2\xe4\x2c\x03\x18\xfd\ +\xf3\x19\x60\x0f\x4f\xbe\xe3\x2e\x03\xf2\x20\x33\x38\x40\x38\xae\ +\x36\xcb\xe3\x13\x83\x35\xcf\x49\xc2\x94\x69\xed\x09\x9f\x41\xca\ +\xac\x22\x4c\xd0\xd6\xea\xc2\x6f\x06\x52\x48\xc8\xe1\xda\xf1\xea\ +\x19\xa4\x4c\x52\xc2\xb9\x11\x9b\xd9\x7f\xef\x05\x09\xac\xa2\x92\ +\x0b\x66\xb9\x5e\xdd\x94\xac\x7f\x72\x58\xa1\xb9\x51\x90\xe9\xe1\ +\xa2\xac\x61\x2e\xfa\xf2\x05\x41\x07\x4d\x74\x7a\x18\xe0\xa9\xe5\ +\xf4\x94\x30\xd0\x1b\x74\x20\x2d\x3d\x2b\xe8\x28\x3e\x99\xf4\x9c\ +\xd8\x9e\x18\x74\xb8\x7a\xcd\xb5\x49\x31\x79\xc2\x73\x01\xff\x6f\ +\x9c\x3b\xc7\x00\x9c\xff\xca\x17\x39\x78\x2d\x7a\xfc\xbe\xcf\x5f\ +\xc7\x1f\x39\x04\x7a\xed\xfb\x78\x79\x7e\x77\x3f\xfa\xd2\x4f\x09\ +\xfa\x13\x92\xe5\x07\x5d\xb6\xb7\x3d\xd8\xb3\xaf\x11\x62\x77\xb7\ +\xf5\x2b\x5e\xb7\x37\xa6\x3a\x8d\x82\xe1\x91\xa3\xd2\x57\x27\x61\ +\xf8\x82\x8b\xfe\x1f\x4f\x43\xf3\x13\x26\xca\xaf\x9f\x27\xfa\x0b\ +\x19\x31\xd8\x0f\x3e\xa9\xf4\xc6\x90\x3e\x53\xe4\x92\x48\xc9\x5a\ +\x57\x0a\x98\x29\x22\x13\xa4\xe0\xad\x13\x3c\x4c\x15\x85\x52\xc4\ +\xe1\xe9\x7d\x27\x55\xdc\xd5\x3d\x4c\xee\x17\x3c\x7a\xe0\x27\x75\ +\xd2\x1d\xd3\x9b\xde\x11\x4b\xf5\x76\x17\x4c\xfd\xc6\xea\xb7\xff\ +\x1e\x5f\xf5\xfb\xb5\x17\x03\xa7\x9f\x5d\x6d\x5d\xd0\x0a\x47\x5f\ +\x82\xd3\xc3\xc7\x57\xd7\x23\x7c\xf6\xd6\x7f\x5b\x73\x0b\x9f\xdc\ +\x4d\x1e\xb2\xf4\xf1\x62\x3d\x94\xdb\x68\x3d\xb6\x45\x34\x4d\xbd\ +\xb9\xa1\xe7\x65\xbc\x5a\x15\xdc\x16\x65\x92\x96\x4d\x91\xf6\xaf\ +\x4e\xd1\xca\x23\xcb\x27\xd2\x2f\xba\xa3\xc3\x56\xd7\xe5\xb4\xbf\ +\xbc\xba\x8b\x92\xe2\x11\x2c\xbd\x5d\xf8\xad\x28\x66\x78\x27\xa4\ +\xb6\x0b\xfc\x89\xf9\x8e\xba\x3f\xb9\xdc\x95\xde\x97\x25\x98\x2f\ +\xcc\xa3\xe7\x14\x26\xe0\x3f\x1a\xb8\x55\x77\xc5\xe3\xb4\x44\x43\ +\xd4\xe5\x7d\xba\x5d\x33\x29\xe2\x7b\x7c\xb2\x3d\xbc\x5f\xba\x74\ +\xf5\x3c\x75\x4b\x03\xeb\x86\xb7\xb7\xc5\x53\x7f\x03\x8f\xd9\x1c\ +\x26\x16\xae\x9e\xd0\x66\xdc\xee\x4c\x7f\xa5\xd1\x3c\xb3\x6d\x94\ +\xdd\xa3\xf1\xb4\xe1\xe4\x76\x11\x1a\xde\xed\x29\x9b\x45\x4f\xd9\ +\x2c\xfb\x96\x26\x9b\xc5\xec\x7a\x96\xd6\x51\x12\xd5\xd1\x06\x05\ +\x8d\x44\x68\xd6\xec\x07\xaf\xcb\x64\x32\xfe\xf7\xc7\x4f\x6b\x42\ +\xc7\xf1\xf8\x3f\x45\xf9\x75\x43\x53\x54\x88\x6e\x8b\x7b\x18\xf6\ +\x3a\xce\xe0\x03\xe0\xf1\x18\xb3\x8e\xa8\xfe\x90\xcd\xc0\xb7\xf8\ +\x6c\xfd\x5f\x9f\x66\x39\xe0\x71\x5d\xd0\x51\xc6\x80\xbf\x69\x74\ +\xd9\x6c\x99\x2e\x9f\x9d\xef\xfd\x73\x83\x24\x9e\x65\x58\x69\xf4\ +\x47\x9d\xe5\xf9\xef\xd8\x49\x2b\xf0\xac\x1a\xcd\xea\x3c\xfd\xe0\ +\xfb\x5c\x7e\x6d\x66\x31\x5a\x4d\x63\x7d\x89\xb6\x99\xe5\xf5\xa8\ +\x31\x83\xff\x35\xdd\x98\xa7\x03\x99\xb5\x85\xf3\xe8\x36\xcd\x6f\ +\x06\xff\xc0\xc2\x60\xa7\x74\x5a\x16\xf7\x8b\x59\x91\xa4\xab\xea\ +\x8d\x59\xa7\xcd\x38\xeb\x4d\x7e\xe6\xbf\xe6\x51\x9d\xbe\x0f\x05\ +\x07\x8e\x48\xc3\xd8\x30\x64\x82\x11\x2e\xa5\xbc\xec\xc4\x8e\xa9\ +\xc4\xbb\xb3\xf5\x7c\x16\x51\x7d\xd7\x0d\xb3\x28\x91\x92\xf3\xce\ +\x93\xba\xe8\xe3\x40\x48\x4d\x38\xb5\x4a\x0f\x61\x37\x4b\xa8\x62\ +\xce\x05\x21\x73\xc4\x6a\xa5\xdd\x90\x19\x22\x9c\xd3\x32\x10\x84\ +\x3a\xc3\xcc\x50\x11\x2a\x20\x39\x0c\x18\xd4\x72\x8e\x2b\x1c\x11\ +\x84\x47\x61\x75\xc0\x38\x71\x9c\x2a\x3e\x84\x32\x6a\x99\x74\x01\ +\xe7\x44\x71\x69\x2d\x28\x19\xa2\x0c\xc4\xb4\x20\x14\x18\x20\xc5\ +\x30\x94\x44\x5b\x6d\x2c\xf4\x65\x89\xb3\xce\x40\x35\x41\x2c\xac\ +\x04\x1a\x44\x50\x0f\x72\x42\x9c\xae\xc6\xc3\x13\x27\x83\x6f\xc1\ +\x2c\x08\x21\xe4\x1a\x69\x87\x10\x7a\x1d\xe4\xaa\x0e\x7b\x64\xd4\ +\x40\x6b\x0c\x8c\x62\x8c\x52\x8d\x84\x43\xcd\x46\x14\x42\x4c\xe6\ +\x0c\xb6\xfe\x43\xea\x5b\x11\x10\x39\x84\xe3\x7a\x68\x09\x10\x4b\ +\xb2\x20\x0e\x20\xff\xc5\xc6\x21\xf1\x85\x04\xd8\x11\x63\x9d\x35\ +\x30\x0a\x45\x84\xa6\x38\x30\x6f\x7d\x0e\x22\x07\x12\xa3\x1c\xa4\ +\xcb\x5c\x40\x1e\x8b\x02\xc3\x2c\xa8\x84\x96\x58\xe8\x0c\xa6\x03\ +\xae\x12\x5a\x73\xd9\x12\x81\x31\xa9\x93\x0c\x3b\x61\x30\x6d\xc9\ +\xc0\x8e\x38\x45\xf0\x19\xeb\x13\xe5\x81\x3f\x5d\xd2\x7a\xc8\x21\ +\x2d\x97\xd6\xe1\x10\x09\xd3\x60\xd4\x61\x08\x63\xb1\xc2\x82\x3f\ +\xc0\x7a\x02\x7a\x81\x21\x81\xa9\x61\xe6\x90\x3c\x49\xee\x1a\x81\ +\x0e\xc0\x09\x82\x0a\x03\x96\x48\x43\x15\x38\x42\x19\xa3\x0c\x67\ +\xc7\x34\x3a\xab\xf1\xb0\x83\x6a\x4e\x04\x60\x2e\xa1\x24\x75\xd8\ +\x01\x33\x8a\x7b\x0d\xc0\x85\x61\xde\x94\x16\x0c\x66\xfb\x44\x79\ +\x00\x9e\x84\x85\xd8\x7a\x97\x1a\x23\xb5\x0a\xbe\xed\x2e\xdb\xeb\ +\xf4\x96\xe8\xab\x09\x10\x14\xcf\xaa\xfd\xe5\x02\xfe\x68\x2d\xde\ +\x55\x5d\x16\x5f\xd3\xf1\xbc\x98\xb7\xe9\xbb\x05\xe8\x55\x9b\xcb\ +\x76\x56\x49\x74\x7f\x3b\x4d\x2f\xcb\x9f\xcb\x90\x3b\x66\xc4\x09\ +\x83\x77\xa3\x8d\x5a\x88\x4b\x2a\xf0\x73\x7c\x7b\x5f\xd7\x6d\xd9\ +\x7f\x8b\x6c\x3e\x86\xb8\x92\x96\x8d\xd4\xff\xc8\x21\x78\xd6\x63\ +\xd9\xc8\xb6\x7b\x0d\x93\x08\xd6\xae\xb2\x8c\x9e\x97\xf3\xd8\x26\ +\x1c\x07\xc2\x08\x01\x38\x66\x4a\x80\xad\x81\x55\xde\x1b\x46\x7b\ +\xc0\x1b\x02\x50\xe5\x9e\x4d\x4a\x0a\x66\x91\x4d\x20\x00\x58\x20\ +\x51\x10\x50\x4b\xca\x51\x6d\x18\xa0\x00\x88\x0f\xa8\x40\x32\x39\ +\xf0\x62\x88\x8c\x13\x4c\x68\x24\xae\x72\xcc\x32\x4f\x26\xf8\xa2\ +\xad\x27\x13\x10\x9d\x82\x1a\x7c\x13\xb0\xf0\x88\xa1\x6f\x09\x86\ +\x80\xbc\xa4\xce\x22\xc0\x80\xe1\xc0\x59\xdd\xf1\x62\x3b\x84\xb4\ +\x9d\xbb\xce\x21\x20\xa4\x61\xf4\x85\xe5\x30\x6e\x5e\x3f\xaf\xff\ +\x2c\x10\x56\x08\xf0\x8c\xd5\x04\x23\x97\xc2\xe0\x01\xe6\x34\x60\ +\x63\x60\xac\xa5\x82\xaf\x82\x8a\x04\xe6\x1b\x86\x41\x12\xb9\xad\ +\x20\x8e\x22\xdb\x19\x7c\x6b\x8b\x80\x14\x12\x28\x07\xfa\x40\x2b\ +\xca\x60\x76\xc0\x4a\xc6\x2c\xe7\x01\x46\x13\xab\x1d\x06\x2b\x6b\ +\xc1\x79\xa8\xcc\x94\x31\x06\x79\xca\x95\x81\xda\x18\xa5\x94\x03\ +\xfa\x61\x98\x52\x40\xe2\x3e\x51\x0e\x43\xc1\x3f\x9e\x41\xa8\x18\ +\x23\x20\xbc\xad\xa2\x9e\x81\x30\xc0\x0d\x06\x50\x03\xd4\x16\x3e\ +\xf4\x73\xa6\x8d\x1b\x7a\x8a\x6b\x8a\xab\x01\x25\x56\x49\x40\x10\ +\x06\x21\xe3\x03\x34\x84\x1f\xee\xf0\xe6\x16\xc2\x07\x20\xca\xae\ +\x96\x0c\x4a\x65\x4b\xa4\x09\x68\x2b\x05\xf1\x33\x0d\xb5\x6f\x46\ +\x18\xce\x31\xc2\x72\xa6\xb8\xf5\x12\x25\x04\x55\x28\x71\x80\xc3\ +\x7d\x98\x93\x47\x31\x57\x55\xfe\xdf\x7e\xcc\xd5\x3d\xc7\xe8\x96\ +\x03\xe4\xc1\x3e\xab\x13\x10\x89\xb7\x6d\x56\xb3\xa1\x61\x7e\x9e\ +\x60\x2c\x6d\x08\xc6\x5f\xab\x2e\x77\x51\xa0\x7c\xa6\xaf\x86\x1c\ +\x1c\xa9\x0d\x65\x3a\xe0\x0e\xd7\x27\xca\x57\x81\xde\xe0\x5f\xa1\ +\xe0\x62\xa5\x80\xbf\xaa\x25\x0a\xd7\xb2\xce\x7c\x9b\x24\x01\x46\ +\x9a\x14\xeb\xf4\xac\x4f\xa1\xb8\x9f\x27\x7b\x4b\x27\x90\x33\x54\ +\x99\x2f\x6f\x65\x9f\x1d\xd3\x45\xe5\x14\x36\x36\x21\x83\x35\x99\ +\x1a\xa7\xc5\x1e\x1d\xd8\xd0\x20\x9e\x99\x81\xd0\xe2\xfa\x74\x4a\ +\x8e\xd7\xff\x8a\xc2\x2a\xda\x79\x1e\x7a\xa3\x80\x77\x25\x06\x30\ +\xad\xad\xd0\x7d\x0a\x98\x9c\x73\x0e\xf6\x36\x56\x99\x5e\x05\xcc\ +\xe9\x25\xf5\x0a\xbd\x2d\xe0\x54\x01\x02\xa2\x0f\x39\x4a\xf5\xfc\ +\x1d\xd4\xfa\xae\x74\xbd\xfe\x8c\x21\x8f\x7c\xff\x6e\x77\xff\x75\ +\xb9\x1d\x95\xfc\xcf\xf2\x3e\x4f\xc7\xe9\x43\x0a\xf8\x4b\xba\x71\ +\x4a\x76\xe3\x94\x80\xd4\x05\xa5\x4a\x9f\x14\xa7\xbc\x57\xbf\x23\ +\x4e\xb5\xa5\xcb\x0d\xf4\x98\x5e\xcd\xa2\xf2\x6b\x5a\x2e\xcb\x1f\ +\xb2\x2a\xbb\xcd\x72\x6c\xc2\x7f\xcd\xd3\xab\x24\xab\x16\x90\x88\ +\x8e\xb3\x39\x0e\xe3\xaa\x78\x48\xcb\x49\x5e\x3c\xae\xcb\xd3\x79\ +\x04\x1f\xe1\x6d\x14\x7f\x9d\xfa\xf1\x8d\xa3\x18\x76\x3f\xf7\x98\ +\x96\xf6\x39\x63\x79\x4e\x53\xd5\x51\xd9\xda\x85\x4f\x97\x79\x34\ +\x7c\x5c\x63\xde\xff\xe1\xe2\x7f\x6b\xba\x47\x4a\ +\x00\x00\x0f\x4d\ +\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\ +\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\x30\x33\x37\ +\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\x36\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x75\x70\x67\ +\x72\x61\x64\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\x3e\x0a\x20\x20\x3c\x64\x65\ +\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\ +\x33\x30\x33\x39\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\x34\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\ +\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\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\x34\x33\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\x33\x37\x39\x63\x66\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\x38\ +\x34\x35\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\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x33\x38\x34\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\x38\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x78\x31\x3d\x22\x33\x37\x30\x39\x2e\x33\x32\x39\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x31\x32\x38\x36\x2e\x37\ +\x32\x39\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\ +\x33\x39\x33\x35\x2e\x35\x32\x35\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x79\x32\x3d\x22\x31\x30\x37\x36\x2e\x36\x31\x37\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\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\ +\x30\x34\x35\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\x33\x37\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x31\x35\ +\x2e\x32\x39\x38\x32\x35\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x33\x37\x2e\x36\x36\ +\x30\x39\x37\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\x36\x34\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\x37\ +\x32\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\x30\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\x32\x35\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\x30\x34\x32\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\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\ +\x35\x33\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\x75\x70\x67\x72\x61\ +\x64\x65\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\x38\x2e\x37\x31\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\x38\x2e\x37\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\x31\x37\x33\x31\x31\x34\x36\ +\x2c\x30\x2c\x30\x2c\x30\x2e\x31\x37\x33\x31\x31\x34\x36\x2c\x2d\ +\x36\x33\x35\x2e\x32\x32\x30\x34\x38\x2c\x2d\x31\x36\x38\x2e\x35\ +\x33\x36\x37\x31\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\x64\x3d\ +\x22\x70\x61\x74\x68\x33\x38\x34\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x33\x38\x37\x35\x2e\x39\x33\ +\x31\x31\x2c\x31\x30\x32\x38\x2e\x30\x39\x36\x31\x20\x4c\x20\x33\ +\x37\x32\x36\x2e\x34\x33\x31\x31\x2c\x31\x31\x38\x33\x2e\x36\x35\ +\x38\x36\x20\x4c\x20\x33\x38\x31\x31\x2e\x32\x37\x34\x38\x2c\x31\ +\x31\x38\x33\x2e\x36\x35\x38\x36\x20\x4c\x20\x33\x38\x31\x31\x2e\ +\x32\x37\x34\x38\x2c\x31\x33\x32\x33\x2e\x30\x36\x34\x39\x20\x4c\ +\x20\x33\x39\x33\x38\x2e\x35\x35\x36\x31\x2c\x31\x33\x32\x33\x2e\ +\x30\x36\x34\x39\x20\x4c\x20\x33\x39\x33\x38\x2e\x35\x35\x36\x31\ +\x2c\x31\x31\x38\x33\x2e\x36\x35\x38\x36\x20\x4c\x20\x34\x30\x31\ +\x35\x2e\x33\x33\x37\x34\x2c\x31\x31\x38\x33\x2e\x36\x35\x38\x36\ +\x20\x4c\x20\x33\x38\x37\x35\x2e\x39\x33\x31\x31\x2c\x31\x30\x32\ +\x38\x2e\x30\x39\x36\x31\x20\x7a\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\x30\x37\x39\x32\x39\x35\x34\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\x6e\x6f\x6e\x7a\x65\x72\x6f\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\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\ +\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\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\x64\x3d\x22\x72\x65\x63\x74\x33\x30\ +\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ +\x4d\x20\x33\x38\x34\x38\x2e\x36\x38\x37\x35\x2c\x39\x39\x39\x2e\ +\x38\x34\x33\x37\x35\x20\x4c\x20\x33\x36\x39\x39\x2e\x31\x38\x37\ +\x35\x2c\x31\x31\x35\x35\x2e\x34\x30\x36\x32\x20\x4c\x20\x33\x37\ +\x38\x34\x2e\x30\x33\x31\x32\x2c\x31\x31\x35\x35\x2e\x34\x30\x36\ +\x32\x20\x4c\x20\x33\x37\x38\x34\x2e\x30\x33\x31\x32\x2c\x31\x32\ +\x39\x34\x2e\x38\x31\x32\x35\x20\x4c\x20\x33\x39\x31\x31\x2e\x33\ +\x31\x32\x35\x2c\x31\x32\x39\x34\x2e\x38\x31\x32\x35\x20\x4c\x20\ +\x33\x39\x31\x31\x2e\x33\x31\x32\x35\x2c\x31\x31\x35\x35\x2e\x34\ +\x30\x36\x32\x20\x4c\x20\x33\x39\x38\x38\x2e\x30\x39\x33\x38\x2c\ +\x31\x31\x35\x35\x2e\x34\x30\x36\x32\x20\x4c\x20\x33\x38\x34\x38\ +\x2e\x36\x38\x37\x35\x2c\x39\x39\x39\x2e\x38\x34\x33\x37\x35\x20\ +\x7a\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\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x38\x34\x37\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\x6e\x6f\x6e\x7a\x65\x72\x6f\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\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\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\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\x12\xd3\ +\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\x31\x20\x72\x39\x37\x36\x30\x22\ +\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\ +\x6e\x61\x6d\x65\x3d\x22\x53\x6b\x65\x74\x63\x68\x65\x72\x5f\x53\ +\x6b\x65\x74\x63\x68\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\x0a\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\x6d\x65\x64\x69\x61\x2f\ +\x64\x61\x74\x61\x2f\x59\x6f\x72\x69\x6b\x2f\x46\x72\x65\x65\x43\ +\x41\x44\x2f\x69\x63\x6f\x6e\x73\x2f\x53\x6b\x65\x74\x63\x68\x65\ +\x72\x2e\x70\x6e\x67\x22\x0a\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\ +\x34\x35\x22\x0a\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\x34\x35\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\x30\x30\x31\x39\x61\x33\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\x30\ +\x30\x36\x39\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\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\ +\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\x33\x33\x37\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\x33\x38\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\ +\x3d\x22\x39\x30\x31\x2e\x31\x38\x37\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x79\x31\x3d\x22\x31\x31\x39\x30\x2e\x38\x37\x35\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x31\x32\x36\x37\ +\x2e\x39\x30\x36\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\ +\x3d\x22\x31\x31\x39\x30\x2e\x38\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\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\x31\x2c\x30\x2c\x30\x2c\x31\x2c\x32\x31\x39\x39\ +\x2e\x33\x35\x36\x2c\x30\x29\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\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\x2d\x31\x2e\x34\x33\x30\x37\x34\x39\x39\x2c\x2d\ +\x31\x2e\x33\x36\x30\x35\x31\x35\x36\x65\x2d\x37\x2c\x2d\x31\x2e\ +\x32\x30\x32\x37\x31\x33\x65\x2d\x38\x2c\x30\x2e\x31\x32\x36\x34\ +\x38\x30\x31\x2c\x32\x36\x37\x34\x2e\x37\x34\x38\x38\x2c\x31\x32\ +\x34\x34\x2e\x32\x38\x32\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\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\ +\x33\x2e\x38\x38\x39\x30\x38\x37\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x39\x2e\x35\ +\x32\x36\x33\x30\x33\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x32\x35\x2e\x37\x37\x30\x35\ +\x36\x36\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\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\x37\x35\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\x30\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\x32\x32\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\x72\x65\x63\x74\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\x6e\x6f\ +\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x66\ +\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\ +\x39\x2e\x39\x34\x32\x34\x36\x31\x30\x30\x39\x39\x39\x39\x39\x39\ +\x38\x38\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ +\x61\x70\x3a\x72\x6f\x75\x6e\x64\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\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x38\x36\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\ +\x3d\x22\x32\x37\x39\x2e\x34\x36\x39\x33\x39\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x34\ +\x32\x2e\x34\x37\x32\x36\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x78\x3d\x22\x39\x30\x38\x2e\x34\x35\x30\x39\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x31\x36\x38\ +\x2e\x37\x36\x39\x38\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\x74\x79\x70\x65\x3d\x22\x61\x72\ +\x63\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\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ +\x65\x3a\x23\x30\x30\x30\x30\x66\x66\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\x72\x6f\x75\x6e\x64\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\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ +\x68\x33\x38\x36\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x33\x30\x2e\ +\x31\x38\x31\x38\x31\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\x33\ +\x2e\x32\x37\x32\x37\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\x31\x38\x31\x38\x31\x38\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\x31\x38\x31\x38\x31\x38\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x34\x38\x2e\x33\x36\x33\x36\ +\x33\x36\x2c\x33\x33\x2e\x32\x37\x32\x37\x32\x38\x20\x61\x20\x31\ +\x38\x2e\x31\x38\x31\x38\x31\x38\x2c\x31\x38\x2e\x31\x38\x31\x38\ +\x31\x38\x20\x30\x20\x31\x20\x31\x20\x2d\x33\x36\x2e\x33\x36\x33\ +\x36\x33\x36\x2c\x30\x20\x31\x38\x2e\x31\x38\x31\x38\x31\x38\x2c\ +\x31\x38\x2e\x31\x38\x31\x38\x31\x38\x20\x30\x20\x31\x20\x31\x20\ +\x33\x36\x2e\x33\x36\x33\x36\x33\x36\x2c\x30\x20\x7a\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\x37\x2e\x36\x34\x37\x31\ +\x37\x32\x36\x2c\x30\x2c\x30\x2c\x37\x2e\x33\x32\x37\x34\x37\x30\ +\x31\x2c\x39\x34\x30\x2e\x34\x33\x30\x30\x35\x2c\x39\x31\x30\x2e\ +\x33\x31\x30\x30\x32\x29\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\x06\x99\ +\x00\ +\x00\x1c\xb5\x78\x9c\xed\x59\xdd\x6f\xdb\x36\x10\x7f\xef\x5f\xa1\ +\x29\x2f\x2d\x16\x51\x22\x29\x51\x1f\x89\xd3\x87\x05\x1d\x0a\x74\ +\x18\xb0\xb6\xd8\x63\x41\x4b\xb4\xad\x45\x16\x05\x4a\x8e\xed\xfe\ +\xf5\x3b\xea\x5b\xb6\x1c\xa4\x18\x56\x60\x6b\x14\x24\x92\xee\x8b\ +\xc7\xe3\xef\xee\x28\xe6\xf6\xed\x61\x9b\x19\x8f\x42\x95\xa9\xcc\ +\x17\x26\x46\x8e\x69\x88\x3c\x96\x49\x9a\xaf\x17\xe6\xe7\x4f\xef\ +\xac\xc0\x34\xca\x8a\xe7\x09\xcf\x64\x2e\x16\x66\x2e\xcd\xb7\x77\ +\xaf\x6e\x7f\xb2\x2c\xe3\x17\x25\x78\x25\x12\x63\x9f\x56\x1b\xe3\ +\x7d\xfe\x50\xc6\xbc\x10\xc6\xeb\x4d\x55\x15\x91\x6d\xef\xf7\x7b\ +\x94\xb6\x44\x24\xd5\xda\x7e\x63\x58\x16\x68\x96\x8f\xeb\x57\x86\ +\x61\xc0\xb0\x79\x19\x25\xf1\xc2\x6c\xe5\x8b\x9d\xca\x6a\xb9\x24\ +\xb6\x45\x26\xb6\x22\xaf\x4a\x1b\x23\x6c\x9b\x83\x78\x3c\x88\xc7\ +\x7a\xf0\xf4\x51\xc4\x72\xbb\x95\x79\x59\x6b\xe6\xe5\xd5\x48\x58\ +\x25\xab\x5e\x5a\x3b\xb3\xa7\xb5\x10\x0e\xc3\xd0\x76\x88\x4d\x88\ +\x05\x12\x56\x79\xcc\x2b\x7e\xb0\xa6\xaa\xe0\xe3\x9c\x2a\x71\x1c\ +\xc7\x06\xde\x20\xf9\x3c\xa9\xe8\x90\x41\x24\x2e\x3a\x53\x73\xc7\ +\xa3\x43\xf4\x0b\xf8\xed\x15\x3a\x02\x2a\xe5\x4e\xc5\x62\x05\x9a\ +\x02\xe5\xa2\xb2\xef\x3f\xdd\xf7\x4c\xcb\x41\x49\x95\x8c\xcc\x74\ +\xc1\x9f\x8c\x3b\x59\x91\x9c\x6f\x45\x59\xf0\x58\x94\x76\x47\xaf\ +\xf5\xf7\x69\x52\x6d\x16\x26\x73\x8b\x43\xfd\xbe\x11\xe9\x7a\x53\ +\x8d\x08\x69\xb2\x30\x61\x86\x14\x07\x41\xfd\xde\xf9\x10\xf5\x40\ +\x72\x10\x25\x8d\x68\x6b\x78\xcc\x72\xd9\x54\x2b\x91\xb1\x76\x65\ +\x61\xf2\xa2\xc8\x8e\xa8\x8b\x5d\xaf\x2a\x77\x55\xb1\xab\xbe\x88\ +\x43\x25\xf2\xc6\x06\x78\x3f\x9a\x4a\xcd\xd6\x6a\x3d\xcd\xbc\x03\ +\x03\xb7\x89\x58\x95\xda\x50\xe3\xb0\x7e\xa3\x38\x74\x6a\x1e\x70\ +\x21\xea\x82\xab\x5f\x15\x4f\x52\xc0\x5a\x23\xd7\x48\x4e\x39\x94\ +\x7a\x6e\xab\x03\x5a\x65\x25\x8b\x4e\x16\xa6\x50\x1d\x33\xf0\x5b\ +\x13\xad\x58\x66\x52\x45\x57\x04\x7b\x7e\xec\xdf\xd4\x24\x09\xc1\ +\x4d\xab\x63\x84\x6f\xcc\x41\x47\xae\x56\xa5\x80\x68\x3a\x23\x5a\ +\x1d\x50\xd0\x80\xb1\x98\x69\xd8\xcf\x1f\x8d\x25\x9c\xaf\x56\xcf\ +\x18\x0d\xcf\x8f\x16\xf4\xa3\xdd\xda\xd3\x69\x3f\x1d\xa5\x6e\x69\ +\xc0\x8d\x4c\xc4\x60\x9f\x67\x7b\x7e\x2c\xfb\x41\x6a\x4c\x47\x1b\ +\x25\x20\x07\xaf\x66\xe2\xf9\x44\xb8\xbd\x30\xec\xd9\xeb\x96\xf8\ +\x39\x4f\x2b\x48\xb6\x5d\x29\xd4\x47\x0d\xd8\xdf\xf3\xcf\xa5\x38\ +\x93\xfa\xa4\x78\x5e\x42\x76\x6c\x17\xe6\x96\x57\x2a\x3d\xbc\x86\ +\x7a\xe6\x04\x60\x31\xb8\x76\xf4\x0f\xf2\x31\x61\xcc\xbd\xb6\x48\ +\x88\x98\x83\x71\x80\xaf\x69\x18\x20\xe2\xb9\xbe\xff\x66\xf0\x1d\ +\x2f\x4c\x42\x43\x82\x08\xc5\xb4\xa7\x1e\x81\x8a\x31\x03\x6a\xe8\ +\x0e\xd4\x03\x01\x59\x46\x03\x14\x7a\x83\x24\x19\x4b\xf6\xf1\xed\ +\x63\x56\x40\x26\x14\x10\x34\xa8\x5e\x9d\x4a\x9f\x0a\xd5\x51\x27\ +\xec\x54\x94\x26\xe6\x59\xdc\x1f\x8b\x2f\x07\x80\x90\x11\x19\x94\ +\xc0\x1f\x3c\x2b\x71\x6c\x24\x30\x14\x24\xb8\x39\xb3\x32\x5f\x75\ +\x5a\x3f\x61\xa6\xf5\xc0\x92\x2a\x5d\xa7\x90\x79\xb5\x1c\xc1\x88\ +\xd6\xd7\x54\x07\xd6\x72\x34\x37\xc8\xb5\x0e\xcb\xb7\xb6\x4e\xbe\ +\xfa\xa9\x9f\xa9\xce\xf8\xe4\x31\x15\xfb\x21\x43\x97\xbc\x5f\xd4\ +\x82\xaf\x45\x0d\x71\x80\xcf\xaa\xbe\x5a\xc6\x52\xaa\x44\xa8\x8e\ +\xc5\xea\x6b\xc2\x6a\xb3\xa0\xe9\x65\xaf\x4e\x26\x03\x56\x7b\xbe\ +\x33\xcf\x2f\x37\x3c\x91\x7b\x58\xd5\x53\xe6\x57\x29\x01\x58\x04\ +\xf9\xde\x29\x27\x86\xa5\x20\x1e\x40\xcd\xc5\x61\x70\xc6\x3c\x6a\ +\xa5\x80\x52\x00\x62\x78\xc6\xdc\x29\x05\xc0\xb5\x32\x7e\x14\x30\ +\x9f\xfa\xd6\x05\xb4\xdc\xc8\xfd\x5a\xe9\xb8\x54\x6a\x27\x4e\x35\ +\xa1\x66\xee\x74\x8f\xb4\x76\x4d\x6a\xb4\x95\x79\x24\xa1\x75\xad\ +\xe5\x52\x1e\xe6\x0d\xec\xd3\x1c\xe6\x69\xf5\xb5\x1e\x5f\x10\xe8\ +\x8a\xbf\x4f\xce\x22\xd2\x4a\x1c\x86\x5a\x76\xca\xd2\x73\xf7\x3a\ +\x10\x6c\x45\xc5\x13\x5e\xf1\x61\xc1\x3b\x0a\x40\x85\x76\x65\x19\ +\x9a\x72\xf4\xc7\xfd\xbb\xbe\x04\xc6\x71\xf4\xa7\x54\x0f\x43\xf5\ +\xd2\x02\x7c\x09\x45\x7f\x61\xf6\x65\x59\x17\xfb\x38\xd2\xa9\xcf\ +\xab\xbb\x74\x0b\xcb\xa8\x3b\xf0\xcf\xd0\x08\x01\x7a\x3d\x63\x22\ +\xac\x33\x6d\x30\xda\x98\x55\xa2\xe9\xb0\xb3\x9b\x92\x24\xde\xa6\ +\x5a\xc9\xfe\x58\xa5\x59\xf6\x5e\x0f\x32\x2e\xd5\x76\xeb\x68\x57\ +\x4d\x47\xf3\xb8\xb5\xbb\x89\xd6\x6f\xeb\x21\x00\x93\x05\xef\x83\ +\x97\xf1\xa5\xc8\x16\xe6\x07\xcd\x34\xce\xb8\x6b\x25\x77\xc5\x56\ +\x26\xa2\x55\xef\x02\xb7\x1e\xe7\xe1\x9a\x32\x3c\x64\x66\x75\x56\ +\x18\x1d\x84\xbd\xc0\xf7\x3c\xdc\x16\xc6\xee\xcd\xa2\xcc\xd1\xa5\ +\x91\xb1\x6b\x0b\x7b\x2e\xc2\x14\x63\xf7\xcd\xd0\xfe\x0a\x5e\x6d\ +\xa6\x8d\x44\x41\xb6\xeb\x6a\x39\xea\x2f\x40\xfd\xcd\x80\xe2\xe9\ +\xa3\x10\x7b\xe4\x1a\x3b\x75\xbd\x70\x5c\xe3\xc3\x98\x4a\x3d\x8a\ +\x98\xef\x62\x4d\x75\x5d\x0a\x43\xd1\xf0\x12\x95\x04\x04\x85\x01\ +\xf3\x35\xd5\x23\x2e\x54\x56\x87\x5c\xa2\x42\x7f\x41\x8e\x1b\xd6\ +\x16\xa0\x97\x40\xbe\x06\xda\x82\x47\x90\x4b\x1a\xbb\x83\x2c\x66\ +\x21\xa4\x66\xe3\xd9\xc8\x2e\x01\x59\xcf\x73\x4f\x7c\x98\xa5\xce\ +\xcf\xad\xa7\x7e\x1d\x85\xa5\x6d\xdf\x2b\x40\x4f\x74\xe5\xd4\xd7\ +\x8d\x7e\xe9\x1b\xb7\x83\x3c\x46\xb1\xc3\x7c\xd6\xd0\xd5\x2e\x13\ +\x91\x78\x14\xb9\x4c\x12\x68\xf1\x4a\x3e\x88\x28\x87\x5d\x78\xfb\ +\xdc\xe4\x6e\x84\xc1\x15\x50\xf2\xdc\x80\x76\x0c\xdd\x51\x01\x2b\ +\xd1\x72\x57\x55\x63\xda\x5f\x32\xcd\x23\x40\xb1\x50\x37\x5b\xae\ +\x1e\x84\x6a\xcc\x35\xcf\x16\x6c\xf3\x55\x35\xa1\x6c\xd3\x64\xf2\ +\x2e\xf2\x64\xe2\x40\x6d\x2a\x4b\xe1\x16\xb9\x1d\x2d\xe1\x50\x41\ +\x95\xe2\xc7\x89\xa4\xa6\x36\x5b\x91\xc8\xe9\x68\xc3\x7e\xe5\x31\ +\x2d\xd3\x65\x9a\xe9\x97\xfa\x31\x13\x37\x49\x5a\x16\x00\x6f\xd8\ +\xc5\x6a\xc7\x6f\x24\x6c\x1f\x57\x99\xdc\xf7\x7c\x91\x73\xb8\x59\ +\x4b\x1e\x3f\xe8\x84\x00\xc7\x78\x0c\x15\x71\x97\xc1\x27\xc9\x38\ +\x2d\x35\x3c\x47\x80\xed\x92\x48\x1c\x0a\xa9\x2a\xeb\x98\x14\xb0\ +\xcd\x06\x98\xb3\x80\x06\x7d\xed\x9e\x93\x3c\x3c\x5b\x12\x96\x4e\ +\x34\xdb\x59\x7b\x23\xb7\xc2\x3e\x42\xeb\x7c\xb0\xef\xdb\x7a\x5d\ +\xda\x1f\xf8\xd2\xbe\x57\x7c\x55\xd9\x69\x0c\x5f\x2e\x76\xbc\xe1\ +\xf9\x5a\x14\xd0\xb8\x50\x91\xaf\x47\x86\xa1\x78\x86\xa1\x87\x5c\ +\xdf\x65\xe3\xdd\x9b\x6e\x36\x54\xe3\x0f\x30\x3d\x22\x77\x75\x9a\ +\x52\x82\xa8\xcb\x5c\x7f\xc4\x6b\x8b\x3c\x28\x20\xe2\x50\x36\xce\ +\xd5\x21\x85\x99\x7b\x09\xab\x4d\x03\x9e\x62\x15\x5f\x86\x68\x87\ +\xed\x17\x94\xfe\x20\x28\xc5\x0e\x76\x50\x48\x29\x3b\x45\xa9\xe7\ +\x23\xec\x92\x60\x06\xa5\x2c\x40\x9e\x0f\x3c\x76\x8e\x52\x80\xbc\ +\xe6\xf8\xe1\x0c\x4a\x61\xcb\xe9\x5d\x46\xe9\x79\x45\x7d\x02\xa5\ +\x33\x85\x94\x40\xe7\xd3\x17\x0d\x5e\x20\xfa\xbf\x83\x68\xc0\xbe\ +\x1b\x44\xfd\xa7\x0a\xe9\x0b\x44\x5f\x20\x3a\x0f\x51\xcc\xdc\xef\ +\x06\xd1\xf0\xa9\x7d\xe9\x37\xf4\xfa\x17\x88\xfe\x50\x10\x25\x2e\ +\xf9\x5e\x10\x75\xf1\x65\x88\xbe\x54\xd1\x7f\x11\xa2\x27\x9f\xf8\ +\xff\x25\x88\x0e\x87\x8b\x32\x11\xfa\xac\xa6\x5c\x98\x71\x7b\x9d\ +\x80\x4c\xcf\x12\x40\x46\x47\xe4\xe6\xd8\xc2\x73\x43\xe4\x06\xae\ +\x7b\x8d\x31\x7c\x64\x85\xcc\x6f\x8e\x17\x06\x6a\xc8\x90\x17\xd6\ +\x44\x98\x16\x82\xbd\x6f\x70\x81\x48\x74\x56\x50\x27\x98\xea\xcf\ +\x53\xa9\x03\x5a\x21\xa9\x8f\x11\x18\xd1\x7d\x80\xf9\xfa\xc8\x01\ +\xcc\x9e\x48\xf6\x5e\x5d\x3a\x5a\xd8\xa9\xec\xf5\xe9\x91\xbb\x17\ +\x86\x6f\xfe\xe1\xf7\x9b\x83\x02\x58\x47\x1c\x7a\xdf\x92\x33\xdf\ +\x8c\xfa\xde\xbd\xd1\xff\x25\xd6\xcd\x19\x1a\xdc\x6e\xf5\xa9\xde\ +\xdd\xab\xbf\x01\x27\x65\xb4\xab\ +\x00\x00\x05\xc0\ +\x00\ +\x00\x13\xbe\x78\x9c\xd5\x57\x59\x73\xdb\x36\x10\x7e\xf7\xaf\x60\ +\xe9\x97\x64\x2a\x92\x00\xc1\xdb\x92\xf3\x10\x4f\x3b\x99\x49\x27\ +\x33\x4d\x32\x7d\xcc\x40\x24\x24\xb1\xa6\x08\x15\x04\x2d\x29\xbf\ +\xbe\x0b\xf0\x96\xe4\xc6\x69\xe2\x1e\xf4\x58\x22\xf6\xc0\x62\xf7\ +\x5b\xec\xae\xe6\xaf\x0e\xdb\xc2\x78\x60\xa2\xca\x79\xb9\x30\xb1\ +\x8d\x4c\x83\x95\x29\xcf\xf2\x72\xbd\x30\x3f\x7e\xf8\xc9\x8a\x4c\ +\xa3\x92\xb4\xcc\x68\xc1\x4b\xb6\x30\x4b\x6e\xbe\xba\xbd\x9a\xff\ +\x60\x59\xc6\x6b\xc1\xa8\x64\x99\xb1\xcf\xe5\xc6\x78\x53\xde\x57\ +\x29\xdd\x31\xe3\xc5\x46\xca\x5d\xe2\x38\xfb\xfd\xde\xce\x5b\xa2\ +\xcd\xc5\xda\x79\x69\x58\xd6\xed\xd5\xd5\xbc\x7a\x58\x5f\x19\x86\ +\x01\x76\xcb\x2a\xc9\xd2\x85\xd9\x2a\xec\x6a\x51\x68\xc1\x2c\x75\ +\x58\xc1\xb6\xac\x94\x95\x83\x6d\xec\x98\x83\x78\x3a\x88\xa7\xca\ +\x7a\xfe\xc0\x52\xbe\xdd\xf2\xb2\xd2\x9a\x65\x75\x3d\x12\x16\xd9\ +\xaa\x97\x56\xa7\xd9\x13\x2d\x84\xe3\x38\x76\x90\xeb\xb8\xae\x05\ +\x12\x56\x75\x2c\x25\x3d\x58\x53\x55\x38\xe3\x25\x55\x17\x21\xe4\ +\x00\x6f\x90\x7c\x9a\x54\x72\x28\x20\x14\x8f\x1e\x46\x73\xc7\xd6\ +\x21\xfc\x3b\xf8\xef\x15\x3a\x82\x5d\xf1\x5a\xa4\x6c\x05\x9a\xcc\ +\x2e\x99\x74\xee\x3e\xdc\xf5\x4c\x0b\xd9\x99\xcc\x46\xdb\x74\xd1\ +\x9f\xd8\x9d\x40\x52\xd2\x2d\xab\x76\x34\x65\x95\xd3\xd1\xb5\xfe\ +\x3e\xcf\xe4\x66\x61\x06\xde\xee\xa0\xd7\x1b\x96\xaf\x37\x72\x44\ +\xc8\xb3\x85\x09\x1e\x12\x4c\x02\xbd\xee\xce\x90\xf4\x99\x84\x6c\ +\xe2\x36\xa2\xed\xc6\x63\x96\x17\xd9\xae\x21\xe2\x08\xc7\x53\xed\ +\x8c\xa7\xea\x48\x0b\xf3\x4e\xd0\x95\xfc\xf4\x6e\xb5\xaa\x98\xb4\ +\x4b\x2e\x6d\x30\x66\x7f\xce\x77\xd3\x1d\x79\x2d\x77\xb5\xfc\xc4\ +\x0e\x92\x95\xcd\xd6\xe0\xd4\xc8\x43\xcd\xd6\xaa\x13\xef\x46\xd9\ +\x8e\xcd\x5b\xa0\xcc\x33\xb6\xaa\x14\xa7\x71\x4c\xad\xc0\xb3\x48\ +\xf3\x80\x0b\xe8\x30\x2a\x7e\x16\x34\xcb\x21\x27\x1b\xb9\x46\x72\ +\xca\x21\x91\x87\x5b\x1d\xd0\xaa\x24\xdf\x75\xb2\xe0\xa2\x3c\x16\ +\xe0\x97\x22\x5a\x29\x2f\xb8\x48\xae\x51\x80\xe3\x14\xdd\x68\x12\ +\x07\x10\x72\x79\x4c\xf0\x8d\x39\xe8\x70\xed\x3e\xc4\x6b\x44\xd3\ +\x81\x07\x0d\xb0\x45\x4c\xc3\x79\xba\x35\x12\xc6\xe9\x6a\xf9\x04\ +\x6b\xf8\xb2\x35\xbf\xb7\x36\x77\xa6\x6e\xff\x75\x94\x3a\xac\xe0\ +\x18\x05\x4b\x61\x7f\x5a\xec\xe9\xb1\xea\x8d\xe8\xdc\x4f\x36\x82\ +\xc1\x5d\xbd\xbe\x10\xcf\xc7\xc3\xed\xb9\xc4\x1f\xb6\xc1\x0b\x33\ +\xea\x57\x47\x58\x11\x6c\x87\x23\xbe\xbb\x30\x7d\x77\x10\x70\x4f\ +\x05\xd6\xed\xae\x1f\xcb\x5c\xc2\xad\xae\x2b\x26\xde\xab\x9b\xf1\ +\xae\xfc\x58\xb1\xc1\xf7\x7f\xc1\x4b\x00\x7a\xec\x25\x8e\x6d\xd7\ +\xff\x82\xa7\x24\xfc\x7f\x7a\x1a\x3c\xf1\x90\xa7\x52\x1f\x04\x2d\ +\x2b\xa8\x8a\xdb\x85\xb9\xa5\x52\xe4\x87\x17\xc8\xc6\x24\x46\x51\ +\x8c\x67\x48\xfd\xf5\x2b\x0b\xe3\xc0\x0e\x7c\x12\x04\x33\x8b\xb8\ +\xbe\x4d\x88\xef\x46\x2f\xa7\x69\xe4\x79\x76\x8c\x83\x69\x8c\x5d\ +\x3f\x40\xe3\xb8\xab\x28\x63\x37\x44\x76\x88\x22\x7f\x12\xec\x4e\ +\xb2\x09\xe4\xdc\x51\xd5\x44\xbf\xf5\x55\x4e\x95\xb8\xec\x21\x67\ +\xfb\xa1\xe4\x2c\x69\xef\xd5\x8e\xae\x99\xbe\xb3\x10\xbf\x95\x7e\ +\x5a\xc6\x92\x8b\x8c\x89\x8e\x15\xe8\x67\xc2\x6a\xaf\x75\xd3\xc5\ +\xaf\xa6\x70\xa9\x5d\x7b\x3e\xba\xcc\xaf\x36\x34\xe3\x7b\xf0\xe0\ +\x94\xf9\x99\x73\x88\xac\x6b\x47\x6e\xe4\xb9\x21\x3e\x65\xa7\x07\ +\x60\x86\x76\x40\x30\x22\xc1\x19\x13\xec\xb9\x91\x8d\x10\x46\xfe\ +\xd9\xc6\x69\x2d\x04\xc0\x67\x15\xf4\xc8\xc0\x29\xfd\xd5\x6d\x5f\ +\x6d\xf8\x7e\x2d\x54\x70\x56\xb4\xe8\xa3\xd3\xab\x42\xab\xa8\xd5\ +\x88\x60\xd5\x4d\x86\xb4\x8d\x69\x24\xa1\x94\xad\xe5\x92\xc3\xe9\ +\xa4\xa8\xcf\x36\xd8\xe7\x25\x78\x6b\xb5\xad\x0e\xbb\xd1\x59\x4c\ +\x5a\x89\xae\xf9\xc5\xde\x99\xe7\xad\xc4\x61\xa8\xd1\xa7\x2c\xf0\ +\x9e\xa0\xb1\x47\x75\x9e\xb1\xea\xf2\x89\x34\xef\xcb\x27\xde\xd2\ +\x43\xbe\xcd\x3f\xb3\x4c\xd5\xea\xf6\xb2\x4e\x9c\xee\xb2\x51\x1e\ +\x55\xef\x3f\x1c\x15\x6d\x72\xef\x14\xc1\xc3\x41\xd8\xe7\xe8\x79\ +\x6a\x6a\xfa\x96\x49\x9a\x51\x49\x87\x3c\xed\x28\x04\xf7\xad\x6e\ +\x0e\x43\x54\xf2\xeb\xdd\x4f\x7d\x2b\x4a\xd3\xe4\x37\x2e\xee\x87\ +\x2e\xa2\x04\xe8\x12\xba\xf1\xc2\xec\xdb\xa3\x6a\xba\x69\xa2\xae\ +\x2c\x95\xb7\xf9\x16\xb2\x4f\x4d\x4c\x3f\xc2\xe0\x02\x37\xa6\x67\ +\x4c\x84\x95\x3b\xc3\xa6\xcd\xb6\x82\x35\x13\xd1\xc5\x21\x32\x4b\ +\xb7\xb9\x52\x72\xde\xcb\xbc\x28\xde\x28\x23\xa3\x96\xd9\x6e\x9a\ +\xcb\x82\xdd\x6a\x9b\xcd\x6b\xe7\x85\xd3\xba\xd1\xf5\xbc\x91\x97\ +\x73\xa7\x0b\x83\x5e\xad\x87\xf0\x4c\x12\xb8\xc7\xa4\xa0\x4b\x56\ +\x2c\xcc\xb7\x8a\x69\x9c\x71\xd7\x82\xd7\xbb\x2d\xcf\x58\xab\xde\ +\x85\x75\x47\xe5\x66\x0c\x9a\x5a\x7b\x2e\x1e\x86\x81\xb6\xc9\x77\ +\xcd\x1c\xd9\xc1\xcd\x0a\xfc\x4c\x4a\x98\xd3\xa1\xcf\x0b\x7e\xcf\ +\x60\xc8\xd0\x4f\xbb\x6c\x92\x3d\x09\xbb\xa5\xaa\xbf\x70\x86\x04\ +\x4e\x50\x66\x63\xe2\xef\x3c\x2f\x13\x08\x1e\x13\x1d\x55\x2f\x0a\ +\xc8\x3b\x99\x78\x1d\x6d\x18\x23\x5a\x42\x46\xa1\x84\x08\x41\x8f\ +\xfa\x0c\xfd\x41\x55\xde\x18\x04\xcf\x3c\x62\xa4\x86\x67\x63\xf0\ +\xc2\x9b\x21\x23\xb4\x7d\xa8\xc1\x36\xf1\xc3\x28\xf0\x9b\x15\x7c\ +\x18\x85\x81\xa0\x4a\x23\xc3\xc2\x2e\x90\xe0\x3b\x80\x6a\x3a\x53\ +\x1f\xc6\x2f\x46\x04\x24\x17\xd9\xbe\x72\x0a\x1b\x58\x2d\x31\xd2\ +\x4a\x44\xc9\xa2\x19\x48\xbd\x36\x7c\x02\x74\x2f\xb4\x63\x37\xf0\ +\x50\x60\x78\xc4\xf6\xd4\x5b\x34\xf3\x23\x75\x0e\x7f\x18\x14\x46\ +\xed\xac\x84\x58\x48\x2e\x2c\xa8\x49\x0f\x54\xd6\x82\x8d\x07\xaf\ +\xe1\x82\x00\x50\x2a\xa7\xe0\x0a\xa7\x55\xaa\x9f\x2a\x1d\x9a\xe6\ +\x45\xd0\x70\x48\x4e\x41\xeb\x46\xc0\x06\x9d\xbf\x09\xdb\xb2\x96\ +\xf2\x1b\xf0\xb9\xd9\x52\x71\xcf\x44\xf3\xfe\x90\x57\xf9\x32\x2f\ +\x94\xb8\x7e\x2d\xd8\x4d\x96\x57\x3b\xc8\x48\xf8\x19\xa1\x0c\xde\ +\x70\x18\x9b\x57\x05\xdf\xf7\x7c\x56\x52\xf8\xb2\x96\x34\xbd\x5f\ +\xeb\x0c\x4a\x68\x0a\x35\xb9\x2e\xe0\x47\xe1\x14\xfb\x70\x86\x55\ +\x07\x68\x30\xd3\xe8\xb6\x2b\xb7\x81\xed\xad\xe1\xbb\x33\x42\x14\ +\x72\xee\xcc\xf3\x1b\xb4\x00\x37\xdc\x20\x08\xb8\xf9\x80\xb1\x1b\ +\x03\xaa\xea\xed\xfb\xa0\xa7\x9e\x2f\x01\x17\x47\xa7\xc0\x7d\x07\ +\xa8\x9e\xe9\x82\xe9\xf0\x78\xea\x32\x7c\xd3\x25\x7b\xee\xe0\x3e\ +\x2e\xfe\xb5\x86\x9f\xc5\xeb\xc7\x60\x86\xb6\xf2\xe2\xfa\x7c\x32\ +\x7f\x39\xc5\xdd\x3b\xc5\xbd\xfa\xa3\xa6\x82\x7d\x77\xe4\xc7\xd4\ +\xe6\x77\x5b\x82\xcc\x0b\xcd\x22\xfc\x47\x30\x78\xae\xeb\xfd\xb4\ +\x5a\x79\x11\x19\xe2\x7f\x1d\x32\xff\xd5\xf2\x39\xc2\x32\xee\xa7\ +\xb5\xf5\xed\xd5\x5c\x4d\x4b\xb7\x57\x7f\x02\xb2\xe9\xd6\x37\ +\x00\x00\x08\x03\ +\x00\ +\x00\x1e\x37\x78\x9c\xed\x58\x5b\x8f\xa3\x46\x16\x7e\x9f\x5f\xc1\ +\xd2\x2f\xd3\x5a\x53\xd4\x0d\x8a\xa2\xdb\x1d\xad\x66\x94\x28\x52\ +\xaf\x56\xda\xcc\x68\x1f\x23\x0c\x65\x9b\x6d\x0c\x56\x81\xdb\x76\ +\xff\xfa\x3d\xc5\xcd\x60\x70\xb6\x15\x45\xc9\x6e\x34\xb4\x66\x80\ +\x73\xa9\x3a\x97\xaf\xce\x39\xf8\xf1\xbb\xd3\x2e\xb3\x5e\x95\x2e\ +\xd3\x22\x5f\xda\x04\x61\xdb\x52\x79\x5c\x24\x69\xbe\x59\xda\x5f\ +\xbf\x7c\xef\x04\xb6\x55\x56\x51\x9e\x44\x59\x91\xab\xa5\x9d\x17\ +\xf6\x77\x4f\x1f\x1e\xff\xe2\x38\xd6\x27\xad\xa2\x4a\x25\xd6\x31\ +\xad\xb6\xd6\x8f\xf9\x4b\x19\x47\x7b\x65\x7d\xdc\x56\xd5\x3e\x74\ +\xdd\xe3\xf1\x88\xd2\x96\x88\x0a\xbd\x71\xef\x2d\xc7\x01\xcd\xf2\ +\x75\xf3\xc1\xb2\x2c\xd8\x36\x2f\xc3\x24\x5e\xda\xad\xfc\xfe\xa0\ +\xb3\x5a\x2e\x89\x5d\x95\xa9\x9d\xca\xab\xd2\x25\x88\xb8\xf6\x45\ +\x3c\xbe\x88\xc7\x66\xf3\xf4\x55\xc5\xc5\x6e\x57\xe4\x65\xad\x99\ +\x97\x77\x03\x61\x9d\xac\x7b\x69\x63\xcc\x91\xd5\x42\x44\x4a\xe9\ +\x62\xea\x52\xea\x80\x84\x53\x9e\xf3\x2a\x3a\x39\x63\x55\xb0\x71\ +\x4e\x95\x62\x8c\x5d\xe0\x5d\x24\xdf\x27\x15\x9e\x32\x88\xc4\x4d\ +\x63\x6a\xee\x70\x77\x88\xfe\x1e\xfe\xf5\x0a\x1d\x01\x95\xc5\x41\ +\xc7\x6a\x0d\x9a\x0a\xe5\xaa\x72\x3f\x7f\xf9\xdc\x33\x1d\x8c\x92\ +\x2a\x19\x2c\xd3\x05\x7f\xb4\xef\x28\x23\x79\xb4\x53\xe5\x3e\x8a\ +\x55\xe9\x76\xf4\x5a\xff\x98\x26\xd5\x76\x69\xfb\x7c\x7f\xaa\xdf\ +\xb7\x2a\xdd\x6c\xab\x01\x21\x4d\x96\x36\x78\x48\x03\xea\xd5\xef\ +\x9d\x0d\x61\x0f\x24\x8c\x18\x6d\x44\xdb\x85\x87\x2c\xee\x8f\xb5\ +\x92\x22\x36\xa6\x2c\x6d\xad\x62\x80\xda\x26\x53\xa8\x8b\x5f\xaf\ +\x5e\x1c\xaa\xfd\xa1\xfa\x59\x9d\x2a\x95\x37\xeb\x80\x07\x03\x77\ +\x6a\xb6\x51\xeb\x69\xf6\x13\x2c\xf0\x98\xa8\x75\x69\x16\x6a\x8c\ +\x36\x6f\x60\xb5\xa8\x79\xc0\xd5\x51\x92\x46\xd9\x0f\xe6\x06\x78\ +\x6b\xe4\x06\x9b\xc6\x45\x96\x81\x49\x4b\x3b\xca\x8e\xd1\xb9\xb4\ +\x3b\x81\x3a\x63\xe1\x56\x2b\x40\xd8\x1d\x3c\xab\x48\x77\x6b\x30\ +\xc2\x79\x2f\x67\xb6\x1c\x6f\x41\x29\x95\x3d\x7b\xd3\x12\xbf\xe6\ +\x69\x05\x50\x3a\x94\x4a\xff\x64\xd2\xf1\x8f\xfc\x6b\xa9\x26\x52\ +\x5f\x74\x94\x97\x90\xfb\xdd\xd2\xde\x45\x95\x4e\x4f\x1f\xc9\x02\ +\x9b\x3f\xe4\xcb\xc0\xa3\x92\xc3\x33\xc5\x14\x05\x34\xf0\xd9\x7d\ +\xaf\x1e\x9f\x96\x36\xa5\x1e\xa2\x3e\xc7\xf4\x42\x3d\x43\x3a\x05\ +\x45\x42\x0a\xe6\xf7\xd4\xf5\xac\xec\x7a\x56\x56\x2f\x6d\xc6\x11\ +\xe3\x1e\x09\xa0\x44\xb8\x6d\x40\xc7\xc1\x78\x77\x40\x4d\xa0\x66\ +\xe2\xf8\xd4\xf2\x1f\xcb\xaa\xd8\x77\xb2\x00\x9c\xea\x9c\x01\x5a\ +\x0c\xd1\x81\x15\x0b\x1d\xde\xad\xeb\xeb\xa1\x26\x15\x10\xc3\xb4\ +\x3a\x87\xe4\xc1\xbe\xe8\x14\xeb\x75\xa9\x60\x63\x3c\xa0\xd5\x30\ +\x06\x0d\xd8\xcb\xef\x5d\xf8\xb5\xbb\xe1\xb9\xdd\xc8\xfc\x6e\x83\ +\x80\xb9\x63\xb7\xff\x38\x5c\x12\xef\xcf\x8c\xcb\x3e\x74\x7b\x28\ +\x43\x7b\x88\x1d\xb4\x8e\x4e\xa3\xaf\x43\xd5\xd9\x54\xcb\xb1\x28\ +\x4b\xec\x49\xf8\x5f\xf7\x3f\x83\x41\xd8\x0a\x2d\x46\xe1\x3f\x32\ +\x2b\x71\x6e\x24\x08\x74\x03\xb8\xe1\x59\x99\x37\x53\x53\x7f\x61\ +\x99\xd6\x02\xa7\xd0\xe9\x26\x85\x92\x57\xcb\x51\x82\x58\x7d\x8d\ +\x75\x20\xa5\x03\xdf\x68\xc0\x58\xeb\xfd\xa3\x6b\xaa\x5e\xfd\xd4\ +\x7b\x6a\xca\x6d\xf2\x9a\xaa\xe3\xa5\x34\xae\xa2\x3e\xb7\xfb\x68\ +\xa3\x6a\xa4\x03\x8a\x1a\xa8\xb7\x8c\x55\xa1\x13\xa5\x3b\x96\x5f\ +\x5f\x23\x56\x7b\x18\x9a\x41\xe2\xc3\x95\x33\xb0\x6a\xcf\xc7\xf3\ +\xfc\x72\x1b\x25\xc5\x11\x92\x7d\xcd\x7c\x2b\x0a\xc0\x17\xe4\xda\ +\xbb\xe6\x18\x1c\x31\x80\x86\x10\xc4\x27\x13\x26\x6c\x45\x19\x62\ +\xd2\xf3\xc5\x94\x79\xd0\x1a\xf0\xeb\x64\xd1\x59\x81\x3f\xf5\xad\ +\x13\x2a\xb7\xc5\x71\xa3\x4d\x5c\x2a\x7d\x50\xd7\x9a\xd0\xb0\x0e\ +\x66\x40\x71\x0e\xcd\x09\x69\xdb\xe2\x40\xc2\xe8\x3a\xab\x55\x71\ +\x9a\x5f\xe0\x98\xe6\xe0\xa7\xd3\x37\xda\x89\x6d\xad\x40\xd7\x79\ +\x05\x9d\x44\xa4\x95\x38\x5d\x4a\xda\x35\xcb\xf8\xee\x75\x20\xd8\ +\xa9\x2a\x4a\xa2\x2a\xba\x24\xbc\xa3\x00\x54\x70\xdf\x0f\x93\x75\ +\xf8\xcf\xcf\xdf\xf7\x95\x30\x8e\xc3\x7f\x15\xfa\xe5\x52\xc4\x8c\ +\x40\xb4\x82\x6e\xbb\xb4\xfb\xea\x6c\xba\x6c\x1c\x9a\x0a\x10\x55\ +\x4f\xe9\x0e\xd2\x68\xc6\x9f\xbf\xc2\x14\x02\xd0\xeb\x19\x23\x61\ +\x73\xd2\x2e\x8b\x36\xcb\x6a\xd5\x8c\x37\xb3\x13\x61\x12\xef\x52\ +\xa3\xe4\xfe\x54\xa5\x59\xf6\xa3\xd9\x64\x58\xb1\xdd\xd6\xd0\xae\ +\xa8\x0e\xfc\x78\x74\x3b\x47\xeb\xb7\xcd\x25\x00\xa3\x84\xf7\xc1\ +\xcb\xa2\x95\xca\x96\xf6\xb3\x61\x5a\x13\xee\x46\x17\x87\xfd\xae\ +\x48\x54\xab\xde\x05\x6e\x33\x39\xbb\xea\xb4\x2f\x74\xe5\x9c\x93\ +\x3d\x0c\x72\x3e\xf2\x02\xc0\xa0\x2f\xa6\x67\xbc\x95\x3b\xbd\x53\ +\x6e\x9d\x66\xaa\x19\x96\xdc\x6d\xb1\x53\xee\x19\x6a\xc3\x8b\xfb\ +\xb9\x05\x64\xe9\x3e\x47\x2b\xf7\xb3\x8e\xd6\x95\x9b\xc6\x30\x17\ +\xbb\x97\x91\x6a\x9f\x6f\x46\xd5\x62\xc3\x3c\x7a\xd9\xa7\x9a\x54\ +\x71\x8c\x08\xf3\x85\xc0\xb4\xad\xe6\xdd\x9b\x43\xa0\x12\x07\xdc\ +\x17\x7c\xe1\x70\x81\xa4\x4f\xb1\xa4\xf7\x97\x5e\xbd\x8f\xaa\xed\ +\xa4\x7b\xf6\x5d\x12\x79\x3e\x0e\xb8\xe0\xfc\x01\x3c\xc9\xc2\x3b\ +\x5c\x5f\xf5\xcb\xa0\x71\x97\x95\x2e\x5e\x54\xcf\x6d\x5e\x9b\xe3\ +\x12\xc2\xe6\x35\x95\xc8\x8e\x6e\x3a\x1d\xc4\x28\x84\xdc\xe4\xc9\ +\x90\xf8\xef\x22\xcd\xc7\x54\x40\x91\xd2\x59\x0a\xb7\x90\x77\xb4\ +\x24\x82\xb2\xa3\x75\x74\x0e\x73\xf8\xc4\xe9\xa8\xbd\x31\x83\x16\ +\x0e\x51\xfb\xbb\x45\x18\xf8\x2f\xa8\xf0\x17\x9c\x70\xe4\xfb\x58\ +\x10\xeb\x13\x50\x31\xd4\x19\x21\x82\x01\x95\xd0\x80\x23\x8f\x79\ +\x64\xc1\xa9\x44\x22\xf0\xb8\x00\x9a\x08\x50\x10\x30\xb9\xe0\x1e\ +\x0c\xc9\x3c\xa0\xc4\x7a\xb6\xa4\x64\x10\x5f\x26\xd9\x0d\xaa\x1f\ +\x78\x10\x38\x5f\xfa\xb0\x93\x14\x1c\x71\xe1\x13\xa0\x4a\x0a\xb2\ +\x86\x2a\x7d\xd2\x4a\x0a\x82\x11\x65\x44\x7a\x43\x1a\x23\x88\x52\ +\x46\x8d\x9d\x03\xaa\x17\x20\x0c\xea\xdc\x92\x01\x45\x92\xf8\x14\ +\x68\xa2\xb6\xd3\xd8\x8e\xb1\x6c\xbc\xbc\xd0\xc0\x4b\x0c\x4b\x31\ +\xc0\xe8\x48\x92\x4b\x70\xd8\x0b\x16\xc2\xf7\x10\xa0\x81\x48\xa0\ +\x79\x1e\x92\xb0\xf6\x42\x70\x1f\xe1\xda\xf2\x67\x88\x11\x07\xe3\ +\x24\x60\x68\x9e\xea\xc1\x96\x9d\x97\x84\x79\x12\x49\xc9\x39\x50\ +\x4d\x60\x3d\xa0\x12\x06\xae\xd7\x92\x1c\x02\x0b\xc0\x23\x74\x48\ +\xf3\x59\xef\xe5\x80\xca\x7c\xc4\x09\x11\xd2\xac\x48\x21\x1b\x92\ +\x0c\x33\x34\x93\xcb\x37\x0b\x72\x8c\x81\x0e\x4b\x71\xd8\x09\x26\ +\x17\x01\xae\x18\x4b\x69\x40\xba\xfd\x3b\xea\x27\x43\xf5\x81\x0a\ +\xbe\x72\xc9\x11\x11\xb8\xce\xb2\xf4\x10\x0f\x3c\xaf\xb6\x1e\xbe\ +\x08\x09\x33\x08\xf1\x9b\xcc\x7b\x18\x22\x8f\x79\xb3\x66\x4f\x15\ +\x84\x41\xf4\xda\x9d\xb0\x07\x0e\x0a\x13\xfd\x9e\xfa\xa9\x89\xb4\ +\x90\x90\x79\x81\x01\x25\x58\x62\xdf\x64\x24\x30\xc9\xf3\x00\x23\ +\x12\x05\xcc\xa7\x03\xe3\x0d\x6c\x9a\x90\x3c\xcf\xba\xf4\x76\x35\ +\x9e\x9a\xa3\x4b\x05\xe3\xc3\xd2\x3a\x3e\xce\xf5\xe4\x08\x25\x05\ +\x56\x65\xd7\x07\x43\xfa\x01\xa4\x8f\x7a\x80\x76\xd8\x96\x04\xc2\ +\x33\x18\xee\x88\x82\x62\x24\x59\x4d\x23\x8c\x40\xd4\x61\x3e\x9b\ +\x27\xce\xaa\x5f\x88\x4d\x7e\x20\x00\x02\xa8\x9e\x40\x8d\x36\x7c\ +\xd5\x21\x46\xe8\x2c\xc9\x0f\x60\x91\x3a\x04\x8d\xd6\xf5\x7b\xab\ +\x32\x8c\x46\x5b\xb6\x9a\x1a\xd5\x8e\xfb\xff\xcb\x35\x6a\x90\xb0\ +\xcd\x20\x5b\xb7\x9a\x11\x18\xe6\x0b\x69\xdf\x96\x3c\xbd\x5b\xf2\ +\xb7\x69\x48\x73\x0d\xc8\x69\xbe\x23\xe0\x46\x08\xa4\x92\x42\xb5\ +\x59\x40\x13\x32\x47\xd0\x0b\xee\xaf\xa0\xbb\xa1\xd0\x86\x86\x23\ +\xc9\x18\xb7\x93\x29\x3f\xd2\xb1\x3d\x62\x8f\xfb\x14\x79\xe8\x52\ +\x1f\xc9\x69\x7b\xaa\x5f\xf5\x21\x53\x26\x1b\x6f\x30\xf6\xfe\x17\ +\x30\x08\x69\x2e\x41\xae\xc1\xb0\x3a\x54\xd5\x04\x0b\x75\xfa\x1f\ +\x76\x91\x7e\x51\xba\xc9\x76\xf3\xec\x94\x55\xa4\xab\x11\x65\x97\ +\x26\xa3\x77\x95\x27\x23\x7c\xbc\x1f\x49\x86\xda\x7c\xb4\x86\x78\ +\x82\xae\x87\xd7\xb4\x4c\x57\x69\x66\x5e\xea\xc7\x4c\x3d\x24\x69\ +\xb9\x87\x09\x28\x4c\x73\x63\xf8\x43\xf1\xaa\xf4\x3a\x2b\x8e\x3d\ +\x1f\x30\x01\x37\x67\x15\xc5\x2f\x9b\x1a\xdd\x61\x14\x03\x24\x0e\ +\x59\x54\xa9\x51\xe0\xfb\xba\x43\x09\xb1\x67\x13\x66\x26\x7c\x22\ +\x05\x22\x1c\x20\x70\x43\xc4\x7c\x0a\x7a\xa6\x42\x48\x36\x2f\xa1\ +\x61\x11\x0e\xc7\x5e\x10\x7e\x4b\xe2\x7c\x43\xa2\x2e\x6e\x94\x9b\ +\xea\x04\x16\x2c\xba\x7d\xac\xbf\x59\x9d\xf8\xa2\x7b\xb0\xb0\x45\ +\xcc\x5f\xfb\x4e\xdf\x23\x3c\xb3\xf2\xdb\xe0\x3c\xff\x6a\x28\xd7\ +\x00\x86\x11\xfa\xe3\xdd\xf4\x53\xff\xfe\x46\x31\x1b\x42\xa2\x01\ +\x2f\xfe\x6d\x26\xa7\x51\x9e\x6f\x24\x60\xfe\x17\x81\x69\x9e\x27\ +\x9f\xfc\x93\x44\x5f\x7e\x00\xb8\x99\x69\xf8\x2a\x94\x92\x10\x3a\ +\x97\x6a\x98\x3c\x7c\x98\x69\xc9\xa2\xdf\x0a\xd2\xd7\xaf\xb9\xe8\ +\x55\xbb\x6c\x4b\x68\x62\xc0\x60\xef\x94\x9f\x5b\xff\x6d\x64\xc6\ +\xdc\x30\x1e\x78\x30\x2a\xc0\x88\xe6\xc0\x08\x4d\x61\xfa\xf6\xf8\ +\x62\xf8\xd4\xb3\x19\xcc\x03\x30\x42\x49\xba\x80\x5e\x8f\x00\x4d\ +\x14\x6a\xe5\xf0\x53\x69\xf3\xa7\xee\x14\x5c\x06\x6d\xa7\xc0\x30\ +\x3d\xdf\xe8\x14\x44\x7c\xeb\x14\xff\xd7\x9d\x42\x7e\xeb\x14\xbf\ +\x4b\xa7\xa0\xf2\x0f\xed\x14\xf4\x17\x26\x82\x6f\x9d\xc2\x5c\xbf\ +\x47\xa7\x68\x1f\xea\xdb\xa3\xf9\x69\xef\xe9\xc3\x7f\x00\xa5\x17\ +\x49\xdb\ +\x00\x00\x0a\x7e\ +\x00\ +\x00\x39\x49\x78\x9c\xe5\x5b\x59\x6f\xe3\xba\x15\x7e\xcf\xaf\x50\ +\x3d\x2f\x13\xd4\xa2\xb9\x2f\xce\x72\x51\x74\x30\xc5\x05\x0a\xb4\ +\xe8\x9d\x41\x1f\x2f\x64\x49\x76\xd4\xc8\x92\x21\x2b\x71\x92\x5f\ +\xdf\x43\x59\xab\x2d\x6f\x89\x13\x60\x66\x24\x4c\x2c\x91\x87\x3c\ +\xe4\x39\xdf\x59\x48\x71\xae\x7f\x7b\x9a\xc7\xce\x63\x98\x2d\xa3\ +\x34\xb9\x19\x10\x84\x07\x4e\x98\xf8\x69\x10\x25\xb3\x9b\xc1\xf7\ +\x6f\x5f\x5d\x3d\x70\x96\xb9\x97\x04\x5e\x9c\x26\xe1\xcd\x20\x49\ +\x07\xbf\xdd\x5e\x5c\xff\xc5\x75\x9d\xbf\x67\xa1\x97\x87\x81\xb3\ +\x8a\xf2\x3b\xe7\xf7\xe4\x7e\xe9\x7b\x8b\xd0\xf9\x7c\x97\xe7\x8b\ +\xf1\x68\xb4\x5a\xad\x50\x54\x16\xa2\x34\x9b\x8d\x2e\x1d\xd7\xbd\ +\xbd\xb8\xb8\x5e\x3e\xce\x2e\x1c\xc7\x01\xbe\xc9\x72\x1c\xf8\x37\ +\x83\xb2\xc1\xe2\x21\x8b\x0b\xc2\xc0\x1f\x85\x71\x38\x0f\x93\x7c\ +\x39\x22\x88\x8c\x06\x0d\xb9\xdf\x90\xfb\x96\x7b\xf4\x18\xfa\xe9\ +\x7c\x9e\x26\xcb\xa2\x65\xb2\xfc\xd4\x22\xce\x82\x69\x4d\x6d\x47\ +\xb3\x62\x05\x11\x31\xc6\x8c\x30\x1d\x51\xea\x02\x85\xbb\x7c\x4e\ +\x72\xef\xc9\xed\x36\x85\x31\xf6\x35\xa5\x18\xe3\x11\xd4\x35\x94\ +\xc7\x51\x8d\x9f\x62\x10\xc5\xce\xc1\x14\xb5\x6d\xee\x20\xfe\x05\ +\xfc\xab\x1b\x54\x05\x68\x99\x3e\x64\x7e\x38\x85\x96\x21\x4a\xc2\ +\x7c\xf4\xe5\xdb\x97\xba\xd2\xc5\x28\xc8\x83\x56\x37\x95\xf4\x3b\ +\x7c\x3b\x2a\x49\xbc\x79\xb8\x5c\x78\x7e\xb8\x1c\x55\xe5\x45\xfb\ +\x55\x14\xe4\x77\x37\x03\xc9\x17\x4f\xc5\xfb\x5d\x18\xcd\xee\xf2\ +\x56\x41\x14\xdc\x0c\x60\x86\x4c\x12\x5a\xbc\xb7\x00\x44\xd6\x04\ +\x65\x77\xe3\xba\x06\x23\xae\x9c\x8c\x52\xa1\x59\x41\x51\x0d\x7b\ +\x1c\xa4\xbe\x1d\xc7\xcd\xe0\x4b\xe6\x4d\xf3\x3f\xff\x16\x04\xff\ +\x4e\xa3\x24\x47\x56\x82\xb7\x40\x79\x1d\x84\xd3\xa5\x6d\xb1\x66\ +\x6b\xdf\x80\x2f\x2f\xea\xa0\xb6\xe6\xb4\x00\x4e\x8b\xd0\xb7\x98\ +\x58\x53\xb7\x78\xe4\xcf\x56\x0c\x5d\x52\xb6\x96\x95\xd3\x19\xed\ +\xe2\xcf\x27\x18\xaa\x33\x76\x18\x85\x3f\xa4\x97\xe2\x79\x4d\x41\ +\x40\xcd\xf0\x83\x7b\x69\x5e\xac\xb0\xf6\x74\x53\x8e\xc0\x4d\xb3\ +\x68\x16\x81\x74\x0a\x3a\x4a\x10\x2b\xae\x6e\x1b\x98\x74\x6b\x6e\ +\x4c\x52\xb0\xd1\xd1\x11\xb3\xdf\x6c\x28\xb4\x3e\x3c\x10\x8c\x84\ +\x9d\x54\x39\x90\xcd\xa1\x74\x67\x48\x0a\x4a\xf1\x26\x41\x95\xe2\ +\xde\xec\xe6\x90\xe6\x5e\x25\x00\x69\xe8\xcf\x27\x00\xf0\x1d\xa1\ +\x97\xfd\x23\xf3\x82\x08\x3c\x66\x7b\xea\xdd\x1a\x46\x38\x77\x65\ +\x69\x35\xd0\x6e\x99\xa7\x8b\x8a\xba\x34\x68\x28\x01\x2a\xe9\x9a\ +\x41\x53\xb1\xcc\x9f\xe3\x70\x5d\xe7\xfa\x69\x9c\x66\xe3\x4f\xd3\ +\xe2\xba\x2a\x8a\x52\xf0\x1e\x51\xfe\x3c\x26\xad\x26\xe9\x74\xba\ +\x0c\xc1\x5b\x34\x30\xdd\xc7\x4e\xbb\xf4\x74\x76\xb8\x87\x1d\x69\ +\x64\x32\xea\x4e\xfd\x54\x49\x29\x4c\x0e\xca\x49\x61\xf6\x71\x52\ +\x52\x58\x7c\x90\x8c\xec\x9b\x17\x6f\xc9\xa8\x42\x1f\xb0\x8b\xc1\ +\x98\x6e\x06\x5e\xbc\xf2\x9e\x97\x35\x87\x22\x82\x8d\xef\xb2\x10\ +\x22\xee\xa7\x5e\xdc\xb5\xc5\xdd\x65\xc2\x64\xcb\x2f\xcd\xca\xc2\ +\xef\x49\x94\x43\x70\x7d\x58\x86\xd9\x1f\x36\x40\xfd\x2b\xf9\xbe\ +\x0c\xb7\xa8\xbe\x65\x5e\xb2\x84\x68\x38\xbf\x19\xcc\xbd\x3c\x8b\ +\x9e\x3e\x93\x21\xb6\x37\x92\x46\x0b\x6a\x38\x3c\x53\x4c\x91\xa6\ +\x5a\xb2\xcb\xba\xb9\x0f\x36\x07\x81\x08\x51\xc9\x71\x03\x3e\x1f\ +\xac\x55\x2a\x8a\x94\x51\xac\x19\xef\xb4\x97\x76\xda\x4b\x9b\x81\ +\x1f\xe7\x88\x71\x41\x60\x46\xa7\x1b\xa8\xc2\xfa\x30\xec\x08\xfe\ +\x40\xd8\x91\x8f\x32\xcd\x53\xbc\xb8\x6e\x19\xc3\xaf\xe7\xc5\xb5\ +\xe4\x2e\x76\xf1\x41\xa0\x68\x29\x5d\xe1\xaa\x5e\xcd\xef\xd5\x29\ +\x96\xc4\xf8\x78\x03\x40\x57\x47\xa0\x45\x4b\xed\xaa\x96\xa5\xb7\ +\xd5\xbf\x97\x23\x53\xc6\x9f\x4e\x76\x72\x7c\xab\x37\x67\x4a\x1d\ +\x94\x16\x0c\xe1\x74\x49\x4d\xa7\x9e\x87\x5f\x23\x29\xa6\xfb\x2c\ +\xf2\x80\x94\xa6\xde\x74\x4a\xdf\x4f\x4a\x05\xae\x8e\x43\xd5\x47\ +\x63\xea\xa3\x10\x75\x8a\x13\x32\xf8\x17\x4e\x25\x05\xe6\x3b\x23\ +\xd5\xb6\x36\x26\xb1\xe7\xdf\x6f\xc4\x88\xab\x03\x18\xaa\x00\x20\ +\xb0\x38\x22\x50\x01\x55\x9f\xdb\x01\x39\xec\x85\x49\xcf\xc0\xf6\ +\x81\xf2\xf5\x33\x23\xfd\x33\xa3\xe7\x33\x5e\x4e\x20\x28\xb0\xc3\ +\xe6\xcb\x99\x4b\x5c\xf6\x91\x06\xcc\x05\x8c\x4c\x7f\x94\x09\xf7\ +\xa7\xaf\xc7\x25\x95\x36\xa7\x23\x84\x23\x21\x35\xef\xa6\x7f\x18\ +\x69\x43\xb1\x69\x42\x04\x24\x7a\x90\x11\xb6\x40\xe7\xf7\xb5\xf5\ +\x7b\xdb\x5a\xd1\x78\xd1\x2c\x0b\xe8\x21\x75\x11\x21\xa4\xdc\x2f\ +\xa5\xaf\xd8\xde\xaf\x4b\xef\x6c\xf7\x7a\x7f\xf7\xc6\xb3\xf7\x86\ +\x12\x10\x5e\x5f\xbd\x48\xaf\x2a\x5b\x8a\xea\xea\xe4\x4c\x8a\x92\ +\x56\xd6\xaa\xed\x85\xf7\x6a\x4a\x75\x34\xb5\xdd\xf8\x80\xaa\x0e\ +\x5a\x16\xc8\x52\x1d\x58\x0f\xbe\x51\x55\xea\xc0\x0a\xf0\xfd\x54\ +\x75\xac\x17\x22\x80\xd6\x9d\x98\x3e\x76\xa5\xb2\x6f\xc4\xb8\x1e\ +\x71\x9f\x84\xa4\xe4\xa7\xf8\xee\x4f\x53\x6d\xef\x57\x09\xac\x9f\ +\xbd\x7c\x9d\x73\x02\x84\x6a\x89\x60\xed\xc7\x45\x07\xe1\x4c\x20\ +\x58\x5b\x1a\xd2\x5d\x8a\x32\x86\x0c\xb0\x6a\xa5\xab\x7e\x2f\xad\ +\xdf\x4b\xbb\x7b\xdd\x8c\x81\x14\x73\x43\x8d\x2a\x16\xd0\x30\x57\ +\x4e\x08\xa3\x43\x57\x50\x04\x0b\x78\xca\xcd\xd0\x55\xb0\x92\x66\ +\x8c\x08\x7d\xb9\xd5\xe1\x7e\x83\xdd\x5e\xf3\x73\x2e\x1a\xe3\xdb\ +\xb3\x79\x40\x45\xcb\x1a\x77\x6d\x42\x9c\x9c\xbf\xd8\x5e\x4f\x00\ +\x8a\x67\xef\x33\xe1\x94\xca\x3d\xe6\xde\xc3\x7c\x52\x5c\x67\x42\ +\x29\x95\xaf\xdc\xff\xb1\x1b\x1b\x0a\x29\x41\x14\x61\x5d\x90\x42\ +\xa1\x24\x54\x8b\x0e\x48\x35\xd2\x94\x73\xb2\x81\xd1\x2d\x52\xbf\ +\x8f\x74\x3f\x44\x35\x55\x2d\x88\x32\xaa\xa4\x1a\xba\x5c\x23\x70\ +\xe6\xd2\x14\x10\x25\x48\x6a\x41\xd8\x59\x20\xca\x8f\x82\xa8\x7c\ +\x17\x88\xca\x53\x20\xea\x31\x7b\x9f\x0b\xa2\xea\x34\x88\x72\xdf\ +\xde\xe7\x82\xa8\x3a\xe7\x5e\x11\x37\x5c\x6d\x2b\xe7\x57\x59\xa6\ +\x71\x6c\xc4\x09\x20\xc2\x58\x4c\xb6\xe2\xf1\xb1\x0b\x35\xe0\xa5\ +\x4e\x42\x8d\x4f\x42\x36\x55\x47\x70\xeb\x5b\x3c\x71\x9b\xa5\x9d\ +\x0f\x26\x02\xd3\x9f\x10\x26\x27\x09\x40\xc9\x9f\x4f\x00\x3b\xec\ +\xe4\x0d\xdf\x32\x20\x0f\x52\x83\x3d\x06\x47\x45\x13\x1e\x9f\x08\ +\xc4\x3c\xc3\x11\x11\xaa\xb5\x26\x7c\x86\x52\xa2\x05\x22\x0c\xb7\ +\xa2\x0b\xbd\x19\x70\xc6\x21\x87\x6b\xfb\xab\x67\x28\x25\x1c\x23\ +\x4a\x15\x6b\x66\xff\xd6\x0f\x24\x10\x45\x39\x65\x44\x53\x59\x7e\ +\x29\xa9\x5f\x29\x44\x68\xaa\x04\x64\x7a\x36\x28\x4b\x98\x8b\xbc\ +\x7c\x85\xd3\xb1\x22\x3a\xde\x0d\xd0\x50\x53\x7c\x8c\x1b\xe8\x75\ +\x3a\x90\x96\x9e\xe4\x74\x04\x9d\x4e\x7b\x76\x6c\x8f\x74\x3a\x54\ +\x9c\x33\x36\x09\xc2\x8f\x38\x17\xf0\xa3\xd9\xdc\x29\x02\xa0\xf4\ +\x27\xfc\x90\xf3\x4e\x1f\x50\x75\xc7\xed\x6c\x64\xaa\x8c\xa8\xb3\ +\xf9\x87\x1f\xf9\x03\xea\x5a\x50\x47\x9d\x70\x38\xb0\xaf\x76\xee\ +\x23\x0e\xfc\x74\x76\xef\xfd\x1d\x55\x30\xfc\x13\xfa\x9f\xf7\x32\ +\xbf\x96\x06\xfb\x0c\x90\x6d\x2f\x60\x7f\x59\x03\x74\xf9\x91\x26\ +\xe8\x1e\xd8\x7d\x3e\xbb\x11\xba\xaf\x38\x3b\x71\xba\x19\x5e\x8f\ +\xec\x11\xc5\xe2\xa9\x86\xad\x3d\xe0\x18\x3c\x46\xe1\xea\xa2\x1e\ +\xd6\xc4\xab\xe1\xb0\xf0\x66\x61\x31\x04\x00\xdf\x7a\x0c\x65\xc5\ +\x24\xcd\x82\x30\xab\xaa\x64\x71\x75\xaa\xca\x51\xae\x0f\xee\x5e\ +\x74\xb1\x6e\x7b\xad\xeb\x71\x7f\xfd\xf2\xce\x0b\xd2\x15\xe0\x63\ +\xb3\xf2\x25\x4d\xe7\x76\xeb\x5c\x6c\x56\x14\x1b\x8b\x5b\xe4\xc5\ +\x06\xcf\x76\xe9\x43\x96\x81\x50\xdc\xd8\x7b\x0e\x61\x02\xc5\x4f\ +\xa5\xc0\xe5\x5d\xba\x9a\x65\x56\x10\x79\xf6\x10\x6e\xb6\x0c\x52\ +\xff\xc1\x1e\x00\x76\x1f\xd6\x56\x54\x1e\x3b\x6d\x51\xd8\xb6\xee\ +\x64\x92\x3e\xf5\x77\xb0\x8a\x12\x98\x98\x5b\x1e\x64\x25\x54\x6f\ +\x4d\xbf\xa4\xa8\x8e\xb6\x2a\xa1\x77\x50\x3c\x35\xc9\xe7\x66\x95\ +\x15\xbc\xd9\x51\x37\xf7\x9e\xa2\x79\xf4\x12\x06\x0d\x40\xaf\xe7\ +\x61\xee\x05\x5e\xee\x35\x28\xa8\x4a\x98\x24\x55\xda\x7c\x9d\x05\ +\xd3\xf1\x7f\xbe\x7c\xad\x21\xed\xfb\xe3\xff\xa6\xd9\x7d\x83\x43\ +\x4b\xe0\x4d\xd2\x07\x18\x76\x6d\x6a\xf6\x9c\xac\x3f\xb6\x9e\xc4\ +\xcb\x6f\xa3\x39\xe8\xd6\x1e\x41\xfe\xeb\xd3\x3c\x06\x3c\xd6\x15\ +\x1d\x62\xeb\x4b\x9b\x4e\xd7\xdd\x66\xe1\xfa\x88\x71\xef\xa9\xec\ +\xc0\x9f\x47\xb6\xd1\xe8\x8f\x3c\x8a\xe3\xdf\x2d\x93\x96\xe9\x95\ +\x9d\x46\x79\x1c\xde\x16\x3c\xd7\x8f\xd5\x2c\x46\xe5\x34\xea\x6f\ +\x0d\xcd\x2c\xaf\x47\x95\x18\x8a\xb7\x59\x23\x9e\x0e\x64\x6a\x09\ +\xc7\xde\x24\x8c\x6f\x06\xff\xb4\x95\xce\x56\xed\x2c\x4b\x1f\x16\ +\xf3\x34\x08\xcb\xe6\x95\x58\x67\xd5\x38\xf3\xc6\xe7\x16\x8f\xb1\ +\x97\x87\x9f\x5d\x62\xec\x4e\xb7\xa4\x66\xe8\x12\x06\x0e\x57\x31\ +\xbb\xfe\x69\x3b\xbb\x99\xa0\xed\x13\x5a\x0b\x2f\xbf\xdb\x72\x27\ +\xb5\xdb\x40\x5c\x5c\x4d\x41\x4a\x76\x5f\xa5\xd8\x08\xb3\x2f\xad\ +\x45\x47\xf1\x9a\x3d\xc4\xe1\x38\x49\x93\x17\xb0\x64\x70\x3b\x59\ +\x7a\x5f\xbc\x86\xe5\xf3\x1a\xbe\xd0\x97\x96\x46\x70\x82\xc5\xd5\ +\xdc\xcb\xee\xc3\x6c\x4d\xf3\x18\x2d\xa3\x49\x14\xdb\xee\x8a\xc7\ +\x38\xbc\x0a\xa2\xe5\x02\xe6\x3c\x8e\x12\xeb\x96\xae\xd2\xc7\x30\ +\x9b\xc6\xe9\xaa\xae\x0f\x13\x0f\x7e\xdc\x89\xe7\xdf\x5b\x29\x25\ +\xc1\xd8\xf3\xc1\xd0\x1e\xac\x04\x5a\x7e\xce\xe2\xd2\xb1\x21\x43\ +\x2b\x88\x03\x43\xa2\x18\x22\xda\x50\xe9\x78\x8e\x42\x04\x73\xa9\ +\x14\x19\x2a\x44\x35\x53\x30\x2e\x07\x17\xb7\xcb\x91\x81\x98\x35\ +\xa4\x48\x30\x90\xe5\x3e\x4a\x82\xb8\x61\xc6\x00\xa9\x61\x9a\x2a\ +\x27\x76\x5c\x0a\x29\x06\x96\x58\x0d\x5d\xf0\x54\x8c\x50\xa7\xf8\ +\xc5\x7c\xc8\x91\xc0\x84\x18\x07\x08\xa4\x22\x36\x1e\x22\x0c\x6b\ +\xd3\xbd\x43\x21\x04\x19\x01\x63\x00\x06\x20\x79\xc1\xf6\x91\xda\ +\x99\x61\xd0\x79\x45\x1a\x17\x9c\x38\xe1\xa2\xe2\x84\x87\x6e\x35\ +\x88\x62\x98\x4c\x0a\x51\x0f\x73\xaf\x44\x14\x82\xcc\x1c\x68\xc1\ +\x8d\x32\xaa\x88\xf3\xb2\xb1\xaa\xb4\x08\xe2\x4c\xb0\x76\xfc\xca\ +\x20\x3d\xd9\x42\x55\xbd\x43\x57\x23\xc9\xbe\x70\x0d\xc1\x6a\x27\ +\xac\xc2\xc7\x30\x49\x83\xa0\x82\x55\xd5\xb8\x83\x2c\x5a\xbd\x5a\ +\xb8\x80\xf1\x8c\x27\x0f\x79\xde\x2e\xfb\x5f\x1a\x25\xe3\x02\x29\ +\x55\x29\x78\x80\x30\x8b\xc1\xb3\xe5\x63\x5e\x95\x35\xec\xcb\x82\ +\xc0\x83\xc0\x92\x65\x80\xc4\x36\x9a\x6d\xe9\x3a\x84\x8e\xf1\x07\ +\x21\xb9\xc8\xd5\x40\xa2\x4c\x08\x0d\x99\x49\xfb\x13\x6d\x19\x1a\ +\x14\xc2\x0a\xdb\x2f\x06\xad\xaa\x2a\x26\x50\x06\x40\x35\x9c\xb6\ +\xb3\x77\x88\x06\x2e\x11\x0c\x31\xc5\x3b\x5f\x7c\x21\x14\x50\x02\ +\x80\xb6\x9f\x33\x5a\xc5\xf9\xf6\x06\x0c\xf8\x97\x61\x99\xe4\x5d\ +\x1e\xd4\xfc\x5a\xd7\x65\x62\x72\xac\x0b\xe9\xd5\x35\x01\x0c\xdb\ +\x8b\x1c\xa7\xf4\x42\xcf\x3f\xb6\xd2\x39\xa3\x66\xaf\x2a\xac\x11\ +\x63\x6a\x30\x93\xd6\xad\x18\x7b\x09\xa5\xad\x6d\x17\xcf\x8a\xd0\ +\xe1\x9a\x04\x9c\x95\xf5\x07\x56\x61\x1d\x8d\xbb\x54\x10\x64\xff\ +\xbb\x0f\xeb\x22\xc4\x7a\x4c\x01\x2e\x88\xf7\x80\x4a\x70\xc4\x99\ +\x16\xb8\x07\x8b\x50\x63\xb4\x06\x27\xd7\x86\xc5\xac\x3b\xb1\x19\ +\x2c\x36\xc8\x7e\x80\x21\xa3\x84\x00\xff\x27\xad\x07\x03\xac\x72\ +\x25\x59\x31\x11\xc2\x8d\xc2\x94\x0c\x8b\x0f\x30\x10\xeb\xcc\xd0\ +\x00\x2a\x24\x97\xd8\x7e\xe8\x25\x48\x32\x4d\x08\x04\xbd\x56\x44\ +\x6f\x71\xdf\x21\x41\x02\x1c\x04\xe7\x05\x03\x10\x9f\xd0\xe0\x4d\ +\x5b\x8f\x2d\x0a\xa3\x91\x04\x47\xa9\xd4\x10\x02\x04\xd2\x4c\x6a\ +\xd5\x96\x67\x33\x3f\xd6\x1a\xc1\x56\xa0\xb5\xd7\x3a\x40\x71\x81\ +\x14\xe1\x54\x0f\xc1\x21\x23\x4a\x0c\x03\x6f\xcc\x35\x12\x50\xc8\ +\x86\xd5\x83\xf5\xf1\x70\xbb\x06\xfc\x34\xd0\x82\x4c\x76\xd2\xb4\ +\x48\x5e\x06\x5d\x86\x8d\xb7\x66\x62\xa3\xaa\x63\xa8\xfd\x4e\x79\ +\x9f\x59\x42\x90\x5d\x9b\xa5\x79\x83\xb1\x75\xb2\xb0\x3d\x12\x13\ +\x06\x49\x6c\x00\x01\xf5\xca\x0f\x44\x56\x2e\xf8\x8c\xdd\x00\x36\ +\x86\x10\xca\x2b\x99\x49\x50\x18\x58\x87\x06\x81\xec\x24\x6a\xd1\ +\x6c\x0a\xad\x0f\x9a\xd6\xd3\x82\x3d\x59\x58\x08\x0a\x61\x53\x58\ +\xcb\x6b\x9e\xea\x6a\xc6\x6c\xbf\xd2\xc6\x70\xc2\x11\xe8\x96\xea\ +\xcb\xdd\x3a\x51\x7b\x74\x02\xf9\xeb\xe7\x4f\xdb\xeb\xf5\xcb\x1d\ +\x4a\xda\x12\xe7\xf5\x68\xd6\xe4\xb0\xb3\x2a\x7b\x9d\xad\xf3\x56\ +\xf8\xb9\xb6\x79\xf6\xed\xc5\xff\x01\xea\x49\x79\xab\ +\x00\x00\x09\x90\ +\x00\ +\x00\x23\x6d\x78\x9c\xed\x59\x5b\x8f\xdb\xd6\x11\x7e\xf7\xaf\x50\ +\xe5\x17\x1b\x95\xc8\x73\xbf\xc8\xbb\x0e\x8a\x18\x09\x02\xb8\x28\ +\xd0\xd8\xe8\x63\xc0\x15\xb9\x5a\xd6\x14\x29\x90\xd4\x5e\xfc\xeb\ +\xfb\x0d\xef\x5c\x49\x8e\x53\x04\x6d\x91\x5a\x86\x2d\x9e\x39\x33\ +\x73\xe6\x76\xe6\x1b\xca\x57\xdf\x3d\xee\xb3\xc5\x7d\x52\x56\x69\ +\x91\x5f\x2f\x79\xc0\x96\x8b\x24\xdf\x16\x71\x9a\xef\xae\x97\x1f\ +\x3f\xfc\xb0\x76\xcb\x45\x55\x47\x79\x1c\x65\x45\x9e\x5c\x2f\xf3\ +\x62\xf9\xdd\xdb\x17\x57\x7f\x5a\xaf\x17\xdf\x97\x49\x54\x27\xf1\ +\xe2\x21\xad\xef\x16\x3f\xe5\x9f\xaa\x6d\x74\x48\x16\xaf\xee\xea\ +\xfa\xb0\x09\xc3\x87\x87\x87\x20\xed\x88\x41\x51\xee\xc2\xd7\x8b\ +\xf5\x1a\x92\xd5\xfd\xee\xc5\x62\xb1\xc0\xb1\x79\xb5\x89\xb7\xd7\ +\xcb\x8e\xff\x70\x2c\xb3\x86\x2f\xde\x86\x49\x96\xec\x93\xbc\xae\ +\x42\x1e\xf0\x70\x39\xb2\x6f\x47\xf6\x2d\x1d\x9e\xde\x27\xdb\x62\ +\xbf\x2f\xf2\xaa\x91\xcc\xab\x97\x13\xe6\x32\xbe\x1d\xb8\xc9\x98\ +\x07\xd9\x30\x71\xef\x7d\xc8\x44\x28\xc4\x1a\x1c\xeb\xea\x29\xaf\ +\xa3\xc7\xf5\x5c\x14\x36\x9e\x13\x15\x8c\xb1\x10\x7b\x23\xe7\xd7\ +\x71\x6d\x1e\x33\x44\xe2\xa2\x31\xcd\xee\xf4\x74\x44\xff\x80\xbf\ +\x83\x40\x4f\x08\xaa\xe2\x58\x6e\x93\x5b\x48\x26\x41\x9e\xd4\xe1\ +\xbb\x0f\xef\x86\xcd\x35\x0b\xe2\x3a\x9e\xa8\xe9\x83\x3f\x3b\x77\ +\x96\x91\x3c\xda\x27\xd5\x21\xda\x26\x55\xd8\xd3\x1b\xf9\x87\x34\ +\xae\xef\xae\x97\x46\x1d\x1e\x9b\xf5\x5d\x92\xee\xee\xea\x09\x21\ +\x8d\xaf\x97\xf0\x50\x78\xee\x9a\x75\x6f\xc3\x66\x28\x24\x16\x48\ +\xd1\xb2\x76\x8a\xa7\x5b\xca\xcc\xa5\xe2\x62\x4b\xa6\x5c\x2f\xb7\ +\x69\xb9\xcd\x92\xa0\x0f\xde\x20\x5b\x1c\xeb\xc3\xb1\xfe\x25\x79\ +\xac\x93\xbc\x55\x02\xf3\x27\xbe\x34\xdb\x24\x36\xd0\x96\x6f\xa1\ +\xe0\x2a\x4e\x6e\x2b\x52\xd4\x5a\x4c\x2b\xe1\x05\x6b\xf6\xb0\x5b\ +\x46\x71\x1a\x65\x3f\xd2\x17\x8a\xad\xe5\x9b\x1c\xba\x2d\xb2\x2c\ +\xd9\xc2\xed\x28\x7b\x88\x9e\xaa\x65\xcf\xd0\xa4\x6b\x73\x57\x26\ +\x28\xaf\x97\x78\x4e\xa2\xb2\xd7\x21\xb9\x52\x03\x1f\x1d\x39\x3f\ +\x42\x72\xcf\x87\xed\x5d\x47\xfc\x98\xa7\x35\xea\xe8\x58\x25\xe5\ +\xcf\x94\x8b\xbf\xe5\x1f\xab\xe4\x84\xeb\x43\x19\xe5\x15\x12\xbf\ +\xbf\x5e\xee\xa3\xba\x4c\x1f\x5f\xf1\x15\xa3\x3f\x81\xf1\x4e\x0b\ +\xaf\xf0\x2c\x98\x08\x9c\x70\x46\xbe\x1e\xc4\xb7\x8f\xd7\x4b\x21\ +\x74\x20\x8c\x62\x62\xa4\x3e\x21\x97\x56\x04\xd6\x5b\x69\x06\xea\ +\xed\x59\xde\xdb\xb3\xbc\xe5\xf5\x52\xaa\x40\x2a\xcd\x1d\xfa\x43\ +\xd8\x05\x74\x1e\x8c\xaf\x0e\x28\x05\xea\x4c\x1c\xdf\x76\xfb\x57\ +\x55\x5d\x1c\x7a\x5e\x54\x4d\xfd\x94\xa1\x54\x88\xb8\x86\xc6\xa2\ +\xdc\xbc\xbc\x6d\x3e\x6f\x1a\x52\x81\x18\xa6\xf5\xd3\x86\xbf\x59\ +\x8e\x32\xc5\xed\x6d\x95\xe0\x60\x36\xa1\x35\x35\x0c\x09\x9c\x65\ +\x06\x17\xfe\xdd\xd3\xd8\xb9\xd3\xf8\xf9\xd3\x26\x01\x0b\xe7\x6e\ +\xff\xf7\xea\xd2\xc9\x3f\x72\x5d\x0e\xa1\x3b\xa0\x07\x1d\x10\x3b\ +\xe0\x46\x2f\x31\x34\xa1\xfa\x89\x5a\xe5\x9c\x55\xc6\xcb\x93\xf0\ +\xdf\x1f\x7e\x81\x41\x6c\xb1\x59\x48\x81\x7f\xf8\x59\x8e\xa7\x96\ +\x83\x03\x0a\xf0\xc5\xce\xf2\x7c\xa6\x86\xfa\x05\x35\x9d\x05\xeb\ +\xa2\x4c\x77\x29\x5a\x5e\xc3\x27\x78\x20\x9b\xcf\x5c\x06\x29\x9d\ +\xf8\x86\x26\xd7\x97\xf4\x55\x48\x5d\xaf\x79\x1a\x3c\xa5\x5e\x1b\ +\xdf\xa7\xc9\xc3\xd8\x1a\x6f\xa2\x21\xb7\x87\x68\x97\x34\x95\x8e\ +\x2a\x6a\x4b\xbd\xdb\xb8\x29\xca\x38\x29\xfb\x2d\xd3\x7c\x66\x5b\ +\xdd\x65\x68\xa7\x88\x17\xcf\x9c\x81\xd6\x61\x9f\x9d\xdf\xaf\xee\ +\xa2\xb8\x78\x40\xb2\x9f\x6f\x7e\x2e\x8a\x3d\x69\xf5\x4a\x69\x35\ +\x64\x7b\xbc\x10\xc8\x07\x67\x81\x77\xa8\x8f\x13\x59\xaa\xa9\xb5\ +\xe4\x81\x36\x82\x7b\x79\xb2\x7b\x2c\x4b\x54\xf1\x3a\x8b\x9e\x12\ +\x78\xd5\x7c\xf5\x61\xad\xee\x8a\x87\x5d\x49\xd1\xa9\xcb\x63\xf2\ +\x5c\x12\x98\x75\xa4\x19\x65\x7d\x6c\xef\x49\x87\x8c\x13\x0e\x92\ +\x5d\xdf\xdc\x14\x8f\xe7\x15\x3c\xa4\x39\xbc\x5d\x0f\x58\xcb\x2f\ +\x30\xf4\xe0\x6b\x4f\x7d\xeb\x38\x1e\xc7\xc6\xf6\x7c\x0b\xce\x0b\ +\xdd\x97\xc2\x3e\xa9\xa3\x38\xaa\xa3\x31\xed\x3d\x05\x05\x23\x07\ +\x54\x8c\x6f\x37\x7f\x7f\xf7\xc3\xd0\x0f\xb7\xdb\xcd\x3f\x8a\xf2\ +\xd3\xd8\xca\x88\x21\xba\x01\xe6\x5e\x2f\x87\x1e\x4d\x58\xbb\xdd\ +\x50\x1f\x88\xea\xb7\xe9\x1e\xc9\xa4\x09\xe8\xcf\x18\x44\x50\x80\ +\xc3\xc6\x8c\x99\xee\xdb\xa8\xb4\x55\x5b\x26\xed\x84\x73\x76\x28\ +\x8c\xb7\xfb\x94\x84\xc2\x9f\xeb\x34\xcb\x7e\xa2\x43\xa6\x7d\x3b\ +\xec\x0c\xed\x5b\xeb\xc4\x8f\xab\xb0\x77\xb4\x59\xed\xc6\x00\xcc\ +\x12\x3e\x04\x2f\x8b\x6e\x92\xec\x7a\xf9\x9e\x36\x17\x27\xbb\xbb\ +\xb2\x38\x1e\xf6\x45\x9c\x74\xe2\x7d\xe0\x76\xd3\xdb\xb8\x53\xca\ +\x9e\xb9\xf6\xc9\xe3\xa1\x28\xeb\xf5\x6d\x9a\x25\xed\xc4\x13\xde\ +\x15\xfb\x24\x7c\xc2\x1d\xff\x14\xbe\xeb\x4a\xaa\x0a\xdf\x47\x37\ +\xe1\xbb\x32\xba\xad\xc3\x74\x8b\xe1\x36\xec\xe6\xa2\x43\xbe\xbb\ +\xa8\xf2\x31\x3e\x60\x60\x34\x81\x75\x9a\x59\xa6\x2e\xf2\x3d\x5d\ +\xe0\xab\x4f\x1a\x39\x0b\x80\x8c\x4c\x2a\xd3\x35\xf4\x7e\xb5\x16\ +\x02\x0b\x26\xbc\x5b\xad\xb5\x09\x84\x37\x42\xea\xd7\x23\x5c\x1f\ +\xa2\xfa\x6e\x0e\x7c\x44\x51\x4a\xfa\x09\x1e\x82\xfa\xd7\x05\xb7\ +\x68\x67\x8e\x0b\xbd\x52\x4a\x04\xde\x6b\xad\x16\xdf\x2f\xb8\x11\ +\x22\x60\xc2\x8a\x09\x95\x6b\x85\xa6\x22\xb9\x58\x69\x21\x41\xe3\ +\xda\x4c\x68\x30\x20\xb0\xd6\x58\x4f\xd2\x03\xd5\x82\x8a\x5b\xcf\ +\xd4\x44\xa3\x63\x2a\xd0\xda\x11\x6d\x38\x7b\xa4\x41\xda\x01\xab\ +\x34\x33\x53\x46\x67\xd1\x5b\x98\x70\x2b\xab\xd1\x46\xbc\xf6\x12\ +\x34\xaf\x02\x92\x35\xd6\x8d\xb2\x9e\x1b\x30\x6a\x07\xaa\x0a\x98\ +\x91\x5c\x83\x26\x25\xb0\x8f\xdb\x95\xd1\xb0\x91\x19\xee\x5b\x9a\ +\x00\x40\xc1\x6e\x1f\x58\xae\x44\x63\xb7\x97\x22\x80\xa0\x5c\x19\ +\xe6\x02\xa6\x39\x17\xa4\x11\x8f\xcc\xa9\x95\xf6\xe8\x99\x92\x59\ +\x41\x47\xbb\x00\x27\x6b\xa7\x02\xd1\xfb\xec\x1c\x0b\x84\x30\x72\ +\xa5\x99\xa4\x3c\x69\x4d\x9e\x90\xac\x36\xd3\x28\x9e\x89\xf7\xe7\ +\x45\x93\x07\xcc\xeb\x16\x64\xb8\x33\x18\x64\x1d\x1d\xc4\xfd\x40\ +\x75\x50\xaa\x74\x20\x35\xc7\xf1\x04\xc8\x4c\x5a\x0e\x9a\xe1\x4d\ +\x2c\x34\xf8\x95\xe9\x84\x89\xd1\x49\xb2\xc8\x23\x28\xc6\x39\x0a\ +\xa4\xd4\x01\x4c\x83\x87\x5c\x82\x93\x19\xb2\x52\x9a\x36\x90\xf0\ +\x9e\x6b\xde\xb9\x03\xa2\x96\xca\xaf\x8c\x22\x95\xf0\x82\x14\xaa\ +\xc0\x53\xf9\x19\x83\x38\x39\x43\xee\x38\x6d\x03\xca\x01\xce\x77\ +\xb2\xcb\x9f\xb4\x01\xce\xb6\xc8\x7e\x13\x3a\xcd\xc9\x11\xe4\x40\ +\xab\x95\x35\x0e\x36\x79\x18\x38\x38\x3c\x92\xa8\xee\x14\x88\x4c\ +\xf1\x9e\x8a\x3c\x6b\x0b\x7f\xc9\x3e\x8b\xc0\x3a\x65\xad\x9e\xd0\ +\xe6\x65\xd7\x53\x81\x50\x48\xb4\x26\x87\x07\x85\x63\x5c\xcf\x84\ +\xba\xcd\x00\x6f\xc3\xb4\xd2\xd6\x8e\x4a\x89\xca\x15\x93\x2d\x15\ +\xe3\x8e\x25\x1a\x0e\x92\xa8\x65\xa2\x39\x66\x94\x26\x1a\xaa\xb5\ +\x25\x0c\xce\x38\x48\x30\x4f\x6c\x70\x06\xf5\x8b\xd2\x01\x60\x63\ +\x5e\x12\x88\x2b\xe3\x81\x72\xda\x5b\xa2\x51\xc0\x24\x15\xa3\x1b\ +\x0b\xca\x50\x04\xbc\xa2\xb2\xd5\x28\x65\x6b\x10\x46\xe3\x21\xe4\ +\x99\x42\xc0\x75\xe0\xb5\xa0\x62\xb4\x28\x50\xe1\xe8\x0a\xa2\xe4\ +\x3d\xeb\xf2\x67\x91\x7c\xd4\x2a\x07\x95\x22\xcf\x1c\x2e\xab\x35\ +\x10\x42\x19\x40\x23\x47\x59\x69\x4e\xe5\x68\x28\xa7\x96\x22\xa9\ +\xc6\xd2\xb1\x06\x37\x9c\x7b\x2a\x7a\x5c\x2e\xce\x8c\x23\x8d\x48\ +\xba\x6e\x9d\x61\x96\x7b\x77\x36\x62\x9f\x27\x0d\xa6\x1b\xdc\xd1\ +\x69\xb3\xcd\x4b\xd6\x7c\xde\xd0\x62\x1c\xd9\x03\xe4\xc8\x78\xcc\ +\x14\x2d\xbd\x3c\x66\xc9\x26\x2f\xf2\xcf\x18\x64\x30\xdc\x97\xc5\ +\xa7\x66\x99\x74\xcf\x2d\x50\x6f\x50\xd5\x8d\x2e\xee\x7b\x3a\x4d\ +\xda\x68\xb0\x9b\x9b\x63\x5d\x4f\x69\xff\x2c\xd2\x7c\x03\xc4\x4a\ +\xca\x37\xfb\xa8\xfc\x94\x94\xad\xb6\xf6\x79\x5d\xd5\x51\x59\xcf\ +\x28\xfb\x34\x9e\xad\x93\x3c\x9e\x9d\xdf\xa8\xca\x52\x7c\x6d\x54\ +\x4f\x8b\x23\xcc\x4c\x65\x19\x3d\xcd\x38\x89\xda\xbe\x83\xe0\xbd\ +\xa4\xa3\x8d\xaf\x45\xf7\x69\x95\xde\xa4\x19\x2d\x9a\xc7\x2c\x79\ +\x13\xa7\xd5\x01\x50\xb6\x49\x73\x32\xfc\x4d\x81\x57\xf5\xdb\xac\ +\x78\x18\xf6\x81\x55\xf8\x5a\xdf\x44\xdb\x4f\x04\x7e\x30\x2c\xda\ +\x02\xaa\x8e\x59\x54\xcf\x20\x78\x37\x6f\xfb\xc0\x40\xe1\xa6\x23\ +\xc2\x1c\x19\x86\x1c\x8d\xb6\xb5\xd9\xea\x5e\xb0\x66\xd9\xe2\x97\ +\x93\xd4\x67\xf7\x5b\x9e\xbe\x98\xa7\x69\xe0\x3b\xf4\x65\x1a\x2d\ +\x08\x37\x48\x61\x7a\x06\xa2\x0a\xdd\x5c\x7d\x50\x81\x50\x7a\x42\ +\xe5\x5a\x74\x17\x55\xa1\x07\x60\x45\x7d\x68\xa0\x11\x36\xd1\x43\ +\xd3\x05\x7b\xa2\x01\x11\x13\x2b\xf5\xcb\x41\xa1\x45\xa3\xc6\x79\ +\x44\x1b\x8e\x1e\x69\x0d\xf8\x6a\x80\xaf\x9a\x32\x3a\x67\xd0\x74\ +\xbc\x1f\x14\x9a\x96\x36\x39\xf6\x7d\xc7\xc5\x0c\xfa\x83\xd3\xd4\ +\x14\x3a\x75\xe8\xfb\x96\x4b\x00\x18\x7a\xa1\x47\xdf\x21\x00\x43\ +\x1f\xb7\x1a\x6d\x71\xe2\xdd\x99\x38\xb4\x3d\x19\x33\x40\xd3\xdc\ +\x14\x81\x59\xab\xd3\x3a\x41\xbd\xaf\xa7\xc1\x34\x82\x26\x0b\x0c\ +\x63\xe8\x44\x80\x5c\x1a\x87\x08\xa5\x95\x6f\x65\x35\x4c\x1b\xcc\ +\x04\x51\x52\xaf\x9d\x86\x6c\x20\x12\x8e\x11\xd8\x53\x6f\x03\xb8\ +\x4b\x3a\x05\xef\xb6\x13\x3b\x68\xd5\xcc\x47\x58\x73\xa0\x02\xd6\ +\x41\x53\xe4\x08\xbc\xf6\xdd\x4c\xd1\x69\x31\x13\xda\x2c\x43\x03\ +\x11\xce\x3a\xd3\x8c\x0a\x83\xc2\xde\xd1\x53\xd7\x3f\xcf\xea\x67\ +\x1c\xea\x86\xb7\x8b\xd3\x16\xd0\x35\x01\xc9\xad\x9d\x09\x9f\x4e\ +\x9a\x6b\x98\xe7\x91\x36\x0c\x3f\x98\xbe\x00\xa2\xc0\x96\x64\x2d\ +\x30\x69\xce\x56\x13\x2e\x86\x34\x70\x0c\x3a\x2b\x2e\x30\x22\x70\ +\xa9\xed\xeb\xb9\x81\xbf\xff\xc0\x7d\x79\xe8\xb6\x48\xba\x54\x5c\ +\xf1\x2f\xf2\x3e\x3d\xe3\x7d\x3b\x61\x3e\xe9\x8c\xdd\x15\x15\x4a\ +\xb7\x93\x57\x83\xc3\xf4\x02\xbb\xf8\xcb\x02\x0e\x6b\x10\x91\xad\ +\xee\x61\xc1\x16\x9c\xfe\x74\x6b\xf1\x35\xcc\x67\x34\xcf\x53\x3c\ +\xf9\x65\xa4\xc4\x5b\x64\x2f\x7e\x91\xe7\xf1\xd7\x79\x9a\x9f\x77\ +\xba\xd3\x2e\xf2\xd0\xbb\xbc\xc7\x7d\x82\x69\xfa\x19\x53\x5f\x75\ +\xa8\x28\xff\x5c\xfe\x12\x92\x44\xfe\x39\xee\x7f\x43\x92\xdf\x13\ +\x49\x4e\x7e\x40\x8b\xca\xed\xac\x23\x9c\x2d\xee\x73\x2f\x9b\x18\ +\xd5\x25\x13\x92\xae\x39\x50\x04\x33\xa6\x5a\x4d\x9f\x86\x6d\x29\ +\x5d\x60\xbc\x41\x0b\x17\x98\x7a\xe9\xb5\xc9\xbd\x5e\x9e\xbb\x3b\ +\x68\x74\x06\x03\x30\x4d\xa1\xdd\xcf\x84\xb8\x0f\xc3\xaf\x83\xab\ +\xf6\x3d\x92\x8b\xe1\xfa\x50\x93\x24\xcc\xf8\x4a\xfe\x73\xfa\xbf\ +\x78\x85\x06\x05\x5f\xba\x43\xe3\xaf\x97\x5f\xba\x44\x27\xbf\x7b\ +\x9e\xb9\x45\xa7\x3f\x99\x3e\xbf\x45\x8e\x9f\xbf\x45\xcd\xdd\x39\ +\x96\xd9\xab\x97\xa7\x3f\x13\xbf\x7e\x7e\x99\x2e\x4e\xca\xec\xb7\ +\x97\xf1\xa0\xf5\xb7\x95\xd8\x55\xb8\xfb\x15\x04\x7a\xd6\x4a\x2e\ +\x21\x90\xc0\x2b\xfb\xaa\x79\xf9\xb0\xcc\xba\x06\x73\xe6\xab\x91\ +\x8b\x7b\x41\x83\x80\x77\x84\x40\x0c\x23\x8a\x54\xdf\x10\xe8\xff\ +\x08\x81\x9c\xfd\x4f\x22\x90\xf5\xf4\xb1\xfc\x1b\x02\x7d\x43\xa0\ +\x3f\x14\x02\x5d\x98\xe3\x2e\x23\x90\xe7\xff\xe3\x08\x34\x3c\x76\ +\x0f\xcd\xd7\x15\xfd\x6f\xc8\xdb\x17\xff\x02\xac\x8c\x8b\xe6\ +\x00\x00\x0a\x68\ +\x00\ +\x00\x32\xaa\x78\x9c\xed\x5a\xdb\x6e\xdb\x48\x12\x7d\xf7\x57\x70\ +\x95\x97\x04\x2b\xb6\xfa\x7e\x51\xec\xcc\xc3\x04\x33\x18\x60\x17\ +\x0b\xec\x4c\xb0\x8f\x03\x9a\xa2\x64\x21\x92\x68\x50\x74\x6c\xe7\ +\xeb\xf7\x54\xeb\x46\x49\xb4\x2e\x8e\xe3\x87\xcc\x48\x48\x2c\x75\ +\x57\x77\x55\x9d\x3a\x55\x7d\x11\x2f\x7f\x7a\x98\x4e\x92\x2f\x45\ +\x35\x1f\x97\xb3\xab\x8e\x60\xbc\x93\x14\xb3\xbc\x1c\x8c\x67\xa3\ +\xab\xce\xa7\x3f\x7e\x49\x7d\x27\x99\xd7\xd9\x6c\x90\x4d\xca\x59\ +\x71\xd5\x99\x95\x9d\x9f\x3e\x5c\x5c\xfe\x23\x4d\x93\x9f\xab\x22\ +\xab\x8b\x41\x72\x3f\xae\x6f\x92\xdf\x66\x9f\xe7\x79\x76\x5b\x24\ +\x6f\x6f\xea\xfa\xb6\xdf\xeb\xdd\xdf\xdf\xb3\xf1\xb2\x91\x95\xd5\ +\xa8\xf7\x2e\x49\xd3\x0f\x17\x17\x97\xf3\x2f\xa3\x8b\x24\x49\xa0\ +\x77\x36\xef\x0f\xf2\xab\xce\x72\xc0\xed\x5d\x35\x89\x82\x83\xbc\ +\x57\x4c\x8a\x69\x31\xab\xe7\x3d\xc1\x44\xaf\xb3\x11\xcf\x37\xe2\ +\x39\x69\x1f\x7f\x29\xf2\x72\x3a\x2d\x67\xf3\x38\x72\x36\x7f\xd3\ +\x10\xae\x06\xc3\xb5\x34\x59\x73\xaf\xa2\x90\x08\x21\xf4\xb8\xec\ +\x49\x99\x42\x22\x9d\x3f\xce\xea\xec\x21\xdd\x1e\x0a\x1b\xdb\x86\ +\x4a\xce\x79\x0f\x7d\x1b\xc9\xd3\xa4\xfa\x0f\x13\x40\xf1\xa4\x31\ +\xb1\xb7\xa9\x1d\xf0\xdf\xe2\xdf\x7a\xc0\xaa\x81\xcd\xcb\xbb\x2a\ +\x2f\x86\x18\x59\xb0\x59\x51\xf7\x3e\xfe\xf1\x71\xdd\x99\x72\x36\ +\xa8\x07\x8d\x69\x56\xe8\x6f\xe9\xdd\x0a\xc9\x2c\x9b\x16\xf3\xdb\ +\x2c\x2f\xe6\xbd\x55\x7b\x1c\x7f\x3f\x1e\xd4\x37\x57\x1d\xab\x6f\ +\x1f\xe2\xf7\x9b\x62\x3c\xba\xa9\x1b\x0d\xe3\xc1\x55\x07\x1e\x2a\ +\x2b\x64\xfc\xde\x20\x90\x58\x08\x2c\xa7\xeb\xaf\x7b\x38\xd3\x2e\ +\xa9\xa4\x34\x5e\x45\x89\x95\xd9\xfd\x41\x99\x93\x1d\x57\x9d\x8f\ +\x55\x36\xac\xff\xfc\x1d\x74\xca\x6f\xfe\x5d\x0e\x0a\x46\x18\x7e\ +\x80\xec\xe5\xa0\x18\xce\x69\xcc\x42\x31\x7d\x83\x66\x1d\xfb\xd0\ +\xbb\xd6\x75\x0b\x5d\xb7\x45\x4e\xac\x58\x48\x37\xb4\xd4\x8f\x04\ +\xc4\xb6\xa8\x5a\xa0\x95\x6c\xd9\x7b\xfb\xe7\x03\x8c\x4d\xfa\x89\ +\x92\xf8\x4f\xb4\x4a\x3c\x2e\x24\x04\x02\x8d\x3f\xbc\x55\xe6\x2b\ +\xc1\x75\x60\x9a\xa5\x05\x69\x59\x8d\x47\x63\xe0\x13\xe5\xa4\x60\ +\x2a\xbe\xb6\xc7\xc0\xe9\x86\x6f\xca\x4a\x64\x69\xef\x04\xef\x77\ +\x07\x1a\xef\x8f\x1b\xc2\x99\x21\xa7\x96\x86\xec\x9a\xb2\xed\xa1\ +\x88\x92\xe6\x9b\x80\x5a\xc2\xbd\x3b\xcd\xb1\xc8\x3d\x0b\x00\x1b\ +\xe4\x8f\x07\x00\xaa\x47\x91\x55\xbf\x56\xd9\x60\x8c\x9a\xd9\x74\ +\x7d\xbb\x47\x09\xad\x53\xbb\xcc\x1a\x8c\x9b\xd7\xe5\xed\x4a\x7a\ +\x99\xd2\x68\x81\x94\x4d\x43\x67\xd3\x31\xaf\x1f\x27\xc5\xa2\x2f\ +\xcd\xcb\x49\x59\xf5\xdf\x0c\xe3\xeb\x7d\x6c\x2a\x51\x3f\xc6\xf5\ +\x63\x5f\x34\x86\x94\xc3\xe1\xbc\x40\xbd\xd8\xd0\xf4\x90\x3a\x9f\ +\xca\xf3\xd5\xf1\x16\x75\x62\x83\x49\x6f\xdb\xf5\x73\x91\x72\x5c\ +\x1c\xc5\xc9\x71\xf5\x7a\x28\x39\x6e\x5e\x09\x23\xfa\x96\x4d\xf6\ +\x30\x5a\xb1\x0f\xea\x26\x48\xa6\xab\x4e\x36\xb9\xcf\x1e\xe7\x6b\ +\x0d\x71\x0d\xeb\xdf\x54\x05\xd6\xdc\x37\xad\xbc\x6b\xc2\xbd\xad\ +\x44\xd9\x46\x5d\x1a\x2d\x1b\x3f\xcd\xc6\x35\x96\xd7\xbb\x79\x51\ +\xfd\x4e\x4b\xd4\x7f\x66\x9f\xe6\xc5\x9e\xd4\x1f\x55\x36\x9b\x63\ +\x3d\x9c\x5e\x75\xa6\x59\x5d\x8d\x1f\xde\x8a\x2e\xa7\x37\xb3\xc1\ +\x1b\x19\x34\x3e\x4b\x2e\x99\x97\xde\xaa\x77\xeb\xe1\x39\x72\x0e\ +\x4b\x11\x93\x56\xf3\x0d\xf9\x72\x64\xab\x75\x92\xb9\xe0\xd4\xc6\ +\xde\x61\xab\xec\xb0\x55\xb6\x42\x1d\xd7\x4c\x69\x23\xe0\xd1\xf9\ +\x09\xea\xb8\x3f\x4e\x3b\xc1\x5f\x91\x76\xe2\xb5\x52\xf3\x9c\x2a\ +\xee\x1b\xc9\xf0\xd7\xab\xe2\xde\xea\x94\xa7\xfc\x28\x51\xbc\xb5\ +\xa9\x49\x5d\x6b\xe4\x0f\xc6\x94\x5b\x11\x72\xbe\x43\xa0\xf7\x27\ +\xb0\xc5\x5b\x9f\xba\x46\xa6\x37\xc3\x7f\x50\xa3\x72\x21\x1f\x5e\ +\x3f\xa9\xf1\x5b\xab\xb9\x72\xee\x28\x5a\x30\xe1\x7c\xa4\x86\xc3\ +\x2c\xe3\xcf\x41\x4a\xf9\xb6\x8c\x3c\x82\xd2\x30\x1b\x0e\xe5\xf7\ +\x43\x29\xf2\xea\x34\x56\xbd\x36\xa7\x5e\x8b\x51\xe7\x14\xa1\xc0\ +\xff\xc2\x5b\x49\xc3\xf5\x93\x2b\xd5\x7e\x34\xae\x27\x59\xfe\x79\ +\x67\x8d\x78\x7f\x84\x43\x2b\x02\x18\x6e\x4e\x58\xa8\x20\xd5\x56\ +\x76\x80\xc3\x41\x9a\xb4\x18\x76\x88\x94\xcf\xf7\x4c\xb4\x7b\x26\ +\x5f\x2e\x79\xb5\xc0\xa2\xa0\x8e\xa7\xaf\x56\xa9\x48\xd5\x6b\x26\ +\xb0\x36\xb0\xcc\xbf\x56\x0a\xb7\x6f\x5f\x4f\xdb\x54\xd2\x9e\x4e\ +\x08\xcd\x8c\xf5\x7a\x7b\xfb\xc7\x99\x0f\x92\x87\xcd\x12\x81\x8d\ +\x1e\x76\x84\x0d\xd2\xe5\x6d\x63\xf3\xd6\xb1\x04\x4d\x36\x1e\x55\ +\x03\x79\x2c\x5c\xc2\x18\x6b\x0f\xa3\xf4\x0b\xa7\xf7\xf3\xb6\x77\ +\x34\xbd\x3f\x3c\x7d\xc8\xe8\xbd\x13\x04\xc6\x17\xaf\x56\xa6\xaf\ +\x3a\x1b\x81\xda\x8e\xc9\x0b\x05\xca\x12\xd6\xae\x59\x85\x0f\x46\ +\xca\x6d\x45\x6a\x7f\xf0\x91\x50\x1d\xcd\x2c\x60\xe9\x8e\x9c\x07\ +\xbf\x31\x54\xee\xc8\x09\xf0\xfb\x85\xea\xd4\x2a\x24\xc0\xd6\x27\ +\x39\x7d\xea\x49\xe5\x90\xc5\x7c\x6d\x71\x1b\x42\xd6\xea\x73\x6a\ +\xf7\x9b\xa1\xa7\xf7\xb3\x00\x6b\x57\x6f\x9f\x57\x9c\xc0\x50\x6f\ +\x19\xce\x7e\xda\x6c\x31\x5c\x19\x86\xb3\x65\x10\xdb\x47\x51\xa5\ +\x58\x80\xaa\xc6\x76\x35\x6f\x95\xcd\x5b\x65\x9f\x3e\x37\x73\x88\ +\x72\x1d\x64\x70\xf1\x00\x0d\x5f\xb5\x10\x4a\x76\x53\x23\x19\x0e\ +\xf0\x52\x87\x6e\xea\x70\x92\x56\x4a\x18\xff\x6e\x6f\xc2\xc3\x09\ +\xbb\x7f\xe6\xd7\xda\x6c\x92\xef\xc0\xe5\x81\x34\x8d\x6c\x7c\xea\ +\x12\xe2\xec\xfd\x0b\xcd\x7a\x06\x51\x32\x7a\xbf\x10\x4f\xa5\x3d\ +\x90\xee\x2d\xca\xaf\xe3\xeb\x85\x58\x2a\xed\x33\xef\x7f\xe8\x62\ +\xc3\x31\x67\x84\x13\x6a\x9b\xa4\x68\xb4\x42\x7a\xb3\x45\x52\xcf\ +\xbc\xd4\x5a\xec\x70\x74\x4f\x34\x6f\x13\x3d\x4c\x51\x2f\x5d\x83\ +\xa2\x4a\x3a\xeb\xba\xa9\xf6\x0c\xc5\xdc\x86\x48\x51\xc1\xac\x37\ +\x42\xbd\x08\x45\xf5\x49\x14\xb5\xdf\x85\xa2\xf6\x1c\x8a\x66\x8a\ +\xde\x2f\x45\x51\x77\x1e\x45\x75\x4e\xef\x97\xa2\xa8\x7b\xc9\xbb\ +\x22\x1d\xb4\xdb\x0f\xce\x5f\xe5\x98\xa6\x79\x30\x67\x90\x88\x73\ +\x73\xbd\xb7\x1e\x9f\x7a\x50\x83\x2e\x77\x16\x6b\x72\x51\xa8\xa1\ +\x3b\x41\x5b\xdb\xe1\x49\xd3\x2e\xed\xe5\x68\x62\xb8\xfc\x01\x69\ +\x72\x16\x00\xce\xfe\x78\x00\x3c\x91\x27\xdf\xf0\x5b\x06\xf6\x41\ +\xae\x73\x20\xe1\xa4\xd9\x2c\x8f\x0f\x02\x6b\x5e\xd0\x4c\x18\xd7\ +\x38\x13\x3e\xa2\x55\x78\xc3\x84\xe2\x8d\xd5\x45\x5e\x75\xb4\xd2\ +\xd8\xc3\x35\xeb\xd5\x23\x5a\x85\xe6\x4c\x4a\xa7\x36\xde\x7f\xeb\ +\x0f\x24\x58\x45\xb5\x54\xc2\x4b\xbb\xfc\xa5\x64\xfd\x55\x62\x85\ +\x96\xce\x60\xa7\x47\x8b\xb2\x85\x2f\xf6\xdd\x33\x8a\x0e\x41\x74\ +\x7a\x19\x90\x85\x97\xfc\x94\x32\xd0\x5a\x74\xb0\x2d\x3d\xab\xe8\ +\x18\x39\x1c\xb6\xdc\xd8\x9e\x58\x74\xa4\x79\xe6\x4f\x8c\xed\x91\ +\x7c\x22\xea\xad\x04\x69\xe5\xd2\x8b\x05\xf9\xfc\xad\xd2\xee\x7d\ +\xa0\x77\xe7\xa7\xcf\xe1\xbd\xd2\x65\x8f\x1e\xf4\x88\x9f\xd6\x09\ +\x4f\x0f\x8a\x0c\xbe\x8c\x8b\xfb\x8b\xb5\x21\xd7\xd9\xda\xb2\xdb\ +\x6c\x54\xc4\x38\x43\xef\xe2\x6c\xb9\xec\xb8\x2e\xab\x41\x51\xad\ +\xba\x6c\x7c\x6d\x75\x2d\xa9\xb0\x78\x00\xea\x62\xdb\x3a\x9a\x75\ +\xdd\xcf\xdb\xfb\xe7\x37\xd9\xa0\xbc\xbf\xea\xc8\xdd\xce\xaf\x65\ +\x39\xa5\x0b\x08\xb3\xdb\x11\x8f\x67\x7b\xe2\x71\x9b\xbc\xdf\x7a\ +\x57\x55\x00\x2f\x9d\x64\x8f\x05\x1c\x88\x7f\x56\x2c\x9a\xdf\x94\ +\xf7\xa3\x8a\x80\xa8\xab\xbb\x62\x77\xe4\xa0\xcc\xef\xe8\x41\xaa\ +\xf4\x6e\x11\xd0\xe5\xe3\x3b\x0d\x09\x1a\x9b\x5e\x5f\x97\x0f\xed\ +\x13\xdc\x8f\x67\x70\x2c\x5d\x3e\x10\x84\xcd\xfb\x9e\xfb\x4b\x89\ +\xd5\x23\x42\xce\xf8\x27\x24\x1e\x36\x29\xbc\xdb\x45\xc0\x87\x27\ +\xfa\xa6\xd9\xc3\x78\x3a\xfe\x5a\x0c\x36\xf7\x24\x97\xd3\xa2\xce\ +\x06\x59\x9d\x6d\x58\xb0\x6a\x51\x56\xac\x8a\xcf\x65\x35\x18\xf6\ +\xff\xfb\xf1\x97\x75\x71\xc8\xf3\xfe\xff\xca\xea\xf3\x26\xaf\x49\ +\x20\xbb\x2e\xef\x60\xf6\xba\x60\xd1\xd3\x46\x79\x9f\x72\x29\xab\ +\x3f\x8c\xa7\x88\x2d\x3d\xca\xf5\xcf\x87\xe9\x04\x7c\x5c\x77\x6c\ +\x09\xd3\x2a\xb4\x99\x74\x31\x6d\x55\x2c\x1e\xd5\x6a\x7d\xba\x6d\ +\x90\x4f\xc7\x34\xa8\xf7\x7b\x3d\x9e\x4c\x7e\x23\x25\x8d\x22\xb6\ +\x9c\x74\x5c\x4f\x8a\x0f\x51\xe7\xe2\xe3\xca\x8b\xde\xd2\x8d\xf5\ +\x8d\xcd\xc6\xcb\xcb\xde\x0a\x86\xf8\x6d\xb4\x81\x67\x8b\x32\x6b\ +\x84\x27\xd9\x75\x31\xb9\xea\xfc\x8b\x3a\x93\xbd\xde\x51\x55\xde\ +\xdd\x4e\xcb\x41\xb1\x1c\xbe\x82\x75\xd4\x2c\x03\x23\x2d\xc3\x66\ +\xc5\xab\x37\x75\x28\x7e\x9c\x64\x75\xf1\x36\x55\x1e\x75\x2b\x78\ +\xab\xbb\xa9\x50\x92\x59\x6d\xe8\xa7\xf8\xb5\x43\xb7\x59\x7d\xd3\ +\xa8\xd9\xeb\x54\x87\x66\x02\x09\xac\xcd\xdb\x5f\x3b\x15\x9a\xe6\ +\x51\x3a\xfe\x88\xb5\xe9\x20\x6a\x24\x5a\x38\x66\x3c\x0f\xb6\x2b\ +\x82\x62\x01\x2f\x9b\xe4\x49\xaa\x18\x0e\x78\xb6\x9b\x72\x1c\x18\ +\x71\x8c\x4c\x52\x41\x97\x30\x42\xe0\x3c\xc9\x82\xb0\xca\x27\xa9\ +\x64\x9c\xee\x75\x70\xac\x64\x0a\xdc\x17\x09\xef\xa6\x86\x59\xa3\ +\x34\x7d\x12\x82\x29\x6e\x5d\x88\x9f\x2d\xdd\x9f\x88\x90\x60\xb0\ +\xe1\xc6\x39\x9a\xd7\x5b\x61\x4d\x92\x06\xe6\xb5\xa0\x59\x24\x16\ +\x80\x84\x86\x05\xa3\x70\x56\xb5\xcc\x39\x0d\x5b\xd0\x8e\x43\xad\ +\xb1\x34\xb7\xd1\x42\x18\x32\x45\x19\x63\x44\xd4\x11\x70\x24\x82\ +\x66\x26\x9c\x17\x12\x2d\x70\x26\x04\xa7\x12\x28\xe0\x82\xab\x2e\ +\x1c\xf1\x4e\xd9\x04\x83\x9d\xe5\x8e\xbe\x6b\xad\x9d\x46\x43\xb0\ +\xce\x4a\x54\x7f\x6e\x0d\xcd\x60\x82\x95\xaa\x8b\x10\x98\xe0\x6c\ +\x82\x85\xc0\x6a\xcc\x08\x71\x87\x19\x13\xcd\x3c\x97\x00\x04\x78\ +\xe0\x98\x6e\x20\xef\x45\x20\xa3\xf1\x4d\x3a\x74\x4b\xba\xfb\x21\ +\x23\x45\xd0\x4a\xd0\xf4\x81\x7b\x58\x0d\xdc\x9c\xf7\x9e\x06\x60\ +\x75\x92\x5d\x72\x53\xc4\x01\xd2\x7b\xd5\x25\x79\xa7\xc8\x1c\x1d\ +\xbc\x09\x38\xb7\x23\x49\xe3\xfc\x12\xfa\x0d\x69\xf0\x10\xf0\x18\ +\x40\xd7\x03\x81\x34\x60\x7b\x1f\x3d\x22\x04\x03\x69\xb0\x4a\x72\ +\x93\x48\xa6\x82\x33\xaa\x6b\x99\xf6\xc6\x4b\x7c\xf7\xc2\x69\xd1\ +\x15\x1a\x91\x80\x0a\x08\x72\x29\xad\xe9\x4a\x6c\x52\xb5\xf6\x2a\ +\x06\xd5\x2a\x17\xe0\xa5\x32\x0a\xc8\x1a\xe6\x82\x8d\x5e\x7b\x18\ +\x89\x70\x78\xba\xf4\x0d\x1a\x66\x2a\xce\x85\xa5\x11\xc2\x28\x6e\ +\x20\x41\xb7\x61\x04\xb3\x05\x5c\x16\xeb\xa5\x76\x5e\x46\xdc\xe1\ +\x26\x97\x5d\x01\x68\xe2\xa4\x70\xdc\xd8\x10\x91\x04\x30\x01\xc8\ +\xca\x20\x95\x8e\xd4\x02\xb6\xd1\x33\xe5\x29\x9a\x08\x81\xd6\x04\ +\x1d\xfe\xf7\x31\xe0\xd0\xa5\x1d\xb6\xc1\xf0\x4c\xd1\x1d\x1b\x3e\ +\x79\x44\x21\x01\xa1\x84\x01\x50\x68\x01\xe3\x14\xb2\x26\x01\x0a\ +\x18\x4d\x96\x7a\x1f\xa2\xda\x60\x42\x34\x03\xf1\x21\x66\xc1\x30\ +\x72\xbf\x2b\x3c\xe3\x4a\xe8\xe4\xe7\x44\x2b\x07\x92\x48\x11\x99\ +\xaf\x42\x10\xb0\x45\x3a\x46\xd7\xc9\x94\x0d\xb0\x0b\x20\xf9\xad\ +\x0c\xd1\xc9\x84\x08\x2d\x8b\xd4\x24\x5f\x93\x29\xd8\x89\x40\x6a\ +\x2d\x7d\xb4\x4d\x2b\x23\x3d\x65\x0f\xf8\x08\x56\xd1\xfd\x20\xf3\ +\x4a\x82\x6d\xd4\xe2\x65\x58\x70\xd6\x3a\x0c\x21\xce\x2a\xa7\x17\ +\x94\xe5\xb0\x0c\x7e\x5b\xaf\x28\x5e\x80\xd6\x83\x92\x88\x1b\x17\ +\xc2\xfa\x2e\x86\x20\x06\x1e\x2d\x84\x32\x18\xdf\x85\xd7\x40\x19\ +\x31\x8e\x8f\xf2\x48\x0a\xa0\x83\x71\x1a\x28\x28\x8d\xac\xeb\x3a\ +\x16\x14\xca\x7d\xf4\x3a\xf8\x60\x68\x0e\x25\x85\x46\xda\x22\x17\ +\x11\x10\x20\xc3\xe8\x91\x1a\xca\x6c\xe8\x41\xd4\x03\xa5\xb6\x94\ +\x70\x3e\x21\x9b\xc0\x1d\x07\x07\x02\xb3\xdc\x72\x9f\x7c\xdd\xbf\ +\x5f\x5f\xff\xa8\x07\x11\x50\x42\x69\xf5\x7e\x88\x92\x4d\x47\xe5\ +\x78\xb7\x41\x5f\x1a\xfb\xc8\x79\x5d\x95\x9f\x0b\x94\xae\x59\xb3\ +\xa0\xbf\x78\x85\xdb\xaf\x6f\x31\x95\x09\x02\x0f\xf8\x00\xa4\xf8\ +\xbb\xbe\xfd\x5d\xdf\x7e\xfc\xfa\x46\xd9\x8c\xc2\xa2\xbb\x98\x94\ +\x03\x31\x1b\x33\x1d\x75\x49\x2d\x2b\x8a\x73\xc4\x3e\x85\x04\x10\ +\xc2\x93\x14\xb2\x04\x81\xf8\xbb\xc0\xad\x0a\x5c\xac\x66\xd8\x9a\ +\xbe\x7d\xb3\x7f\xa0\x7b\xf7\x44\x79\x7b\x23\x8c\xbe\x8e\x87\x68\ +\xfa\xba\x38\x1b\xf4\xe9\x11\x4b\x1b\x8c\xf6\x7a\xd5\x8e\x3d\x6e\ +\x51\x4d\xb0\x77\xaf\xfb\xeb\xb6\xdd\xb9\xd2\x41\x86\xa3\x53\x55\ +\x65\x8f\xdb\x45\xf3\xb2\x37\x5a\x6c\x68\xf1\xe7\x92\x36\xe0\x1f\ +\x2e\xfe\x0f\x32\x93\x27\xe3\ +\x00\x00\x0b\xd5\ +\x00\ +\x00\x37\xfe\x78\x9c\xed\x5a\xdb\x72\xdb\xd6\x15\x7d\xd7\x57\xa0\ +\xf4\x4b\x3c\x05\xc0\x73\xbf\x50\x92\xf3\x10\x4f\x3a\x99\x71\xa7\ +\x33\x4d\xdc\x3e\x7a\x20\x02\x92\x50\x93\x00\x07\x04\x75\xfb\xfa\ +\xae\x0d\x92\x00\x21\x41\x16\x15\xd3\x52\xda\x98\xb9\x88\x38\xf7\ +\xb3\xcf\x5a\x7b\xaf\x0d\x9e\x93\x1f\x6f\xe6\xb3\xe0\x2a\xab\x96\ +\x79\x59\x9c\x8e\x78\xcc\x46\x41\x56\x4c\xcb\x34\x2f\x2e\x4e\x47\ +\x1f\x7f\xfb\x39\x72\xa3\x60\x59\x27\x45\x9a\xcc\xca\x22\x3b\x1d\ +\x15\xe5\xe8\xc7\x77\x47\x27\x7f\x89\xa2\xe0\xa7\x2a\x4b\xea\x2c\ +\x0d\xae\xf3\xfa\x32\xf8\xa5\xf8\xbc\x9c\x26\x8b\x2c\xf8\xe1\xb2\ +\xae\x17\x93\xf1\xf8\xfa\xfa\x3a\xce\x37\x85\x71\x59\x5d\x8c\xdf\ +\x06\x51\xf4\xee\xe8\xe8\x64\x79\x75\x71\x14\x04\x01\xe6\x2d\x96\ +\x93\x74\x7a\x3a\xda\x74\x58\xac\xaa\x59\xd3\x30\x9d\x8e\xb3\x59\ +\x36\xcf\x8a\x7a\x39\xe6\x31\x1f\x8f\xba\xe6\xd3\xae\xf9\x94\x66\ +\xcf\xaf\xb2\x69\x39\x9f\x97\xc5\xb2\xe9\x59\x2c\xdf\xec\x34\xae\ +\xd2\xf3\xb6\x35\xad\xe6\x5a\x36\x8d\xb8\xf7\x7e\xcc\xc4\x58\x88\ +\x08\x2d\xa2\xe5\x6d\x51\x27\x37\x51\xbf\x2b\xd6\x38\xd4\x55\x30\ +\xc6\xc6\xa8\xeb\x5a\xee\xd7\x6a\x72\x33\x83\x29\x1e\x5d\x4c\x53\ +\xbb\x3b\x3b\xcc\xbf\xc0\x7f\x6d\x87\x6d\x41\xbc\x2c\x57\xd5\x34\ +\x3b\x47\xcf\x2c\x2e\xb2\x7a\xfc\xfe\xb7\xf7\x6d\x65\xc4\xe2\xb4\ +\x4e\x77\x86\xd9\x5a\xbf\x37\x6f\xef\x48\x8a\x64\x9e\x2d\x17\xc9\ +\x34\x5b\x8e\xb7\xe5\x4d\xff\xeb\x3c\xad\x2f\x4f\x47\x46\x2d\x6e\ +\x9a\xe7\xcb\x2c\xbf\xb8\xac\x77\x0a\xf2\xf4\x74\x84\x1d\x0a\x6b\ +\x4c\xf3\xbc\x5d\xc3\xa4\x45\x12\x8b\xa5\x58\x37\xdd\x0c\xbc\x5b\ +\xa5\x5c\xcc\x83\xca\x5b\xc3\xfa\xbd\xd3\x72\x4a\x4b\x3a\x1d\xbd\ +\xaf\x92\xf3\xfa\x93\x78\xff\xeb\x25\x7a\xfe\x2b\xcf\xae\xe3\xad\ +\x3d\xdb\xe1\xca\x55\xbd\x58\xd5\x9f\xb2\x9b\x3a\x2b\xd6\xe3\x62\ +\x47\x3b\xdb\x6b\xaa\xa9\x5b\xdc\xdb\xda\x0e\xd4\xf9\xe8\x1d\x4a\ +\x4e\xd2\xec\x7c\x49\x35\xeb\x5d\xd1\x13\xb6\xe5\x9a\x3a\xd4\xe2\ +\x68\xb2\xa4\xfa\x5b\x95\xa4\x39\x00\xb9\x6e\xb7\x6e\xd9\xaf\x91\ +\xd6\xd9\x4d\x1f\xf4\x5a\xd6\xe5\x62\xdb\x76\x63\x2d\x94\xa0\x8d\ +\x1f\x75\xc5\xe5\xf9\xf9\x32\x83\x55\xd9\x4e\xd9\xb2\xbe\x9d\x65\ +\xeb\xd6\xd1\xb4\x9c\x95\xd5\xe4\x0d\x33\xdc\x4f\xd9\x71\x53\x54\ +\xe2\xb0\xf2\xfa\x76\xc2\x8f\x47\xc1\xf8\xc9\xd9\x3c\x1f\x98\x8d\ +\x7f\x79\x36\xf4\x9a\x9e\x9f\x3d\x3a\xdb\xc9\xb8\xbf\xed\xe7\x5a\ +\xc9\x19\xf5\xa4\x95\xdc\x06\x54\x2f\x63\x25\x87\xb3\x7e\x21\x2b\ +\xb5\xd8\x5d\x00\x84\x8b\x6c\x4a\xee\x6b\x3b\x4d\xcb\x81\xfa\x96\ +\x18\xdb\x6f\x2a\xd3\x76\x39\x1d\x9d\x16\x9f\x6e\x60\x95\x60\x12\ +\x48\x81\xff\xf1\xc1\x16\xb7\xeb\x16\x1c\x1e\x09\x7f\xd8\x60\x9b\ +\x3b\xe2\xf5\x17\x86\xd9\xac\x20\x2a\xab\xfc\x22\x07\x71\x9a\x76\ +\x82\xc7\xb2\xf9\xf4\xfb\xc0\xa8\x3b\x7b\x13\xd6\xaa\xce\x26\x8f\ +\x60\x64\x3b\x0d\x2c\x3b\x43\xb7\xd3\x51\x32\xbb\x4e\x6e\x97\xed\ +\x98\x8d\x73\x9c\x5c\x56\x19\x9c\xf9\x9b\x01\x34\x7d\x01\x6c\xdc\ +\x75\x4b\xbb\xd8\x14\x7e\x2c\xf2\x1a\x5e\x7b\xb5\xcc\xaa\x5f\xc9\ +\xf3\xfd\xa3\xf8\xb8\xcc\xba\xc9\xf8\xe9\x48\x3b\x1e\x0b\x23\x65\ +\xd7\xf7\x16\xa5\x5c\x98\xd8\x7a\x23\x74\xd7\x56\xc0\x70\xcc\xc7\ +\x5a\x79\xde\xd1\xfa\x16\xa5\x30\x77\xcc\x99\x65\xee\xc1\xec\xbf\ +\x55\x49\xb1\x84\xfb\x9e\x9f\x8e\xe6\x49\x5d\xe5\x37\x3f\x20\xe2\ +\x1a\xae\xbc\xe4\x21\xc3\x3f\x3c\x8c\xb4\x62\xb1\x37\x5e\xe1\xab\ +\x95\xb1\xb4\x46\x89\xb7\xaf\x6b\x44\xf5\x4c\x23\x3e\xbe\x59\x84\ +\x28\x2b\xb8\x62\xda\xfa\x10\x5f\xad\x33\xf0\x51\x3e\xa4\x62\x29\ +\xb5\xf1\x56\xd0\x77\x14\xc2\x24\x82\x87\x5a\xe9\x58\x6a\x46\xa5\ +\xd2\xf9\x58\x19\xa3\xcd\xdb\xde\x59\x19\xa6\x63\xaf\x8c\xf6\xbd\ +\xb3\xf2\x22\xb6\x9c\x3b\xef\xfb\x67\x85\x13\x94\x5c\x0a\xd9\x3b\ +\xab\xae\xed\x53\x36\x1e\x74\x66\x11\xdb\xc7\x9d\x45\x2f\xec\xd0\ +\x22\xf1\xba\x8e\xbf\x6f\xd8\x27\x0e\x61\xf8\xc0\x06\x0f\xf7\x19\ +\x34\x32\x4a\xc6\x42\x38\x25\xc3\xc8\x89\x58\x29\x0d\xa9\xf2\xf6\ +\x99\x40\x1e\x38\x72\xc1\xed\xbe\xa4\x8a\x06\xdc\xed\x7d\x7e\x7e\ +\x63\x5e\x47\x6c\x07\x09\xc3\xdc\x8e\x76\xd7\xf9\xb5\xfc\x86\xa6\ +\xf2\x5c\x33\xdf\x9e\x82\xb5\x22\xc6\x69\x1b\x8d\x53\x50\xb1\x96\ +\x42\xfb\x3f\x1e\x83\x61\xa3\xbd\x38\x1c\x0d\x09\x85\x6f\xca\xe2\ +\x48\xbe\x3e\x8f\x29\x98\x09\x7b\x3f\xee\xe1\x5c\xad\xe4\xda\xf6\ +\x4e\x8d\x9a\x5a\x8f\xd8\xd9\x3f\x61\xa9\x63\xc5\xac\xd1\x7b\x01\ +\x48\x33\x03\xcf\x8f\x28\xe0\x14\x33\x90\x2d\x92\xa0\x04\x84\x08\ +\x6f\x6d\x18\x79\x8d\xc5\x00\x2e\x22\x54\xce\xc6\x8a\x23\x6a\x7c\ +\x3d\xa9\x15\xe3\xee\xf7\x31\xea\xf5\x68\xed\x9f\xa6\xf5\xe1\xc2\ +\xf6\xff\x28\xad\xfd\x9e\xb4\x7e\xc9\x9c\x6c\x4d\x6b\xf5\x47\xa0\ +\xb5\x88\x9d\x33\xc2\xdd\xe3\xb5\x47\x20\xf5\xec\xde\xb1\x81\x96\ +\xde\x6a\x61\xef\xf1\x5a\xc5\x82\xed\xa6\x4f\x4f\xf3\x9a\xc5\x9a\ +\x33\x09\x49\xeb\xfa\xb4\x46\x88\xf6\x56\x39\x48\x41\x25\xe0\x2d\ +\x84\x13\xfc\x10\xbc\xd6\xea\xf7\x51\xea\xd5\x78\xfd\xc5\xdd\x58\ +\x79\x40\x46\x3f\x7d\x1e\x5a\x18\x7c\x55\x4c\x81\x87\x4e\xc8\x7b\ +\xfc\x36\xc8\x4d\x84\xe5\xba\x1f\x00\x38\xbc\x81\xd1\xac\xcf\x6f\ +\x8b\x24\x89\x29\xac\xbf\xc7\x6f\x7a\x07\xc4\xad\x61\xf2\x29\xab\ +\xbe\x06\x5a\x5b\x31\x89\xec\x8e\x0b\x81\xc4\x63\xa3\x2a\xe1\x95\ +\xb4\x10\xca\xc0\x30\x1a\x6e\xd1\x49\x76\x90\x00\xa4\xd5\x4e\x8a\ +\xb0\x07\x54\x23\xfd\xf5\x60\x7d\xd4\x6d\x62\xf0\x3d\x1d\x67\xc4\ +\x5e\xde\x75\x0e\xce\xf9\x7f\xee\x3c\x1f\x85\x23\x44\x10\x64\x18\ +\x77\x80\x23\x87\xdf\xf4\x46\x1e\xc4\x6f\x7a\xf6\xc2\x60\xfc\x73\ +\x18\xf5\xb9\x1c\x3f\x44\x06\xf9\x05\x96\xef\xfb\xee\x82\x78\x3e\ +\xf8\x46\xe1\x9b\x33\x7d\x07\x59\x7f\x12\xae\x23\xef\x61\x8e\x43\ +\x0a\x11\x2e\x01\x4b\xb6\x86\x25\xf2\x2a\xc3\xa5\x46\xd4\x0d\x23\ +\xcd\x6d\x2c\x15\xe4\x52\x18\x49\x04\x67\xa5\x84\x11\x07\xc0\x27\ +\x17\xcf\x12\x4b\x07\x41\xe7\x6b\xe4\x97\xd2\x69\xe3\x64\x93\x61\ +\x22\x49\xd1\xdc\x9b\xb5\xf4\x31\x5a\x6a\xe7\x40\x7a\x87\xa3\x95\ +\x8e\x29\x19\x92\xa5\x61\x5c\xe5\x0f\x93\x63\xee\x70\x68\x8f\x2c\ +\xf3\x10\x79\xe6\xa3\x2f\x3c\xf6\x7f\xe5\xf1\x0a\xd9\x91\x7c\xed\ +\xd7\x97\x07\xc8\xcf\xf9\x17\xb1\x60\x65\xf4\xd0\x19\x7c\x85\x96\ +\xdf\x60\x9a\x35\xda\xd4\x5a\xaf\xef\x41\xda\x73\xd0\x09\x10\x84\ +\xc7\xf0\x86\xb4\x38\x57\xaf\x26\xe7\x1f\x05\x25\xdf\x13\x92\xaf\ +\x10\x89\xec\x9f\x2d\x0c\xed\x8b\x29\xac\x87\x54\x12\xdc\xa4\x42\ +\xeb\x03\x65\x42\xcf\x79\x19\xe7\x77\x34\xd5\x37\xd0\x48\x66\x6f\ +\x85\x34\xf4\xa6\xf6\x5b\xeb\xa3\x97\x81\xe5\xc9\x98\xee\x44\x34\ +\xdf\xda\x1f\xa9\xe9\x96\x46\x7a\x95\x67\xd7\x47\xed\xca\xce\x92\ +\xf6\x64\x17\xc9\x45\xd6\xcc\x87\x53\x3b\x6f\x3e\x9b\x8a\xb3\xb2\ +\x4a\xb3\x6a\x5b\x65\x9a\x4f\xaf\x6a\xb3\xa4\xf5\x45\xa4\xa3\xfe\ +\xa9\xd2\xa8\x6d\x3d\x1b\xae\x5f\x5e\x26\x69\x79\x7d\x3a\x12\xf7\ +\x2b\xef\xca\x72\x4e\x0e\xed\x7e\xf9\xf4\x06\x8d\x05\xfd\xca\x28\ +\xfd\x83\x4e\x53\x4c\x24\x40\x1a\xcd\x74\xfb\xee\xa5\xab\x5c\x55\ +\x15\x2c\x14\xcd\x92\xdb\x0c\xbb\x69\xfe\x6c\x87\x5f\x5e\x96\xd7\ +\x17\x15\x59\xa5\xae\x56\xd9\xfd\x9e\x69\x39\x5d\xd1\xed\xa6\x68\ +\xb5\x66\xc7\xe6\x4e\xcd\x4e\x0b\xea\x1b\x9d\x9d\x95\x37\xc3\x03\ +\x5c\xe7\x05\x76\x19\x6d\x6e\xe9\x70\xe1\x1e\xd8\x62\xd3\x62\x7b\ +\x6f\xc7\x6a\xf7\x48\x8b\x9b\x0e\xa5\xf7\xab\xe8\x14\xfc\x23\x75\ +\xf3\xe4\x26\x9f\xe7\x77\x59\xda\x01\xae\x6d\xb2\x2c\x92\x45\x74\ +\x31\x2b\xcf\x92\xd9\xf0\xf2\x9b\x06\x45\x99\x66\xd8\xfb\x79\x32\ +\x03\x6c\xd6\xf0\x3b\x99\x67\x75\x92\x26\x75\xd2\x81\x6a\x5b\x22\ +\xac\xdd\x86\x87\x93\x2a\x3d\x9f\xfc\xf3\xfd\xcf\x2d\x49\xa6\xd3\ +\xc9\xbf\xcb\xea\x73\x07\x7b\x6a\x90\x9c\x95\x2b\x6c\xbc\xa5\x2f\ +\xdd\xf3\x99\x4e\xc8\xc7\x25\xf5\xbb\x7c\x0e\xa8\xd0\x0d\xad\xbf\ +\xde\xcc\x67\x80\x77\x5b\xd1\x6b\x4c\x17\x31\xba\x41\xd7\xc3\x56\ +\xd9\xfa\x06\xd6\xe0\xa5\xb5\x74\x3a\xcf\xa9\xd3\xf8\xd7\x3a\x9f\ +\xcd\x7e\xa1\x49\x76\xc8\xbc\x19\x34\xaf\x67\xd9\x0e\xc3\xc7\x9b\ +\xd5\x6f\xe9\xb7\xb3\xb9\x93\xf1\x76\xf7\xcd\xd3\x45\x67\x95\x1e\ +\xd6\x5a\xb3\xce\x92\xb3\x0c\x16\xff\x40\x95\xc1\x83\xda\x8b\xaa\ +\x5c\x2d\xe6\x30\xfa\xa6\xfb\xd6\x9a\x8b\xa4\xbe\xdc\xae\x70\xe3\ +\x2f\xb6\x7e\x01\xae\x5f\x5a\x7d\xbc\xf5\x56\xcd\xe7\xf8\x1c\x5b\ +\xeb\x3d\xec\xb8\x91\xe6\xb1\x5a\xcd\xb2\x49\x76\x95\xe1\x80\x53\ +\xf8\x99\xaa\xfc\x9c\xb5\xed\xd7\x8f\x6b\xe0\x4e\x10\x63\x94\x73\ +\x96\x33\xb5\x2d\x27\xdf\x83\xc5\x4e\xb0\xd4\x22\xdd\x2d\xfc\x4f\ +\x99\x17\xfd\x52\x58\x3a\xab\x66\xc0\x60\x3d\x69\xbb\x77\x0b\xd9\ +\x14\xa4\x09\xfc\x41\x55\x25\xb7\x93\xa2\x2c\xb2\xdd\xd2\xb5\xb7\ +\x9c\xb0\xe3\x79\x52\x7d\xce\xaa\x75\xfd\x55\xbe\xcc\xcf\xf2\x19\ +\x0d\xd1\x7c\x9d\x65\xc7\x69\xbe\x5c\xc0\x5c\x93\xbc\xa0\x65\x1c\ +\x97\x57\x59\x75\x3e\x2b\xaf\xdb\xfa\xac\x48\xf0\x27\x3a\x4b\xa6\ +\x9f\x2f\x9a\xf5\x4d\x92\x29\xc8\xbd\x9a\x25\x75\x17\xe6\x70\x62\ +\x7f\x0f\x24\x3c\x1a\x63\x56\x99\x50\x21\x6c\x2a\xe4\x36\x26\xd0\ +\x94\xcd\x48\x66\x6c\xc8\x5d\xec\xb5\x33\xda\x06\xb3\x00\x99\x09\ +\x93\x4c\x7b\xc4\xde\x80\x42\x2e\x3d\x48\x7c\x13\x2c\x36\xde\x08\ +\x63\x03\x7a\x2b\x61\xbd\x57\x4c\x62\x30\x87\x80\xac\x74\x10\x41\ +\xab\x49\xe5\x30\x85\x0d\x5d\xcc\x9c\x47\xda\x12\x08\x17\x1b\xa6\ +\x84\x34\x54\x86\x8c\x11\xf6\x0e\x84\x46\x4e\x43\xe3\x84\xd4\x05\ +\xb1\x1d\xd1\x04\xbd\x35\xf4\x9f\x69\x5e\xfe\x2a\x5a\x95\xf2\x3e\ +\x40\x35\x97\x90\x01\x1e\x39\x51\xcc\x84\xe3\xde\x61\x19\x11\xd6\ +\x61\xe1\x0f\x39\x7a\x61\x2c\x86\x01\x9c\x0a\xbb\xa1\x58\xc8\x79\ +\xcc\xa1\x09\xbc\xa1\xad\x70\x2d\xbc\x69\xd2\x2d\x84\x3b\xa6\x69\ +\x00\xaa\xb7\x42\x0a\xde\xac\x45\x7a\x26\x45\x6f\x2d\xb4\x6a\x6c\ +\x85\x7e\xb9\x8f\xbd\x92\x74\x19\x24\xb8\x0b\xe6\x01\x24\xaa\xd7\ +\xd6\xbb\x50\x9a\xd8\x7b\x83\xc8\xab\x82\x76\x82\x6e\x7c\x54\x0a\ +\x2f\x9c\x08\x6c\x0c\x2b\x78\xa9\x68\x4b\xca\x59\xa1\x54\x80\xa9\ +\x3d\x63\xda\xd9\x50\xc6\x28\xe0\xcc\x62\xeb\x1e\xea\x45\x38\xcd\ +\x43\x8e\x9c\x50\x1a\xad\x38\xd6\xc0\x63\xeb\x04\xd3\x61\x64\x90\ +\x91\x5b\xec\x86\xfa\x22\xed\xf6\xdc\x52\x19\xba\xe2\x21\xf0\x18\ +\xc5\x69\x0c\xc6\xb4\xd0\xca\xd2\xee\xd0\xde\x3b\xab\x75\x70\xd7\ +\xd3\x39\x15\x04\x89\x14\x8c\x21\x6f\x96\x3b\x81\x7b\x47\xb3\x14\ +\x00\x7f\x5d\x56\x11\x02\xcb\x55\x52\xaf\xaa\x8c\x5c\x73\x1b\x98\ +\x07\x78\x3a\x44\xcc\x75\xb8\xfd\x4e\xcc\x7d\x89\x39\x0f\x84\x87\ +\xc2\xd5\xcc\x84\xf4\x1a\x41\x59\x08\xe7\x60\x4a\xbc\x6b\x18\xe5\ +\xbc\x05\x13\x41\x1e\x0e\xb9\xdb\xe0\x82\x10\x0b\x8e\x99\x35\xe4\ +\x25\x11\x35\xe0\x38\x7f\x01\x64\x78\x15\x12\x65\x84\x15\x76\x4d\ +\x3d\x46\x4c\x0a\x1b\x6e\x83\x3e\x83\x65\x34\x13\xa5\x59\x18\xd2\ +\x98\x86\x68\xce\x10\x7a\x68\x22\xab\x39\xdd\x8e\xea\x26\xfa\x29\ +\x50\x4d\x47\xad\x6d\xa8\xc0\x22\xe2\x80\x1e\xda\xc1\x40\x11\x31\ +\x88\x81\x41\x9e\xb9\x90\x94\xbb\xf7\x5e\x6f\x76\x8a\x09\xac\x36\ +\x4c\x60\xf5\x46\x32\xc7\x35\x5d\xef\x73\xdc\x28\xcc\xbe\x86\x3f\ +\x8a\x22\x4d\xb4\xb7\xa0\xa5\x04\x7d\x8d\xdc\x10\x07\xba\x5f\x35\ +\xc4\x51\xf0\x33\x7a\xb8\xb0\xb1\xa6\xa3\x5e\xf0\x40\x70\x20\xc0\ +\x97\x6e\x86\x04\xa5\x1c\xd3\x5c\x80\x52\xb2\xb9\xf6\x25\x15\xf6\ +\x88\x74\x82\x7e\x9c\x72\x3e\xd4\x70\x9a\xa0\x95\xf3\xe4\xf2\x38\ +\x03\xe9\x75\xa8\x29\x2c\x79\x46\x6e\x90\x6e\x93\x49\xba\x40\xa6\ +\x28\x0b\xe2\x0e\x66\xc7\xf4\xf4\x4a\xc7\xf3\x50\x81\xf4\x1e\x9e\ +\xcf\x91\x31\x60\x72\xae\x42\xe9\x62\xc1\x61\x0c\x31\x54\xf4\x38\ +\x5d\xf7\x26\x6b\xcb\xcf\x56\x26\x23\xde\x92\x22\x80\xd0\x99\x6e\ +\x3e\x77\xd3\xe9\x73\x49\x0d\x89\xf1\xc3\x9b\x87\xaf\x10\xde\x7e\ +\x67\xf9\xfe\x2c\x6f\x30\x8b\xa8\x07\x58\x6a\x04\x0f\xce\xb9\xdc\ +\x80\x1f\xea\xdf\x3a\xc0\x1a\x91\xd9\xc6\x12\xfc\x50\xae\x21\xaa\ +\xb4\xcc\x82\x40\xc4\x37\x2b\xb4\xa0\x48\x23\x38\x45\x1a\x10\x53\ +\x4b\x03\xfc\x21\xe4\x78\xba\x14\x61\xc1\x79\xaf\x59\x57\x00\x60\ +\x82\x71\xcc\x63\x7c\x19\x2b\x0d\xf5\x2d\x9a\xa8\xbe\xad\xe4\xca\ +\x29\xa6\x86\x8a\x3e\xec\x2c\x14\x51\xce\x62\x1e\x0c\xb3\xf5\x47\ +\x2c\x8b\x40\x1f\x24\xdb\xd6\x33\x61\xdb\x02\xe2\x01\x1a\x92\x2f\ +\x89\xda\xf9\xba\x3a\xc6\x90\xaf\x9b\x87\x05\xc3\x80\x3f\x10\xd8\ +\xef\xe8\xdf\x83\x00\x9d\xbb\xef\x40\x7f\x0e\xd0\x39\xbd\xa3\x81\ +\xef\x0e\x49\x9c\x29\x0b\x27\x07\xfc\xc0\xf9\x6a\x29\x95\x26\x29\ +\xa4\xe9\x2d\x52\xa3\xbd\x98\xd0\x1c\x52\x88\x02\x0c\xb4\x1d\x34\ +\xd0\x70\x21\x6b\x84\x28\xd4\x94\x45\x4c\x59\xeb\x3b\x29\x85\x93\ +\xa2\xc3\xb7\x24\xec\x0b\x06\x6d\x86\x78\x83\xf8\x64\x49\xb0\x7a\ +\xfa\x01\xc3\x50\xa4\xb0\xd0\xab\x5a\x0b\xd2\xbe\x4c\x41\x43\xf9\ +\x8d\x74\x6c\x66\xda\x4e\x64\x87\x0b\x1b\xe8\x93\xba\x43\x58\x69\ +\xb4\xa3\xf5\x08\x7f\x76\xab\x44\x95\x56\x5e\x3d\xe6\xbc\xdd\xe1\ +\xd0\x7c\x18\x30\x6b\xf5\x1d\xcc\xcf\x48\x9a\xe0\x87\x15\x22\x3d\ +\xf3\x21\x6f\x2e\xdf\x2b\x6e\x48\x03\x01\x4e\x46\xc0\x89\x35\x98\ +\xc4\x39\x43\x88\x6b\x68\x06\x25\x21\xd9\xc9\x99\x5a\x0d\x6d\x2e\ +\x07\xcb\x3e\x10\x41\xe8\xd2\x39\xd4\x8e\x50\xb1\x77\xd2\x59\x45\ +\x4e\x17\x66\x15\xe4\x8a\x0d\x10\x68\x8c\xd8\x46\x07\xf4\xa4\xdf\ +\xe0\xbc\x84\x0e\x43\x8a\xe4\x1c\x62\x00\xe9\x25\x05\x3e\x29\xac\ +\x0b\xd0\x86\x7a\x40\xcc\xb0\xc1\xfa\xed\x2a\x5d\x0d\x11\xb1\x44\ +\xc6\x20\x99\x08\x9a\xac\x0a\xf9\x0b\x39\x66\xe8\x13\xad\x3d\x39\ +\xe2\x26\xcb\xa0\x11\x91\x47\x58\x2c\x11\x28\x7f\x4c\x7d\x1c\x4c\ +\x7b\xb4\xde\xf8\x64\x7c\xf1\xee\xe8\x84\xde\x7e\xbc\x3b\xfa\x2f\ +\xca\x86\x31\xf6\ +\x00\x00\x11\xb4\ +\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\ +\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\x31\x31\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\x36\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x74\x72\x69\ +\x6d\x65\x78\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\x3e\x0a\x20\x20\x3c\x64\x65\x66\ +\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\ +\x31\x31\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\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x38\x34\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\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\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\x34\x33\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\ +\x33\x37\x39\x63\x66\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\x38\x34\ +\x35\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\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x38\x34\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\x36\x36\x35\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x31\x3d\x22\x31\x35\x35\x2e\x34\x36\x38\x37\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x32\x35\x34\x35\x2e\x32\x31\ +\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x37\ +\x31\x33\x2e\x30\x36\x32\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x79\x32\x3d\x22\x32\x35\x34\x35\x2e\x32\x31\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\x74\ +\x72\x61\x6e\x73\x6c\x61\x74\x65\x28\x32\x2c\x2d\x32\x29\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\x31\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\x33\x2e\ +\x38\x38\x39\x30\x38\x37\x33\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x31\x36\x2e\x37\x36\ +\x35\x32\x37\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x79\x3d\x22\x34\x37\x2e\x31\x33\x35\x37\x32\ +\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\ +\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\x36\x34\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\x37\x32\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\x30\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\x32\x35\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\x31\x31\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\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\x36\x36\x35\x38\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\x65\x78\x74\x65\x6e\x64\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\x34\x2e\x38\x39\x38\x33\x31\x31\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\x34\x2e\x38\x39\x38\x33\x31\ +\x31\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\x39\x2e\x39\ +\x35\x30\x32\x33\x32\x31\x65\x2d\x32\x2c\x30\x2c\x30\x2c\x39\x2e\ +\x39\x35\x30\x32\x33\x32\x31\x65\x2d\x32\x2c\x2d\x31\x32\x2e\x32\ +\x39\x31\x38\x36\x34\x2c\x2d\x32\x32\x31\x2e\x30\x39\x32\x32\x36\ +\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\x64\x3d\x22\x70\x61\x74\ +\x68\x36\x36\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x64\x3d\x22\x4d\x20\x34\x33\x34\x2e\x39\x32\x36\x34\x34\x2c\x32\ +\x33\x36\x39\x2e\x30\x32\x38\x35\x20\x4c\x20\x34\x33\x34\x2e\x39\ +\x32\x36\x34\x34\x2c\x32\x37\x36\x36\x2e\x31\x35\x33\x35\x20\x4c\ +\x20\x34\x39\x32\x2e\x30\x38\x32\x36\x39\x2c\x32\x37\x36\x36\x2e\ +\x31\x35\x33\x35\x20\x4c\x20\x34\x39\x32\x2e\x30\x38\x32\x36\x39\ +\x2c\x32\x33\x36\x39\x2e\x30\x32\x38\x35\x20\x4c\x20\x34\x33\x34\ +\x2e\x39\x32\x36\x34\x34\x2c\x32\x33\x36\x39\x2e\x30\x32\x38\x35\ +\x20\x7a\x20\x4d\x20\x33\x30\x39\x2e\x31\x31\x33\x39\x34\x2c\x32\ +\x34\x33\x32\x2e\x32\x34\x37\x33\x20\x4c\x20\x31\x38\x31\x2e\x38\ +\x33\x32\x36\x39\x2c\x32\x35\x36\x37\x2e\x36\x32\x32\x33\x20\x4c\ +\x20\x33\x30\x39\x2e\x31\x31\x33\x39\x34\x2c\x32\x37\x30\x30\x2e\ +\x39\x36\x36\x31\x20\x4c\x20\x33\x30\x39\x2e\x31\x31\x33\x39\x34\ +\x2c\x32\x35\x39\x39\x2e\x39\x33\x34\x38\x20\x4c\x20\x34\x30\x36\ +\x2e\x30\x38\x32\x36\x39\x2c\x32\x35\x39\x39\x2e\x39\x33\x34\x38\ +\x20\x4c\x20\x34\x30\x36\x2e\x30\x38\x32\x36\x39\x2c\x32\x35\x33\ +\x35\x2e\x32\x37\x38\x35\x20\x4c\x20\x33\x30\x39\x2e\x31\x31\x33\ +\x39\x34\x2c\x32\x35\x33\x35\x2e\x32\x37\x38\x35\x20\x4c\x20\x33\ +\x30\x39\x2e\x31\x31\x33\x39\x34\x2c\x32\x34\x33\x32\x2e\x32\x34\ +\x37\x33\x20\x7a\x20\x4d\x20\x36\x31\x32\x2e\x31\x34\x35\x31\x39\ +\x2c\x32\x34\x33\x34\x2e\x32\x34\x37\x33\x20\x4c\x20\x36\x31\x32\ +\x2e\x31\x34\x35\x31\x39\x2c\x32\x35\x33\x35\x2e\x32\x37\x38\x35\ +\x20\x4c\x20\x35\x31\x35\x2e\x31\x37\x36\x34\x34\x2c\x32\x35\x33\ +\x35\x2e\x32\x37\x38\x35\x20\x4c\x20\x35\x31\x35\x2e\x31\x37\x36\ +\x34\x34\x2c\x32\x35\x39\x39\x2e\x39\x33\x34\x38\x20\x4c\x20\x36\ +\x31\x32\x2e\x31\x34\x35\x31\x39\x2c\x32\x35\x39\x39\x2e\x39\x33\ +\x34\x38\x20\x4c\x20\x36\x31\x32\x2e\x31\x34\x35\x31\x39\x2c\x32\ +\x37\x30\x32\x2e\x39\x36\x36\x31\x20\x4c\x20\x37\x33\x39\x2e\x34\ +\x32\x36\x34\x34\x2c\x32\x35\x36\x37\x2e\x35\x39\x31\x31\x20\x4c\ +\x20\x36\x31\x32\x2e\x31\x34\x35\x31\x39\x2c\x32\x34\x33\x34\x2e\ +\x32\x34\x37\x33\x20\x7a\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\x30\x35\x35\x33\x31\x38\x38\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\x6e\x6f\x6e\x7a\x65\x72\x6f\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\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\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\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\x64\x3d\x22\x72\x65\x63\x74\x36\x36\x33\ +\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\ +\x20\x34\x31\x30\x2e\x35\x36\x32\x35\x2c\x32\x33\x34\x34\x2e\x36\ +\x35\x36\x32\x20\x4c\x20\x34\x31\x30\x2e\x35\x36\x32\x35\x2c\x32\ +\x37\x34\x31\x2e\x37\x38\x31\x32\x20\x4c\x20\x34\x36\x37\x2e\x37\ +\x31\x38\x37\x35\x2c\x32\x37\x34\x31\x2e\x37\x38\x31\x32\x20\x4c\ +\x20\x34\x36\x37\x2e\x37\x31\x38\x37\x35\x2c\x32\x33\x34\x34\x2e\ +\x36\x35\x36\x32\x20\x4c\x20\x34\x31\x30\x2e\x35\x36\x32\x35\x2c\ +\x32\x33\x34\x34\x2e\x36\x35\x36\x32\x20\x7a\x20\x4d\x20\x32\x38\ +\x34\x2e\x37\x35\x2c\x32\x34\x30\x37\x2e\x38\x37\x35\x20\x4c\x20\ +\x31\x35\x37\x2e\x34\x36\x38\x37\x35\x2c\x32\x35\x34\x33\x2e\x32\ +\x35\x20\x4c\x20\x32\x38\x34\x2e\x37\x35\x2c\x32\x36\x37\x36\x2e\ +\x35\x39\x33\x38\x20\x4c\x20\x32\x38\x34\x2e\x37\x35\x2c\x32\x35\ +\x37\x35\x2e\x35\x36\x32\x35\x20\x4c\x20\x33\x38\x31\x2e\x37\x31\ +\x38\x37\x35\x2c\x32\x35\x37\x35\x2e\x35\x36\x32\x35\x20\x4c\x20\ +\x33\x38\x31\x2e\x37\x31\x38\x37\x35\x2c\x32\x35\x31\x30\x2e\x39\ +\x30\x36\x32\x20\x4c\x20\x32\x38\x34\x2e\x37\x35\x2c\x32\x35\x31\ +\x30\x2e\x39\x30\x36\x32\x20\x4c\x20\x32\x38\x34\x2e\x37\x35\x2c\ +\x32\x34\x30\x37\x2e\x38\x37\x35\x20\x7a\x20\x4d\x20\x35\x38\x37\ +\x2e\x37\x38\x31\x32\x35\x2c\x32\x34\x30\x39\x2e\x38\x37\x35\x20\ +\x4c\x20\x35\x38\x37\x2e\x37\x38\x31\x32\x35\x2c\x32\x35\x31\x30\ +\x2e\x39\x30\x36\x32\x20\x4c\x20\x34\x39\x30\x2e\x38\x31\x32\x35\ +\x2c\x32\x35\x31\x30\x2e\x39\x30\x36\x32\x20\x4c\x20\x34\x39\x30\ +\x2e\x38\x31\x32\x35\x2c\x32\x35\x37\x35\x2e\x35\x36\x32\x35\x20\ +\x4c\x20\x35\x38\x37\x2e\x37\x38\x31\x32\x35\x2c\x32\x35\x37\x35\ +\x2e\x35\x36\x32\x35\x20\x4c\x20\x35\x38\x37\x2e\x37\x38\x31\x32\ +\x35\x2c\x32\x36\x37\x38\x2e\x35\x39\x33\x38\x20\x4c\x20\x37\x31\ +\x35\x2e\x30\x36\x32\x35\x2c\x32\x35\x34\x33\x2e\x32\x31\x38\x38\ +\x20\x4c\x20\x35\x38\x37\x2e\x37\x38\x31\x32\x35\x2c\x32\x34\x30\ +\x39\x2e\x38\x37\x35\x20\x7a\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\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x36\x36\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\x6e\x6f\x6e\x7a\x65\x72\ +\x6f\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\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\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\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\x0a\x3d\ +\x00\ +\x00\x35\xb4\x78\x9c\xe5\x5a\x5b\x6f\xa3\x48\x16\x7e\xcf\xaf\x60\ +\xdd\x2f\x1d\xad\x29\xd7\xbd\x0a\x27\xe9\xd1\x6a\x5b\x3d\x1a\x69\ +\xa5\x95\x76\xba\xb5\x8f\x23\x0c\xd8\x61\x83\xc1\x02\x1c\x27\xf9\ +\xf5\x7b\x8a\x3b\x36\xbe\x25\xee\x48\xdd\x0d\x4a\x0c\x55\xa7\xea\ +\x5c\xea\x3b\x97\x02\x6e\x7f\x7b\x5a\x46\xd6\x63\x90\x66\x61\x12\ +\xdf\x8d\x08\xc2\x23\x2b\x88\xbd\xc4\x0f\xe3\xc5\xdd\xe8\xdb\xd7\ +\x2f\xb6\x1e\x59\x59\xee\xc6\xbe\x1b\x25\x71\x70\x37\x8a\x93\xd1\ +\x6f\x9f\xae\x6e\xff\x66\xdb\xd6\x3f\xd3\xc0\xcd\x03\xdf\xda\x84\ +\xf9\xbd\xf5\x47\xfc\x90\x79\xee\x2a\xb0\x3e\xde\xe7\xf9\x6a\x3a\ +\x99\x6c\x36\x1b\x14\x56\x8d\x28\x49\x17\x93\x6b\xcb\xb6\x3f\x5d\ +\x5d\xdd\x66\x8f\x8b\x2b\xcb\xb2\x80\x6f\x9c\x4d\x7d\xef\x6e\x54\ +\x0d\x58\xad\xd3\xa8\x20\xf4\xbd\x49\x10\x05\xcb\x20\xce\xb3\x09\ +\x41\x64\x32\x6a\xc9\xbd\x96\xdc\x33\xdc\xc3\xc7\xc0\x4b\x96\xcb\ +\x24\xce\x8a\x91\x71\xf6\xa1\x43\x9c\xfa\xf3\x86\xda\x48\xb3\x61\ +\x05\x11\x71\x1c\x67\x82\xe9\x84\x52\x1b\x28\xec\xec\x39\xce\xdd\ +\x27\xbb\x3f\x14\x64\x1c\x1a\x4a\x31\xc6\x13\xe8\x6b\x29\x4f\xa3\ +\x9a\x3e\x45\x60\x8a\xbd\xc2\x14\xbd\x5d\xee\x60\xfe\x15\xfc\x35\ +\x03\xea\x06\x94\x25\xeb\xd4\x0b\xe6\x30\x32\x40\x71\x90\x4f\x3e\ +\x7f\xfd\xdc\x74\xda\x18\xf9\xb9\xdf\x99\xa6\xb6\x7e\x8f\x6f\x6f\ +\x49\x62\x77\x19\x64\x2b\xd7\x0b\xb2\x49\xdd\x5e\x8c\xdf\x84\x7e\ +\x7e\x7f\x37\x92\x7c\xf5\x54\xdc\xdf\x07\xe1\xe2\x3e\xef\x34\x84\ +\xfe\xdd\x08\x34\x64\x92\xd0\xe2\xbe\x03\x20\x52\x12\x54\xd3\x4d\ +\x9b\x1e\x8c\xb8\xb2\x52\x4a\x85\x66\x05\x45\x2d\xf6\xd4\x4f\x3c\ +\x23\xc7\xdd\xe8\x73\xea\xce\xf3\xbf\xfe\xe1\xfb\x5f\x93\xdf\xd3\ +\x64\xbd\x42\xc6\x86\x9f\x80\xf6\xd6\x0f\xe6\x99\x19\x53\x32\x36\ +\x77\xc0\x99\x17\x7d\xd0\xdb\xf0\x5a\x01\xaf\x55\xe0\x19\x54\x94\ +\xd4\x1d\x2e\xf9\xb3\x31\x44\x9f\x94\x95\xd6\xb2\x7a\xf2\xae\xfe\ +\x7a\x02\x61\xad\xa9\xc5\x28\xfc\x23\x83\x14\xcf\x25\x05\x81\x85\ +\x86\x1f\x3c\x48\xf3\x62\xcc\x75\x60\x9a\x4a\x02\x3b\x49\xc3\x45\ +\x08\xf6\x29\xe8\x28\x41\xac\x38\xfa\x63\x40\xe9\x8e\x6e\x4c\x52\ +\xf0\xd2\xc9\x09\xda\x6f\x0f\x14\x5a\x1f\x17\x04\x23\x61\x94\xaa\ +\x04\xd9\x16\xa5\xaf\x21\x29\x28\xc5\x9b\x0c\x55\x99\x7b\x7b\x9a\ +\x63\x2b\xf7\x2a\x03\x48\x87\xfe\x7c\x06\x80\xe8\x11\xb8\xe9\xef\ +\xa9\xeb\x87\x10\x33\xbb\xaa\xf7\x7b\x18\xe1\xdc\x96\x95\xd7\xc0\ +\xb8\x2c\x4f\x56\x35\x75\xe5\xd2\xd0\x02\x54\xd2\x76\x46\x6d\x47\ +\x96\x3f\x47\x41\xd9\x67\x7b\x49\x94\xa4\xd3\x0f\xf3\xe2\xb8\x29\ +\x9a\x12\x88\x1f\x61\xfe\x3c\x25\x9d\x21\xc9\x7c\x9e\x05\x10\x2f\ +\x5a\x98\x1e\x62\xa7\x6d\x7a\x3e\x3b\x3c\xc0\x8e\xb4\x36\x99\xf4\ +\x55\x3f\xd7\x52\x0a\x93\xa3\x76\x52\x98\xbd\x9f\x95\x14\x16\xef\ +\x64\x23\x73\xe7\x46\x3b\x36\xaa\xd1\x07\xec\x22\x70\xa6\xbb\x91\ +\x1b\x6d\xdc\xe7\xac\xe1\x50\xe4\xb0\xe9\x7d\x1a\x40\xce\xfd\x30\ +\x88\xbb\xae\xb9\xfb\x4c\x98\xec\xc4\xa5\x45\xd5\xf8\x2d\x0e\x73\ +\x48\xaf\xeb\x2c\x48\xff\x34\x29\xea\xdf\xf1\xb7\x2c\xd8\xa1\xfa\ +\x9a\xba\x71\x06\xf9\x70\x79\x37\x5a\xba\x79\x1a\x3e\x7d\x24\x63\ +\x6c\x4e\x24\x1d\x2d\xa8\xc3\xe1\x9a\x62\x8a\x34\xd5\x92\x5d\x37\ +\xc3\x3d\xf0\x39\x48\x45\x88\x4a\x8e\x5b\xf0\x79\xe0\xad\x52\x51\ +\xa4\x1c\xc5\x5a\x79\xe7\x83\xb4\xf3\x41\xda\x14\xe2\x38\x47\x8c\ +\x0b\x02\x1a\x9d\xef\xa0\x0a\xeb\xe3\xb0\x23\xf8\x1d\x61\x47\xde\ +\xcb\x35\xcf\x89\xe2\xba\xe3\x0c\xbf\x5e\x14\xd7\x92\xdb\xd8\xc6\ +\x47\x81\xa2\xa5\xb4\x85\xad\x06\x57\xfe\xe0\x9a\x62\x49\x1c\x0f\ +\x6f\x01\xe8\xe6\x04\xb4\x68\xa9\x6d\xd5\xf1\xf4\xee\xf2\x1f\xe4\ +\xc8\x94\xe3\xcd\x67\x7b\x39\xbe\x35\x9a\x33\xa5\x8e\x5a\x0b\x44\ +\x38\xdf\x52\xf3\xb9\xeb\xe2\xd7\x58\x8a\xe9\x21\x8f\x3c\x62\xa5\ +\xb9\x3b\x9f\xd3\xef\x67\xa5\x02\x57\xa7\xa1\xea\xbd\x31\xf5\x5e\ +\x88\x3a\x27\x08\x39\xf8\x17\x2e\x25\x05\xe6\x7b\x33\xd5\xee\x6a\ +\xcc\x22\xd7\x7b\xd8\xca\x11\x37\x47\x30\x54\x03\x40\x60\x71\x42\ +\xa2\x02\xaa\xa1\xb0\x03\x76\x38\x08\x93\x01\xc1\x0e\x81\xf2\xf5\ +\x9a\x91\x61\xcd\xe8\xe5\x9c\x97\x13\x48\x0a\xec\xb8\xfb\x72\x66\ +\x13\x9b\xbd\xa7\x03\x73\x01\x92\xe9\xf7\x72\xe1\xe1\xf2\xf5\xb4\ +\xa2\xd2\xd4\x74\x84\x70\x24\xa4\xe6\xfd\xf2\x0f\x23\xed\x50\xec\ +\xb4\x29\x02\x0a\x3d\xa8\x08\x3b\xa0\xf3\x86\xc6\x7a\x83\x63\x8d\ +\x69\xdc\x70\x91\xfa\xf4\xd8\x72\x11\x21\xa4\x3c\x6c\xa5\x2f\xd8\ +\x9c\xaf\x2b\xef\xcc\xf4\xfa\xf0\xf4\x8e\x6b\xce\xad\x45\x40\xb8\ +\x3c\x06\x91\x5e\x77\x76\x16\xaa\xbf\x26\x17\x5a\x28\x69\x6c\xad\ +\xba\x51\xf8\xe0\x4a\xa9\xde\x4a\xed\x0e\x3e\xb2\x54\x47\x3d\x0b\ +\x6c\xa9\x8e\xec\x07\xdf\xb8\x54\xea\xc8\x0e\xf0\xfb\x2d\xd5\xa9\ +\x51\x88\x00\x5a\xf7\x62\xfa\xd4\x9d\xca\x21\x89\x71\x23\xf1\x90\ +\x85\xa4\xe4\xe7\xc4\xee\x0f\x73\x6d\xce\x57\x19\x6c\x98\xbd\x7c\ +\x5d\x70\x02\x84\x6a\x89\x60\xef\xc7\x45\x0f\xe1\x4c\x20\xd8\x5b\ +\x3a\xa4\xbf\x15\x65\x0c\x39\xc0\xaa\x53\xae\x7a\x83\xb4\xde\x20\ +\xed\xfe\x7d\x33\x06\x52\xcc\x1d\xea\xa8\x62\x03\x0d\xba\x72\x42\ +\x18\x1d\xdb\x82\x22\xd8\xc0\x53\xee\x8c\x6d\x05\x3b\x69\xc6\x88\ +\xd0\xd7\x3b\x13\x1e\x76\xd8\xdd\x3d\x3f\xe7\xa2\x75\xbe\x03\x0f\ +\x0f\xa8\xe8\x78\xe3\xbe\x87\x10\x67\xd7\x2f\x66\xd6\x33\x80\xe2\ +\x9a\xf3\x42\x38\xa5\xf2\x80\xbb\x0f\x30\x9f\x15\xc7\x85\x50\x4a\ +\xe5\x2b\x9f\xff\x98\x07\x1b\x0a\x29\x41\x14\x61\x7d\x90\x42\xa3\ +\x24\x54\x8b\x1e\x48\x35\xd2\x94\x73\xb2\x85\xd1\x1d\x52\x6f\x88\ +\xf4\x30\x44\x35\x55\x1d\x88\x32\xaa\xa4\x1a\xdb\x5c\x23\x08\xe6\ +\xd2\x29\x20\x4a\x90\xd4\x82\xb0\x8b\x40\x94\x9f\x04\x51\xf9\x5d\ +\x20\x2a\xcf\x81\xa8\xcb\xcc\x79\x29\x88\xaa\xf3\x20\xca\x3d\x73\ +\x5e\x0a\xa2\xea\x92\xcf\x8a\xb8\xc3\xd5\xee\xe2\xfc\x2a\xdb\x34\ +\x8e\x1d\x71\x06\x88\x30\x16\xb3\x9d\x7c\x7c\xea\x46\x0d\x78\xa9\ +\xb3\x50\xe3\x91\x80\xcd\xd5\x09\xdc\x86\x36\x4f\xdc\x54\x69\x97\ +\x83\x89\xc0\xf4\x27\x84\xc9\x59\x06\x50\xf2\xe7\x33\xc0\x1e\x3f\ +\x79\xc3\xbb\x0c\xa8\x83\xd4\xe8\x80\xc3\x51\xd1\xa6\xc7\x27\x02\ +\x39\xcf\xe1\x88\x08\xd5\xd9\x13\x3e\x43\x2b\xd1\x02\x11\x86\x3b\ +\xd9\x85\xde\x8d\x38\xe3\x50\xc3\x75\xe3\xd5\x33\xb4\x12\x8e\x11\ +\xa5\x8a\xb5\xda\xbf\xf5\x05\x09\x64\x51\x4e\x19\xd1\x54\x56\x6f\ +\x4a\x9a\x5b\x0a\x19\x9a\x2a\x01\x95\x9e\x49\xca\x12\x74\x91\xd7\ +\xaf\x08\x3a\xc6\x44\xa7\x87\x01\x1a\x68\x8a\x4f\x09\x03\x83\x41\ +\x07\xca\xd2\xb3\x82\x8e\xa0\xf3\xf9\xc0\x13\xdb\x13\x83\x0e\x15\ +\x97\xcc\x4d\x82\xf0\x13\xbe\x0b\xf8\xd1\x7c\xee\x1c\x03\x50\xfa\ +\x13\xbe\xc8\xf9\x4e\x2f\x50\x75\x2f\xec\x6c\x55\xaa\x8c\xa8\x8b\ +\xc5\x87\x1f\xf9\x05\x6a\x69\xa8\x93\xbe\x70\x38\xf2\x5c\xed\xd2\ +\x9f\x38\xf0\xf3\xd9\x9d\xff\x1e\xf5\x76\x62\xbe\x8d\x2a\xae\x1a\ +\xb8\x9a\x6f\xab\xfc\xc7\x30\xd8\x5c\x35\x42\xcd\xdc\x06\x08\x2b\ +\x77\x11\x14\x22\x00\xe8\x4a\x19\xaa\x8e\x59\x92\xfa\x41\x5a\x77\ +\xc9\xe2\xe8\x75\x55\x52\x96\xdf\x0c\x5e\xf5\x31\x6e\x66\x6d\xfa\ +\xf1\x70\x7f\x76\xef\xfa\xc9\x06\x90\xb1\xdd\xf9\x92\x24\x4b\xf3\ +\xcc\x4e\x6c\x77\x14\x4f\x34\x76\xc8\x8b\x9d\xe5\x6e\xeb\x3a\x4d\ +\xc1\x28\x76\xe4\x3e\x07\xa0\x40\xf1\x53\x2f\x5f\x76\x9f\x6c\x16\ +\xa9\x31\x44\x9e\xae\x83\xed\x91\x7e\xe2\xad\xcd\xb7\x87\xf6\xba\ +\xf4\x9f\xea\x8b\xb7\x0e\x85\x19\x6b\xcf\x66\xc9\xd3\xf0\x04\x9b\ +\x30\x06\xc5\xec\xea\x1b\x3a\xd8\xef\xee\xa8\x5f\x51\xd4\x5f\xd5\ +\x29\xa1\xf7\x50\x3c\xb5\x59\x6f\xbb\xcb\x18\xde\xd9\xd3\xb7\x74\ +\x9f\xc2\x65\xf8\x12\xf8\x2d\x3c\x6f\x97\x41\xee\xfa\x6e\xee\xb6\ +\x28\xa8\x5b\x98\x24\x75\xbe\xbe\x4d\xfd\xf9\xf4\x3f\x9f\xbf\x34\ +\x80\xf6\xbc\xe9\x7f\x93\xf4\xa1\xc5\xa1\x21\x70\x67\xc9\x1a\xc4\ +\x6e\xdc\xcc\x7c\xa0\xe7\x4d\x4d\x0c\x71\xf3\x4f\xe1\x12\xd6\xd6\ +\x7c\xfd\xf8\xf7\xa7\x65\x04\x78\x6c\x3a\x7a\xc4\x26\x86\xb6\x93\ +\x96\xd3\xa6\x41\xf9\x75\xe3\xe0\x07\xa1\xbe\xb7\x0c\xcd\xa0\xc9\ +\x9f\x79\x18\x45\x7f\x18\x26\x1d\xc7\xab\x26\x0d\xf3\x28\xf8\x54\ +\xf0\x2c\x2f\x6b\x2d\x26\x95\x1a\xcd\x43\xce\x56\xcb\xdb\x49\x6d\ +\x86\xe2\x6e\xd1\x9a\xa7\x07\x99\xc6\xc2\x91\x3b\x0b\xa2\xbb\xd1\ +\xbf\x4c\xa7\xb5\xd3\xbb\x30\x9f\x2d\x2e\x13\x3f\xa8\x86\xd7\x66\ +\x5d\xd4\x72\xe6\x6d\xb4\x2d\x2e\x23\x37\x0f\x3e\xda\x84\x2a\xc4\ +\x39\x67\xce\x18\x2e\x35\x94\x7b\x98\xc8\xeb\x5e\xb8\x5f\x08\xe2\ +\x74\x1e\x07\xac\xdc\xfc\xbe\x1f\x67\x52\x48\x29\x50\x40\x76\x23\ +\x94\x59\x62\x8b\x48\x08\xe4\x5c\x41\x18\x27\x8a\x21\xa2\x95\xa2\ +\x96\x6b\x29\x44\x35\xd1\x52\x93\x71\x73\x65\xe1\xe2\xb4\x05\xc2\ +\x0e\x53\x62\x4c\x91\x60\x84\x8a\x43\xa4\xa4\x24\x01\x52\x33\xc2\ +\x8a\x2c\xdb\x3c\x40\x37\x2d\x36\xf8\x3c\x74\x59\xd5\xef\x98\x43\ +\x2e\xa5\xc4\xb0\x17\x90\x58\x30\x54\x96\x07\x85\x20\x14\x99\x69\ +\x0f\x51\x20\x5a\x4c\x66\x53\x60\x6b\x66\x16\x30\x67\x3d\x35\x1e\ +\xdb\x86\x61\x21\x0d\x37\xba\xd4\xe2\x1c\x54\x5c\x21\x20\x14\x95\ +\xd6\x2f\xbb\xd1\xba\x89\xca\x88\x8b\x9b\x39\x80\xd0\xec\x97\x8b\ +\x07\x1c\xe6\xa6\x53\x4c\x16\xb7\xe9\x3a\x0a\xa6\x71\x12\xbf\x40\ +\xa0\x84\xa8\x9e\x26\x0f\xc5\x6d\x50\x5d\x97\xd1\x01\xe6\xd2\xd2\ +\x11\x9c\x60\x71\xb3\x74\xd3\x87\x20\x2d\x69\x1e\xc3\x2c\x9c\x85\ +\x91\x99\xae\xb8\x8c\x82\x1b\x3f\xcc\x56\x00\xa9\x69\x18\x9b\xa8\ +\x7f\x93\x3c\x06\xe9\x3c\x4a\x36\x4d\x7f\x10\xbb\xf0\x63\xcf\x5c\ +\xef\xc1\x80\x30\xf6\xa7\xae\x07\x71\x6c\x6d\x00\xd6\xcd\x50\x7d\ +\xe4\x54\xaa\x35\xdb\xff\x46\x1d\x73\xc3\x35\x24\xa4\xbd\xba\x05\ +\x8f\x41\x9c\xf8\x7e\xad\x5b\x3d\xb8\xa7\x1e\xad\x6f\x8d\xcc\xe0\ +\x20\xd3\xd9\x3a\xcf\xbb\x6d\xff\x4b\xc2\x78\x5a\x88\x5b\xb7\x82\ +\x97\x07\x69\x04\xd1\x2b\x9f\xf2\xba\xad\x65\x5f\x35\xf8\x2e\x24\ +\x8f\x34\x05\x73\x74\x4d\x6a\x5a\xcb\x34\x39\xc5\xdf\xd5\x9c\xdb\ +\x2e\x26\x04\xe2\xd2\xa0\x91\x30\x5d\x7a\x0f\x40\x50\x97\x08\xb5\ +\x6c\x5d\xc1\x1e\xda\x54\x89\xcf\x4e\x4b\x4d\xa5\x2a\xaf\x33\x6d\ +\x76\xdd\x58\xfd\x96\x8d\xd5\x58\xbb\xd7\xd8\x30\x69\xc7\x77\x91\ +\x5b\x07\x06\x26\x84\xee\x82\xc0\xb4\xb5\x54\x55\xa2\xe2\x88\x3b\ +\x4a\x32\xdc\x0d\x21\x75\x86\x02\x0d\x95\x23\x49\xaf\x66\x82\xdc\ +\x64\x42\x8a\x12\xaa\xf7\x0e\x11\xf2\x92\x0d\x32\x41\xb5\xae\x74\ +\xb7\x3d\xdf\xa9\x33\x8d\x57\x62\x0a\x3c\x35\x37\x9b\x50\x73\x08\ +\xa1\x8c\xb3\x16\xd7\x0a\x36\xa4\x25\x09\xe3\x98\x9b\x32\x14\x5f\ +\x0f\xe8\x06\x3b\xc0\x81\x4a\xae\xc4\x70\x55\x54\x9d\xea\x9f\x83\ +\x18\x86\x20\x57\xb4\x92\xd3\xc0\x5c\xe0\xf7\x47\x02\x73\x07\x16\ +\x8b\x43\xab\x55\xac\x8a\xd6\x94\x6a\x13\x66\x89\x60\x9c\x95\x8b\ +\xd5\x5c\x77\x28\x8a\x07\x09\x58\x11\x02\x11\x15\x0c\xa8\x21\x9f\ +\xb1\xed\xc5\x5b\xc0\xa6\x85\x76\x6b\x88\x45\xb7\x20\x28\x29\x28\ +\xef\x42\x68\x0f\x88\x08\x08\x20\x00\x20\x46\x16\x47\x40\x31\x85\ +\x9d\x71\xe7\xb2\x43\xe1\x68\x24\xa5\x82\x63\xcc\x88\x83\x34\x03\ +\xa7\xbd\xee\x48\xb0\x13\x1e\x77\x00\x35\x1c\x14\x0f\xc1\x47\x20\ +\x5d\xc2\xc7\x79\x03\x28\x46\x7d\x91\x8a\x5d\x34\x08\xca\xa9\xc0\ +\x5b\x5d\x45\x40\xa2\x1c\xdc\x95\x70\x58\x07\x09\x8e\x4b\x89\xc3\ +\x20\xf3\x71\x8d\x04\x34\xb2\x71\x7d\x61\xb2\x28\x9c\xb6\xa3\x90\ +\xa1\x95\x10\x3b\xf6\xd1\x74\x48\x5e\x7a\x55\xd7\x51\x8b\x41\x05\ +\xf7\xf1\xc3\xee\x5e\xf5\x7a\x8f\x09\x0f\x2b\x4b\xb7\xba\x86\x40\ +\x6a\xde\xfc\x40\xc4\x30\xab\x2e\x20\x32\x28\x61\x62\x4b\x7b\xd5\ +\x74\x33\x08\xd5\xd2\x91\x0e\x1d\x53\xc2\x11\x98\x88\xea\xeb\x41\ +\x5b\x0a\x07\x49\xec\x50\x32\x6e\xf6\xaa\x60\xcc\x6a\x8b\xea\x18\ +\xa0\x3b\x0e\x21\x94\xd7\xd6\x94\x66\x5a\xcc\xc0\x49\xf6\x13\x75\ +\x68\xfa\xe6\xbc\x9d\x2c\xda\x9a\x75\x51\x57\xab\x8b\xb2\x4e\x85\ +\x9f\x5b\x53\x57\x7f\xba\xfa\x3f\x63\x31\x83\x6e\ +\x00\x00\x0e\xb2\ +\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\x35\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\ +\x31\x20\x72\x39\x37\x36\x30\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x4e\x65\ +\x77\x20\x64\x6f\x63\x75\x6d\x65\x6e\x74\x20\x32\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\x37\x22\x20\x2f\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\x34\x33\x2e\x36\x34\x34\x33\x31\x33\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x79\x3d\x22\x33\x31\x2e\x35\x34\x35\x33\x37\x36\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\x37\x35\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\x30\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\x32\x32\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\x39\x30\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\x70\x61\x74\x68\x0a\ +\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\x33\x35\x30\x30\x30\x30\x31\ +\x3b\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\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\x33\x33\x38\x39\x39\x39\x39\x39\ +\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\x31\x37\x2e\x39\x32\x33\ +\x32\x39\x35\x2c\x31\x39\x2e\x32\x38\x31\x32\x35\x20\x2d\x36\x2e\ +\x38\x34\x33\x37\x35\x2c\x36\x2e\x30\x33\x31\x32\x35\x20\x35\x2e\ +\x33\x34\x33\x37\x35\x2c\x36\x2e\x30\x36\x32\x35\x20\x2d\x31\x32\ +\x2e\x33\x34\x33\x37\x34\x39\x35\x2c\x30\x20\x30\x2c\x38\x2e\x33\ +\x37\x35\x20\x31\x31\x2e\x39\x36\x38\x37\x34\x39\x35\x2c\x30\x20\ +\x2d\x35\x2e\x38\x31\x32\x35\x2c\x35\x2e\x35\x36\x32\x35\x20\x36\ +\x2e\x32\x38\x31\x32\x35\x2c\x36\x2e\x35\x39\x33\x37\x35\x20\x39\ +\x2e\x37\x38\x31\x32\x35\x2c\x2d\x39\x2e\x33\x34\x33\x37\x35\x20\ +\x38\x2e\x39\x33\x37\x35\x2c\x31\x30\x2e\x31\x35\x36\x32\x35\x20\ +\x36\x2e\x38\x34\x33\x37\x35\x2c\x2d\x36\x2e\x30\x33\x31\x32\x35\ +\x20\x2d\x36\x2e\x31\x32\x35\x2c\x2d\x36\x2e\x39\x33\x37\x35\x20\ +\x32\x38\x2e\x33\x31\x32\x35\x2c\x30\x20\x30\x2c\x2d\x38\x2e\x33\ +\x37\x35\x20\x2d\x32\x36\x2e\x32\x35\x2c\x30\x20\x34\x2e\x39\x30\ +\x36\x32\x35\x2c\x2d\x34\x2e\x36\x38\x37\x35\x20\x2d\x36\x2e\x32\ +\x38\x31\x32\x35\x2c\x2d\x36\x2e\x35\x39\x33\x37\x35\x20\x2d\x39\ +\x2e\x37\x38\x31\x32\x35\x2c\x39\x2e\x33\x34\x33\x37\x35\x20\x2d\ +\x38\x2e\x39\x33\x37\x35\x2c\x2d\x31\x30\x2e\x31\x35\x36\x32\x35\ +\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\ +\x65\x63\x74\x33\x37\x38\x34\x2d\x32\x2d\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\x72\x65\x63\ +\x74\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\x23\x30\x30\x32\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\x31\x2e\x33\x33\x38\x39\x39\x39\ +\x39\x39\x30\x30\x30\x30\x30\x30\x30\x30\x33\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x72\x6f\x75\x6e\x64\ +\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\x64\x3d\x22\x72\x65\ +\x63\x74\x33\x37\x38\x34\x2d\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x32\x2e\x39\x30\x39\x30\x39\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\ +\x3d\x22\x38\x2e\x33\x36\x33\x36\x33\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x3d\x22\x32\x39\x2e\x30\x39\x30\x39\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x36\x2e\x37\x32\x37\ +\x32\x37\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\ +\x74\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\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\x31\x2e\x33\x33\x38\x39\x39\x39\ +\x39\x39\x30\x30\x30\x30\x30\x30\x30\x30\x33\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x72\x6f\x75\x6e\x64\ +\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\x64\x3d\x22\x72\x65\ +\x63\x74\x33\x37\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\ +\x69\x64\x74\x68\x3d\x22\x32\x33\x2e\x32\x37\x32\x37\x32\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x38\x2e\x33\x36\x33\x36\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x78\x3d\x22\x31\x2e\x38\x31\x38\x31\x38\x31\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x36\x2e\x37\x32\x37\x32\ +\x37\x32\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\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\x31\x2e\x33\x33\x38\x39\x39\x39\x39\ +\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ +\x3a\x72\x6f\x75\x6e\x64\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\x31\x35\x2e\x36\x35\x39\x30\x39\x31\x2c\x31\ +\x34\x2e\x36\x32\x37\x38\x34\x31\x20\x2d\x36\x2e\x38\x34\x33\x37\ +\x35\x30\x31\x2c\x36\x2e\x30\x33\x31\x32\x35\x20\x39\x2e\x31\x38\ +\x37\x35\x30\x30\x31\x2c\x31\x30\x2e\x34\x30\x36\x32\x35\x20\x2d\ +\x31\x30\x2e\x30\x33\x31\x32\x35\x30\x31\x2c\x39\x2e\x35\x39\x33\ +\x37\x35\x20\x36\x2e\x32\x38\x31\x32\x35\x30\x31\x2c\x36\x2e\x35\ +\x39\x33\x37\x35\x20\x39\x2e\x37\x38\x31\x32\x35\x2c\x2d\x39\x2e\ +\x33\x34\x33\x37\x35\x20\x38\x2e\x39\x33\x37\x35\x2c\x31\x30\x2e\ +\x31\x35\x36\x32\x35\x20\x36\x2e\x38\x34\x33\x37\x35\x2c\x2d\x36\ +\x2e\x30\x33\x31\x32\x35\x20\x2d\x39\x2e\x31\x38\x37\x35\x2c\x2d\ +\x31\x30\x2e\x34\x30\x36\x32\x35\x20\x31\x30\x2e\x30\x33\x31\x32\ +\x35\x2c\x2d\x39\x2e\x35\x39\x33\x37\x35\x20\x2d\x36\x2e\x32\x38\ +\x31\x32\x35\x2c\x2d\x36\x2e\x35\x39\x33\x37\x35\x20\x2d\x39\x2e\ +\x37\x38\x31\x32\x35\x2c\x39\x2e\x33\x34\x33\x37\x35\x20\x2d\x38\ +\x2e\x39\x33\x37\x35\x2c\x2d\x31\x30\x2e\x31\x35\x36\x32\x35\x20\ +\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\ +\x63\x74\x33\x37\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\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\ +\x0a\ +\x00\x00\x12\x92\ +\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\ +\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\x30\x30\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\x36\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x72\x6f\x74\ +\x61\x74\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\x3e\x0a\x20\x20\x3c\x64\x65\x66\ +\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x33\ +\x30\x30\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\x33\x39\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\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x30\x30\x33\x64\x64\x64\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\x39\x35\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\ +\x36\x33\x39\x65\x66\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\x33\x39\ +\x37\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\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x33\x39\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\x33\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x31\x3d\x22\x31\x36\x36\x39\x2e\x37\x33\x31\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x31\x37\x32\x36\x2e\x30\x35\ +\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x32\ +\x30\x36\x37\x2e\x31\x37\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x79\x32\x3d\x22\x31\x37\x32\x36\x2e\x30\x35\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\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\x31\x33\x35\x38\x33\x37\ +\x2c\x30\x2c\x30\x2c\x30\x2e\x39\x31\x33\x35\x38\x33\x37\x2c\x31\ +\x33\x38\x2e\x36\x33\x37\x32\x33\x2c\x31\x33\x30\x2e\x36\x30\x36\ +\x32\x35\x29\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\x30\x30\ +\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\x39\x34\x34\x35\x34\x33\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\ +\x33\x34\x2e\x37\x36\x32\x31\x34\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x32\x36\x2e\ +\x38\x30\x37\x35\x35\x36\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\x36\ +\x34\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\x37\x32\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\x30\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\x32\x35\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\x30\x30\ +\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\ +\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\x34\x30\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\x31\x33\x36\x39\x33\x36\x35\x2c\x30\x2c\x30\x2c\x30\x2e\x31\ +\x33\x36\x39\x33\x36\x35\x2c\x2d\x32\x32\x32\x2e\x32\x31\x37\x35\ +\x34\x2c\x2d\x32\x30\x33\x2e\x33\x36\x35\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\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x34\x30\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\ +\x20\x31\x36\x39\x39\x2e\x39\x34\x30\x37\x2c\x31\x38\x30\x35\x2e\ +\x37\x34\x34\x34\x20\x43\x20\x31\x37\x32\x37\x2e\x34\x39\x31\x32\ +\x2c\x31\x38\x39\x38\x2e\x39\x33\x30\x33\x20\x31\x38\x32\x35\x2e\ +\x34\x37\x37\x34\x2c\x31\x39\x35\x32\x2e\x31\x39\x38\x20\x31\x39\ +\x31\x38\x2e\x36\x36\x33\x32\x2c\x31\x39\x32\x34\x2e\x36\x34\x37\ +\x36\x20\x43\x20\x32\x30\x31\x31\x2e\x38\x34\x39\x2c\x31\x38\x39\ +\x37\x2e\x30\x39\x37\x20\x32\x30\x36\x35\x2e\x31\x31\x36\x38\x2c\ +\x31\x37\x39\x39\x2e\x31\x31\x30\x39\x20\x32\x30\x33\x37\x2e\x35\ +\x36\x36\x33\x2c\x31\x37\x30\x35\x2e\x39\x32\x35\x31\x20\x43\x20\ +\x32\x30\x32\x33\x2e\x30\x34\x37\x32\x2c\x31\x36\x35\x36\x2e\x38\ +\x31\x36\x31\x20\x31\x39\x38\x38\x2e\x39\x36\x39\x37\x2c\x31\x36\ +\x31\x38\x2e\x38\x30\x31\x39\x20\x31\x39\x34\x36\x2e\x33\x34\x30\ +\x38\x2c\x31\x35\x39\x37\x2e\x38\x35\x34\x33\x20\x4c\x20\x31\x39\ +\x36\x37\x2e\x31\x36\x37\x34\x2c\x31\x35\x35\x30\x2e\x35\x38\x33\ +\x20\x4c\x20\x31\x37\x39\x35\x2e\x34\x39\x37\x38\x2c\x31\x35\x37\ +\x36\x2e\x33\x32\x39\x35\x20\x4c\x20\x31\x38\x39\x35\x2e\x38\x32\ +\x34\x2c\x31\x37\x31\x32\x2e\x34\x36\x33\x33\x20\x4c\x20\x31\x39\ +\x32\x30\x2e\x31\x32\x37\x36\x2c\x31\x36\x35\x37\x2e\x33\x31\x36\ +\x36\x20\x43\x20\x31\x39\x34\x36\x2e\x39\x30\x34\x39\x2c\x31\x36\ +\x37\x31\x2e\x31\x35\x34\x39\x20\x31\x39\x36\x38\x2e\x32\x32\x38\ +\x33\x2c\x31\x36\x39\x35\x2e\x34\x34\x39\x33\x20\x31\x39\x37\x37\ +\x2e\x34\x34\x33\x35\x2c\x31\x37\x32\x36\x2e\x36\x31\x38\x31\x20\ +\x43\x20\x31\x39\x39\x35\x2e\x33\x38\x34\x2c\x31\x37\x38\x37\x2e\ +\x32\x39\x39\x39\x20\x31\x39\x36\x30\x2e\x37\x30\x31\x35\x2c\x31\ +\x38\x35\x31\x2e\x30\x39\x38\x39\x20\x31\x39\x30\x30\x2e\x30\x31\ +\x39\x35\x2c\x31\x38\x36\x39\x2e\x30\x33\x39\x35\x20\x43\x20\x31\ +\x38\x33\x39\x2e\x33\x33\x37\x35\x2c\x31\x38\x38\x36\x2e\x39\x38\ +\x30\x31\x20\x31\x37\x37\x35\x2e\x35\x31\x31\x33\x2c\x31\x38\x35\ +\x32\x2e\x33\x30\x35\x35\x20\x31\x37\x35\x37\x2e\x35\x37\x30\x37\ +\x2c\x31\x37\x39\x31\x2e\x36\x32\x33\x37\x20\x43\x20\x31\x37\x35\ +\x32\x2e\x34\x33\x37\x35\x2c\x31\x37\x37\x34\x2e\x32\x36\x31\x31\ +\x20\x31\x37\x35\x31\x2e\x36\x33\x30\x35\x2c\x31\x37\x35\x36\x2e\ +\x36\x35\x34\x37\x20\x31\x37\x35\x34\x2e\x34\x39\x33\x2c\x31\x37\ +\x33\x39\x2e\x39\x32\x38\x31\x20\x4c\x20\x31\x36\x39\x35\x2e\x32\ +\x39\x31\x31\x2c\x31\x37\x32\x35\x2e\x38\x37\x33\x38\x20\x43\x20\ +\x31\x36\x39\x30\x2e\x38\x30\x30\x33\x2c\x31\x37\x35\x31\x2e\x37\ +\x30\x34\x20\x31\x36\x39\x32\x2e\x30\x30\x38\x34\x2c\x31\x37\x37\ +\x38\x2e\x39\x31\x34\x34\x20\x31\x36\x39\x39\x2e\x39\x34\x30\x37\ +\x2c\x31\x38\x30\x35\x2e\x37\x34\x34\x34\x20\x7a\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\x23\x30\x30\ +\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x30\x2e\x35\x36\x33\x31\x30\x36\x37\x36\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\x30\x2e\x39\x36\x33\x30\x30\ +\x34\x31\x31\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\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\x64\x3d\x22\x70\x61\x74\x68\x32\x33\x39\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\ +\x31\x36\x37\x36\x2e\x38\x30\x32\x33\x2c\x31\x37\x37\x32\x2e\x30\ +\x30\x33\x39\x20\x43\x20\x31\x37\x30\x34\x2e\x33\x35\x32\x38\x2c\ +\x31\x38\x36\x35\x2e\x31\x38\x39\x38\x20\x31\x38\x30\x32\x2e\x33\ +\x33\x39\x2c\x31\x39\x31\x38\x2e\x34\x35\x37\x35\x20\x31\x38\x39\ +\x35\x2e\x35\x32\x34\x38\x2c\x31\x38\x39\x30\x2e\x39\x30\x37\x31\ +\x20\x43\x20\x31\x39\x38\x38\x2e\x37\x31\x30\x36\x2c\x31\x38\x36\ +\x33\x2e\x33\x35\x36\x35\x20\x32\x30\x34\x31\x2e\x39\x37\x38\x34\ +\x2c\x31\x37\x36\x35\x2e\x33\x37\x30\x34\x20\x32\x30\x31\x34\x2e\ +\x34\x32\x37\x39\x2c\x31\x36\x37\x32\x2e\x31\x38\x34\x36\x20\x43\ +\x20\x31\x39\x39\x39\x2e\x39\x30\x38\x38\x2c\x31\x36\x32\x33\x2e\ +\x30\x37\x35\x36\x20\x31\x39\x36\x35\x2e\x38\x33\x31\x33\x2c\x31\ +\x35\x38\x35\x2e\x30\x36\x31\x34\x20\x31\x39\x32\x33\x2e\x32\x30\ +\x32\x34\x2c\x31\x35\x36\x34\x2e\x31\x31\x33\x38\x20\x4c\x20\x31\ +\x39\x34\x34\x2e\x30\x32\x39\x2c\x31\x35\x31\x36\x2e\x38\x34\x32\ +\x35\x20\x4c\x20\x31\x37\x37\x32\x2e\x33\x35\x39\x34\x2c\x31\x35\ +\x34\x32\x2e\x35\x38\x39\x20\x4c\x20\x31\x38\x37\x32\x2e\x36\x38\ +\x35\x36\x2c\x31\x36\x37\x38\x2e\x37\x32\x32\x38\x20\x4c\x20\x31\ +\x38\x39\x36\x2e\x39\x38\x39\x32\x2c\x31\x36\x32\x33\x2e\x35\x37\ +\x36\x31\x20\x43\x20\x31\x39\x32\x33\x2e\x37\x36\x36\x35\x2c\x31\ +\x36\x33\x37\x2e\x34\x31\x34\x34\x20\x31\x39\x34\x35\x2e\x30\x38\ +\x39\x39\x2c\x31\x36\x36\x31\x2e\x37\x30\x38\x38\x20\x31\x39\x35\ +\x34\x2e\x33\x30\x35\x31\x2c\x31\x36\x39\x32\x2e\x38\x37\x37\x36\ +\x20\x43\x20\x31\x39\x37\x32\x2e\x32\x34\x35\x36\x2c\x31\x37\x35\ +\x33\x2e\x35\x35\x39\x34\x20\x31\x39\x33\x37\x2e\x35\x36\x33\x31\ +\x2c\x31\x38\x31\x37\x2e\x33\x35\x38\x34\x20\x31\x38\x37\x36\x2e\ +\x38\x38\x31\x31\x2c\x31\x38\x33\x35\x2e\x32\x39\x39\x20\x43\x20\ +\x31\x38\x31\x36\x2e\x31\x39\x39\x31\x2c\x31\x38\x35\x33\x2e\x32\ +\x33\x39\x36\x20\x31\x37\x35\x32\x2e\x33\x37\x32\x39\x2c\x31\x38\ +\x31\x38\x2e\x35\x36\x35\x20\x31\x37\x33\x34\x2e\x34\x33\x32\x33\ +\x2c\x31\x37\x35\x37\x2e\x38\x38\x33\x32\x20\x43\x20\x31\x37\x32\ +\x39\x2e\x32\x39\x39\x31\x2c\x31\x37\x34\x30\x2e\x35\x32\x30\x36\ +\x20\x31\x37\x32\x38\x2e\x34\x39\x32\x31\x2c\x31\x37\x32\x32\x2e\ +\x39\x31\x34\x32\x20\x31\x37\x33\x31\x2e\x33\x35\x34\x36\x2c\x31\ +\x37\x30\x36\x2e\x31\x38\x37\x36\x20\x4c\x20\x31\x36\x37\x32\x2e\ +\x31\x35\x32\x37\x2c\x31\x36\x39\x32\x2e\x31\x33\x33\x33\x20\x43\ +\x20\x31\x36\x36\x37\x2e\x36\x36\x31\x39\x2c\x31\x37\x31\x37\x2e\ +\x39\x36\x33\x35\x20\x31\x36\x36\x38\x2e\x38\x37\x2c\x31\x37\x34\ +\x35\x2e\x31\x37\x33\x39\x20\x31\x36\x37\x36\x2e\x38\x30\x32\x33\ +\x2c\x31\x37\x37\x32\x2e\x30\x30\x33\x39\x20\x7a\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\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x33\x33\x39\x39\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\x31\x30\x2e\x39\x36\x33\x30\x30\x34\x31\x31\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\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\x0f\xd2\ +\x00\ +\x00\x52\x9a\x78\x9c\xe5\x5c\x5b\x6f\xe3\xb8\x15\x7e\x9f\x5f\xa1\ +\x66\x5e\x36\xa8\x45\xf3\x7e\x71\x92\xe9\x43\x07\x5b\x2c\xb0\x40\ +\x8b\xee\x2e\xfa\xb8\x50\x64\xd9\x71\x63\x5b\x86\xec\x4c\x2e\xbf\ +\xbe\x87\xd4\xc5\x94\x4c\xdb\x72\xe2\xa4\xd3\xad\x8d\x99\x48\xe4\ +\x21\x79\x78\xf8\x9d\x1b\x29\xf9\xfa\x2f\x4f\x8b\x79\xf4\x2d\x2b\ +\xd6\xb3\x7c\x79\x73\x41\x10\xbe\x88\xb2\x65\x9a\x8f\x67\xcb\xe9\ +\xcd\xc5\x6f\xbf\xfe\x18\xeb\x8b\x68\xbd\x49\x96\xe3\x64\x9e\x2f\ +\xb3\x9b\x8b\x65\x7e\xf1\x97\x2f\x9f\xae\xff\x14\xc7\xd1\x5f\x8b\ +\x2c\xd9\x64\xe3\xe8\x71\xb6\xb9\x8b\x7e\x5a\xde\xaf\xd3\x64\x95\ +\x45\x3f\xdc\x6d\x36\xab\xd1\x70\xf8\xf8\xf8\x88\x66\x55\x21\xca\ +\x8b\xe9\xf0\x32\x8a\xe3\x2f\x9f\x3e\x5d\xaf\xbf\x4d\x3f\x45\x51\ +\x04\xe3\x2e\xd7\xa3\x71\x7a\x73\x51\x35\x58\x3d\x14\x73\x47\x38\ +\x4e\x87\xd9\x3c\x5b\x64\xcb\xcd\x7a\x48\x10\x19\x5e\x6c\xc9\xd3\ +\x2d\x79\x6a\x47\x9f\x7d\xcb\xd2\x7c\xb1\xc8\x97\x6b\xd7\x72\xb9\ +\xfe\xec\x11\x17\xe3\x49\x43\x6d\xb9\x79\x64\x8e\x88\x18\x63\x86\ +\x98\x0e\x29\x8d\x81\x22\x5e\x3f\x2f\x37\xc9\x53\xdc\x6e\x0a\x3c\ +\x86\x9a\x52\x8c\xf1\x10\xea\xb6\x94\xfd\xa8\x46\x4f\x73\x10\xc5\ +\x5e\x66\x5c\xad\x3f\x3a\x88\x7f\x05\xff\x9a\x06\x75\x01\x5a\xe7\ +\x0f\x45\x9a\x4d\xa0\x65\x86\x96\xd9\x66\xf8\xf5\xd7\xaf\x4d\x65\ +\x8c\xd1\x78\x33\xf6\xba\xa9\xa5\xdf\x1a\xb7\xb5\x24\xcb\x64\x91\ +\xad\x57\x49\x9a\xad\x87\x75\xb9\x6b\xff\x38\x1b\x6f\xee\x6e\x2e\ +\x24\x5f\x3d\xb9\xfb\xbb\x6c\x36\xbd\xdb\x78\x05\xb3\xf1\xcd\x05\ +\xcc\x90\x49\x42\xdd\xbd\x07\x20\x52\x12\x54\xdd\x8d\x9a\x1a\x8c\ +\xb8\x8a\x0a\x4a\x85\x66\x8e\xa2\x66\x7b\x34\xce\x53\xcb\xc7\xcd\ +\xc5\xd7\x22\x99\x6c\x7e\xff\x05\xd6\x3e\xdd\xfc\x63\x9e\x2c\x33\ +\x64\x85\xf8\x05\x88\xaf\xc7\xd9\x64\x6d\x1b\x95\x23\xdb\x3b\x18\ +\x9a\xbb\x3a\xa8\x6d\x06\x5b\xc1\x60\x2b\x68\x0d\xb0\x28\xa9\xbd\ +\x61\x36\xcf\x56\x12\x6d\x52\x56\x8a\x2b\x6a\x31\xbc\xfa\xfd\x09\ +\xb8\x8d\x46\x11\xa3\xf0\x1f\x09\x52\x3c\x97\x14\x04\x56\x1a\xfe\ +\xe0\x20\xcd\x8b\x95\xd7\x81\x6e\x2a\x0e\xe2\xbc\x98\x4d\x67\x20\ +\x20\x47\x47\x09\x62\xee\xd3\x6e\x03\x93\xf6\xe6\xc6\x24\x05\x35\ +\x1d\xf6\x98\x7d\xb7\xa1\xd0\xfa\x38\x23\x18\x09\x3b\xa9\x8a\x91\ +\x2e\x2b\xed\x19\x12\x47\x29\xde\x24\xa8\x4a\xdc\xdd\x6e\x8e\xad\ +\xdc\xab\x04\x20\x0d\xfd\xe3\x09\x00\xcc\x47\x96\x14\x7f\x2b\x92\ +\xf1\x0c\x8c\xa6\x3f\xf5\x76\x0d\x23\x9c\xc7\xb2\xd2\x1a\x68\xb7\ +\xde\xe4\xab\x9a\xba\xd2\x69\x28\x01\x2a\x19\x9b\x8b\x6d\xc5\x7a\ +\xf3\x3c\xcf\xca\xba\x38\xcd\xe7\x79\x31\xfa\x3c\x71\x9f\x2b\x57\ +\x94\x83\x01\x99\x6d\x9e\x47\xc4\x6b\x92\x4f\x26\xeb\x0c\x0c\xc6\ +\x16\xa6\x87\x86\xd3\x31\x3d\x7d\x38\x1c\x18\x8e\x6c\x65\x32\x6c\ +\x4f\xfd\x54\x49\x29\x4c\x8e\xca\x49\x61\xf6\x71\x52\x52\x58\x7c\ +\x90\x8c\xec\x5d\x32\xdf\x91\x51\x8d\x3e\x18\xce\x1a\xe8\x9b\x8b\ +\x64\xfe\x98\x3c\xaf\x9b\x11\x9c\x13\x1b\xdd\x15\x19\x38\xdd\xcf\ +\x41\xdc\xf9\xe2\x6e\x0f\xc2\xa4\x67\x97\xa6\x55\xe1\x6f\xcb\xd9\ +\x06\xfc\xeb\xc3\x3a\x2b\x7e\xb1\x3e\xea\xef\xcb\xdf\xd6\xd9\x0e\ +\xd5\xaf\x45\xb2\x5c\x83\x43\x5c\xdc\x5c\x2c\x92\x4d\x31\x7b\xfa\ +\x81\x0c\xb0\xfd\x22\x69\xb4\xa0\x86\xc3\x35\xc5\x14\x69\xaa\x25\ +\xbb\x6c\x9a\xa7\xa0\x73\xe0\x8b\x10\x95\x1c\x6f\xc1\x97\x82\xb6\ +\x4a\x45\x91\x32\x8a\x6d\xf9\x9d\x04\x69\x27\x41\xda\x02\xec\x38\ +\x47\x8c\x0b\x02\x33\x3a\x5d\x41\x15\xd6\xc7\x61\x47\xf0\x07\xc2\ +\x8e\x7c\x94\x6a\x9e\x62\xc5\xb5\xa7\x0c\x7f\x74\x2b\xfe\x16\xbd\ +\xd3\x92\xc7\x38\xc6\x17\x07\x10\x67\x18\x3f\x9b\xe6\x61\x44\x29\ +\xc1\x94\xcb\x01\xc4\xa2\x42\x69\x43\x25\xb1\x97\x8a\x48\x63\xa4\ +\x61\xf6\x9a\x09\xc6\x25\x18\xb3\x81\x20\x06\x19\x8d\xb5\x18\x70\ +\xc9\x11\x31\x94\x7b\xea\xf9\x44\x40\xb9\x8c\x44\x52\x31\xba\x05\ +\xe0\x33\x94\x2a\x85\x30\x97\xd4\xe3\xfa\x89\x02\xad\xe0\x48\x63\ +\x4c\xb7\x06\xf9\x19\x4a\x09\x11\x08\x13\xa3\xf8\x2b\x34\xb1\x16\ +\xdd\x31\x05\xd1\x52\xc6\x22\x56\x41\xf5\x3a\xa8\x38\x58\x12\x93\ +\xe2\x8e\x96\x5e\xf5\x50\x49\x2d\x75\xac\x3c\x73\xea\xeb\xd8\xc1\ +\x11\x99\x32\xe9\xe4\x76\xef\x88\xa7\xb9\xcc\xb7\xc0\x92\x29\x75\ +\x10\x92\x9c\xb6\x80\x20\x8c\x42\x4a\x51\xcd\x5a\x40\xe0\x1c\x01\ +\xd4\x98\x4f\x6b\x81\x00\xa8\x62\x98\x51\xdd\x02\x02\x03\x64\x2a\ +\xde\x1b\xe9\xa7\xa3\xc5\xce\xe8\xd8\xba\x81\xf8\x4f\x47\xc9\x64\ +\x92\x24\xf8\x35\x28\x61\x3a\x64\xf2\x8f\x20\x64\x92\x4c\x26\xf4\ +\x7b\x40\x88\xd3\xbe\x43\x18\x91\x42\xfd\x97\xcc\x16\x93\x88\x13\ +\x2a\xc8\x80\x83\xf3\xb7\x09\xf0\x5b\xac\x16\x0c\x82\xb9\x30\x6d\ +\xab\xc5\x0c\xe2\xd8\x68\xfa\x5a\xab\xd5\xcf\x66\x7d\xb4\xc5\xfa\ +\x28\x7b\x75\x4a\x1c\x61\xf0\xff\x4f\x36\xf8\x06\x75\x14\x98\xeb\ +\x03\xca\x28\x30\x3d\x9f\x32\x42\x40\x0d\x96\x5a\x1b\x17\xc4\x13\ +\x04\xfa\xa7\x30\x28\x26\x01\xad\x44\x44\x99\x41\xac\x41\xed\xb4\ +\x16\xbc\xad\x76\xcc\x86\xf8\x42\x11\xd1\x52\x3b\x26\x41\x19\x39\ +\x68\x74\x4b\xed\x02\xb4\x56\x19\xb1\x41\x02\x0b\xac\x4e\x57\x3b\ +\x27\x9f\x3d\x4a\xb0\x8b\xeb\xdb\x79\x92\xde\x77\x02\xe6\xab\x23\ +\xda\x58\xab\x92\x65\xf0\xb8\xc2\x01\x55\x28\x3c\x00\x44\x1d\x54\ +\xb8\x00\x63\x87\xd4\xfb\xf5\x33\x23\xe1\x99\xd1\x8f\xcf\x4c\x05\ +\x96\x6d\x37\xd3\x1e\x02\x90\x6d\x3e\x00\xd9\x04\x49\xc6\x42\xc8\ +\xb6\x59\xaa\xc4\x02\x3c\x11\xf7\x18\xb1\x59\x2a\xd7\x5d\x64\x4f\ +\x82\xb4\x93\x20\x6d\x61\x63\x63\x85\x80\x52\xcb\x37\x1b\x8e\x90\ +\x3e\xc8\xbd\x4e\xa8\x2f\xec\xfa\xea\x83\xa4\x1f\x87\x50\xc9\x5f\ +\x87\xd0\x96\xb8\x0f\xaf\x4c\x78\x15\xc3\x2b\x1e\x46\xc7\x7e\x00\ +\xc6\x61\x04\x12\x02\xe5\x10\x9b\x84\x00\xd8\x0f\xf3\x01\xc5\x61\ +\xde\x3e\x6b\x6f\xfd\xdb\x87\xb4\x23\x08\xed\xc7\xa4\x0b\xad\xb0\ +\x02\x21\x12\xd5\x0e\xc3\x20\x07\x16\x48\x40\x48\xd7\xf2\x1d\x04\ +\x16\x0b\x29\x6a\xb6\xa5\xce\xcf\x28\x70\x13\x8c\x1a\x79\x00\xfe\ +\x4c\x73\x05\x19\x9a\xe8\x23\x00\xa0\x25\x90\x67\xb2\x37\x0b\x21\ +\xc8\x46\xd9\xf5\xd1\xf0\x8c\xb3\x98\xc4\xec\x88\xca\x9d\x35\x20\ +\xe4\x02\x38\xd3\x47\x14\xef\x6c\x21\xe1\x39\xfc\x46\x32\x9b\x16\ +\x63\x7a\x00\xf2\xd4\x4f\x50\xcf\x91\x92\x80\x72\xb2\x6a\x2b\xb3\ +\xba\xe1\x80\x5d\x26\xa8\x19\x30\x64\x94\xdd\x3b\xe9\xec\x67\x62\ +\x04\x51\x12\x36\x6d\xbb\x41\x08\x47\x42\x6a\xde\x32\x31\xbb\xa4\ +\x93\x10\x29\x18\x2e\x81\xa8\xf0\x7c\x44\x58\x94\xfd\xa6\x1b\x1c\ +\x22\xcc\x4d\x33\xf0\xc1\x99\x84\x27\x6d\x97\xa6\x5a\xad\x23\x38\ +\x24\x42\x48\x79\x18\x70\x3f\x62\xfb\x7d\xdd\xe6\xa9\xed\x5e\x1f\ +\xee\xde\x24\xf6\xdb\xc1\x33\xc2\xe5\x27\xe8\x98\xea\x4a\x0f\xf3\ +\xed\x35\x39\x37\xe6\xd9\x61\xcc\x8b\xef\x11\xf3\xd2\x02\x45\xf9\ +\xd9\xdd\x7e\xd0\xef\xd2\x56\xe0\x53\xe7\x43\x7d\x5f\x7e\x9a\x91\ +\x0f\x4f\xe6\x08\xee\x8f\x5a\x7c\x00\xa6\x3a\x72\x74\xf5\x46\xdc\ +\xab\x23\x87\x55\x1f\x8d\x7b\x7b\x2c\xa3\x11\x11\x5a\x1a\xd1\x5a\ +\x19\x85\xa8\x84\x98\x4a\xaa\xd6\xca\x00\x29\x67\x2d\xe3\x90\x06\ +\x69\xd3\x20\xed\x21\x88\x1b\xa9\x29\x04\x15\xaa\x0a\xc1\x30\xa3\ +\x4a\xaa\x01\x44\x60\x98\x63\xc1\xe9\x20\x96\x50\x28\x15\x55\xe4\ +\xed\x41\x18\x01\xa6\x74\x58\xb3\xdb\x6e\xd2\x12\x06\x36\x42\xde\ +\x1c\x81\x94\xfd\xf6\x0e\xce\xc3\x07\x57\x87\x50\x81\x1b\x54\x84\ +\x50\x28\xbd\x78\xbd\xd7\xf0\xda\x7e\x5f\x05\xca\xf0\xf0\xf2\xd5\ +\xe9\x82\x0d\x3d\x31\x44\x49\x2d\xac\x42\x94\xaa\x98\x34\xa4\x7d\ +\x32\xc9\xc0\x30\xc2\x50\xaa\x6d\x01\x77\x69\xd3\x20\xed\x61\xac\ +\x62\x6e\x3c\xac\x72\x42\x18\x20\x54\x50\x40\x3c\xa7\xdc\x0c\x62\ +\x85\x29\x62\x0c\xd4\xea\xed\x60\xe5\x5c\xf4\xca\x18\xa8\xb7\x5b\ +\x7a\x3e\xa4\xda\x5e\x4f\x00\x4a\x62\xbf\x67\xc2\x29\x95\x07\x4c\ +\x6a\x60\xf0\x5b\xf7\x39\x13\x4a\xa9\x7c\xe5\xe3\x00\xd6\xa0\x2a\ +\xa4\x04\x51\x84\xb5\x41\x0a\x85\x92\xf8\x71\x41\x69\x50\x35\xe5\ +\x9c\x74\x30\xba\x43\x9a\x86\x48\x4f\x37\xa7\x31\xd7\x08\x1c\xa6\ +\x34\x0e\xa2\x04\x49\x2d\x08\x3b\x0b\x44\x79\x2f\x88\xca\x77\x81\ +\xa8\x3c\x05\xa2\x09\xb3\xdf\x73\x41\x54\x9d\x06\x51\x9e\xda\xef\ +\xb9\x20\xaa\x5e\x0f\xd1\xef\xd8\x8c\x6a\x40\x25\x00\x94\x12\xe7\ +\xf2\x41\x8b\x14\x3d\x83\xcb\x67\x46\xbd\x83\x15\xfd\x1f\x34\x01\ +\xef\x13\x51\x31\xa3\xce\x6d\x01\xae\x87\xf6\x69\x56\x77\xd5\x9c\ +\xf0\xd8\xc7\x61\xc7\xdf\x66\xd9\xe3\xa7\x86\x8f\xdb\xa4\x61\x6c\ +\x95\x4c\x33\xa7\x68\x30\x6c\x19\x31\x55\x15\xb7\x79\x31\xce\x8a\ +\xba\x4a\xba\x4f\xab\xaa\xd2\xc5\xf2\x31\xef\x4f\x6d\xee\x6c\xaf\ +\x4d\x3d\x0e\xd7\xaf\xef\x92\x71\xfe\x08\xb9\x47\xb7\xf2\x25\xcf\ +\x17\x36\x75\x11\xdd\x0a\xa7\x2d\x3b\xe4\x6e\xe5\x77\x4b\x1f\x8a\ +\x02\x64\x17\xcf\x93\xe7\x0c\x26\xe0\xfe\xd4\xdb\x41\xeb\xbb\xfc\ +\x71\x5a\x58\x41\x6c\x8a\x87\xac\xdb\x72\x9c\xa7\x0f\xf6\x71\xf1\ +\xf8\xa1\x5c\xcf\xea\x21\x65\x8f\xc2\xb6\x8d\x6f\x6f\xf3\xa7\x70\ +\x07\x8f\xb3\x25\x4c\x2c\xae\x1e\x7b\x06\x3c\xee\x4c\xbf\xa2\xa8\ +\x1f\x84\x56\x42\xef\xa1\x78\xda\xee\x9a\x75\xab\xac\xe0\xcd\x9e\ +\xba\x45\xf2\x34\x5b\xcc\x5e\xb2\xf1\x36\xc3\xba\x5e\x64\x9b\x64\ +\x9c\x6c\x92\x2d\x0a\xea\x12\x26\x49\xfd\xbc\xc1\x75\x31\x9e\x8c\ +\xfe\xf9\xf5\xc7\xc6\x3a\xa7\xe9\xe8\x5f\x79\x71\xbf\x35\xa4\x96\ +\x20\xb9\xcd\x1f\x80\xed\xc6\x81\xd8\x47\xaa\xd3\x91\xd5\xa4\x64\ +\xf3\x65\xb6\x80\xb5\xb5\x0f\xac\xff\xf9\x69\x31\x07\x3c\x36\x15\ +\x2d\x62\x7b\xec\xb8\xed\xb4\xec\xb6\xc8\xca\x07\xd2\x83\xcf\xf0\ +\x8f\xd3\xc5\xcc\x36\x1a\xfe\xb2\x99\xcd\xe7\x3f\xd9\x41\x3c\x2f\ +\x52\x75\x3a\xdb\xcc\xb3\x2f\x6e\xcc\xf2\xb2\x9e\xc5\xb0\x9a\x46\ +\x93\xeb\x6d\x67\x79\x3d\xac\xc5\xe0\xee\xa6\x5b\xf1\xb4\x20\xd3\ +\x48\x78\x9e\xdc\x66\xf3\x9b\x8b\x9f\x6d\x65\xb4\x53\x3b\x2d\xf2\ +\x87\xd5\x22\x1f\x67\x55\xf3\x46\xac\xa0\xaa\x8d\xa5\x73\x2a\x43\ +\xb8\xc1\xdc\xdb\xc0\x87\xc2\x58\x68\xb0\x2d\x52\x49\x6f\xaf\x17\ +\x48\x21\x87\x37\xd6\xf6\x34\x85\x35\x6c\x38\x98\x2b\x0a\xde\x60\ +\x6b\x44\x2a\xc8\x31\x8e\xb4\x97\x33\x3b\xcb\x03\x0c\x10\xc1\xbc\ +\xfd\xe7\xca\xd3\xd6\x9b\xaf\xa5\x37\x9d\x80\x6c\x47\x20\xf5\x1f\ +\x3e\xef\x7a\x82\x4b\x57\xeb\x6d\x94\xba\xdb\xe2\x61\x9e\x8d\x96\ +\xf9\xf2\x05\x0c\x02\xf8\xe8\x22\xbf\xcf\xf6\x74\xc0\x2f\xab\xfa\ +\x52\x33\x46\xb4\xbe\xb5\xd6\x0e\xa4\x37\x02\xd9\x2d\xc7\x7e\xe1\ +\xbf\xf3\xd9\xb2\x5d\x0a\x18\xc8\x8a\x39\x60\x7b\x33\xe2\x75\xd9\ +\x96\xa1\xaa\x60\x9c\x80\x69\x29\x8a\xe4\xd9\xf2\x95\xf9\xa5\x65\ +\x84\x30\xc2\x57\x8b\xa4\xb8\xcf\x8a\xb2\xfe\xdb\x6c\x3d\xbb\x9d\ +\xcd\x6d\x17\xee\x72\x9e\x5d\x8d\x67\xeb\x15\xac\xdf\xe8\x76\x9e\ +\xa7\xf7\x57\xf9\xb7\xac\x98\xcc\xf3\xc7\xba\x7a\xbb\xc1\xf2\x14\ +\x5a\xc9\xcd\x8e\x5b\x01\xbf\xc4\x39\xb8\x64\x95\xc5\x7c\x00\x8b\ +\x56\x7e\xdc\x93\x20\xcd\x75\x9b\x66\x80\x2f\x3d\x87\xe9\x83\xc7\ +\x5a\x84\x6a\x48\x6f\x67\xa7\x78\x0e\x16\x3b\x50\x29\x44\xa8\xa1\ +\x1d\x50\x49\xfb\x0c\x0a\xe6\x6c\x07\x54\x4c\x23\xc3\x25\xd3\xbb\ +\xa0\xb2\xe7\x3d\x42\x6b\x15\xc0\x95\xf4\xce\x5d\xf6\xe3\xca\x5b\ +\x8d\x10\x44\xdc\x06\x43\x07\x23\x8d\x80\xf8\x7b\x82\xe5\xcc\xb0\ +\x38\x3b\x00\xa6\x1d\xd9\xd6\x7c\xcc\x96\x76\xe2\xad\xf5\x98\x52\ +\x1b\x5e\x1f\xe7\x44\xb6\x38\xf1\x18\x19\xb4\x28\x6c\x30\x29\x04\ +\x81\x10\xc8\x20\x46\x20\x1a\xc2\xf2\x72\x9b\x37\x34\x7c\x85\x46\ +\xda\xb7\x01\x6b\x24\x04\xd1\x04\x2e\x20\x28\xb3\x56\x65\x77\x6b\ +\xcf\x81\xa5\xde\xbe\xe9\x6b\x73\x6a\xa4\x05\xd6\xbe\x93\x06\x4c\ +\x09\xe7\xd8\xf7\x5d\xe1\x80\xd4\x7e\xfa\x45\x76\xf6\x13\x3c\x8d\ +\x70\x15\xc1\xdd\x55\xa7\xb3\xdd\x53\x09\xfb\x09\x9e\x4c\xb8\x8a\ +\xbd\xfd\x04\xb6\xea\x38\xa7\xde\x04\x77\x92\xac\xba\x95\xdb\x59\ +\xe2\xbc\x3d\x50\xbf\x0d\x5c\xfb\x09\x6d\xe2\x1e\x1f\x4d\x1e\x1f\ +\x8d\x2b\xfb\xdd\x33\x1a\x69\xbb\xfd\xe0\xbe\xad\xab\x59\x25\x9b\ +\xbb\xae\x9c\x6c\x19\xf0\xa0\x5b\x7d\xdb\x50\x28\xa2\x0c\x71\xaa\ +\x07\x90\x4d\x21\xac\xa2\x34\x72\x47\xda\x8a\x45\x31\x24\xfc\xa0\ +\x13\x42\xd1\x28\xb6\x7f\x58\x7d\x63\xab\x41\x85\xea\x52\x4b\xd7\ +\x5c\x97\x24\x78\x50\x12\x45\xb6\x8b\xb2\x2a\xf2\x08\x58\xe4\x46\ +\x80\x2e\xca\x42\xdb\xc1\x76\x04\x16\xbd\xb4\x98\x6c\xc4\xe4\xd0\ +\x6e\x2d\x54\x5b\x0e\xe7\x02\xf1\xee\xf9\x80\xab\x39\x86\x62\xb5\ +\x83\xe2\x70\x47\xa7\xc1\x58\xe0\xfe\x30\x16\xf4\x23\x61\x2c\x7a\ +\x28\xcd\x7b\xc3\xb8\x63\x3a\x7c\x18\xcb\x7d\x28\x66\x3e\x8a\xd9\ +\x71\x14\xb3\x0f\x44\xf1\xf5\x70\xda\x5c\xb6\x67\xdd\xcc\x59\x08\ +\xe5\x2f\x9f\x9b\xb2\x01\xd7\x25\x30\xc1\x66\x40\xe1\x52\x50\x46\ +\xa5\x9b\x39\x46\x5c\x80\xc3\xe2\x91\x7d\xe0\x56\x2a\x41\xb9\x86\ +\x32\x6d\x23\x66\x63\xcb\xe0\x4a\x51\xdd\x2e\x83\x16\x9c\x31\x6d\ +\x05\x52\x13\x38\xe7\x58\xb6\xef\x14\x56\xcd\xf0\xa0\x6e\xc8\xa3\ +\xed\x48\x35\x29\xd4\x77\xda\x94\x65\x25\x6f\x30\x90\xcf\x88\x6b\ +\x2c\xa2\x0e\x6f\xb6\xc1\xcb\x1e\x37\x19\x88\xa3\xec\xa3\x03\x97\ +\xfb\x1d\x65\x57\xe8\xfb\x25\xad\xf6\x4b\x9a\x68\xc4\xa5\x22\xea\ +\x88\xa4\x2d\xe7\x5d\x49\x57\x65\x07\x25\x2d\x76\x25\xed\xa4\xf6\ +\xfd\x49\x5a\xf4\x95\x74\x03\xee\x96\xc0\xb7\x9b\x34\x90\x33\xda\ +\xf4\x16\x0c\x74\x9a\xb6\x22\xba\x72\x35\xa4\xb7\x13\xe7\xd6\x42\ +\x48\x08\xa9\x24\x04\x53\x03\x30\xa7\x44\x11\xc8\x1b\x41\x71\x15\ +\x32\x58\x0a\xfb\x4c\x16\xc2\xc4\xdf\xf3\xf2\x67\xe2\xc7\xe1\x9d\ +\xb0\xa9\x89\xba\xb5\x16\x82\x11\xd2\x8d\xba\x6f\x1f\x36\x9b\x9d\ +\xa0\xdb\xc5\x5a\x7d\x82\x6e\xcb\x94\x12\x1c\x92\x8b\xab\x4e\x08\ +\xdb\x48\xa9\x25\x9c\x53\x78\xee\xc7\xea\x5b\x93\xc9\xce\x1a\x50\ +\x04\x08\x84\x88\x7b\x40\x05\xe2\x9a\x18\xc1\x4a\x7d\x80\x7f\x0a\ +\x51\x02\x88\xb2\xf6\x93\x60\x24\x88\x7d\xe5\x04\xae\x19\x24\xf3\ +\xc6\x21\x0f\x22\x6a\xaa\x0c\xa7\xac\x7d\x09\xfa\x00\xfe\x54\x53\ +\x6b\x51\x63\x8d\x08\x31\xd0\x3d\x5c\x52\xa4\x99\x34\xba\x2c\x05\ +\xaf\x2a\x94\xe9\x5c\xdb\xb6\x02\x31\x05\x59\x20\x28\x00\xc0\x83\ +\xc3\x90\x34\xd2\x88\x62\xcd\x25\x14\x19\x24\xb8\xd4\x58\x47\x75\ +\x5f\x71\xc3\x8d\x46\x9a\x58\x6d\x8c\x81\x57\x2a\x30\x68\x58\xa8\ +\xe8\x65\x07\x98\x1c\x7b\x6f\xf4\x05\xc1\xfc\xe2\xbe\x7b\x16\xb8\ +\x3f\xfa\xf9\x0e\xfa\x15\x26\x04\x83\xe4\x21\x01\x97\x42\x39\xf4\ +\x6b\x8b\x2f\x85\x2b\xf4\x7b\xaf\x6f\xed\x45\x52\x73\x46\x7c\x32\ +\x92\x4e\x00\x3d\x58\x1f\xa9\x34\xd5\x7b\x41\xdf\xe4\x51\x87\x77\ +\x99\x4a\x89\x94\xbf\x6b\xf0\xb0\xb2\x61\x5d\xd6\x7a\xd2\x2e\x90\ +\x83\xd9\x17\x57\x89\xe0\x84\xb8\x57\x50\xea\x4b\x3c\xe0\x20\x35\ +\xc5\x01\x38\x80\x53\x06\xd9\x27\x11\x97\x5d\x61\x1d\x52\x36\xc0\ +\x0d\x37\x5a\x62\x2c\xce\xaf\x61\x7d\xb3\x4b\xa2\xc0\x3e\x71\x59\ +\xa5\x97\xf5\x5d\x2c\x19\xa8\x0f\x48\xdc\x02\x57\x6a\x24\xc0\xd0\ +\x13\x3f\xc7\x6c\x44\x9c\x3d\xad\xf2\x62\x13\x3f\x8f\x57\x33\x7b\ +\x46\xa0\xc8\x01\xa2\xa7\x3e\x44\x80\xae\xac\xfc\xe9\x89\xe1\x5d\ +\xbe\xc8\x86\xcf\x79\x31\xbb\x1f\x7e\xad\x76\x93\xd7\xc3\x9f\x93\ +\xdb\xa1\x5b\xbc\xe1\x2c\xcd\x97\xeb\x61\xb5\x84\x68\xb5\x9c\x76\ +\x33\x54\xa6\x05\x8b\x59\xeb\x2d\x97\x1e\xab\x02\x4e\xd9\x5a\x19\ +\x4d\xb9\x7c\xbf\x65\x09\x44\xa4\x15\x6b\x5b\xc0\x4b\xac\x0c\x35\ +\x82\x97\xdb\x3e\xfe\x1e\xd0\x2b\x32\xf9\xf7\x9f\x5b\xdf\x6d\x9f\ +\x52\x6d\x77\xf6\x7d\xae\x60\xd5\xe1\x4f\x7c\x9b\xa4\xf7\x53\xc7\ +\xcb\x28\x49\x61\xd1\x1f\xe6\xc9\x26\xdb\x8d\xd0\x99\x56\x02\x81\ +\xc6\x11\xf0\x0b\x14\x2c\x96\x91\x04\xc2\x70\x0e\xc6\x79\x00\x41\ +\x17\xe4\x4c\xd6\x1c\x73\xa4\x39\x53\xce\xa8\x97\x2f\x70\x49\x88\ +\xb3\x29\xf8\x14\xb0\xc9\xae\x34\x6e\x8a\x15\x98\xc2\xb2\xb4\x29\ +\x83\xda\xba\xa7\x97\x9d\x1c\xcb\xae\x1e\x78\x60\x13\xab\xd8\xb4\ +\x73\x90\x3d\xeb\xba\x8d\x7e\xc2\x0f\x26\xf7\xdf\x17\x3e\x65\x65\ +\xdf\xcd\x85\xbf\x65\xe3\xef\x5c\x08\xe0\xf6\xbc\x56\x89\x81\x31\ +\xc6\x2d\xb4\xa8\xc2\x86\x98\x43\x1c\x21\x39\x1b\x70\x30\xcb\xa0\ +\x44\x10\x07\x2b\x88\x55\x35\x19\x28\x30\xb9\x4c\x60\x28\xa0\x1c\ +\x19\xbb\x21\x07\x21\x07\x84\x06\x80\x1d\x65\x6c\x94\x30\xd0\x14\ +\x31\x0a\x69\x5a\xf7\x7e\x1e\x46\x53\x39\x20\xf8\x01\xac\x88\x8d\ +\x2a\x24\x05\x70\x09\x1b\x26\x83\x47\xa5\x84\x09\x5b\xc6\x6d\xc0\ +\x6f\x5a\x57\xf3\xde\xe0\xe3\x21\xf4\xd9\xfd\x62\x86\xa5\x04\xe0\ +\xb0\x76\x66\x18\x0e\x1e\x52\xf7\x2f\x0d\x65\x89\x47\x22\xea\xf2\ +\xc5\xb6\xa4\x48\xbb\x8e\xed\xc8\xce\xb4\xad\xb8\xdd\x89\x09\x60\ +\x59\xa4\x36\x0c\xeb\x3f\x36\x46\xbd\xb8\x8e\xef\xc6\x75\xee\x15\ +\x11\x80\x02\x04\x91\xde\x8f\x54\x6c\xab\x9f\xdd\xbb\xd1\x02\x90\ +\x4d\x03\x6f\x1a\x16\xe5\x59\x3c\xd3\x9a\x79\x1b\x70\xdb\xea\xe7\ +\x50\xb5\x53\x18\x09\xe8\x17\xc4\x00\xa8\x9b\xee\xa3\x24\x6a\x88\ +\x07\xcd\x55\x84\x23\x12\x59\x73\xaa\x90\x54\xf6\xe0\x1e\x1f\xa0\ +\xf2\x88\x5e\x0e\xc5\x50\x30\x5d\xc8\xaf\xa8\xa1\xf5\x2f\x81\xd4\ +\xb7\x31\x04\x53\x56\x69\xa4\x1e\x10\x8e\x38\xa7\x84\xf3\x57\xee\ +\xda\x0b\xec\xbd\xe2\x1b\xe2\x01\x53\x88\x72\x89\xa8\x79\x80\xe5\ +\xd1\x42\x81\xa1\x80\x40\x18\x24\xa3\x40\xbb\x85\xfd\x55\x12\xf0\ +\xbb\xfe\x06\xbd\x7f\x72\x54\x9e\x06\x11\x61\x7f\xca\x44\x6a\xff\ +\x89\xda\x27\x57\x2e\x20\x09\x11\xd4\x57\xca\xe6\x9c\x51\x69\xc4\ +\x04\x98\x09\xaf\xae\x3e\xdc\x66\xa0\xf5\x92\x31\xd1\x89\x60\xec\ +\xc0\x9c\x84\x1e\x0b\xde\x46\x09\x1c\x53\x2c\x89\x16\x57\xfb\x8e\ +\x20\x77\xdf\x0b\xed\xef\x6a\x7c\x2d\xaa\xc3\xfa\xb7\x29\xd0\xfe\ +\x3d\x93\x70\x1a\xe3\x25\x32\x5b\xbd\x02\x0b\xee\x4b\xd1\xa1\x3b\ +\xa6\x04\x64\x48\xb4\xb2\xaf\xef\xd9\xe5\x01\xed\xd2\x4d\x1e\xe9\ +\x84\x6f\x7d\x41\xeb\x1a\xb2\x1b\xa4\x15\x87\xac\xdf\x1e\xe2\x60\ +\x0c\xb6\x96\x59\xdf\x81\x01\x47\x36\x63\x53\x90\x14\x19\x29\xeb\ +\x42\xc2\x07\x31\x85\x95\x22\x10\x6c\x28\x51\x5a\x70\x0a\x98\x92\ +\x82\x41\xde\x44\x60\xe9\x39\x03\x58\xcb\x8a\x0a\x5a\x59\xd7\xd3\ +\x6d\xcc\x38\x24\x10\xa1\xfd\x91\x13\xd6\x74\xf7\x8d\xc8\xef\x74\ +\x4d\xdf\x3a\x33\x66\x4e\x38\x30\x7f\x87\x99\x75\x41\xd6\x28\x78\ +\x7f\x90\xc5\x15\xca\x68\x83\xb1\x1a\x12\x2d\x8c\x79\x85\x7b\x31\ +\x56\x43\xac\x05\xb0\x4e\xbb\x5d\x78\x6d\xb5\xa6\x65\x7b\xf6\xea\ +\x5b\x67\xaf\xcd\xfd\xb9\xb6\x8f\xa2\x7c\xf9\xf4\x1f\xa0\xfa\x20\ +\x6e\ +\x00\x00\x09\xcf\ +\x00\ +\x00\x35\xea\x78\x9c\xed\x5a\x5b\x6f\xdb\xca\x11\x7e\xf7\xaf\x60\ +\x95\x97\x18\x35\xa9\xbd\x73\x49\x5b\x3e\x28\x1a\xe4\xe0\x00\x29\ +\x0a\x34\x09\xda\x3e\x1d\x50\xbc\xc8\xac\x29\x52\x20\x29\x4b\xce\ +\xaf\xef\x2c\xc5\xcb\x52\xa2\x6e\xb6\x62\xe0\x24\x47\x44\x62\x71\ +\x76\xf6\x36\xdf\x37\xb3\x3b\xab\xbd\xfb\x65\x3d\x4f\x8c\xa7\x30\ +\x2f\xe2\x2c\x9d\x8c\xb0\x85\x46\x46\x98\xfa\x59\x10\xa7\xb3\xc9\ +\xe8\xeb\x97\x8f\xa6\x1c\x19\x45\xe9\xa5\x81\x97\x64\x69\x38\x19\ +\xa5\xd9\xe8\x97\xfb\xab\xbb\xbf\x98\xa6\xf1\xf7\x3c\xf4\xca\x30\ +\x30\x56\x71\xf9\x60\xfc\x96\x3e\x16\xbe\xb7\x08\x8d\xf7\x0f\x65\ +\xb9\x70\xc7\xe3\xd5\x6a\x65\xc5\xb5\xd0\xca\xf2\xd9\xf8\xda\x30\ +\xcd\xfb\xab\xab\xbb\xe2\x69\x76\x65\x18\x06\xf4\x9b\x16\x6e\xe0\ +\x4f\x46\x75\x85\xc5\x32\x4f\x2a\xc5\xc0\x1f\x87\x49\x38\x0f\xd3\ +\xb2\x18\x63\x0b\x8f\x47\x9d\xba\xdf\xa9\xfb\xaa\xf7\xf8\x29\xf4\ +\xb3\xf9\x3c\x4b\x8b\xaa\x66\x5a\xbc\xd3\x94\xf3\x20\x6a\xb5\xd5\ +\x68\x56\xb4\x52\xc2\x8e\xe3\x8c\x11\x19\x13\x62\x82\x86\x59\x3c\ +\xa7\xa5\xb7\x36\xfb\x55\x61\x8c\x43\x55\x09\x42\x68\x0c\x65\x9d\ +\xe6\x69\x5a\xee\x3a\x01\x53\xec\x1d\x4c\x55\xaa\xf7\x0e\xe6\x5f\ +\xc0\xbf\xb6\x42\x23\xb0\x8a\x6c\x99\xfb\x61\x04\x35\x43\x2b\x0d\ +\xcb\xf1\x87\x2f\x1f\xda\x42\x13\x59\x41\x19\x68\xcd\x34\xd6\xef\ +\xf5\xdb\x83\x24\xf5\xe6\x61\xb1\xf0\xfc\xb0\x18\x37\xf2\xaa\xfe\ +\x2a\x0e\xca\x87\xc9\x48\xb0\xc5\xba\x7a\x7f\x08\xe3\xd9\x43\xa9\ +\x09\xe2\x60\x32\x82\x19\x52\x81\x49\xf5\xae\x11\x08\x6f\x14\xea\ +\xe6\xdc\xb6\x04\x59\xcc\x36\x72\x42\xb8\xa4\x95\x46\x33\x6c\x37\ +\xc8\x7c\x35\x8e\xc9\xe8\x43\xee\x45\xe5\xef\x9f\x01\x7b\xbf\xfc\ +\x35\xcf\x96\x0b\x4b\x19\xf1\x1e\x94\xef\x82\x30\x2a\x54\xa5\x4d\ +\xcf\xea\x0d\xba\x66\x55\x19\x94\xce\xbd\xfc\x31\xcc\x37\xe5\x5a\ +\xd7\x45\x99\xf9\x8f\x4a\xff\x6f\x79\x9e\xad\xf0\x27\xa0\x71\x5e\ +\x8e\x1a\xb5\x2c\x8f\x81\x61\x93\x91\xb7\x2c\xb3\x56\x98\x87\xd1\ +\x7f\xd5\x50\x91\x2e\xf9\x4f\x5f\xb2\xb7\xc5\xa2\x7c\x4e\x60\x1a\ +\x19\x4c\x39\x4a\xb2\x95\xfb\x14\x17\xf1\x34\x09\xeb\x51\xc2\x38\ +\x17\x5e\xf9\xd0\x28\x6f\xda\x51\x12\x2a\x91\x33\xea\xc4\x20\xfd\ +\x87\x01\xfd\xdd\xc0\x3f\xe3\x93\xc1\xe1\x9b\xc9\xab\xaf\x26\x26\ +\x16\xd7\xc4\x1b\x69\xa3\xfa\xcd\xd0\x1a\xa9\x87\x12\xc5\x49\x62\ +\xe6\xcb\x24\x74\xc3\xa7\x30\xcd\x82\xe0\xb6\x28\xf3\xec\x31\x74\ +\xdf\xa1\xea\x53\xbf\x9a\x15\xde\x2e\x38\xff\xa2\xbc\xdd\x18\xd3\ +\xac\xa6\xe6\xa6\xe0\xf3\x5a\xb3\x65\xee\xa5\x05\xb0\x6f\x0e\xe8\ +\xfb\x5e\x12\xbe\x47\x96\xbc\xde\x48\x13\x08\x05\xef\x37\x03\xbc\ +\x1e\x19\xe3\x1a\x99\xf1\xa6\xb5\xfa\xad\x45\x66\x01\xa4\x58\x00\ +\xca\xe0\xbe\xad\xf1\x1a\x3a\x94\xcf\x8a\xb1\x7d\x55\x1a\x8c\x76\ +\xd0\x7d\x5a\xfc\xbe\x06\x60\x0c\xd7\xa0\x04\xfe\xc3\x83\x1a\xcf\ +\x1b\x0d\x0c\x73\x85\x3f\x68\x50\xe7\x9b\xe2\xf5\x81\x66\xea\x11\ +\x98\x40\x98\x59\x0c\x44\xae\xf4\x08\xb6\x68\xf5\xe9\xd7\x51\x90\ +\x76\x73\xa3\x82\xa0\xce\x16\x87\x66\xbf\x5d\x91\x4b\x79\x7c\x20\ +\xc8\xe2\x6a\x52\xf5\x40\xb6\x87\xd2\x9f\x21\xae\x34\xf9\xab\x0c\ +\x55\x9b\x7b\xbb\x99\x63\xc8\xbd\xc8\x00\xc2\x21\x3f\x9e\x01\x20\ +\xcc\x87\x5e\xfe\x6b\xee\x05\x2a\xf4\xe8\x53\xef\x97\x50\xcc\x98\ +\x29\xba\xb8\x01\x81\x6c\xd1\x8f\x1b\x4a\x02\x5a\xc2\x74\x76\x9d\ +\x5e\x95\x99\x7e\x96\x64\xb9\xfb\x2e\xaa\x3e\xb7\x95\x28\x83\x40\ +\x1f\x97\xcf\x2e\xd6\xaa\x64\x51\x54\x84\x10\x04\x3b\x9a\x1e\xea\ +\x4e\x9a\xe4\xfc\xee\xd0\x40\x77\x58\x8b\x10\xfd\xa9\x9f\x6b\x29\ +\x1b\xe1\xa3\x76\xb2\x11\x7d\x3b\x2b\xd9\x88\xbf\x91\x8d\xd4\x9b\ +\x97\xec\xd8\xa8\x61\x1f\x74\xa7\x16\x52\x58\xe0\x92\x95\xf7\x5c\ +\xb4\x3d\x54\x9b\x0d\xf7\x01\xd6\xb5\xc9\xe8\xdd\x20\xef\x74\x73\ +\xf7\x3b\xa1\x42\x8b\x4b\xb3\x5a\xf8\x35\x8d\x4b\xd8\x07\x2d\x8b\ +\x30\xff\xac\xf6\x12\xff\x4c\xbf\x16\xe1\x8e\xd6\x97\x6e\xe9\x98\ +\x7b\x65\x1e\xaf\xdf\xe3\x1b\xa4\x1e\x4b\x38\x92\x13\x87\xc1\x77\ +\x82\x88\x25\x89\x14\xf4\xba\xad\xee\x83\xcf\xc1\x9e\xc1\x22\x82\ +\xa1\x8e\x7c\x3e\x78\xab\xb0\x89\x65\x3b\x36\xed\xc6\x1b\x0d\xea\ +\x46\x83\xba\x39\xc4\x71\x66\x51\xc6\x31\xcc\xe8\x7c\x07\xb5\x91\ +\x3c\x4e\x3b\x8c\xde\x90\x76\xf8\xad\x5c\xf3\x9c\x28\x2e\x35\x67\ +\xf8\xf9\xa2\xb8\x14\xcc\x44\x26\x3a\x4a\x14\x29\x84\xc9\x4d\x7b\ +\x10\xf9\x83\x98\x22\x81\x1d\x1f\x6d\x11\xe8\xf6\x04\xb6\x48\x21\ +\x4d\x5b\xf3\x74\x1d\xfe\x83\x3d\x52\xdb\xf1\xa3\xe9\xde\x1e\x5f\ +\x1b\xcd\xa9\x6d\x1f\xb5\x16\x0c\xe1\x7c\x4b\x45\x91\xe7\xa1\x97\ +\x58\x8a\xca\x21\x8f\x3c\x62\xa5\xc8\x8b\x22\xf2\xfd\xac\x54\xf1\ +\xea\x34\x56\xbd\x35\xa7\xde\x8a\x51\xe7\x04\x21\x07\xfd\xc4\x5b\ +\x49\x8e\xd8\xde\x95\x6a\x17\x8d\x69\xe2\xf9\x8f\x5b\x6b\xc4\xed\ +\x11\x0e\x35\x04\xe0\x88\x9f\xb0\x50\x81\xd6\x50\xd8\x01\x3b\x1c\ +\xa4\xc9\xc0\xc0\x0e\x91\xf2\xe5\x33\xc3\xc3\x33\x23\x97\x73\x5e\ +\x86\x61\x51\xa0\xc7\xdd\x97\x51\x13\x9b\xf4\x2d\x1d\x98\x71\x18\ +\x99\x7c\x2b\x17\x1e\xde\xbe\x9e\xb6\xa9\x54\x7b\x3a\x8c\x99\xc5\ +\x85\x64\xfd\xed\x1f\xb2\xa4\x43\x90\xd3\x2d\x11\xb0\xd1\x83\x1d\ +\xa1\x46\x3a\x7f\xa8\xae\x3f\x58\x57\x99\xc6\x8b\x67\x79\x40\x8e\ +\xc1\x85\x39\x17\xe2\xb0\x95\x3e\x22\xf5\xbc\x6c\x7b\xa7\x9a\x97\ +\x87\x9b\x77\x3c\xf5\x6c\x81\x60\xa1\xfa\x9c\x67\x08\xd4\xa6\x50\ +\x03\xaa\x8f\xc9\x85\x80\x12\xca\xd6\xb6\x1e\x85\x0f\x22\x65\xf7\ +\x90\xda\xad\x7c\x04\xaa\xa3\x9e\x05\xb6\xb4\x8f\xe4\x83\xaf\x84\ +\xca\x3e\x92\x01\x7e\x3f\xa8\x4e\x8d\x42\x18\xd8\xba\x97\xd3\xa7\ +\x66\x2a\x87\x46\x8c\xda\x11\x0f\x59\x48\x08\x76\x4e\xec\x7e\x17\ +\x49\xf5\xbc\xc8\x60\xc3\xdd\x8b\x97\x05\x27\x60\xa8\x14\x16\xe4\ +\x7e\x8c\xf7\x18\x4e\xb9\x05\xb9\xa5\x83\xfb\xa9\x28\xa5\x96\x03\ +\x5d\x69\xdb\x55\x7f\x50\xd7\x1f\xd4\xdd\x9f\x37\x23\x50\x45\xcc\ +\x21\x8e\x5d\x25\xd0\x30\x57\x86\x31\x25\x37\x26\x27\x16\x24\xf0\ +\x84\x39\x37\xa6\x0d\x99\x34\xa5\x98\xcb\xeb\x9d\x06\x0f\x3b\xec\ +\x6e\xce\xcf\x18\xef\x9c\xef\xc0\xe1\x01\xe1\x9a\x37\xee\x3b\x84\ +\x38\x7b\xff\xa2\x5a\x3d\x83\x28\x9e\x7a\x2e\xc4\x53\x22\x0e\xb8\ +\xfb\x40\xe7\xd3\xea\x73\x21\x96\x12\xf1\xc2\xf3\x1f\x75\xb0\x61\ +\x5b\x36\xc7\x36\xa6\x7d\x92\x82\x50\x60\x22\x79\x8f\xa4\xd2\x92\ +\x84\x31\xbc\xc5\xd1\x1d\x55\x7f\x48\xf5\x30\x45\x25\xb1\x35\x8a\ +\x52\x62\x0b\xfb\xc6\x64\xd2\x82\x60\x2e\x9c\x8a\xa2\xd8\x12\x92\ +\x63\x7a\x11\x8a\xb2\x93\x28\x2a\xbe\x0b\x45\xc5\x39\x14\xf5\xa8\ +\x7a\x2e\x45\x51\xfb\x3c\x8a\x32\x5f\x3d\x97\xa2\xa8\x7d\xc9\xb3\ +\x22\xe6\x30\x7b\x17\x9c\x9f\x25\x4d\x63\xc8\xe1\x67\x90\x08\x21\ +\x3e\xdd\x59\x8f\x4f\x4d\xd4\xa0\x2f\xfb\x2c\xd6\xf8\x38\xa4\x91\ +\x7d\x42\x6f\x43\xc9\x13\x53\xbb\xb4\xcb\xd1\x84\x23\xf2\x03\xd2\ +\xe4\x2c\x03\xd8\xe2\xc7\x33\xc0\x1e\x3f\x79\xc5\x6f\x19\xb0\x0f\ +\xb2\x47\x07\x1c\x8e\xf0\x6e\x79\x5c\x63\x58\xf3\x1c\x66\x61\x6e\ +\x6b\x39\xe1\x33\x48\xb1\xe4\x16\xa6\x48\x5b\x5d\xc8\x64\xc4\x28\ +\x83\x3d\x9c\x1e\xaf\x9e\x41\x8a\x19\xb2\x08\xb1\x69\x37\xfb\xd7\ +\xfe\x40\x02\xab\x28\x23\x14\x4b\x22\xea\x5f\x4a\xda\x57\x02\x2b\ +\x34\xb1\x39\xec\xf4\xd4\xa2\x2c\x60\x2e\xe2\xfa\x05\x41\x47\x99\ +\xe8\xf4\x30\x40\x42\x49\xd0\x29\x61\x60\x30\xe8\xc0\xb6\xf4\xac\ +\xa0\xc3\x49\x14\x0d\x9c\xd8\x9e\x18\x74\x08\x7f\xe1\x4f\x8c\xc3\ +\x48\xee\x41\x7d\x90\x20\x83\x5c\xba\x18\xc8\xe7\x6f\x95\xb6\xcf\ +\x03\xa5\x7d\xbe\xfb\x1c\xdd\x2b\x9d\x13\xc0\x30\x3b\xe1\x92\xc5\ +\x1f\x2a\x80\xdd\x8d\xd5\x8d\xa4\xea\x5b\x5b\x41\x5d\x69\x0a\x9e\ +\xe2\x70\x75\xd5\x1a\x61\xea\xb5\xd0\x2c\xbc\x59\x58\x11\x1d\x0c\ +\xbf\x49\xae\xeb\x82\x69\x96\x07\x61\xde\x14\x89\xea\xd3\x2b\xaa\ +\x7d\x61\x73\x55\xef\x6a\xcb\x88\xd0\x6a\x5b\x8e\x86\xcb\x8b\x07\ +\x2f\xc8\x56\x93\x11\xd9\x2e\xfc\x96\x65\x73\xb5\xf5\x97\xd2\x01\ +\x8e\xd0\xed\x62\x95\x01\x60\x64\x61\xd8\xc7\x3b\xbb\x85\x6a\x3c\ +\xc2\x22\x88\x89\x36\x35\xee\x0a\x97\x79\x0e\x8c\x32\x13\xef\x39\ +\x84\x49\x55\x7f\x1a\x0b\x17\x0f\xd9\x6a\x96\x2b\xe3\x94\xf9\x32\ +\xdc\xae\x19\x64\xfe\x52\x5d\x03\x34\x97\x1b\x96\xd7\x97\xcf\x34\ +\x0d\x55\xd7\x9c\x4e\xb3\xf5\x70\x03\xab\x38\x85\xc9\x9a\xf5\x75\ +\x36\xc8\x68\x76\x4c\x52\x6b\x34\x17\xdc\x6c\x2e\xf7\x68\xac\xbb\ +\xb8\xb6\x5d\xa4\x26\xef\xec\x29\x9b\x7b\xeb\x78\x1e\x7f\x0b\x83\ +\xee\xf0\xe8\x6e\x1e\x96\x5e\xe0\x95\x5e\xc7\x8c\x46\x42\x05\x6e\ +\x22\xf2\x5d\x1e\x44\xee\xbf\x3e\x7c\x6c\x23\xa6\xef\xbb\xff\xce\ +\xf2\xc7\x2e\xd8\x29\x05\x6f\x9a\x2d\x61\xd8\x6d\x14\x57\x57\xe5\ +\x7c\x57\x05\x18\xaf\xbc\x8f\xe7\x80\xb7\xba\x88\xf8\xd7\xf5\x3c\ +\x01\x8e\xb6\x05\x3d\x65\xc5\xec\xae\xd1\x4d\xb3\x79\xb8\xb9\x68\ +\x38\x78\x37\x33\xf0\xe7\xb1\xaa\x34\xfe\x5c\xc6\x49\xf2\x9b\xea\ +\x44\x8b\xec\x75\xa3\x71\x99\x84\xf7\x55\x9f\x9b\xaf\xcd\x2c\xc6\ +\xf5\x34\xda\x63\xac\x6e\x96\x77\xe3\xc6\x0c\xd5\xdb\xac\x33\x4f\ +\x8f\x32\xad\x85\x13\x6f\x1a\x26\x93\xd1\x27\x55\x68\xec\x94\xce\ +\xd4\x05\xc2\x79\x16\x84\x75\xf5\xc6\xac\xfa\x1d\xbc\xe6\xc2\x5e\ +\xf3\x83\x80\x25\x6e\xdb\x0d\x76\x95\x11\xa9\xfb\x73\xbd\x17\x6d\ +\x29\xda\x7b\xb7\x4e\xdd\x99\xeb\x5f\xac\x23\xf5\xa5\xba\x4d\x51\ +\x75\x2d\x30\x4e\x54\x2b\xf5\x0d\xc1\xdb\x20\x2e\x16\x30\x4a\x37\ +\x4e\x55\x14\xbe\xdd\xbe\x41\x78\x1b\xa6\x1e\xfc\x31\xa7\x9e\xff\ +\xa8\xe6\x95\x06\xae\xe7\x83\x6b\x2c\xd5\xa5\xbb\x36\x56\x29\x1e\ +\x19\x8e\x25\x29\xec\xef\x61\xc9\xe0\xd2\x46\xdc\x40\x37\x8e\x05\ +\x4b\x87\x41\x09\xb8\x2e\xbf\x41\x20\x30\x37\x12\xb3\x15\x7d\x33\ +\xe6\x06\x66\x37\x04\x5b\x12\xc3\x43\x4e\xae\x04\x99\x3d\xb3\x38\ +\x53\xcf\x69\x75\xfa\x39\x3c\xac\x07\xb0\x50\xeb\xbf\x1a\x76\xd1\ +\x13\x80\x53\x1c\x03\xa7\xf7\xfb\x9f\x6e\xcd\x51\xf5\xb7\x90\x1c\ +\x42\x4f\x10\x8f\x41\xae\x74\x2a\x7a\x83\x37\x23\x49\xf3\xaa\xe0\ +\x01\x7a\xb9\xd3\x65\x59\xea\xb2\xff\x65\x71\xea\x56\xc8\x34\x52\ +\xf0\x91\x30\x4f\xc0\xf7\x4b\x97\x35\xb2\xae\xfb\x5a\x10\x78\x10\ +\x8e\xf3\x1c\x90\xd7\x49\xa3\xa4\x9b\xdd\x8d\x8b\xde\x84\x39\x3a\ +\x1a\xad\xb0\x0e\x9a\x0a\x3c\x46\xa4\x76\x2c\xdf\xc4\x4a\x40\xb7\ +\x2a\xe8\xd2\x11\x75\x32\xaf\x8e\x23\x19\x62\xdd\xe6\x1a\xa2\x23\ +\x03\x66\xd9\x52\x6a\xb7\x6f\xd6\xfa\x2e\x31\x7f\xd6\x4f\xd6\xff\ +\xc4\xf5\xbb\xe0\x6a\x62\xcd\xcf\x5e\x88\x2d\xb2\xa4\x20\x84\x70\ +\x1d\x5b\x22\x2c\x5b\xda\x8e\x76\x46\x7c\x09\x70\xeb\x1f\x1c\xfe\ +\x04\xf7\x74\x70\x4d\xf6\x4a\x78\xc5\x06\x5d\x26\x7a\xae\xbb\x41\ +\x17\xf3\xd3\xe0\x1d\x58\x5d\x2b\x40\x35\x4b\xbd\x06\xac\x0a\x9f\ +\x57\x80\xd5\x5f\x2b\x31\xb6\x08\x76\xa8\x50\xab\x18\xec\x5b\x91\ +\x84\x35\x8b\xaa\x50\x85\x30\x24\x1c\x8e\xa5\x2c\x84\x6f\xfa\x17\ +\xff\xd5\x04\x39\x72\xe4\xb1\x25\xeb\x0f\x6a\x92\x2a\x7c\x23\xdb\ +\x51\x76\x70\x28\x58\xc4\xdc\x50\x45\x0c\x99\x01\xa3\xb3\x1d\x7b\ +\x6b\xd2\x54\x04\x4e\x7f\xd2\x03\xc3\xfe\x8e\xce\x74\xc8\x6e\x9d\ +\x99\xe4\x0d\x1b\xf4\xf2\x93\xe1\xd9\xf1\x59\x8a\x28\xd9\xf6\x56\ +\xc6\x21\xd9\x45\x48\xec\x7a\x2b\x95\xe0\x84\x4c\x68\x3e\xa8\x72\ +\x31\x6e\x09\x04\xb9\x18\xeb\x05\x63\x95\x30\x33\x47\xf0\x36\x31\ +\x9d\xdd\x5f\xdd\xa9\x14\xe0\xfe\xea\xff\xa1\x50\x07\xd9\ +\x00\x00\x07\xe1\ +\x00\ +\x00\x28\x8e\x78\x9c\xe5\x5a\x5b\x8f\xdb\xba\x11\x7e\xdf\x5f\xe1\ +\x3a\x2f\x09\x1a\xc9\xbc\x89\x94\xb4\xf6\x9e\x87\xa6\x29\x0e\x50\ +\xa0\x40\x4f\x82\x3e\x1e\xd0\x12\xe5\x55\x57\x96\x5c\x4a\x5e\xdb\ +\xf9\xf5\x1d\xca\xba\xda\x5a\x5f\x36\xce\x3e\x24\x16\x12\x5b\x9c\ +\x21\x67\x38\xf3\xcd\x70\x46\xab\xe9\x6f\xdb\x65\x32\x7a\x56\x3a\ +\x8f\xb3\x74\x36\xc6\x36\x1a\x8f\x54\x1a\x64\x61\x9c\x2e\x66\xe3\ +\xaf\x5f\x3e\x5b\xee\x78\x94\x17\x32\x0d\x65\x92\xa5\x6a\x36\x4e\ +\xb3\xf1\x6f\x0f\x77\xd3\xbf\x58\xd6\xe8\x6f\x5a\xc9\x42\x85\xa3\ +\x4d\x5c\x3c\x8e\x7e\x4f\x9f\xf2\x40\xae\xd4\xe8\xfd\x63\x51\xac\ +\xfc\xc9\x64\xb3\xd9\xd8\x71\x35\x68\x67\x7a\x31\xf9\x30\xb2\xac\ +\x87\xbb\xbb\x69\xfe\xbc\xb8\x1b\x8d\x46\x20\x37\xcd\xfd\x30\x98\ +\x8d\xab\x09\xab\xb5\x4e\x4a\xc6\x30\x98\xa8\x44\x2d\x55\x5a\xe4\ +\x13\x6c\xe3\xc9\xb8\x65\x0f\x5a\xf6\xc0\x48\x8f\x9f\x55\x90\x2d\ +\x97\x59\x9a\x97\x33\xd3\xfc\x5d\x87\x59\x87\x51\xc3\x6d\xb4\xd9\ +\xd0\x92\x09\x7b\x9e\x37\x41\x64\x42\x88\x05\x1c\x56\xbe\x4b\x0b\ +\xb9\xb5\xfa\x53\x41\xc7\xa1\xa9\x04\x21\x34\x01\x5a\xcb\x79\x19\ +\x97\xbf\x4d\xc0\x14\x2f\x2a\x53\x52\xbb\xd2\xc1\xfc\x2b\xf8\xd7\ +\x4c\xa8\x07\xec\x3c\x5b\xeb\x40\x45\x30\x53\xd9\xa9\x2a\x26\x9f\ +\xbe\x7c\x6a\x88\x16\xb2\xc3\x22\xec\x2c\x53\x5b\xbf\x27\xb7\xe7\ +\x92\x54\x2e\x55\xbe\x92\x81\xca\x27\xf5\x78\x39\x7f\x13\x87\xc5\ +\xe3\x6c\xcc\xd9\x6a\x5b\xde\x3f\xaa\x78\xf1\x58\x74\x06\xe2\x70\ +\x36\x86\x1d\x52\x8e\x49\x79\xdf\x01\x10\xde\x33\x54\xcb\xf9\x0d\ +\x05\xd9\x4c\x8c\x34\x21\x8e\x4b\x4b\x8e\x5a\x6d\x3f\xcc\x02\xa3\ +\xc7\x6c\xfc\x49\xcb\xa8\xf8\xf3\xef\x61\x5c\xd8\xc6\x7a\x0f\xc0\ +\x35\x0d\x55\x94\x1b\xee\xbd\x48\x73\x07\x32\x59\x49\x03\x6a\x23\ +\x65\x05\x52\x56\x2a\x30\x78\xd8\x73\x77\xd6\x2f\x76\xc6\x04\x7d\ +\x56\xba\xb7\xd3\xa8\xa7\xe9\xea\xcf\x2d\xa8\x39\xf2\x47\x94\xc0\ +\x7f\x78\x90\x63\xb7\xe7\xc0\xe0\x62\xf8\x42\x83\x3c\xdf\x8c\xa1\ +\x4e\x2c\x53\x69\x60\x65\x3a\x5e\xc4\x60\x99\x92\x8f\x60\x9b\x96\ +\x9f\xfe\x1c\xd8\x74\x67\x6f\x94\x13\x88\xcf\xc9\x05\xbb\x3f\x9c\ +\xe8\xb8\xee\x79\x45\x90\xed\x98\x4d\x55\x8a\x1c\xaa\xd2\xdf\x21\ +\x2e\x39\x9d\xef\x32\x54\x65\xee\xc3\x65\xce\x79\xee\x55\x06\xe0\ +\x1e\xf9\xf9\x0c\x00\x79\x43\x49\xfd\x0f\x2d\xc3\x18\xb2\x65\x77\ +\xeb\x7d\x0a\xc5\x8c\x59\xbc\x8a\x1a\x98\x97\x17\xd9\xaa\xe6\xae\ +\x82\x19\x46\x80\x8b\x5b\xde\xb8\x25\xe4\xc5\x2e\x51\x7b\x9a\x15\ +\x64\x49\xa6\xfd\x77\x51\xf9\xb9\x2f\x87\x32\xc8\x1c\x71\xb1\xf3\ +\x71\x67\x4a\x16\x45\xb9\x82\x4c\xd1\xc2\xf4\x94\x38\xd7\x22\xd7\ +\x8b\x43\x03\xe2\x70\x6b\x93\x49\x7f\xeb\xd7\x5a\x4a\x20\x7c\xd6\ +\x4e\x02\xd1\xb7\xb3\x92\x40\xce\x1b\xd9\xc8\xdc\xc9\xe4\xc8\x46\ +\x35\xfa\x40\x5c\x02\xc1\x34\x1b\xcb\x64\x23\x77\x79\x23\xa1\x3c\ +\xbd\xfc\x47\xad\xe0\xb4\x7d\x37\x88\xbb\xae\xb9\xfb\x42\x28\xef\ +\xe4\xa5\x45\x35\xf8\x35\x8d\x0b\x38\x58\xd7\xb9\xd2\x7f\x98\xc3\ +\xe9\x5f\xe9\xd7\x5c\x1d\x71\x7d\xd1\x32\xcd\xe1\x24\x5c\xce\xc6\ +\x4b\x59\xe8\x78\xfb\x1e\x7f\x44\xe6\xb2\xb9\xe7\x3a\xc4\x63\xf0\ +\x9b\x20\x62\xbb\xc4\xe5\xf4\x43\x33\x3d\x80\x98\x83\x43\xc8\x26\ +\x9c\xa1\x16\x7c\x01\x44\x2b\x17\xc4\x16\x9e\xa0\xad\xbe\xd1\x20\ +\x6f\x34\xc8\xab\x21\x8f\x33\x9b\x32\x07\xc3\x8e\xae\x0f\x50\x81\ +\xdc\xf3\xb0\xc3\xe8\x0d\x61\x87\xdf\x2a\x34\xaf\xc9\xe2\x6e\x27\ +\x18\x7e\xbd\x2c\xee\x72\x66\x21\x0b\x9d\x05\x8a\xcb\xb9\xe5\x58\ +\x62\xd0\xf3\x27\x7d\x8a\x38\xf6\x02\x74\x00\xa0\xfb\x0b\xd0\xe2\ +\x72\xd7\x12\x9d\x48\xef\xba\xff\xa4\x44\x2a\xbc\x20\x9a\xbf\x28\ +\xf1\x7b\xb3\x39\x15\xe2\xac\xb5\x40\x85\xeb\x2d\x15\x45\x52\xa2\ +\xd7\x58\x8a\xba\x43\x11\x79\xc6\x4a\x91\x8c\x22\xf2\xe3\xac\x54\ +\xe2\xea\x32\x54\xbd\x35\xa6\xde\x0a\x51\xd7\x24\x21\x0f\xfd\xc2\ +\xa5\xa4\x83\xd8\x8b\x27\xd5\xb1\x37\xe6\x89\x0c\x9e\x0e\xce\x88\ +\xfb\x33\x18\xaa\x01\xe0\x20\xe7\x82\x83\x0a\xb8\x86\xd2\x0e\xd8\ +\xe1\x24\x4c\x06\x14\x3b\x05\xca\xd7\xef\x0c\x0f\xef\x8c\xdc\x2e\ +\x78\x19\x86\x43\x81\x9e\x0f\x5f\x46\x2d\x6c\xd1\xb7\x0c\x60\xe6\ +\x80\x66\xee\x5b\x85\xf0\x70\xf9\x7a\x59\x51\x69\x6a\x3a\x8c\x99\ +\xed\x70\x97\xf5\xcb\x3f\x64\xbb\x1e\x41\x5e\x7b\x44\x40\xa1\x07\ +\x15\x61\x07\x74\xc1\xd0\xdc\x60\x70\xae\x31\x8d\x8c\x17\x3a\x24\ +\xe7\xdc\x85\x1d\x87\xf3\xd3\x56\xfa\x8c\xcc\xf5\xba\xf2\xce\x2c\ +\xef\x9e\x5e\xde\x93\xe6\x3a\x70\x82\x8d\xf6\x9f\x41\xa4\xd7\xc4\ +\x8e\xa3\xfa\x3e\xb9\x91\xa3\xb8\xb1\xb5\xe8\x66\xe1\x93\x9e\x12\ +\x3d\x4f\x1d\x4f\x3e\xe3\xaa\xb3\x91\x05\xb6\x14\x67\xfa\xc1\xef\ +\x74\x95\x38\xd3\x01\xfe\x38\x57\x5d\x9a\x85\x30\xa0\xf5\x45\x4c\ +\x5f\xda\xa9\x9c\xd2\x18\x35\x1a\x0f\x59\x88\x73\x76\x4d\xee\x7e\ +\x17\xb9\xe6\x7a\x95\xc1\x86\xc5\xf3\xd7\x25\x27\x40\xa8\xcb\x6d\ +\xe8\xfd\x98\xd3\x43\x38\x75\x6c\xe8\x2d\x3d\xdc\x6f\x45\x29\xb5\ +\x3d\x10\xd5\x29\x57\x83\x41\xde\x60\x90\xf7\xe5\xbe\x19\x01\x2b\ +\x62\x1e\xf1\x44\xd9\x40\xc3\x5e\x19\xc6\x94\x7c\xb4\x1c\x62\x43\ +\x03\x4f\x98\xf7\xd1\x12\xd0\x49\x53\x8a\x1d\xf7\xc3\xd1\x82\xa7\ +\x03\xf6\xb8\xe7\x67\xcc\x69\x83\xef\xc4\xc3\x03\xe2\x74\xa2\xf1\ +\xa5\x87\x10\x57\xd7\x2f\x66\xd5\x2b\x80\x22\xcd\x75\x23\x9c\x12\ +\x7e\x22\xdc\x07\x84\xcf\xcb\xcf\x8d\x50\x4a\xf8\x2b\x9f\xff\x98\ +\x07\x1b\xc2\x16\x0e\x16\x98\xf6\x41\x0a\x83\x1c\x13\xd7\xe9\x81\ +\xd4\xb5\x5d\xc2\x18\x3e\xc0\xe8\x11\x6b\x30\xc4\x7a\x1a\xa2\x2e\ +\x11\x1d\x88\x52\x22\xb8\xf8\x68\x31\xd7\x86\x64\xce\xbd\x12\xa2\ +\xd8\xe6\xae\x83\xe9\x4d\x20\xca\x2e\x82\x28\xff\x21\x10\xe5\xd7\ +\x40\x54\x52\x73\xdd\x0a\xa2\xe2\x3a\x88\xb2\xc0\x5c\xb7\x82\xa8\ +\xb8\xe5\xb3\x22\xe6\x31\x71\xec\x9c\x9f\xb4\x4d\xfb\x8e\x67\xb4\ +\x0c\x79\xce\xf8\x65\x30\x32\x8f\x8a\x2b\xe3\xe9\x54\x18\x63\xc4\ +\x4c\xf9\x55\x3f\xaa\x6d\x6e\x19\x54\x60\x1e\x18\x8e\x7f\xb4\x28\ +\xb1\x3d\xc1\x69\xe7\xa4\xd9\xe2\xd9\xd8\x83\xe8\xc6\x6e\xa7\x12\ +\xda\x61\x53\x76\x7b\x50\xb8\x75\x06\xb7\x04\x06\x09\x17\xb0\x16\ +\x6f\x0f\x99\x1d\xe9\xb0\x5e\x1d\x8e\xa5\x81\x2e\x0f\x09\x84\x9c\ +\xf9\x51\x69\x73\x69\xcf\x0b\xb2\xc4\x55\x01\x18\x60\x45\x23\x71\ +\x81\xb4\xa1\x3e\x94\x99\x82\xf7\x76\x11\xe7\x20\xf2\xb3\x45\xdc\ +\x74\x62\xfe\xe4\x5c\xfe\x6a\x26\x98\x3f\x56\x87\xcf\xb1\xda\xdc\ +\x35\x46\x98\xcb\x06\xfe\x2b\xb9\x50\xa5\x6f\x20\xd0\xf6\x55\x6e\ +\x45\x98\x67\x3a\x54\xba\x26\xf1\xf2\xd3\x23\x55\xee\xdb\xbf\x84\ +\x71\x77\x60\x44\x58\xb5\xa1\xa3\x61\x7a\xfe\x28\xc3\x6c\x03\xbd\ +\xcc\x21\xf1\x5b\x96\x2d\x4d\x2b\xe4\x1c\x12\xca\x42\xf1\x88\xbd\ +\x3c\xb0\x8f\x47\xd7\x5a\x03\x2a\xac\x44\xee\x14\x6c\xa0\xfc\xaa\ +\xad\x99\x3f\x66\x9b\x85\x36\x86\x28\xf4\x5a\x1d\xce\x0c\xb3\x60\ +\x6d\x5e\xe6\xb0\xd6\xfb\xac\x51\xbd\x42\xd0\xe1\x30\x73\xad\xf9\ +\x3c\xdb\x0e\x2f\xb0\x89\x53\xd8\x98\x55\xbd\x94\x00\x65\xc4\xd1\ +\xf6\x2b\x8e\xfa\x35\x05\xe1\xb8\x2f\x70\x6c\xdb\xb0\x3b\x24\x19\ +\xc3\x7b\x2f\xd0\x96\x72\x1b\x2f\xe3\x6f\x2a\x6c\x3b\xb6\xe9\x52\ +\x15\x32\x94\x85\x6c\x51\x50\x8f\x50\x8e\xeb\xa7\xce\x53\x1d\x46\ +\xfe\xbf\x3f\x7d\x6e\x02\x3a\x08\xfc\xff\x64\xfa\xa9\x8d\x45\xc3\ +\x20\xe7\xd9\x1a\xd4\x6e\x92\x8c\x79\xef\x21\xf0\x4d\xe6\x94\xc5\ +\x43\xbc\x04\xdf\x9a\xd7\x49\xfe\xba\x5d\x26\x80\xc7\x86\xd0\x63\ +\x36\x28\x6e\x17\xdd\x2f\xab\xd5\xfe\x75\x91\xc1\x37\x6c\xc2\x60\ +\x19\x9b\x49\x93\x3f\x8a\x38\x49\x7e\x37\x42\x3a\x89\xa7\x5a\x34\ +\x2e\x12\xf5\x50\xca\xdc\xff\xac\x77\x31\xa9\xb6\xd1\xf4\x8e\xed\ +\x2e\xa7\x93\xda\x0c\xe5\xdd\xa2\x35\x4f\x0f\x32\x8d\x85\x13\x39\ +\x57\xc9\x6c\xfc\x4f\x43\x1c\x1d\x51\x17\x3a\x5b\xaf\x96\x59\xa8\ +\xaa\xe9\xb5\x59\x17\xb5\x9e\x45\x7b\xc6\x94\x3f\x13\x59\xa8\xf7\ +\x16\x63\xdc\x76\x11\x83\xfa\x10\x8e\x02\x57\x40\xed\xc8\xdb\xd3\ +\xc4\xe8\xb2\x70\x10\xee\x24\x75\x0d\x09\xac\xb5\x1e\x20\xc1\xc3\ +\xb6\x47\x1d\x93\x8c\xdb\x61\xc0\x0e\x13\x90\xb7\x3c\x86\xbb\xed\ +\x7e\x0d\x3a\xca\xa0\x91\x13\x94\x74\x7b\xf5\x0a\xb2\xe6\x0f\x83\ +\xc2\xa1\xc8\x3b\xc8\xc1\x46\x2c\xe4\x60\xd6\x19\xae\x52\x7c\x73\ +\x96\x94\x75\x54\x04\x1e\x2a\x6f\x4c\xcf\x6c\x6e\x3a\xa9\xbe\xbc\ +\xd5\xeb\x44\xf9\x69\x96\x7e\x83\x2c\x02\x67\x81\xce\x9e\x54\x33\ +\x79\x7f\xbb\x8f\x1e\x9f\xd5\xb7\x26\xd7\x83\x85\xfd\xfc\x7f\x6b\ +\xa9\x55\x77\xf4\xbf\x59\x9c\xfa\x80\x0d\xa5\xeb\xd1\xf2\x26\x81\ +\x00\x28\xda\xf9\xad\x02\xd5\x40\x28\x21\xff\x68\x2d\x77\x46\x0f\ +\xd5\x1d\xdd\x9f\x40\x3e\xba\x5f\x4a\xfd\xa4\xf4\x9e\xfe\x1c\xe7\ +\xf1\x3c\x4e\xcc\x12\xe5\xcf\x44\xdd\x87\x71\xbe\x02\x27\xfb\x71\ +\x6a\xd4\xb8\xcf\x9e\x95\x8e\x92\x6c\xd3\xd0\x55\x2a\xe1\xcb\x9a\ +\xcb\xe0\xc9\xc0\x22\x0d\x7d\x19\x40\x66\x59\x1b\x97\x77\xcf\xcc\ +\x23\x67\x0a\x6a\xbb\xd0\xc6\x12\x7a\xe0\x4c\x68\x6f\x19\x14\x1a\ +\xe4\xb6\xce\x1c\x7a\x83\x62\xc0\x9d\x1d\x2b\xfd\xa2\xae\x9a\x4e\ +\x16\xfb\x84\x01\x5f\x53\x93\xe0\x1e\xee\xfe\x0f\xea\x16\x2b\x89\ +\ +\x00\x00\x0a\xb0\ +\x00\ +\x00\x39\x7d\x78\x9c\xed\x5a\xdb\x8e\xdb\x46\x12\x7d\xf7\x57\x70\ +\xe5\x97\x0c\x56\xa2\xfa\x7e\xd1\xcc\x38\x58\x38\xc8\x22\x80\x17\ +\x0b\x6c\x1c\xec\x63\xc0\x91\x38\x1a\xae\x25\x51\xa0\xa8\xb9\xf8\ +\xeb\xf7\x54\xf3\x22\x52\xe2\xd8\xe3\x24\x58\x6f\x0c\x69\x90\x88\ +\xac\xae\xee\xae\xae\x3a\x75\xba\xba\xe5\xab\xef\x1f\xd7\xab\xe8\ +\x3e\x2d\x76\x59\xbe\xb9\x1e\xf1\x98\x8d\xa2\x74\x33\xcf\x17\xd9\ +\x66\x79\x3d\xfa\xe5\xfd\x8f\x13\x37\x8a\x76\x65\xb2\x59\x24\xab\ +\x7c\x93\x5e\x8f\x36\xf9\xe8\xfb\x37\xaf\xae\xfe\x32\x99\x44\x6f\ +\x8b\x34\x29\xd3\x45\xf4\x90\x95\x77\xd1\x4f\x9b\x0f\xbb\x79\xb2\ +\x4d\xa3\xef\xee\xca\x72\x3b\x9b\x4e\x1f\x1e\x1e\xe2\xac\x16\xc6\ +\x79\xb1\x9c\x5e\x44\x93\x09\x7a\xee\xee\x97\xaf\xa2\x28\xc2\xb4\ +\x9b\xdd\x6c\x31\xbf\x1e\xd5\xfa\xdb\x7d\xb1\x0a\x7a\x8b\xf9\x34\ +\x5d\xa5\xeb\x74\x53\xee\xa6\x3c\xe6\xd3\xd1\x41\x7d\x7e\x50\x9f\ +\xd3\xe4\xd9\x7d\x3a\xcf\xd7\xeb\x7c\xb3\x0b\x3d\x37\xbb\xd7\x1d\ +\xe5\x62\x71\xdb\x6a\x93\x31\x0f\x32\x28\x71\xef\xfd\x94\x89\xa9\ +\x10\x13\x68\x4c\x76\x4f\x9b\x32\x79\x9c\xf4\xbb\xc2\xc6\xa1\xae\ +\x82\x31\x36\x45\xdb\x41\xf3\x65\x5a\xb3\xc7\x15\x3c\xf1\xac\x31\ +\xa1\xb5\x3b\x3b\xbc\xbf\xc5\x7f\x6d\x87\x46\x10\xef\xf2\x7d\x31\ +\x4f\x6f\xd1\x33\x8d\x37\x69\x39\xfd\xe1\xfd\x0f\x6d\xe3\x84\xc5\ +\x8b\x72\xd1\x19\xa6\x71\x7e\x6f\xde\x5e\x44\x36\xc9\x3a\xdd\x6d\ +\x93\x79\xba\x9b\x36\xf2\xd0\xff\x21\x5b\x94\x77\xd7\x23\xa3\xb6\ +\x8f\xe1\xfd\x2e\xcd\x96\x77\x65\x47\x90\x2d\xae\x47\x58\xa1\xb0\ +\x56\x84\xf7\xc6\x86\x59\x0b\x24\x16\xcb\xaa\xa9\x19\xb8\xdb\xa4\ +\x4c\xbf\xd7\x22\x9f\x93\x29\xd7\xa3\x6d\xbe\x7a\x82\x33\xd2\xb8\ +\x71\x5f\xdb\x3b\xdf\x97\xdb\x7d\xf9\x6b\xfa\x58\xa6\x9b\x6a\x18\ +\x2c\xa0\xb3\x9a\xd0\x4c\xdd\x5a\xd9\xe8\x0d\x06\xb8\x5a\xa4\xb7\ +\x3b\x1a\xa8\xb2\x99\xde\x60\xb4\x0a\x6d\x68\x2d\x92\x45\x96\xac\ +\xfe\x4e\x5f\x80\x5b\xa5\xd7\x99\x74\x9e\xaf\x56\xe9\x1c\x0b\x4f\ +\x56\x0f\xc9\xd3\x6e\xd4\x28\x84\x80\xcd\xee\x8a\x14\x00\x7b\x4d\ +\xf6\x26\x45\x33\x86\xe4\x4a\xb5\x7a\x34\x65\x7f\x0a\x21\x38\x6b\ +\x9b\x97\xb5\xf0\x97\x4d\x56\x02\x49\xfb\x5d\x5a\xfc\x4c\xd1\xf8\ +\xe7\xe6\x97\x5d\x7a\xa2\xf5\xbe\x48\x36\x3b\x84\x7e\x7d\x3d\x5a\ +\x27\x65\x91\x3d\x7e\xc7\xc7\x8c\xfe\x62\xe3\x9d\x16\x5e\xe1\x59\ +\x30\x11\x3b\xe1\x8c\xbc\x68\xbb\xcf\x1f\xaf\x47\x42\xe8\x58\x18\ +\xc5\xc4\x41\xfa\x84\x68\x5a\x11\x5b\x6f\xa5\x69\xa5\xb7\x83\xba\ +\xb7\x83\xba\xc5\xf5\x48\xaa\x58\x2a\xcd\x1d\x18\x62\xfa\xf5\x1c\ +\xda\xb1\xf4\xec\xd0\x3f\xc0\xa1\xdc\xab\x6f\xd9\xa1\x7d\x67\xbc\ +\xd8\xa1\xe4\xa8\x01\x3f\xbe\xa9\xdb\xaf\x76\x65\xbe\x6d\x74\xc1\ +\x6c\xe5\xd3\x0a\x74\x46\xc2\x09\x46\xcc\x8b\xd9\xeb\xdb\xf0\xb9\ +\x0c\xa2\x1c\x3e\xcc\xca\xa7\x19\xbf\x1c\x1d\xfa\xe4\xb7\xb7\xbb\ +\x14\x13\xb3\x8e\x2c\xf0\x2c\x7a\x60\x2e\xd3\x2e\xe1\xb7\xce\xc6\ +\x86\x66\xe3\xc3\xb3\x75\x1c\x36\xed\x2f\xfb\x2b\xe2\xf2\x9b\x4e\ +\xf4\xd6\x75\x5b\xec\x93\x5b\xf8\x0e\xb5\x4d\xd3\xa3\xdd\x28\xcb\ +\x27\xda\xce\xfb\xaa\x72\x31\x3a\x71\xff\xfd\xf6\x57\x18\xc4\xa2\ +\x59\x24\x05\xfe\xc7\x07\x35\x9e\x2a\x0d\x8e\x72\x05\x5f\x6c\x50\ +\xe7\x23\x6d\xfa\x9f\x18\xa6\xb6\x60\x92\x17\xd9\x32\xc3\xa6\x1c\ +\xf4\x04\x8f\x65\xf8\xf4\xfb\x20\xa4\x9d\xb5\x09\xeb\xd8\x57\xa4\ +\x39\x29\x8c\xfc\x96\xe1\xf4\x35\x1c\xaa\xcf\x0e\xfd\x63\x1d\x6a\ +\xcf\x0e\xfd\x63\x1d\xea\xbf\x59\x87\x5e\x4d\xe9\x6c\x13\x9e\xda\ +\xdd\x82\xce\x54\x8b\xfb\x2c\x7d\x38\x1c\x80\x6e\x92\x76\x75\xdb\ +\x64\x99\x86\x6a\x01\x7e\xac\xca\x85\xba\xe1\x26\x2f\x16\x69\xd1\ +\x34\x99\xf0\xe9\x35\xd5\x05\x45\x75\x5b\xf0\xaa\x1f\x36\x1a\xb5\ +\x6d\x67\xc3\xed\xbb\xbb\x64\x91\x3f\x60\xb9\xc7\x8d\x1f\xf3\x1c\ +\x1e\xc6\x6a\xf5\x71\x0b\x79\x92\x8b\x58\x30\xa3\x84\x3b\x69\xc4\ +\x54\x52\xc7\x5c\x7b\xad\xe4\x49\xe3\xbe\x28\x10\xc1\xc9\x2a\x79\ +\x4a\xb1\x9e\xf0\xd5\x6c\x4a\xbb\xbb\xfc\x61\x59\x90\x5f\xca\x62\ +\x9f\x1e\xf7\xc4\xa9\x74\x4f\xb7\x10\x93\x7d\x85\x91\xfa\xec\xdb\ +\xd1\xa0\xbe\x93\x9b\x9b\xfc\x71\x78\x80\x87\x6c\x83\x75\x4e\xea\ +\xd3\x34\x67\xea\x64\x59\xb5\x46\x73\xbe\xb6\xe2\xc4\x25\xb5\xc6\ +\xe3\xa1\x2e\x3c\x6e\xc2\xe2\x85\x6e\x50\xb0\x4e\xcb\x64\x91\x94\ +\xc9\x21\xe2\x8d\x04\xc7\x5e\xdb\x1e\x7b\x17\xb7\xb3\x7f\xfd\xf0\ +\x63\x5b\x4e\xce\xe7\xb3\x7f\xe7\xc5\x87\x43\x25\x48\x0a\xc9\x0d\ +\x0e\xd5\xd7\xa3\xb6\xc4\xa5\xc3\xf4\x7c\x46\x49\x90\x94\x6f\xb2\ +\x35\xe2\x48\x97\x1c\x7f\x7d\x5c\xaf\x80\xbd\xb6\xa1\xa7\x4c\xe5\ +\xca\x61\xd0\x6a\xd8\x22\xad\x2e\x31\x06\xef\x7d\x16\xf3\x75\x46\ +\x9d\xa6\x3f\x97\xd9\x6a\xf5\x13\x4d\xd2\x2d\x7b\xa7\xb5\xa1\x4d\ +\x65\xda\x59\xc7\xd5\xb4\x59\x68\x78\x5b\x1e\x1c\xd0\x8b\x78\xeb\ +\xbc\x55\x72\x93\xae\xae\x47\xef\xa8\x31\x3a\x69\x5d\x16\xf9\x7e\ +\xbb\xce\x17\x69\xdd\xbd\x71\xdc\xb2\xcb\x2e\x4b\x29\x3a\x7c\x53\ +\x9e\x50\x04\x8b\xbd\x60\x5a\x4b\x5f\x53\x45\xf3\xc6\x63\xae\xbc\ +\x35\x82\x93\xcc\x68\x21\xb8\xba\x38\x1c\x24\xb6\x49\x79\xd7\x2f\ +\xc9\x0b\xd0\xa0\x50\xec\x30\x55\x14\x41\xfa\x8f\x48\xbb\xd8\x2b\ +\xc3\x84\x1c\xeb\x58\x71\x65\xad\xb0\xd1\xdb\x48\xab\xd8\x00\x6a\ +\xce\x77\xa4\x1a\x89\x6a\x39\x69\xa2\x8b\x56\x42\xba\x8e\x88\xcb\ +\x58\x38\x6f\xad\xa4\xce\x07\xa9\x46\x16\x4a\xc7\xa0\x89\xb4\x03\ +\xb3\x32\x3b\xe6\x16\x13\x4a\x6e\x0c\x4d\xc2\x18\x88\x0f\x7a\x3e\ +\x96\x4e\xe2\x29\x7a\x17\x29\xf4\x11\xf8\x93\x63\x25\x63\xac\xb4\ +\x1a\x53\xa9\x98\xac\x30\x41\x88\xd1\x9d\x88\xf0\x24\xf0\xa0\x83\ +\xcc\x3a\xa5\xa5\x8e\x94\x88\xb9\x0f\xab\x41\x87\xda\xa0\x77\x91\ +\x94\xb1\x91\x34\xfc\x18\x4f\xd5\x94\x18\x12\xe4\x27\x14\xb8\x0f\ +\x52\x0e\x93\xac\xc7\x82\x24\xad\x5b\x70\x0d\x19\x83\x19\x4c\x28\ +\x11\x64\x06\x93\xcb\xb1\xf0\x95\x33\xea\xde\x4e\xa2\x8b\x19\x83\ +\x6e\x99\x13\x56\x9b\x08\xe3\x28\xa3\xb5\xe2\x63\x14\xaf\x4a\x4a\ +\x0e\x8b\x84\x8d\x79\x35\x37\x64\x42\xd7\x73\x0b\xb0\x3c\xe3\x9a\ +\x19\x92\x32\x0c\xc4\x23\xf8\x80\x13\x15\xdb\xb1\xc0\x5a\xb5\xa5\ +\x01\x39\x3c\x6d\x83\x2f\x84\xc3\x12\x6b\x5f\x40\xea\xbc\x10\x82\ +\x6c\x74\xde\x3b\xab\xa9\xb3\xc1\xd4\x98\x59\x62\x64\x0d\x1b\x22\ +\xc1\x9a\xc0\x12\xcb\x0b\x8a\x07\x5c\xc1\xb1\x98\xda\x41\xe0\x3a\ +\x53\x2f\x86\xd3\x3e\xc0\x3d\xf3\x41\xca\x8c\xf1\x9e\x64\x0c\x7a\ +\xca\x92\x8c\xa0\x10\xf1\xd6\x8d\x24\x69\x22\xe3\x63\xe1\xbd\xe4\ +\xda\x92\xcb\xbd\x14\x9a\xeb\x48\xc7\xc6\x62\x17\x43\xb4\x95\x8b\ +\xa5\xe1\x8e\x23\xda\xb1\x26\x50\x08\x3b\x06\x16\x2a\x1b\x08\x2b\ +\xf0\x98\xb4\xb0\x63\xac\x2d\xc6\x24\x21\xad\x4e\x32\x83\x01\x0d\ +\x76\x46\xcd\x51\x12\xd2\xd4\xa2\x02\x05\x64\xb6\xf1\x22\xa0\xa4\ +\x0d\x8e\x99\x24\x74\xe8\xe0\x38\x9d\x1a\x80\x0d\xcd\x0d\x8d\xa7\ +\xa4\x51\x8e\x44\x15\x12\xc6\x5a\xc6\xc1\x82\x10\x01\x1c\x2f\x94\ +\x32\x62\xac\xd1\xd7\x69\x6f\x04\x79\x0c\x9b\xa1\x41\x5f\x58\xed\ +\x94\xc3\x61\x91\x1c\x5b\x63\x54\xd9\x03\x46\x11\xf2\x3a\xa8\xd2\ +\x1c\xcc\x81\x54\x3b\xae\x01\x52\x48\x9d\xb6\xca\xd9\x48\x18\xac\ +\x0a\xa0\x09\x32\x8f\xda\x81\x09\x92\xe9\x6a\x4c\x92\xa9\xda\x13\ +\x00\x0a\xfc\xe0\xbd\x0f\x52\x8f\xed\xd2\x47\x88\x3a\x72\x5b\xb2\ +\x6a\x1e\xc5\xad\x8a\x10\xf3\xca\xf5\x24\xaa\xf1\x04\x84\xbb\x06\ +\xa3\x30\xb3\x0a\x12\x61\xd4\x21\x1b\xb4\x14\x9e\x16\xa4\x9c\x53\ +\x06\x08\xb7\x30\x8d\x59\x03\x4d\x42\xb3\x73\x4c\x92\xac\x4e\x39\ +\x38\x43\x35\x06\x41\x2a\x98\xb7\xc4\x01\x0a\x8b\x64\xda\xc8\x48\ +\x31\x44\x1b\xd3\xa8\x31\x78\x03\x31\x46\x7e\x52\x6a\x9a\xe0\xd5\ +\xb1\xf6\x75\xf6\x51\xc2\xc2\x74\x66\x1c\x0f\x52\x8b\x4c\x60\x96\ +\x48\x00\xd3\x11\x7b\x69\x13\x1b\xa1\x69\x44\xc4\xa4\x02\x27\xc1\ +\xa2\x86\xe9\x5b\x92\x1a\x23\x95\xb4\xc1\x4a\x98\x06\x40\xa3\x5d\ +\x49\xaf\x68\x35\x70\x2f\xce\x9b\xc0\x14\x6b\x3a\x1f\xd0\xfc\x8e\ +\x28\xad\xf6\x2f\xa1\xa1\x09\x38\x19\x8c\xd8\x00\x56\x24\xe5\x8c\ +\x20\x89\xa4\xf2\x04\xde\x20\xaa\xbc\x76\xe0\xc3\x83\xec\x6d\x64\ +\x88\xde\xb8\xae\x3b\x57\x52\x63\xea\x94\x24\x4a\xc3\x6a\x80\xd9\ +\xae\xac\x43\x88\x07\x69\xcd\x9c\xbe\x33\x60\x87\x60\x07\xa8\xf8\ +\x63\x87\xaf\xeb\x1b\x9a\xf6\x26\x26\x56\x5e\x82\x26\xbc\xbd\xbc\ +\xc5\x3e\x37\x7b\x8d\xf4\xc1\x5f\x78\xe9\x5c\x0e\x85\xd7\x62\xbf\ +\x4a\x67\x9b\x7c\xf3\x11\x75\xd7\xe5\xae\x2c\xf2\x0f\xe1\x35\xad\ +\x9f\xab\xea\x02\x23\x62\x40\x30\x90\x95\x8d\x9c\x4a\x63\xec\x65\ +\xb3\x9b\x7d\x59\x76\x65\xff\xc9\xb3\xcd\x0c\xbb\x6c\x5a\x5c\xae\ +\x93\xe2\x43\x5a\x54\xa3\x55\xcf\x93\x5d\x99\x14\x65\x4f\xb2\xce\ +\x16\xbd\xf7\x74\xb3\xe8\xcd\x1f\x86\x5a\x65\xf8\x9a\xa9\x46\xb6\ +\x48\x50\xe2\x15\x45\xf2\xd4\xd3\x24\x69\x75\xed\x34\x63\x8d\xec\ +\xb0\xd8\xfb\x6c\x97\xdd\x64\x2b\x7a\x09\x8f\xab\xf4\x72\x91\xed\ +\xb6\xd8\x7e\x67\xd9\x86\x0c\xbf\xcc\xef\xd3\xe2\x76\x95\x3f\xb4\ +\xed\xe9\x26\xc1\xd7\xe4\x26\x99\x7f\xa0\x0d\x1b\x86\x25\x73\x94\ +\x6c\xfb\x55\x52\xf6\xca\x86\xe5\x21\x10\x43\xbb\x34\x78\xc3\x32\ +\xd0\x58\xb5\x4b\x37\x6f\x13\x03\x2c\x22\xe2\xca\x8f\x27\x04\x4b\ +\x6f\xac\x14\x17\xa3\xfe\xd6\xbc\x54\x92\xf1\x6e\x85\x44\x7b\x75\ +\xb7\xe2\x19\x9a\xcf\x19\xe3\x1c\x1d\x19\x80\x02\x24\x34\xd3\xe3\ +\xc9\xe1\xb1\xd3\x3c\x66\xdd\xe9\xa2\x88\x0a\x6e\xcf\x63\x64\xa6\ +\x37\xbd\x06\x14\x87\x36\xb0\x99\xd0\x3d\x79\x53\x56\x72\xca\x3a\ +\x81\xbd\xaa\xd7\x5a\x97\xa5\xc4\x4a\xf4\x51\xbd\xc6\xa6\xee\x50\ +\x38\x8e\xf4\x1a\x6a\x24\x57\xb0\xad\x6f\x19\x5f\x0a\xdb\xd7\x61\ +\x22\xd6\x47\xae\x0e\x84\xc0\x84\xb6\x67\xe4\x1e\x23\xf7\x85\x80\ +\x02\xf5\xa0\x52\x23\xec\x48\x21\x19\x30\x4b\x80\x6a\x1e\x3b\xcd\ +\x43\x80\x22\x3a\xc7\x26\xaa\x8f\x01\xe5\xa8\x5a\x13\xce\xf1\x41\ +\x44\x61\x37\xc4\xee\xcf\x3a\xe7\xe9\x53\x44\x19\xf9\x1c\xa2\xdc\ +\xff\x02\x51\xd8\x3d\xce\x80\xfa\x4d\x80\x02\x78\xac\xb7\x28\x82\ +\x2d\xdd\x6f\xa0\x06\x42\x55\x49\x88\xea\x3c\xb6\xed\x03\x90\x9a\ +\x78\xd0\x25\x01\xee\x04\x53\x13\x14\x7c\x28\x99\x51\xed\x0d\x83\ +\x0a\x9b\x31\x37\x42\xea\x4f\x80\x8a\xeb\x67\x40\x65\xd9\x99\xa6\ +\xbe\x22\xaa\x96\xc7\x51\x59\x0a\xee\xfa\x21\x19\x04\x1a\x6a\x38\ +\xe3\x51\x55\x4e\x50\x21\x5a\xe9\x85\x4b\x27\x62\xdc\x7d\xee\xe8\ +\x18\x3a\x2b\x58\x81\x73\x1b\xca\x38\x4b\x15\x34\xbf\xe8\xec\xbd\ +\x27\x67\x67\xfa\x84\x83\xb2\xa0\x83\x29\x57\x02\xa7\x0d\xad\x63\ +\x9c\x0d\x64\xf4\x37\xaa\x72\x71\xaa\x51\x72\xdc\x3c\x44\x2c\xe2\ +\xf4\x57\xbf\x8b\x97\x28\x0f\x8c\xfc\x71\xd4\xb7\xa0\xbd\x8d\x2b\ +\x90\x1b\x4d\xf7\x67\x75\x1e\x3f\xaf\x13\xae\x0f\xeb\xd9\x9e\xd5\ +\xa1\xeb\x32\x8f\x74\x82\x69\xfa\x48\x29\xfc\x0e\x03\x47\x21\x40\ +\xe2\xb8\x7f\xbf\x4c\xe5\x97\x4d\xfe\x24\x1e\xf9\xf0\x3b\xf3\x87\ +\xea\x75\xef\x2d\x3f\xe7\x4f\x95\x3f\xcf\x84\xae\xfa\x89\x2f\x29\ +\xe6\xbd\x04\x1b\x04\xf7\x60\x71\xa9\x39\x1d\xc5\x29\x6f\xb4\x50\ +\x06\xa7\xaf\x71\xf7\xa9\x6d\x96\x74\xee\x44\x5e\x21\xdb\xb8\xc2\ +\xd9\x4f\x0a\x77\x31\x1a\xca\x1d\x9c\x01\x0d\xf3\x82\x8f\xdb\x6b\ +\x68\xe4\x43\x7b\xfb\x3c\x16\x12\xf9\xc9\xb9\x68\xd3\xc7\x23\x61\ +\xc3\xd5\xcc\xcb\xf4\x87\xc6\xff\x64\x0a\xb5\x03\x7c\x2a\x87\x0e\ +\xb7\xe3\x9f\x4a\xa2\x93\x7b\xf5\x81\x2c\x3a\xbd\x92\x3f\xc9\x22\ +\x35\x9c\x45\x21\x77\xf6\xc5\xea\xbb\xd7\xa7\xbf\x3c\x5e\x1c\x27\ +\xd3\xf3\x07\xbb\x2f\x87\x71\x3b\xea\x97\x41\xec\x6a\xba\xfc\x1c\ +\xa1\x9b\x17\x11\x3a\xdc\x8e\x22\x41\xc5\x4c\x58\xe5\x0d\x27\x16\ +\xef\xbd\x74\xb4\xac\x94\x74\x71\xc3\xf9\x98\x73\x2f\x62\xa7\x8c\ +\x3f\x53\xfa\xf3\x60\x7c\x01\xa5\x9f\x20\xfe\x4c\xe9\x67\x4a\x3f\ +\xca\x9d\x33\xa5\x7f\x86\xd2\x3d\xfb\x62\x4a\xd7\x7f\x4e\x4a\xf7\ +\x2f\xa2\x74\x30\x0e\x0f\xbc\x0d\x96\x96\x1a\x21\x3f\x3c\x75\xda\ +\xad\x37\x31\xf3\x2e\xdc\xa0\xd2\xaf\x39\x4a\xe8\x33\x99\x3f\x0f\ +\xc3\xcf\x93\xb9\x3f\x93\xf9\x99\xcc\xcf\x64\xfe\xfb\xc8\x5c\xb0\ +\x2f\x27\x73\xfb\xa7\x24\x73\x71\x74\x87\x3f\x40\xe6\xd5\xbf\x5a\ +\xc2\x17\xdd\xd1\x55\x8c\xc9\x99\xb3\xe1\xc7\xcf\x33\x57\x3f\x8f\ +\xb2\xcf\x72\xb5\x60\x27\x28\x3d\x73\xf5\x99\xab\x8f\x72\xe7\xcc\ +\xd5\x9f\xe3\xea\x67\x2a\x9e\x4f\x70\xb5\xff\x3f\xe7\xea\xf6\xb1\ +\x7e\x08\x5f\x57\xf4\x4f\xe7\xde\xbc\xfa\x2f\xd5\x27\x78\xbc\ +\x00\x00\x09\x70\ +\x00\ +\x00\x28\x03\x78\x9c\xed\x59\x5b\x8f\xdb\xc6\x15\x7e\xf7\xaf\x60\ +\xe5\x97\x18\x15\xc9\xb9\x5f\xe4\x95\x83\x22\x46\x8a\x00\x2e\x0a\ +\x34\x36\xfa\x18\x70\x45\x4a\xcb\xae\x44\x0a\x24\xb5\x92\xf6\xd7\ +\xf7\x1b\xde\x44\xae\xa4\xf5\x26\x01\x9a\x26\x59\x19\xb6\xc8\x33\ +\xe7\x32\xe7\x32\xe7\x3b\x23\xdf\x7c\x7b\xd8\xac\xbd\x87\xa4\x28\ +\xd3\x3c\x9b\x4f\x68\x40\x26\x5e\x92\x2d\xf2\x38\xcd\x56\xf3\xc9\ +\x97\xcf\xdf\xfb\x66\xe2\x95\x55\x94\xc5\xd1\x3a\xcf\x92\xf9\x24\ +\xcb\x27\xdf\x7e\x78\x73\xf3\x17\xdf\xf7\xbe\x2b\x92\xa8\x4a\x62\ +\x6f\x9f\x56\x77\xde\x0f\xd9\x7d\xb9\x88\xb6\x89\xf7\xcd\x5d\x55\ +\x6d\x67\x61\xb8\xdf\xef\x83\xb4\x25\x06\x79\xb1\x0a\xdf\x79\xbe\ +\x0f\xc9\xf2\x61\xf5\xc6\xf3\x3c\x98\xcd\xca\x59\xbc\x98\x4f\x5a\ +\xfe\xed\xae\x58\xd7\x7c\xf1\x22\x4c\xd6\xc9\x26\xc9\xaa\x32\xa4\ +\x01\x0d\x27\x27\xf6\xc5\x89\x7d\xe1\x8c\xa7\x0f\xc9\x22\xdf\x6c\ +\xf2\xac\xac\x25\xb3\xf2\xed\x80\xb9\x88\x97\x3d\xb7\xdb\xcc\x9e\ +\xd7\x4c\xd4\x5a\x1b\x12\x16\x32\xe6\x83\xc3\x2f\x8f\x59\x15\x1d\ +\xfc\xb1\x28\xf6\x78\x49\x94\x11\x42\x42\xac\x9d\x38\x5f\xc6\x35\ +\x3b\xac\x11\x89\xab\x9b\xa9\x57\x87\xd6\x11\xfd\x2d\xfe\xf6\x02\ +\x1d\x21\x28\xf3\x5d\xb1\x48\x96\x90\x4c\x82\x2c\xa9\xc2\x8f\x9f\ +\x3f\xf6\x8b\x3e\x09\xe2\x2a\x1e\xa8\xe9\x82\x3f\xb2\x3b\xca\x48\ +\x16\x6d\x92\x72\x1b\x2d\x92\x32\xec\xe8\xb5\xfc\x3e\x8d\xab\xbb\ +\xf9\x44\x89\xed\xa1\x7e\xbf\x4b\xd2\xd5\x5d\x35\x20\xa4\xf1\x7c\ +\x02\x0f\x99\x51\xb6\x7e\xef\xf6\x30\xeb\x0b\x89\x04\x9c\x35\xac\ +\xad\xe2\xe1\x92\x50\x63\xa9\x38\x5f\xb8\xad\xcc\x27\x51\xb1\x08\ +\xba\xc8\xf5\x82\xf9\xae\xda\xee\xaa\x9f\x92\x43\x95\x64\x8d\x06\ +\xec\x7d\xe0\x48\xbd\xec\xc4\x7a\xda\xe4\x03\x14\xdc\xc4\xc9\xb2\ +\x74\x8a\x9a\xed\xba\x37\x66\x34\xad\xd7\xb0\x5a\x44\x71\x1a\xad\ +\xff\xee\xbe\x50\x69\x0d\xdf\xc0\xe8\x22\x5f\xaf\x93\x05\x7c\x8e\ +\xd6\xfb\xe8\x58\x4e\x3a\x86\x3a\x57\xb3\xbb\x22\x41\x6d\xbd\xc5\ +\x73\x12\x15\x9d\x0e\x4e\x85\xe8\xf9\x9c\xc9\xb1\x09\xc6\xb5\xe9\ +\x97\x57\x2d\xf1\x4b\x96\x56\x28\xa2\x5d\x99\x14\x3f\xba\x44\xfc\ +\x33\xfb\x52\x26\x67\x5c\x9f\x8b\x28\x2b\x91\xf5\xcd\x7c\xb2\x89\ +\xaa\x22\x3d\x7c\x43\xa7\xc4\xfd\x09\x94\x35\x92\x59\x81\x67\x46\ +\x58\x60\x90\x10\xfe\xae\x17\x5f\x1c\xe6\x13\xc6\x64\xc0\x94\x20\ +\xec\x44\x3d\x22\x91\x9a\x05\xda\x6a\xae\x7a\xea\xf2\x22\xef\xf2\ +\x22\x6f\x31\x9f\x70\x11\x70\x21\xa9\x41\x73\x08\x7f\xbb\x80\xaa\ +\x3f\x74\x40\xc7\xc1\x78\x71\x40\x5d\xa0\x2e\xc4\xf1\x43\xbb\x7e\ +\x53\x56\xf9\xb6\xe3\xc5\x19\xac\x8e\x6b\x1c\x3c\x47\xf4\xa1\x31\ +\x2f\x66\x6f\x97\xf5\xe7\x7d\x4d\xca\x11\xc3\xb4\x3a\xce\xe8\xfb\ +\xc9\x49\x26\x5f\x2e\xcb\x04\x86\xc9\x80\x56\x77\x04\x48\xc0\x96\ +\xea\x5d\xf8\xa5\xd6\xc8\x25\x6b\xf4\xb2\xb5\x41\xc0\xc2\xb1\xdb\ +\xbf\xe1\x41\x27\x7f\xe4\xba\xec\x43\xb7\x45\x47\xdf\x22\x76\x40\ +\xe1\x4e\xa2\x6f\xe9\xd5\xd1\x01\xcf\x98\x95\xc7\x93\xb3\xf0\x3f\ +\x6c\x7f\xc2\x86\x88\x37\xf3\x38\xc3\x3f\xf4\x22\xc7\xb1\xe1\xa0\ +\x00\x56\x7c\x91\x8b\x3c\x8f\x0e\x9e\x9e\x51\xd3\xee\xc0\xcf\x8b\ +\x74\x95\x02\x43\x6a\x3e\x46\x03\x5e\x7f\xc6\x32\x48\xe9\xc0\x37\ +\xa0\x86\x6e\xbd\xbf\x09\x1d\x8c\xd4\x4f\xbd\xa7\x0e\xb9\xe2\x87\ +\x34\xd9\x9f\xb0\xe6\x36\xea\x73\xbb\x8d\x56\x49\x5d\xe9\xa8\xa2\ +\xa6\xd4\xdb\x85\xdb\xbc\x88\x93\xa2\x5b\x52\xf5\x67\xb4\xd4\x1e\ +\x86\x66\x26\x7b\xf3\xc4\x19\x68\xed\xd7\xc9\xe5\xf5\xf2\x2e\x8a\ +\xf3\x3d\x92\xfd\x74\xf1\x31\xcf\x51\x5f\xc8\xb5\x7c\xba\xe2\xea\ +\xc8\xa7\x3a\xd0\xd4\x12\x76\x26\xe7\xea\x49\x40\x8c\x09\x46\xf8\ +\xd9\xe2\xae\x28\x50\xc0\xfe\x3a\x3a\x26\x70\xa8\xfe\xea\x22\x5a\ +\xde\xe5\xfb\x55\xe1\x02\x53\x15\xbb\xe4\xa9\x24\xc0\x7f\xe7\x86\ +\x3d\x7f\xd7\x1c\x91\x76\xc4\x18\x70\x38\x59\xff\xf6\x36\x3f\x5c\ +\x56\xb0\x4f\x33\x38\xea\xf7\x43\x0b\xbd\xc2\xd0\x4d\x31\xfa\xdc\ +\xb5\x96\xe3\x70\xea\x69\x4f\x97\xe0\x3b\x93\x5d\x15\x6c\x92\x2a\ +\x8a\xa3\x2a\x3a\x65\xbc\xa3\xa0\x56\x44\x3f\x61\xc4\xcb\xd9\xbf\ +\x3e\x7e\xdf\xb7\xc2\xc5\x62\xf6\xef\xbc\xb8\x3f\x75\x31\xc7\x10\ +\xdd\x62\x7e\x99\x4f\xfa\xf6\xec\xe6\x96\xc5\xcc\xb5\x80\xa8\xfa\ +\x90\x6e\x90\x47\x37\x4a\xfe\x15\x13\x1d\x6a\xaf\x5f\x18\x31\xbb\ +\xa3\x76\x52\xda\xa8\x2d\x92\x66\x54\xbc\x38\x5d\xc7\x8b\x4d\xea\ +\x84\xc2\x1f\xab\x74\xbd\xfe\xc1\x19\x19\xb6\xec\xb0\xdd\x68\xd7\ +\x55\x07\x7e\xdc\x84\x9d\xa3\xf5\xdb\xea\x14\x80\x51\xc2\xfb\xe0\ +\xad\xa3\xdb\x64\x3d\x9f\x7c\x72\x8b\xde\xd9\xea\xaa\xc8\x77\xdb\ +\x4d\x1e\x27\xad\x78\x17\xb8\xd5\xf0\x20\xae\xb8\x20\x17\x8e\x73\ +\x72\xd8\xe6\x45\xe5\x2f\xd3\x75\xd2\x8c\x8e\xe1\x5d\xbe\x49\xc2\ +\x23\x8e\xf7\x7d\xf8\xb1\x2d\xa9\x32\xfc\x14\xdd\x86\x1f\x8b\x68\ +\x59\x85\xe9\x02\xb7\x84\xd0\x0d\x98\xdb\x6c\x75\x55\xdf\x21\xde\ +\x62\xec\x56\x81\x16\x86\x70\x2e\xaf\xf2\x1d\xaf\xf0\x55\x67\x0d\ +\x9c\x04\x40\x44\xa9\x74\xdb\xc7\xdb\x17\x8d\x21\x98\x30\x2e\xed\ +\xd4\x97\x32\xa0\xcc\xba\x76\xde\x67\x60\x1b\x55\x77\x63\xb0\x73\ +\x14\xd8\x39\xc1\x8e\xe7\x81\xfa\x0f\xcf\xe7\x4a\x04\x92\x58\x21\ +\xa6\x42\x72\x28\x32\xda\xfb\x0e\x54\x63\x02\xd0\x84\xa9\xa9\x86\ +\x72\xe1\xf9\x82\x98\xc0\x48\xc1\xd8\x54\x68\x1e\x48\x4b\x89\x74\ +\x44\x1b\x08\xea\x76\x24\xac\x09\x38\x61\xd2\x38\x79\x47\xb6\x56\ +\x32\x3a\x95\xcc\xc9\x53\x26\x9c\x52\x8b\x9e\x41\x60\x4a\x0a\x11\ +\x58\x6d\x94\x6e\xec\x33\x41\xb5\x05\x51\x06\x52\x1a\xc6\xea\x0d\ +\x08\x15\x28\xc1\x0c\xab\xc9\x56\x1a\x67\x8c\x73\xb4\x32\xab\x18\ +\x14\x70\x85\x4b\x80\x70\xdb\xe2\x8c\x05\xf0\x5e\x83\x88\x27\x2a\ +\xb9\x10\x4e\x01\x73\x76\x39\x62\x05\x5e\xb7\x6f\x49\x61\x8c\x42\ +\x17\x95\x9a\xd2\xa9\xa2\x14\x1b\x44\xdc\x40\x04\x98\x11\x6d\x2c\ +\x47\x50\x25\xc0\x4a\x93\xda\x05\x0a\x31\x4e\x99\x8b\x35\xe5\x81\ +\x36\xa6\xe6\xc5\xb6\x2c\xa5\x46\x4d\x35\x33\x81\x86\x16\xd6\x10\ +\x85\xa2\x02\x0a\x9c\x0b\x46\x30\x55\x2b\xc0\x8b\xd6\x46\xd2\xa9\ +\xd6\x6e\xdf\x84\x4b\x67\x0c\xe1\xe6\x30\x32\xd5\x96\x06\x8c\x03\ +\x87\x3d\xdf\xda\x80\x30\xe0\x26\x68\x24\x90\xc2\xda\x3a\x07\x2e\ +\xc8\x8c\x32\x70\x22\x6e\x88\x95\x8b\x00\x92\x81\x5b\x80\x76\x44\ +\x65\x90\x03\xe6\xe2\x2a\x45\x40\x14\x55\x52\xc0\x3e\x0f\x88\xc1\ +\xb3\x93\x07\x59\x19\x45\x28\xd4\x52\x04\x5e\x29\x0b\x5e\x40\x34\ +\xf4\x33\x03\x5f\x09\xc2\x8a\x6c\xc0\x3c\xfc\x17\x8c\x23\x28\x48\ +\x21\x52\x61\xea\x00\x52\xf4\x71\x86\x1c\xea\x29\xcc\x60\x60\x90\ +\x06\xf6\x19\x22\x64\xd1\xff\xcc\x54\x52\xd4\x22\x27\x16\x41\xe1\ +\xe0\x44\x82\x30\x5c\x08\xf8\x64\xf0\x4f\x53\x43\x00\x47\x8a\x8d\ +\xa1\x86\xb4\xbb\xcd\x21\x38\x2e\x85\x16\x1e\x42\x77\x5d\x58\xe8\ +\xb5\x96\xba\x1a\x60\x4e\x17\x1f\x97\x20\x88\xd6\x09\x35\x54\x54\ +\x9b\x33\xa5\x90\x0a\x04\x85\x36\x44\xa2\x14\xbd\x58\xc2\x8f\x5e\ +\x5d\xda\xd6\x99\x65\xb5\x5f\x94\x11\xd8\x77\x7a\xad\x40\x61\x70\ +\x66\x6b\xb2\x3b\x7d\x28\x0c\x41\x5d\x41\xc2\x45\xe4\x95\xb8\x6a\ +\x40\x08\x6b\x22\xb3\xcc\xd2\x71\x5e\x05\xca\x41\xc1\x71\x3b\xcc\ +\x2b\x47\x8c\xb0\x0f\xcb\x86\x79\xe5\x4a\xa1\xf2\x8c\x11\xe3\xc4\ +\x72\x81\xa9\x41\x32\x2d\x87\x99\x75\xd1\x62\x14\xa8\x39\xcc\xac\ +\x23\xa2\x30\x29\x1f\x67\xd6\x95\xbc\xd4\x8a\x40\x41\x13\x7a\xe2\ +\x0e\x12\x38\x0c\x34\x38\xbf\x74\x20\xb8\x96\xe2\x62\x08\x1e\x07\ +\x2d\xa0\x1d\xa7\x4f\x43\x3a\xda\xe1\x7a\xf6\x96\xd4\x9f\xfa\xe5\ +\x34\x52\xbb\x10\x23\x5a\xa6\x21\x17\xbb\x35\x7a\xd9\x43\x92\xe5\ +\x71\x8c\xd9\xbb\xc8\xef\x93\x59\x96\x67\x49\xfb\xdc\x80\xe9\x4c\ +\x22\xbe\xee\x43\x6d\x47\x77\x83\x30\xfa\xe0\xec\x76\x57\x55\x43\ +\xda\x7f\xf2\x34\x9b\x01\x55\x92\xe2\xfd\x26\x2a\xee\x93\xa2\xd1\ +\xd6\x3c\xfb\x65\x15\x15\xd5\x88\xb2\x49\xe3\xd1\x7b\x92\xc5\x23\ +\xfb\xb5\xaa\x75\x8a\xaf\x99\xe8\x68\x71\x84\x91\xa6\x28\xa2\xe3\ +\x88\xd3\x51\x9b\x2b\x02\xae\x0d\x2d\xed\x14\x90\x87\xb4\x4c\x6f\ +\xd3\xb5\x7b\xa9\x1f\xd7\xc9\xfb\x38\x2d\xb7\x80\x9b\x59\x9a\xb9\ +\x8d\xbf\xcf\x1f\x92\x62\xb9\xce\xf7\xfd\x3a\xf0\x04\x5f\xfe\x6d\ +\xb4\xb8\x77\x00\x85\x8d\x45\x0b\xc0\xc9\x6e\x1d\x55\x23\x98\x5c\ +\x8d\x3b\xf4\x8a\xa3\x3f\x0e\x61\x7c\xdc\xc4\xaf\x26\xab\xbd\xff\ +\x8c\x92\x45\xaf\x27\xa9\x4b\xee\x6b\x9e\x9e\xcd\xd3\x30\xf0\x0d\ +\x50\x0a\x0a\xe0\xc3\xf8\x6a\x71\xb2\xbc\x4f\xed\xbb\x46\xdb\x50\ +\x46\xd7\x8d\x85\xa1\xcb\x51\x8b\xdb\x15\xc8\xd2\xa1\x9f\x76\xd8\ +\x00\x74\x76\x67\x71\x8a\xde\x12\x28\x69\xb4\x1d\xd0\x5c\xaf\x01\ +\x42\xb1\x5a\x7c\x44\x75\x88\x79\x92\x06\xe0\x39\xa2\x15\x40\xc7\ +\x11\xa3\x6b\x3f\xed\x76\x28\xf0\xae\xa7\x0a\xd2\x29\x75\xd4\x06\ +\x5a\xa0\x00\xeb\x82\x0f\x59\x81\x0b\x60\x24\x76\x44\x33\x83\x3d\ +\x75\x54\xa9\x6a\x88\xb3\x06\x6e\x4a\x8c\xf0\x68\x45\x7d\x30\xe8\ +\x93\xd8\x3c\x8e\x82\xd7\x0d\x1f\x8c\x1b\x32\xa8\xfe\x71\xfd\xb7\ +\x27\x80\x01\xe0\x47\xc2\xe7\xd3\x90\x8f\x30\x58\x0b\xdc\xd0\x53\ +\x16\x28\xad\x24\x00\x3f\xf1\xd9\xd4\x1f\xbf\x9d\xb8\x00\x59\xd4\ +\x81\x1a\x26\x25\xca\x15\x40\x1f\x48\xf7\x6e\xbc\xc3\x5f\x39\x12\ +\xba\xea\x1a\xcd\x84\xd7\xe7\x42\x0d\x68\x61\xd4\x4a\xfa\x2c\xef\ +\xf1\x09\xef\x87\x01\xf3\x59\x57\x68\xcb\x93\xb9\x61\x83\x62\x60\ +\x9a\x2a\x94\x07\xe4\xb8\xf7\x37\x4f\x00\x48\xb4\x9b\x4b\xba\x07\ +\x8f\x78\xd4\xfd\x69\xdf\xd9\x4b\x98\x2f\x68\x1e\x67\x78\x70\x69\ +\x2f\xdc\x0d\xaf\x15\xbf\xca\x73\xf8\x3a\x4f\xfd\xcb\x43\x6b\xed\ +\x2a\x0f\xf4\x50\x20\x9d\xdb\x9a\x7c\xc2\x74\x2a\x3a\x7e\x26\xdf\ +\x74\xd1\xae\x77\x46\xf6\x29\xd0\xd1\x9f\xd9\x29\x5f\xde\xc1\x7a\ +\x0b\xd7\x5c\x6a\x7e\xf3\xc0\x15\x63\x74\x50\x2e\x26\xfd\xd2\x3d\ +\x01\xa3\x26\x06\x70\xee\xaa\x5f\x32\xa1\x30\x00\x4c\x87\x4f\xfd\ +\x32\x80\x26\x50\x56\x61\x56\x61\x98\x70\x10\x62\x66\xde\x4d\x2e\ +\xd5\x94\xb4\x6e\xd0\xc1\xb0\xd5\xff\xb2\x83\x3a\xe9\x7f\xd0\x99\ +\xa2\x39\x60\x84\x46\x8f\xe8\xca\x0a\x43\x8e\xc5\x02\x7f\x21\xff\ +\x25\xfd\xcf\x96\x56\xaf\xe0\xb9\xda\x3a\xfd\xe0\xf4\x5c\x71\x9d\ +\xfd\x54\x75\xa1\xba\xce\x7f\xe5\x3a\xab\xae\xa7\x85\x37\xac\x2e\ +\x5c\x98\xbf\x79\x7b\xfe\xcb\xde\xbb\x2b\xe5\x76\x3e\x3d\x91\xff\ +\x59\x89\xdd\x84\xab\xaf\x35\x66\xfd\xa2\xc6\xac\x45\xdd\x8a\x19\ +\xae\x4c\x92\x0a\xd7\x8a\x47\x2f\x43\x26\xdc\x9f\x14\xe0\x88\x4f\ +\x29\x45\x15\xe2\xa0\xea\xd7\xb6\xfc\xe7\x69\xcb\xf6\xf2\xc1\x39\ +\x1f\x6e\x2f\x35\xe8\xd3\x70\x8b\xda\x7f\x4c\x8a\xfc\x75\xb8\xfd\ +\xc5\xc3\xed\x2b\xfc\xfc\x7e\xe1\x47\x9c\xb5\xf9\xaf\xc1\x8f\x32\ +\xbf\x4f\xf8\xd1\xec\x45\xf0\xf3\x33\xee\x05\x86\x04\x84\x12\xe4\ +\xe0\xf5\x5a\xf0\x27\xc4\x1f\x2d\x9e\x39\x39\xaf\xd7\x82\xd7\xbe\ +\xfc\xab\xfa\xb2\x3e\x93\xff\xea\xb5\xe0\xff\xbd\x2f\xf7\x8f\xed\ +\x43\xfd\x75\xe3\xfe\x6b\xf1\xc3\x9b\xff\x02\x12\x12\xa3\x96\ +\x00\x00\x11\x06\ +\x00\ +\x00\x49\xa9\x78\x9c\xed\x5b\x6b\x73\xe3\x46\x76\xfd\xee\x5f\xc1\ +\x70\x3e\xac\x5d\x4b\x82\xfd\x7e\x70\xa4\xd9\x5a\x7b\x6a\x53\x5b\ +\x35\xa9\x54\xad\xed\xe4\xa3\x0b\x22\x21\x09\x19\x92\x60\x81\xd0\ +\x6b\x7e\x7d\xce\xed\xc6\xa3\x41\x52\x9a\x99\xd8\xc9\x3a\xbb\xd2\ +\x94\x2d\xe2\xa0\x9f\xb7\xcf\xbd\xf7\x5c\x80\xba\xf8\xd3\xe3\x76\ +\x33\xb9\x2f\xea\x43\x59\xed\x2e\xa7\x3c\x63\xd3\x49\xb1\x5b\x55\ +\xeb\x72\x77\x73\x39\xfd\xf9\xa7\xbf\xcc\xdd\x74\x72\x68\xf2\xdd\ +\x3a\xdf\x54\xbb\xe2\x72\xba\xab\xa6\x7f\x7a\xf7\xcd\xc5\xbf\xcc\ +\xe7\x93\x1f\xea\x22\x6f\x8a\xf5\xe4\xa1\x6c\x6e\x27\x7f\xdd\x7d\ +\x3c\xac\xf2\x7d\x31\xf9\xf6\xb6\x69\xf6\xcb\xc5\xe2\xe1\xe1\x21\ +\x2b\x5b\x30\xab\xea\x9b\xc5\x77\x93\xf9\x1c\x3d\x0f\xf7\x37\xdf\ +\x4c\x26\x13\x4c\xbb\x3b\x2c\xd7\xab\xcb\x69\xdb\x7e\x7f\x57\x6f\ +\x42\xbb\xf5\x6a\x51\x6c\x8a\x6d\xb1\x6b\x0e\x0b\x9e\xf1\xc5\x74\ +\x68\xbe\x1a\x9a\xaf\x68\xf2\xf2\xbe\x58\x55\xdb\x6d\xb5\x3b\x84\ +\x9e\xbb\xc3\x9b\xa4\x71\xbd\xbe\xee\x5b\xd3\x62\x1e\x64\x68\xc4\ +\xbd\xf7\x0b\x26\x16\x42\xcc\xd1\x62\x7e\x78\xda\x35\xf9\xe3\x7c\ +\xdc\x15\x6b\x3c\xd7\x55\x30\xc6\x16\xb8\x37\xb4\xfc\xb2\x56\xcb\ +\xc7\x0d\x2c\xf1\xec\x62\xc2\xdd\x74\x76\x58\x7f\x8f\xff\xfa\x0e\ +\x1d\x90\x1d\xaa\xbb\x7a\x55\x5c\xa3\x67\x91\xed\x8a\x66\xf1\xfe\ +\xa7\xf7\xfd\xcd\x39\xcb\xd6\xcd\x3a\x19\xa6\x33\xfe\x68\xde\xd1\ +\x89\xec\xf2\x6d\x71\xd8\xe7\xab\xe2\xb0\xe8\xf0\xd0\xff\xa1\x5c\ +\x37\xb7\x97\x53\xa3\xf6\x8f\xe1\xfa\xb6\x28\x6f\x6e\x9b\x04\x28\ +\xd7\x97\x53\xec\x50\x18\x6b\xc2\x75\xb7\x86\x65\x4f\x24\x96\x49\ +\x11\x9b\xb6\x03\xa7\xb7\xd4\x51\xaf\x75\xb5\xa2\xa5\x5c\x4e\xdf\ +\xd7\xf9\x75\xf3\xcb\xfb\x12\x87\x4f\x6d\xb3\xce\x8a\xfd\x20\xd5\ +\x5d\xb3\xbf\x6b\x7e\x29\x1e\x9b\xd8\xe2\x72\x8a\x7d\x24\x9b\x0a\ +\xb7\xa9\x5b\x8f\x4d\xdf\x61\x80\x8b\x75\x71\x7d\xa0\x81\xe2\xd2\ +\xe9\x0a\x6b\x77\xe1\x1e\xee\xd6\xf9\xba\xcc\x37\xff\x4a\xbf\xc0\ +\xba\xd8\x2e\x99\x74\x55\x6d\x36\xc5\x0a\xfb\xcf\x37\x0f\xf9\xd3\ +\x61\xda\x35\x08\xe7\xb6\xbc\xad\x0b\xf0\xec\x0d\x3e\x17\x79\xdd\ +\x8d\x21\xb9\x52\x7d\x3b\x9a\x72\x3c\x85\x74\xc2\xf6\xb7\x6f\x5a\ +\xf0\xe7\x5d\xd9\x80\x50\x77\x87\xa2\xfe\x91\x0e\xe5\xdf\x77\x3f\ +\x1f\x8a\x93\x56\x3f\xd5\xf9\xee\x00\x06\x6c\x2f\xa7\xdb\xbc\xa9\ +\xcb\xc7\x6f\xf9\x8c\xd1\xbf\xcc\x78\xa7\x85\x57\xf8\x2c\x98\xc8\ +\x9c\x70\x46\x7e\xd7\x77\x5f\x3d\x5e\x4e\x85\xd0\x99\x30\x8a\x89\ +\x01\x7d\xc2\xa1\x5a\x91\x59\x6f\xa5\xe9\xd1\xeb\xb3\x6d\xaf\xcf\ +\xb6\xad\x2f\xa7\x52\x65\x52\x69\xee\x10\x28\x16\x7f\x3f\x83\x72\ +\xff\x6a\xd0\xdf\xd2\xa0\xd6\xbf\x1a\xf4\x37\x66\x28\xff\x47\x36\ +\xe8\xd8\x18\xa9\x1d\x5e\x32\xd3\x73\xf6\x7e\xd7\xb6\xb8\x38\x34\ +\xd5\xbe\x6b\xdd\xe6\x1d\x20\x18\x64\x58\xcf\x64\x52\x5d\x5f\x1f\ +\x0a\x74\x66\x09\x76\x68\x9e\x36\x45\x6c\x3d\xc7\xe8\x55\xbd\x7c\ +\x73\x1d\x7e\xde\x06\xa8\x82\xb9\xcb\xe6\x69\xc9\xdf\xf6\x5b\x78\ +\x69\x36\x77\x66\x36\xfe\xf5\xb3\xb1\x61\xb6\x8b\xc5\xd8\x2e\x7f\ +\x3f\x5e\xb2\x7f\x68\x47\xef\x4d\xb7\x87\xfe\xd8\xc3\x76\xd0\x8c\ +\x5d\x8f\x5e\x80\x34\x4f\x24\x93\xc6\x4d\xe5\xfa\x94\xa6\xf7\xfb\ +\x5f\xb0\x20\x36\x59\x4e\xa4\xc0\xff\xf8\xd9\x16\x4f\xb1\x05\x87\ +\x0c\xc4\x2f\x76\xb6\xcd\x27\x12\x53\x2f\x0c\xd3\xae\x60\x5e\xd5\ +\xe5\x4d\x09\x95\x13\xda\x09\x9e\xc9\xf0\x33\xee\x83\x23\x4d\xf6\ +\x26\x8c\x53\xed\xee\x2f\x16\x24\x74\xc2\xa7\x7e\xa7\xa4\xb3\xd6\ +\xf7\x65\xf1\x30\xa8\xa1\xab\xbc\x3f\xdb\x7d\x7e\x53\x04\xfa\x82\ +\x45\x91\xbf\xed\x8d\xab\xaa\x5e\x17\x75\x77\xcb\x84\x9f\xd1\xad\ +\x96\xe1\xb1\x82\xf8\xe6\x68\x33\x18\xb5\xbf\xcf\xce\xdf\x3f\xdc\ +\xe6\xeb\xea\x01\x87\x7d\x7c\xf3\x53\x55\x81\x5f\x3a\xd3\xc7\x37\ +\x88\x46\xf2\xa4\x39\xd1\xe8\x0c\x7a\x57\xd7\x20\xec\x7c\x93\x3f\ +\x15\xd8\x40\xf8\xd5\x59\xf0\x70\x5b\x3d\xdc\xd4\x64\x88\xa6\xbe\ +\x2b\x8e\x7b\x42\x9a\xde\x51\x29\x32\xbf\x8b\x2e\xd1\x0a\xe0\xa4\ +\x05\xf5\x9d\x5f\x5d\x55\x8f\xe7\x07\x78\x28\x77\xd8\xd8\xbc\x97\ +\xd4\x27\xbb\x6f\x1b\xf4\x1a\xdb\xa9\x67\x5a\x3c\x0e\x01\xee\xf8\ +\x16\x36\xed\x65\x77\xea\xdb\xa2\xc9\xd7\x79\x93\x0f\x27\xdc\x21\ +\xe0\x06\xef\x35\xef\xfa\x7a\xf9\xb7\xf7\x7f\xe9\x43\xdf\x6a\xb5\ +\xfc\xcf\xaa\xfe\x38\x84\x34\x6a\x90\x5f\x41\x51\x5f\x4e\xfb\x70\ +\x4c\x4a\x7a\xb5\x24\x97\xcf\x9b\x77\xe5\x16\xe7\x46\x85\xce\x1f\ +\x51\x6f\x80\x6b\xfd\x8d\x51\x63\x72\xad\x61\xd0\x38\x6c\x5d\xc4\ +\x42\xe6\x6c\xed\xb7\x5e\x6d\x4b\xea\xb4\xf8\xb1\x29\x37\x9b\xbf\ +\xd2\x24\x69\x88\x5e\xb4\x0b\xed\xa2\x68\xb2\x8f\x8b\x45\xb7\xd1\ +\x70\x75\x33\x18\x60\x74\xe0\xbd\xf1\x36\xf9\x55\xb1\xb9\x9c\x7e\ +\xa0\x9b\x93\x93\xbb\x37\x75\x75\xb7\xdf\x56\xeb\xa2\xed\xde\x19\ +\xee\x26\x75\xbc\x1b\xe9\xcd\x10\x81\x9a\x93\x80\xc8\x32\xaf\x8c\ +\x64\x21\x14\x52\x60\xec\xae\xe6\x4a\x48\x5c\x78\xcf\x67\xa8\xdb\ +\x9c\x65\x5a\x2a\x84\xc8\x7e\x97\xfb\xbc\xb9\x1d\x27\x22\x42\xa4\ +\x93\x69\x8a\x03\xfa\x6f\x13\x65\x4c\x26\xbc\x73\x6a\x66\x33\x65\ +\x51\x58\x18\x39\xf9\x01\xa8\xce\x3c\xe7\x4c\xcc\x5c\xa6\xb9\x41\ +\x0a\xd0\x01\x93\x9e\x8b\x99\xcf\xa4\x73\xce\x58\x09\x48\x65\x98\ +\x9b\xf9\x19\x87\x5f\x62\x14\x61\x42\x67\x95\x31\xee\xbc\x26\xd4\ +\x31\xe7\xb8\x02\x26\x33\x26\xbd\x33\x33\xce\x33\x25\x8d\x56\x84\ +\x71\x84\x60\x9a\x1a\x98\x57\x42\x5b\x33\xf9\x90\xa2\x3a\xb3\x42\ +\x76\x63\x8a\x0c\xe4\xa7\x99\x68\x15\x9e\x99\x30\xa4\x94\xd6\x04\ +\x88\x29\xab\xad\x08\x98\xf3\x42\x03\x53\xc8\x22\x61\xc8\xb8\x20\ +\x05\x0b\x09\x42\xd1\x45\x7b\x1f\x76\xc3\x94\xf6\x72\xc6\xd1\xc5\ +\x30\xa9\x23\x66\x54\xe8\x2d\x33\x4a\x3a\x22\x2e\xa8\x43\x05\x7a\ +\x3b\xc6\xda\x65\xc2\x0c\x92\x16\x74\x1e\x1d\xac\xf9\xe1\xac\x8d\ +\x3f\x4d\x60\x7b\xa7\xda\xd5\x8e\x6c\xef\x60\x2a\xad\x7c\xd7\x5a\ +\x21\x60\x2b\xc7\x33\x63\x90\x14\x71\x1e\x9c\x3b\xab\xb5\x05\xc6\ +\x32\x6b\xb0\x99\x70\x20\xb4\x80\xd0\xdb\x7a\xf0\x01\x23\x91\xf1\ +\x8d\xe2\x4a\xd8\x80\x29\xb2\xe4\x8c\x23\x9b\xe2\xca\xf8\x1e\x83\ +\x99\x4d\xc6\x70\x86\xd1\x52\x03\x6a\x61\x01\xcf\x6c\x6c\xa9\x19\ +\xa3\xde\x0e\x0b\xe2\x32\x0e\x68\x6c\x68\x86\x7b\x32\x18\xaa\x9d\ +\x5a\x0b\x27\x91\xb5\x33\x58\x16\x0d\xc2\x22\x39\xc6\x56\x33\x64\ +\x1f\x25\x54\x38\x77\x60\x71\x12\x21\x40\x8a\xae\x37\x50\x87\x5e\ +\x8e\x50\x47\x99\x39\xec\x5a\x49\xce\xed\x0c\x6c\xc7\xc0\x82\x91\ +\x25\x04\x2c\xc0\xa5\x22\xcc\xdb\x8e\x1e\x8e\xb2\x39\xd7\x74\x18\ +\x8a\x7b\xa5\x5c\x30\xa3\x31\x90\xcd\x84\x19\xc3\xa5\xd0\xc1\xe0\ +\xd1\x64\x1d\x16\x3b\x9b\x0c\xd3\x29\x97\xa0\xca\xc1\xd0\xca\x1b\ +\x11\xa6\xc1\x3d\xa3\x03\xe6\x35\xb1\x1d\x2b\xd4\x18\x26\x9a\xcc\ +\x79\x8c\x89\x03\xa3\x1d\x72\xcb\x04\x2c\xe6\xb1\x69\xe2\x33\x59\ +\xcc\x6b\x83\x05\xf5\x58\x60\x6b\x4b\xf6\x1f\x7a\xd4\x11\x33\xb5\ +\x77\xdc\x98\x80\x31\x2e\x04\x91\x50\x32\x23\xc2\xcc\xbe\x5d\x37\ +\x0e\x90\xa5\x33\x83\x98\xc2\x05\x9f\xe2\x8e\x05\x7b\xe3\x00\xc1\ +\x84\xe0\x91\x60\x30\x3e\x07\x4c\xc4\xde\xac\xa3\x6a\xec\xcd\x8c\ +\xb2\xe4\xcf\xce\xc1\x76\x5c\x86\x1d\x3a\x2e\x99\x02\xa6\x38\xf7\ +\x9c\xc5\x5d\xab\xb0\x6b\xd7\xda\x3b\x92\xd4\xc1\xe1\x2d\xa7\xf8\ +\x80\x83\x81\x4c\x03\x64\x33\xc3\x35\x8e\x1a\xa6\x73\x52\x28\x0a\ +\x10\xc0\x98\x8a\xcc\x47\x3c\x91\x5d\x67\x93\xe1\xc4\x10\x5d\xd0\ +\x43\x42\x6e\x69\x0e\x0c\xde\x6e\x61\xab\x9e\xf5\xea\xac\x7f\x04\ +\xbf\xf1\xb6\xe5\xc0\xc8\x6f\x3c\x74\x1e\xce\xd1\xa7\x7e\xe3\x71\ +\x7a\xdc\x69\x99\xfa\x0d\x30\xc6\x4f\xfc\xc6\x83\x57\xe2\xc8\x6f\ +\x3c\x0f\x34\x97\xa9\xdf\xb4\xd8\x91\xdf\x0c\xe8\xe0\x37\xc0\xac\ +\x66\xd4\xbb\xf7\x1b\x40\x5e\x9c\xf8\x0d\x4d\xcd\x8e\xfc\x06\x98\ +\xc4\x31\xeb\xd4\x6f\x80\xc5\x49\x46\x7e\x83\xed\x70\xe6\xa5\x4f\ +\xfc\x06\x10\x52\xf5\xd8\x6f\x3c\xc2\x94\x39\xf1\x1b\x4f\x51\x70\ +\xec\x37\x9e\x42\x3f\x05\x8b\xc4\x6f\x60\xf0\x68\xb2\x91\xdf\x78\ +\x30\xc2\x8d\xfd\x06\x81\x02\xd3\x38\x69\x13\xbf\xd1\x8c\x1c\xa3\ +\x5d\x77\xef\x37\x84\x7a\xeb\x85\x1f\xfc\x46\x43\xec\x4b\x1f\xbc\ +\xa1\xf7\x9b\x0e\x1b\xfb\x4d\xd2\xb2\xf7\x1b\xc2\x84\x11\x23\xc7\ +\x21\x2c\x2e\x3c\x75\x1c\x9a\x1a\xbc\x1a\x39\x0e\x61\x08\x9b\x2a\ +\xf1\x1b\x82\x34\x3f\xf6\x1b\x42\x51\x13\x8d\xfc\x86\x30\x06\x22\ +\x27\x6e\x43\x86\x88\x87\x95\xba\x4d\x30\x0f\xd7\x4e\xa7\x7e\xe3\ +\x31\x90\xd1\x46\xa7\x7e\x03\xac\xcb\x18\x89\xdf\xc0\xe0\x56\x1e\ +\xf9\x0d\x8e\xc6\x7b\x05\x83\x27\x7e\x73\xc6\x3f\xba\x7c\x63\xbb\ +\x40\x30\xd0\x0f\x9e\x27\x35\x1a\x75\xa8\x8a\xce\xe8\x42\x6a\x85\ +\xe6\x10\xde\x52\xfa\x87\xd3\x32\x17\x32\x30\x4f\x52\x2b\x50\x69\ +\x9d\x0c\x06\x56\xca\x3a\x17\x20\x32\x9b\xa3\x73\xf0\x42\xc5\x01\ +\x4d\x67\x4a\x93\x21\xc0\xb0\xbe\x73\xdb\x92\x36\x84\x48\x2f\x63\ +\x6c\x08\x3c\xe5\x61\xb3\x86\xf9\x38\x49\xc8\xaa\x70\x1b\xa5\x92\ +\xa9\x05\xf2\xbe\x27\xb7\xe1\x5a\x68\xdd\x2e\x12\xf9\xc6\x11\x86\ +\x12\xcf\x76\x91\x85\xb6\x45\x44\x1b\x3c\x16\xa8\x32\xd6\x05\x07\ +\x93\xb0\xb5\x96\x01\x83\x9b\x2a\x4b\x98\xa6\x96\x3e\x4d\x19\x2d\ +\x16\x7b\x2b\xcc\x0d\xb8\x47\x63\xc2\xb1\x4e\x45\x97\x05\x0b\x04\ +\x45\x10\x60\xca\x85\xb9\x71\xf0\xaa\x13\x48\x40\x39\x3c\xd6\x85\ +\x30\x60\x99\x8b\x9d\x63\xa0\xe4\x14\xa9\xbc\x23\x89\x32\x60\x69\ +\xa8\x69\xd1\x20\x5c\x20\xc7\xbc\x88\x2d\xb9\x33\x26\x24\x78\x78\ +\xba\x08\xc9\x53\xb6\x71\x9b\xf3\x44\x47\xd1\x22\x85\xa4\xd4\x44\ +\x6a\x52\xbb\xb8\x43\x6e\x74\x7a\xfa\xa7\x34\x89\x61\xd7\x90\xbf\ +\x4b\x35\xa6\x0f\xc8\xa6\xad\x65\x3c\x19\x00\x3c\x65\xd2\xda\x94\ +\x3d\x80\xda\x23\x4c\xd9\x03\xd4\x88\x31\x7b\x88\xe3\x71\xf2\x81\ +\x3d\x03\x96\xb2\xa7\x45\x47\xec\x21\x0c\x1f\x74\xca\x1e\x60\xda\ +\x9d\xb0\xc7\x53\x5a\x3b\x62\x0f\x30\x74\x89\x58\xc7\x1e\xf2\x2f\ +\x77\xc2\x1e\xa0\x96\x1f\xb1\x07\x98\x74\x96\xc2\xe1\xc0\x9e\x21\ +\x70\xa6\xec\x81\x21\x95\x3e\x62\x0f\x30\x26\xa1\x14\x53\xf6\xf8\ +\x9e\xb9\x29\x7b\x80\x2a\x35\x66\x0f\xa5\x3e\x7f\xc4\x9e\x01\x1b\ +\x25\xaa\x88\x8e\xd8\x43\x03\xa2\x82\x70\x29\x7b\x80\xb5\x09\x2d\ +\x65\x8f\x0f\x31\x58\x8a\x84\x3d\x58\x37\x32\xa4\x4d\xa3\xc7\x19\ +\x9e\x04\xfe\x58\x39\xa8\x46\xa4\xe2\x56\x32\xf7\xe8\x48\x48\x5b\ +\xb0\x2a\x70\xff\x3c\x7a\x7e\x84\x01\x8d\xe1\x4e\xb4\x41\x47\x18\ +\x84\x6a\x36\x48\x5c\xe3\xb9\xb7\x84\xa2\x90\xf0\xdc\x86\x71\xb1\ +\x4e\x03\x0c\x02\x08\x1a\x8f\xc8\x60\x4d\x3b\x97\xe4\x1d\x6d\x3e\ +\xb4\x65\x43\x87\xf2\x2e\x13\xa2\xc0\x70\x42\x4a\x02\x99\xe5\x8a\ +\xc7\xd2\x08\x19\xcc\xf9\x99\x84\x4c\xc7\x32\x8c\x0d\x98\x08\xe7\ +\x09\x4c\xd9\xa4\xb4\x91\x9a\xd3\x56\x31\xb9\x41\xf2\x86\x09\x35\ +\xe9\x03\xa8\x99\x99\x80\x4a\x73\x5e\x0a\x8c\xa8\x6d\x2b\x1e\xd0\ +\x7b\xc8\xe0\xda\x50\x3a\x42\xb1\x25\x91\xfe\x35\xf2\x87\x0b\x98\ +\x96\x5e\x9a\x99\x04\x81\x98\x43\x3e\x06\xe6\x5a\xd1\x2d\xb1\x57\ +\xde\x49\x48\xa0\x16\xba\x42\x13\xaa\x3d\x3a\xb9\x30\x37\x73\x50\ +\x03\x84\x59\x8b\x74\x65\x03\x16\x83\x09\xb0\xa1\x54\xd3\x5d\xb5\ +\xa0\x21\xbf\x5d\x17\x10\x68\x76\x47\x6b\xd7\x50\x1f\x90\x12\x0a\ +\x39\x4e\xc3\x1a\x5a\x22\x73\xe1\xa6\x30\xe0\x1f\x0f\x58\x3c\x36\ +\x0c\x33\xb0\x1b\xa8\xe3\x5a\xe9\x19\xcc\xe2\xb5\xb3\x54\x3c\x62\ +\xe7\x8e\x9e\xcb\xcd\x0c\x89\x44\x0e\x6d\x13\xca\xc4\xb8\x22\x2a\ +\xcf\xfa\x98\x40\xc7\x03\x13\x86\x96\x74\x4c\x64\x74\xac\x98\xc1\ +\x9f\x68\x40\x45\x03\x8a\x80\xc5\x80\x82\xfd\xbb\x7e\x6a\xa0\x46\ +\x6b\xd4\xa8\x9a\x3c\x06\x1e\x61\xc2\x80\x16\x91\x9e\xf6\x62\x28\ +\x5e\xc4\xba\x33\x2a\x79\x2d\xba\xce\x1f\x22\x6a\x5b\xfb\x0e\xa7\ +\x03\xd4\x42\xbb\xc9\x60\x4b\x4e\x41\x31\xb2\xc0\xeb\x68\x73\x09\ +\xeb\x48\x1d\x0b\xe9\xc8\x0c\x50\xb5\x3f\x1d\x4c\xce\x83\x25\x25\ +\x15\x90\xd0\x90\xb1\x46\x55\x16\x4b\xa5\xb3\x35\x9e\x49\x66\x92\ +\x0a\x55\xea\x4e\xe5\x7c\x08\x04\x6e\xcf\x4c\x27\xc5\x39\xa8\x2e\ +\x60\xc1\x99\x44\x8c\x66\x4a\x91\xae\x84\x47\x20\xd2\x22\x68\x2a\ +\xaa\xe2\x51\x3c\xf0\x24\xf7\x48\x9f\x96\x59\xf0\x7f\x2f\xa0\x7d\ +\xa4\x0f\x64\x53\xb1\x52\x92\xa8\x04\x1c\x6d\xc7\x31\x10\x26\xd6\ +\x2b\x51\x80\x0c\x53\x7f\x08\xa2\xa6\xdd\xa4\x4e\xc3\x38\x26\x70\ +\x9a\x05\xd4\xa1\xe2\xb2\xad\x8a\x44\x8d\x2f\x68\xe3\xa0\x15\xe8\ +\x1d\x35\x56\xf0\x66\xcc\x23\xba\x88\x44\x28\x8a\x0e\x19\x66\x27\ +\xc9\x22\xa3\x10\x94\x08\x68\x82\xf6\x88\x7c\x0e\x6d\x09\x4c\xb6\ +\xea\x05\x98\xec\x0e\x2d\xa0\x61\x97\xba\x2f\xf8\xa3\x48\xd3\x90\ +\xcf\x38\x74\xc4\x1e\x86\x13\xe0\x21\x35\xa0\x7c\x40\xc1\x03\x6e\ +\x58\x70\x9d\xf1\x4e\xff\xca\x40\x60\xdd\x1b\x18\xfb\xe1\xc2\xc2\ +\x21\x71\xf6\x82\x05\x02\xd3\x8a\x20\xd7\x50\xd2\x1b\x30\x8b\xcc\ +\x4f\x2b\xd2\xed\x73\x0e\x9c\x9e\x1b\xd4\x25\x5c\x0a\x9d\x64\xa0\ +\xba\x24\x02\x6b\x44\x65\x21\xb8\x0d\x04\xb6\xed\x80\x24\x67\xc3\ +\x76\xc8\x59\xbb\xa9\x35\x3d\x47\x01\xc3\x7d\x24\xb0\x41\x04\x09\ +\x03\x22\x23\x72\x41\x5b\x44\x86\xa5\x5a\x40\x33\xd3\x4e\x0d\x06\ +\x47\x79\x19\x8c\x01\xea\x85\x14\x3d\xf8\x38\x2d\x08\xd6\xb6\x6d\ +\x34\x30\x88\x97\x2e\x40\xd8\x81\x8d\xa1\x04\xb1\x49\xd3\x90\xae\ +\xe3\x8b\x1d\xb2\x0d\x4d\x8e\x0c\xa3\x79\xe0\x01\x8f\xba\x18\xcc\ +\x11\x88\x9c\x14\x2b\xa1\x60\x49\x1c\xd0\x80\xed\xcc\x2c\xed\x0c\ +\xbb\x48\x03\xdf\x43\x5c\xe4\x42\xa9\x30\xb5\x20\x37\x22\x7d\x07\ +\x0c\xb4\x51\x3e\x1c\x57\xdf\x9b\xfb\x7e\xdd\xf4\x3d\x01\x7a\x08\ +\x05\x54\x5b\xca\xf4\x01\x83\x7a\xd6\x21\x4c\x0b\xc9\x8d\x6c\xd9\ +\x17\x38\xc9\xbb\x90\xfc\x21\xd6\xc6\x91\x6b\x3c\x15\x9c\x98\x13\ +\x94\xa1\xb9\x2d\x63\x51\x64\x69\xe8\x78\x8f\x4a\x02\xc9\xc4\xa2\ +\x60\x09\xd8\x69\xda\xf9\x74\xfa\xae\xa7\x7f\xa7\x83\x01\xb0\x4b\ +\xf4\x78\x7b\x5d\x6e\x36\xcb\x37\x2c\xfc\x84\x8b\xe4\x35\x53\xb8\ +\xac\xef\x36\xc5\x72\x57\xed\x3e\x15\x75\xf5\xf6\xd0\xd4\xd5\xc7\ +\x70\x59\xb4\x9f\xe3\x53\xe2\x25\xf4\x03\x02\x03\x7e\x64\x87\xd3\ +\x1b\x9d\x55\xbe\x5f\x5e\xdd\x35\x4d\x8a\xfd\x57\x55\xee\x96\xdb\ +\xb2\x29\xea\xb7\xdb\xbc\xfe\x58\xd4\x71\xb4\xf8\x79\x7e\x68\xf2\ +\xba\x19\x21\xdb\x72\x3d\xba\x2e\x76\xeb\xd1\xfc\x61\xa8\x4d\x89\ +\x5f\x4b\xd5\x61\xeb\xfc\x70\x9b\xd7\x75\xfe\x34\x6a\x49\x68\x7c\ +\x11\xb6\x64\x1d\x36\x6c\xf6\xbe\x3c\x94\x57\xe5\x86\x2e\xc2\xc7\ +\x4d\xf1\x76\x5d\x1e\xf6\x1b\x0c\x52\xee\x68\xe1\x6f\xab\xfb\xa2\ +\xbe\xde\x54\x0f\xfd\xfd\x62\x97\xe3\xd7\xfc\x2a\x5f\x7d\xa4\x27\ +\xaf\x58\x58\xbe\x5a\xdd\x6d\xef\x36\x79\x33\x7a\xfe\x7b\x33\x7e\ +\x2c\x7a\x23\xbd\x32\xe9\xf3\xe9\xf1\x93\xd3\xfe\xb4\xe2\xd1\xb4\ +\xef\xe4\xbe\xf4\x68\xba\xa3\x7c\x3d\x9d\x17\x4f\x27\x35\x77\x7c\ +\x26\x8d\xac\xec\x25\xc9\x63\x84\x52\x44\xdd\x20\x35\x5a\x08\x2a\ +\xa7\x05\xa0\x7b\xd4\x31\x22\x1c\x87\x7b\xa3\xad\xc4\xef\x90\x95\ +\x19\x15\xe6\xa7\x98\x11\x51\x30\xd1\x08\x6d\x6a\xe2\xba\x05\x29\ +\xf1\x8c\x41\xac\x43\x8c\x56\xd1\x2d\x2c\x96\x45\x08\x21\xc6\xd9\ +\x10\x56\xd2\xbe\xa1\x25\xa4\x8b\x32\x71\x0f\x94\x6d\x4c\x18\xef\ +\x08\xb4\xfc\x5c\xef\xf1\x90\x9f\x46\x66\x0a\xef\x61\x8b\x55\x23\ +\xad\x64\x09\xbb\xc7\xfc\xee\x18\xee\x98\x1e\x75\x3e\xf7\x9a\x01\ +\x65\x14\x92\x78\xf7\x9a\xa1\xbb\x42\xc4\xa6\xe7\xfb\xc8\x46\x88\ +\xf8\x50\x0e\x5a\x89\xef\x12\x67\x39\xe3\x2e\xe7\x46\x9f\x87\xc7\ +\x8f\xce\x58\x55\xcc\xc5\x6c\x4e\x4f\x34\xa0\x36\xa4\xa3\xab\xd1\ +\xc5\xb8\xa1\xa2\xa7\x4a\x2a\xd4\x72\x8c\x24\x95\xf5\xc9\x4b\xe0\ +\x84\x2d\x42\x21\x53\x42\x90\x91\xe6\x43\x71\x83\x18\x3c\xf9\x33\ +\x82\x30\x82\x3e\x87\xee\xea\x3e\x4c\xd8\x84\xd3\xbf\xf6\x5a\x7c\ +\x49\xe3\x33\x23\x7f\x3a\x5a\x41\xff\x62\xb4\x7e\xba\x9c\x76\xdd\ +\x9f\x6d\xf3\xf8\xf9\x36\xe1\x3d\x76\x3b\xdb\xb3\x6d\x30\x0e\xa7\ +\x67\x3c\x58\x9a\x3e\x6a\xd4\xbd\xeb\x11\x9e\xf1\xe3\xfe\x69\x28\ +\x3b\x9f\x65\x5e\x0a\x5c\xc8\xc6\x01\xe5\xfe\xeb\x03\x4a\x3f\xc3\ +\x73\x5b\x8a\x6f\xd0\xf3\x7a\x35\x62\xf3\x97\x12\x0c\x79\x5f\x30\ +\x45\xcf\xcc\xe7\x10\x15\xa8\xfb\xa1\x84\x88\x42\xa3\x8b\xa4\x95\ +\xb2\x22\x3c\x7b\x44\x15\xcc\x55\x46\x4f\x17\xf5\x79\x6a\x41\x5d\ +\x19\xd4\x0e\x7c\xd6\x7f\x5d\x00\x74\xe9\xbf\x25\x10\x9e\x71\x42\ +\x3f\x89\x9e\x5d\x9e\xd1\xe3\x66\x54\xd7\x5f\xd6\xfe\xdc\xf8\x2f\ +\x32\xac\x1f\xe0\x25\x8a\x0d\xdf\x62\x78\x89\x63\x27\xdf\x7f\x38\ +\x43\xb2\xd3\xaf\x4e\x9c\x90\xec\x64\x25\x09\xc9\xee\xea\xcd\xb7\ +\x6f\x4e\xbf\x2e\xf2\xdd\x33\xac\x3b\x55\x32\xec\xff\x8c\x69\x17\ +\x8b\x9b\xcf\x05\x51\xfe\xd9\x20\xea\xa4\x83\x14\xb4\x6d\x10\xed\ +\xae\xe8\x35\x9d\x42\x34\x87\x02\xcf\x50\x94\xd0\xe3\xb0\xff\x49\ +\x10\xa5\x67\x03\x9a\xa3\xa0\x0b\x5c\x76\xf4\x30\x9f\xdb\x40\xec\ +\xf4\xf3\xb8\x59\x78\x13\x2b\xe8\xd1\x02\xa4\x37\x34\x3d\x4a\xe3\ +\xd7\x10\xfa\x35\x21\xd4\x7e\x7d\x08\xfd\x3a\x35\x78\x1a\x54\x5f\ +\xd5\xe0\xd9\x03\xfb\xd5\x09\x02\x64\xa0\x97\x5a\x73\x01\xe9\x05\ +\x15\xc6\x24\x39\xc8\xe8\x22\x69\x15\x2b\x69\xe3\xe8\x0d\x11\xbd\ +\x55\x44\x8d\xfc\x9a\x20\xce\xb8\xd0\x17\x24\x08\xff\xb5\x09\x82\ +\xf3\xdf\x7f\x82\x68\x8a\xc7\x26\xed\xfe\xb8\xdd\x2c\xc3\x5f\x42\ +\x60\xdb\x75\x71\x28\xea\xfb\x31\x91\xbb\x4d\x57\xbb\x66\x7e\x28\ +\x3f\x15\x4b\x7a\xc1\x20\x04\x97\x52\x98\xfd\xe3\xdb\x88\x53\x1b\ +\x2c\xb5\xde\xe6\x9b\x88\x3c\x84\xef\x74\xf5\xd0\x0b\x25\xe8\x8b\ +\x05\x27\x26\xf8\xf2\xd8\x72\xe2\xdf\x61\x25\xd7\xf9\xb6\xdc\x3c\ +\x2d\xbf\x2f\x1b\xdc\x2f\xf2\xed\xe4\x3f\x8a\x3a\x9f\xfc\x08\x3f\ +\x1b\x6d\x13\x8c\x40\xee\xa1\xe7\xe2\xe3\x98\x4a\xdf\xeb\x03\x91\ +\x8d\x57\x7e\x6c\xf6\xf0\xb5\x39\xd8\x12\x75\xcc\xb3\x35\xca\x61\ +\x95\x6f\x0a\xca\xae\xce\x59\x67\x39\x44\x1d\xea\x38\x2e\x9c\x43\ +\x16\xbd\x68\x60\xf5\xdd\x73\x54\xaf\xc8\xe6\xb4\xbf\x33\xec\x0c\ +\x1d\x31\xed\x71\x84\x7f\x6e\x0b\x2f\x6c\xe2\xe8\x78\x4f\x8e\xf1\ +\x3e\xaf\xcb\x7c\xd7\x9c\x3b\xda\xab\x6a\xb3\xee\x4e\xbf\x2e\x9a\ +\xd5\xed\xaf\x3e\xec\x97\x0f\xf0\xcf\x58\xc9\x66\xf2\xfd\x06\x91\ +\xf7\xed\xbc\xfb\xaa\xda\x3c\x2e\x60\x5f\xac\xca\xeb\x72\x95\x37\ +\x65\xb5\x5b\xfe\x21\x69\x39\x9b\x7c\x8f\x65\xfe\x61\xfa\x8e\x5e\ +\x80\x5d\x2c\x82\xe5\xde\xe1\x37\xce\xed\x65\xcd\x64\xf5\xe7\x0a\ +\x4f\x0a\xb9\x52\x19\xe9\x3d\xc4\x11\x8a\x77\xad\x39\x84\x8b\x9c\ +\xcd\xc7\x57\x49\x2b\x46\xdf\x3c\x42\xc8\x46\x60\x26\xdd\x83\x28\ +\x35\x0e\xcc\xfd\xf7\xef\x8a\xc7\x7d\x55\x63\xe3\xe5\xa6\x88\x7f\ +\x1c\xb4\xb8\xad\xb6\xc5\xe2\xa9\xaa\xcb\x8f\x8b\xf7\xed\xd7\x32\ +\x0f\x8b\x0f\xf9\xd5\x22\xfc\xd9\xd0\xa2\x5c\x55\xbb\xc3\x62\x55\ +\xd6\xab\x4d\x91\xed\x77\x37\x2f\x0e\xfb\xb8\xde\x97\x97\x53\x9b\ +\x09\x2f\x15\x57\xfc\xc5\xb6\x4f\x47\x6d\x3f\x93\xbe\x5e\x15\xd9\ +\xb3\x8a\x0c\x8c\x7a\x46\x91\x8d\xf5\x17\x79\x4e\xee\x7f\xbd\x36\ +\xb3\x9e\x7e\x2c\x7f\xd5\x66\xff\x7b\xda\x8c\xbe\xf5\xc7\x25\x13\ +\xc1\xcd\xb5\x50\xc6\x6a\x35\x4b\x3f\xf5\xb7\xa1\xcc\x32\xe3\x8d\ +\x87\x6c\x43\x84\x06\x95\x84\x7b\x15\x65\x67\xbc\xe8\x73\xa2\x8c\ +\xbe\x00\xfb\x95\xa2\x0c\x8e\xf0\xfb\x17\x65\xe7\xaa\x76\x2e\x7f\ +\xeb\x0c\x14\xde\x02\x31\xc7\xf4\x8c\x2b\xaa\xae\x51\xe4\xbf\x66\ +\xa0\x7f\x9e\x0c\xe4\x4e\x74\xe1\x6b\x06\x7a\xcd\x40\xc7\xbe\xf3\ +\x9a\x81\x5e\xce\x40\x8e\xbf\xf4\x64\xed\xfc\x63\x81\xff\xa7\x19\ +\x48\x7c\xee\xb9\xf1\xd7\xd7\x40\x52\x64\x08\x51\xca\x87\x0c\x84\ +\x36\xca\xbe\x66\xa0\x7f\xa2\x0c\x74\xea\xc5\xaf\x19\xe8\x35\x03\ +\x1d\xf9\xce\x6b\x06\xfa\x4c\x06\x12\xcf\xe8\xb8\xe7\x33\x90\xb0\ +\xbf\xf3\x0c\xd4\x7f\x6c\x3f\x84\x5f\x17\xf4\x27\xb6\xef\xbe\xf9\ +\x6f\x78\x95\xb1\x1d\ +\x00\x00\x08\xa5\ +\x00\ +\x00\x1f\x52\x78\x9c\xed\x58\x5b\x6f\xdb\x38\x16\x7e\xef\xaf\xd0\ +\xba\x2f\x0d\xd6\x92\x78\x17\xe9\xc6\x19\x2c\xa6\x98\xc5\x00\x5d\ +\x2c\xb0\xd3\xc1\x3e\x0e\x14\x8b\x76\xb4\xb1\x25\x43\x92\x63\xbb\ +\xbf\x7e\x3f\xca\xba\xc6\x4a\x26\x33\x0f\x7b\xad\x83\x56\xd4\xb9\ +\x90\x3c\x17\x7e\xe7\x50\xb7\xdf\x9d\x76\x5b\xef\xc9\x16\x65\x9a\ +\x67\xcb\x19\x0d\xc8\xcc\xb3\xd9\x2a\x4f\xd2\x6c\xb3\x9c\xfd\xfc\ +\xe5\x07\x5f\xcf\xbc\xb2\x8a\xb3\x24\xde\xe6\x99\x5d\xce\xb2\x7c\ +\xf6\xdd\xdd\xbb\xdb\x3f\xf8\xbe\xf7\x7d\x61\xe3\xca\x26\xde\x31\ +\xad\x1e\xbc\x1f\xb3\xc7\x72\x15\xef\xad\xf7\xe1\xa1\xaa\xf6\x8b\ +\x30\x3c\x1e\x8f\x41\xda\x10\x83\xbc\xd8\x84\x37\x9e\xef\x43\xb3\ +\x7c\xda\xbc\xf3\x3c\x0f\xcb\x66\xe5\x22\x59\x2d\x67\x8d\xfc\xfe\ +\x50\x6c\x6b\xb9\x64\x15\xda\xad\xdd\xd9\xac\x2a\x43\x1a\xd0\x70\ +\xd6\x8b\xaf\x7a\xf1\x95\x5b\x3c\x7d\xb2\xab\x7c\xb7\xcb\xb3\xb2\ +\xd6\xcc\xca\xf7\x03\xe1\x22\x59\x77\xd2\x6e\x33\x47\x5e\x0b\x51\ +\x63\x4c\x48\x58\xc8\x98\x0f\x09\xbf\x3c\x67\x55\x7c\xf2\xc7\xaa\ +\xd8\xe3\x94\x2a\x23\x84\x84\xe0\xf5\x92\x6f\x93\x5a\x9c\xb6\xf0\ +\xc4\x8b\x9b\xa9\xb9\xc3\xd5\xe1\xfd\x3d\xfe\x75\x0a\x2d\x21\x28\ +\xf3\x43\xb1\xb2\x6b\x68\xda\x20\xb3\x55\xf8\xe9\xcb\xa7\x8e\xe9\ +\x93\x20\xa9\x92\xc1\x34\xad\xf3\x47\xeb\x8e\x22\x92\xc5\x3b\x5b\ +\xee\xe3\x95\x2d\xc3\x96\x5e\xeb\x1f\xd3\xa4\x7a\x58\xce\x94\xd8\ +\x9f\xea\xf7\x07\x9b\x6e\x1e\xaa\x01\x21\x4d\x96\x33\x58\xc8\x22\ +\xa6\xea\xf7\x76\x0f\x8b\x2e\x91\x48\xc0\xd9\x45\xb4\x99\x78\xc8\ +\x12\xcf\xb4\x92\x7c\xe5\xb6\xb2\x9c\xc1\x11\x36\x68\x5d\xd7\x69\ +\xe6\x87\x6a\x7f\xa8\x7e\xb1\xa7\xca\x66\x97\x29\xb0\xf9\x81\x25\ +\x35\xdb\xa9\x75\xb4\xd9\x1d\x26\xb8\x4d\xec\xba\x74\x13\x5d\xf6\ +\xeb\xde\xb0\x61\x5d\xf3\xc0\x2d\xe2\x24\x8d\xb7\x7f\x76\x0f\xa4\ +\xda\x45\x6e\xb0\xe8\x2a\xdf\x6e\xed\x0a\x46\xc7\xdb\x63\x7c\x2e\ +\x67\xad\x40\x1d\xac\xc5\x43\x61\x91\x5c\xef\xdd\x7e\xe3\xa2\x9d\ +\x83\x53\x21\x3a\x39\xb7\xe4\x78\x09\xc1\xa2\x9e\xbd\x69\x88\x3f\ +\x67\x69\x85\x2c\x3a\x94\xb6\xf8\xc9\x45\xe2\xaf\xd9\xcf\xa5\xbd\ +\x92\xfa\x52\xc4\x59\x89\xb0\xef\x96\xb3\x5d\x5c\x15\xe9\xe9\x03\ +\x9d\x13\xf7\x17\x28\xa3\x25\x33\x02\x63\x46\x58\xa0\x99\x56\xfc\ +\xa6\x53\x5f\x9d\x96\x33\xc6\x64\xc0\x94\x20\xac\xa7\x9e\x11\xc9\ +\x88\x05\x91\x89\xb8\xea\xa8\xeb\x49\xd9\xf5\xa4\x6c\xb1\x9c\x71\ +\x11\x70\x21\xa9\x06\x3a\x84\x8d\x43\xc7\xce\x78\xb3\x43\x9d\xa3\ +\x26\xfc\x78\xd7\xf0\x6f\xcb\x2a\xdf\xb7\xb2\xc8\x99\xea\xbc\x45\ +\xa2\x38\xa2\x8f\x19\xf3\x62\xf1\x7e\x5d\xff\x3e\xd6\xa4\x1c\x3e\ +\x4c\xab\xf3\x82\x7e\x9c\xf5\x3a\xf9\x7a\x5d\x5a\x2c\x4c\x06\xb4\ +\x3a\x83\xa1\x81\xb5\x54\x67\xc2\xef\x5d\x8d\x4c\xad\x46\xa7\x57\ +\x1b\x38\x2c\x1c\x9b\xfd\x6f\xcc\x4b\xf6\xbf\x9c\x97\x9d\xeb\xf6\ +\x40\xa0\x3d\x7c\x87\xaa\xd1\x6a\x74\x10\x54\x9d\x1d\x50\x8e\x45\ +\x79\x32\xbb\x72\xff\xd3\xfe\x17\x6c\x88\x78\x0b\x8f\x33\xfc\x47\ +\x27\x25\xce\x17\x09\x8a\x42\x80\x07\x99\x94\xf9\xea\xe0\xf4\x95\ +\x69\x9a\x1d\xf8\x79\x91\x6e\x52\x40\x5e\x2d\xc7\x68\xc0\xeb\xdf\ +\x58\x07\x21\x1d\xd8\xc6\x22\x2e\x1a\xeb\x6f\x43\x87\x7a\xf5\xa8\ +\xb3\xd4\x21\x6d\xf2\x94\xda\x63\x0f\x8d\xf7\x71\x17\xdb\x7d\xbc\ +\xb1\x75\xa6\x23\x8b\x2e\xa9\xde\x30\xee\xf3\x22\xb1\x45\xcb\x52\ +\xf5\x6f\xc4\x6a\x0e\xc3\xa5\x87\x78\xf7\xcc\x18\xcc\xda\xf1\xc9\ +\x34\xbf\x7c\x88\x93\xfc\x88\x60\x3f\x67\x7e\xcd\x73\xe4\x17\x0f\ +\xb4\x36\x44\x47\xfc\x39\xdb\x25\x13\x35\x01\xe5\x5a\x4b\x75\xc5\ +\xc4\x7a\x48\x1e\x4d\x94\xee\xc0\xb7\x67\x1e\x8a\x02\x49\xec\x6f\ +\xe3\xb3\x85\x51\xf5\xa3\xf5\x6a\xf9\x90\x1f\x37\x85\x73\x4e\x55\ +\x1c\xec\x73\x4d\x14\xac\x83\x6b\x50\xfc\xc3\xe5\x98\x34\x65\x71\ +\x20\xe1\x74\xfd\xfb\xfb\xfc\x34\x3d\xc1\x31\xcd\x60\xac\xdf\x15\ +\x5a\xfa\x82\x40\x5b\x79\x23\x76\xe5\x96\x46\xe2\xd4\xe3\xda\x73\ +\x56\x6d\x7b\x9b\x09\x3b\x5b\xc5\x49\x5c\xc5\x7d\xd4\x5b\x0a\xf2\ +\x85\x76\x45\x31\x59\x2f\xfe\xf6\xe9\x87\x0e\x0e\x57\xab\xc5\xdf\ +\xf3\xe2\xb1\x47\x32\x27\x10\xdf\xa3\xe4\x2e\x67\x1d\x44\xbb\x52\ +\xbb\x5a\x38\x18\x88\xab\xbb\x74\x87\x58\xba\xf6\xe7\x8f\xe8\x42\ +\x90\x7f\x1d\x63\x24\xec\x8e\x5b\x3f\xe9\x65\xda\xc2\x5e\xda\x9b\ +\xc9\x8e\x30\x59\xed\x52\xa7\x14\xfe\x54\xa5\xdb\xed\x8f\x6e\x91\ +\x21\x6c\x87\xcd\x46\x5b\x64\x1d\xd8\x71\x1b\xb6\x86\xd6\x6f\x9b\ +\xde\x01\xa3\x80\x77\xce\xdb\xc6\xf7\x76\xbb\x9c\x7d\x76\x4c\xef\ +\x8a\xbb\x29\xf2\xc3\x7e\x97\x27\xb6\x51\x6f\x1d\xb7\x19\x1e\xc6\ +\x8d\x60\xda\x74\xc7\xb3\xba\x02\x49\x12\x50\xc5\x28\xd3\xac\x01\ +\xcb\xf6\x4d\x05\x5c\x11\x69\xb4\x9a\xfb\x4a\x05\x94\x68\xe4\xed\ +\x4d\x5f\x09\x37\xbd\xc7\x06\x73\xd6\xc3\x2d\x1a\xf1\x0f\x82\x07\ +\x11\x15\x9c\x89\xb9\xd2\x6e\xc4\x44\xd4\x63\x6e\xb3\x33\xce\xa4\ +\x1c\x06\x6e\x1f\x57\x0f\xc3\x40\xd4\xe5\x01\x38\x02\xb9\x68\x36\ +\x64\x80\xfe\x17\x8f\x09\x15\x18\x4a\x84\x98\x0b\xa1\x03\x23\x95\ +\xe1\xde\xf7\x9e\x83\x67\x13\x45\x1a\x44\x13\x48\x67\xbb\xc7\x08\ +\xd8\xd4\x48\x33\x17\xb0\x44\x28\x00\x72\x4d\x13\x1c\xc6\x09\x1d\ +\x05\x0a\x0b\x18\xa7\x0b\x22\x67\x3a\xa2\x73\x61\x18\x04\x8d\x70\ +\x82\x38\xce\x94\x4a\x48\x9a\x08\x23\x60\x3c\x90\x0f\x35\x85\xc0\ +\xa4\xb9\x24\x34\x10\x82\x2a\xed\x7d\xf6\x24\x0b\x18\x89\x98\xe1\ +\x73\x05\xe3\x51\x63\x0c\xc5\x9c\x42\x06\x44\x52\x14\xa0\xb9\xe2\ +\x51\xa0\x85\x16\xdc\xe3\x32\x88\x64\x44\x19\x9c\x7c\x29\x11\x0a\ +\x9b\x94\x81\xd2\x42\xc9\xa8\xa6\x29\x2a\xb9\x86\x36\xe6\xe1\x9c\ +\x11\x65\x40\x45\xd9\x21\xb0\xd6\xf3\x29\x0f\x04\xe3\x50\x96\x18\ +\x10\xca\x23\x90\x50\xd6\xb8\xa6\x1c\x6b\x47\x90\x93\x4c\x4b\x68\ +\x3b\x32\x93\x9c\x28\x35\x57\x6e\xf3\xd8\xb2\xf1\xe0\x1e\x11\x69\ +\xcd\xe4\x1c\x51\x71\x31\x8e\xa8\xc7\x22\x14\x2f\xc3\xb9\x00\x0d\ +\x71\x8b\x24\xaa\x01\xb6\x6e\x02\x25\x49\x84\x5c\x70\x54\x6a\x88\ +\x8c\x3c\x38\xd0\x40\x03\xfb\x31\x22\x30\xda\x40\x10\x24\xce\x90\ +\x33\x88\x74\xc4\x1d\xf4\xd1\x08\xca\xa0\x22\xe4\xb0\x3a\x42\xf7\ +\x2d\x29\x81\x2a\xa0\x2f\xa2\x04\x75\x58\x29\xf8\x5c\xc0\x22\x47\ +\xc3\x66\x89\x80\xd5\x18\x12\x0e\xbb\xe1\x49\x17\x43\x01\xa3\xf5\ +\x5c\xa2\xc8\x10\xee\xb6\x8d\xe8\x70\x1a\x48\x24\x21\xbc\x0e\x3e\ +\x88\x1c\x1b\xe7\x06\xee\x85\xba\x84\x09\xce\x00\x38\x52\xc0\x52\ +\x6e\x22\x27\xa6\x11\x30\x6c\xd6\x29\x23\x0b\x9d\x85\xba\xa6\x2a\ +\xca\x9d\xcb\x11\x7a\xca\x22\xcd\xe7\x92\xd2\x80\x19\x49\x55\x4d\ +\x53\x4c\xc0\x13\x42\x1b\x17\x5a\x59\x27\x95\xc6\x4c\xc8\x0e\x50\ +\xb1\x75\xa9\x23\x97\x55\x30\x4c\x13\x06\x97\xbb\x4c\x13\x92\x23\ +\xb0\xcc\x25\xa2\xd0\x4a\x8f\x53\x12\x63\x86\xc8\xaa\x0b\x55\xe0\ +\x30\xd4\xbb\x94\xa8\x11\x8d\x24\xd7\x84\x4f\x26\xf4\xd7\x51\xde\ +\x37\x2d\x60\xdf\x58\xae\x81\x3f\x8b\xf7\xa4\xfe\xd5\x2f\x7d\x1b\ +\x88\xe9\x91\xc1\x46\x88\x0b\xbd\x38\x6c\xed\x22\xcb\xb3\xaf\x28\ +\x8e\x68\x18\x8b\xfc\xb1\x7e\xb5\xcd\xf8\x82\xfe\x0b\x57\x9d\xf0\ +\xa3\x54\xb4\x74\xd7\xbd\x01\x6c\x16\xf7\x87\xaa\x1a\xd2\xfe\x91\ +\xa7\xd9\x02\x30\x68\x8b\x8f\xbb\xb8\x78\xb4\xc5\x65\xb6\xcb\xd8\ +\xc7\x25\xbd\xa8\x46\x94\x5d\x9a\x8c\xde\x6d\x96\x8c\xd6\xaf\xa7\ +\xda\xa6\x78\x2c\xba\xb5\x93\x18\x75\xb8\x28\xe2\xf3\x48\xd2\x51\ +\x2f\x7d\x2d\x7a\xdd\x86\xd6\x7b\xe4\x29\x2d\xd3\xfb\x74\xeb\x5e\ +\xea\xe1\xd6\x7e\x4c\xd2\x72\x0f\x7c\xc4\x1d\xd4\x6d\xfc\x63\x8e\ +\xcb\xdf\x7a\x9b\x1f\x3b\xbe\xcd\x62\x3c\xfc\xfb\x78\xf5\xe8\x10\ +\x15\x1b\x8b\x57\x28\xa9\x07\x87\x63\x23\x5c\xdf\x4c\xa1\x5f\x83\ +\x64\x82\x0d\x91\xcc\xa1\xd6\x1b\x02\xd7\xf4\xef\xa3\xc0\xd1\x97\ +\xe3\xd5\x06\xfa\x5b\xc8\x5e\x0d\xd9\x54\x09\x61\x4c\x99\x11\xa3\ +\xe9\x76\x38\x1a\x40\xf7\x53\x23\x66\xdb\xe9\xf0\x86\x3d\x56\x45\ +\x97\x83\xd3\x0e\x38\x05\xee\x8f\x18\xae\xdf\x44\xf7\xa7\x23\x62\ +\xc6\xf3\x4d\x55\x5d\xa5\xb4\x34\xb8\xa1\x04\x91\xe0\x8a\x13\x31\ +\xf7\xfb\x61\xcf\x9d\x93\x9b\x41\x0a\x8e\x33\xaf\xcd\x3d\x2a\xc5\ +\xaf\xac\x86\xa9\x8d\x01\x56\xd3\x68\xce\x02\x15\x29\x09\x58\xb3\ +\x3e\x9b\xfb\xe3\xb7\x81\x14\xd7\xc0\x5d\x07\x8d\x94\x4b\x13\x44\ +\x5a\xc8\x9b\xb1\x5f\xdb\x1e\xc4\x9e\xf6\x79\x51\xf9\xc8\x59\x7b\ +\xf9\x6c\x12\x3e\xe4\x3b\x1b\x9e\x71\x55\x78\x0c\x3f\x35\xad\x69\ +\x19\x7e\x8e\xef\xc3\x4f\x45\xbc\xae\xc2\x74\x95\x67\x65\x7d\xdb\ +\x0c\xf6\xd9\xe6\xd5\x49\x4f\xc9\x3e\x45\xbb\x19\xa0\xaa\xa2\x7c\ +\xd3\x57\x65\xcf\xcf\x64\xef\x06\xc2\x57\x8d\x45\xd7\x41\xc8\xba\ +\x35\xd1\x28\xa5\x28\x44\x14\x78\xfb\x27\x0f\xd0\x2b\x5d\xe7\x32\ +\x6f\x07\x1e\xf1\xa8\xfb\x6b\xde\xd9\x5b\x84\x27\x66\x1e\x23\xf9\ +\xe0\xb6\x57\x20\x6d\x5a\xf5\x17\x65\x4e\xbf\x2e\x53\x5f\x59\x9b\ +\xd5\x5e\x94\xa9\xef\x27\x28\x7b\xd8\x9a\x7c\x26\x54\xdf\xdc\xe0\ +\x28\x86\x0e\xf0\xb9\xfe\x05\xbe\x5a\xd0\x8a\xcd\xf3\x6a\x43\xdf\ +\x02\x51\x84\x9a\xdf\x0e\x1d\xdd\x0a\x2f\x99\x74\xb9\x2c\xc7\xc5\ +\x6a\x74\x4e\x26\x83\x3e\x75\x0c\xb5\xa4\x1c\x55\xdc\x25\xbf\x44\ +\x01\x8e\xa4\x3b\x7d\xfd\xa8\x63\xa3\x75\x08\x94\x51\x86\xcd\x19\ +\xda\x26\xb8\x98\xe9\x9b\xd9\x54\x4e\xe1\xb8\x28\x62\x18\x9d\x77\ +\x9f\x04\x90\x27\xdd\x97\x00\x9c\x2c\x1c\x32\x4a\x59\x97\x56\x06\ +\xa7\x0e\x0c\xfe\x46\xf9\xa9\xf9\x5f\x4d\xad\x6e\x82\xd7\x72\xab\ +\xff\x52\xf1\x5a\x72\x5d\x7d\xe3\x98\xc8\xae\xeb\xcf\x23\xe3\xec\ +\xe2\x94\x8b\x57\xb2\x0b\xb7\xac\x0f\xef\xaf\x3f\x09\xdd\xbc\x90\ +\x6e\xd7\x1d\x0c\xf9\x97\xa5\xd8\xa0\x1f\x78\x01\x97\x15\x79\x13\ +\x2e\x47\xa2\x46\x62\x86\x2e\x5b\x52\xe1\x90\x78\xf4\xd2\x0b\xa1\ +\x9f\x0e\xd0\xcc\xeb\x39\xa5\xee\x2e\x61\x08\xfb\x06\xca\xff\x27\ +\xa0\xcc\x5f\x04\xe5\xeb\x9e\x72\x0a\x9e\x7f\x57\x4f\x39\x00\xec\ +\x6f\x3d\xe5\x64\xe8\xbe\x15\x9f\xff\xb2\xe2\xa3\x7e\x7b\xf1\x11\ +\xff\xe1\xc5\xa7\x1b\x36\x83\xfa\x71\xeb\xbe\x7a\xde\xbd\xfb\x27\ +\x3c\x52\x80\x76\ +\x00\x00\x07\x4d\ +\x00\ +\x00\x1a\xf4\x78\x9c\xed\x58\x5b\x8f\xdb\x36\x16\x7e\xcf\xaf\xd0\ +\x2a\x2f\x09\x76\x44\xf3\x22\x51\xa2\x66\x9c\x3e\x6c\xd0\xa2\x40\ +\x8b\x02\x4d\x83\x7d\x0c\x64\x89\xb6\xb5\x23\x4b\x86\x24\x8f\xed\ +\xf9\xf5\x7b\x48\x49\xd4\xc5\x9c\x69\x9a\xee\x2e\xb0\x40\x1d\x24\ +\x12\x3f\x9e\x1b\xc9\x8f\xe7\x1c\xe5\xe1\xbb\xcb\xa1\x70\x9e\x64\ +\xdd\xe4\x55\xb9\x76\x09\xc2\xae\x23\xcb\xb4\xca\xf2\x72\xb7\x76\ +\x3f\xff\xf6\xbd\x17\xb9\x4e\xd3\x26\x65\x96\x14\x55\x29\xd7\x6e\ +\x59\xb9\xdf\x7d\x78\xf3\xf0\x37\xcf\x73\xfe\x51\xcb\xa4\x95\x99\ +\x73\xce\xdb\xbd\xf3\x63\xf9\xd8\xa4\xc9\x51\x3a\xef\xf6\x6d\x7b\ +\x8c\x57\xab\xf3\xf9\x8c\xf2\x1e\x44\x55\xbd\x5b\xbd\x77\x3c\x0f\ +\x34\x9b\xa7\xdd\x1b\xc7\x71\xc0\x6d\xd9\xc4\x59\xba\x76\x7b\xf9\ +\xe3\xa9\x2e\xb4\x5c\x96\xae\x64\x21\x0f\xb2\x6c\x9b\x15\x41\x64\ +\xe5\x8e\xe2\xe9\x28\x9e\x2a\xe7\xf9\x93\x4c\xab\xc3\xa1\x2a\x1b\ +\xad\x59\x36\x6f\x27\xc2\x75\xb6\x35\xd2\x2a\x98\x33\xd3\x42\x44\ +\x08\xb1\xc2\x74\x45\xa9\x07\x12\x5e\x73\x2d\xdb\xe4\xe2\xcd\x55\ +\x21\x46\x9b\x2a\xc5\x18\xaf\x60\x6e\x94\xfc\x3a\xa9\xf8\x52\xc0\ +\x4e\xbc\x18\x8c\x9e\x9d\x7a\x87\xdd\x3f\xc2\x5f\xa3\x30\x00\xa8\ +\xa9\x4e\x75\x2a\xb7\xa0\x29\x51\x29\xdb\xd5\xc7\xdf\x3e\x9a\x49\ +\x0f\xa3\xac\xcd\x26\x66\x86\xcd\x9f\xf9\x9d\x9d\x48\x99\x1c\x64\ +\x73\x4c\x52\xd9\xac\x06\x5c\xeb\x9f\xf3\xac\xdd\xaf\x5d\xee\x1f\ +\x2f\x7a\xbc\x97\xf9\x6e\xdf\x4e\x80\x3c\x5b\xbb\xb0\x42\x1a\x72\ +\xae\xc7\x43\x0c\xb1\x21\x12\x46\x8c\x76\xa2\xbd\xe1\xe9\x94\xbf\ +\xd0\xca\xaa\x54\x85\xb2\x76\x3f\xd6\xc9\xb6\xfd\xf2\x29\x4d\x0a\ +\x89\x86\x1d\x34\x06\xaa\x53\x7b\x3c\xb5\x5f\xe4\xa5\x95\x65\x67\ +\x09\xd6\x30\x59\x90\x9e\x56\x6a\x06\x73\x3f\x80\x81\x87\x4c\x6e\ +\x1b\x65\xa8\x0b\x5b\x8d\x20\xee\x48\xcf\xc1\x2c\xec\xbd\x4c\xea\ +\x1f\xea\x24\xcb\x81\x71\x9d\xdc\xc4\x69\x5a\x15\x85\x4c\x61\xed\ +\x49\x71\x4e\xae\x8d\x3b\x08\xe8\x33\x8b\xf7\xb5\x04\x8e\xbd\x9d\ +\xdb\x60\x11\xf7\x8d\x9c\x72\xb9\x98\x0e\x68\x64\xa6\x77\x3d\xf8\ +\xb9\xcc\x5b\x20\xd3\xa9\x91\xf5\x27\x75\x20\xbf\x94\x9f\x1b\x39\ +\x3a\x23\xb0\xf7\x38\x40\xc2\xe7\x81\x30\xe8\x15\x50\x41\x51\x48\ +\x48\x24\x46\xf4\x42\x41\x96\x72\xc4\x08\xa3\x6c\x94\xa5\x53\x59\ +\x67\xf5\xfa\xe2\x6f\x63\x0e\xa3\xb0\xdf\x30\xd0\x6a\xda\xea\x38\ +\xc8\xf6\x5c\x00\x04\x64\xc6\x28\x1c\xa7\xda\x6e\x1b\x09\xfb\x86\ +\x27\x58\xd3\x5e\x0b\xd9\x49\x7b\xb0\xb1\x55\x1d\xbf\xc5\x9c\x88\ +\x14\xdf\x6b\xa8\x82\x95\xe7\xed\x35\x26\xf7\x26\xc2\x57\xbc\x09\ +\x62\xf1\x46\x5e\xf7\x06\x5a\xe9\x76\xf3\xa2\xb7\x87\xd5\x7c\xd9\ +\xff\x3d\x8a\xa8\xfd\x7c\x95\x22\xfc\x1b\x28\x12\x44\x04\x8e\x3d\ +\x0a\xd9\x8c\x22\x04\x63\x14\x11\x1a\xcc\x19\xc2\x7c\x44\x01\xa4\ +\x33\x86\x18\xd1\x3f\x4e\x10\xc5\xf9\xdf\x3b\xb2\x88\xf3\xff\x21\ +\x41\x22\x1e\xfd\x1f\x13\xe4\x77\x73\x88\xff\x8d\x04\xa1\x9c\x31\ +\x32\x27\x08\x64\x8b\x50\xf0\x25\x43\xb0\x40\x81\x2f\x88\xb8\x61\ +\x08\xc1\x21\x8e\xc6\x2d\x31\xcb\x3c\x42\x82\x3f\xc2\x3a\xa1\x28\ +\x0f\x2a\x26\xc3\xb7\x57\x55\x87\xe6\xa2\x2c\x73\x6f\xb6\xea\xe9\ +\xf8\xe5\x02\x94\x70\x62\x87\x51\xf8\x87\x58\x25\xae\x9d\x04\xc4\ +\xa2\x1e\xd8\x2a\xf3\xac\xaa\xd5\x2b\x66\xfa\x08\xbc\xaa\xce\x77\ +\x39\x94\x12\x2d\x47\xe1\xfe\xe8\xdf\x5c\x07\xb6\x7f\xb2\x36\x1a\ +\x86\x7e\xbf\xfa\x87\x95\xaa\x26\xfa\xcd\xac\x54\x15\xb2\xec\x29\ +\x97\xe7\xb1\xe4\x6c\x12\x73\x0e\xc7\x64\x27\x35\xd5\xe0\xc4\xb7\ +\xfa\xd7\x4f\x6c\xaa\x3a\x93\xf5\x30\xc5\xf5\x6f\x36\xd5\xb3\xb1\ +\x6b\xd1\xde\x2c\x16\x03\x56\xcd\x3c\xb6\xcf\x37\xfb\x24\xab\xce\ +\x6b\x97\x2e\x27\x9f\xab\xea\x00\xd4\x40\xc1\x72\x22\xbd\xa8\x6d\ +\xb9\x41\xaf\x56\xf4\x54\xd7\x40\x41\xaf\x48\xae\x12\x16\xa0\x1f\ +\xc3\x0e\x36\xfb\xea\xbc\xab\xd5\x46\xb4\xf5\x49\x2e\x35\xa1\xf6\ +\x9f\x54\xaf\xe7\x9d\x3a\xfa\xf6\x1d\xc6\x44\x42\xe9\x7a\x9b\x4d\ +\x75\xb1\x1b\x38\xe7\x25\x2c\xcc\x33\x3d\xcb\xcd\xea\x7b\x01\xd3\ +\xc4\x44\xfe\x0b\x12\x97\x31\x19\x2d\xa7\x60\xd1\x82\x0d\xa7\x7e\ +\x90\x6d\x92\x25\x6d\x32\x9e\xf0\x80\x00\x37\xc8\xd0\x58\x40\x73\ +\x19\xff\xfa\xf1\x7b\x93\xa6\xd2\x34\xfe\x67\x55\x3f\x8e\xe9\x47\ +\x09\x24\x1b\x68\x5b\xd6\xae\x49\x9d\xaa\x5d\x49\x63\x68\xf0\x0e\ +\x49\xfb\x21\x3f\xc0\xb9\xa9\x4e\xf2\xef\xd0\xd0\x01\xd7\xcc\xc4\ +\x4c\x58\x5d\xad\xd1\x68\x67\xb6\x96\x5d\xa7\x68\x6d\xae\xb3\xf4\ +\x90\x2b\xa5\xd5\xa7\x36\x2f\x8a\x1f\x95\x93\x69\x3a\x5d\xf5\x81\ +\x0e\x19\x6f\xb2\x8e\x87\xd5\xb0\x50\x3d\xda\x8d\x1b\x30\x3b\x70\ +\xb3\x79\x45\xb2\x91\xc5\xda\xfd\x49\x4d\x3a\x37\xb3\xbb\xba\x3a\ +\x1d\x0f\x55\x26\x7b\xf5\x61\xe3\x76\xd3\x8b\xb7\x63\x01\x19\xf3\ +\x78\x5b\x27\x65\xa3\x36\x01\xb6\x3c\x69\xeb\xfc\xf2\x0e\x6e\x03\ +\x27\xbe\x60\xe4\x0e\xc3\x1f\x72\xe7\x71\x42\x91\xe0\xc2\x57\xaf\ +\x02\x11\x68\x99\x30\x7d\x3f\x96\xa6\x63\xd2\xee\xe7\xc5\x42\x21\ +\x2c\xc0\x6c\x52\x18\x00\xfd\xd9\xe1\x24\x04\xdb\x5c\xf0\xbb\x28\ +\x40\x98\x41\x59\x74\x7e\x02\x10\xb2\xa2\x88\x28\xb9\x8b\x42\xc4\ +\xa3\xb0\xc3\x30\xa2\x81\xef\xf3\x3b\xc1\x91\x8f\x79\x2f\x18\x22\ +\x11\x32\x10\x24\x18\x4a\xad\x86\xe8\x60\x50\x04\x88\x46\xbd\x41\ +\x2a\xa0\x66\x6b\x10\x0c\x06\xdc\x80\x16\xd7\x37\xf1\x3c\x3b\x3f\ +\x3b\x01\x8c\xba\x88\x08\x56\x0d\x5e\x17\xd3\x04\x65\x58\x2b\x53\ +\x14\xb0\x20\xb4\x8c\xed\x5a\x06\xd5\x3e\x04\x7c\x87\x71\xac\xa5\ +\x23\x34\x44\x8e\x39\x8a\x42\xd8\xdf\x17\x40\xea\x8f\x76\x47\x7d\ +\x3b\x3a\x18\x78\xbe\xad\xce\x43\x15\xc6\x88\x33\x2c\x30\x14\xab\ +\xfb\x2d\xd0\x16\x1a\x03\xfd\xd3\x83\x49\xa9\xd6\xc3\xfa\x54\xc8\ +\xb8\xac\xca\x67\x48\x9b\x50\xcb\xeb\xea\x51\x0f\x65\xff\xde\xe5\ +\x8a\x18\x6a\xa1\xd0\xbf\x60\xc0\x55\x91\x05\x6a\xc6\x9b\x53\xdb\ +\x4e\xb1\x7f\x55\x79\x19\xc3\xa5\x91\xf5\xfd\x21\xa9\x1f\x65\xdd\ +\x59\xeb\xde\x3d\xf8\x3a\xae\xdb\x19\x72\xc8\xb3\xd9\x58\x96\xd9\ +\xcc\xbf\x36\x55\xe4\xf0\x88\xfd\x01\xcb\x12\xc8\xd0\x75\x9d\x5c\ +\x67\x92\x0a\xed\x5a\x97\x18\x0f\xd8\xb8\xd8\xa7\xbc\xc9\x37\x79\ +\xa1\x06\xfa\xb5\x90\xf7\x59\xde\x1c\xe1\x36\xc1\xc7\x9f\x0a\xfc\ +\xbe\x82\xaf\xae\x6d\x51\x9d\xcd\xbc\x2c\x13\x78\x78\x9b\x24\x7d\ +\x54\xf7\x0f\x02\x4b\x52\x48\xc0\xa7\x02\xbe\xe4\xa7\x59\xe0\xf6\ +\x9e\xd4\x50\xfe\x28\xe7\x37\xf7\x44\x35\x15\x82\x85\xc1\x9d\xea\ +\x0d\xc2\x9e\x07\x23\x48\x23\x34\x5c\x09\x75\xca\x2f\x40\x56\x55\ +\x03\x76\x3c\x0f\x91\xc2\x14\xbf\x3a\x55\x06\x1d\x6c\xa7\x6c\xc1\ +\x28\x9d\x18\xd4\x9a\xb7\x48\xaf\xf7\x0a\xe9\x3a\x3e\xc5\x90\x3c\ +\xdf\x2d\x1b\x34\xe8\xc0\xde\x7f\x35\xf9\x06\xb2\xfe\xc5\xbf\x3f\ +\xc7\x3f\xe6\xfb\xdc\xca\x3f\x95\x8a\xef\x42\x86\x22\x9f\x85\x86\ +\x44\x1a\x8c\x38\x12\x3d\xdb\x82\x3e\x67\xdb\x31\xe8\x9b\xc4\xa0\ +\x2c\x90\xff\x32\x68\x75\x63\xc0\x2e\x5f\x42\x76\x9d\xc9\x69\x60\ +\x6a\x4d\x08\x9d\xf1\xac\xd8\x8d\xe2\xcc\x38\xd4\xb3\xb9\xf1\x0e\ +\x98\x18\x52\x05\x89\x2c\xc2\x37\xd8\x8d\xe2\xdc\x38\x61\x5d\x6d\ +\x99\xc9\x19\x70\x6a\x90\x12\x7d\x8b\xad\x98\x55\x79\xee\x88\xb2\ +\xee\x96\x4f\x45\x07\x6c\x66\x32\xb2\xf9\x36\x20\x43\x1a\x60\xf0\ +\xe4\x96\xb1\xcd\xfa\x22\x0e\x63\x2a\x34\x59\xc9\x60\xc2\x1f\x0b\ +\xfa\x60\xd2\x86\xd9\x74\x07\xac\x4b\x5e\x86\x8e\x02\x89\x25\x77\ +\x04\x9f\x12\x71\x3e\xb2\xc9\x0f\xd8\x3c\x7e\xe8\x1f\x16\x11\x10\ +\x1c\x74\x94\x9d\x86\x6a\x05\x6f\x75\x3b\x64\xee\x41\x95\x69\x12\ +\x2c\xd7\x49\x08\x37\x25\x7d\xf4\x62\x05\xed\xfa\x06\x5d\x78\x83\ +\x56\x8b\x0e\x26\x46\x14\xd2\x78\x60\x68\xe0\x77\x94\x78\x11\x0d\ +\x4d\xca\x1f\x83\xb0\x82\x76\x5f\x06\x1d\xae\x46\x6f\x61\xe2\x8c\ +\xd8\xcc\xc2\x35\x08\x6e\x23\x98\xa0\x56\x03\x03\xf8\xad\xf5\x88\ +\x7f\x7d\x3d\xfa\xab\x19\xfa\x93\xc5\x48\x7f\x34\xf8\x51\x70\xf3\ +\xd1\x40\xe1\x76\x11\x1c\xaa\x44\x44\x48\xe0\x07\xac\x3f\x63\x9f\ +\x04\xc4\x5f\xa0\xea\x3f\x74\x71\x40\x55\x3f\x1f\xf2\x90\x60\xd6\ +\x37\xd0\x81\xe0\x9c\xe8\x3c\x13\xc2\x9b\xd0\xb2\xbe\x3a\x1f\x4c\ +\x75\x63\xce\x70\xc4\x86\x8c\xc6\x04\x66\xe2\x4e\xc0\x8b\xcf\xa8\ +\x1f\x6a\x34\x40\xd0\xa6\x51\x5f\x7d\x66\x84\x3e\x65\x81\xe8\xd1\ +\x45\x60\x16\x9e\xbd\xc2\xae\xe8\x15\x76\xc9\x27\x59\x56\x59\xf6\ +\x9f\xef\x76\xfe\x30\x45\x4c\x74\x93\xff\xb2\xdb\x75\x9f\xae\xf0\ +\x78\x50\x1f\xd3\x1f\xde\xfc\x1b\x69\x58\x64\x83\ +\x00\x00\x0f\x56\ +\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\ +\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\x30\x37\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\x36\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x64\x6f\x77\ +\x6e\x67\x72\x61\x64\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\x3e\x0a\x20\x20\x3c\ +\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\ +\x66\x73\x33\x30\x37\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\x34\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\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\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\x34\x33\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\x33\x37\x39\x63\x66\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\x38\x34\x35\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\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x38\x34\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\x38\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\x78\x31\x3d\x22\x33\x37\x30\x39\ +\x2e\x33\x32\x39\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\ +\x3d\x22\x31\x32\x38\x36\x2e\x37\x32\x39\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x78\x32\x3d\x22\x33\x39\x33\x35\x2e\x35\x32\x35\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x31\x30\ +\x37\x36\x2e\x36\x31\x37\x34\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\x30\x38\x32\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\x39\x37\x32\x32\x37\x31\x38\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x78\x3d\x22\x31\x31\x2e\x30\x36\x31\x31\x30\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\ +\x3d\x22\x2d\x30\x2e\x38\x30\x33\x34\x31\x30\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\x36\x34\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\x37\x32\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\x30\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\ +\x32\x35\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\x30\x37\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\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\x35\x37\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\x2d\x30\x2e\x31\x37\x33\x32\x35\x37\x34\ +\x2c\x30\x2c\x30\x2c\x2d\x30\x2e\x31\x37\x33\x32\x35\x37\x34\x2c\ +\x36\x39\x37\x2e\x33\x30\x36\x31\x36\x2c\x32\x32\x39\x2e\x33\x38\ +\x37\x35\x37\x29\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\x6f\x77\ +\x6e\x67\x72\x61\x64\x65\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\x38\x2e\x37\x31\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\x38\x2e\x37\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\x64\x3d\x22\x70\x61\x74\x68\ +\x33\x38\x35\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\ +\x3d\x22\x4d\x20\x33\x38\x31\x39\x2e\x39\x33\x31\x31\x2c\x39\x37\ +\x34\x2e\x30\x39\x36\x31\x20\x4c\x20\x33\x36\x37\x30\x2e\x34\x33\ +\x31\x31\x2c\x31\x31\x32\x39\x2e\x36\x35\x38\x36\x20\x4c\x20\x33\ +\x37\x35\x35\x2e\x32\x37\x34\x38\x2c\x31\x31\x32\x39\x2e\x36\x35\ +\x38\x36\x20\x4c\x20\x33\x37\x35\x35\x2e\x32\x37\x34\x38\x2c\x31\ +\x32\x36\x39\x2e\x30\x36\x34\x39\x20\x4c\x20\x33\x38\x38\x32\x2e\ +\x35\x35\x36\x31\x2c\x31\x32\x36\x39\x2e\x30\x36\x34\x39\x20\x4c\ +\x20\x33\x38\x38\x32\x2e\x35\x35\x36\x31\x2c\x31\x31\x32\x39\x2e\ +\x36\x35\x38\x36\x20\x4c\x20\x33\x39\x35\x39\x2e\x33\x33\x37\x34\ +\x2c\x31\x31\x32\x39\x2e\x36\x35\x38\x36\x20\x4c\x20\x33\x38\x31\ +\x39\x2e\x39\x33\x31\x31\x2c\x39\x37\x34\x2e\x30\x39\x36\x31\x20\ +\x7a\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\x30\x37\ +\x39\x32\x39\x35\x34\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\x6e\x6f\x6e\x7a\ +\x65\x72\x6f\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\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\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\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\ +\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x36\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x33\x38\x34\x38\x2e\ +\x36\x38\x37\x35\x2c\x39\x39\x39\x2e\x38\x34\x33\x37\x35\x20\x4c\ +\x20\x33\x36\x39\x39\x2e\x31\x38\x37\x35\x2c\x31\x31\x35\x35\x2e\ +\x34\x30\x36\x32\x20\x4c\x20\x33\x37\x38\x34\x2e\x30\x33\x31\x32\ +\x2c\x31\x31\x35\x35\x2e\x34\x30\x36\x32\x20\x4c\x20\x33\x37\x38\ +\x34\x2e\x30\x33\x31\x32\x2c\x31\x32\x39\x34\x2e\x38\x31\x32\x35\ +\x20\x4c\x20\x33\x39\x31\x31\x2e\x33\x31\x32\x35\x2c\x31\x32\x39\ +\x34\x2e\x38\x31\x32\x35\x20\x4c\x20\x33\x39\x31\x31\x2e\x33\x31\ +\x32\x35\x2c\x31\x31\x35\x35\x2e\x34\x30\x36\x32\x20\x4c\x20\x33\ +\x39\x38\x38\x2e\x30\x39\x33\x38\x2c\x31\x31\x35\x35\x2e\x34\x30\ +\x36\x32\x20\x4c\x20\x33\x38\x34\x38\x2e\x36\x38\x37\x35\x2c\x39\ +\x39\x39\x2e\x38\x34\x33\x37\x35\x20\x7a\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\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\ +\x36\x33\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\x6e\x6f\x6e\ +\x7a\x65\x72\x6f\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\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\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\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\x0a\x5e\ +\x00\ +\x00\x29\x34\x78\x9c\xed\x5a\xdb\x8e\xdb\x46\x12\x7d\xf7\x57\x68\ +\xe9\x17\x1b\x2b\xb6\xfa\x7e\x91\x47\xce\x83\x8d\x2c\x02\xcc\x62\ +\x81\x8d\x8d\x7d\x0c\x38\x24\x47\xc3\x1d\x8a\x14\x48\x6a\x46\x9a\ +\xaf\xdf\xea\xe6\x5d\xa4\x26\x76\xec\xd8\x59\xc0\x0a\x62\x89\xa7\ +\xab\xba\xbb\xaa\xeb\x54\x57\xd1\xbe\xfa\xe9\xb8\x4b\x17\x0f\x71\ +\x51\x26\x79\xb6\xf1\x08\xc2\xde\x22\xce\xc2\x3c\x4a\xb2\xed\xc6\ +\xfb\xf8\xe1\x67\x5f\x7b\x8b\xb2\x0a\xb2\x28\x48\xf3\x2c\xde\x78\ +\x59\xee\xfd\xf4\xf6\xc5\xd5\xdf\x7c\x7f\xf1\xae\x88\x83\x2a\x8e\ +\x16\x8f\x49\x75\xb7\xf8\x25\xbb\x2f\xc3\x60\x1f\x2f\x5e\xdd\x55\ +\xd5\x7e\xbd\x5a\x3d\x3e\x3e\xa2\xa4\x01\x51\x5e\x6c\x57\xaf\x17\ +\xbe\x0f\x9a\xe5\xc3\xf6\xc5\x62\xb1\x80\x65\xb3\x72\x1d\x85\x1b\ +\xaf\x91\xdf\x1f\x8a\xd4\xc9\x45\xe1\x2a\x4e\xe3\x5d\x9c\x55\xe5\ +\x8a\x20\xb2\xf2\x7a\xf1\xb0\x17\x0f\xed\xe2\xc9\x43\x1c\xe6\xbb\ +\x5d\x9e\x95\x4e\x33\x2b\x5f\x0e\x84\x8b\xe8\xb6\x93\xb6\x9b\x79\ +\x64\x4e\x88\x18\x63\x56\x98\xae\x28\xf5\x41\xc2\x2f\x4f\x59\x15\ +\x1c\xfd\xb1\x2a\xec\x71\x4e\x95\x62\x8c\x57\x30\xd6\x4b\x7e\x9a\ +\xd4\xfa\x98\x82\x27\x2e\x6e\xc6\x8d\x0e\x57\x07\xef\xef\xe1\xff\ +\x4e\xa1\x05\x50\x99\x1f\x8a\x30\xbe\x05\xcd\x18\x65\x71\xb5\x7a\ +\xff\xe1\x7d\x37\xe8\x63\x14\x55\xd1\x60\x9a\xd6\xf9\xa3\x75\x47\ +\x27\x92\x05\xbb\xb8\xdc\x07\x61\x5c\xae\x5a\xdc\xe9\x3f\x26\x51\ +\x75\xb7\xf1\x24\xdf\x1f\xdd\xf3\x5d\x9c\x6c\xef\xaa\x01\x90\x44\ +\x1b\x0f\x2c\x64\x94\x61\xf7\xdc\xee\x61\xdd\x05\x12\x46\x8c\xd6\ +\xa2\xcd\xc4\xc3\x21\x2e\xc7\x5a\x51\x1e\xda\xad\x6c\xbc\x34\x0f\ +\xef\x51\xeb\xba\x4e\x33\x3f\x54\xfb\x43\xf5\x5b\x7c\xac\xe2\xac\ +\x9e\x02\x36\x3f\xb0\xc4\x0d\x5b\xb5\x0e\xf3\xde\xc2\x04\x57\x51\ +\x7c\x5b\xda\x89\xea\xfd\xda\x27\xd8\x30\x75\x63\x30\x0a\x4e\x8f\ +\x83\xe2\x1f\x45\x10\x25\x10\x6a\xb5\xdc\x60\xd1\x30\x4f\xd3\x38\ +\x04\xa3\x83\xf4\x31\x38\x95\x5e\x27\x00\x53\x8d\x55\x19\x55\xac\ +\x99\x14\xa6\x2d\xab\x7c\xdf\xca\x82\x89\xd5\x29\x05\xbb\x2c\xe8\ +\xc3\x8c\x79\xb1\x7e\x79\xeb\x3e\x6f\x1c\x94\x83\xf3\x93\xea\xb4\ +\x26\x6f\xbc\x5e\x27\xbf\xbd\x2d\x63\x58\x18\x0f\x30\xe7\x70\xd0\ +\x80\xb5\x84\xb7\x58\x7d\xd9\x6a\x78\x6e\x35\x32\xbf\x9a\xea\x56\ +\xbb\x5a\x8d\xcd\x6e\x50\xfb\x14\xa4\x9f\xed\x46\x17\xf3\xeb\xbb\ +\x22\x06\x8e\xbe\x9c\xf1\xe7\xd0\xdd\xe3\x25\x28\x27\xfd\x5e\xb7\ +\x0d\xf8\x31\x4b\x2a\x20\xe3\xa1\x8c\x8b\x5f\x6d\x40\xff\x2b\xfb\ +\x58\xc6\x13\xa9\x0f\x45\x90\x95\xc0\x9e\xdd\xc6\xdb\x05\x55\x91\ +\x1c\x5f\x91\x25\x86\xff\x20\xeb\x69\xac\xb8\x31\xf0\xdb\xe7\x1c\ +\x49\x2e\x39\x56\xaf\x3b\xfd\xf0\xb8\xf1\xa8\xd2\x0a\x09\x63\xfa\ +\xb5\xc3\xd3\xc6\x13\x82\x22\x6d\x14\x93\x1d\x7a\x3b\x2b\x7b\x3b\ +\x2b\x5b\x6c\x3c\xa6\x91\xa6\x86\x49\xd3\xfb\xf9\x0f\x06\xe6\xb3\ +\x1e\x35\xec\x99\x00\xa6\x1c\x9b\xaf\xe6\x51\xbf\x76\x29\x7c\x09\ +\x29\x24\xd2\x8c\xe9\x25\xe1\x58\x23\x4a\x89\xec\x5d\x7a\x24\xd6\ +\x4d\x02\x7c\xad\x85\xee\xd0\x13\xa0\x52\x41\xd2\x27\x58\xf7\xce\ +\x3b\x52\x90\x35\x18\x23\xc2\x07\xa2\x74\x28\xfa\x5d\x9d\xa7\xfe\ +\x5c\xe7\x31\x25\xff\xda\xce\x9b\x4b\x89\xe6\x73\x52\xa2\x06\xfa\ +\x61\xfc\x87\x53\xa2\xf9\xbc\x94\x38\xb7\xda\x67\xa4\x44\xf3\xbb\ +\x29\xf1\x7b\xc4\xa0\xf8\x93\x63\x10\xb2\xe2\xff\x5d\x0c\x0a\xf1\ +\xed\xae\x65\xa1\xbe\xe5\xb5\x2c\xcc\xf7\x88\x41\x21\x9e\x8f\x41\ +\xf6\xd5\x62\x10\x23\xa5\x31\xa5\x8c\xd7\xd7\xf3\x12\xee\x52\xa4\ +\x05\x11\x72\x89\xcf\x23\x90\x51\xc4\x84\x22\xa3\x08\x54\xc4\x86\ +\x15\x25\x66\x1c\x81\x9a\x19\x84\x15\x61\xa3\x10\xec\x65\x3b\x8f\ +\x76\x5e\xda\x43\xc9\xba\x07\x37\x41\x9b\xd1\xaa\x74\x35\x6b\x75\ +\xb2\x95\xf5\x58\x94\x45\xde\xc4\xd3\x0f\xfb\xdf\xa0\x22\xc0\x8b\ +\xf5\x82\x51\xf8\x83\xcc\x4a\x9c\x6a\x09\x02\x79\x09\xbe\xf0\xac\ +\xcc\x93\xad\xbf\x9f\x99\xa6\xd9\x81\x9f\x17\xc9\x36\x81\x1a\xd9\ +\xc9\x51\x82\x98\xfb\x8c\x75\xe0\xf4\x06\xb6\x41\x55\xac\x1b\xeb\ +\xaf\x56\xb6\x4c\x76\xbf\x3a\x4b\x6d\x69\x1e\x3d\x24\xf1\x63\x5f\ +\x4b\xdf\x04\xdd\x31\xee\x83\x6d\xec\x82\x1a\x02\xa6\x8e\xea\x66\ +\xe0\x26\x2f\xa2\xb8\x68\x87\xa4\xfb\x8c\x86\x9a\xb8\xaf\x9b\xce\ +\x17\x67\xc6\xc0\xac\xdd\x38\x9e\x1f\x2f\xef\x82\x28\x7f\x84\x73\ +\x3d\x1f\x7c\xca\x73\x08\x25\x81\xc4\xf9\x80\xab\xe3\xec\x65\x6a\ +\x30\xe5\x93\xc1\x93\x1b\xe4\xc4\x50\xa2\x27\x83\x87\xa2\x80\x48\ +\xf5\xd3\xe0\x14\x83\x39\x5b\xf0\x58\x1b\x46\xe5\x5d\xfe\xb8\x2d\ +\xac\x57\xaa\xe2\x10\x9f\x2b\x42\x6b\x73\xb0\xad\xac\x7f\xa8\xa9\ +\xd0\x34\x50\x03\x09\xab\xeb\xdf\xdc\xe4\xc7\xf9\x09\x1e\x93\x0c\ +\xac\xf4\x9b\x96\x8c\x60\x32\x31\xb7\x91\x68\x9b\x34\x45\x2f\x49\ +\x1c\xad\xbe\xb9\x30\x68\xad\x6f\xef\xd1\xab\x5d\x5c\x05\x51\x50\ +\x05\xfd\x89\xb7\x08\xc4\x4a\x9b\x55\xaf\xa0\x7d\x5e\xff\xfb\xfd\ +\xcf\x5d\xd6\x0b\xc3\xf5\x7f\xf2\xe2\xbe\x4f\x58\x56\x20\xb8\x81\ +\xfe\x6c\xe3\x75\x99\xd8\xf6\x65\xe1\xda\xb2\x3d\xa8\xde\x26\x3b\ +\x38\x47\xdb\x2b\xff\x1d\x5a\x56\x88\xbd\x6e\x60\x24\x6c\xa9\xd6\ +\x4f\x5a\x4f\x5b\xc4\x75\x2f\x3c\xfb\xfa\x20\x0a\x77\x89\x55\x5a\ +\xfd\x5a\x25\x69\xfa\x8b\x5d\x64\x98\x9d\x57\xcd\x46\xdb\x04\x3a\ +\xb0\xe3\x6a\xd5\x1a\xea\x9e\xb6\xbd\x03\xdc\xc9\x93\x73\xe7\xa5\ +\xc1\x4d\x9c\x6e\xbc\x6b\x3b\xb8\x98\x8c\x6e\x8b\xfc\xb0\xdf\xe5\ +\x51\xdc\xa8\xb7\x8e\xdb\x0e\x89\x38\x8c\xa5\xc5\xa2\x9a\xc9\x85\ +\xc4\x30\x68\x28\x84\xcb\x85\xfd\x93\x0f\xf9\x10\x61\x22\x05\x59\ +\xfa\x86\x21\xa5\x94\x24\x83\x9e\xa5\xdb\x44\x7c\xdc\xe7\x45\xe5\ +\xdf\x26\x69\x5c\x37\xd9\xab\xbb\x7c\x17\xaf\x4e\x90\x27\xee\x57\ +\xef\x9b\xf0\x2c\x57\xd7\xc1\xcd\xea\x7d\x11\xdc\x56\xab\x24\xcc\ +\xb3\x72\x15\xa6\x79\x19\xa3\x7d\xb6\xbd\x38\xe3\x31\xda\x27\x1b\ +\x8f\x23\x6e\x24\xe1\x92\x5e\x94\x3b\x9d\xc9\x75\xe7\xb0\xed\x0f\ +\x75\x5e\x47\x22\x81\x89\x91\xaa\xcf\xe3\x97\x76\xf1\x29\x92\x5f\ +\xee\x81\xd1\xf1\xb8\x9f\x69\x50\xc5\xaf\x7c\xb9\xf4\xf5\xeb\xe1\ +\xca\xcd\xb1\x8a\x61\xd4\xef\x83\xea\x6e\x18\xc5\x4d\x55\xd0\xd7\ +\x1a\xb0\xbf\xd4\x56\x06\x91\xad\x4e\xed\x83\x3f\x1e\xf3\x8b\x43\ +\x0a\xc6\x3c\xc4\x59\x1e\x45\x50\x3a\x14\xf9\x7d\xbc\x7e\x89\xdd\ +\xa7\x79\xac\xd3\xc4\x5a\x21\xc5\x31\x67\x8a\xb1\x16\xb7\x77\x35\ +\xf8\x62\x7d\x73\xa8\xaa\x21\xf6\xdf\x3c\xc9\xd6\x40\x96\xb8\x78\ +\xb3\x0b\x8a\xfb\xb8\x58\x67\x79\x16\x37\xbf\xfd\xb2\x0a\x8a\x6a\ +\x84\xec\x92\x68\xf4\x1c\x67\xcd\x73\x33\xa7\x9b\x2a\x4d\xe0\x6b\ +\xcd\x5b\x2c\x0a\x20\x53\x17\x45\x70\x1a\x49\x5a\xb4\x2e\x72\xd6\ +\xdd\xee\x7b\x7b\x1f\x92\x32\xb9\x49\x52\xfb\xe0\x7e\xa6\xf1\x9b\ +\x28\x29\xf7\xc0\xa2\x75\x92\xd9\x8d\xbf\xc9\x1f\xe2\xe2\x36\xcd\ +\x1f\xbb\x71\x38\x5b\xf8\xf2\x6f\x82\xf0\xde\xf2\x0e\x36\x16\x84\ +\x70\xb4\x07\x7b\x44\xde\xd0\xf1\x70\x38\xff\x5c\x40\x31\x80\x91\ +\x86\xcf\x52\x10\x48\xfa\x5a\xd0\xc5\xbb\x05\xf4\xed\x1a\x11\xc9\ +\x3a\x90\x18\xc0\x04\x43\x4c\x1b\xbe\x14\x82\x20\xdb\x2a\x6b\x8b\ +\x51\x24\x84\x62\x50\x98\x70\xc4\x0c\xd3\x74\x71\xdd\xa0\x50\x26\ +\x5d\x44\x05\x32\x5a\x30\x32\x42\xa5\x64\x88\x08\xc2\x84\x43\x35\ +\x85\x0a\x85\xcb\x0b\xe8\x78\x5e\x8b\x52\x6e\x06\xa8\xb3\x80\x21\ +\x68\x88\x60\xb7\x52\x21\x61\x09\x07\xa6\x62\x61\x27\x03\xab\xb8\ +\x44\x44\x49\xb0\x15\xcc\x27\xc8\x60\xcd\x06\x18\x68\x6b\x01\x15\ +\x12\x61\xb2\x43\x09\x60\x1a\xee\x67\x61\x25\xa5\x46\x58\x4b\x6d\ +\x6a\x4c\x19\xa2\x9c\x4d\x5c\xd6\x26\x69\xbb\x21\x22\xc4\x3c\x28\ +\x25\x45\x1a\xb6\xa2\x2c\x6a\xb0\x41\x8c\x98\x4b\xa8\x80\x7c\xa6\ +\x15\x91\xa4\x45\x01\xa4\x03\xf4\x9d\x45\x61\x33\xca\x9e\x80\xc0\ +\x60\x08\xd3\x70\x2a\x5a\x31\xc4\x6d\xd1\xd8\x1e\x29\x99\x3b\xe6\ +\xa7\x51\x30\xb8\x52\x08\x98\x09\x6c\x1d\x56\xf0\xf6\x76\x83\xe2\ +\xe8\x07\x5f\xff\x02\x7c\x75\xaf\x00\xe1\x30\xe0\x88\xcc\x68\xa0\ +\xad\x89\x0c\x5c\x8a\x82\x1b\x3e\x1a\x6c\xcb\x21\xc2\x05\x92\x8a\ +\x33\x31\x1a\x75\x2f\xe9\x98\xbb\x35\xc6\x03\x27\x5b\x65\x4b\x28\ +\x9a\xa1\xdb\x1d\xd5\x0c\xdb\xee\xe7\x38\x91\xf7\x65\x32\xdc\xf3\ +\xb6\xe8\x80\x22\x2f\x2c\xcb\x10\x3e\x67\x37\x42\x1d\x66\x66\xd8\ +\xd1\x35\xa9\x88\x70\x04\x2d\x0c\x5b\x4a\x8e\xe1\x87\xe4\xda\x71\ +\x71\x8a\x52\x05\x7d\x10\xe6\x8a\x2f\xa5\xd0\x48\x68\x03\x0d\x01\ +\x60\xca\x96\x01\x80\x29\x4b\x89\x46\x5b\x41\x52\xe0\x1a\xf3\xa5\ +\xc2\x14\x71\xac\x68\x93\x07\xb0\x51\x14\x30\xa0\x14\x07\x02\x5b\ +\x4c\x21\x46\x41\x5b\x31\x31\x58\x1b\x04\x84\x80\x76\x4b\x01\x3f\ +\x31\x16\x58\x58\x0c\xea\x70\x4d\xc4\x52\x01\xf9\x65\xab\x3d\xc1\ +\x6c\x66\xb2\x3d\x99\x34\x6c\x8a\x62\x83\xa5\xb3\xc7\x30\x26\x99\ +\xcb\x0f\x53\x2b\x87\x04\x6d\x48\xe7\xa8\x06\x05\xde\xab\x97\xd3\ +\xa6\xf3\xf5\x27\x73\x6f\x18\xce\x35\xf1\xc8\xfe\xf8\x19\x8c\x3b\ +\x8f\xfa\x61\x7c\x6c\x7f\xa7\x46\xc0\xcb\xb9\x0a\x61\xf0\x96\xec\ +\x93\x2b\x84\x79\x37\x88\x67\xdc\x00\x76\x3f\x41\xbb\x75\xd9\x0d\ +\x02\x92\xb9\xfd\x28\xf2\x23\xff\x5c\xaa\x17\x14\xdc\xa7\xc4\xd6\ +\xdd\x52\x12\x24\x1c\xc5\x80\x1b\x42\x1a\xd3\x20\x70\xa5\x6b\x24\ +\x85\x7d\x84\x90\x26\x84\xb9\xda\x41\x21\x77\xc7\x6b\xa4\xac\xb2\ +\x53\x03\x0c\x48\x58\xa3\x02\xee\x4a\xda\xa8\x1a\x4d\x1c\xc6\xa5\ +\x95\x04\xcc\xd8\x9f\x7a\x80\xb9\xfb\x94\x21\x33\x46\x2d\x5f\xb5\ +\xb1\x6f\x4c\x4c\x87\x42\x5e\xd0\x36\x03\x30\xbb\x61\xb8\x16\x29\ +\x24\x34\x39\xc2\x20\x03\x08\x49\xeb\x39\x3b\x54\xbb\xbb\x75\xf0\ +\x4c\x11\x25\x90\x3b\x6b\x8c\x42\xe3\x01\x98\x2d\x87\xa8\xb4\x35\ +\x84\xbb\x90\xad\x18\x1f\x6c\xc5\x80\x29\x50\x6d\x38\x41\x98\x85\ +\x48\x7b\x59\x53\xb7\x5a\xbd\xac\xd2\x62\x04\x71\x84\x19\xa9\x77\ +\x32\x40\x29\x6a\x1d\xd6\x80\x90\x22\x24\xf4\xee\x92\xbb\xa2\x04\ +\x92\x1e\x2c\xc9\x9d\xef\xb9\x8d\x5d\x8b\x41\xb6\x71\xca\xee\x3c\ +\xae\x27\x67\x76\xe9\xe6\x1f\xbd\x3f\xfe\x42\x1e\xaa\x1f\x3c\xfc\ +\x56\x3c\x84\xe8\x3b\xe3\xa1\x43\x7a\x1e\x1a\x79\xc6\x43\x05\xd7\ +\xd5\x94\x87\x16\x3d\xe7\xa1\xc5\xce\x79\xd8\x63\x43\x1e\xf6\xe8\ +\x90\x87\x2d\x3a\xe4\xa1\x82\xeb\xf7\x9c\x87\xee\xed\xe3\x84\x87\ +\x70\x1f\x8e\x78\xa8\xe0\x92\x3c\xe7\xa1\x82\xee\xff\x8c\x87\xca\ +\x96\xb8\x13\x1e\x5a\xc1\x73\x1e\xba\x65\xc7\x3c\x54\x58\xce\xf0\ +\x50\x61\x3e\xc3\x43\x98\x7a\xc2\x43\xd8\xc3\x84\x87\xee\x3c\xae\ +\x27\x67\x76\x91\x87\xea\xeb\xf1\xd0\xfc\xe0\xe1\x37\xe2\x21\x50\ +\xe8\x8c\x87\x35\xd2\xf1\x50\x51\x7d\xce\x43\x28\x05\x67\x78\xc8\ +\xe8\x94\x87\x80\x4d\x78\xd8\x61\x23\x1e\x76\xe8\x88\x87\x0d\x3a\ +\xe2\x21\x53\x53\x1e\x72\x36\xc7\x43\x2e\xc6\x3c\x84\xce\x60\xc2\ +\x43\xae\x26\x3c\xe4\x7a\x8e\x87\x20\x38\xe1\xa1\x5d\xf6\x8c\x87\ +\x4c\xcf\xf1\x10\x7a\x95\x09\x0f\x15\xf4\xb6\xe7\x3c\xb4\xbe\x3f\ +\xe7\x61\x7d\x1e\xd7\x93\x33\xbb\xc8\x43\xf3\x65\x9d\xcf\xd3\xd3\ +\xd3\x7c\xf3\xc3\xf1\x4c\xf3\x63\xdf\xb9\x53\x0d\x4d\x3f\x69\xdb\ +\x82\x77\xb3\x28\x34\x1b\x04\x0e\x15\x9a\x12\x8b\xb5\x0d\x91\xb6\ +\xff\x5a\x83\x42\x7b\x4f\x6d\x48\x19\xc6\xeb\x48\x54\xce\x09\x4b\ +\xc1\x38\xd2\x92\x36\x11\x65\xdc\x84\xd0\x0f\x36\x13\xda\x37\x3b\ +\x70\x9c\x74\x09\xce\x1c\x74\x4e\xbc\x55\xd6\xe0\x5e\x37\x25\xb5\ +\x27\x5a\x6b\x9b\x7a\x3b\x74\x16\x73\x2e\x26\xcd\xc6\x4d\xb3\xf4\ +\xbb\x39\x90\x2a\x45\x20\x56\xdc\xdb\x1b\x81\x34\xe7\x6e\x15\x28\ +\xd4\x5c\x2f\x24\xc0\xaa\xba\x3f\xb3\xca\x0a\xae\x0d\x49\x60\x97\ +\x50\x13\x71\x03\xb7\x9a\xc5\x24\x92\x58\xb9\xbf\xa2\x75\x7b\xb4\ +\xd6\x68\x69\xdd\xa3\x96\x02\xcc\x52\x06\xec\xa9\xfb\x40\x09\xfc\ +\xb0\x36\x72\xdb\x94\x51\xfb\x46\x4b\x83\xff\x38\x87\x00\x12\x96\ +\x09\x8a\xba\x4e\x8e\x18\x64\x6a\x97\x89\xe1\x31\x40\x1f\x48\xb0\ +\x76\x8e\x94\x18\x33\x1b\xe5\x40\xe7\xda\x6b\xb4\xf3\xe4\x0c\x76\ +\x3d\x7b\x88\xcf\xf6\x76\xd3\x7f\xe7\xf3\x17\xe8\xed\x9a\xf8\x77\ +\x5f\x57\xf6\xaf\x2a\xde\xbe\xf8\x1f\xed\x5a\x52\xf3\ +\x00\x00\x09\xad\ +\x00\ +\x00\x21\x35\x78\x9c\xed\x58\xdb\x6e\xe3\xc8\x11\x7d\xf7\x57\x30\ +\x9a\x97\x31\x22\x52\x7d\x25\xbb\xe5\xcb\x3e\x64\xb0\xc1\x02\x0b\ +\x24\xc8\xce\x20\x8f\x0b\x5a\xa2\x65\xc6\x14\x29\x90\x94\x65\xfb\ +\xeb\x73\xaa\x79\x11\x29\xd1\xde\x49\x06\x8b\x20\x83\x95\x67\xa4\ +\x66\x75\x55\xd7\xa5\xab\xaa\x4f\xf3\xfa\x87\xe7\x6d\xe6\x3d\x25\ +\x65\x95\x16\xf9\xcd\x8c\x07\x6c\xe6\x25\xf9\xaa\x58\xa7\xf9\xe6\ +\x66\xf6\xe5\xf3\x8f\xbe\x99\x79\x55\x1d\xe7\xeb\x38\x2b\xf2\xe4\ +\x66\x96\x17\xb3\x1f\x6e\x2f\xae\xff\xe4\xfb\xde\x5f\xca\x24\xae\ +\x93\xb5\x77\x48\xeb\x07\xef\xa7\xfc\xb1\x5a\xc5\xbb\xc4\xfb\xf8\ +\x50\xd7\xbb\xe5\x62\x71\x38\x1c\x82\xb4\x25\x06\x45\xb9\x59\x5c\ +\x7a\xbe\x7f\x7b\x71\x71\x5d\x3d\x6d\x2e\x3c\xcf\x83\xde\xbc\x5a\ +\xae\x57\x37\xb3\x56\x60\xb7\x2f\x33\xc7\xb8\x5e\x2d\x92\x2c\xd9\ +\x26\x79\x5d\x2d\x78\xc0\x17\xb3\x23\xfb\xea\xc8\xbe\x22\xed\xe9\ +\x53\xb2\x2a\xb6\xdb\x22\xaf\x9c\x64\x5e\x7d\x18\x30\x97\xeb\xfb\ +\x9e\x9b\xac\x39\x48\xc7\xc4\xad\xb5\x0b\x26\x16\x42\xf8\xe0\xf0\ +\xab\x97\xbc\x8e\x9f\xfd\xb1\x28\x6c\x9c\x12\x15\x8c\xb1\x05\xe6\ +\x8e\x9c\x5f\xc7\xb5\x7c\xce\x10\x8a\x37\x8d\x71\xb3\x43\xed\x08\ +\xff\x0e\xff\x7b\x81\x8e\x10\x54\xc5\xbe\x5c\x25\xf7\x90\x4c\x82\ +\x3c\xa9\x17\x9f\x3e\x7f\xea\x27\x7d\x16\xac\xeb\xf5\x60\x99\x2e\ +\xfa\x23\xbd\xa3\x2d\xc9\xe3\x6d\x52\xed\xe2\x55\x52\x2d\x3a\xba\ +\x93\x3f\xa4\xeb\xfa\xe1\x66\x16\xaa\xdd\xb3\x7b\x7e\x48\xd2\xcd\ +\x43\x3d\x20\xa4\xeb\x9b\x19\x3c\x94\x21\x17\xee\x79\x90\x40\xbc\ +\x61\x68\x97\x5b\xf6\x33\x2c\x50\x26\xe0\x5e\x69\xa3\x90\x39\x96\ +\xce\xee\xe5\xba\x58\x91\x21\x37\xb3\x4f\x65\x7c\x5f\xff\xfa\xf7\ +\x22\x7b\xd9\x14\x79\x40\x11\xbc\x05\xe3\xf5\x3a\xb9\xaf\x48\xa0\ +\x51\x4b\x4f\xd0\xab\xdc\x1c\x66\x7b\x4d\x3b\x68\xda\x25\x2b\xca\ +\x89\x86\x7b\xa0\xa2\x7e\xa1\x30\x8c\x59\x65\x13\x2b\x6f\x64\xed\ +\xee\xd7\x67\x98\xea\x2d\x3d\x29\xf0\xc5\x27\x39\x5e\x1a\x0e\x8e\ +\x6d\xc6\x0f\x9b\xe4\x79\xa5\x60\xbd\xb3\x4c\x6b\x81\x5f\x94\xe9\ +\x26\x45\x74\x1c\x9f\xe0\x81\x74\x9f\xb1\x0c\x9c\x1e\xf8\x26\x43\ +\x81\x1a\x5d\x7c\x85\xf7\xa7\x82\xda\x98\xdf\x36\x84\x05\x9a\x9c\ +\x6a\x0d\x39\x35\x65\xec\x21\x77\x9c\xfa\x9b\x02\xd5\x86\xfb\x74\ +\x99\xdf\xda\xb9\x3e\x00\x65\xbc\x4e\xe3\xec\xaf\xf4\x83\x86\x71\ +\xa6\x61\x55\x64\x19\xdc\xbf\x99\xc5\xd9\x21\x7e\xa9\xfa\xf5\x5d\ +\xc9\x2d\x1f\xca\x04\x2d\xe2\x03\xc6\x49\x5c\x76\x6b\x48\xae\x94\ +\x2f\x47\xe1\x1f\x2b\x91\x21\x3b\xfa\xb2\x69\x89\x5f\xf2\xb4\x46\ +\x37\xd8\x57\x49\xf9\x0b\x55\xd4\xdf\xf2\x2f\x55\x72\xc6\xf5\xb9\ +\x8c\xf3\x0a\xe5\xbb\xbd\x99\x6d\xe3\xba\x4c\x9f\x3f\xf2\x39\xa3\ +\xbf\x20\xb4\x46\x0b\xab\x30\x16\x4c\x04\x46\x98\x50\x5e\xf6\xe2\ +\x2b\x44\x49\x08\x1d\x88\x50\x31\x71\xa4\x22\xbe\x61\x24\x82\xc8\ +\x46\x32\xec\xa9\xf7\x93\xbc\xf7\x93\xbc\x25\x12\x4f\x05\x52\x69\ +\x8e\xd4\xe8\x43\x3a\x0e\xc7\x30\x0e\xef\x07\xea\xad\x98\xdf\xb6\ +\x1c\xd7\x55\x5d\xec\x3a\xee\xb6\x87\x80\x82\x65\x42\xff\x18\x50\ +\xcf\x2b\xee\xef\xab\x04\xe2\x43\x5a\x55\xbf\x64\x49\xc3\xef\x63\ +\xfd\xa2\x5c\x7e\xb8\x77\x9f\x2b\x47\x2a\x10\xf2\xb4\x7e\x59\xf2\ +\xab\xde\x8d\xf7\xf4\x19\x9f\x4f\xe8\xe3\xff\xb9\x3e\x76\xd4\x77\ +\xbd\x18\x47\xe7\x7f\x98\x9f\xda\x9a\xef\x36\x3f\xaf\x17\x74\x00\ +\xb8\x51\xdf\x23\xe8\xf4\x58\x3f\xa5\xc9\xe1\x78\x4a\xdc\xc5\xbd\ +\x77\xbb\x78\x93\xb8\x2d\x44\x24\x9b\x3d\x6c\x27\xee\x8a\x72\x9d\ +\x94\xdd\x54\xe8\x3e\xa3\xa9\x76\x97\x1b\x58\x74\x31\xde\x38\x5a\ +\xb5\x9f\x67\xd3\xf3\xd5\x43\xbc\x2e\x0e\x70\xf7\x74\xf2\xb5\x28\ +\x10\x61\x1d\xe8\xd3\x09\x0a\xa4\x3c\x63\xa7\x40\x4e\x50\xf7\x65\ +\x89\x2d\xf3\xb3\xf8\x25\x81\x03\x1b\xa9\x54\xb7\xed\xd5\x43\x71\ +\xd8\x94\x14\x87\xba\xdc\x27\xa7\x82\x38\x6f\xf7\x84\xae\xfc\x7d\ +\x93\x13\xed\x99\x3e\xe0\x20\x59\xff\xee\xae\x78\x9e\x5e\xe0\x90\ +\xe6\xf0\xcb\x6f\x51\x02\x17\xe6\xcc\xfb\x96\xa3\xc3\x0d\x91\x36\ +\x6f\x70\x3c\x1f\xcb\xfc\x74\x8a\xe2\x6e\xdf\x98\xdb\xc6\xcf\xe9\ +\x36\x7d\x4d\xd6\x24\xde\x26\xc6\x36\xa9\xe3\x75\x5c\xc7\xc7\x24\ +\xe8\x28\x80\x0b\x51\x07\x17\x00\xf9\x96\xff\xf8\xf4\x63\xdf\x23\ +\x56\xab\xe5\x3f\x8b\xf2\xf1\x58\xf9\xc4\x10\xdf\x15\x7b\x98\xdd\ +\x77\x2e\x02\x21\xab\x25\xd5\x45\x5c\xdf\xa6\x5b\x6c\x2d\xe1\xbb\ +\x3f\x03\x66\x21\x1d\xfb\x89\x11\x33\x9d\x5b\xc7\x45\x9b\x65\xcb\ +\xa4\xc1\x6f\x93\x90\x77\xbd\xda\xa6\x24\xb4\xf8\xa5\x4e\xb3\xec\ +\x27\x52\x32\xe8\x65\xed\xa2\x69\x9d\x25\x83\x06\xb7\x68\xad\xef\ +\x3a\xd0\xc0\xb9\xeb\x45\xe7\xbd\x7b\xda\x1c\xa3\xe2\xf2\x85\x9f\ +\x06\x36\x8b\xef\x92\xec\x66\xf6\x33\x4d\x7a\x67\xb3\x9b\xb2\xd8\ +\xef\xb6\xc5\x3a\x69\xc5\xbb\x68\x6e\x3a\xf3\xea\x63\xe3\x70\xc3\ +\x0c\x37\x83\x8f\x2c\x30\x61\x18\x19\x54\xfa\xdc\xe7\x52\x04\x3c\ +\xe2\x22\xba\x1c\x75\xae\x26\x6b\x7b\x87\x76\x71\xfd\x30\xee\xd8\ +\x44\x41\x03\x50\x7e\x34\xe8\xce\xb4\xb7\x9e\xb6\x81\x14\x32\xd2\ +\x73\x1e\x46\x01\x63\x82\x2b\x6f\xe5\x01\x04\x73\x16\x6a\x31\xf7\ +\x65\x60\x23\x23\xb5\x87\x81\x8c\xac\x36\x73\x3f\x0a\x60\x84\x15\ +\x1e\x06\x52\x91\x20\x06\xcc\x62\xe0\x65\x9e\xcf\xd1\xe2\x0c\xd1\ +\xb8\x09\x14\x8d\x20\xc8\x82\xc8\x70\xa1\xe7\x61\xa0\x25\x7e\x69\ +\x29\xe1\x08\x12\x40\x8d\x08\xc2\x04\xa4\x5f\x34\x7c\x1e\xd7\x41\ +\xb3\x44\x14\x84\x78\x5c\x01\xd5\x70\xa1\x94\x46\xfb\x64\x4c\xe2\ +\x49\x28\xcb\xdd\x93\x54\x21\x61\xac\xa8\x79\xe0\xc2\x53\x01\x43\ +\x5f\x95\x73\x67\x7f\x04\xe8\x18\x05\x82\x71\x69\xc9\x0f\x44\x48\ +\x4b\xaf\xb5\x95\x8c\x6e\xec\x7b\xf5\xb6\x30\x1b\x9e\x6a\x5a\x88\ +\x7c\xe7\x50\xcb\x64\x34\x87\x75\x11\xfa\xb3\xe7\x0b\x10\xa4\x31\ +\x73\xac\xa1\xa3\x88\x9e\x35\x0c\x9b\x6b\x58\x0d\xf5\x4c\xeb\x68\ +\x2e\x02\x66\x98\xb5\x1e\x5a\x1c\xe3\x16\xae\x05\x56\x58\x6d\x3d\ +\x11\xb8\x10\xa1\x4f\x73\xd3\x46\x08\x1b\x08\x61\x2e\x01\xd5\x7c\ +\x40\x55\xdb\xc4\xcb\xb6\xce\x63\xed\xb9\x2f\x20\xce\xc8\x77\x0c\ +\x5c\xcc\x60\x9d\x07\xd8\x4f\x9c\x5c\xb5\x6b\x39\xc3\xad\x0b\x95\ +\xa2\x6f\x17\x28\x66\x39\xbc\x77\x61\x20\xcb\x25\xc2\x00\x03\xc8\ +\x5b\x19\x45\x8a\xd3\xa6\xb9\xe5\x3a\xef\x3b\x56\x8a\x18\x64\x55\ +\xb3\xab\x21\x27\x0f\x9c\x28\x11\x9c\x0b\x4e\xd0\xf3\x5b\x15\x9d\ +\x06\x19\xb0\x08\x06\xce\x5b\xa9\x3e\xbc\x8d\x90\xd7\xad\xde\x2e\ +\xde\x58\x41\x9b\xe1\xa4\xbc\xd6\x8a\x63\x06\xbd\x9e\x63\x87\x1e\ +\x23\x04\x21\x93\x4c\x23\xe5\xae\x5a\x24\xc1\xdc\xe7\xea\x1e\x75\ +\x3e\x7a\x18\xc0\x18\xf7\x58\xee\xb3\x64\x99\x17\xf9\x2b\x8e\x22\ +\xe0\x8e\xb2\x78\x74\x8f\x49\x3b\x6e\x1a\x30\xd6\xe7\xca\x5a\xc1\ +\x8c\xb8\xda\xc6\xe5\x63\x52\x36\x3c\x4f\x69\x95\xde\xa5\x19\x2d\ +\xe7\x86\x59\x72\xb5\x4e\xab\x1d\xca\x17\x17\x43\x42\x14\x57\x05\ +\xee\x66\xf7\x59\x71\xe8\xe7\x93\x3c\xc6\x8f\x7f\x17\xaf\x1e\xa9\ +\xe0\xf3\xf5\x32\x5e\xe1\xa8\xd8\x53\x31\x0f\x71\xd5\xdb\x55\x7a\ +\x56\xa3\x2a\x08\x15\xd7\x0a\x35\x8a\x91\xb1\x21\xd5\x28\xe0\x04\ +\x6d\x8e\x90\xb0\x1a\x3b\x8c\xbc\xd2\x22\x14\xc2\xe5\x44\xa8\x1a\ +\x1a\xe2\x8a\xce\x61\x9b\x14\xd6\x94\x18\x5a\xa1\xce\x3d\x24\xbb\ +\x31\x1a\x9b\x30\xa7\x8a\xe5\x46\x70\x3e\x49\x73\x3a\xf0\x64\x84\ +\xd6\x4c\x20\xcb\x85\x05\x82\x01\x49\x07\x16\x69\xcf\x91\x25\xd2\ +\x68\x94\x15\x84\xb9\xc4\x5e\x1b\x54\x0d\xc3\x32\x48\x24\x24\x2a\ +\x89\x29\xca\x24\xd4\x8d\x98\xa0\x64\x7d\x2f\xc0\xe2\x5d\x37\x68\ +\x3c\xb3\x81\x46\xe2\xa0\x08\x90\x6a\x42\xe0\xe4\xf1\x28\xf1\x2d\ +\x01\x1b\x81\x4e\x22\x75\x28\x0d\xd2\x2b\xb2\x1c\xbd\x11\x86\x91\ +\x76\x4e\x3c\x4a\xa3\x03\x44\x60\x51\x42\x99\x68\x82\xe2\xea\x46\ +\x37\x05\x46\x69\xdf\x14\x42\x1b\x4f\x1d\x84\x1c\x75\x6c\xc1\x8d\ +\x96\x83\x84\xf6\x0d\x0c\x34\xcc\xc8\xb9\x85\x1d\x52\x72\x17\xcb\ +\x28\x22\x8a\x40\x6f\xb4\xdc\x95\x08\xd2\x5a\xf1\x68\x6e\x82\x50\ +\xf3\xd0\x4e\x50\xb2\xa9\x62\x6f\x94\xb2\x00\xb5\x21\x45\x38\x87\ +\xae\x08\x03\xe5\xd1\x05\x16\x56\x08\xb7\xab\x91\x88\x42\xec\x44\ +\x80\x8d\x23\x57\xa9\x23\x1b\x05\xe7\x79\x80\x75\x19\x22\xee\x73\ +\x0c\xd1\xa9\xd4\x14\x89\x14\x50\x99\x71\x13\x52\x4b\x0d\x34\xb6\ +\x4b\x78\x98\x96\x46\x52\x29\xa2\x41\x01\x15\x86\x1e\x35\x2c\xd7\ +\x5f\x10\x11\xe3\x6e\xac\xd4\xa8\x54\xa4\x39\xf1\x68\xc3\x51\xbe\ +\xe7\x94\x89\x7a\x9d\x2a\xce\x16\xf3\x9f\x14\x67\x5b\x8a\x1d\xeb\ +\xa8\x1a\x61\xa8\x0d\x39\x8e\x1e\xd5\xd1\xa9\xd6\x70\x88\x2e\xef\ +\xf6\x75\x3d\xa4\xfd\xab\x48\xf3\xa5\x2b\xb3\x8e\x0a\x00\x90\x94\ +\x19\x80\x4d\xbd\xec\xa5\x4f\xb5\xfa\xeb\x18\xb0\xb2\x2c\x51\xc6\ +\xc3\x56\x40\xd4\xe6\x1e\x83\x3b\xc9\xef\xd9\x06\x06\x75\x7f\xbc\ +\xc3\xe4\xf0\xb0\x2e\x4a\x1f\x90\xf4\x29\xae\xf7\x65\x72\x72\x79\ +\xeb\x81\x3a\x10\x04\x61\x1c\x80\xce\xd5\x2b\xfe\xe8\x5f\xf3\x83\ +\xaf\x61\x87\xd9\x4c\xa8\x49\x9e\x77\x45\x59\xfb\x2f\xeb\x5d\x0a\ +\x44\x89\x46\x2c\x70\x5e\xf1\x29\x83\x5a\xce\xe7\xaf\xe6\xc4\xfe\ +\x26\xcd\x2b\xa8\xc5\x43\xb1\x4d\x16\x2f\x45\x99\x3e\x2e\x3e\xb5\ +\x38\xb9\x5a\xfc\x1c\xdf\x2d\xdc\xcb\xa9\x45\x0a\x67\x2b\x77\xd3\ +\x0b\x76\xf9\x66\xb0\x64\x7d\x76\x73\xa2\x13\x87\x29\xc6\x45\xe8\ +\x72\x13\x4d\xda\x84\x68\x3c\xc7\xd1\x88\x41\xb9\xc2\xa3\x4e\x69\ +\x71\x9e\xab\x48\xe8\xcb\xd9\xb8\xc7\x6e\x24\x1a\xa9\x2f\x86\xa0\ +\x74\xdc\x88\xcf\xde\x9a\xc4\xe5\x6a\x36\x9a\x6e\x12\xbd\x4b\xed\ +\xd8\x9e\x9f\x3b\xef\xa5\x36\xda\xac\xa3\x72\xfb\x0d\x09\x3b\x32\ +\xa8\x3b\x3a\x04\x0f\x85\xaf\x67\x93\xae\xd0\x95\x08\xf5\x84\xa8\ +\x09\xf3\x16\x0b\x5d\x1e\x35\x41\x15\x2b\xa7\x39\x4a\x2c\xa2\x4c\ +\x80\xc6\xaf\xde\xe2\x78\x79\x83\xc3\x9d\x63\x42\x01\x33\x91\x05\ +\xf3\x4e\x8f\x6b\x81\x22\xa4\x73\x41\x84\xae\x45\x46\xe8\x55\xd1\ +\xbc\x5b\x03\x00\xa5\x1d\x0d\x48\x1d\x3f\x35\xec\x7e\xba\x97\x1d\ +\xd2\x7a\x19\x36\xef\xa5\xbc\x5e\xc9\x71\x7a\x42\x62\xa0\xa4\x9f\ +\xed\x55\x9c\x1b\xf5\x3a\xbe\x65\x7c\x43\x4a\xe1\x32\xf3\xf1\xc3\ +\xf9\xab\xb2\xcb\x37\x72\xec\xcd\x6c\x90\x5c\x8e\xe1\xfe\x49\x36\ +\x9c\xbf\x3d\x38\xcf\x86\xb3\x57\x09\x67\xe9\x70\x7c\xb1\xf0\x66\ +\x3e\x10\x9a\xb5\x9c\x8b\xa9\x84\xc0\xed\x23\x64\x38\x79\xe6\xbd\ +\x2a\x97\x11\x40\xc7\x00\xf9\x48\x0f\x42\x1a\x32\x0a\x4d\x38\x6f\ +\x57\x21\x50\xdb\xa8\xb4\x03\x12\x6e\x1b\x38\x5a\x81\x0c\xd8\x60\ +\x9a\x80\x0b\x30\xaf\x18\x92\x7a\x11\x46\x77\xa9\x56\x49\xab\x23\ +\xea\xa7\x85\x77\x26\x81\x33\xb3\xd1\x01\x30\x7b\x9c\x6d\x34\x70\ +\xeb\x9d\xda\x24\x46\x47\xe3\x54\x5f\xc3\x31\xab\x09\xb4\x38\xe8\ +\xad\x85\x0a\x23\x74\xad\xe1\xa8\x9f\x96\x12\x20\x02\xb8\x0b\xf8\ +\x0b\x68\x06\x45\x23\xcc\xe5\xb0\xcb\x2f\x36\xdf\x55\xc3\x77\xb7\ +\x3c\xc5\x74\x7b\x8d\x43\x97\x07\x14\x55\xf3\xd1\xf0\xc8\x11\x71\ +\xba\x8e\xe2\x18\xe0\x06\xa9\x84\x50\x99\x89\x86\x1f\x32\x5f\xfd\ +\xbe\x0d\xff\xcd\x8b\xc6\x57\x1e\x01\xef\xa2\x1b\x77\x3e\xfc\x7f\ +\xa2\x9b\x61\x3b\xc2\xe1\x64\xff\x38\x9c\xbe\xbf\xc3\x49\x5b\xf3\ +\x5f\x1c\x4e\xa1\x7a\x2f\x1b\xfe\x38\x9c\xbe\xb3\xc3\xa9\x1d\xb8\ +\x9f\x6b\x7a\xed\x7b\x7b\xf1\x6f\x05\x14\xa7\xa4\ +\x00\x00\x14\x8d\ +\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\ +\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\x34\x35\ +\x39\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\x36\x22\x0a\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x74\ +\x65\x78\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\x3e\x0a\x20\x20\x3c\x64\x65\x66\ +\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x34\ +\x35\x39\x36\x22\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\x34\x36\x30\x32\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\x39\x34\x34\x35\x34\x33\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x32\x30\ +\x2e\x38\x33\x33\x31\x31\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x37\x2e\x32\x39\x32\ +\x36\x31\x34\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\x36\x34\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\x37\ +\x32\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\x30\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\x32\x35\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\x34\x35\x39\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\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\x34\ +\x39\x31\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\x74\x65\x78\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\x37\x2e\x38\x32\x30\x31\x33\x37\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\x37\x2e\x38\x32\x30\x31\x33\ +\x37\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\x36\ +\x34\x39\x32\x30\x34\x2c\x30\x2c\x30\x2c\x30\x2e\x31\x36\x34\x39\ +\x32\x30\x34\x2c\x2d\x36\x34\x33\x2e\x37\x31\x37\x31\x36\x2c\x2d\ +\x32\x33\x32\x2e\x30\x31\x34\x34\x36\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\x64\x3d\x22\x70\x61\x74\x68\x33\x34\x38\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x34\x31\ +\x37\x36\x2e\x30\x37\x33\x36\x2c\x31\x36\x38\x32\x2e\x38\x33\x37\ +\x31\x20\x4c\x20\x34\x30\x35\x34\x2e\x39\x37\x39\x38\x2c\x31\x36\ +\x38\x32\x2e\x38\x33\x37\x31\x20\x4c\x20\x34\x30\x32\x39\x2e\x33\ +\x39\x33\x39\x2c\x31\x37\x32\x30\x2e\x33\x33\x37\x31\x20\x43\x20\ +\x34\x30\x32\x35\x2e\x38\x37\x38\x32\x2c\x31\x37\x32\x35\x2e\x35\ +\x34\x35\x35\x20\x34\x30\x32\x33\x2e\x38\x36\x2c\x31\x37\x32\x39\ +\x2e\x36\x34\x37\x20\x34\x30\x32\x33\x2e\x33\x33\x39\x32\x2c\x31\ +\x37\x33\x32\x2e\x36\x34\x31\x38\x20\x43\x20\x34\x30\x32\x32\x2e\ +\x31\x36\x37\x33\x2c\x31\x37\x33\x38\x2e\x33\x37\x31\x20\x34\x30\ +\x32\x35\x2e\x36\x38\x32\x39\x2c\x31\x37\x34\x32\x2e\x33\x34\x32\ +\x33\x20\x34\x30\x33\x33\x2e\x38\x38\x36\x31\x2c\x31\x37\x34\x34\ +\x2e\x35\x35\x35\x38\x20\x4c\x20\x34\x30\x33\x32\x2e\x37\x31\x34\ +\x32\x2c\x31\x37\x35\x30\x2e\x38\x30\x35\x38\x20\x4c\x20\x33\x39\ +\x34\x34\x2e\x34\x33\x33\x2c\x31\x37\x35\x30\x2e\x38\x30\x35\x38\ +\x20\x4c\x20\x33\x39\x34\x35\x2e\x36\x30\x34\x38\x2c\x31\x37\x34\ +\x34\x2e\x35\x35\x35\x38\x20\x43\x20\x33\x39\x35\x31\x2e\x30\x37\ +\x33\x36\x2c\x31\x37\x34\x33\x2e\x35\x31\x34\x32\x20\x33\x39\x35\ +\x35\x2e\x34\x33\x35\x36\x2c\x31\x37\x34\x31\x2e\x36\x39\x31\x33\ +\x20\x33\x39\x35\x38\x2e\x36\x39\x30\x38\x2c\x31\x37\x33\x39\x2e\ +\x30\x38\x37\x31\x20\x43\x20\x33\x39\x36\x31\x2e\x39\x34\x36\x2c\ +\x31\x37\x33\x36\x2e\x34\x38\x32\x39\x20\x33\x39\x36\x36\x2e\x31\ +\x31\x32\x36\x2c\x31\x37\x33\x31\x2e\x34\x30\x34\x38\x20\x33\x39\ +\x37\x31\x2e\x31\x39\x30\x38\x2c\x31\x37\x32\x33\x2e\x38\x35\x32\ +\x37\x20\x4c\x20\x34\x31\x31\x30\x2e\x30\x35\x38\x2c\x31\x35\x31\ +\x38\x2e\x39\x36\x39\x39\x20\x43\x20\x34\x31\x31\x34\x2e\x34\x38\ +\x34\x39\x2c\x31\x35\x31\x32\x2e\x34\x35\x39\x37\x20\x34\x31\x31\ +\x37\x2e\x30\x38\x39\x2c\x31\x35\x30\x37\x2e\x32\x35\x31\x34\x20\ +\x34\x31\x31\x37\x2e\x38\x37\x30\x35\x2c\x31\x35\x30\x33\x2e\x33\ +\x34\x34\x39\x20\x43\x20\x34\x31\x31\x39\x2e\x31\x37\x32\x34\x2c\ +\x31\x34\x39\x37\x2e\x33\x35\x35\x36\x20\x34\x31\x31\x36\x2e\x33\ +\x30\x37\x38\x2c\x31\x34\x39\x33\x2e\x30\x35\x38\x37\x20\x34\x31\ +\x30\x39\x2e\x32\x37\x36\x37\x2c\x31\x34\x39\x30\x2e\x34\x35\x34\ +\x33\x20\x4c\x20\x34\x31\x31\x30\x2e\x34\x34\x38\x36\x2c\x31\x34\ +\x38\x34\x2e\x32\x30\x34\x33\x20\x4c\x20\x34\x32\x30\x34\x2e\x39\ +\x37\x39\x38\x2c\x31\x34\x38\x34\x2e\x32\x30\x34\x33\x20\x4c\x20\ +\x34\x32\x30\x33\x2e\x38\x30\x38\x2c\x31\x34\x39\x30\x2e\x34\x35\ +\x34\x33\x20\x43\x20\x34\x31\x39\x35\x2e\x36\x30\x34\x36\x2c\x31\ +\x34\x39\x32\x2e\x36\x36\x38\x31\x20\x34\x31\x39\x30\x2e\x39\x38\ +\x32\x32\x2c\x31\x34\x39\x36\x2e\x35\x30\x39\x32\x20\x34\x31\x38\ +\x39\x2e\x39\x34\x30\x38\x2c\x31\x35\x30\x31\x2e\x39\x37\x37\x37\ +\x20\x43\x20\x34\x31\x38\x39\x2e\x31\x35\x39\x33\x2c\x31\x35\x30\ +\x35\x2e\x37\x35\x34\x20\x34\x31\x38\x39\x2e\x35\x34\x39\x39\x2c\ +\x31\x35\x31\x30\x2e\x30\x35\x30\x39\x20\x34\x31\x39\x31\x2e\x31\ +\x31\x32\x37\x2c\x31\x35\x31\x34\x2e\x38\x36\x38\x33\x20\x4c\x20\ +\x34\x32\x35\x31\x2e\x34\x36\x34\x32\x2c\x31\x37\x32\x30\x2e\x33\ +\x33\x37\x31\x20\x43\x20\x34\x32\x35\x34\x2e\x30\x36\x38\x31\x2c\ +\x31\x37\x32\x39\x2e\x30\x36\x31\x31\x20\x34\x32\x35\x36\x2e\x36\ +\x37\x32\x32\x2c\x31\x37\x33\x35\x2e\x30\x35\x30\x37\x20\x34\x32\ +\x35\x39\x2e\x32\x37\x36\x37\x2c\x31\x37\x33\x38\x2e\x33\x30\x35\ +\x38\x20\x43\x20\x34\x32\x36\x31\x2e\x38\x38\x30\x36\x2c\x31\x37\ +\x34\x31\x2e\x34\x33\x30\x39\x20\x34\x32\x36\x35\x2e\x37\x38\x36\ +\x38\x2c\x31\x37\x34\x33\x2e\x35\x31\x34\x32\x20\x34\x32\x37\x30\ +\x2e\x39\x39\x35\x35\x2c\x31\x37\x34\x34\x2e\x35\x35\x35\x38\x20\ +\x4c\x20\x34\x32\x36\x39\x2e\x38\x32\x33\x36\x2c\x31\x37\x35\x30\ +\x2e\x38\x30\x35\x38\x20\x4c\x20\x34\x31\x37\x31\x2e\x37\x37\x36\ +\x37\x2c\x31\x37\x35\x30\x2e\x38\x30\x35\x38\x20\x4c\x20\x34\x31\ +\x37\x32\x2e\x39\x34\x38\x36\x2c\x31\x37\x34\x34\x2e\x35\x35\x35\ +\x38\x20\x43\x20\x34\x31\x38\x31\x2e\x39\x33\x32\x37\x2c\x31\x37\ +\x34\x33\x2e\x31\x32\x33\x36\x20\x34\x31\x38\x37\x2e\x30\x37\x36\ +\x2c\x31\x37\x33\x39\x2e\x30\x38\x37\x31\x20\x34\x31\x38\x38\x2e\ +\x33\x37\x38\x33\x2c\x31\x37\x33\x32\x2e\x34\x34\x36\x35\x20\x43\ +\x20\x34\x31\x38\x38\x2e\x38\x39\x38\x39\x2c\x31\x37\x32\x39\x2e\ +\x37\x31\x32\x31\x20\x34\x31\x38\x38\x2e\x33\x37\x38\x2c\x31\x37\ +\x32\x35\x2e\x36\x37\x35\x37\x20\x34\x31\x38\x36\x2e\x38\x31\x35\ +\x38\x2c\x31\x37\x32\x30\x2e\x33\x33\x37\x31\x20\x4c\x20\x34\x31\ +\x37\x36\x2e\x30\x37\x33\x36\x2c\x31\x36\x38\x32\x2e\x38\x33\x37\ +\x31\x20\x4d\x20\x34\x31\x36\x36\x2e\x35\x30\x33\x33\x2c\x31\x36\ +\x34\x36\x2e\x33\x31\x33\x37\x20\x4c\x20\x34\x31\x34\x32\x2e\x32\ +\x38\x34\x35\x2c\x31\x35\x35\x31\x2e\x33\x39\x31\x38\x20\x4c\x20\ +\x34\x30\x37\x39\x2e\x35\x38\x39\x32\x2c\x31\x36\x34\x36\x2e\x33\ +\x31\x33\x37\x20\x4c\x20\x34\x31\x36\x36\x2e\x35\x30\x33\x33\x2c\ +\x31\x36\x34\x36\x2e\x33\x31\x33\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\x2d\ +\x73\x69\x7a\x65\x3a\x34\x30\x70\x78\x3b\x66\x6f\x6e\x74\x2d\x73\ +\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\ +\x2d\x76\x61\x72\x69\x61\x6e\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\ +\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\x62\x6f\x6c\x64\ +\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x72\x65\x74\x63\x68\x3a\x6e\x6f\ +\x72\x6d\x61\x6c\x3b\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x36\ +\x32\x37\x31\x31\x38\x36\x34\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\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\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\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\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\ +\x69\x6c\x79\x3a\x43\x6f\x70\x70\x65\x72\x70\x6c\x61\x74\x65\x20\ +\x47\x6f\x74\x68\x69\x63\x20\x42\x6f\x6c\x64\x3b\x2d\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\x70\x65\x63\x69\ +\x66\x69\x63\x61\x74\x69\x6f\x6e\x3a\x27\x43\x6f\x70\x70\x65\x72\ +\x70\x6c\x61\x74\x65\x20\x47\x6f\x74\x68\x69\x63\x20\x42\x6f\x6c\ +\x64\x2c\x20\x42\x6f\x6c\x64\x27\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\x64\x3d\x22\x74\x65\x78\x74\x32\x37\x31\x34\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x34\x31\ +\x35\x35\x2e\x38\x36\x35\x2c\x31\x36\x35\x38\x2e\x36\x37\x39\x32\ +\x20\x4c\x20\x34\x30\x33\x34\x2e\x37\x37\x31\x32\x2c\x31\x36\x35\ +\x38\x2e\x36\x37\x39\x32\x20\x4c\x20\x34\x30\x30\x39\x2e\x31\x38\ +\x35\x33\x2c\x31\x36\x39\x36\x2e\x31\x37\x39\x32\x20\x43\x20\x34\ +\x30\x30\x35\x2e\x36\x36\x39\x36\x2c\x31\x37\x30\x31\x2e\x33\x38\ +\x37\x36\x20\x34\x30\x30\x33\x2e\x36\x35\x31\x34\x2c\x31\x37\x30\ +\x35\x2e\x34\x38\x39\x31\x20\x34\x30\x30\x33\x2e\x31\x33\x30\x36\ +\x2c\x31\x37\x30\x38\x2e\x34\x38\x33\x39\x20\x43\x20\x34\x30\x30\ +\x31\x2e\x39\x35\x38\x37\x2c\x31\x37\x31\x34\x2e\x32\x31\x33\x31\ +\x20\x34\x30\x30\x35\x2e\x34\x37\x34\x33\x2c\x31\x37\x31\x38\x2e\ +\x31\x38\x34\x34\x20\x34\x30\x31\x33\x2e\x36\x37\x37\x35\x2c\x31\ +\x37\x32\x30\x2e\x33\x39\x37\x39\x20\x4c\x20\x34\x30\x31\x32\x2e\ +\x35\x30\x35\x36\x2c\x31\x37\x32\x36\x2e\x36\x34\x37\x39\x20\x4c\ +\x20\x33\x39\x32\x34\x2e\x32\x32\x34\x34\x2c\x31\x37\x32\x36\x2e\ +\x36\x34\x37\x39\x20\x4c\x20\x33\x39\x32\x35\x2e\x33\x39\x36\x32\ +\x2c\x31\x37\x32\x30\x2e\x33\x39\x37\x39\x20\x43\x20\x33\x39\x33\ +\x30\x2e\x38\x36\x35\x2c\x31\x37\x31\x39\x2e\x33\x35\x36\x33\x20\ +\x33\x39\x33\x35\x2e\x32\x32\x37\x2c\x31\x37\x31\x37\x2e\x35\x33\ +\x33\x34\x20\x33\x39\x33\x38\x2e\x34\x38\x32\x32\x2c\x31\x37\x31\ +\x34\x2e\x39\x32\x39\x32\x20\x43\x20\x33\x39\x34\x31\x2e\x37\x33\ +\x37\x34\x2c\x31\x37\x31\x32\x2e\x33\x32\x35\x20\x33\x39\x34\x35\ +\x2e\x39\x30\x34\x2c\x31\x37\x30\x37\x2e\x32\x34\x36\x39\x20\x33\ +\x39\x35\x30\x2e\x39\x38\x32\x32\x2c\x31\x36\x39\x39\x2e\x36\x39\ +\x34\x38\x20\x4c\x20\x34\x30\x38\x39\x2e\x38\x34\x39\x34\x2c\x31\ +\x34\x39\x34\x2e\x38\x31\x32\x20\x43\x20\x34\x30\x39\x34\x2e\x32\ +\x37\x36\x33\x2c\x31\x34\x38\x38\x2e\x33\x30\x31\x38\x20\x34\x30\ +\x39\x36\x2e\x38\x38\x30\x34\x2c\x31\x34\x38\x33\x2e\x30\x39\x33\ +\x35\x20\x34\x30\x39\x37\x2e\x36\x36\x31\x39\x2c\x31\x34\x37\x39\ +\x2e\x31\x38\x37\x20\x43\x20\x34\x30\x39\x38\x2e\x39\x36\x33\x38\ +\x2c\x31\x34\x37\x33\x2e\x31\x39\x37\x37\x20\x34\x30\x39\x36\x2e\ +\x30\x39\x39\x32\x2c\x31\x34\x36\x38\x2e\x39\x30\x30\x38\x20\x34\ +\x30\x38\x39\x2e\x30\x36\x38\x31\x2c\x31\x34\x36\x36\x2e\x32\x39\ +\x36\x34\x20\x4c\x20\x34\x30\x39\x30\x2e\x32\x34\x2c\x31\x34\x36\ +\x30\x2e\x30\x34\x36\x34\x20\x4c\x20\x34\x31\x38\x34\x2e\x37\x37\ +\x31\x32\x2c\x31\x34\x36\x30\x2e\x30\x34\x36\x34\x20\x4c\x20\x34\ +\x31\x38\x33\x2e\x35\x39\x39\x34\x2c\x31\x34\x36\x36\x2e\x32\x39\ +\x36\x34\x20\x43\x20\x34\x31\x37\x35\x2e\x33\x39\x36\x2c\x31\x34\ +\x36\x38\x2e\x35\x31\x30\x32\x20\x34\x31\x37\x30\x2e\x37\x37\x33\ +\x36\x2c\x31\x34\x37\x32\x2e\x33\x35\x31\x33\x20\x34\x31\x36\x39\ +\x2e\x37\x33\x32\x32\x2c\x31\x34\x37\x37\x2e\x38\x31\x39\x38\x20\ +\x43\x20\x34\x31\x36\x38\x2e\x39\x35\x30\x37\x2c\x31\x34\x38\x31\ +\x2e\x35\x39\x36\x31\x20\x34\x31\x36\x39\x2e\x33\x34\x31\x33\x2c\ +\x31\x34\x38\x35\x2e\x38\x39\x33\x20\x34\x31\x37\x30\x2e\x39\x30\ +\x34\x31\x2c\x31\x34\x39\x30\x2e\x37\x31\x30\x34\x20\x4c\x20\x34\ +\x32\x33\x31\x2e\x32\x35\x35\x36\x2c\x31\x36\x39\x36\x2e\x31\x37\ +\x39\x32\x20\x43\x20\x34\x32\x33\x33\x2e\x38\x35\x39\x35\x2c\x31\ +\x37\x30\x34\x2e\x39\x30\x33\x32\x20\x34\x32\x33\x36\x2e\x34\x36\ +\x33\x36\x2c\x31\x37\x31\x30\x2e\x38\x39\x32\x38\x20\x34\x32\x33\ +\x39\x2e\x30\x36\x38\x31\x2c\x31\x37\x31\x34\x2e\x31\x34\x37\x39\ +\x20\x43\x20\x34\x32\x34\x31\x2e\x36\x37\x32\x2c\x31\x37\x31\x37\ +\x2e\x32\x37\x33\x20\x34\x32\x34\x35\x2e\x35\x37\x38\x32\x2c\x31\ +\x37\x31\x39\x2e\x33\x35\x36\x33\x20\x34\x32\x35\x30\x2e\x37\x38\ +\x36\x39\x2c\x31\x37\x32\x30\x2e\x33\x39\x37\x39\x20\x4c\x20\x34\ +\x32\x34\x39\x2e\x36\x31\x35\x2c\x31\x37\x32\x36\x2e\x36\x34\x37\ +\x39\x20\x4c\x20\x34\x31\x35\x31\x2e\x35\x36\x38\x31\x2c\x31\x37\ +\x32\x36\x2e\x36\x34\x37\x39\x20\x4c\x20\x34\x31\x35\x32\x2e\x37\ +\x34\x2c\x31\x37\x32\x30\x2e\x33\x39\x37\x39\x20\x43\x20\x34\x31\ +\x36\x31\x2e\x37\x32\x34\x31\x2c\x31\x37\x31\x38\x2e\x39\x36\x35\ +\x37\x20\x34\x31\x36\x36\x2e\x38\x36\x37\x34\x2c\x31\x37\x31\x34\ +\x2e\x39\x32\x39\x32\x20\x34\x31\x36\x38\x2e\x31\x36\x39\x37\x2c\ +\x31\x37\x30\x38\x2e\x32\x38\x38\x36\x20\x43\x20\x34\x31\x36\x38\ +\x2e\x36\x39\x30\x33\x2c\x31\x37\x30\x35\x2e\x35\x35\x34\x32\x20\ +\x34\x31\x36\x38\x2e\x31\x36\x39\x34\x2c\x31\x37\x30\x31\x2e\x35\ +\x31\x37\x38\x20\x34\x31\x36\x36\x2e\x36\x30\x37\x32\x2c\x31\x36\ +\x39\x36\x2e\x31\x37\x39\x32\x20\x4c\x20\x34\x31\x35\x35\x2e\x38\ +\x36\x35\x2c\x31\x36\x35\x38\x2e\x36\x37\x39\x32\x20\x4d\x20\x34\ +\x31\x34\x36\x2e\x32\x39\x34\x37\x2c\x31\x36\x32\x32\x2e\x31\x35\ +\x35\x38\x20\x4c\x20\x34\x31\x32\x32\x2e\x30\x37\x35\x39\x2c\x31\ +\x35\x32\x37\x2e\x32\x33\x33\x39\x20\x4c\x20\x34\x30\x35\x39\x2e\ +\x33\x38\x30\x36\x2c\x31\x36\x32\x32\x2e\x31\x35\x35\x38\x20\x4c\ +\x20\x34\x31\x34\x36\x2e\x32\x39\x34\x37\x2c\x31\x36\x32\x32\x2e\ +\x31\x35\x35\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\ +\x34\x30\x70\x78\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\ +\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x76\x61\x72\x69\ +\x61\x6e\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\ +\x77\x65\x69\x67\x68\x74\x3a\x62\x6f\x6c\x64\x3b\x66\x6f\x6e\x74\ +\x2d\x73\x74\x72\x65\x74\x63\x68\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\ +\x66\x69\x6c\x6c\x3a\x23\x66\x66\x64\x61\x30\x34\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\x31\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\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\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x43\x6f\x70\x70\ +\x65\x72\x70\x6c\x61\x74\x65\x20\x47\x6f\x74\x68\x69\x63\x20\x42\ +\x6f\x6c\x64\x3b\x2d\x69\x6e\x6b\x73\x63\x61\x70\x65\x2d\x66\x6f\ +\x6e\x74\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\ +\x3a\x27\x43\x6f\x70\x70\x65\x72\x70\x6c\x61\x74\x65\x20\x47\x6f\ +\x74\x68\x69\x63\x20\x42\x6f\x6c\x64\x2c\x20\x42\x6f\x6c\x64\x27\ +\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\x15\x00\ +\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\ +\x31\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\x37\x20\x72\x32\ +\x32\x35\x38\x33\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x4e\x65\x77\x20\x64\ +\x6f\x63\x75\x6d\x65\x6e\x74\x20\x32\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\x33\x22\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\x31\ +\x39\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\x39\x33\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\ +\x39\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\x34\x31\x32\ +\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\ +\x78\x31\x3d\x22\x36\x35\x37\x2e\x34\x32\x38\x35\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x39\x32\x2e\x31\x31\x37\ +\x32\x34\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\ +\x36\x39\x36\x2e\x35\x33\x32\x31\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x79\x32\x3d\x22\x39\x32\x2e\x31\x31\x37\x32\x34\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\x69\ +\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x34\x32\x39\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\ +\x38\x62\x38\x62\x38\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\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x32\x39\ +\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\ +\x66\x66\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\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x32\x39\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\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\x33\x30\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\ +\x34\x31\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\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\x35\x33\x34\x34\x33\x33\x2c\x30\x2e\x30\x39\x36\x33\x38\x32\ +\x39\x35\x2c\x2d\x30\x2e\x30\x39\x36\x33\x38\x32\x39\x35\x2c\x30\ +\x2e\x39\x39\x35\x33\x34\x34\x33\x33\x2c\x31\x32\x2e\x39\x37\x39\ +\x34\x37\x31\x2c\x2d\x36\x32\x2e\x37\x35\x38\x34\x31\x29\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x36\x35\x31\x2e\x36\ +\x39\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\ +\x22\x31\x30\x38\x2e\x33\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x78\x32\x3d\x22\x36\x37\x37\x2e\x33\x37\x37\x30\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x31\x30\x38\x2e\x33\ +\x37\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\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\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\ +\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ +\x72\x3a\x23\x64\x64\x34\x31\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\ +\x34\x33\x30\x32\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\x61\x38\x30\x31\x30\x31\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\x33\ +\x30\x34\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\x30\x38\x2e\ +\x33\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\ +\x36\x37\x37\x2e\x33\x37\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x79\x31\x3d\x22\x31\x30\x38\x2e\x33\x37\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x36\x35\x31\x2e\x36\x39\ +\x33\x36\x36\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\x35\x33\x34\x34\x33\x33\ +\x2c\x30\x2e\x30\x39\x36\x33\x38\x32\x39\x35\x2c\x2d\x30\x2e\x30\ +\x39\x36\x33\x38\x32\x39\x35\x2c\x30\x2e\x39\x39\x35\x33\x34\x34\ +\x33\x33\x2c\x31\x32\x2e\x39\x37\x39\x34\x37\x31\x2c\x2d\x36\x32\ +\x2e\x37\x35\x38\x34\x31\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\x33\x36\x30\x39\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\x33\x30\x30\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\x35\x2e\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x33\x32\ +\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\x37\x35\x38\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\x30\ +\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\x33\x36\x31\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\x34\x31\x32\x30\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\x36\x34\x32\x2e\x31\x38\x32\x38\x37\x2c\x2d\ +\x36\x39\x2e\x33\x35\x38\x37\x33\x33\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\x64\x3d\x22\x70\x61\x74\x68\x33\x34\x39\x38\x2d\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\ +\x36\x39\x32\x2e\x36\x32\x35\x2c\x37\x39\x2e\x39\x30\x36\x32\x35\ +\x20\x63\x20\x2d\x39\x2e\x30\x30\x35\x31\x33\x2c\x30\x2e\x32\x35\ +\x37\x38\x36\x33\x20\x2d\x33\x31\x2e\x32\x35\x2c\x32\x33\x2e\x31\ +\x32\x35\x20\x2d\x33\x31\x2e\x32\x35\x2c\x32\x33\x2e\x31\x32\x35\ +\x20\x6c\x20\x37\x2e\x31\x32\x35\x2c\x33\x2e\x33\x37\x35\x20\x63\ +\x20\x2d\x35\x2e\x38\x38\x38\x32\x37\x2c\x34\x2e\x35\x33\x39\x34\ +\x33\x20\x2d\x31\x31\x2e\x38\x33\x34\x31\x34\x2c\x31\x30\x2e\x31\ +\x36\x37\x20\x2d\x31\x33\x2e\x38\x31\x32\x35\x2c\x31\x34\x2e\x38\ +\x34\x33\x37\x35\x20\x2d\x31\x2e\x33\x31\x31\x32\x2c\x33\x2e\x34\ +\x33\x38\x37\x34\x20\x2d\x30\x2e\x36\x31\x39\x37\x36\x2c\x39\x2e\ +\x38\x34\x38\x34\x32\x20\x34\x2e\x34\x30\x36\x32\x35\x2c\x38\x2e\ +\x39\x33\x37\x35\x20\x36\x2e\x32\x34\x31\x36\x37\x2c\x2d\x30\x2e\ +\x37\x32\x38\x35\x34\x20\x39\x2e\x30\x37\x33\x31\x34\x2c\x2d\x34\ +\x2e\x32\x37\x31\x37\x35\x20\x31\x31\x2e\x35\x39\x33\x37\x35\x2c\ +\x2d\x39\x2e\x34\x30\x36\x32\x35\x20\x30\x2e\x39\x32\x38\x34\x2c\ +\x2d\x32\x2e\x30\x30\x36\x36\x31\x20\x33\x2e\x35\x38\x31\x34\x31\ +\x2c\x2d\x36\x2e\x33\x33\x38\x38\x34\x20\x35\x2e\x36\x35\x36\x32\ +\x35\x2c\x2d\x31\x30\x2e\x36\x35\x36\x32\x35\x20\x6c\x20\x31\x31\ +\x2e\x34\x33\x37\x35\x2c\x35\x2e\x34\x30\x36\x32\x35\x20\x63\x20\ +\x30\x2c\x30\x20\x31\x36\x2e\x34\x38\x32\x38\x32\x2c\x2d\x33\x31\ +\x2e\x31\x34\x38\x34\x34\x36\x20\x36\x2e\x34\x33\x37\x35\x2c\x2d\ +\x33\x35\x2e\x33\x34\x33\x37\x35\x20\x2d\x30\x2e\x34\x37\x32\x32\ +\x31\x2c\x2d\x30\x2e\x31\x39\x37\x32\x31\x32\x20\x2d\x30\x2e\x39\ +\x39\x33\x34\x31\x2c\x2d\x30\x2e\x32\x39\x38\x34\x34\x31\x20\x2d\ +\x31\x2e\x35\x39\x33\x37\x35\x2c\x2d\x30\x2e\x32\x38\x31\x32\x35\ +\x20\x7a\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\x30\x30\x30\x30\x3b\x66\ +\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x37\x38\ +\x34\x33\x31\x33\x37\x33\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ +\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\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\x33\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\ +\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x70\x61\x74\x68\x33\x34\x39\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x64\x3d\x22\x6d\x20\x36\x39\x31\x2e\x37\x38\x35\x37\ +\x32\x2c\x37\x34\x2e\x35\x37\x31\x34\x32\x38\x20\x63\x20\x2d\x37\ +\x2e\x35\x35\x35\x33\x32\x2c\x2d\x33\x2e\x31\x35\x35\x33\x38\x37\ +\x20\x2d\x33\x32\x2e\x38\x35\x37\x31\x35\x2c\x32\x32\x2e\x38\x35\ +\x37\x31\x34\x33\x20\x2d\x33\x32\x2e\x38\x35\x37\x31\x35\x2c\x32\ +\x32\x2e\x38\x35\x37\x31\x34\x33\x20\x6c\x20\x32\x36\x2e\x34\x32\ +\x38\x35\x38\x2c\x31\x32\x2e\x34\x39\x39\x39\x39\x39\x20\x63\x20\ +\x30\x2c\x30\x20\x31\x36\x2e\x34\x37\x33\x38\x39\x2c\x2d\x33\x31\ +\x2e\x31\x36\x31\x38\x33\x34\x20\x36\x2e\x34\x32\x38\x35\x37\x2c\ +\x2d\x33\x35\x2e\x33\x35\x37\x31\x34\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\x75\x72\x6c\x28\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x34\x31\x32\x35\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\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\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\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\x63\x63\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x61\x74\x68\x33\x35\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x64\x3d\x22\x6d\x20\x36\x37\x36\x2e\x31\x35\x36\x31\x35\ +\x2c\x39\x34\x2e\x30\x33\x31\x38\x32\x37\x20\x63\x20\x2d\x36\x2e\ +\x39\x34\x36\x37\x32\x2c\x33\x2e\x38\x30\x30\x39\x33\x31\x20\x2d\ +\x32\x30\x2e\x36\x37\x34\x35\x39\x2c\x31\x33\x2e\x39\x39\x30\x39\ +\x38\x33\x20\x2d\x32\x33\x2e\x39\x30\x32\x34\x34\x2c\x32\x31\x2e\ +\x36\x32\x31\x34\x36\x33\x20\x2d\x31\x2e\x33\x31\x31\x32\x2c\x33\ +\x2e\x34\x33\x38\x37\x34\x20\x2d\x30\x2e\x36\x31\x39\x36\x2c\x39\ +\x2e\x38\x33\x30\x35\x31\x20\x34\x2e\x34\x30\x36\x34\x31\x2c\x38\ +\x2e\x39\x31\x39\x35\x39\x20\x36\x2e\x32\x34\x31\x36\x37\x2c\x2d\ +\x30\x2e\x37\x32\x38\x35\x34\x20\x39\x2e\x30\x35\x35\x32\x2c\x2d\ +\x34\x2e\x32\x37\x35\x32\x32\x20\x31\x31\x2e\x35\x37\x35\x38\x31\ +\x2c\x2d\x39\x2e\x34\x30\x39\x37\x32\x20\x31\x2e\x38\x33\x38\x34\ +\x35\x2c\x2d\x33\x2e\x39\x37\x33\x35\x35\x20\x31\x30\x2e\x34\x34\ +\x31\x37\x2c\x2d\x31\x37\x2e\x30\x33\x39\x35\x31\x37\x20\x37\x2e\ +\x39\x32\x30\x32\x32\x2c\x2d\x32\x31\x2e\x31\x33\x31\x33\x33\x33\ +\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\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x36\x30\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\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\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\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\x0d\x5b\ +\x00\ +\x00\x43\x5b\x78\x9c\xed\x5b\x59\x6f\xe3\x46\x12\x7e\x9f\x5f\xc1\ +\x55\x5e\x32\x58\x91\xea\xfb\xd0\xd8\x93\x87\x0c\x12\x04\xc8\x62\ +\x81\x4d\x82\x7d\x0c\x68\x8a\x92\xb9\x23\x89\x02\x45\x8f\xe5\xf9\ +\xf5\xfb\x15\xa9\x83\x94\x68\x1d\xb6\xc7\x9b\x49\x56\x82\x2d\xb1\ +\xbb\xba\xab\xba\xfa\xab\xab\x49\x5d\x7d\xb7\x9a\x4d\x83\x4f\x69\ +\xb1\xcc\xf2\xf9\x75\x8f\x47\xac\x17\xa4\xf3\x24\x1f\x65\xf3\xc9\ +\x75\xef\xb7\x5f\x7f\x08\x5d\x2f\x58\x96\xf1\x7c\x14\x4f\xf3\x79\ +\x7a\xdd\x9b\xe7\xbd\xef\xde\xbf\xb9\xfa\x5b\x18\x06\xdf\x17\x69\ +\x5c\xa6\xa3\xe0\x3e\x2b\x6f\x83\x9f\xe6\x1f\x97\x49\xbc\x48\x83\ +\x6f\x6f\xcb\x72\x31\x1c\x0c\xee\xef\xef\xa3\x6c\xdd\x18\xe5\xc5\ +\x64\xf0\x36\x08\xc3\xf7\x6f\xde\x5c\x2d\x3f\x4d\xde\x04\x41\x00\ +\xbe\xf3\xe5\x70\x94\x5c\xf7\xd6\x03\x16\x77\xc5\xb4\x22\x1c\x25\ +\x83\x74\x9a\xce\xd2\x79\xb9\x1c\xf0\x88\x0f\x7a\x3b\xf2\x64\x47\ +\x9e\x10\xf7\xec\x53\x9a\xe4\xb3\x59\x3e\x5f\x56\x23\xe7\xcb\x6f\ +\x1a\xc4\xc5\x68\xbc\xa5\x26\x69\xee\x65\x45\xc4\xbd\xf7\x03\x26\ +\x06\x42\x84\xa0\x08\x97\x0f\xf3\x32\x5e\x85\xed\xa1\x90\xb1\x6b\ +\xa8\x60\x8c\x0d\xd0\xb7\xa3\x3c\x8f\x6a\xb8\x9a\x42\x15\x8f\x0a\ +\x53\xf5\x36\xb9\x43\xfd\x0b\xfc\x6d\x07\x6c\x1a\xa2\x65\x7e\x57\ +\x24\xe9\x18\x23\xd3\x68\x9e\x96\x83\x0f\xbf\x7e\xd8\x76\x86\x2c\ +\x1a\x95\xa3\xc6\x34\x1b\xed\xb7\xf8\xb6\xb6\x64\x1e\xcf\xd2\xe5\ +\x22\x4e\xd2\xe5\x60\xd3\x5e\x8d\xbf\xcf\x46\xe5\xed\x75\xcf\xa8\ +\xc5\xaa\xba\xbe\x4d\xb3\xc9\x6d\xd9\x68\xc8\x46\xd7\x3d\xac\x50\ +\x1a\x2e\xaa\xeb\x06\x80\x78\x4d\xb0\x9e\x6e\xb8\xed\x61\x91\xb2\ +\x41\x21\x84\x76\xb2\xa2\xd8\x88\x3d\x1c\xe5\x09\xc9\x71\xdd\xfb\ +\x50\xc4\xe3\xf2\x77\xfc\xbf\x07\xf8\x22\x52\xe0\x7b\x10\x5e\x8d\ +\xd2\xf1\x92\x06\xd4\x5c\xe9\x0a\x6c\x55\xd5\x87\xde\x2d\xa3\x05\ +\x18\x2d\xd2\x84\x20\x51\x53\x37\x58\x94\x0f\xa4\x85\x36\xa9\xac\ +\x55\x15\xb4\x84\x5d\xfc\xbe\x82\xa4\xc1\x30\x90\x02\xff\x78\x27\ +\xc5\x43\x4d\xc1\xb1\xcb\xf8\x60\x9d\x34\x9f\x49\x57\x47\xa6\x59\ +\x4b\x10\xe6\x45\x36\xc9\xa0\x9c\x8a\x4e\xf0\x48\x56\xaf\xf6\x18\ +\x2c\xba\xb1\x36\x69\x04\x4c\x74\x70\xc6\xea\xf7\x07\x6a\xe7\x4e\ +\x0b\xc2\x22\x4d\x8b\x5a\x0b\xb2\x2f\x4a\x7b\x85\xbc\xa2\xd4\xcf\ +\x52\xd4\x5a\xdd\xfb\xd3\x9c\xda\xb9\x27\x29\xc0\x78\xf1\xe7\x53\ +\x00\x5c\x47\x1a\x17\x3f\x16\xf1\x28\x83\xc3\x6c\x2e\xbd\xdd\x23\ +\xb9\x52\xa1\x59\x5b\x0d\xc6\x2d\xcb\x7c\xb1\xa1\x5e\xdb\x33\x5a\ +\x40\x65\x42\xdf\xdb\x75\x2c\xcb\x87\x69\x5a\xf7\x85\x49\x3e\xcd\ +\x8b\xe1\x37\xe3\xea\xf5\xae\x6a\xca\xe1\x3c\xb2\xf2\x61\xc8\x1b\ +\x43\xf2\xf1\x78\x99\xc2\x59\xec\x60\x7a\x8c\x9d\x0b\xc5\xe5\xec\ +\x58\x07\x3b\xbe\xd3\xc9\xa0\xbd\xf4\x4b\x35\x65\x19\x3f\xa9\x27\ +\xcb\xe4\xeb\x69\xc9\x32\xfd\x4a\x3a\xa2\xab\x78\x7a\xa0\xa3\x0d\ +\xfa\xc0\x6e\x0a\x63\xba\xee\xc5\xd3\xfb\xf8\x61\xb9\xe5\x50\x05\ +\xb0\xe1\x6d\x91\x22\xe0\x7e\xd3\x89\xbb\xa6\xba\xdb\x4c\xa4\x69\ +\xf8\xa5\xc9\xba\xf1\xb7\x79\x56\x22\xb6\xde\x2d\xd3\xe2\x17\x8a\ +\x4f\xff\x9c\xff\xb6\x4c\x0f\xa8\x7e\x2d\xe2\xf9\x12\xc1\x70\x76\ +\xdd\x9b\xc5\x65\x91\xad\xbe\xe5\x7d\x46\xef\xc8\x78\xa7\x85\x57\ +\xf8\x2e\x98\x88\x9c\x70\x46\xbe\xdd\x0e\x4f\x60\x73\x88\x43\x91\ +\x30\x8a\xed\xc0\x97\xc0\x5a\x8d\x15\x91\xf5\x56\xee\xe4\x1d\x77\ +\xd2\x8e\x3b\x69\x0b\xf8\x71\x15\x49\xa5\x39\x56\x74\xb9\x81\x5a\ +\xe6\x4e\xc3\x8e\xb3\x57\x84\x1d\x7f\x2d\xd3\xbc\xc4\x8b\xbb\x86\ +\x31\xfc\xf5\xbc\xb8\x33\x2a\x64\x21\x3b\x09\x14\x67\x4c\xa8\x43\ +\xdb\xb9\xf3\x47\xf7\x94\x19\xee\x13\xb6\x07\xa0\x77\x67\xa0\xc5\ +\x19\x17\xda\x86\xa5\x37\xb7\xff\x28\x47\x69\x7d\x32\xbe\x79\x94\ +\xe3\x73\xbd\xb9\xb4\xf6\xa4\xb6\x20\xc2\xe5\x9a\x1a\x8f\xe3\x98\ +\x3d\x45\x53\xd2\x75\x59\xe4\x09\x2d\x8d\xe3\xf1\x58\x7c\x39\x2d\ +\x55\xb8\x3a\x0f\x55\xaf\x8d\xa9\xd7\x42\xd4\x25\x4e\xc8\xb3\xbf\ +\x4e\x2a\xf9\x8c\xe0\xaf\x99\x6a\xd4\x1c\x07\xa8\xd3\x4c\xec\x76\ +\xf7\xb9\xa1\x1f\xd1\xd8\x2a\xe9\x7c\x95\x01\xf0\xc8\x1b\x6f\x99\ +\xe9\x87\xdc\x79\x11\x71\xeb\xfb\xa1\x43\xc0\x76\x4e\xab\x5d\x22\ +\xb0\xe2\x88\xd8\x94\x1f\x68\xcb\x77\xb0\x7e\xa0\x56\x63\x22\xa3\ +\xac\xdb\xb9\x85\x95\xe8\xa4\x45\xab\x61\x3e\xd2\x4c\x33\x7b\xb9\ +\x3b\xaf\xf4\xf3\x88\x11\x1c\xe2\xfa\x66\x1a\x27\x1f\xf7\xa2\xed\ +\xbb\x13\xd6\xb8\x31\x25\x12\xf0\xb4\xc1\x81\xaa\xcb\x81\x03\x51\ +\x47\x0d\xae\x43\xb0\x63\xe6\xfd\xf4\x95\xf1\xee\x95\x89\xd7\x4f\ +\x6b\x35\x33\xac\x85\xec\x36\x0b\x20\xdb\xbf\x02\xb2\x79\x64\xa4\ +\xec\x42\x36\xa5\xb8\x86\xe9\xc8\x72\xd5\x10\x84\x52\x5c\xe5\xf6\ +\x91\x3d\xee\xa4\x1d\x77\xd2\x22\xc5\xe5\xdc\x46\xa0\x74\xe6\xd9\ +\x8e\xa3\xcb\x1e\xcc\xa3\x41\xe8\x5c\xd8\x9d\x6b\x0f\x46\xbc\x1e\ +\x42\x8d\x7a\x1a\x42\x5b\xea\x3e\xbe\x33\xdd\xbb\xd8\xbd\xe3\xdd\ +\xe8\x78\x1c\x80\x61\x37\x02\x39\x47\xbb\x11\x9d\x00\x3c\x0f\xf3\ +\x1d\x86\x23\x1b\x87\x34\x67\xdb\xdf\x63\x48\x3b\x81\xd0\xf3\x84\ +\x24\x1f\xcf\x99\x85\x12\xb9\x55\xed\x78\xe0\xa5\x8e\xb4\xd0\xbb\ +\x4d\xa7\xd8\xc1\xb1\x59\x91\x15\x7e\xd7\x5a\xc5\x19\x8b\x30\x21\ +\x85\x37\x47\xe0\x2f\x9d\xb2\xc8\xa1\xf5\x39\x0a\x00\x2d\x47\x25\ +\x20\x9f\xad\x84\x4e\x31\xea\xa9\x4f\xa6\x67\x4a\x86\x3c\x94\x27\ +\x4c\xee\x45\x13\x42\xa5\x21\x99\x3b\x61\x78\x2f\x96\x12\xbe\x44\ +\xdc\x88\xb3\x49\x31\x12\x47\x20\x2f\x84\x93\x17\xda\xcd\xe3\xa6\ +\xca\x22\x21\x60\x9c\x72\x7d\x0e\xb2\xbe\x50\xc0\xae\xd4\xc2\xf7\ +\x65\xe4\xad\x77\xcc\xed\x1d\x86\xb0\x08\x59\x12\xf3\x6d\xbf\xc1\ +\xb9\x8a\xb4\x71\xaa\xe5\x62\x0e\x49\xc7\x5d\xa4\x70\x5c\x3a\x12\ +\xba\x11\x23\xba\x55\x79\xde\x72\x3b\x59\x74\x4b\xb3\x65\x7c\x74\ +\x25\xdd\x8b\xa6\xad\x59\xef\xd6\x09\x1c\x72\xad\x8d\x39\x0e\xb8\ +\x1f\x18\xbd\x9f\x76\xf2\x42\xd3\xbb\xe3\xd3\xfb\x98\xde\x7b\x78\ +\x8e\x58\xfd\xea\x0c\x4c\x9b\xce\x06\xe6\xdb\x7b\xf2\xd2\x98\x97\ +\xc7\x31\xaf\xff\x88\x98\x37\x04\x14\xdb\xac\xee\x1e\x07\xfd\x21\ +\xed\x1a\x7c\xf6\xe5\x50\x7f\xae\x3c\x5b\xce\xc7\x17\x73\x02\xf7\ +\x27\x3d\x3e\x80\x69\x4f\x9c\x7b\x3f\x13\xf7\xf6\xc4\x49\xf7\x6b\ +\xe3\x9e\xce\x74\x5d\xc4\xb5\x33\x5e\xb7\x76\xc6\x46\xc2\x20\xa7\ +\x32\xb6\xb5\x33\x20\x55\xb2\xe5\x1c\x92\x4e\xda\xa4\x93\xf6\x18\ +\xc4\xbd\x71\x02\x49\x85\x5d\xa7\x60\x4c\x0a\x6b\x6c\x1f\x19\x18\ +\x53\x4c\x2b\xd1\x0f\x0d\x1a\x8d\x15\x96\x3f\x3f\x09\xe3\x10\xca\ +\x75\x5b\x76\x3b\x4c\x12\x61\xc7\x41\xc8\xb3\x33\x90\x7a\xde\xb3\ +\x93\xf3\xee\x53\xef\x63\xa8\x60\x5b\x54\x74\xa1\xd0\x34\xf2\xf5\ +\xb3\xd8\x3b\x7a\x3f\x09\x94\xdd\xec\xcd\x93\xcb\x05\x4a\x3d\x19\ +\xb2\xa4\x16\x56\x91\xa5\x5a\x69\x3c\x6f\xdf\xd6\x90\x70\x8c\x60\ +\x65\xdb\x1e\xf0\x90\x36\xe9\xa4\x3d\x8e\x55\xa6\x7c\x03\xab\x8a\ +\x73\x09\x84\x6a\x01\xc4\x2b\xa1\x7c\x3f\xb4\x4c\x44\x52\xc2\xac\ +\x9e\x0f\x56\xa5\xf4\x59\x15\x83\xd0\xfe\x0b\x20\x95\x66\xbd\x00\ +\x28\x31\xbd\x5f\x08\xa7\xc2\x1c\x71\xa9\x1d\xcc\x6f\xaa\xd7\x0b\ +\xa1\x54\x98\x27\xde\x4b\x24\x87\x6a\x23\xab\xb9\xe5\xb2\x0d\x52\ +\x34\x1a\xde\xcc\x0b\x6a\x87\xea\x84\x52\x7c\x0f\xa3\x07\xa4\x49\ +\x17\xe9\xe5\xee\x34\x54\x2e\x42\xc0\x34\xbe\x82\x28\x8f\x8c\xd3\ +\x5c\xbe\x08\x44\xd5\x59\x10\x35\x5f\x04\xa2\xe6\x12\x88\xc6\x92\ +\xde\x2f\x05\x51\x7b\x19\x44\x55\x42\xef\x97\x82\xa8\x7d\x3a\x44\ +\xff\xc0\x6e\xd4\x01\x95\x00\xa8\xe0\x55\xc8\x87\x15\x59\xf1\x02\ +\x21\x5f\x7a\xfb\x05\xbc\xe8\x57\xe8\x02\xbe\x4c\x46\x05\xf5\x7e\ +\x01\x0f\x70\xc1\x1d\x2b\xe5\x95\x3d\x9c\xf9\xff\x77\xac\xf6\x37\ +\x40\xb1\x46\x9e\x7f\xe8\x4b\x95\x97\x2f\x77\xc7\x8a\x45\x9c\x29\ +\xaa\xd0\x36\x4f\xad\x6c\x2f\x15\x8a\x34\x0f\xc5\x99\x7e\x28\x05\ +\xca\x57\x23\x5d\xfb\xae\x95\x47\x70\xe2\xce\xb6\x6f\x5a\x71\xee\ +\x51\xdb\x35\x1a\xe9\x8c\x92\xa3\xf4\xc0\x5c\x8d\x34\xbd\x3a\xcf\ +\xdc\x90\x5e\x1c\x4d\x2a\x05\x9d\xef\xd1\x19\xd3\x37\x07\x99\xf9\ +\xb9\x87\xf4\xe0\x65\x2f\x8a\x1f\x09\x4f\xe5\xd8\x9e\xc1\xad\xeb\ +\x98\x5e\x51\x4d\x7c\x2c\x60\x5c\x0d\xe8\xe1\xd3\xea\xdb\x16\xa1\ +\xf4\xe4\xea\xe8\x53\x96\xde\xbf\xd9\xce\x75\x13\x6f\x77\x7f\x11\ +\x4f\xd2\x4a\x34\xe0\xac\xae\x51\xd6\x1d\x37\x79\x31\x4a\x8b\x4d\ +\x97\xa9\x5e\xad\xae\xb5\xf4\xf5\x13\xd9\x6f\xda\xb0\xa6\x59\xb7\ +\xfd\xac\xbb\x7f\x79\x1b\x8f\xf2\x7b\x54\xfb\xfb\x9d\x9f\xf3\x7c\ +\x46\x87\x05\x7a\xbf\xa3\x8a\x4f\x07\xe4\x95\xaf\x3d\x6c\xbd\x2b\ +\x0a\x28\x25\x9c\xc6\x0f\x29\x16\x50\x7d\x6c\x54\xba\xbc\xcd\xef\ +\x27\x05\x29\xa2\x2c\xee\xd2\xfd\x91\xa3\x3c\xb9\xa3\x27\xbb\xc3\ +\xbb\xda\x68\xd6\xcf\x13\x37\x28\x68\x6c\x78\x73\x93\xaf\xba\x27\ +\xb8\xcf\xe6\x58\x58\xb8\x7e\x42\x19\x11\xe0\x60\xf9\x6b\x8a\xcd\ +\x33\xcb\x56\xbb\x47\x28\x56\x3b\xd4\xed\x77\x91\xe2\xfd\x23\x7d\ +\xb3\x78\x95\xcd\xb2\xcf\xe9\x68\x77\xa6\x71\x35\x4b\xcb\x78\x14\ +\x97\xf1\x0e\x05\x9b\x16\x69\xf8\xe6\xf9\x93\xab\x62\x34\x1e\xfe\ +\xeb\xc3\x0f\x5b\x3c\x27\xc9\xf0\xdf\x79\xf1\x71\x07\x45\x22\x88\ +\x6f\xf2\x3b\x88\xbd\xb5\x31\x7a\x02\x3a\x19\x92\xe3\x88\xcb\xf7\ +\xd9\x0c\x7b\x4b\xcf\x96\xff\x7d\x35\x9b\x02\x8f\xdb\x8e\x16\x31\ +\xb9\xcd\xdd\xa4\xf5\xb4\x45\x5a\x3f\x3b\xde\xf9\xb8\xfd\x28\x99\ +\x65\x34\x68\xf0\x4b\x99\x4d\xa7\x3f\x11\x93\x86\xdd\xad\x27\xcd\ +\xca\x69\xfa\xbe\xe2\x59\x7f\xdd\xac\x62\xb0\x5e\xc6\xf6\x74\x65\ +\xb7\xca\xab\xc1\x46\x0d\xd5\xd5\x64\xa7\x9e\x16\x64\xb6\x1a\x9e\ +\xc6\x37\xe9\xf4\xba\xf7\x33\x75\x06\x07\xbd\x93\x22\xbf\x5b\xcc\ +\xf2\x51\xba\x1e\xbe\x51\xeb\xa4\xe9\xad\x26\x48\x99\x76\x67\x17\ +\x65\x57\xdc\x77\x48\x62\x58\xf5\x70\x20\xe2\x3e\xca\x52\x86\xac\ +\x8c\x0b\x0d\x67\x6b\x1c\xf2\x49\x03\xaf\xf3\x76\xe7\xe2\x16\x71\ +\x79\xdb\x70\x3a\x5b\xc3\x87\x1c\xa4\x32\x60\x38\xf9\x9c\x24\xf4\ +\xf7\x39\xd9\xf3\x2a\x34\x14\x59\x85\x0b\x5d\xeb\xb9\x28\x42\x47\ +\xa0\x0d\x1c\xb0\xb2\x96\xf7\xe9\xce\x92\x30\x52\x8b\x20\x09\x20\ +\x52\x10\x9a\x48\xa3\x08\xa1\x83\x4b\xcd\x94\x55\x3e\x08\x39\xbc\ +\x80\x13\xc6\xf5\x35\x5c\xb9\x74\x46\x04\xa1\x42\xa7\x34\x7d\x94\ +\xd1\xde\x73\xae\x40\x83\x3e\xba\x45\xe7\x22\xe5\x99\xe3\xae\xa3\ +\x65\x1a\x70\xca\x1e\xad\x13\x7d\x1b\x31\xcb\x99\x05\x11\xb8\x1b\ +\xab\x45\x5f\x72\x3a\x2d\x14\xda\xad\xc5\xc0\x68\x47\x07\xd1\x50\ +\x10\x68\x85\xe7\x81\x10\xe0\x69\x9d\x44\x6d\x14\x09\xee\x21\xd8\ +\xf7\x58\x06\x7a\x95\xc1\x78\x8e\x98\x25\x3c\x72\x06\x6d\xe9\xd6\ +\x20\x12\x68\x8b\x2c\x75\xef\x6a\x5a\xad\x05\xf9\x2b\x26\xf1\x58\ +\xbf\xf3\x7e\xb3\x6a\x4e\x12\x09\x14\x5e\x9c\x14\xa3\xb5\xe0\xd4\ +\x66\x38\xbe\xa3\x4d\x61\x29\x5e\x7b\x1d\x84\x48\x16\x94\xe5\x54\ +\xab\x45\xd8\x44\x66\x65\x45\x66\x50\x62\xf5\x69\xc5\xd2\x28\xef\ +\xba\xdb\x3e\x1f\x1e\x2d\x6e\xef\xe5\x62\xed\xca\x39\x70\x7d\x37\ +\x86\x05\x50\xdc\xaa\x4a\x0e\xba\x68\x44\x92\x65\x59\xe4\x1f\x53\ +\xec\xfd\xbc\x69\x1f\x2f\x03\x91\x03\x80\x68\x94\x10\xce\x60\x09\ +\x16\x1a\xa3\xfc\x9c\xff\x31\x00\xe2\x2f\x00\x08\xc6\x7a\x21\x40\ +\x42\x47\x3f\x46\xdb\x80\xdb\x08\xdb\x62\x15\x0d\x32\xda\x63\x43\ +\x0f\x5b\x2e\x01\x89\xe8\x00\x89\x79\x61\x90\x6c\x10\xc1\x25\x32\ +\x99\x6e\x44\x6c\xf0\x52\x5f\xd6\xd1\x69\x28\x37\x97\x94\x4a\xc0\ +\x83\x0d\x6f\xee\xca\xb2\xd9\xf6\x9f\x3c\x9b\x0f\xe1\xd4\xe6\xa3\ +\x4d\x2b\xdc\x70\x5a\x4c\x11\x5e\xca\xa1\xda\xb4\xed\x33\x0b\x47\ +\x31\xa2\x7b\x51\xc4\x0f\x27\x80\xb8\x75\x9c\xe9\x6a\x91\x17\x65\ +\xf8\x30\x5a\x64\xd7\x3d\x03\x2b\x15\x46\xc9\x56\x0a\xb4\x47\xb9\ +\x3a\x9b\x12\xea\x48\xeb\x5f\xef\x0c\x6e\xf3\x59\x3a\x78\x40\x29\ +\xf1\x71\xf0\x61\x1d\xe5\x97\x83\x9f\xe3\x9b\x41\xf5\xbb\x9e\x41\ +\x96\xe4\xf3\xe5\x60\x44\xdf\xa3\xc5\x7c\xd2\x3b\x61\x30\x95\xc5\ +\x74\x19\x8b\x74\xba\xc3\x9b\x6a\xe0\x81\x21\x23\xee\x7b\x8d\xc4\ +\x98\x5b\x13\x00\x8b\x0e\x79\x33\x0c\xc0\x31\xab\x36\xce\x95\xa1\ +\x6e\x94\x30\x0b\x1d\x09\x84\x01\x1e\xf0\x48\x00\xb1\x0e\x26\xc0\ +\x61\x2d\x12\xfd\xc0\x03\xc0\x4e\x0f\x8d\x73\x4e\xfd\x1a\xd6\x69\ +\xfb\x54\x59\x22\x3b\x3f\xb8\x9e\x56\x06\xc2\x3c\xb3\x00\x20\x15\ +\xa5\xda\xc1\x6f\xe1\x8b\x31\x35\xfa\x30\x5b\xc7\x9d\xc2\x1a\x52\ +\xeb\x63\xeb\x3d\x48\x55\x97\xc5\xdd\x14\x3a\xfe\x94\x42\x25\xa3\ +\xa3\x20\x13\x91\x62\x00\x2e\x2c\xf3\x7f\x8c\xb6\xc7\x76\x71\xb9\ +\x4c\xea\xbf\xbd\xfd\xfc\x4a\xc0\x59\xd5\xf2\x28\x22\x85\xf4\x6c\ +\xdf\x49\xff\x23\xd0\xc2\xc3\x77\x02\x92\x7d\x8b\x50\xc7\xc9\x83\ +\xc1\x77\x3a\x85\xfd\x67\xda\xac\x31\x67\xc9\x41\x59\x3a\xb9\x51\ +\x9a\x5b\x05\x27\x48\x7e\xc7\xc2\x81\x73\xc0\x4c\x49\x06\x2f\x06\ +\xa4\x28\x27\x6d\x5f\xc1\x5d\x73\x20\x2c\x40\x97\x11\xce\xf0\x3e\ +\x97\xe0\xe0\x84\xeb\x6c\x82\xa3\x13\xcc\xd1\x61\x05\x80\x0b\x5c\ +\x73\x6a\x91\x42\x6a\x4e\x2d\x9e\x4b\xd6\x6c\xe1\x91\xe2\x80\x35\ +\x84\xc2\x57\x2f\x14\xa2\x02\x9d\x71\x72\x65\x09\xbb\xe0\xaf\x78\ +\x40\x18\xe6\x30\x9b\x6d\x03\x85\x46\x44\x78\x72\xf8\x84\x73\x4f\ +\x75\x2a\xd7\xdc\x90\x29\x18\x07\x53\xa1\xe9\x99\x90\x30\x05\xba\ +\xf7\xaa\x95\xeb\x57\x52\x81\x39\xd6\x8f\xaf\xf5\x71\x2a\x9a\xe0\ +\xdd\x05\x35\x20\xac\x38\xd5\xaf\x7c\xb4\x42\x34\x69\xb6\xc0\x01\ +\x6f\x85\x23\x0e\xc6\x22\x2c\xd5\xb2\x18\xe3\x49\x38\xe5\xf8\xee\ +\x1a\xac\xb9\x63\xae\xb2\x6b\xe4\x50\x58\x23\xd8\x49\x27\x70\xe9\ +\x05\xaf\x2e\x69\xea\x5a\x36\xb0\x10\x96\x98\x58\x21\xb8\x5d\xcb\ +\xa6\x64\xd5\x04\x5b\x37\xb5\xac\xce\xd4\xba\x64\xc8\x64\x1a\x0d\ +\x46\x4b\xad\x6b\xd9\xb0\x87\x5e\x92\x32\x14\x45\x3a\x72\x2f\xc6\ +\x92\xb7\x61\x46\x52\xbd\x0e\xc7\xa2\x98\x0b\x7e\xde\x62\xc3\x11\ +\x36\xe0\x27\x64\x1a\x6a\x48\xfa\x58\x80\x41\x3a\xfe\xed\xfe\x61\ +\x84\x97\xf6\xed\x57\xe5\x1e\x9a\xad\x75\xad\x3d\x64\xef\x66\x71\ +\xf1\x31\x2d\xea\xfe\x4f\xd9\x32\xbb\xc9\xa6\x34\x45\xf5\x75\x9a\ +\xbe\x1b\x65\xcb\x05\xf2\xf9\x61\x36\x27\x31\xde\xe5\x9f\xd2\x62\ +\x3c\xcd\xef\xb7\xfd\x30\x61\x7c\x84\x37\x71\xf2\x71\x52\xc9\x37\ +\x8c\x13\x58\xf0\xdd\x34\x2e\x2f\xcf\xc2\xbe\x52\x0f\x54\x47\x3e\ +\x2b\x5b\x4f\xc3\x6f\x23\x1f\xa7\xf3\x9d\x3e\x67\xbc\xc2\xf8\xc6\ +\xed\x84\x0e\x50\x25\xb3\x72\xf0\x46\x9e\x7b\x4a\xf8\x00\x53\xa4\ +\x53\x80\x3c\x5c\x08\xe8\xad\x56\x94\xc3\x4b\x09\x0f\xc5\x61\x47\ +\x8e\x7e\xbe\xe4\x29\x71\xd3\x02\x51\x8d\x21\x67\xeb\x5b\xa4\xa1\ +\x1e\x79\x55\x47\xd3\x23\x48\x6e\x00\xa1\x1b\x94\x64\x3b\x74\xd0\ +\x25\xf8\x59\xa0\xac\x70\xf8\x7a\x31\xeb\x6b\x07\x89\x6e\xfd\x80\ +\xb3\x06\x89\x42\x6a\x0c\x8f\xac\x01\x12\x48\x84\x94\x67\x87\x11\ +\xe1\x15\xf7\x94\x68\x33\x07\x4f\x21\x2b\x90\x08\xad\x65\x85\x11\ +\x25\x1c\x8a\x07\xc2\x88\x70\x94\xca\x23\x4d\x77\x08\x63\x08\x35\ +\x16\x4d\x9c\x9e\x4c\xd5\x7d\x07\x04\x22\xd0\xf8\xc3\x96\x3f\x2b\ +\x40\xbe\xda\x4c\x66\x9d\x41\xdb\x90\x1d\xfa\x11\x24\x2d\x52\x18\ +\x5f\x41\x44\x03\x46\x6e\x57\x74\x21\xa1\x76\x54\x4a\x5a\xa6\xa8\ +\xe2\x12\x14\x5d\x0d\xd5\x9f\x56\x33\x5f\x95\x60\xc8\x9e\x11\x0d\ +\x69\xdf\x8c\xad\x13\x60\x49\xb7\x56\x10\x7e\x1c\xa7\x21\xfb\x0d\ +\xd3\xc0\xc1\xd5\xa0\x78\x45\x0b\xe7\xf0\x59\x54\x8b\x79\x06\x1f\ +\x14\xae\x3b\x8e\x55\x62\x5d\xb5\xf9\x65\x71\x71\x7b\xd8\x2e\x16\ +\xab\xcb\x31\xb6\xfb\x65\xe5\xee\xbc\x78\x52\x1f\x78\xe1\xe3\x8a\ +\x0e\xe8\xde\xbf\xf9\x2f\xfc\xbc\x05\xeb\ +\x00\x00\x0a\xa7\ +\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\ +\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\x34\x30\ +\x35\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\x36\x22\x0a\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x66\ +\x69\x6e\x69\x73\x68\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\x3e\x0a\x20\x20\x3c\x64\ +\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\ +\x73\x34\x30\x35\x36\x22\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\x34\x30\x36\ +\x32\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\x32\x2e\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x39\x2e\x30\x33\x33\ +\x31\x37\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x79\x3d\x22\x38\x2e\x34\x31\x36\x38\x34\x33\ +\x36\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\x36\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\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x32\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\x30\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\x32\x35\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\x34\x30\x35\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\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\x70\x61\x74\ +\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x66\x69\x6c\x6c\x3a\x23\x30\x30\x64\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\x31\x2e\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\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ +\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\ +\x32\x2e\x33\x37\x35\x34\x33\x36\x37\x2c\x33\x35\x2e\x32\x31\x38\ +\x32\x33\x35\x20\x43\x20\x31\x32\x2e\x36\x38\x38\x31\x37\x37\x2c\ +\x34\x32\x2e\x34\x38\x34\x38\x36\x31\x20\x31\x33\x2e\x39\x30\x35\ +\x34\x38\x33\x2c\x35\x37\x2e\x31\x36\x32\x33\x31\x37\x20\x31\x33\ +\x2e\x39\x30\x35\x34\x38\x33\x2c\x35\x37\x2e\x31\x36\x32\x33\x31\ +\x37\x20\x4c\x20\x32\x37\x2e\x37\x36\x30\x36\x37\x38\x2c\x35\x37\ +\x2e\x31\x36\x32\x33\x31\x37\x20\x43\x20\x32\x37\x2e\x37\x36\x30\ +\x36\x37\x38\x2c\x35\x37\x2e\x31\x36\x32\x33\x31\x37\x20\x33\x38\ +\x2e\x32\x37\x38\x36\x2c\x32\x33\x2e\x30\x32\x37\x38\x36\x37\x20\ +\x35\x31\x2e\x31\x37\x36\x34\x30\x32\x2c\x31\x32\x2e\x39\x38\x35\ +\x37\x38\x34\x20\x43\x20\x36\x34\x2e\x30\x37\x34\x31\x38\x35\x2c\ +\x32\x2e\x39\x34\x33\x36\x39\x30\x31\x20\x36\x31\x2e\x33\x39\x33\ +\x34\x32\x34\x2c\x34\x2e\x37\x38\x39\x31\x38\x32\x34\x20\x36\x31\ +\x2e\x33\x39\x33\x34\x32\x34\x2c\x34\x2e\x37\x38\x39\x31\x38\x32\ +\x34\x20\x43\x20\x36\x31\x2e\x33\x39\x33\x34\x32\x34\x2c\x34\x2e\ +\x37\x38\x39\x31\x38\x32\x34\x20\x34\x31\x2e\x39\x35\x37\x38\x33\ +\x37\x2c\x38\x2e\x30\x34\x30\x34\x31\x39\x31\x20\x33\x30\x2e\x34\ +\x30\x30\x34\x33\x35\x2c\x32\x32\x2e\x33\x34\x33\x30\x31\x37\x20\ +\x43\x20\x31\x38\x2e\x38\x34\x33\x30\x31\x32\x2c\x33\x36\x2e\x36\ +\x34\x35\x35\x39\x35\x20\x31\x39\x2e\x35\x31\x33\x32\x31\x33\x2c\ +\x34\x31\x2e\x39\x35\x31\x34\x30\x33\x20\x31\x39\x2e\x35\x31\x33\ +\x32\x31\x33\x2c\x34\x31\x2e\x39\x35\x31\x34\x30\x33\x20\x43\x20\ +\x31\x39\x2e\x35\x31\x33\x32\x31\x33\x2c\x34\x31\x2e\x39\x35\x31\ +\x34\x30\x33\x20\x31\x37\x2e\x32\x32\x39\x30\x38\x38\x2c\x33\x38\ +\x2e\x31\x38\x31\x31\x30\x32\x20\x31\x30\x2e\x39\x35\x31\x31\x35\ +\x39\x2c\x33\x36\x2e\x30\x39\x37\x37\x32\x32\x20\x43\x20\x34\x2e\ +\x36\x37\x33\x32\x32\x39\x32\x2c\x33\x34\x2e\x30\x31\x34\x33\x32\ +\x32\x20\x32\x2e\x35\x35\x33\x32\x34\x32\x39\x2c\x33\x35\x2e\x31\ +\x36\x37\x37\x36\x35\x20\x32\x2e\x33\x37\x35\x34\x33\x36\x37\x2c\ +\x33\x35\x2e\x32\x31\x38\x32\x33\x35\x20\x7a\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x33\x38\x31\ +\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\x66\x69\x6e\x69\x73\x68\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\x34\x2e\x36\x30\x39\x32\x30\x34\x38\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\x34\x2e\x36\x30\x39\x32\ +\x30\x34\x38\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\ +\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x08\x45\ +\x00\ +\x00\x26\xfb\x78\x9c\xed\x59\x6b\x6f\xdb\x38\x16\xfd\x9e\x5f\xa1\ +\x75\xbf\xb4\x58\x8b\xe6\xfb\xe1\x3c\x06\xd8\x2d\x66\x30\xc0\x2e\ +\x76\xb1\x6d\xb1\x1f\x07\x8a\x44\x3b\xda\xca\x92\x21\xc9\xb1\x93\ +\x5f\xbf\x97\x7a\xcb\x91\x93\x34\x99\x69\x07\x45\x5d\x34\x96\xc8\ +\x4b\x5e\xf2\xf0\xdc\x73\x49\xfa\xe2\xa7\xc3\x26\xf1\x6e\x6d\x5e\ +\xc4\x59\x7a\x39\x23\x08\xcf\x3c\x9b\x86\x59\x14\xa7\xeb\xcb\xd9\ +\xa7\x8f\x3f\xfb\x7a\xe6\x15\x65\x90\x46\x41\x92\xa5\xf6\x72\x96\ +\x66\xb3\x9f\xae\xce\x2e\xfe\xe2\xfb\xde\xdf\x73\x1b\x94\x36\xf2\ +\xf6\x71\x79\xe3\xfd\x9a\x7e\x2e\xc2\x60\x6b\xbd\xb7\x37\x65\xb9\ +\x5d\x2e\x16\xfb\xfd\x1e\xc5\x4d\x21\xca\xf2\xf5\xe2\x9d\xe7\xfb\ +\x57\x67\x67\x17\xc5\xed\xfa\xcc\xf3\x3c\xf0\x9b\x16\xcb\x28\xbc\ +\x9c\x35\x0d\xb6\xbb\x3c\xa9\x0c\xa3\x70\x61\x13\xbb\xb1\x69\x59\ +\x2c\x08\x22\x8b\x59\x6f\x1e\xf6\xe6\xa1\xf3\x1e\xdf\xda\x30\xdb\ +\x6c\xb2\xb4\xa8\x5a\xa6\xc5\x9b\x81\x71\x1e\xad\x3a\x6b\x37\x9a\ +\x3d\xab\x8c\x88\x31\x66\x81\xe9\x82\x52\x1f\x2c\xfc\xe2\x2e\x2d\ +\x83\x83\x3f\x6e\x0a\x63\x9c\x6a\x4a\x31\xc6\x0b\xa8\xeb\x2d\x9f\ +\x67\xb5\x3c\x24\x00\xc5\xc9\xc1\x54\xb5\x43\xef\x00\xff\x16\xfe\ +\x77\x0d\xda\x02\x54\x64\xbb\x3c\xb4\x2b\x68\x69\x51\x6a\xcb\xc5\ +\xfb\x8f\xef\xbb\x4a\x1f\xa3\xa8\x8c\x06\xdd\xb4\xe8\x8f\xfc\x8e\ +\x96\x24\x0d\x36\xb6\xd8\x06\xa1\x2d\x16\x6d\x79\xd5\x7e\x1f\x47\ +\xe5\xcd\xe5\x4c\xf2\xed\xa1\x7a\xbf\xb1\xf1\xfa\xa6\x1c\x14\xc4\ +\xd1\xe5\x0c\x66\xc8\x24\xa1\xd5\xfb\x80\x40\xa4\x36\x68\xba\x5b\ +\x76\x35\x18\x71\xe5\xe5\x94\x0a\xcd\x2a\x8b\x76\xd8\xcb\x28\x0b\ +\xdd\x38\x2e\x67\xef\xf3\x60\x55\xfe\xf6\xb7\x0f\x5b\x80\xc3\x22\ +\x07\xe0\x15\x18\x5e\x44\x76\x55\xb8\x06\xb5\x57\xf7\x06\x6e\x79\ +\x55\x07\xb5\x9d\xa3\x2d\x38\xda\xda\xd0\x51\xa2\xb6\x1e\xb8\x28\ +\xef\x1c\x0a\x63\x53\x56\x43\xe5\x8d\x06\xbb\xfd\xed\x00\x23\xf5\ +\x96\x1e\xa3\xf0\x87\x4c\x5a\xdc\xd5\x16\x04\x56\x19\xbe\xf0\xa4\ +\xcd\xbd\xc3\xea\x91\x6e\x9a\x11\xf8\x59\x1e\xaf\x63\x00\xa7\xb2\ +\xa3\x04\xb1\xea\x33\x6e\x03\x93\x1e\xcc\x8d\x49\x0a\x21\xba\x78\ +\xc6\xec\x8f\x1b\x0a\xad\x9f\x1e\x08\x46\xc2\x4d\xaa\x19\xc8\xf1\ +\x50\xc6\x33\x24\x95\xa5\x78\x15\x50\x0d\xdc\xc7\xdd\x3c\xb5\x72\ +\x2f\x02\x40\x1a\xfa\xfd\x01\x90\x07\x51\x1c\x24\xbf\xb8\x2f\x10\ +\xcc\x07\x1e\xc2\x2c\x49\x60\xfa\x97\xb3\x20\xd9\x07\x77\x45\xd7\ +\x7f\x25\x39\xcb\x9b\xdc\x82\x44\xbe\x71\xf1\x16\xe4\x6d\x1f\x8c\ +\x70\xee\xcb\x11\xff\xc6\x4e\x98\xd4\xbc\xab\x5e\x37\x85\x9f\xd2\ +\xb8\x04\x35\xdc\x15\x36\xff\xe0\x14\xe5\x5f\xe9\xa7\xc2\x3e\xb0\ +\xfa\x98\x07\x69\x01\xf2\xb5\xb9\x9c\x6d\x82\x32\x8f\x0f\x6f\xc9\ +\x1c\xbb\x7f\x48\x1a\x2d\xa8\xe1\xf0\x4c\x31\x45\x9a\x6a\xc9\xde\ +\x75\xcd\x43\x40\x09\x94\x03\x51\xc9\x71\xbf\x86\x21\xe0\x2b\x15\ +\x45\xca\x28\xd6\x8f\x77\x35\x69\xbb\x9a\xb4\xcd\x21\xf2\x38\x62\ +\x5c\x10\x88\x8d\x0e\xd2\x31\x1c\x43\x1c\x26\x81\xba\x6a\x2c\x2e\ +\x8a\x32\xdb\xb6\xd6\x8d\x44\x42\x09\x58\x49\xdf\xcc\xfa\x8a\xa2\ +\xbc\x4b\x6c\x5d\xe7\xc3\xf2\x64\xf9\xf2\xcd\xaa\xfa\x9c\x57\x45\ +\x19\xa0\x17\x97\x77\x4b\x32\x68\x92\xad\x56\x85\x85\x45\xec\x23\ +\xff\x31\x77\xda\xa7\x5f\xee\x0e\x4f\xb8\x23\x3d\x26\x8b\xf1\xd4\ +\xbf\x29\xf9\xe4\x0f\xf2\x01\x0e\x0a\x93\x27\xa9\xa7\x30\xfb\x7a\ +\xc4\x53\x58\x7c\xd7\xb4\xd3\x3f\x68\x57\xd1\x4e\x3f\x4d\x3b\x82\ +\xbf\x22\xed\xc8\xb7\x55\xbb\x11\x9e\x8f\x43\x3f\xbd\x4c\xd3\x4b\ +\x3a\xbd\xfc\xaf\xe4\xd4\xf3\x88\x3b\xc1\x7e\x45\xd9\x4b\xc2\xe8\ +\x54\x44\xbe\x68\xfb\xa6\x07\xfa\xf2\xdd\x6c\xdf\x4e\xc4\xdd\x6b\ +\xa4\x4c\x4b\xee\x63\x1f\xcf\x1e\x09\x62\xc3\x7e\xbf\x0d\x1c\x46\ +\x94\x12\x4c\xb9\x9c\xc3\x01\x54\x28\x6d\xa8\x24\xee\x51\x11\x69\ +\x8c\x34\xcc\x3d\x33\xc1\xb8\x84\xfc\x30\x17\xc4\x20\xa3\xb1\x16\ +\x73\x2e\x39\x22\x86\xf2\x01\x3b\x0f\x04\x02\xc1\x48\x24\x15\xa3\ +\x3d\xe5\xef\xa0\x54\x29\x84\xb9\xa4\x83\x51\x1f\x28\xd8\x0a\x8e\ +\x34\xc6\x03\x6a\xde\x41\x29\x21\x02\x61\x62\x14\x7f\x81\xb8\xb5\ +\xd0\x3d\xa5\x39\x5a\x4a\x5f\xf8\x6a\x52\xb1\x1e\xd5\x22\x2c\x89\ +\x09\xf1\x91\xf0\x9d\x3f\x43\xe5\xb4\xd4\xbe\x1a\x84\xd6\x50\xb6\ +\x1e\xf5\xc8\x94\x09\x57\xd7\x27\x3d\x9e\x90\xba\x3f\x80\x96\x4c\ +\xa9\x47\x29\xc9\xe9\x88\x08\xc2\x28\xa4\x14\xd5\x6c\x44\x04\xce\ +\x11\x50\x8d\x0d\x6d\x1d\x11\x80\x55\x0c\x33\xaa\x47\x44\x60\xc0\ +\x4c\xc5\x9f\xcd\xf4\x2f\x67\x8b\x9b\xd1\x53\xeb\x06\xf0\x7f\x39\ +\x4b\x56\xab\x20\xc0\x2f\x61\x09\xd3\x53\x59\xf4\x09\x86\xac\x82\ +\xd5\x8a\xfe\x19\x18\x52\x45\xdf\x63\x1c\x91\x42\x7d\x23\xd9\x62\ +\x12\x71\x42\x05\x99\x73\x48\xd4\xee\xd6\xeb\x35\xaa\x05\x4e\x30\ +\x17\x66\xac\x5a\xcc\x20\x8e\x8d\xa6\x2f\x55\xad\xe7\x69\xd6\xd7\ +\x56\xac\xaf\xa2\x57\x17\x0b\x77\x29\x58\x3d\x75\x79\xd7\xdd\x28\ +\x46\xb7\xb1\xdd\x9f\x75\xa3\xba\x0e\x3a\x62\x6c\x83\xb5\xad\xfc\ +\x01\x09\xeb\xed\x61\x53\x71\x9d\xe5\x91\xcd\xdb\x2a\x59\x7d\x46\ +\x55\xcd\x90\xea\x9b\xf2\xb3\x31\xe7\x5d\xaf\x5d\x3d\x9e\xae\x2f\ +\x6e\x82\x28\xdb\xc3\xd6\xee\xb8\xf2\x3e\xcb\x80\x9c\x02\x89\xe3\ +\x0a\xb7\x11\x64\x0f\xcc\xdd\xa6\x71\xa2\x74\x97\xe7\x00\x8a\x9f\ +\x04\x77\x16\x26\x50\x7d\xb5\x78\x17\x37\xd9\x7e\x9d\x3b\x20\xca\ +\x7c\x67\x8f\x5b\x46\x59\xb8\x73\x37\xee\xfe\xae\x8e\xa7\xe6\x9e\ +\x77\x60\xe1\xda\xfa\xd7\xd7\xd9\x61\xba\x83\x7d\x9c\xc2\xc4\xfc\ +\xe6\xe6\x98\x50\xfd\x60\xfa\x8d\x45\x7b\x97\xac\x84\x3e\x61\x71\ +\xe8\x49\x79\x5c\xe5\x80\x37\x27\xea\x36\xc1\x21\xde\xc4\xf7\x36\ +\xea\xcf\x0d\x17\x1b\x5b\x06\x51\x50\x06\x3d\x0b\xda\x12\x08\xe2\ +\x56\xbd\x2f\xf2\x68\xb5\xfc\xcf\xfb\x9f\x3b\x46\x87\xe1\xf2\xbf\ +\x59\xfe\xb9\xe7\xa9\x33\x08\xae\xb3\x1d\x0c\xbb\x8b\x33\x77\x33\ +\x1d\x2e\x9d\xa6\x04\xe5\x55\xbc\x81\xb5\x75\x77\xfe\x7f\x3d\x6c\ +\x12\xe0\x63\x57\x31\x32\x76\x9b\xc1\xbe\xd3\xba\xdb\xdc\xd6\x77\ +\xfa\x93\x3f\x83\x44\xe1\x26\x76\x8d\x16\x1f\xca\x38\x49\x7e\x75\ +\x4e\x06\x91\xd7\x74\x1a\x97\x89\xbd\xaa\x7c\xd6\x8f\xed\x2c\x16\ +\xcd\x34\xda\xc0\x19\xcc\xf2\x62\xd1\xc2\x50\xbd\xad\x7b\x78\x46\ +\x94\xe9\x10\x4e\x82\x6b\x9b\x5c\xce\xfe\xe1\x2a\xbd\x07\xb5\xeb\ +\x3c\xdb\x6d\x37\x59\x64\x9b\xe6\x2d\xac\xeb\x76\x9c\xe5\xc9\xd3\ +\x0a\xa8\x2e\x2c\x84\xe0\x73\x5f\x28\x89\x98\x56\xa6\x92\x63\xc9\ +\x99\x34\x98\xbc\x1b\x25\x83\xfa\xe7\x81\xc2\xba\xbc\xf2\xef\x24\ +\x48\x7b\x95\x6f\x64\x24\x8a\x8b\x2d\x0c\x60\x19\xa7\x4e\x23\x7a\ +\x41\xdc\x06\xe5\xcd\x03\xcd\x69\xe5\xad\xfa\x9c\xaf\x00\xde\xd1\ +\x4b\x7f\x52\x44\x4a\x73\x46\x98\x62\x75\x79\xbe\x4b\xec\x32\xcd\ +\xd2\x7b\xd0\x02\x50\xa9\x3c\xfb\x5c\xbd\xda\xe6\xb9\x0e\x80\x25\ +\x05\x31\x77\x1f\x72\xbe\x09\xf2\xcf\x36\xaf\x4d\x6e\xe3\x22\xbe\ +\x8e\x13\xd7\x6d\xf5\x98\xd8\xf3\xf1\x98\xcf\xb3\x5b\x9b\xaf\x92\ +\x6c\xdf\xd5\xdb\x34\x80\x2f\xff\x3a\x08\x3f\x3b\x98\xd3\x68\x19\ +\x84\x10\xa9\xbb\x24\x28\xed\x40\x48\x1d\xb1\x3d\x61\x04\x52\x70\ +\xf8\x63\x73\x01\xc9\x44\x41\x8a\x31\x5e\xe8\x69\x24\xb1\x20\x80\ +\xb0\x44\x46\x08\x49\x95\x47\x14\x72\xa9\x4f\xcf\x7d\xc2\x90\x21\ +\x90\xd7\x98\x07\x27\x4d\x0d\xeb\x40\xe7\x3e\xc5\x08\x52\x85\xd6\ +\x9e\x2f\x20\xe7\x49\x97\x15\x29\x24\x37\x4c\x8d\xf4\x7c\x02\x95\ +\x8c\x51\xc8\x8e\x02\x8e\xbc\x58\x18\x02\x65\x12\x51\x6e\x34\x78\ +\xd0\xb0\xf1\xc6\x5a\x2b\xcf\x6f\x9d\x76\x3e\xfd\xc6\xa9\x99\xf7\ +\x3e\xfd\xc6\x29\x9b\x77\x3e\x5b\x97\x9d\xc7\xc6\x21\x9f\x77\xfe\ +\x1a\x77\x62\xde\x79\xbb\x1f\x00\x51\x9d\x5d\x81\x20\x0c\x18\xe4\ +\x9b\x61\x9a\x3a\x62\x41\x97\x28\x80\xb7\x2e\xc4\x40\xf3\x42\xf7\ +\x99\xee\x8b\xfb\xec\x18\x6d\xd8\x04\x20\xa2\x01\xe4\xb9\x54\x08\ +\x08\xcb\x14\x9f\x44\x71\x0a\x9e\xce\xae\x33\xeb\xac\x26\x67\xf5\ +\x1d\x71\xf6\xf4\x8a\x9c\x9c\x23\x08\xe2\xdb\xe3\xbd\x22\x9c\x60\ +\xdf\x8d\x27\x4d\x4e\xcf\xb5\xed\xed\xc4\x74\x9b\x62\xe7\x01\xf4\ +\x6c\x79\xbd\x2b\xcb\x61\xd9\xff\xb2\x38\x5d\x56\xf3\x68\x4b\x41\ +\x94\x6d\x9e\x40\xb2\x29\x97\xbc\x2d\xeb\x87\xd1\x14\x44\x01\xe4\ +\xfa\x3c\x07\x9c\x86\x50\xbb\xd2\x7a\x27\xb4\xc4\xdf\x42\x1b\x28\ +\xec\x65\x6b\x6d\xd0\x7f\x3a\x6d\xd0\x13\xda\x40\x9f\xd6\x06\xf6\ +\x40\x1b\x4e\x44\xd1\x50\x1b\x7e\x37\x65\xd0\x93\x48\x53\x26\xf4\ +\x9c\x72\xc4\x5d\x18\x92\x0a\x69\xa1\xa5\x11\x0e\x69\xac\x85\xc1\ +\xd2\x21\x0d\x87\x0b\x02\x09\x0f\x84\x04\x36\x43\x4c\x49\x8f\x4a\ +\x04\x6b\xa4\x00\x42\x38\xd1\x2a\x23\x60\x99\xbc\xc4\x73\x19\x11\ +\x86\xac\xe6\x4c\x40\xc2\xa4\x44\xea\x09\x78\xa4\x33\x23\x0a\x4b\ +\xc0\x1a\x4e\x2b\xc6\x30\x18\xc8\x33\x45\x64\x32\xc0\x38\xfd\x11\ +\x60\x2f\x13\xb2\x2f\x4c\x2d\x63\x02\xfd\xb3\x4b\x2c\x7a\x2e\x49\ +\x9d\x58\x98\x27\x99\x9e\x73\x90\x75\x25\xb9\x61\x8e\x12\x7f\x6c\ +\x56\x99\x22\x04\x1c\xbe\x7f\x10\xe2\x45\x84\xa8\x2e\xb2\xa1\x84\ +\xc3\x16\xe1\xc1\x2e\x02\x0b\x88\x5a\xc1\xe8\x9c\x29\x50\x06\x4e\ +\x95\xa9\x02\x99\x4a\x88\x77\xdf\x20\xc1\x30\x56\xc4\x49\x1d\x65\ +\xa0\xb6\xb0\xd3\x00\x9d\x80\xc0\x0e\x9d\x15\x26\xb0\x9f\x02\x41\ +\x81\x58\x05\xa1\x80\x77\x65\xdc\x3b\x51\x8a\x53\x0a\xef\x84\x18\ +\x2d\xe7\x06\x41\x67\x84\xd5\xb4\x71\xd7\x1e\x1c\x44\x47\x21\xd8\ +\x5f\x4b\x28\x9c\x20\x44\xbd\xb1\x68\x7e\x36\x39\x5a\xf1\xc7\xd7\ +\x97\x60\xa9\x15\x33\xe6\x59\x0b\x5c\xad\xe9\x2b\x16\x78\xf6\x9c\ +\x90\xeb\xef\x0d\xd6\xf5\xc1\x07\xbe\x2e\xdc\x41\xed\xea\xec\xff\ +\xfe\x3a\xdd\x9e\ +" + +qt_resource_name = "\ +\x00\x05\ +\x00\x6f\xa6\x53\ +\x00\x69\ +\x00\x63\x00\x6f\x00\x6e\x00\x73\ +\x00\x02\ +\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\x08\ +\x08\xba\xc7\x93\ +\x00\x70\ +\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x73\ +\x00\x08\ +\x00\x48\x54\xa7\ +\x00\x6c\ +\x00\x69\x00\x6e\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x09\ +\x06\xa6\x8f\xe7\ +\x00\x63\ +\x00\x72\x00\x6f\x00\x73\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0a\ +\x08\x8b\x0b\xa7\ +\x00\x73\ +\x00\x71\x00\x75\x00\x61\x00\x72\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0a\ +\x07\x2b\x1a\x47\ +\x00\x73\ +\x00\x69\x00\x6d\x00\x70\x00\x6c\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0c\ +\x01\xec\xcf\xc7\ +\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\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\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\ +\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\xfe\x8a\xdd\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x72\x00\x75\x00\x2e\x00\x71\x00\x6d\ +\x00\x0b\ +\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\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x68\x00\x72\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\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\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\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x70\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\x13\ +\x02\xb7\x50\xf9\ +\x00\x75\ +\x00\x73\x00\x65\x00\x72\x00\x70\x00\x72\x00\x65\x00\x66\x00\x73\x00\x2d\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2e\ +\x00\x75\x00\x69\ +\x00\x11\ +\x06\x6c\xdb\x99\ +\x00\x75\ +\x00\x73\x00\x65\x00\x72\x00\x70\x00\x72\x00\x65\x00\x66\x00\x73\x00\x2d\x00\x62\x00\x61\x00\x73\x00\x65\x00\x2e\x00\x75\x00\x69\ +\ +\x00\x0e\ +\x06\x3f\x00\x27\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x4d\x00\x6f\x00\x76\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x15\ +\x0b\x6a\xb0\xa7\ +\x00\x70\ +\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x65\x00\x73\x00\x2d\x00\x64\x00\x72\x00\x61\x00\x66\x00\x74\ +\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x14\ +\x02\x03\x8f\xc7\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x41\x00\x64\x00\x64\x00\x54\x00\x6f\x00\x47\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x2e\ +\x00\x73\x00\x76\x00\x67\ +\x00\x11\ +\x0d\x09\x0b\xe7\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x42\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\ +\x00\x17\ +\x05\x5f\x08\xe7\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x57\x00\x69\x00\x72\x00\x65\x00\x54\x00\x6f\x00\x42\x00\x53\x00\x70\x00\x6c\x00\x69\ +\x00\x6e\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x11\ +\x02\x12\x98\xa7\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x55\x00\x70\x00\x67\x00\x72\x00\x61\x00\x64\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\ +\x00\x0f\ +\x08\x62\x03\xc7\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0f\ +\x08\x91\x04\x27\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x41\x00\x70\x00\x70\x00\x6c\x00\x79\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x10\ +\x02\x9d\x02\x87\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x4f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x13\ +\x05\x4e\x71\x27\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x52\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x2e\x00\x73\ +\x00\x76\x00\x67\ +\x00\x12\ +\x0d\xee\x82\xc7\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x44\x00\x65\x00\x6c\x00\x50\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x2e\x00\x73\x00\x76\ +\x00\x67\ +\x00\x10\ +\x05\x72\x7a\x27\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x43\x00\x69\x00\x72\x00\x63\x00\x6c\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0f\ +\x05\x27\xf2\x27\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x4d\x00\x61\x00\x63\x00\x72\x00\x6f\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x15\ +\x03\x74\x49\x07\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x32\x00\x44\x00\x53\x00\x68\x00\x61\x00\x70\x00\x65\x00\x56\x00\x69\x00\x65\x00\x77\ +\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x10\ +\x08\x90\xca\xa7\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x54\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x78\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x12\ +\x0c\x43\x82\xc7\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x41\x00\x64\x00\x64\x00\x50\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x2e\x00\x73\x00\x76\ +\x00\x67\ +\x00\x0e\ +\x00\x9f\x01\x67\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x57\x00\x69\x00\x70\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x10\ +\x03\xff\x96\x67\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x52\x00\x6f\x00\x74\x00\x61\x00\x74\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x11\ +\x0d\x13\x54\x07\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x44\x00\x72\x00\x61\x00\x77\x00\x69\x00\x6e\x00\x67\x00\x2e\x00\x73\x00\x76\x00\x67\ +\ +\x00\x15\ +\x0c\xdd\x3c\xc7\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x47\x00\x72\x00\x6f\x00\x75\x00\x70\ +\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x14\ +\x08\x47\xd7\xa7\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x53\x00\x77\x00\x69\x00\x74\x00\x63\x00\x68\x00\x4d\x00\x6f\x00\x64\x00\x65\x00\x2e\ +\x00\x73\x00\x76\x00\x67\ +\x00\x0e\ +\x00\x7f\x01\x67\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x57\x00\x69\x00\x72\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0d\ +\x0f\x8d\xef\x87\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x41\x00\x72\x00\x63\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x13\ +\x04\x79\x3b\x47\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x44\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x2e\x00\x73\ +\x00\x76\x00\x67\ +\x00\x0e\ +\x00\xbf\x00\x07\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x4c\x00\x69\x00\x6e\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0f\ +\x0b\x95\xe7\xe7\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x53\x00\x63\x00\x61\x00\x6c\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x13\ +\x0f\x6f\xad\x67\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x44\x00\x6f\x00\x77\x00\x6e\x00\x67\x00\x72\x00\x61\x00\x64\x00\x65\x00\x2e\x00\x73\ +\x00\x76\x00\x67\ +\x00\x0e\ +\x05\x69\x00\x47\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x4c\x00\x6f\x00\x63\x00\x6b\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x11\ +\x0c\x01\x82\x47\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x50\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x2e\x00\x73\x00\x76\x00\x67\ +\ +\x00\x0e\ +\x0c\x0c\x01\x67\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x54\x00\x65\x00\x78\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x16\ +\x0f\xbe\x75\x07\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\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\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0e\ +\x0b\xfc\x0f\x47\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x45\x00\x64\x00\x69\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x10\ +\x0b\xce\xdb\x87\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x46\x00\x69\x00\x6e\x00\x69\x00\x73\x00\x68\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x15\ +\x0e\x5a\x0f\xa7\ +\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x5f\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x50\x00\x6c\x00\x61\x00\x6e\x00\x65\ +\x00\x2e\x00\x73\x00\x76\x00\x67\ +" + +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\x3c\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x22\x00\x00\x00\x1a\ +\x00\x00\x00\x38\x00\x02\x00\x00\x00\x05\x00\x00\x00\x15\ +\x00\x00\x00\x1a\x00\x02\x00\x00\x00\x10\x00\x00\x00\x05\ +\x00\x00\x02\x72\x00\x01\x00\x00\x00\x01\x00\x05\x98\x94\ +\x00\x00\x01\xe6\x00\x01\x00\x00\x00\x01\x00\x04\x95\x1d\ +\x00\x00\x01\x76\x00\x00\x00\x00\x00\x01\x00\x02\xce\xbb\ +\x00\x00\x02\x3a\x00\x01\x00\x00\x00\x01\x00\x05\x31\xe0\ +\x00\x00\x02\x1e\x00\x01\x00\x00\x00\x01\x00\x04\xfd\x24\ +\x00\x00\x01\x3e\x00\x01\x00\x00\x00\x01\x00\x02\x06\xcc\ +\x00\x00\x02\x02\x00\x01\x00\x00\x00\x01\x00\x04\xc7\xf2\ +\x00\x00\x00\xce\x00\x00\x00\x00\x00\x01\x00\x00\x0a\x96\ +\x00\x00\x02\x56\x00\x01\x00\x00\x00\x01\x00\x05\x65\x8b\ +\x00\x00\x01\x22\x00\x00\x00\x00\x00\x01\x00\x01\x5e\x55\ +\x00\x00\x01\x92\x00\x01\x00\x00\x00\x01\x00\x03\x7e\xe2\ +\x00\x00\x01\x5a\x00\x00\x00\x00\x00\x01\x00\x02\x39\x0a\ +\x00\x00\x01\x06\x00\x01\x00\x00\x00\x01\x00\x01\x2b\x46\ +\x00\x00\x00\xea\x00\x00\x00\x00\x00\x01\x00\x00\x7f\x81\ +\x00\x00\x01\xca\x00\x01\x00\x00\x00\x01\x00\x04\x63\x05\ +\x00\x00\x01\xae\x00\x00\x00\x00\x00\x01\x00\x03\xb2\x36\ +\x00\x00\x00\x4e\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x00\xb0\x00\x01\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\x42\x00\x01\x00\x00\x00\x01\x00\x06\xdb\xe5\ +\x00\x00\x05\x74\x00\x00\x00\x00\x00\x01\x00\x06\x99\x0b\ +\x00\x00\x06\xb0\x00\x01\x00\x00\x00\x01\x00\x07\x01\x17\ +\x00\x00\x03\x34\x00\x01\x00\x00\x00\x01\x00\x05\xfb\xbe\ +\x00\x00\x03\xbe\x00\x00\x00\x00\x00\x01\x00\x06\x1c\x27\ +\x00\x00\x04\x2e\x00\x01\x00\x00\x00\x01\x00\x06\x44\xec\ +\x00\x00\x04\xf4\x00\x01\x00\x00\x00\x01\x00\x06\x71\x39\ +\x00\x00\x05\x96\x00\x00\x00\x00\x00\x01\x00\x06\xa7\xc1\ +\x00\x00\x06\x84\x00\x01\x00\x00\x00\x01\x00\x06\xf0\x0d\ +\x00\x00\x04\xd0\x00\x01\x00\x00\x00\x01\x00\x06\x66\xcd\ +\x00\x00\x04\x54\x00\x01\x00\x00\x00\x01\x00\x06\x4a\xb0\ +\x00\x00\x03\x8a\x00\x01\x00\x00\x00\x01\x00\x06\x10\x36\ +\x00\x00\x07\x22\x00\x01\x00\x00\x00\x01\x00\x07\x20\x6b\ +\x00\x00\x04\xaa\x00\x01\x00\x00\x00\x01\x00\x06\x5d\x39\ +\x00\x00\x02\xe2\x00\x00\x00\x00\x00\x01\x00\x05\xe1\x16\ +\x00\x00\x06\x14\x00\x01\x00\x00\x00\x01\x00\x06\xd4\x00\ +\x00\x00\x03\xe6\x00\x00\x00\x00\x00\x01\x00\x06\x2b\x78\ +\x00\x00\x05\x24\x00\x00\x00\x00\x00\x01\x00\x06\x7d\x12\ +\x00\x00\x04\x0a\x00\x01\x00\x00\x00\x01\x00\x06\x3e\x4f\ +\x00\x00\x03\x04\x00\x01\x00\x00\x00\x01\x00\x05\xf3\x2f\ +\x00\x00\x06\xd2\x00\x01\x00\x00\x00\x01\x00\x07\x09\xc0\ +\x00\x00\x07\xe2\x00\x00\x00\x00\x00\x01\x00\x07\x6b\x72\ +\x00\x00\x07\xc0\x00\x01\x00\x00\x00\x01\x00\x07\x5e\x13\ +\x00\x00\x07\x44\x00\x01\x00\x00\x00\x01\x00\x07\x2a\xcd\ +\x00\x00\x07\x6c\x00\x00\x00\x00\x00\x01\x00\x07\x34\x7e\ +\x00\x00\x05\x4a\x00\x01\x00\x00\x00\x01\x00\x06\x8e\xca\ +\x00\x00\x05\xe4\x00\x01\x00\x00\x00\x01\x00\x06\xca\x2d\ +\x00\x00\x03\x62\x00\x01\x00\x00\x00\x01\x00\x06\x04\xc4\ +\x00\x00\x05\xbc\x00\x01\x00\x00\x00\x01\x00\x06\xba\x57\ +\x00\x00\x04\x80\x00\x01\x00\x00\x00\x01\x00\x06\x52\xb7\ +\x00\x00\x08\x08\x00\x01\x00\x00\x00\x01\x00\x07\x76\x1d\ +\x00\x00\x06\xf6\x00\x00\x00\x00\x00\x01\x00\x07\x11\x11\ +\x00\x00\x06\x64\x00\x01\x00\x00\x00\x01\x00\x06\xe6\x99\ +\x00\x00\x07\x8e\x00\x00\x00\x00\x00\x01\x00\x07\x49\x0f\ +\x00\x00\x02\x8e\x00\x01\x00\x00\x00\x01\x00\x05\xcc\x17\ +\x00\x00\x02\xba\x00\x01\x00\x00\x00\x01\x00\x05\xd3\x9e\ +" + +def qInitResources(): + QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) + +def qCleanupResources(): + QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) + +qInitResources() diff --git a/src/Mod/DDA/DFCalculation.py b/src/Mod/DDA/DFCalculation.py new file mode 100644 index 000000000000..322725238226 --- /dev/null +++ b/src/Mod/DDA/DFCalculation.py @@ -0,0 +1,410 @@ +# coding=gbk + +#*************************************************************************** +#* * +#* Copyright (c) 2009, 2010 * +#* Xiaolong Cheng * +#* * +#* 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 +import time +import FreeCADGui , FreeCAD +from FreeCAD import Base +from pivy import coin +from PyQt4 import QtCore , QtGui + +from ui_DF import Ui_Dialog +from ui_DFCalcProcess import Ui_DF_Calculation +#from loadDataTools import ParseDFData +from Base import showErrorMessageBox , __currentProjectPath__ , __workbenchPath__ +from DDATools import DataTable +from DDAPanel import __currentDDAPanel__ +import PyDDA + +tmpCount = 0 + + +class Ui_DFConfigurationPanel(QtGui.QDialog): + def __init__(self,parent=None): + QtGui.QDialog.__init__(self,parent) + self.initUI() + + def initUI(self): + self.ui = Ui_Dialog() + self.ui.setupUi(self) + +class Ui_DFCalculationProcess(QtGui.QWidget): + ''' + DF Calculation Process + ''' + def __init__(self,parent=None): + QtGui.QWidget.__init__(self,parent) + self.initUI() + + def initUI(self): + self.ui = Ui_DF_Calculation() + self.ui.setupUi(self) + self.ui.pushButton.pressed.connect(self.printNum) + + def printNum(self): + print 'Cancel button pressed' + +class Ui_DFMatParaConfigPanel(QtGui.QWidget): + ''' + DF Material Parameters Configuration Panel + ''' + def __init__(self , rowsBlocks , rowsLoadingPoints , rowsJoints ,parent = None): + self.rowsBlocks = rowsBlocks + self.rowsLoadingPoints = rowsLoadingPoints + self.rowsJoints = rowsJoints + QtGui.QWidget.__init__(self,parent) + self.__initUI() + + def ifMatConfigPanelOK(self): + ''' + check if 3 tables's data is valid + ''' + return self.dataTableBLocksMats.checkTable() and self.dataTableJointsMats.checkTable() \ + and self.dataTableLoadingPointsMats.checkTable() + + def __initUI(self): + from DDADatabase import df_inputDatabase + + headers = ['mass','wx','wy','elasticity\nmodule','Poisson\'s\n ratio','stress\nxx','stress\nyy'\ + ,'stress\nxy','friction\nangle','cohesion','extension\nstrength','speedX','speedY','speedR'] + VHeaders = list(df_inputDatabase.blockMatCollections) + VHeaders.sort() + for i ,t in enumerate(VHeaders): VHeaders[i] = str(t) + self.label1 = QtGui.QLabel('Block Materials \n(only used material No. shown)') + self.dataTableBLocksMats = DataTable( self.rowsBlocks , len(headers) ,headers , False , False,80,VHeaders) + self.tableBLocksMats = self.dataTableBLocksMats.table + self.tableBLocksMats.setFixedSize(1180,150) + layout1 = QtGui.QVBoxLayout() + layout1.addWidget(self.label1) + layout1.addWidget(self.tableBLocksMats) + + headers2 = ['friction\nangle','cohesion','extension\nstrength'] + VHeaders2 = list(df_inputDatabase.jointMatCollections) + VHeaders2.sort() + for i ,t in enumerate(VHeaders2): VHeaders2[i] = str(t) + self.label2 = QtGui.QLabel('Joint Materials\n(only used material No. shown)') + self.dataTableJointsMats = DataTable(self.rowsJoints , len(headers2) ,headers2 , False , False,80,VHeaders2) + self.tableJointsMats = self.dataTableJointsMats.table + self.tableJointsMats.setFixedSize(300,150) + layout2 = QtGui.QVBoxLayout() + layout2.addWidget(self.label2) + layout2.addWidget(self.tableJointsMats) + + headers3 = ['start\ntime','stressX','stressY','end\ntime','stressX','stressY'] + VHeaders3 = range(1,len(df_inputDatabase.loadingPoints)+1) + for i ,t in enumerate(VHeaders3): VHeaders3[i] = str(t) + self.label3 = QtGui.QLabel('Loading Points Parameters') + self.dataTableLoadingPointsMats = DataTable(self.rowsLoadingPoints , len(headers3) ,headers3 , False , False,80,VHeaders3) + self.tableLoadingPointsMats = self.dataTableLoadingPointsMats.table + self.tableLoadingPointsMats.setFixedSize(520,150) + layout3 = QtGui.QVBoxLayout() + layout3.addWidget(self.label3) + layout3.addWidget(self.tableLoadingPointsMats) + + layout4 = QtGui.QHBoxLayout() + layout4.addLayout(layout2) + layout4.addLayout(layout3) + + self.blockMatWidget = QtGui.QWidget() + self.blockMatWidget.setLayout(layout1) + + self.otherMatsWidget = QtGui.QWidget() + self.otherMatsWidget.setLayout(layout4) + + self.label5 = QtGui.QLabel('Blocks\' Materials') + self.btn_configBlocks = QtGui.QPushButton('Configure') + layout5 = QtGui.QVBoxLayout() + layout5.addWidget(self.label5) + layout5.addWidget(self.btn_configBlocks) + + self.label6 = QtGui.QLabel('Joints\' and Loading Points\' Materials') + self.btn_configOthers = QtGui.QPushButton('Configure') + layout6 = QtGui.QVBoxLayout() + layout6.addWidget(self.label6) + layout6.addWidget(self.btn_configOthers) + + layout7 = QtGui.QVBoxLayout() + layout7.addLayout(layout5) + layout7.addLayout(layout6) + self.setLayout(layout7) + self.btn_configBlocks.pressed.connect(self.blockMatWidget.show) + self.btn_configOthers.pressed.connect(self.otherMatsWidget.show) + +class DFCalculation: + ''' + process DF + ''' + def __init__(self): + self.current_path = __workbenchPath__ + self.origin_path = os.getcwd() + self.dataParser = None + self.__initConfigUI() + self.__initConnections() + self.__enableConfigPanel(False) + + + def __initConfigUI(self): + ''' + init the DF configuration Panel + ''' + self.configUI = Ui_DFConfigurationPanel() + self.matConfigUI = None + + def __initMatConfigUI(self): + if self.matConfigUI: + self.configUI.ui.btn_Config.pressed.disconnect(self.matConfigUI.show) + + import Base + + from DDADatabase import df_inputDatabase + self.matConfigUI = Ui_DFMatParaConfigPanel(len(df_inputDatabase.blockMatCollections) \ + , self.dataParser.loadingPointsNum, len(df_inputDatabase.jointMatCollections) ) + + self.configUI.ui.btn_Config.pressed.connect(self.matConfigUI.show) + + + def __initConnections(self): + ''' + init connections in self.configUI.ui + ''' + self.configUI.ui.btn_ReadPara.pressed.connect(self.__readParameters) + self.configUI.ui.btn_ReadData.pressed.connect(self.__readBlocksData) + self.configUI.ui.btn_Calc.pressed.connect(self.__calculateDF) + + def __enableConfigPanel(self , flag): + print 'set configuration panel : ' , flag + self.configUI.ui.btn_ReadPara.setEnabled(flag) + self.configUI.ui.btn_Config.setEnabled(flag) + self.configUI.ui.btn_Calc.setEnabled(flag) + self.configUI.ui.doubleSpinBox_IFStatic.setEnabled(flag) + self.configUI.ui.spinBox__NumStep.setEnabled(flag) + self.configUI.ui.spinBox_Ratio.setEnabled(flag) + self.configUI.ui.spinBox_timeInterval.setEnabled(flag) + self.configUI.ui.spinBox_SpringStiffness.setEnabled(flag) + self.configUI.ui.spinBox_SOR.setEnabled(flag) + + + def __readBlocksData(self): + ''' + read block data from file + ''' + import Base + filename = str( QtGui.QFileDialog.getOpenFileName(None , 'please select input file' , Base.__currentProjectPath__) ) + if not filename: + return + + from loadDataTools import ParseDFInputGraphData + self.dataParser = ParseDFInputGraphData() + + if not self.dataParser.parse(str(filename)): + showErrorMessageBox('Data Error' , 'the schema of file is incorrected') + return + + print 'DF data parse successfully' + self.__enableConfigPanel(True) + + from DDADatabase import df_inputDatabase + data = df_inputDatabase + self.configUI.ui.lineE_Path.setText(filename) + self.configUI.ui.lineE_BlockNum.setText(str(len(df_inputDatabase.blockMatCollections))) + self.configUI.ui.lineE_JointNum.setText(str(len(df_inputDatabase.jointMatCollections))) + self.__initMatConfigUI() + + self.dataParser = None + + def __readParameters(self): + ''' + read parameters from file + ''' + import Base + filename = str( QtGui.QFileDialog.getOpenFileName(None , 'please select input file' , Base.__currentProjectPath__) ) + if not filename: + return + from loadDataTools import ParseDFInputParameters + parasParser = ParseDFInputParameters() + + if not parasParser.parse(str(filename)): + showErrorMessageBox('Data Error' , 'the schema of file is incorrected') + return + self.__storePara2Panel() + + def __storePara2Panel(self): + from DDADatabase import df_inputDatabase + paras = df_inputDatabase.paras + + self.configUI.ui.doubleSpinBox_IFStatic.setValue(paras.ifDynamic) + self.configUI.ui.spinBox__NumStep.setValue(paras.stepsNum) + self.configUI.ui.spinBox_Ratio.setValue(paras.ratio) + self.configUI.ui.spinBox_timeInterval.setValue(paras.OneSteptimeLimit) + self.configUI.ui.spinBox_SpringStiffness.setValue(paras.springStiffness) + self.configUI.ui.spinBox_SOR.setValue(paras.SOR) + self.matConfigUI.dataTableBLocksMats.writeData2Table(paras.blockMats) + print 'blocks mats import done' + self.matConfigUI.dataTableJointsMats.writeData2Table(paras.jointMats) + print 'joints mats import done' + if(len(paras.loadingPoints))>0: + self.matConfigUI.dataTableLoadingPointsMats.writeData2Table(paras.loadingPoints) + print 'loading points import done' + + def __saveParameters2File(self): + ''' + save parameters to self.current_path/parameters.df,and revise df_Ff.c + ''' + import Base + outfile = open(Base.__currentProjectPath__+'/parameters.df', 'wb' ) + if not outfile: + showErrorMessageBox('File open failed' , 'Can\'t open parameters.df') + return + + # schema + tmpUI = self.configUI.ui + outfile.write('%s\n%s\n%s\n%s\n%s\n%s\n%s\n'%(str(tmpUI.doubleSpinBox_IFStatic.text())\ + , str(tmpUI.spinBox__NumStep.text()) , str(tmpUI.lineE_BlockNum.text())\ + , str(tmpUI.lineE_JointNum.text()) , str(tmpUI.spinBox_Ratio.text())\ + , str(tmpUI.spinBox_timeInterval.text()) , str(tmpUI.spinBox_SpringStiffness.text()))) + print 'schema store done.' + + # fixed points and loading points + from DDADatabase import df_inputDatabase + if len(df_inputDatabase.fixedPoints)>0: + fps = len(df_inputDatabase.fixedPoints) + outfile.write('0 '*fps +'\n') + print 'fixed points : ' ,fps + if len(df_inputDatabase.loadingPoints)>0: + lps = len(df_inputDatabase.loadingPoints) + outfile.write('2 '*lps +'\n') + print 'loading points : ' , lps + tmpTable = self.matConfigUI.tableLoadingPointsMats + nums = [1]*6 + for i in range(len(df_inputDatabase.loadingPoints)): + for j in range(6): + nums[j] = str(tmpTable.item(i,j).text()) + outfile.write( '%s %s %s\n%s %s %s\n'%(nums[0] ,nums[1] ,nums[2] ,nums[3] ,nums[4] ,nums[5] )) + print 'fixed points and loading points materials store done.' + + # block materials + tmpTable = self.matConfigUI.tableBLocksMats + nums = [1]*14 + for i in range(tmpTable.rowCount()): + for j in range(14): + nums[j] = str(tmpTable.item(i,j).text()) + outfile.write( '%s %s %s %s %s\n%s %s %s\n%s %s %s\n%s %s %s\n'%(nums[0] ,nums[1] ,nums[2]\ + ,nums[3] ,nums[4] ,nums[5] ,nums[6] ,nums[7] ,nums[8] ,nums[9] ,nums[10]\ + ,nums[11] ,nums[12] ,nums[13])) + print 'block materials store done.' + + # joints materials + tmpTable = self.matConfigUI.tableJointsMats + nums = [1]*3 + for i in range(tmpTable.rowCount()): + for j in range(3): + nums[j] = str(tmpTable.item(i,j).text()) + outfile.write( '%s %s %s\n'%(nums[0] ,nums[1] ,nums[2])) + print 'joint materials store done.' + + # rest parameters + outfile.write('%s\n0 0 0'%str(self.configUI.ui.spinBox_SOR.text())) + print 'all parameters store done.' + + outfile.close() + + outfile = open(self.current_path+'/df_Ff.c' , 'wb') + outfile.write(str(self.configUI.ui.lineE_Path.text())+'\n') + outfile.write(Base.__currentProjectPath__+'/parameters.df') + outfile.close() + + def __calculateDF(self): + ''' + save parameters to self.current_path/parameters.df , and then start calculation + ''' + if not self.matConfigUI.ifMatConfigPanelOK(): # all 3 tables' parameters are valid + showErrorMessageBox('Data Error' , 'check recorrect parameters in tables') + return + self.__saveParameters2File() + + print 'Calculation button pressed' + + print 'change dir to ' , self.current_path + os.chdir(self.current_path) + + + # begin to calculation + + processDialog = Ui_DFCalculationProcess() + print 'processbar widget showed' + + import Base + f = open(Base.__currentProjectPath__+'/data.dg' , 'wb') # clear file + f.close() + + maxSteps = int(str(self.configUI.ui.spinBox__NumStep.text())) +# maxSteps = 20000 + processDialog.ui.progressBar.setMaximum(maxSteps) + processDialog.show() + process = PyDDA.DF() + process.calculationInit() + for i in range(maxSteps): + process.calculate1Step() + processDialog.ui.progressBar.setValue(i) + processDialog.ui.label_rate.setText('steps : %d /%d '%(i , maxSteps)) + e=QtCore.QEventLoop() + e.processEvents() + + print 'change dir to ' , self.origin_path + os.chdir(self.origin_path) + + def GetResources(self): + return { + 'MenuText': 'DFCalculation', + 'ToolTip': "DF calculation process."} + + def Activated(self, name="None"): + FreeCAD.Console.PrintMessage( 'Creator activing\n') + if FreeCAD.activeDDACommand: + FreeCAD.activeDDACommand.finish() + self.doc = FreeCAD.ActiveDocument + self.view = FreeCADGui.ActiveDocument.ActiveView + self.featureName = name + self.ui = None + + if not self.doc: + FreeCAD.Console.PrintMessage( 'FreeCAD.ActiveDocument get failed\n') + self.finish() + else: + FreeCAD.activeDDACommand = self # FreeCAD.activeDDACommand 在不同的时间会接收不同的命令 + import Base + Base.__currentStage__ = 'DF' + #self.ui.show() + + # Hide Panel + if __currentDDAPanel__ != None : + __currentDDAPanel__.hide() + + self.configUI.show() + + def finish(self): + pass + +FreeCADGui.addCommand('DFCalculation', DFCalculation()) \ No newline at end of file diff --git a/src/Mod/DDA/DGPlayer.py b/src/Mod/DDA/DGPlayer.py new file mode 100644 index 000000000000..5e4bb07e43ea --- /dev/null +++ b/src/Mod/DDA/DGPlayer.py @@ -0,0 +1,45 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2009, 2010 * +#* Xiaolong Cheng * +#* * +#* 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 +import time +import FreeCADGui + +class DGPlayer: + def GetResources(self): + return { +# 'Pixmap' : 'Test1', + 'MenuText': 'PlayDF', + 'ToolTip': "play animation of DF ." + } + + def Activated(self, name="None"): + path = os.getcwd() + import Base + os.chdir(Base.__workbenchPath__) + import DDAGui + FreeCADGui.runCommand("DDA_Test") # it is in DDAGui.pyd + os.chdir(path) + +FreeCADGui.addCommand('PlayDF', DGPlayer()) \ No newline at end of file diff --git a/src/Mod/DDA/Ff.c b/src/Mod/DDA/Ff.c new file mode 100644 index 000000000000..f8df0263f710 --- /dev/null +++ b/src/Mod/DDA/Ff.c @@ -0,0 +1 @@ +D:/DDAProject3/data.dl \ No newline at end of file diff --git a/src/Mod/DDA/Graph.py b/src/Mod/DDA/Graph.py new file mode 100644 index 000000000000..1e10606dd5d8 --- /dev/null +++ b/src/Mod/DDA/Graph.py @@ -0,0 +1,310 @@ +# coding=gbk + +#*************************************************************************** +#* * +#* Copyright (c) 2009, 2010 * +#* Xiaolong Cheng * +#* * +#* 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 Part +from FreeCAD import Base +import Base +from TrackerTools import plane +import DDADatabase +from Base import showErrorMessageBox + +class BaseGraph(): + ''' + base graph class , which will be inherited by DLGraph etc for specific process + ''' + def getPointInBaseVectorType(self , p , zValue = 0): + if isinstance(p , Base.Vector): + v1 = p + elif isinstance(p , tuple) or isinstance(p , list): + v1 = Base.Vector( p[0] , p[1] , p[2]) + else: + v1 = Base.Vector( p.x , p.y , zValue) +# print v1 , +# print '<----> %f %f <---->%.6f %.6f'%(p.x , p.y , p.x , p.y) + + #print '========== ' , type(v1) , ' ==================' + return v1 + + def getPointInTupleType(self , p , zValue = 0): + if isinstance(p , tuple): + v1 = p + elif isinstance(p , Base.Vector) or isinstance(p , list): + v1 = ( p[0] , p[1] , p[2]) + else: + v1 = ( p.x , p.y , zValue) +# print v1 , +# print '<----> %f %f <---->%.6f %.6f'%(p.x , p.y , p.x , p.y) + + #print '========== ' , type(v1) , ' ==================' + return v1 + + + def getPointListInBaseVectorType(self , pts , zValue = 0): + vertices = range(len(pts)) + t = len(pts) + #t1 = pts.size() + for i in range(len(pts)): + vertices[i] = self.getPointInBaseVectorType(pts[i]) + + pts=vertices + file = open('D:/DDAProject/testVector2.txt','ab') + for i in range(len(pts)/2): + file.write('%f %f %f %f\n'%(pts[2*i].x,pts[2*i].y,pts[2*i+1].x,pts[2*i+1].y)) + file.close() + + return vertices + + def getPointListInTupleType(self , pts , zValue = 0): + vertices = range(len(pts)) + t = len(pts) + #t1 = pts.size() + for i in range(len(pts)): + vertices[i] = self.getPointInTupleType(pts[i]) + return vertices + + def drawLine( self , pts , shapeType , materialIndex = 0): +# v1 = self.getPointInBaseVectorType(p1) +# v2 = self.getPointInBaseVectorType(p2) +# + if shapeType == 'BoundaryLine': + Base.addLines2Document( pts , closed=False, face=False, fname = 'BoundaryLine') + elif shapeType == 'JointLine': + Base.addLines2Document( pts , closed=False, face=False, fname = 'JointLine', materialIndex = materialIndex) + elif shapeType == 'TunnelLine': + Base.addLines2Document( pts , closed=False, face=False, fname = 'TunnelLine', materialIndex = materialIndex) + elif shapeType == 'AdditionalLine': + Base.addLines2Document( pts , closed=False, face=False, fname = 'AdditionalLine') + elif shapeType == 'MaterialLine': + Base.addLines2Document( pts , closed=False, face=False, fname = 'MaterialLine') + elif shapeType == 'BoltElemnet': + Base.addLines2Document( pts , closed=False, face=False, fname = 'BoltElemnet') + elif shapeType == 'Frame': # frame 其实没有用 + Base.addLines2Document( pts , closed=False, face=False, fname = 'Frame') + else : + print 'Unkown Type : ' , shapeType + + def drawLines(self , points , shapeType , materialIndex = 0): + vertices = self.getPointListInBaseVectorType(points) +# vertices = self.getPointListInTupleType(points) + print '********* %s **********points :%d %d'%( shapeType ,len(points) ,len(vertices)) + if len(vertices)==0 : + return + +# print type(vertices) , ' ' , type(vertices[0]) + self.drawLine(vertices, shapeType, materialIndex) + return vertices + + + def drawCircle(self , center , radius , shapeType): + import FreeCAD + p = FreeCAD.Placement() + vec = self.getPointInBaseVectorType(center) +# vec = self.getPointInTupleType(center) + p.move(vec) + Base.addCircle2Document(vec , radius , placement=p , face=False, fname =shapeType) + + def drawCircles(self , centers , radius , shapeType): + for center in centers : + self.drawCircle(center, radius, shapeType) + + def drawPolygon(self , points , shapeType , materialIndex = 0): + p = plane.getRotation() + vertices = range(len(points)) + for i in range(len(points)): +# vertices[i] = (points[i].x , points[i].y , -1) + vertices[i] = (points[i][1] , points[i][2] , -1) + +# import checkConcave_and_triangulate as triangulate +# assert triangulate.IfConcave(vertices) + + if shapeType == 'Block': + Base.addPolygons2Document(vertices , placement=p , fname = 'Block' )#, materialIndex = 1)#materialIndex) + + def drawPolygons(self , blocks): + from loadDataTools import Block + p = plane.getRotation() + pts = [] + for block in blocks: + pts.extend(block.vertices) + Base.initPolygonSets() + Base.addPolygons2Document(pts, placement=p, fname='Block') + Base.polygonsAddedDone() + +# def showStage1Graph(self , a): +# ''' +# DL , DC both have 2 stages , the second stage is the result , so this is the first stage +# :param a: a object from PyDDA , maybe PyDDA.DL() , PyDDA.DC() , etc. +# ''' +# pass +# +# def showStage2Graph(self , a): +# ''' +# DL , DC both have 2 stages , the second stage is the result , so this is the second stage +# :param a: a object from PyDDA , maybe PyDDA.DL() , PyDDA.DC() , etc , which does the real calculation process. +# ''' +# pass + +class DLInputGraph(): + def showGraph4File(self): + import DDADisplay + DDADisplay.clearDocument() + + Base.DDAObserver.lock = True + + from DDADatabase import dl_database as database + boundaryNodes = database.boundaryNodes + if len(boundaryNodes)>0: + Base.addPolyLine2Document('BoundaryLine', ifStore2Database=False) + print 'draw boundary lines : ' , len(boundaryNodes) + + points = database.fixedPoints + if len(points)>0: + Base.addCircles2Document('FixedPoint') + print 'draw fixed points : ' , len(points) + + points = database.measuredPoints + if len(points)>0: + Base.addCircles2Document('MeasuredPoint') + print 'draw measured points : ' , len(points) + + points = database.loadingPoints + if len(points)>0: + Base.addCircles2Document('LoadingPoint') + print 'draw loading points : ' , len(points) + + points = database.holePoints + if len(points)>0: + Base.addCircles2Document('HolePoint') + print 'draw hole points : ' , len(points) + + Base.DDAObserver.lock = False + +class DLGraph(BaseGraph): + def showGraph4File(self): + import DDADisplay + DDADisplay.clearDocument() + + from DDADatabase import dc_inputDatabase + import Base + + Base.DDAObserver.lock = True + + from DDADatabase import dl_database as database + boundaryNodes = database.boundaryNodes + if len(boundaryNodes)>0: + Base.addPolyLine2Document('BoundaryLine', ifStore2Database=False) +# self.drawLines(boundaryNodes, 'BoundaryLine') + print 'draw boundary lines : ' , len(boundaryNodes) + + nums = 0 + lines = dc_inputDatabase.jointLines + # the viewProvider will take data from dc_inputDatabase.jointLines +# self.drawLines( [lines[0].startPoint , lines[0].endPoint] ,'JointLine' , 0) + if len(lines)>0: + Base.addLines2Document('JointLine') + print 'draw joints : ' , len(lines) + + points = dc_inputDatabase.fixedPoints +# self.drawCircles(points, Base.__radius4Points__, 'FixedPoint') + if len(points)>0: + Base.addCircles2Document('FixedPoint') + print 'draw fixed points : ' , len(points) + + points = dc_inputDatabase.measuredPoints +# self.drawCircles(points , Base.__radius4Points__, 'MeasuredPoint') + if len(points)>0: + Base.addCircles2Document('MeasuredPoint') + print 'draw measured points : ' , len(points) + + points = dc_inputDatabase.loadingPoints +# self.drawCircles(points , Base.__radius4Points__, 'LoadingPoint') + if len(points)>0: + Base.addCircles2Document('LoadingPoint') + print 'draw loading points : ' , len(points) + + points = dc_inputDatabase.holePoints +# self.drawCircles(points , Base.__radius4Points__, 'HolePoint') + if len(points)>0: + Base.addCircles2Document('HolePoint') + print 'draw hole points : ' , len(points) + + Base.recomputeDocument() + + Base.DDAObserver.lock = False + + +class DCGraph(BaseGraph): + ''' + draw scene for dc + ''' + def showGraph4File(self): + from DDADatabase import df_inputDatabase + frame = df_inputDatabase + + from Base import DDAObserver + DDAObserver.lock = True + + from interfaceTools import blocksRects , rectSelection + + from Base import __radius4Points__ + + import Base + Base.refreshPolygons() + Base.refreshBlockBoundaryLines() + nums = 0 + blocksRects.resetXYRange() + blocks = frame.blocks + for block in blocks: + blocksRects.handleBlockXYRange(block.getPoints()) + print 'block number : ' , len(blocks) + rectSelection.setData(blocksRects.blockRects) + + points = frame.fixedPoints +# self.drawCircles(points, Base.__radius4Points__, 'FixedPoint') + if len(points)>0: + Base.addCircles2Document('FixedPoint') + print 'draw fixed points : ' , len(points) + + points = frame.measuredPoints +# self.drawCircles(points , Base.__radius4Points__, 'MeasuredPoint') + if len(points)>0: + Base.addCircles2Document('MeasuredPoint') + print 'draw measured points : ' , len(points) + + points = frame.loadingPoints +# self.drawCircles(points , Base.__radius4Points__, 'LoadingPoint') + if len(points)>0: + Base.addCircles2Document('LoadingPoint') + print 'draw loading points : ' , len(points) + + points = frame.holePoints +# self.drawCircles(points , Base.__radius4Points__, 'HolePoint') + if len(points)>0: + Base.addCircles2Document('HolePoint') + print 'draw hole points : ' , len(points) + + + DDAObserver.lock = False \ No newline at end of file diff --git a/src/Mod/DDA/Gui/AppDDAGui.cpp b/src/Mod/DDA/Gui/AppDDAGui.cpp new file mode 100644 index 000000000000..8861cd5d315d --- /dev/null +++ b/src/Mod/DDA/Gui/AppDDAGui.cpp @@ -0,0 +1,66 @@ +/*************************************************************************** + * Copyright (c) YEAR YOUR NAME * + * * + * 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 +#endif + +#include +#include + +#include "Workbench.h" + +// use a different name to CreateCommand() +void CreateDDACommands(void); + + +/* registration table */ +extern struct PyMethodDef DDAGui_methods[]; + +PyDoc_STRVAR(module_DDAGui_doc, +"This module is the DDAGui module."); + + +/* Python entry */ +extern "C" { +void DDAGuiExport initDDAGui() +{ + if (!Gui::Application::Instance) { + PyErr_SetString(PyExc_ImportError, "Cannot load Gui module in console application."); + return; + } + + // instanciating the commands + CreateDDACommands(); + DDAGui::Workbench::init(); + + // ADD YOUR CODE HERE + // + // + + (void) Py_InitModule3("DDAGui", DDAGui_methods, module_DDAGui_doc); /* mod name, table ptr */ + Base::Console().Log("Loading GUI of DDA module... done\n"); +} + +} // extern "C" diff --git a/src/Mod/DDA/Gui/AppDDAGuiPy.cpp b/src/Mod/DDA/Gui/AppDDAGuiPy.cpp new file mode 100644 index 000000000000..38a2d39fd326 --- /dev/null +++ b/src/Mod/DDA/Gui/AppDDAGuiPy.cpp @@ -0,0 +1,35 @@ +/*************************************************************************** + * Copyright (c) YEAR YOUR NAME * + * * + * 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_ +#endif + + +#include +#include + +/* registration table */ +struct PyMethodDef DDAGui_methods[] = { + {NULL, NULL} /* end of table marker */ +}; diff --git a/src/Mod/DDA/Gui/CMakeLists.txt b/src/Mod/DDA/Gui/CMakeLists.txt new file mode 100644 index 000000000000..0de885ad489e --- /dev/null +++ b/src/Mod/DDA/Gui/CMakeLists.txt @@ -0,0 +1,84 @@ + +include_directories( + ${CMAKE_SOURCE_DIR}/src + ${CMAKE_CURRENT_BINARY_DIR} + ${Boost_INCLUDE_DIRS} + ${COIN3D_INCLUDE_DIR} + ${QT_INCLUDE_DIR} + ${ZLIB_INCLUDE_DIR} + ${SOQT_INCLUDE_DIR} + ${PYTHON_INCLUDE_PATH} + ${XERCESC_INCLUDE_DIR} +) + +set(DDAGui_LIBS + DDA + FreeCADGui +) + +set(DDAGui_MOC_HDRS + ddapostplayer.h +) +qt4_wrap_cpp(DDAGui_MOC_SRCS ${DDAGui_MOC_HDRS}) +SOURCE_GROUP("Moc" FILES ${DDAGui_MOC_SRCS}) + +set(DDAGui_UIC_SRCS + ddapostplayer.ui +) +qt4_wrap_ui(DDAGui_UIC_HDRS ${DDAGui_UIC_SRCS}) +SET(DDAGui_DLG_SRCS + ${DDAGui_UIC_HDRS} + ddapostplayer.ui + ddapostplayer.cpp + ddapostplayer.h +) +SOURCE_GROUP("Dialogs" FILES ${DDAGui_DLG_SRCS}) + +qt4_add_resources(DDA_QRC_SRCS Resources/DDA.qrc) + +SET(DDAGui_SRCS + ${DDA_QRC_SRCS} + ${DDAGui_DLG_SRCS} + ${DDAGui_MOC_SRCS} + AppDDAGui.cpp + AppDDAGuiPy.cpp + Command.cpp + PreCompiled.cpp + PreCompiled.h + Workbench.cpp + Workbench.h + FrameMaker.cpp + FrameMaker.h + FrameReader.cpp + FrameReader.h + GraphTools.cpp + GraphTools.h + Triangulate.cpp + Triangulate.h +) + +add_library(DDAGui SHARED ${DDAGui_SRCS}) +target_link_libraries(DDAGui ${DDAGui_LIBS}) + +fc_target_copy_resource(DDAGui + ${CMAKE_SOURCE_DIR}/src/Mod/DDA + ${CMAKE_BINARY_DIR}/Mod/DDA + InitGui.py) + +if(MSVC) + set_target_properties(DDAGui PROPERTIES SUFFIX ".pyd") + set_target_properties(DDAGui PROPERTIES DEBUG_OUTPUT_NAME "DDAGui_d") + set_target_properties(DDAGui PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/Mod/DDA) + set_target_properties(DDAGui PROPERTIES PREFIX "../") +elseif(MINGW) + set_target_properties(DDAGui PROPERTIES SUFFIX ".pyd") + set_target_properties(DDAGui PROPERTIES DEBUG_OUTPUT_NAME "DDAGui_d") + set_target_properties(DDAGui PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/Mod/DDA) + set_target_properties(DDAGui PROPERTIES PREFIX "") +else(MSVC) + set_target_properties(DDAGui PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/Mod/DDA) + set_target_properties(DDAGui PROPERTIES PREFIX "") + set_target_properties(DDAGui PROPERTIES INSTALL_RPATH ${INSTALL_RPATH}) +endif(MSVC) + +install(TARGETS DDAGui DESTINATION lib) diff --git a/src/Mod/DDA/Gui/Command.cpp b/src/Mod/DDA/Gui/Command.cpp new file mode 100644 index 000000000000..f2392bceeaea --- /dev/null +++ b/src/Mod/DDA/Gui/Command.cpp @@ -0,0 +1,285 @@ +/*************************************************************************** + * Copyright (c) YEAR YOUR NAME * + * * + * 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_ +#endif + +#include +//#include + +#include +#include +#include +#include +#include + +#include + +#include "FrameReader.h" +#include "GraphTools.h" +#include "FrameMaker.h" +#include "ddapostplayer.h" +#include +#include +#include + +#include + +#include +#include +#include +#include +#include +#include +#include +#include + +//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + +namespace DDAGui{ + bool DEBUG = true; + + void sleep( double seconds ) + { + QTimer t; + QEventLoop eventloop; + QObject::connect(&t , SIGNAL(timeout()) , &eventloop , SLOT(quit())); + t.setSingleShot(true); + t.start(seconds*10); // make a pause of 20 s + eventloop.exec(); // stops here until the timeout() signal is emitted + } + + void msg2File(const char* str) + { + FILE* fp= fopen("D:/freecad_log.txt", "ab"); + fprintf( fp ,str); + fclose(fp); + } + + void msg(const char* str) + { + if (DEBUG) + { + Base::Console().Message(str); + //msg2File(str); + } + } + + void msgString(const string& str) + { + FILE* fp= fopen("D:/freecad_log.txt", "ab"); + fwrite(str.c_str() , sizeof(char) , str.size() , fp); + fclose(fp); + } + + void msgQString(QString str) + { + if(DEBUG) + msg(str.toStdString().c_str()); + } + void saveTime() + { + char currentTime[200]; + time_t rawtime; + struct tm * timeinfo; + + time ( &rawtime ); + timeinfo = localtime ( &rawtime ); + sprintf ( currentTime , "\n\n**************************************\n********* %s**************************************\n", asctime (timeinfo) ); + msg2File(currentTime); + } + +} +using namespace DDAGui; + + +int sum = 0; + +void testFrameReader() +{ + FrameReader reader; + reader.setFile("D:/DDAProject/data.dg"); + std::vector schema = reader.getSchema(); + std::vector windowInfo = reader.getWindowInfo(); + char str[200]; + sprintf(str , "%d %d %d %d %d %d %d\n%lf %lf %lf %lf\n" , int(schema[0]) , int(schema[1]) , int(schema[2]) + , int(schema[3]) , int(schema[4]) , int(schema[5]) , int(schema[6]) + , windowInfo[0] , windowInfo[1] , windowInfo[2] , windowInfo[3]); + msg(str); + string tmpStr = reader.getNextFrame(); + while(tmpStr.size()>0){ /*msgQString(tmpStr);*/ tmpStr = reader.getNextFrame();} +} + +void testFrameDataTaker() +{ + FrameDataTaker dataTaker; + bool flag = dataTaker.setFile("D:/DDAProject/data.dg"); + assert(flag); + FrameData graph = dataTaker.getNextGraph(); +} + + +SoSeparator* getFreeCADRootNode() +{ + Gui::Document* doc = Gui::Application::Instance->activeDocument(); + assert(doc); + Gui::View3DInventor* view = dynamic_cast(doc->getActiveView()); + assert(view); + if (view) { + Gui::View3DInventorViewer* viewer = view->getViewer(); + SoNode* rootNode = viewer->getSceneGraph(); + SoSeparator* node = static_cast(rootNode); + assert(node); + msg("root scene graph node got.\n"); + return node; + } +} + +QWidget* getRootWidget() +{ + Gui::Document* doc = Gui::Application::Instance->activeDocument(); + assert(doc); + Gui::View3DInventor* view = dynamic_cast(doc->getActiveView()); + assert(view); + QWidget* node = dynamic_cast(view); + assert(node); + return node; +} + +SoQtViewer* getSoQtViewer() +{ + Gui::Document* doc = Gui::Application::Instance->activeDocument(); + assert(doc); + Gui::View3DInventor* view = dynamic_cast(doc->getActiveView()); + assert(view); + if (view) { + Gui::View3DInventorViewer* viewer = view->getViewer(); + SoQtViewer* node = static_cast(viewer); + assert(node); + msg("SoqtViewer got.\n"); + return node; + } +} + +void testFrameMaker() +{ + FrameDataTaker dataTaker; + assert(dataTaker.setFile("D:/DDAProject/data.dg")); + + msg("start to set frame maker.\n"); + FrameMaker frameMaker; + SoSeparator* root = getFreeCADRootNode(); + assert(root); + frameMaker.setRootSceneNode(root); + msg("start to reset frame maker.\n"); + frameMaker.reset(&dataTaker); + vector schema = dataTaker.getSchema(); + for(int i=0; i<1000; i++) + { + sleep(0.5); + msg("----------show one graph----------------.\n"); + frameMaker.updateGraph(dataTaker.getNextGraph()); + } +// +} + +void testPostPlayer() +{ + DDAPostPlayer* player = new DDAPostPlayer; + + SoSeparator* root = getFreeCADRootNode(); + assert(root); + player->setRootSceneNode(root); + + QWidget* widget= getRootWidget(); + assert(widget); + player->setRootQWidget(widget); + + SoQtViewer* viewer = getSoQtViewer(); + assert(viewer); + player->setSoQtViewer(viewer); + + player->show(); +} +DDAPostPlayer* postPlayer = NULL; +void startPostPlayer() +{ + if(!postPlayer) postPlayer= new DDAPostPlayer; + SoSeparator* root = getFreeCADRootNode(); + assert(root); + postPlayer->setRootSceneNode(root); + + QWidget* widget= getRootWidget(); + assert(widget); + postPlayer->setRootQWidget(widget); + + SoQtViewer* viewer = getSoQtViewer(); + assert(viewer); + postPlayer->setSoQtViewer(viewer); + + postPlayer->show(); +} + + +//=========================================================================== +// CmdDDATest THIS IS JUST A TEST COMMAND +//=========================================================================== +DEF_STD_CMD(CmdDDATest); + +CmdDDATest::CmdDDATest() +:Command("DDA_Test") +{ + sAppModule = "DDA"; + sGroup = QT_TR_NOOP("DDA"); + sMenuText = QT_TR_NOOP("Hello"); + sToolTipText = QT_TR_NOOP("DDA Test function"); + sWhatsThis = QT_TR_NOOP("DDA Test function"); + sStatusTip = QT_TR_NOOP("DDA Test function"); + sPixmap = "Test1"; + sAccel = "CTRL+H"; +} + + + +void CmdDDATest::activated(int iMsg) +{ +// assert(SoDB::isMultiThread()); +// testFrameDataTaker(); +// msg("one graph read done.\n"); +// testFread(); + + saveTime(); + msg("start to read graph.\n"); + +// testPostPlayer(); + startPostPlayer(); + + Base::Console().Message("Hello, World!\n"); +} + +void CreateDDACommands(void) +{ + Gui::CommandManager &rcCmdMgr = Gui::Application::Instance->commandManager(); + rcCmdMgr.addCommand(new CmdDDATest()); +} diff --git a/src/Mod/DDA/Gui/FrameMaker.cpp b/src/Mod/DDA/Gui/FrameMaker.cpp new file mode 100644 index 000000000000..3417dadf320c --- /dev/null +++ b/src/Mod/DDA/Gui/FrameMaker.cpp @@ -0,0 +1,731 @@ +#include "FrameMaker.h" +#include +#include +#include +#include +#include +#include "Triangulate.h" + +namespace DDAGui{ +///////////////////////////////////////////////// +///// +///// graph block +///// +//////////////////////////////////////////////// +using namespace std; + +GraphBlock::GraphBlock() +{ + //////////////////////////////// + // block graph + //////////////////////////////// + SoSeparator* polygon = new SoSeparator(); + polygon->ref(); + + + norm = new SoNormal(); + norm->ref(); + norm->vector.setValue(0 , 0 , 1.0); + polygon->addChild(norm); + + normalBinding = new SoNormalBinding(); + normalBinding->ref(); + normalBinding->value = SoNormalBinding.PER_FACE; + polygon->addChild(normalBinding); + + polygonColors = new SoMaterial() ; + polygonColors->ref(); + polygon->addChild(polygonColors); + + materialBinding = new SoMaterialBinding(); + materialBinding->ref(); + materialBinding->value = SoMaterialBinding.PER_VERTEX; + polygon->addChild(materialBinding); + + polygonCoords = new SoCoordinate3(); + polygonCoords->ref(); + polygon->addChild(polygonCoords); + + faceset = new SoIndexedFaceSet(); + faceset->ref(); + polygon->addChild(faceset); + + //////////////////////////////// + // block boundary lines + //////////////////////////////// + SoSeparator* lines = new SoSeparator() ; + + lineColor = new SoBaseColor(); + lineColor->rgb.setValue(0,0,0); + lineColor->ref(); + lines->addChild(lineColor); + + lineCoords = new SoCoordinate3(); + lineCoords->ref(); + lines->addChild(lineCoords); + + lineset = new SoLineSet(); + lineset->ref(); + lines->addChild(lineset); + + ////////////////////////////////// + // whole block graph + ////////////////////////////////// + rootGraphBlock = new SoSeparator(); + rootGraphBlock->ref(); + rootGraphBlock->addChild(lines); + rootGraphBlock->addChild(polygon); +} + +GraphBlock::~GraphBlock() +{ + + // block graph +// polygon->removeAllChildren(); + norm->unref(); + normalBinding->unref(); + polygonColors->unref(); + materialBinding->unref(); + polygonCoords->unref(); + faceset->unref(); +// polygon->unref(); + + // block boundary lines + lineColor->unref(); + lineCoords->unref(); + lineset->unref(); + + rootGraphBlock->unref(); +} + +//////////////////////////////////////////////// +//// +//// measured point graph +//// +//////////////////////////////////////////////// +GraphMeasuredPoints::GraphMeasuredPoints() +{ + rootGraphMPts = new SoSeparator() ; + rootGraphMPts->ref(); + + lineColor = new SoBaseColor(); + lineColor->rgb.setValue(1.0,0,0); + lineColor->ref(); + rootGraphMPts->addChild(lineColor); + + +// float pts[][3] = {{100.0 , 100.0 , 1} , {100.0 , 0.0 , 1} , {0.0 , 100.0 , 1}}; + meausuredPointsCoords = new SoCoordinate3() ; + meausuredPointsCoords->ref(); + rootGraphMPts->addChild(meausuredPointsCoords); +// meausuredPointsCoords->point.setValues(0 , 3 , pts); + + measuredPointsLineset = new SoLineSet() ; + measuredPointsLineset->ref(); + rootGraphMPts->addChild(measuredPointsLineset); +// measuredPointsLineset->numVertices.setValue(3); + + mpts = new vector>(); +} + +GraphMeasuredPoints::~GraphMeasuredPoints() +{ + delete mpts; + rootGraphMPts->unref(); + lineColor->unref(); + meausuredPointsCoords->unref(); + measuredPointsLineset->unref(); +} + +///////////////////////////////////////////////// +///// +///// scaler +///// +//////////////////////////////////////////////// +SoSeparator* Scaler::rootGraphBlock = NULL; +int Scaler::scale = 10; +SoSeparator* Scaler::createScaler( const std::vector& windowInfo , int scale) +{ + Scaler::scale = scale; + + if (rootGraphBlock) + rootGraphBlock->removeAllChildren(); + else + rootGraphBlock = new SoSeparator; + + double width = windowInfo[1]-windowInfo[0]; + double height = windowInfo[3]-windowInfo[2]; + double centerX = (windowInfo[0]+windowInfo[1])/2; + double centerY = (windowInfo[2]+windowInfo[3])/2; + double LBX = centerX - width*0.7; + double LBY = centerY - height*0.3; + SoTransform* trans = new SoTransform; + trans->translation.setValue(LBX , LBY , 0); + rootGraphBlock->addChild(trans); + + rootGraphBlock->addChild(_createScalerBar(windowInfo)); + rootGraphBlock->addChild(_createTexts(windowInfo)); + return rootGraphBlock; +} + +SoSeparator* Scaler::_createScalerBar( const std::vector& windowInfo ) +{ + SoSeparator* root = new SoSeparator; + + SoNormal* norm = new SoNormal; + SbVec3f norms[] = {SbVec3f(0,0,1.0), SbVec3f(0,0,1.0) , SbVec3f(0,0,1.0) , SbVec3f(0,0,1.0)}; + norm->vector.setValues(0,4,norms); + root->addChild(norm); + + SoNormalBinding* normalBinding = new SoNormalBinding(); + normalBinding->value = SoNormalBinding.PER_FACE; + root->addChild(normalBinding); + + + float colors[16][3] = { {0,0,1} , {0,0,1} , {0,1,1} , {0,1,1} , {0,1,1} , {0,1,1} , {0,1,0} , {0,1,0} + , {0,1,0} , {0,1,0} , {1,1,0} , {1,1,0} , {1,1,0} , {1,1,0} , {1,0,0} , {1,0,0} }; + + SoMaterial* polygonColors = new SoMaterial() ; + polygonColors->diffuseColor.setValues(0 , 16 , colors); + root->addChild(polygonColors); + + SoMaterialBinding* materialBinding = new SoMaterialBinding(); + materialBinding->value = SoMaterialBinding.PER_VERTEX; + root->addChild(materialBinding); + + double width = windowInfo[1]-windowInfo[0]; + double height = windowInfo[3]-windowInfo[2]; + double centerX = (windowInfo[0]+windowInfo[1])/2; + double centerY = (windowInfo[2]+windowInfo[3])/2; + + double detY = 0.6*height; + double detX = detY*0.1; + + float pts[16][3] = { {0,0,0 } , {detX,0,0 } , {detX,detY*0.25,0}, {0,detY*0.25,0}\ + ,{0,detY*0.25,0 },{detX,detY*0.25,0 },{detX,detY*0.5 ,0}, {0,detY*0.5,0 }\ + ,{0,detY*0.5 ,0 },{detX,detY*0.5 ,0 },{detX,detY*0.75,0}, {0,detY*0.75,0} + ,{0,detY*0.75,0 },{detX,detY*0.75,0 },{detX,detY,0 }, {0,detY,0 }}; + + SoCoordinate3* polygonCoords = new SoCoordinate3(); + polygonCoords->point.setValues(0 , 16 , pts); + root->addChild(polygonCoords); + + SoFaceSet* face = new SoFaceSet(); + int nums[] = {4 ,4 , 4, 4}; + face->numVertices.setValues(0 , 4 , nums); + root->addChild(face); + return root; +} + +SoSeparator* Scaler::_createTexts( const std::vector& windowInfo ) +{ + SoSeparator* textRoot = new SoSeparator; + double width = windowInfo[1]-windowInfo[0]; + double height = windowInfo[3]-windowInfo[2]; + double detY = height; + double detX = 0.12*height; + + double disInterval = height/float(scale); + + + SoFont* font = new SoFont; + font->name.setValue("Times-Roman"); + font->size.setValue(15); + + for( int i=0 ; i<10 ; i++) + { + SoSeparator* g = new SoSeparator; + + SoTransform* t = new SoTransform; + t->translation.setValue(detX , detY*0.06*i , 0); + g->addChild(t); + + SoBaseColor* c = new SoBaseColor; + c->rgb.setValue(0,0,0); + g->addChild(c); + + g->addChild(font); + + SoText2* text = new SoText2; + char str[100]; + sprintf(str , "%lf" , disInterval*0.1*i); + text->string.setValue(str); + g->addChild(text); + + textRoot->addChild(g); + } + return textRoot; +} + +///////////////////////////////////////////////// +///// +///// scene graph +///// +//////////////////////////////////////////////// + +SceneGraph::SceneGraph() +{ +// blocks = new vector(); + blocks = NULL; + graphMeasuredPoints = NULL; + + rootScene = new SoSeparator(); + rootScene->ref(); +} + +SceneGraph::~SceneGraph() +{ + rootScene->unref(); + delete []blocks ; + delete graphMeasuredPoints ; +} + +void SceneGraph::resetRootScene(const vector schema , const vector windowInfo ) +{ + rootScene->removeAllChildren(); + + ///////////////////////////////// + // blocks + ///////////////////////////////// + blocksNum = schema[0]; + if(blocks){ + delete []blocks; + blocks = NULL; + } + + blocks = new GraphBlock[blocksNum]; + for(int i=0 ; iaddChild(blocks[i].rootGraphBlock); + } + + ///////////////////////////////// + // measured points + ///////////////////////////////// + if(graphMeasuredPoints){ + delete graphMeasuredPoints; + graphMeasuredPoints=NULL; + } + graphMeasuredPoints = new GraphMeasuredPoints; + assert(graphMeasuredPoints); + graphMeasuredPoints->mpts->resize(schema[3]); + rootScene->addChild(graphMeasuredPoints->rootGraphMPts); + + ///////////////////////////////// + // scaler + ///////////////////////////////// + rootScene->addChild(Scaler::createScaler(windowInfo , 10)); +} + +///////////////////////////////////////////////// +///// +///// block updater +///// +//////////////////////////////////////////////// +vector BlockUpdatater::windowInfo = vector(); +double BlockUpdatater::scale = 0; // scale for color +FrameData* BlockUpdatater::originalGraph = NULL; +vector BlockUpdatater::coords = vector(); +int BlockUpdatater::tmpCount=0; + +void BlockUpdatater::reset(vector windowInfo , double scale , FrameData* originalGraph) +{ + BlockUpdatater::windowInfo = windowInfo; + BlockUpdatater::scale = scale; + BlockUpdatater::originalGraph = originalGraph; + _calcWindowInfoFromFrame(); +} + +void BlockUpdatater::_calcWindowInfoFromFrame() +{ + assert(originalGraph!=NULL && originalGraph->blocks.size()>0) ; + const vector& blocks = originalGraph->blocks; + windowInfo[0] = windowInfo[1] = originalGraph->blocks[0].vertices[0].first; + windowInfo[2] = windowInfo[3] = originalGraph->blocks[0].vertices[0].second; + for(int i=0 ; i>& pts = blocks[i].vertices; + for(vector>::const_iterator it = pts.begin() ; it!=pts.end() ; it++){ + if(it->first < windowInfo[0]) windowInfo[0] = it->first; + if(it->first > windowInfo[1]) windowInfo[1] = it->first; + if(it->second< windowInfo[2]) windowInfo[2] = it->second; + if(it->second> windowInfo[3]) windowInfo[3] = it->second; + } + } +} + +void BlockUpdatater::update(FrameData* frame , GraphBlock* graphBlock , int blockIdx) +{ + _updatePolygon(frame , graphBlock , blockIdx); + _updateLines(frame , graphBlock , blockIdx); +} + + +void BlockUpdatater::_updatePolygonColor(FrameData* frame , GraphBlock* graphBlock , int blockIdx , SbColor* colors) +{ + const vector>& pts1 = frame->blocks[blockIdx].vertices; + const vector>& originPts = originalGraph->blocks[blockIdx].vertices; + + assert(pts1.size()==originPts.size()); + for(int i=0 ; i& p1= pts1[i]; + const pair& p2= originPts[i]; + double tmp = sqrt((p1.first-p2.first)*(p1.first-p2.first) + +(p1.second-p2.second)*(p1.second-p2.second)); + double t1 = tmp/scale; + if (t1>1) t1=1; + if(t1>0.75) { t1-=0.75 ; colors[i].setValue( 1 , 1-4*t1 , 0 );} + else if(t1<=0.75 && t1>0.5) { t1-=0.5 ; colors[i].setValue( 4*t1 , 1 , 0 );} + else if(t1<=0.5 && t1>0.25) { t1-=0.25 ; colors[i].setValue( 0 , 1 , 1-4*t1 );} + else { colors[i].setValue( 0 , 4*t1 , 1 );} + } +#ifdef DEBUGFRAMEMAKER + char tmpStr[200]; + sprintf(tmpStr , "%d colors got.\n" , colors); +#endif +} + +int BlockUpdatater::_getVectorUp(const SbVec3f& p1 , const SbVec3f& p2 , const SbVec3f& p3) +{ +// double ax = p1[0]-p2[0]; +// double ay = p1[1]-p2[1]; +// double bx = p2[0]-p3[0]; +// double by = p2[1]-p3[1]; +// double tmp = ax*by-ay*bx; // cross vector v1*v2 +// return tmp>0?1:-1 + return (p1[0]-p2[0])*(p2[1]-p3[1])-(p1[1]-p2[1])*(p2[0]-p3[0])>0?1:-1; +} + + +bool BlockUpdatater::_ifConcave(const vector& pts) +{ + assert(pts.size()>2); + int size = pts.size(); + if(pts[0]==pts[size-1]) + size-=1; + + double res = _getVectorUp(pts[0] , pts[1] , pts[2]); + for( int i=0 ;i& pts) +{ + assert(pts.size()>3); + coords.clear(); + + int size = pts.size(); + SbVec3f p1 = pts[0]; + SbVec3f p2 = pts.back(); + +// char str[200]; +// sprintf(str , "(%f , %f)<--->(%f , %f)\n" , p1[0] , p1[1] , p2[0] , p2[1]); +// msg(str); +// +// if(p1[0]==p2[0] && p1[1]==p2[1]) +// {size-=1; msg("first and last point are same");} +// + + Vector2dVector vec2d; + vec2d.resize(size); + for( int i=0; i& pts , SbVec3f p) +{ + // if found , return n (n>0) , else return -1 + for(int i=0 ; i& pts , SbColor* colors , SbColor* resultColors) +{ + // calculate colors for points after tesselation + + double* percents = new double[coords.size()+1]; + double sum = 0; + + for(int i=0 ; i0 ){ resultColors[i]=colors[pos]; continue;} + else // the point is not in pts + { + // calculate distance to every point in original convex polygon + for(int j=0 ; j>& tmpPts = frame->blocks[blockIdx].vertices; + assert(tmpPts.size()>2); + + SbColor* colors = new SbColor[tmpPts.size()+1]; + _updatePolygonColor(frame , graphBlock , blockIdx , colors); + + SbVec3f* pts = new SbVec3f[tmpPts.size()+1]; + for(int i=0;i vecPts(pts , pts+tmpPts.size()); + assert(vecPts.size()==tmpPts.size()); + + +// char tmpStr[200]; + if(_ifConcave(vecPts)) + { + //sprintf(tmpStr , "\t%d-th polygon is convex.\n" , blockIdx); + //msg(tmpStr); + + graphBlock->norm->vector.setNum(tmpPts.size()); + SbVec3f * p = graphBlock->norm->vector.startEditing(); + for(int i=0 ; inorm->vector.finishEditing(); + + graphBlock->polygonCoords->point.setValues(0 , tmpPts.size() , pts); + + graphBlock->faceset->coordIndex.setNum(tmpPts.size()+1); + int* pIdx = graphBlock->faceset->coordIndex.startEditing(); + for(int i=0; ifaceset->coordIndex.finishEditing(); + + graphBlock->polygonColors->diffuseColor.setValues(0 , tmpPts.size() , colors); + } + else // the polygon is concave + { + _triangulate(vecPts); + graphBlock->polygonCoords->point.setNum(coords.size()); + SbVec3f* pCoord = graphBlock->polygonCoords->point.startEditing(); + for (int i=0 ; ipolygonCoords->point.finishEditing(); + + assert(int(coords.size())%3==0); + const int size = int(coords.size())/3; + graphBlock->faceset->coordIndex.setNum(size*4); + int* pIdx = graphBlock->faceset->coordIndex.startEditing(); + for(int i=0 , j=0; ifaceset->coordIndex.finishEditing(); + + graphBlock->norm->vector.setNum(coords.size()); + SbVec3f * p = graphBlock->norm->vector.startEditing(); + for(int i=0 ; inorm->vector.finishEditing(); + + SbColor *TColors = new SbColor[coords.size()+1]; + _calcColors4ConcavePolygon(vecPts , colors , TColors); + graphBlock->polygonColors->diffuseColor.setValues(0 , coords.size() , TColors); + delete []TColors; + } +// +// sprintf(tmpStr , "%d-th polygon was parsed out.\n" , blockIdx); +// msg(tmpStr); +// + delete []pts; + delete []colors; +} +void BlockUpdatater::_updateLines(FrameData* frame , GraphBlock* graphBlock , int blockIdx) +{ + const vector>& pts = frame->blocks[blockIdx].vertices; + const int size = pts.size(); + + SbVec3f* TmpPts = new SbVec3f[size+1]; + for( int i=0 ; ilineCoords->point.setValues(0 , size , TmpPts); + int nums[] = {size}; + graphBlock->lineset->numVertices.setValues(0 , 1 , nums); + } + else + { + graphBlock->lineCoords->point.setValues(0 , size+1 , TmpPts); + int nums[] = {size+1}; + graphBlock->lineset->numVertices.setValues(0 , 1 , nums); + } + delete []TmpPts; +} +////////////////////////////////////////////////////// +///// +///// Points Updater +///// +////////////////////////////////////////////////////// +void PointsUpdater::update(FrameData* frame , SceneGraph* sceneGraph) +{ + const int num = frame->measuredPoints.size(); + GraphMeasuredPoints* graphMPts = sceneGraph->graphMeasuredPoints; + const int steps = (*(graphMPts->mpts))[0].size(); + + SoCoordinate3* coords = graphMPts->meausuredPointsCoords; + coords->point.setNum(num*(steps+1)); + SbVec3f* p = coords->point.startEditing(); + for( int i=0 ; i& tmpPts = (*(graphMPts->mpts))[i]; + tmpPts.push_back( frame->measuredPoints[i] ); + + for(int j=0 ; jpoint.finishEditing(); + + graphMPts->measuredPointsLineset->numVertices.setNum(num); + int* pNum = graphMPts->measuredPointsLineset->numVertices.startEditing(); + for(int i=0 ; imeasuredPointsLineset->numVertices.finishEditing(); +} + + + +///////////////////////////////////////////////// +///// +///// frame maker +///// +//////////////////////////////////////////////// + + + +FrameMaker::FrameMaker(void) +{ + _rootSceneGraph = new SceneGraph(); + _scale = 2; +} + +FrameMaker::~FrameMaker(void) +{ + delete _rootSceneGraph; +} + +bool FrameMaker::reset(FrameDataTaker* reader) +{ + _firstFrame = reader->getNextGraph(); +#ifdef DEBUGFRAMEMAKER + msg("first frame get done.\n"); +#endif + BlockUpdatater::reset(reader->getWindowInfo() , _scale , &_firstFrame); +#ifdef DEBUGFRAMEMAKER + msg("frameMaker reset done.\n"); +#endif + _rootSceneGraph->resetRootScene(reader->getSchema() , BlockUpdatater::getWindowInfo()); +#ifdef DEBUGFRAMEMAKER + msg("root secene reset done.\n"); +#endif + updateGraph(_firstFrame); +#ifdef DEBUGFRAMEMAKER + msg("first frame draw done.\n"); +#endif + + return true; +} + +bool FrameMaker::setRootSceneNode(SoSeparator* node) +{ + _freeCADrootNode = node; + _freeCADrootNode->addChild(_rootSceneGraph->rootScene); +#ifdef DEBUGFRAMEMAKER + msg("frameMaker set root freecad node done.\n"); +#endif + return true; +} + +bool FrameMaker::updateGraph(FrameData frame) +{ + assert(frame.blocks.size()>0); + int size = frame.blocks.size(); + for( int i=0 ; iblocks[i]) , i); + + PointsUpdater::update(&frame , _rootSceneGraph); + +#ifdef DEBUGFRAMEMAKER + msg("frameMaker parse one graph done.\n"); +#endif + return true; +} +} // namespace DDAGui \ No newline at end of file diff --git a/src/Mod/DDA/Gui/FrameMaker.h b/src/Mod/DDA/Gui/FrameMaker.h new file mode 100644 index 000000000000..4fa2c976e0a5 --- /dev/null +++ b/src/Mod/DDA/Gui/FrameMaker.h @@ -0,0 +1,166 @@ +#pragma once + +#include + +# include +# include +# include +# include +# include +# include +# include +# include +# include +# include +# include +# include +# include +# include +# include +# include +# include + +#include +#include +#include +#include "Inventor\nodes\SoLineSet.h" +#include "GraphTools.h" + +namespace DDAGui{ + using namespace std; + class GraphBlock + { + public: + GraphBlock(); + ~GraphBlock(); + + public: + // whole graph scene node + SoSeparator* rootGraphBlock; + + // block graph +// SoSeparator* polygon; + SoNormal* norm; + SoNormalBinding* normalBinding; + SoMaterial* polygonColors; + SoMaterialBinding* materialBinding; + SoCoordinate3* polygonCoords; + SoIndexedFaceSet* faceset; + + // block boundary lines + SoBaseColor* lineColor; + SoCoordinate3* lineCoords; + SoLineSet* lineset; + + }; + + class GraphMeasuredPoints + { + public: + GraphMeasuredPoints(); + ~GraphMeasuredPoints(); + +// public: +// void setMeasuredPointsNum(int num){mpts->resize(num);} +// + public: + SoSeparator* rootGraphMPts; + SoCoordinate3* meausuredPointsCoords; + SoLineSet* measuredPointsLineset; + SoBaseColor* lineColor; + + vector>* mpts; + }; + + class Scaler + { + private: + Scaler(); + ~Scaler(){} + + public: + static SoSeparator* createScaler( const std::vector& windowInfo , int scale); + + private: + static SoSeparator* _createScalerBar(const std::vector& windowInfo); + static SoSeparator* _createTexts(const std::vector& windowInfo); + + private: + // whole graph scene node + static SoSeparator* rootGraphBlock; + static int scale; + }; + + + class SceneGraph + { + public: + SceneGraph(); + ~SceneGraph(); + + public: + void resetRootScene(const vector graphSchema , const vector windowInfo ); + + public: + GraphBlock *blocks; + int blocksNum; + SoSeparator* rootScene; + GraphMeasuredPoints* graphMeasuredPoints; + }; + + class BlockUpdatater + { + private: + BlockUpdatater(); + ~BlockUpdatater(); + public: + static void reset(vector windowInfo , double scale , FrameData* originalGraph); + static void update(FrameData* frame , GraphBlock* graphBlock , int blockIdx); + static const vector& getWindowInfo(){ return windowInfo;} + private: + static void _updatePolygonColor(FrameData* frame , GraphBlock* graphBlock , int blockIdx , SbColor* colors); + static void _updatePolygon(FrameData* frame , GraphBlock* graphBlock , int blockIdx); + static void _updateLines(FrameData* frame , GraphBlock* graphBlock , int blockIdx); + static bool _ifConcave(const vector& pts); + static int _getVectorUp(const SbVec3f& p1 , const SbVec3f& p2 , const SbVec3f& p3); + static void _triangulate(vector&); + static void _triangulationCallback(void * v0, void * v1, void * v2, void * cbdata); + static void _calcColors4ConcavePolygon(const vector& pts , SbColor* colors, SbColor* resultColors); + static void _calcWindowInfoFromFrame(); + private: + static vector windowInfo; + static double scale; // scale for color + static FrameData* originalGraph; + static vector coords; + static int tmpCount; // used when triangulation + }; + + class PointsUpdater + { + private: + PointsUpdater(); + ~PointsUpdater(); + public: + static void update(FrameData* frame , SceneGraph* sceneGraph); + }; + +// #define DEBUGFRAMEMAKER + + class FrameMaker + { + public: + FrameMaker(void); + ~FrameMaker(void); + + public: + bool reset(FrameDataTaker* reader); + bool setRootSceneNode(SoSeparator* node); + bool updateGraph(FrameData frame); + + private: + SoSeparator* _freeCADrootNode; + SceneGraph* _rootSceneGraph; + FrameData _firstFrame; + double _scale; + }; +}// DDAGui \ No newline at end of file diff --git a/src/Mod/DDA/Gui/FrameReader.cpp b/src/Mod/DDA/Gui/FrameReader.cpp new file mode 100644 index 000000000000..93b5a4a179f5 --- /dev/null +++ b/src/Mod/DDA/Gui/FrameReader.cpp @@ -0,0 +1,369 @@ +#include "FrameReader.h" + +#include +#include +namespace DDAGui{ +void msg(const char* str); +// void msgQString(const QString str); +} + +using namespace DDAGui; +using namespace std; +//void msg2File(const char* str); + + + +FrameReader::FrameReader(void) +{ + _file = NULL; + _frameIdx=-1; + + _1frameSize = 1024*200; + _framesNum = 7; + _bufferSize = _1frameSize*_framesNum; + + _buffer = new char[4*1024*1024]; // default 4MB + _frames.clear(); + _bufferPos=0 ; +} + +FrameReader::~FrameReader(void) +{ + if(_buffer) + { + delete _buffer; + _buffer = NULL; + } + + if(_file) + { + fclose(_file); + _file = NULL; + } +} + +bool FrameReader::setFile(char* filename) +{ + _file = fopen(filename , "rb"); +// _file.open(filename , ios::binary| ios::in); + char str[200]; + + if (!_file) + { + sprintf(str , "file \'%s\' open failed.\n" , filename); + msg(str); + return false; + } + + sprintf(str , "file \'%s\' open successfully.\n" , filename); + msg(str); + + if( !initAnimation()) return false; + if( !initBlocksSchema()) return false; + if( !readNewbuffer()) return false; + if( !scanFrames()) return false; + assert(_frames.size()>0); + _1frameSize = _frames[1].second - _frames[0].second; + return true; +} + +char* FrameReader::refreshBuffer() +{ + char *newBuffer; + if( fabs(double(_1frameSize*(_framesNum+2) - _bufferSize)) > _1frameSize) // confirm 1 frame's spare space + { + _bufferSize = _1frameSize*_framesNum; + assert(_buffer); + newBuffer = new char[_1frameSize*(_framesNum+2)]; + msg("buffer refresh done.\n"); + } + else + { + newBuffer = _buffer; + msg("buffer doesn't need refresh.\n"); + } + return newBuffer; +} + +bool FrameReader::readNewbuffer() +{ +// if (_file.eof()) { msg("input file ends.\n");return false;} + clearerr(_file); + + int tmpSize = _bufferSize; + char* newBuffer = refreshBuffer(); + + char* p = newBuffer; + if(_frames.size()>0) // the last frame may not be complete, concatenate the half-break content to its rest comtent. + { + char* start = _buffer + _frames.back().second; + char* end = _buffer + tmpSize; + while ( start=0); + p+=readCount; +// _file.read(p , _bufferSize); +// p+=int(_file.gcount()); + } + *p = '\0'; + _bufferSize = p-newBuffer; + + if(newBuffer!=_buffer) + { + delete []_buffer; + _buffer = newBuffer; + newBuffer = NULL; + } + + char str[200]; + sprintf(str , "read content for length : %d\n" , _bufferSize); + msg(str); + return _bufferSize>5; // the number is not important +} + +const string FrameReader::getNextFrame() +{ + char str[200]; + +#ifdef DEBUGFRAMEREADER + sprintf(str ,"current frame index : %d frames size : %d\n" , _frameIdx , _frames.size()); + msg(str); +#endif + + assert(_frameIdx<= int(_frames.size())); + if(_frameIdx==_frames.size()-1){ msg("file ends. exiting.\n");return string("");} + _frameIdx++; + if(_frameIdx==_frames.size()-1) + { + if(!readNewbuffer()) return string(""); + scanFrames(); + _frameIdx = 0; + } + + std::pair& info = _frames[_frameIdx]; + sprintf(str , "\tstart to take %dth frame.\n" , info.first); + msg(str); + + if(_frameIdx<_frames.size()-1) + return string(_buffer+info.second , _frames[_frameIdx+1].second - info.second); + else // the last whole frame + return string(_buffer+info.second , _bufferSize - info.second); +} +const std::string FrameReader::getBlocksSchema() +{ + return _blocksSchema; +} + +bool FrameReader::scanFrames() +{ + _frameIdx=-1; + char tmpContent[200]; + int lastFrameNo=-1 , lastPos=0; + _frames.clear(); + +// FILE* f = fopen("D:/tmpStore.txt" , "wb"); +// fwrite(_buffer , sizeof(char) , _bufferSize , f); +// fclose(f); +// + for( int i=0 ; i<_bufferSize ; i++ ) + { + if(_buffer[i]=='<') + { + int tmpPos = i; + int tmpNo = lastFrameNo+1; + if( i+10<_bufferSize) // <<>> n + { + i+=10; + assert( _buffer[i]==' '); + int t=i+1; + char num[10]; + int j=0; + while (t<_bufferSize && isdigit(_buffer[t])) // '<<>> n' may not complete + { + +#ifdef DEBUGFRAMEREADER + sprintf(tmpContent , "%c" , _buffer[t]); + msg(tmpContent); +#endif + + num[j++] = _buffer[t++]; + } + num[j]='\0'; +// sprintf(tmpContent , "i: %d , t: %d\n" , i , t); +// msg(tmpContent); + + tmpNo = atoi(num); + if (lastFrameNo!=-1) + assert(tmpNo <= lastFrameNo+1); + +#ifdef DEBUGFRAMEREADER + sprintf(tmpContent , "\ttmpFrameNo : %s %d <--> lastFrameNo+1 : %d\n" , num ,tmpNo , lastFrameNo+1); + msg(tmpContent); +#endif + + } + +#ifdef DEBUGFRAMEREADER + sprintf(tmpContent , "(frame No %d , buffer pos: %d)\n" , tmpNo , tmpPos); + msg(tmpContent); +#endif + + _frames.push_back(FrameNo_Pos(tmpNo , tmpPos)); + lastFrameNo = tmpNo; + lastPos = tmpPos; + } + } + +// string tmpStr(_buffer , _frames[2].second); + + + if(_frames.size()>1) + _1frameSize = (_frames.back().second -_frames.front().second)/(_frames.size()-1); + + return true; +} + +bool FrameReader::initAnimation() +{ + _schema.resize(7); + double t; +// for( int i=0 ; i<7 ; i++) // 0-7 schema of data.dg , 7-11 window info of data.dg +// { +// _file>>t; +// _schema[i] = t; +// } + fscanf(_file , "%d %d %d %d %d %d %d\n" , &_schema[0] , &_schema[1] , &_schema[2] , &_schema[3] + , &_schema[4] , &_schema[5] , &_schema[6]); + + _windowInfo.resize(4); +// for( int i=0 ; i<4 ; i++) // 0-7 schema of data.dg , 7-11 window info of data.dg +// { +// _file>>t; +// _windowInfo[i] = t; +// } + fscanf(_file , "%lf %lf %lf %lf\n" , &_windowInfo[0] , &_windowInfo[1] + , &_windowInfo[2] , &_windowInfo[3]); + + + msg("animation schma get done.\n"); + return true; +} + +bool FrameReader::initBlocksSchema() +{ + _blocksSchema.clear(); + char str[201]; +// fgets(str , 200 , _file);// the current character is '\n' +// _file.getline(str , 200);// the current character is '\n' + for(int i=0 ; i<_schema[0] ; i++) + { +// _file.getline(str , 200); + fgets(str , 200 , _file); +// if(strlen(str)==0) continue; // the first character is '\n' for this loop. + int len = strlen(str); + str[len-1]='\n'; + _blocksSchema.append(str , len); + } + + _firstFramePos = _ftelli64(_file); +// _file.seekg(0 , _file.end); +// _fileSize = _file.tellg(); +/* _file.seekg(_firstFramePos);*/ + +#ifdef DEBUGFRAMEREADER + msg(_blocksSchema.c_str()); + sprintf(str , "block schema get done.\n"); + msg(str); +#endif + + return true; +} + +const std::vector FrameReader::getSchema() +{ + return _schema; +} + +const std::vector FrameReader::getWindowInfo() +{ + return _windowInfo; +} + +bool FrameReader::_seekPostionAndcalcFrame(long long pos) +{ + bool res = _fseeki64( _file , pos , 0)!=-1; + assert(res); + assert(ferror(_file)==0); + + _frames.clear(); + readNewbuffer(); + return(scanFrames()); +} + +bool FrameReader::setCurrentFrameIndex(int frameIndex) +{ +//#ifdef DEBUGFRAMEREADER + char tmpStr[200]; + sprintf(tmpStr , "set start frame %d in frame reader\n" , frameIndex); + msg(tmpStr); +//#endif + + + +// _file.clear(); + if(frameIndex>=_frames.front().first && frameIndex<_frames.back().first) + { + for(int i=0 ; i<_frames.size() ; i++) + if( frameIndex== _frames[i].first){ + _frameIdx = i-1; + return true; + } + } + else{ + long long newPos = _firstFramePos; + if(frameIndex>0) + newPos += (frameIndex-1)*_1frameSize; + + bool res= _seekPostionAndcalcFrame(newPos); + assert(res); + + + // frameIndex < _frames.front().first + while( _frames.size()>0 && frameIndex < _frames.front().first){ + int frameDifference = _frames.front().first- frameIndex ; + newPos -= frameDifference*_1frameSize; + if( newPos < _firstFramePos ) + newPos = _firstFramePos; + bool res= _seekPostionAndcalcFrame(newPos); + assert(res); + } + + // frameIndex > _frames.back().first + while( _frames.size()>0 && frameIndex > _frames.back().first-1){ + int frameDifference = frameIndex - _frames.back().first; + if(frameDifference<2) + newPos += _1frameSize; + else + newPos += (frameDifference-1)*_1frameSize; + bool res= _seekPostionAndcalcFrame(newPos); + assert(res); + } + + assert(frameIndex>=_frames.front().first && frameIndex<_frames.back().first); + for(int i=0 ; i<_frames.size() ; i++) + if( frameIndex== _frames[i].first){ + _frameIdx = i-1; + return true; + } + } + return false; +} diff --git a/src/Mod/DDA/Gui/FrameReader.h b/src/Mod/DDA/Gui/FrameReader.h new file mode 100644 index 000000000000..cb5f34ac0d28 --- /dev/null +++ b/src/Mod/DDA/Gui/FrameReader.h @@ -0,0 +1,68 @@ +#pragma once + +// #include +// #include +// #include +// #include +// #include +#include +#include +#include +#include +#include +#include + +namespace DDAGui{ + //#define DEBUGFRAMEREADER + + + using namespace std; + void msg(const char* str); + void msgString(const string& str); +// void msgQString(QString str); + + typedef std::pair FrameNo_Pos; +class FrameReader +{ +public: + FrameReader(void); + ~FrameReader(void); + + const string getNextFrame(); + const std::string getBlocksSchema(); + bool setFile( char* filename); + bool hasNextFrame(){return (_frameIdx==_frames.size()-1)?false:true;} + const std::vector getSchema(); + const std::vector getWindowInfo(); + bool setCurrentFrameIndex(int frameIndex); + +private: + bool _seekPostionAndcalcFrame(long long pos); + bool readNewbuffer(); + bool scanFrames(); + bool initAnimation(); + bool initBlocksSchema(); +// inline void updateBufferSize(); + char* refreshBuffer(); + +private: + long long _1frameSize; + long long _firstFramePos; +// long long _fileSize; + int _framesNum; + std::vector> _frames; + int _frameIdx; + + char* _buffer; + char* _bufferPos ; + long long _bufferSize ; + +// ifstream _file; + FILE* _file; + long long _filePos; + std::vector _schema; + std::vector _windowInfo; + std::string _blocksSchema; +}; + +} //DDAGui \ No newline at end of file diff --git a/src/Mod/DDA/Gui/GraphTools.cpp b/src/Mod/DDA/Gui/GraphTools.cpp new file mode 100644 index 000000000000..5957ee1ff10b --- /dev/null +++ b/src/Mod/DDA/Gui/GraphTools.cpp @@ -0,0 +1,385 @@ + +#include +#include +#include "GraphTools.h" +using namespace DDAGui; + +//////////////////////////////// +/// +/// find n-th '\n +/// +//////////////////////////////// +int find_nth_endl(const string& str , int startPostion , int n) +{ + int num=0; + int pos=startPostion; + + while(numx = x; + this->y = y; + this->blockNo = blockNo; +} + +FixedPoint::FixedPoint(double x , double y , int blockNo):DDAPoint(x , y , blockNo){} +FixedPoint::FixedPoint():DDAPoint(){} + +LoadingPoint::LoadingPoint(double x , double y , int blockNo):DDAPoint(x , y , blockNo){} +LoadingPoint::LoadingPoint():DDAPoint(){} + +MeasuredPoint::MeasuredPoint(double x , double y , int blockNo):DDAPoint(x , y , blockNo){} +MeasuredPoint::MeasuredPoint():DDAPoint(){} + +void FrameData::reset() +{ + blocks.clear(); + fixedPoints.clear(); + loadingPoints.clear(); + measuredPoints.clear(); +} + + +///////////////////////////////////////////////////////// +///// +///// FrameDataTaker +///// +///////////////////////////////////////////////////////// + + +FrameDataTaker::FrameDataTaker() +{ + _graph = new FrameData(); + _frameReader = new FrameReader(); +} + +FrameDataTaker::~FrameDataTaker() +{ + if(_graph){ delete _graph; _graph=NULL;} + if(_frameReader){ delete _frameReader; _frameReader=NULL;} +} + +const vector FrameDataTaker::getSchema() +{ + return _frameReader->getSchema(); +} +const vector FrameDataTaker::getWindowInfo() +{ + return _frameReader->getWindowInfo(); +} + +bool FrameDataTaker::setFile(char* filename) +{ + return _frameReader->setFile(filename); +} + +bool FrameDataTaker::setStepInterval(int stepInterval) +{ + //_frameReader- + return true; +} +void FrameDataTaker::setCurrentFrameIdx(int frameIdx) +{ + bool res = _frameReader->setCurrentFrameIndex(frameIdx); + assert(res); +} + +FrameData FrameDataTaker::getNextGraph() +{ + const string frame = _frameReader->getNextFrame(); + assert( frame.size()>2); + if(frame.size()<2) // no file any more + { + return FrameData(); + } + + const vector schema = _frameReader->getSchema(); + int pos=0; + + // parse blocks schema + initBlocksSchema(); + + // parse blocks vertices + { + pos = find_nth_endl(frame , 0 , schema[5]+1); + assert(pos!=-1); + if( pos==-1) return FrameData(); + parseBlocksVertices(frame.substr(0 , pos+1)); + } + + // parse points data + { + int tmpPos = pos+1; + pos = find_nth_endl(frame , pos+1 , (schema[1]+schema[2]+schema[3])*2+schema[3]*2); + assert(pos!=-1); + if( pos==-1) return FrameData(); + parsePoints(frame.substr(tmpPos , pos-tmpPos+1)); + } + + // real time for this step + { + pos = find_nth_endl(frame , pos+1 , 1); + } + + // parse block stress + { + parseBlocksStress(frame.substr(pos+1 , frame.size()-pos)); + } + + return *_graph; +} + +bool FrameDataTaker::initBlocksSchema() +{ + const vector schema = _frameReader->getSchema(); + const string blocksInfo = _frameReader->getBlocksSchema(); + int num=0; + int pos=0; + + while(pos<=blocksInfo.size()) + { + pos = blocksInfo.find('\n' , pos) ; + if(pos==string::npos) break; + else + { + num++; + pos++; + } + } + assert( num == schema[0]); + if(num!=schema[0]) return false; + + +#ifdef DEBUGFRAMEDATATAKER + char tmpStr[200]; + sprintf(tmpStr , "record num : %d , blocks num : %d\n" , num , schema[0]); + msg(tmpStr); +#endif + + _graph->blocks.resize(schema[0]); + parseBlocksSchema( blocksInfo ); + return true; +} + +bool FrameDataTaker::parseBlocksSchema(const string& blocksData) +{ + assert(blocksData.size()>0); + vector& blocks = _graph->blocks; + istringstream dataIn(blocksData); + int blockIdx = 0; + int t1 , t2; + char str[200]; + + msg("start to parse blocks schema.\n"); + while(blockIdx>t1; + dataIn>>t2; + +#ifdef DEBUGFRAMEDATATAKER + sprintf(str , "%d %d\n" , t1 , t2); + msg(str); +#endif + + blocks[blockIdx].startNo=t1; + blocks[blockIdx].endNo=t2; + blockIdx++; + } + msg("blocks schema parsed done.\n"); + return true; +} + +bool FrameDataTaker::parseBlocksVertices(const string& blocksData) +{ +// msgString(blocksData); + assert(blocksData.size()>5); + + istringstream dataIn(blocksData); + assert( dataIn.good()); + vector& blocks = _graph->blocks; + + char tmpStr[200]; + double t1 , t2; + dataIn>>tmpStr>>t1; // <<>> n + _graph->frameNo = int(t1); + + msg(tmpStr); + sprintf(tmpStr , "start to parse blocks vertices for frame index : %d.\n" , int(t1)); + msg(tmpStr); + for(int t=0 ; t>t1>>t2; + block.vertices[i].first = t1; + block.vertices[i].second = t2; + +#ifdef DEBUGFRAMEDATATAKER + sprintf(tmpStr , "%lf %lf\n" , t1 , t2); + msg(tmpStr); +#endif + } + + for(int i=0 ; i<8; i++) + { + assert(!dataIn.eof()); + if (dataIn.eof()) return false; + dataIn>>t1; + block.parameters[i]=t1; + } + +#ifdef DEBUGFRAMEDATATAKER + const double* paras = block.parameters; + sprintf(tmpStr , "%lf %lf\n%lf %lf\n%lf %lf\n%lf %lf\n" , paras[0] , paras[1] , paras[2] , paras[3] + , paras[4] , paras[5] , paras[6] , paras[7]); + msg(tmpStr); +#endif + + } + msg("block vertices parsed done.\n"); + return true; +} + +bool FrameDataTaker::parseBlocksStress(const string& blocksStress) +{ + istringstream dataIn(blocksStress); + vector& blocks = _graph->blocks; + + char tmpStr[200]; + msg("start to parse blocks vertices.\n"); + for(int t=0 ; t>t1>>t2>>t3; + block.stressX = t1; + block.stressY = t2; + block.stressXY = t3; + +#ifdef DEBUGFRAMEDATATAKER + sprintf(tmpStr , "%lf %lf %lf\n" ,t1 , t2 , t3); + msg(tmpStr); +#endif + + } + msg("block stress parsed done.\n"); + return true; +} + +bool FrameDataTaker::parse1Point(istringstream& dataIn , DDAPoint& point) +{ + double t1 , t2 , t3 , t4 , t5; + assert(!dataIn.eof()); + if (dataIn.eof()) return false; + dataIn>>t1>>t2>>t3>>t4>>t5; + point.x=t1; + point.y=t2; + point.blockNo=int(t3); + point.speedX=t4; + point.speedY=t5; + + +#ifdef DEBUGFRAMEDATATAKER + char tmpStr[200]; + sprintf(tmpStr , "%lf %lf %lf\n%lf %lf\n" ,t1 , t2 , t3 , t4 , t5); + msg(tmpStr); +#endif + + return true; +} + +bool FrameDataTaker::parsePoints(const string& pointsData) +{ + istringstream dataIn(pointsData); + const vector schema = _frameReader->getSchema(); + + char tmpStr[200]; + msg("start to parse points.\n"); + + { + // fixed points + vector& fps = _graph->fixedPoints; + _graph->fixedPoints.resize(schema[1]); + for(int i=0; i& lps = _graph->loadingPoints; + _graph->loadingPoints.resize(schema[2]); + for(int i=0; i& mps = _graph->measuredPoints; + _graph->measuredPoints.resize(schema[3]); + for(int i=0; i>t1>>t2>>t3>>t4>>t5>>t6; + mps[i].u=t1; + mps[i].v=t2; + mps[i].r=t3; + mps[i].stressX=t4; + mps[i].stressY=t5; + mps[i].stressXY=t6; + } + sprintf(tmpStr , "%d measured points parsed done.\n" , schema[3]); + msg(tmpStr); + } + return true; +} + + diff --git a/src/Mod/DDA/Gui/GraphTools.h b/src/Mod/DDA/Gui/GraphTools.h new file mode 100644 index 000000000000..d4a63e8f971e --- /dev/null +++ b/src/Mod/DDA/Gui/GraphTools.h @@ -0,0 +1,110 @@ +#pragma once +#include +#include +#include "FrameReader.h" + +namespace DDAGui +{ + using namespace std; + class DDAPoint + { + public: + DDAPoint(double x , double y , int blockNo); + DDAPoint(){} + public: + double x; + double y; + double speedX; + double speedY; + int blockNo; + }; + + class FixedPoint: public DDAPoint + { + public: + FixedPoint(double x , double y , int blockNo); + FixedPoint(); + }; + + class LoadingPoint: public DDAPoint + { + public: + LoadingPoint(double x , double y , int blockNo); + LoadingPoint(); + }; + + class MeasuredPoint: public DDAPoint + { + public: + MeasuredPoint(double x , double y , int blockNo); + MeasuredPoint(); + public: + double u; + double v; + double r; + double stressX; + double stressY; + double stressXY; + }; + + + class Block + { + public: + vector> vertices; // keep double precision + int blockIdx; + int startNo; + int endNo; + double parameters[8]; + double stressX; + double stressY; + double stressXY; + }; + + class FrameData + { + public: + void reset(); + + public: + int frameNo; + vector blocks; + vector fixedPoints; + vector loadingPoints; + vector measuredPoints; + + }; + + +// #define DEBUGFRAMEDATATAKER + + class FrameDataTaker + { + public: + FrameDataTaker(); + ~FrameDataTaker(); + + public: + bool setFile(char* filename); + bool setStepInterval(int stepInterval); + bool hasNextFrame(){return _frameReader->hasNextFrame();} + FrameData getNextGraph(); + void setCurrentFrameIdx(int frameIdx); + + const vector getSchema(); + const vector getWindowInfo(); + + private: + bool initBlocksSchema(); + bool parseBlocksSchema(const string& blocksSchema); + bool parseBlocksVertices(const string& blocksData); + bool parseBlocksStress(const string& blocksStress); + bool parse1Point(istringstream& dataIn , DDAPoint& point); + bool parsePoints(const string& pointsData); + + private: + FrameData* _graph; + FrameData* _originGraph; // the 0-th frame + FrameReader* _frameReader; + }; +} \ No newline at end of file diff --git a/src/Mod/DDA/Gui/Makefile.am b/src/Mod/DDA/Gui/Makefile.am new file mode 100644 index 000000000000..9b885d212c42 --- /dev/null +++ b/src/Mod/DDA/Gui/Makefile.am @@ -0,0 +1,79 @@ + +lib_LTLIBRARIES=libDDAGui.la DDAGui.la + +BUILT_SOURCES= + +libDDAGui_la_SOURCES=\ + AppDDAGuiPy.cpp \ + Command.cpp \ + PreCompiled.cpp \ + PreCompiled.h \ + Workbench.cpp \ + Workbench.h + +includedir = @includedir@/Mod/DDA/Gui + +# the library search path. +libDDAGui_la_LDFLAGS = -L../../../Base -L../../../App -L../../../Gui -L../App \ + $(QT_LIBS) $(all_libraries) \ + $(sim_ac_coin_ldflags) $(sim_ac_coin_libs) \ + $(sim_ac_soqt_ldflags) $(sim_ac_soqt_libs) \ + -version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@ + +libDDAGui_la_CPPFLAGS = -DDDAAppExport= -DDDAGuiExport= + +libDDAGui_la_LIBADD = \ + @BOOST_SYSTEM_LIB@ \ + -l@PYTHON_LIB@ \ + -lxerces-c \ + -lFreeCADBase \ + -lFreeCADApp \ + -lFreeCADGui \ + -lDDA + +#-------------------------------------------------------------------------------------- +# Loader of libDDAGui + +DDAGui_la_SOURCES=\ + AppDDAGui.cpp + +# the library search path. +DDAGui_la_LDFLAGS = $(libDDAGui_la_LDFLAGS) -module -avoid-version +DDAGui_la_CPPFLAGS = $(libDDAGui_la_CPPFLAGS) + +DDAGui_la_LIBADD = \ + $(libDDAGui_la_LIBADD) \ + -lDDAGui + +DDAGui_la_DEPENDENCIES = libDDAGui.la + +#-------------------------------------------------------------------------------------- + +# rule for Qt MetaObject Compiler: +moc_%.cpp: %.h + $(QT_MOC) $< -o $(@F) + +# rule for Qt MetaObject Compiler: +%.moc: %.h + $(QT_MOC) $< -o $(@F) + +# rules for Qt User Interface Compiler: +ui_%.h: %.ui + $(QT_UIC) $< -o $(@F) + +# rules for Qt Resource Compiler: +qrc_%.cpp: Resources/%.qrc + $(QT_RCC) -name $(*F) $< -o $(@F) + +# set the include path found by configure +AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes) $(QT_CXXFLAGS) \ + -I$(sim_ac_coin_includedir) -I$(sim_ac_soqt_includedir) + +libdir = $(prefix)/Mod/DDA + +CLEANFILES = $(BUILT_SOURCES) + +EXTRA_DIST = \ + CMakeLists.txt \ + Resources/DDA.qrc + diff --git a/src/Mod/DDA/Gui/PreCompiled.cpp b/src/Mod/DDA/Gui/PreCompiled.cpp new file mode 100644 index 000000000000..59619b4a2a35 --- /dev/null +++ b/src/Mod/DDA/Gui/PreCompiled.cpp @@ -0,0 +1,24 @@ +/*************************************************************************** + * Copyright (c) YEAR YOUR NAME * + * * + * 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" diff --git a/src/Mod/DDA/Gui/PreCompiled.h b/src/Mod/DDA/Gui/PreCompiled.h new file mode 100644 index 000000000000..c191d7d03545 --- /dev/null +++ b/src/Mod/DDA/Gui/PreCompiled.h @@ -0,0 +1,71 @@ +/*************************************************************************** + * Copyright (c) YEAR YOUR NAME * + * * + * 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_PRECOMPILED_H +#define GUI_PRECOMPILED_H + +#include + +// Importing of App classes +#ifdef FC_OS_WIN32 +# define DDAAppExport __declspec(dllimport) +# define DDAGuiExport __declspec(dllexport) +#else // for Linux +# define DDAAppExport +# define DDAGuiExport +#endif + +#ifdef _PreComp_ + + +// standard +#include +#include + +// STL +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +// Xerces +#include + +#ifdef FC_OS_WIN32 +# include +#endif + +// Qt Toolkit +#ifndef __Qt4All__ +# include +#endif + +#endif //_PreComp_ + +#endif // GUI_PRECOMPILED_H diff --git a/src/Mod/DDA/Gui/Resources/DDA.qrc b/src/Mod/DDA/Gui/Resources/DDA.qrc new file mode 100644 index 000000000000..95887efc8177 --- /dev/null +++ b/src/Mod/DDA/Gui/Resources/DDA.qrc @@ -0,0 +1,4 @@ + + + + diff --git a/src/Mod/DDA/Gui/Triangulate.cpp b/src/Mod/DDA/Gui/Triangulate.cpp new file mode 100644 index 000000000000..a77daab91c1e --- /dev/null +++ b/src/Mod/DDA/Gui/Triangulate.cpp @@ -0,0 +1,142 @@ +#include "Triangulate.h" + +#include +#include +#include +#include + +#include "triangulate.h" + +static const float EPSILON=0.0000000001f; + +float Triangulate::Area(const Vector2dVector &contour) +{ + + int n = contour.size(); + + float A=0.0f; + + for(int p=n-1,q=0; q= 0.0f) && (bCROSScp >= 0.0f) && (cCROSSap >= 0.0f)); +}; + +bool Triangulate::Snip(const Vector2dVector &contour,int u,int v,int w,int n,int *V) +{ + int p; + float Ax, Ay, Bx, By, Cx, Cy, Px, Py; + + Ax = contour[V[u]].GetX(); + Ay = contour[V[u]].GetY(); + + Bx = contour[V[v]].GetX(); + By = contour[V[v]].GetY(); + + Cx = contour[V[w]].GetX(); + Cy = contour[V[w]].GetY(); + + if ( EPSILON > (((Bx-Ax)*(Cy-Ay)) - ((By-Ay)*(Cx-Ax))) ) return false; + + for (p=0;p2; ) + { + /* if we loop, it is probably a non-simple polygon */ + if (0 >= (count--)) + { + //** Triangulate: ERROR - probable bad polygon! + return false; + } + + /* three consecutive vertices in current polygon, */ + int u = v ; if (nv <= u) u = 0; /* previous */ + v = u+1; if (nv <= v) v = 0; /* new v */ + int w = v+1; if (nv <= w) w = 0; /* next */ + + if ( Snip(contour,u,v,w,nv,V) ) + { + int a,b,c,s,t; + + /* true names of the vertices */ + a = V[u]; b = V[v]; c = V[w]; + + /* output Triangle */ + result.push_back( contour[a] ); + result.push_back( contour[b] ); + result.push_back( contour[c] ); + + m++; + + /* remove v from remaining polygon */ + for(s=v,t=v+1;t // Include STL vector class. + +class Vector2d +{ +public: + Vector2d(){Set(0 , 0);} + + Vector2d(float x,float y) + { + Set(x,y); + }; + + float GetX(void) const { return mX; }; + + float GetY(void) const { return mY; }; + + void Set(float x,float y) + { + mX = x; + mY = y; + }; + + bool operator==( Vector2d const& t ) const { return t.mX==this->mX && t.mY==this->mY ; } + bool operator!=( Vector2d const& t ) const { return t.mX!=this->mX || t.mY!=this->mY;} + +private: + float mX; + float mY; +}; + +// Typedef an STL vector of vertices which are used to represent +// a polygon/contour and a series of triangles. +typedef std::vector< Vector2d > Vector2dVector; + + +class Triangulate +{ +public: + + // triangulate a contour/polygon, places results in STL vector + // as series of triangles. + static bool Process(const Vector2dVector &contour, + Vector2dVector &result); + + // compute area of a contour/polygon + static float Area(const Vector2dVector &contour); + + // decide if point Px/Py is inside triangle defined by + // (Ax,Ay) (Bx,By) (Cx,Cy) + static bool InsideTriangle(float Ax, float Ay, + float Bx, float By, + float Cx, float Cy, + float Px, float Py); + + +private: + static bool Snip(const Vector2dVector &contour,int u,int v,int w,int n,int *V); + +}; + diff --git a/src/Mod/DDA/Gui/Workbench.cpp b/src/Mod/DDA/Gui/Workbench.cpp new file mode 100644 index 000000000000..69405428513f --- /dev/null +++ b/src/Mod/DDA/Gui/Workbench.cpp @@ -0,0 +1,64 @@ +/*************************************************************************** + * Copyright (c) YEAR YOUR NAME * + * * + * 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_ +#endif + +#include "Workbench.h" +#include +#include + +using namespace DDAGui; + +/// @namespace DDAGui @class Workbench +TYPESYSTEM_SOURCE(DDAGui::Workbench, Gui::StdWorkbench) + +Workbench::Workbench() +{ +} + +Workbench::~Workbench() +{ +} + +Gui::MenuItem* Workbench::setupMenuBar() const +{ + Gui::MenuItem* root = StdWorkbench::setupMenuBar(); + Gui::MenuItem* item = root->findItem( "&Windows" ); + Gui::MenuItem* test = new Gui::MenuItem; + root->insertItem( item, test ); + test->setCommand("DDA"); + *test << "DDA_Test"; + return root; +} + +Gui::ToolBarItem* Workbench::setupToolBars() const +{ + Gui::ToolBarItem* root = StdWorkbench::setupToolBars(); + Gui::ToolBarItem* test = new Gui::ToolBarItem(root); + test->setCommand( "DDA Tools" ); + *test << "DDA_Test"; + return root; +} diff --git a/src/Mod/DDA/Gui/Workbench.h b/src/Mod/DDA/Gui/Workbench.h new file mode 100644 index 000000000000..27f99ba13f72 --- /dev/null +++ b/src/Mod/DDA/Gui/Workbench.h @@ -0,0 +1,47 @@ +/*************************************************************************** + * Copyright (c) YEAR YOUR NAME * + * * + * 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 DDA_WORKBENCH_H +#define DDA_WORKBENCH_H + +#include + +namespace DDAGui { + +class Workbench : public Gui::StdWorkbench +{ + TYPESYSTEM_HEADER(); + +public: + Workbench(); + virtual ~Workbench(); + +protected: + Gui::MenuItem* setupMenuBar() const; + Gui::ToolBarItem* setupToolBars() const; +}; + +} // namespace DDAGui + + +#endif // DDA_WORKBENCH_H diff --git a/src/Mod/DDA/Gui/ddapostplayer.cpp b/src/Mod/DDA/Gui/ddapostplayer.cpp new file mode 100644 index 000000000000..03c2bf2ff3ba --- /dev/null +++ b/src/Mod/DDA/Gui/ddapostplayer.cpp @@ -0,0 +1,417 @@ +#include "ddapostplayer.h" +#include "ui_ddapostplayer.h" +#include +#include +#include +#include +#include +#include +#include +//#include +#include + +namespace DDAGui{ + const int MAXFRAMESNUM = 3; + const double TIMEINTERVAL = 200; // milliseconds time interval between every two frames + int playSpeed = 1; + + class SynchronizationQueue + { + public: + void enqueue(FrameData& frameData){ + _lock.lock(); + _queue.enqueue(frameData); + _lock.unlock(); + } + FrameData dequeue(){ + QMutexLocker locker(&_lock); + return _queue.dequeue(); + } + FrameData& head(){ + QMutexLocker locker(&_lock); + return _queue.head(); + } + + int size(){ + QMutexLocker locker(&_lock); + return _queue.size(); + } + void clear(){ + QMutexLocker locker(&_lock); + _queue.clear(); + } + + + private: + QQueue _queue; + QMutex _lock; + + }frameQueue; + +} + +using namespace DDAGui; +////////////////////////////////////// +//// producer +////////////////////////////////////// +void FrameProducer::_realProduce1Frame() +{ + if(_dataTaker->hasNextFrame()) + { + if(!_lock.tryLock() ) // wait for 0.5 second to acquire free resource + return; + if( frameQueue.size()>=MAXFRAMESNUM) + { + _lock.unlock(); + return; + } + +#ifdef DEBUGPRODUCER + msg("get new free resource.\n"); +#endif + frameQueue.enqueue(_dataTaker->getNextGraph()); +#ifdef DEBUGPRODUCER + msg("one frame parsed done.\n"); +#endif + _lock.unlock(); + emit oneFrameProduced(); + + } + else + emit noMoreFrames(); +} + +void FrameProducer::produceFrames() +{ + _realProduce1Frame(); + if( frameQueue.size()setCurrentFrameIdx(frameIndex); + _lock.unlock(); +} + + + +////////////////////////////////////// +//// consumer +////////////////////////////////////// + + +void FrameConsumer::pausePlay() +{ +#ifdef DEBUGCONSUMER + msg("================pause play=====================\n"); +#endif + _ifContinuePlay = false; +} + + +void FrameConsumer::acceptPlayEnd() +{ +#ifdef DEBUGCONSUMER + msg("================no more frames.=====================\n"); +#endif + _ifProduceDone = true; +} + +void FrameConsumer::stopPlay() +{ +#ifdef DEBUGCONSUMER + msg("================stop play=====================\n"); +#endif + _ifContinuePlay = false; + emit frameIndexChanged(0); +} + +void FrameConsumer::startPlay() +{ +#ifdef DEBUGCONSUMER + msg("================start play.=====================\n"); +#endif + _ifProduceDone = false; + _ifContinuePlay = true; + emit requireFrames(); +} + + +void FrameConsumer::display1Frame(int frameIdx) +{ + //char tmpStr[200]; + //sprintf(tmpStr , "current frame %d\n" , frameIdx); + //msg(tmpStr); + + _ifContinuePlay = false; + emit setStartFrameIndex(frameIdx); + emit require1Frame(); +} + +void FrameConsumer::displayFrames() +{ + msg("start display\n"); + if(!_lock.tryLock() ) + return; + + if(frameQueue.size()<1) + { + _lock.unlock(); + return; + } + + assert(frameQueue.size()>0); +// Sleep(TIMEINTERVAL); + + int FrameIdx = frameQueue.head().frameNo; + _frameMaker->updateGraph(frameQueue.dequeue()); + emit frameIndexChanged(FrameIdx); + + if(_ifContinuePlay){ + if(!_ifProduceDone) + emit requireFrames(); + } + else + frameQueue.clear(); + + if(!_ifProduceDone) // player already finished, now play the last rest frames. + { + int size = frameQueue.size(); + while(size--) + { + int FrameIdx = frameQueue.head().frameNo; + _frameMaker->updateGraph(frameQueue.dequeue()); + emit frameIndexChanged(FrameIdx); + } + } + _lock.unlock(); +} + +////////////////////////////////////// +//// DDAPostplayer +////////////////////////////////////// +DDAPostPlayer::DDAPostPlayer(QWidget *parent) : + QWidget(parent), + ui(new Ui::DDAPostPlayer) +{ + ui->setupUi(this); +// ui->playSlider->installEventFilter(this); + + _producer = new FrameProducer; + _consumer = new FrameConsumer; + _produceThread = new QThread; + _consumeThread = new QThread; + +// _producer->moveToThread(_produceThread); +// _consumer->moveToThread(_consumeThread); +// _consumeThread->start(); +// _produceThread->start(); +// + initConnection(); +} + +DDAPostPlayer::~DDAPostPlayer() +{ + delete _producer; + delete _consumer; + _produceThread->terminate(); + _consumeThread->terminate(); + _produceThread->wait(); + _consumeThread->wait(); + delete _produceThread; + delete _consumeThread; + delete ui; +} + +void DDAPostPlayer::initPlay(int framesNum) +{ + ui->frameNoSpinBox->setRange(0 , framesNum-1); + ui->frameNoSpinBox->setValue(0); + ui->playSlider->setRange(0 , framesNum-1); + ui->playSlider->setValue(0); +} + +void DDAPostPlayer::initConnection() +{ + QObject::connect(_producer , SIGNAL(noMoreFrames()) , _consumer , SLOT(acceptPlayEnd()) , Qt::QueuedConnection); + QObject::connect(_producer , SIGNAL(oneFrameProduced()) , _consumer , SLOT(displayFrames()) , Qt::QueuedConnection); + + QObject::connect(_consumer , SIGNAL(frameIndexChanged(int)) , this , SLOT(frameIndexChanged(int)) , Qt::QueuedConnection); + QObject::connect(_consumer , SIGNAL(setStartFrameIndex(int)) , _producer , SLOT(setStartFrameIndex(int)) , Qt::QueuedConnection); + QObject::connect(_consumer , SIGNAL(requireFrames()) , _producer , SLOT(produceFrames()) , Qt::QueuedConnection); + QObject::connect(_consumer , SIGNAL(require1Frame()) , _producer , SLOT(produce1Frame()) , Qt::QueuedConnection); + + QObject::connect(ui->openBtn , SIGNAL(pressed()) , this , SLOT(openBtnPressed())); + QObject::connect(ui->playBtn , SIGNAL(pressed()) , this , SLOT(playBtnPressed())); + QObject::connect(ui->stopBtn , SIGNAL(pressed()) , this , SLOT(stopBtnPressed())); + QObject::connect(ui->frameNoSpinBox , SIGNAL(valueChanged(int)) , this , SLOT(spinBoxValueChanged(int))); + QObject::connect(ui->frameNoSpinBox , SIGNAL(valueChanged(int)) , ui->playSlider , SLOT(setValue(int))); + QObject::connect(ui->playSlider , SIGNAL(valueChanged(int)) , this , SLOT(sliderValueChanged(int))); + QObject::connect(ui->playSlider , SIGNAL(valueChanged(int)) , ui->frameNoSpinBox , SLOT(setValue(int))); + + QObject::connect(this , SIGNAL(startPlay()) , _consumer , SLOT(startPlay()) , Qt::QueuedConnection); + QObject::connect(this , SIGNAL(play1Frame(int)) , _consumer , SLOT(display1Frame(int)) , Qt::QueuedConnection); + QObject::connect(this , SIGNAL(stopPlay()) , _consumer , SLOT(stopPlay()) , Qt::QueuedConnection); + QObject::connect(this , SIGNAL(pausePlay()) , _consumer , SLOT(pausePlay()) , Qt::QueuedConnection); + + //QObject::connect(_producer , SIGNAL(noMoreFrames()) , _consumer , SLOT(acceptPlayEnd())); + //QObject::connect(_producer , SIGNAL(oneFrameProduced()) , _consumer , SLOT(displayFrames())); + + //QObject::connect(_consumer , SIGNAL(frameIndexChanged(int)) , this , SLOT(frameIndexChanged(int))); + //QObject::connect(_consumer , SIGNAL(setStartFrameIndex(int)) , _producer , SLOT(setStartFrameIndex(int))); + //QObject::connect(_consumer , SIGNAL(requireFrames()) , _producer , SLOT(produceFrames()) ); + //QObject::connect(_consumer , SIGNAL(require1Frame()) , _producer , SLOT(produce1Frame()) ); + + //QObject::connect(ui->openBtn , SIGNAL(pressed()) , this , SLOT(openBtnPressed())); + //QObject::connect(ui->playBtn , SIGNAL(pressed()) , this , SLOT(playBtnPressed())); + //QObject::connect(ui->stopBtn , SIGNAL(pressed()) , this , SLOT(stopBtnPressed())); + //QObject::connect(ui->frameNoSpinBox , SIGNAL(valueChanged(int)) , this , SLOT(spinBoxValueChanged(int))); + //QObject::connect(ui->frameNoSpinBox , SIGNAL(valueChanged(int)) , ui->playSlider , SLOT(setValue(int))); + //QObject::connect(ui->playSlider , SIGNAL(valueChanged(int)) , this , SLOT(sliderValueChanged(int))); + //QObject::connect(ui->playSlider , SIGNAL(valueChanged(int)) , ui->frameNoSpinBox , SLOT(setValue(int))); + + //QObject::connect(this , SIGNAL(startPlay()) , _consumer , SLOT(startPlay()) ); + //QObject::connect(this , SIGNAL(play1Frame(int)) , _consumer , SLOT(display1Frame(int)) ); + //QObject::connect(this , SIGNAL(stopPlay()) , _consumer , SLOT(stopPlay()) ); + //QObject::connect(this , SIGNAL(pausePlay()) , _consumer , SLOT(pausePlay()) ); + +} + +void DDAPostPlayer::playBtnPressed() +{ + if(ui->playBtn->text()==QObject::tr("Play")){ + ui->playBtn->setText(QObject::tr("Pause")); +// emit startPlay(); + _producer->produce1Frame(); + } + else{ + ui->playBtn->setText(QObject::tr("Play")); + emit pausePlay(); + } +} + +void DDAPostPlayer::openBtnPressed() +{ + msg("open button pressed.\n"); + + char subpath[] = "Mod\\DDA"; + char backpath[200]; + char path[200]; + _getcwd(path, 200); + strcpy(backpath , path); + msg(path); + + int len = strlen(path); + int t=len-3; // ${FreeCAD}\\bin +// msg(path+t); + if ( path[t]=='b' && path[t+1]=='i' && path[t+2]=='n') + { + for( int i=0 ; i<8 ; i++) + path[t++]=subpath[i]; + path[t]='\0'; +// msg(path); +// msg("\n========\n"); + } +// msg(path); +// msg("\n========\n"); + + if(!(_chdir(path)== 0)) return; + + _getcwd(path , 200); + msg("\nchange to path: "); + msg(path); + msg("\n========\n"); + + FILE* fp = fopen("dg_ff.c" ,"rb"); + if(!fp) {msg("input dg file open failed.\n"); return ;} + char content[200]; + fgets(content , 200 , fp); + fclose(fp); + +// if(!_producer->setFile("D:/DDAProject/data.dg"))return; + if(!_producer->setFile(content))return; + FrameDataTaker* dataTaker = _producer->getFrameDataTaker(); + FrameMaker* maker = _consumer->getFrameMaker(); + maker->reset(dataTaker); + initPlay(_producer->getTotalFramesNum()); +} + +void DDAPostPlayer::stopBtnPressed() +{ + emit stopPlay(); +} + +void DDAPostPlayer::frameIndexChanged(int frameIndex) +{ + ui->frameNoSpinBox->setValue(frameIndex); + ui->playSlider->setValue(frameIndex); + QSize qsize = _rootWidget->size(); + _soQtViewer->render(); + + if(ui->playBtn->text()==QObject::tr("Pause")) + _producer->produce1Frame(); + + + QTimer t; + QEventLoop loop; + QObject::connect(&t , SIGNAL(timeout()) , &loop , SLOT(quit())); + t.setSingleShot(true); + t.start(200); + loop.exec(); +} + +void DDAPostPlayer::spinBoxValueChanged(int frameIndex) +{ + if(ui->frameNoSpinBox->hasFocus()) + { + ui->playBtn->setText(QObject::tr("Play")); + ui->frameNoSpinBox->clearFocus(); + msg("display specific frame from spinBox"); + emit play1Frame(frameIndex); + } +} + +void DDAPostPlayer::sliderValueChanged(int frameIndex) +{ + if(ui->playSlider->hasFocus()) + { + ui->playBtn->setText(QObject::tr("Play")); + ui->playSlider->clearFocus(); + msg("display specific frame from slider\n"); + emit play1Frame(frameIndex); + } +} + +bool DDAPostPlayer::eventFilter(QObject* target , QEvent* event) +{ + if(target == ui->playSlider) + { + if(event->type()==QEvent::MouseButtonRelease) + { + QMouseEvent* mouseEvent = static_cast(event); + if(mouseEvent->buttons() & Qt::LeftButton) + { + int duration = ui->playSlider->maximum() - ui->playSlider->minimum(); + double scale = ((double)mouseEvent->x() / ui->playSlider->pos().x())/(double(duration)); + int pos = ui->playSlider->minimum() + int(duration*scale) ; + ui->playSlider->setValue(pos); + } + return true; + } + } + return QWidget::eventFilter(target , event); +} diff --git a/src/Mod/DDA/Gui/ddapostplayer.h b/src/Mod/DDA/Gui/ddapostplayer.h new file mode 100644 index 000000000000..213397f04206 --- /dev/null +++ b/src/Mod/DDA/Gui/ddapostplayer.h @@ -0,0 +1,153 @@ +#ifndef DDAPOSTPLAYER_H +#define DDAPOSTPLAYER_H + +#include +#include +#include +#include +#include +// #include +#include "GraphTools.h" +#include "FrameMaker.h" +// #include +// #include + + +#include + +class View3DInventorViewer; + +namespace Ui { +class DDAPostPlayer; +} + +namespace DDAGui{ +// +// #ifndef PRODUCER_CONSUMER +// #define PRODUCER_CONSUMER +//using namespace DDAGui; +//#define DEBUGPRODUCER +class FrameProducer: public QObject +{ + Q_OBJECT +public: + FrameProducer(){ _dataTaker = new FrameDataTaker;} + +Q_SIGNALS: + void noMoreFrames(); + void oneFrameProduced(); + +public Q_SLOTS: + void produce1Frame(); + void produceFrames(); + bool setFile(char* filename){return _dataTaker->setFile(filename);} + void setStartFrameIndex(int frameIndex); + +public: + int getTotalFramesNum(){ return _dataTaker->getSchema()[6];} + FrameDataTaker* getFrameDataTaker() {return _dataTaker;} + +private: + void _realProduce1Frame(); + +private: + FrameDataTaker* _dataTaker; + QMutex _lock; + QMutex _assistLock; +}; + +//#define DEBUGCONSUMER +class FrameConsumer: public QObject +{ + Q_OBJECT +public: + FrameConsumer():_ifContinuePlay(true){_frameMaker = new FrameMaker;} + +Q_SIGNALS: + void requireFrames(); + void require1Frame(); + void frameIndexChanged(int frameIndex); + void setStartFrameIndex(int frameIndex); + +public Q_SLOTS: + void displayFrames(); + void display1Frame(int frameIndex); + void stopPlay(); + void startPlay(); + void pausePlay(); + void acceptPlayEnd(); + +public: + void setRootSceneNode(SoSeparator* root){_frameMaker->setRootSceneNode(root); _root = root;} + void setRootQWidget(QWidget* widget){ +// QObject::connect(this , SIGNAL(windowRepaint()) , widget , SLOT(update())); +// QObject::connect(this , SIGNAL(windowRepaint2(int , int , int , int)) +// , widget , SLOT(repaint(int, int, int, int)) , Qt::QueuedConnection); + } + + FrameMaker* getFrameMaker(){return _frameMaker;} + +private: + +private: + bool _ifContinuePlay; + bool _ifProduceDone; + QMutex _lock; + QMutex _assistLock; + FrameMaker* _frameMaker; + SoSeparator* _root; +}; +// #endif // PRODUCER_CONSUMER +// + } //DDAGui + +//#define DEBUGPOSTPLAYER +class DDAPostPlayer : public QWidget +{ + Q_OBJECT +public: + explicit DDAPostPlayer(QWidget *parent = 0); + ~DDAPostPlayer(); + +public Q_SLOTS: + void frameIndexChanged(int frameIndex); + + void playBtnPressed(); + void openBtnPressed(); + void stopBtnPressed(); + +private Q_SLOTS: + void spinBoxValueChanged(int value); + void sliderValueChanged(int value); + +Q_SIGNALS: + void startPlay(); + void play1Frame(int frameIndex); + void stopPlay(); + void pausePlay(); + +public: + void setRootSceneNode(SoSeparator* root){_consumer->setRootSceneNode(root);} + void setRootQWidget(QWidget* widget){_consumer->setRootQWidget(widget);_rootWidget = widget;} + void setSoQtViewer(SoQtViewer* viewer){_soQtViewer = viewer;} + +private: + void initPlay(int framesNum); + void initConnection(); + +protected: + bool eventFilter(QObject* target , QEvent* event); + +private: + DDAGui::FrameProducer* _producer; + DDAGui::FrameConsumer* _consumer; +// SoSeparator* _rootScene; + QWidget* _rootWidget; + SoQtViewer* _soQtViewer; + + QThread* _produceThread; + QThread* _consumeThread; + Ui::DDAPostPlayer *ui; +}; + +#endif // DDAPOSTPLAYER_H diff --git a/src/Mod/DDA/Gui/ddapostplayer.ui b/src/Mod/DDA/Gui/ddapostplayer.ui new file mode 100644 index 000000000000..608a901d74f2 --- /dev/null +++ b/src/Mod/DDA/Gui/ddapostplayer.ui @@ -0,0 +1,116 @@ + + + DDAPostPlayer + + + + 0 + 0 + 392 + 102 + + + + Form + + + + + 10 + 10 + 42 + 22 + + + + + + + 60 + 12 + 321 + 20 + + + + 1 + + + false + + + Qt::Horizontal + + + QSlider::NoTicks + + + + + + 10 + 40 + 75 + 23 + + + + Open + + + + + + 150 + 40 + 75 + 23 + + + + Play + + + + + + 230 + 40 + 75 + 23 + + + + Stop + + + + + + 10 + 80 + 101 + 16 + + + + Displacement + + + + + + 140 + 80 + 71 + 16 + + + + Stress + + + + + + diff --git a/src/Mod/DDA/Init.py b/src/Mod/DDA/Init.py new file mode 100644 index 000000000000..29f6b4caa384 --- /dev/null +++ b/src/Mod/DDA/Init.py @@ -0,0 +1,26 @@ +# FreeCAD init script of the DDA module +# (c) 2001 Juergen Riegel + +#*************************************************************************** +#* (c) Juergen Riegel (juergen.riegel@web.de) 2002 * +#* * +#* This file is part of the FreeCAD CAx development system. * +#* * +#* 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. * +#* * +#* FreeCAD 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 Lesser General Public License for more details. * +#* * +#* You should have received a copy of the GNU Library General Public * +#* License along with FreeCAD; if not, write to the Free Software * +#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * +#* USA * +#* * +#* Juergen Riegel 2002 * +#***************************************************************************/ diff --git a/src/Mod/DDA/InitGui.py b/src/Mod/DDA/InitGui.py new file mode 100644 index 000000000000..51079e7f982a --- /dev/null +++ b/src/Mod/DDA/InitGui.py @@ -0,0 +1,121 @@ +# coding=gbk + +#*************************************************************************** +#* * +#* Copyright (c) 2009, 2010 * +#* Xiaolong Cheng * +#* * +#* 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 DDA (Workbench): + MenuText = "DDA" + ToolTip = "DDA workbench" + + def Initialize(self): + # run self-tests + depsOK = False + try: + from pivy import coin + if FreeCADGui.getSoDBVersion() != coin.SoDB.getVersion(): + raise AssertionError("FreeCAD and Pivy use different versions of Coin. This will lead to unexpected behaviour.") + except AssertionError: + FreeCAD.Console.PrintWarning("Error: FreeCAD and Pivy use different versions of Coin. This will lead to unexpected behaviour.\n") + except ImportError: + FreeCAD.Console.PrintWarning("Error: Pivy not found, DDA workbench will be disabled.\n") + except: + FreeCAD.Console.PrintWarning("Error: Unknown error while trying to load Pivy\n") + else: + try: + import PyQt4 + except ImportError: + FreeCAD.Console.PrintWarning("Error: PyQt4 not found, DDA workbench will be disabled.\n") + else: + depsOK = True + +# import FreeCAD , FreeCADGui + +# try: + import DDAShapes +# except: +# FreeCAD.Console.PrintWarning("'DDAShapes' moudle import failed.") + + import DGPlayer , DFCalculation , DDAPanel +# try: + import drawGui +# except: +# FreeCAD.Console.PrintWarning("'drawGui' moudle import failed.") + import DDAToolbars + + import interfaceTools + import storeScene + import loadDataTools + import test_rc + +# FreeCADGui.addIconPath(":/icons") +# FreeCADGui.addPreferencePage(":/DDA-preferences.ui","DDA") +# FreeCADGui.addPreferencePage(":/userprefs-base.ui","DDA") +# FreeCAD.Console.PrintMessage('Loading DDA GUI...\n') + + import DDAGui + list = ['DDA_ChooseProjectPath' , 'DDA_SetPanelSize' , 'DDA_DL' , 'DDA_DC','DFCalculation','PlayDF','DDA_ResetCamera'] +# list = ['DDA_ChooseProjectPath' ] + self.appendToolbar('DDACmds' , list) + self.appendMenu("My Command",list) + + def resetCamera(self): + import FreeCADGui + camera = '#Inventor V2.1 ascii\n\n\nOrthographicCamera {\n viewportMapping ADJUST_CAMERA\n position 0 0 1\n orientation 0 0 1 0\n aspectRatio 1\n focalDistance 5\n height 40\n\n}\n' + FreeCADGui.activeDocument().activeView().setCamera(camera) + + def Activated(self): + import FreeCAD , FreeCADGui + if hasattr(FreeCADGui,"draftToolBar"): + FreeCADGui.draftToolBar.Deactivated() + + if not FreeCAD.ActiveDocument: + FreeCAD.newDocument('DDA') + + import Base + Base.enableSeletionObserver(True) + import DDADatabase + DDADatabase.enableOperationObverser(True) + + FreeCADGui.runCommand('DDA_ResetCamera') + + self.resetWorkbench() + + def resetWorkbench(self): + import os + path = os.getcwd() + path = path.replace('\\','/') + import Base + Base.__workbenchPath__ = path + print Base.__workbenchPath__ + + def Deactivated(self): +# if DDAGui.__currentPanel__ != None : +# DDAGui.__currentPanel__.hide() +# FreeCADGui.DDADockWidget.Deactivated() + import Base + Base.enableSeletionObserver(False) + import DDADatabase + DDADatabase.enableOperationObverser(False) + +Gui.addWorkbench(DDA()) diff --git a/src/Mod/DDA/LICENCE.lgpl.txt b/src/Mod/DDA/LICENCE.lgpl.txt new file mode 100644 index 000000000000..b1e3f5a26387 --- /dev/null +++ b/src/Mod/DDA/LICENCE.lgpl.txt @@ -0,0 +1,504 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + + diff --git a/src/Mod/DDA/Makefile.am b/src/Mod/DDA/Makefile.am new file mode 100644 index 000000000000..85b719c025af --- /dev/null +++ b/src/Mod/DDA/Makefile.am @@ -0,0 +1,10 @@ +SUBDIRS=App Gui + +# Change data dir from default ($(prefix)/share) to $(prefix) +datadir = $(prefix)/Mod/DDA +data_DATA = Init.py InitGui.py + +EXTRA_DIST = \ + $(data_DATA) \ + CMakeLists.txt \ + DDA.dox diff --git a/src/Mod/DDA/PyDDA.pyd b/src/Mod/DDA/PyDDA.pyd new file mode 100644 index 000000000000..e5634068ff1c Binary files /dev/null and b/src/Mod/DDA/PyDDA.pyd differ diff --git a/src/Mod/DDA/PyTriangulation.pyd b/src/Mod/DDA/PyTriangulation.pyd new file mode 100644 index 000000000000..26331ccacadf Binary files /dev/null and b/src/Mod/DDA/PyTriangulation.pyd differ diff --git a/src/Mod/DDA/TrackerTools.py b/src/Mod/DDA/TrackerTools.py new file mode 100644 index 000000000000..497c9a583a2f --- /dev/null +++ b/src/Mod/DDA/TrackerTools.py @@ -0,0 +1,444 @@ +# coding=gbk +#*************************************************************************** +#* * +#* Copyright (c) 2011 * +#* Yorik van Havre * +#* * +#* 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 FreeCADGui , WorkingPlane1, math, re +from pivy import coin +from FreeCAD import Vector +from drawGui import * +#from draftlibs import fcvec, fcgeo +import fcvec, fcgeo +from functools import partial +import Part + +# sets the default working plane +plane = WorkingPlane1.plane() +FreeCAD.DDADockWidget = plane +plane.alignToPointAndAxis(Vector(0, 0, 0), Vector(0, 0, 1), 0) + + +#--------------------------------------------------------------------------- +# Trackers +#--------------------------------------------------------------------------- + +class Tracker: + "A generic Draft Tracker, to be used by other specific trackers" + # 辅助绘图工具 + def __init__(self, dotted=False, scolor=None, swidth=None, children=[], ontop=False): + self.ontop = ontop + color = coin.SoBaseColor() + color.rgb = scolor or FreeCADGui.DDADockWidget.getDefaultColor("ui") + drawstyle = coin.SoDrawStyle() + if swidth: + drawstyle.lineWidth = swidth + if dotted: + drawstyle.style = coin.SoDrawStyle.LINES + drawstyle.lineWeight = 3 + drawstyle.linePattern = 0x0f0f # 0xaa , 虚线的具体样式 + node = coin.SoSeparator() + for c in [drawstyle, color] + children: # openInventor的处理方式,前两决定后续children的样式 + node.addChild(c) + self.switch = coin.SoSwitch() # this is the on/off switch + self.switch.addChild(node) + self.switch.whichChild = -1 + self.Visible = False + todo.delay(self._insertSwitch, self.switch) + + def finalize(self): + todo.delay(self._removeSwitch, self.switch) + self.switch = None + + def _insertSwitch(self, switch): + '''insert self.switch into the scene graph. Must not be called + from an event handler (or other scene graph traversal).''' + sg = FreeCADGui.ActiveDocument.ActiveView.getSceneGraph() + if self.ontop: + sg.insertChild(switch, 0) + else: + sg.addChild(switch) + + def _removeSwitch(self, switch): + '''remove self.switch from the scene graph. As with _insertSwitch, + must not be called during scene graph traversal).''' + sg = FreeCADGui.ActiveDocument.ActiveView.getSceneGraph() + sg.removeChild(switch) + + def on(self): + self.switch.whichChild = 0 + self.Visible = True + + def off(self): + self.switch.whichChild = -1 + self.Visible = False + +class snapTracker(Tracker): + "A Snap Mark tracker, used by tools that support snapping" + def __init__(self): + color = coin.SoBaseColor() + color.rgb = FreeCADGui.DDADockWidget.getDefaultColor("snap") + self.marker = coin.SoMarkerSet() # this is the marker symbol + self.marker.markerIndex = coin.SoMarkerSet.CIRCLE_FILLED_9_9 + self.coords = coin.SoCoordinate3() # this is the coordinate + self.coords.point.setValue((0, 0, 0)) + node = coin.SoAnnotation() + node.addChild(self.coords) + node.addChild(color) + node.addChild(self.marker) + Tracker.__init__(self, children=[node]) + + def setMarker(self, style): + if (style == "point"): + self.marker.markerIndex = coin.SoMarkerSet.CIRCLE_FILLED_9_9 + elif (style == "square"): + self.marker.markerIndex = coin.SoMarkerSet.DIAMOND_FILLED_9_9 + elif (style == "circle"): + self.marker.markerIndex = coin.SoMarkerSet.CIRCLE_LINE_9_9 + +class lineTracker(Tracker): + "A Line tracker, used by the tools that need to draw temporary lines" + def __init__(self, dotted=False, scolor=None, swidth=None): + line = coin.SoLineSet() # 辅助图元,用coin显示,不是openCASCADE结构的 + line.numVertices.setValue(2) + self.coords = coin.SoCoordinate3() # this is the coordinate + self.coords.point.setValues(0, 2, [[0, 0, 0], [1, 0, 0]]) + Tracker.__init__(self, dotted, scolor, swidth, [self.coords, line]) + + def p1(self, point=None): + "sets or gets the first point of the line" + if point: + self.coords.point.set1Value(0, point.x, point.y, point.z) + else: + return Vector(self.coords.point.getValues()[0].getValue()) + + def p2(self, point=None): + "sets or gets the second point of the line" + if point: + self.coords.point.set1Value(1, point.x, point.y, point.z) + else: + return Vector(self.coords.point.getValues()[-1].getValue()) + + def getLength(self): + "returns the length of the line" + p1 = Vector(self.coords.point.getValues()[0].getValue()) + p2 = Vector(self.coords.point.getValues()[-1].getValue()) + return (p2.sub(p1)).Length + +class rectangleTracker(Tracker): + "A Rectangle tracker, used by the rectangle tool" + def __init__(self, dotted=False, scolor=None, swidth=None): + self.origin = Vector(0, 0, 0) + line = coin.SoLineSet() + line.numVertices.setValue(5) + self.coords = coin.SoCoordinate3() # this is the coordinate + self.coords.point.setValues(0, 5, [[0, 0, 0], [2, 0, 0], [2, 2, 0], [0, 2, 0], [0, 0, 0]]) + Tracker.__init__(self, dotted, scolor, swidth, [self.coords, line]) + self.u = plane.u + self.v = plane.v + + def setorigin(self, point): + "sets the base point of the rectangle" + self.coords.point.set1Value(0, point.x, point.y, point.z) + self.coords.point.set1Value(4, point.x, point.y, point.z) + self.origin = point + + def update(self, point): + "sets the opposite (diagonal) point of the rectangle" + diagonal = point.sub(self.origin) + inpoint1 = self.origin.add(fcvec.project(diagonal, self.v)) + inpoint2 = self.origin.add(fcvec.project(diagonal, self.u)) + self.coords.point.set1Value(1, inpoint1.x, inpoint1.y, inpoint1.z) + self.coords.point.set1Value(2, point.x, point.y, point.z) + self.coords.point.set1Value(3, inpoint2.x, inpoint2.y, inpoint2.z) + + def setPlane(self, u, v=None): + '''sets given (u,v) vectors as working plane. You can give only u + and v will be deduced automatically given current workplane''' + self.u = u + if v: + self.v = v + else: + norm = plane.u.cross(plane.v) + self.v = self.u.cross(norm) + + def p1(self, point=None): + "sets or gets the base point of the rectangle" + if point: + self.setorigin(point) + else: + return Vector(self.coords.point.getValues()[0].getValue()) + + def p2(self): + "gets the second point (on u axis) of the rectangle" + return Vector(self.coords.point.getValues()[3].getValue()) + + def p3(self, point=None): + "sets or gets the opposite (diagonal) point of the rectangle" + if point: + self.update(point) + else: + return Vector(self.coords.point.getValues()[2].getValue()) + + def p4(self): + "gets the fourth point (on v axis) of the rectangle" + return Vector(self.coords.point.getValues()[1].getValue()) + + def getSize(self): + "returns (length,width) of the rectangle" + p1 = Vector(self.coords.point.getValues()[0].getValue()) + p2 = Vector(self.coords.point.getValues()[2].getValue()) + diag = p2.sub(p1) + return ((fcvec.project(diag, self.u)).Length, (fcvec.project(diag, self.v)).Length) + + def getNormal(self): + "returns the normal of the rectangle" + return (self.u.cross(self.v)).normalize() + +class arcTracker(Tracker): + "An arc tracker" + def __init__(self, dotted=False, scolor=None, swidth=None, start=0, end=math.pi * 2): + self.circle = None + self.startangle = math.degrees(start) + self.endangle = math.degrees(end) + self.trans = coin.SoTransform() + self.trans.translation.setValue([0, 0, 0]) + self.sep = coin.SoSeparator() + self.recompute() + Tracker.__init__(self, dotted, scolor, swidth, [self.trans, self.sep]) + + def setCenter(self, cen): + "sets the center point" + self.trans.translation.setValue([cen.x, cen.y, cen.z]) + + def setRadius(self, rad): + "sets the radius" + self.trans.scaleFactor.setValue([rad, rad, rad]) + + def getRadius(self): + "returns the current radius" + return self.trans.scaleFactor.getValue()[0] + + def setStartAngle(self, ang): + "sets the start angle" + self.startangle = math.degrees(ang) + self.recompute() + + def setEndAngle(self, ang): + "sets the end angle" + self.endangle = math.degrees(ang) + self.recompute() + + def getAngle(self, pt): + "returns the angle of a given vector" + c = self.trans.translation.getValue() + center = Vector(c[0], c[1], c[2]) + base = plane.u + rad = pt.sub(center) + return(fcvec.angle(rad, base, plane.axis)) + + def getAngles(self): + "returns the start and end angles" + return(self.startangle, self.endangle) + + def setStartPoint(self, pt): + "sets the start angle from a point" + self.setStartAngle(-self.getAngle(pt)) + + def setEndPoint(self, pt): + "sets the end angle from a point" + self.setEndAngle(self.getAngle(pt)) + + def setApertureAngle(self, ang): + "sets the end angle by giving the aperture angle" + ap = math.degrees(ang) + self.endangle = self.startangle + ap + self.recompute() + + def recompute(self): + if self.circle: self.sep.removeChild(self.circle) + self.circle = None + c = Part.makeCircle(1, Vector(0, 0, 0), plane.axis) + buf = c.writeInventor(2, 0.01) + ivin = coin.SoInput() + ivin.setBuffer(buf) + ivob = coin.SoDB.readAll(ivin) + # In case reading from buffer failed + if ivob and ivob.getNumChildren() > 1: + self.circle = ivob.getChild(1).getChild(0) + self.circle.removeChild(self.circle.getChild(0))# 材料属性 + self.circle.removeChild(self.circle.getChild(0))# 绘制属性 + self.sep.addChild(self.circle) # 留下的有coin.SoCoordinate3和coin.SoLineSet + else: + FreeCAD.Console.PrintWarning("arcTracker.recompute() failed to read-in Inventor string\n") + + + +class PlaneTracker(Tracker): + "A working plane tracker" + def __init__(self): + # getting screen distance + p1 = FreeCADGui.ActiveDocument.ActiveView.getPoint((100, 100)) + p2 = FreeCADGui.ActiveDocument.ActiveView.getPoint((110, 100)) + bl = (p2.sub(p1)).Length * (Base.getParam("snapRange") / 2) + self.trans = coin.SoTransform() + self.trans.translation.setValue([0, 0, 0]) + m1 = coin.SoMaterial() + m1.transparency.setValue(0.8) + m1.diffuseColor.setValue([0.4, 0.4, 0.6]) + c1 = coin.SoCoordinate3() + c1.point.setValues([[-bl, -bl, 0], [bl, -bl, 0], [bl, bl, 0], [-bl, bl, 0]]) + f = coin.SoIndexedFaceSet() + f.coordIndex.setValues([0, 1, 2, 3]) + m2 = coin.SoMaterial() + m2.transparency.setValue(0.7) + m2.diffuseColor.setValue([0.2, 0.2, 0.3]) + c2 = coin.SoCoordinate3() + c2.point.setValues([[0, bl, 0], [0, 0, 0], [bl, 0, 0], [-.05 * bl, .95 * bl, 0], [0, bl, 0], + [.05 * bl, .95 * bl, 0], [.95 * bl, .05 * bl, 0], [bl, 0, 0], [.95 * bl, -.05 * bl, 0]]) + l = coin.SoLineSet() + l.numVertices.setValues([3, 3, 3]) + s = coin.SoSeparator() + s.addChild(self.trans) + s.addChild(m1) + s.addChild(c1) + s.addChild(f) + s.addChild(m2) + s.addChild(c2) + s.addChild(l) + Tracker.__init__(self, children=[s]) + + def set(self, pos=None): + if pos: + Q = plane.getRotation().Rotation.Q + else: + plm = plane.getPlacement() + Q = plm.Rotation.Q + pos = plm.Base + self.trans.translation.setValue([pos.x, pos.y, pos.z]) + self.trans.rotation.setValue([Q[0], Q[1], Q[2], Q[3]]) + self.on() + + +class gridTracker(Tracker): + "A grid tracker" + def __init__(self): + # self.space = 1 + self.space = Base.getParam("gridSpacing") + # self.mainlines = 10 + self.mainlines = Base.getParam("gridEvery") + self.numlines = 100 + col = [0.2, 0.2, 0.3] + + self.trans = coin.SoTransform() + self.trans.translation.setValue([0, 0, 0]) + + bound = (self.numlines / 2) * self.space + pts = [] + mpts = [] + for i in range(self.numlines + 1): + curr = -bound + i * self.space + z = 0 + if i / float(self.mainlines) == i / self.mainlines: + mpts.extend([[-bound, curr, z], [bound, curr, z]]) + mpts.extend([[curr, -bound, z], [curr, bound, z]]) + else: + pts.extend([[-bound, curr, z], [bound, curr, z]]) + pts.extend([[curr, -bound, z], [curr, bound, z]]) + idx = [] + midx = [] + for p in range(0, len(pts), 2): + idx.append(2) + for mp in range(0, len(mpts), 2): + midx.append(2) + + mat1 = coin.SoMaterial() + mat1.transparency.setValue(0.7) + mat1.diffuseColor.setValue(col) + self.coords1 = coin.SoCoordinate3() + self.coords1.point.setValues(pts) + lines1 = coin.SoLineSet() + lines1.numVertices.setValues(idx) + mat2 = coin.SoMaterial() + mat2.transparency.setValue(0.3) + mat2.diffuseColor.setValue(col) + self.coords2 = coin.SoCoordinate3() + self.coords2.point.setValues(mpts) + lines2 = coin.SoLineSet() + lines2.numVertices.setValues(midx) + s = coin.SoSeparator() + s.addChild(self.trans) + s.addChild(mat1) + s.addChild(self.coords1) + s.addChild(lines1) + s.addChild(mat2) + s.addChild(self.coords2) + s.addChild(lines2) + Tracker.__init__(self, children=[s]) + self.update() + + def update(self): + bound = (self.numlines / 2) * self.space + pts = [] + mpts = [] + for i in range(self.numlines + 1): + curr = -bound + i * self.space + if i / float(self.mainlines) == i / self.mainlines: + mpts.extend([[-bound, curr, 0], [bound, curr, 0]]) + mpts.extend([[curr, -bound, 0], [curr, bound, 0]]) + else: + pts.extend([[-bound, curr, 0], [bound, curr, 0]]) + pts.extend([[curr, -bound, 0], [curr, bound, 0]]) + self.coords1.point.setValues(pts) + self.coords2.point.setValues(mpts) + + def setSpacing(self, space): + self.space = space + self.update() + + def setMainlines(self, ml): + self.mainlines = ml + self.update() + + def set(self): + Q = plane.getRotation().Rotation.Q + self.trans.rotation.setValue([Q[0], Q[1], Q[2], Q[3]]) + self.on() + + def getClosestNode(self, point): + "returns the closest node from the given point" + # get the 2D coords. + point = plane.projectPoint(point) + u = fcvec.project(point, plane.u) + lu = u.Length + if u.getAngle(plane.u) > 1.5: + lu = -lu + v = fcvec.project(point, plane.v) + lv = v.Length + if v.getAngle(plane.v) > 1.5: + lv = -lv + # print "u = ",u," v = ",v + # find nearest grid node + pu = (round(lu / self.space, 0)) * self.space + pv = (round(lv / self.space, 0)) * self.space + rot = FreeCAD.Rotation() + rot.Q = self.trans.rotation.getValue().getValue() + return rot.multVec(Vector(pu, pv, 0)) diff --git a/src/Mod/DDA/UserGuide.docx b/src/Mod/DDA/UserGuide.docx new file mode 100644 index 000000000000..394c7316d34d Binary files /dev/null and b/src/Mod/DDA/UserGuide.docx differ diff --git a/src/Mod/DDA/WorkingPlane1.py b/src/Mod/DDA/WorkingPlane1.py new file mode 100644 index 000000000000..ec604d66328c --- /dev/null +++ b/src/Mod/DDA/WorkingPlane1.py @@ -0,0 +1,245 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2009, 2010 * +#* Ken Cline * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU General Public License (GPL) * +#* 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, Part, math +from FreeCAD import Vector +from draftlibs import fcvec + +__title__="FreeCAD Working Plane utility" +__author__ = "Ken Cline" +__url__ = "http://free-cad.sourceforge.net" + +''' +This module provides a class called plane to assist in selecting and maintaining a working plane. +''' + + +class plane: + '''A WorkPlane object''' + + def __init__(self): + # keep track of active document. Reset view when doc changes. + self.doc = None + # self.weak is true if the plane has been defined by self.setup or has been reset + self.weak = True + # u, v axes and position define plane, perpendicular axis is handy, though redundant. + self.u = None + self.v = None + self.axis = None + self.position = None + # a placeholder for a stored state + self.stored = None + + def __repr__(self): + return "Workplane x="+str(fcvec.rounded(self.u))+" y="+str(fcvec.rounded(self.v))+" z="+str(fcvec.rounded(self.axis)) + + def offsetToPoint(self, p, direction=None): + ''' + Return the signed distance from p to the plane, such + that p + offsetToPoint(p)*direction lies on the plane. + direction defaults to -plane.axis + ''' + + ''' + A picture will help explain the computation: + + p + //| + / / | + / / | + / / | + / / | + -------------------- plane -----c-----x-----a-------- + + Here p is the specified point, + c is a point (in this case plane.position) on the plane + x is the intercept on the plane from p in the specified direction, and + a is the perpendicular intercept on the plane (i.e. along plane.axis) + + Using vertival bars to denote the length operator, + |ap| = |cp| * cos(apc) = |xp| * cos(apx) + so + |xp| = |cp| * cos(apc) / cos(apx) + = (cp . axis) / (direction . axis) + ''' + if direction == None: direction = self.axis + return self.axis.dot(self.position.sub(p))/self.axis.dot(direction) + + def projectPoint(self, p, direction=None): + '''project point onto plane, default direction is orthogonal''' + if not direction: direction = self.axis + t = Vector(direction) + t.multiply(self.offsetToPoint(p, direction)) + return p.add(t) + + def alignToPointAndAxis(self, point, axis, offset, upvec=None): + self.doc = FreeCAD.ActiveDocument + self.axis = axis; + self.axis.normalize() + if (fcvec.equals(axis, Vector(1,0,0))): + self.u = Vector(0,1,0) + self.v = Vector(0,0,1) + elif (fcvec.equals(axis, Vector(-1,0,0))): + self.u = Vector(0,-1,0) + self.v = Vector(0,0,1) + elif upvec: + self.v = upvec + self.v.normalize() + self.u = self.v.cross(self.axis) + else: + self.v = axis.cross(Vector(1,0,0)) + self.v.normalize() + self.u = fcvec.rotate(self.v, -math.pi/2, self.axis) + offsetVector = Vector(axis); offsetVector.multiply(offset) + self.position = point.add(offsetVector) + self.weak = False + # FreeCAD.Console.PrintMessage("(position = " + str(self.position) + ")\n") + # FreeCAD.Console.PrintMessage("Current workplane: x="+str(fcvec.rounded(self.u))+" y="+str(fcvec.rounded(self.v))+" z="+str(fcvec.rounded(self.axis))+"\n") + + def alignToCurve(self, shape, offset): + if shape.ShapeType == 'Edge': + #??? TODO: process curve here. look at shape.edges[0].Curve + return False + elif shape.ShapeType == 'Wire': + #??? TODO: determine if edges define a plane + return False + else: + return False + + def alignToFace(self, shape, offset=0): + # Set face to the unique selected face, if found + if shape.ShapeType == 'Face': + #we should really use face.tangentAt to get u and v here, and implement alignToUVPoint + self.alignToPointAndAxis(shape.Faces[0].CenterOfMass, shape.Faces[0].normalAt(0,0), offset) + return True + else: + return False + + def alignToSelection(self, offset): + '''If selection uniquely defines a plane, align working plane to it. Return success (bool)''' + sex = FreeCADGui.Selection.getSelectionEx(FreeCAD.ActiveDocument.Name) + if len(sex) == 0: + return False + elif len(sex) == 1: + if not sex[0].Object.isDerivedFrom("Part::Shape"): + return False + return self.alignToCurve(sex[0].Object.Shape, offset) \ + or self.alignToFace(sex[0].Object.Shape, offset) \ + or (len(sex[0].SubObjects) == 1 and self.alignToFace(sex[0].SubObjects[0], offset)) + else: + # len(sex) > 2, look for point and line, three points, etc. + return False + + def setup(self, direction, point, upvec=None): + '''If working plane is undefined, define it!''' + if self.weak: + self.alignToPointAndAxis(point, direction, 0, upvec) + self.weak = True + + def reset(self): + self.doc = None + self.weak = True + + def getRotation(self): + "returns a placement describing the working plane orientation ONLY" + m = fcvec.getPlaneRotation(self.u,self.v,self.axis) + return FreeCAD.Placement(m) + + def getPlacement(self): + "returns the placement of the working plane" + m = FreeCAD.Matrix( + self.u.x,self.v.x,self.axis.x,self.position.x, + self.u.y,self.v.y,self.axis.y,self.position.y, + self.u.z,self.v.z,self.axis.z,self.position.z, + 0.0,0.0,0.0,1.0) + return FreeCAD.Placement(m) + + def save(self): + "stores the current plane state" + self.stored = [self.u,self.v,self.axis,self.position,self.weak] + + def restore(self): + "restores a previously saved plane state, if exists" + if self.stored: + self.u = self.stored[0] + self.v = self.stored[1] + self.axis = self.stored[2] + self.position = self.stored[3] + self.weak = self.stored[4] + self.stored = None + + def getLocalCoords(self,point): + "returns the coordinates of a given point on the working plane" + xv = fcvec.project(point,self.u) + x = xv.Length + if xv.getAngle(self.u) > 1: + x = -x + yv = fcvec.project(point,self.v) + y = yv.Length + if yv.getAngle(self.v) > 1: + y = -y + zv = fcvec.project(point,self.axis) + z = zv.Length + if zv.getAngle(self.axis) > 1: + z = -z + return Vector(x,y,z) + + def getGlobalCoords(self,point): + "returns the global coordinates of the given point, taken relatively to this working plane" + vx = fcvec.scale(self.u,point.x) + vy = fcvec.scale(self.v,point.y) + vz = fcvec.scale(self.axis,point.z) + return (vx.add(vy)).add(vz) + + def getClosestAxis(self,point): + "returns which of the workingplane axes is closest from the given vector" + ax = point.getAngle(self.u) + ay = point.getAngle(self.v) + az = point.getAngle(self.axis) + bx = point.getAngle(fcvec.neg(self.u)) + by = point.getAngle(fcvec.neg(self.v)) + bz = point.getAngle(fcvec.neg(self.axis)) + b = min(ax,ay,az) + if b in [ax,bx]: + return "x" + elif b in [ay,by]: + return "y" + elif b in [az,bz]: + return "z" + else: + return None + +def getPlacementFromPoints(points): + "returns a placement from a list of 3 or 4 vectors" + pl = plane() + pl.position = points[0] + pl.u = (points[1].sub(points[0]).normalize()) + pl.v = (points[2].sub(points[0]).normalize()) + if len(points) == 4: + pl.axis = (points[3].sub(points[0]).normalize()) + else: + pl.axis = ((pl.u).cross(pl.v)).normalize() + p = pl.getPlacement() + del pl + return p diff --git a/src/Mod/DDA/__init__.py b/src/Mod/DDA/__init__.py new file mode 100644 index 000000000000..36e147a45db8 --- /dev/null +++ b/src/Mod/DDA/__init__.py @@ -0,0 +1,10 @@ +''' +Created on 2012-12-29 + +@author: laine +''' + +import FreeCAD , FreeCADGui + +FreeCADGui.showMainWindow() +FreeCADGui.exec_loop() diff --git a/src/Mod/DDA/boost_python-vc90-mt-1_39.dll b/src/Mod/DDA/boost_python-vc90-mt-1_39.dll new file mode 100644 index 000000000000..5b7578972b52 Binary files /dev/null and b/src/Mod/DDA/boost_python-vc90-mt-1_39.dll differ diff --git a/src/Mod/DDA/checkConcave_and_triangulate.py b/src/Mod/DDA/checkConcave_and_triangulate.py new file mode 100644 index 000000000000..cf63ec4bb368 --- /dev/null +++ b/src/Mod/DDA/checkConcave_and_triangulate.py @@ -0,0 +1,116 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2009, 2010 * +#* Xiaolong Cheng * +#* * +#* 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 PyTriangulation as Py +from PyTriangulation import Vector2d as point +from PyTriangulation import pyvector_point2 as pl +from FreeCAD import Vector +#plist = pl() +#plist.append( point(0,0)) +#plist.append( point(4,0)) +#plist.append( point(1,1)) +#plist.append( point(0,4)) +#result = pl() +#Py.triangulate(plist , result) +# +#print result.size() +#t = result.size()/3 +#for i in range(t): +# p1 = result[i*3] +# p2 = result[i*3+1] +# p3 = result[i*3+2] +# print 'Triangle %d : (%f , %f ) (%f , %f ) , (%f , %f )'%(i,p1.x , p1.y , p2.x , p2.y , p3.x , p3.y) + + +def getUp(p1 , p2 , p3): + ax = p1[0]-p2[0] + ay = p1[1]-p2[1] + bx = p2[0]-p3[0] + by = p2[1]-p3[1] + tmpRe = ax*by - bx*ay + if tmpRe>0: + tmpRe=1 + elif tmpRe<=0: + tmpRe = -1 + else: + print 'error' +# print tmpRe + return tmpRe + +def IfConcave(plist2): + if len(plist2)<3: +# raise Exception('vertices number < 3') + print '***************vertices number < 3*******************' + return + if plist2[0]==plist2[-1]: + plist = plist2[:-1] + else: + plist = plist2 + + res = getUp(plist[0],plist[1],plist[2]) + length = len(plist) + for i in range(1,length-1): + p1 = plist[i] + p2 = plist[(i+1)%length] + p3 = plist[(i+2)%length] + + tmp = getUp(p1,p2,p3) +# print res , tmp + if res != tmp: + return True + return False + +def triangulate(plist2): + pnts = pl() + if plist2[0]==plist2[-1]: + plist = plist2[:-1] + else: + plist = plist2 + + for t in plist: + pnts.append(point(t[0],t[1])) + result = pl() + Py.triangulate(pnts , result) + tmpRe = [] + for i , t in enumerate(result): + tmpRe.append(Vector(t.x,t.y,-1)) + return tmpRe + +def ifSegmentAndPolygonIntersect(segment2 , polygon2): + seg = pl() + poly = pl() + polygon = polygon2 + if polygon2[0]==polygon2[-1]: + polygon = polygon2[:-1] + + for t in segment2: + seg.append(point(t[0],t[1])) + for t in polygon: + poly.append(point(t[0],t[1])) + + return Py.ifIntersection(seg , poly) + +#pts = [Vector (22.7365, 8.45805, -7), Vector (25.2035, 10.0582, -7), Vector (24.8621, 7.91085, -7), Vector (24.018, 7.7756, -7), Vector (23.4091, 8.19992, -7), Vector (22.7365, 8.45805, -7)] +#print IfConcave(pts) +#print triangulate(pts) diff --git a/src/Mod/DDA/dc.ps b/src/Mod/DDA/dc.ps new file mode 100644 index 000000000000..6807449e24ef Binary files /dev/null and b/src/Mod/DDA/dc.ps differ diff --git a/src/Mod/DDA/dc_Ff.c b/src/Mod/DDA/dc_Ff.c new file mode 100644 index 000000000000..d9868b9fbe06 --- /dev/null +++ b/src/Mod/DDA/dc_Ff.c @@ -0,0 +1 @@ +D:/DDAProject3/data.dc \ No newline at end of file diff --git a/src/Mod/DDA/df_Ff.c b/src/Mod/DDA/df_Ff.c new file mode 100644 index 000000000000..5ac19541ecfa --- /dev/null +++ b/src/Mod/DDA/df_Ff.c @@ -0,0 +1,2 @@ +D:/DDAProject3/data.df +D:/DDAProject3/parameters.df \ No newline at end of file diff --git a/src/Mod/DDA/dg_ff.c b/src/Mod/DDA/dg_ff.c new file mode 100644 index 000000000000..7e7b378ecea1 --- /dev/null +++ b/src/Mod/DDA/dg_ff.c @@ -0,0 +1 @@ +D:/DDAProject/data.dg \ No newline at end of file diff --git a/src/Mod/DDA/dl.ps b/src/Mod/DDA/dl.ps new file mode 100644 index 000000000000..fc658ebe02f6 Binary files /dev/null and b/src/Mod/DDA/dl.ps differ diff --git a/src/Mod/DDA/draftlibs/__init__.py b/src/Mod/DDA/draftlibs/__init__.py new file mode 100644 index 000000000000..33534747d22b --- /dev/null +++ b/src/Mod/DDA/draftlibs/__init__.py @@ -0,0 +1 @@ +#fc \ No newline at end of file diff --git a/src/Mod/DDA/draftlibs/dxfColorMap.py b/src/Mod/DDA/draftlibs/dxfColorMap.py new file mode 100644 index 000000000000..66c0bd4e9a26 --- /dev/null +++ b/src/Mod/DDA/draftlibs/dxfColorMap.py @@ -0,0 +1,282 @@ +# dictionary mapping AutoCAD color indexes with Blender colors + +# -------------------------------------------------------------------------- +# color_map.py Final by Ed Blake (AKA Kitsu) +# -------------------------------------------------------------------------- +# ***** BEGIN GPL LICENSE BLOCK ***** +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# 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 General Public License for more details. +# +# You should have received a copy of the GNU 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. +# +# ***** END GPL LICENCE BLOCK ***** +# -------------------------------------------------------------------------- + +color_map = { + 0:[0.0, 0.0, 0.0], + 1:[0.99609375, 0.0, 0.0], + 2:[0.99609375, 0.99609375, 0.0], + 3:[0.0, 0.99609375, 0.0], + 4:[0.0, 0.99609375, 0.99609375], + 5:[0.0, 0.0, 0.99609375], + 6:[0.99609375, 0.0, 0.99609375], + 7:[0.99609375, 0.99609375, 0.99609375], + 8:[0.25390625, 0.25390625, 0.25390625], + 9:[0.5, 0.5, 0.5], + 10:[0.99609375, 0.0, 0.0], + 11:[0.99609375, 0.6640625, 0.6640625], + 12:[0.73828125, 0.0, 0.0], + 13:[0.73828125, 0.4921875, 0.4921875], + 14:[0.50390625, 0.0, 0.0], + 15:[0.50390625, 0.3359375, 0.3359375], + 16:[0.40625, 0.0, 0.0], + 17:[0.40625, 0.26953125, 0.26953125], + 18:[0.30859375, 0.0, 0.0], + 19:[0.30859375, 0.20703125, 0.20703125], + 20:[0.99609375, 0.24609375, 0.0], + 21:[0.99609375, 0.74609375, 0.6640625], + 22:[0.73828125, 0.1796875, 0.0], + 23:[0.73828125, 0.55078125, 0.4921875], + 24:[0.50390625, 0.12109375, 0.0], + 25:[0.50390625, 0.375, 0.3359375], + 26:[0.40625, 0.09765625, 0.0], + 27:[0.40625, 0.3046875, 0.26953125], + 28:[0.30859375, 0.07421875, 0.0], + 29:[0.30859375, 0.23046875, 0.20703125], + 30:[0.99609375, 0.49609375, 0.0], + 31:[0.99609375, 0.828125, 0.6640625], + 32:[0.73828125, 0.3671875, 0.0], + 33:[0.73828125, 0.61328125, 0.4921875], + 34:[0.50390625, 0.25, 0.0], + 35:[0.50390625, 0.41796875, 0.3359375], + 36:[0.40625, 0.203125, 0.0], + 37:[0.40625, 0.3359375, 0.26953125], + 38:[0.30859375, 0.15234375, 0.0], + 39:[0.30859375, 0.2578125, 0.20703125], + 40:[0.99609375, 0.74609375, 0.0], + 41:[0.99609375, 0.9140625, 0.6640625], + 42:[0.73828125, 0.55078125, 0.0], + 43:[0.73828125, 0.67578125, 0.4921875], + 44:[0.50390625, 0.375, 0.0], + 45:[0.50390625, 0.4609375, 0.3359375], + 46:[0.40625, 0.3046875, 0.0], + 47:[0.40625, 0.37109375, 0.26953125], + 48:[0.30859375, 0.23046875, 0.0], + 49:[0.30859375, 0.28515625, 0.20703125], + 50:[0.99609375, 0.99609375, 0.0], + 51:[0.99609375, 0.99609375, 0.6640625], + 52:[0.73828125, 0.73828125, 0.0], + 53:[0.73828125, 0.73828125, 0.4921875], + 54:[0.50390625, 0.50390625, 0.0], + 55:[0.50390625, 0.50390625, 0.3359375], + 56:[0.40625, 0.40625, 0.0], + 57:[0.40625, 0.40625, 0.26953125], + 58:[0.30859375, 0.30859375, 0.0], + 59:[0.30859375, 0.30859375, 0.20703125], + 60:[0.74609375, 0.99609375, 0.0], + 61:[0.9140625, 0.99609375, 0.6640625], + 62:[0.55078125, 0.73828125, 0.0], + 63:[0.67578125, 0.73828125, 0.4921875], + 64:[0.375, 0.50390625, 0.0], + 65:[0.4609375, 0.50390625, 0.3359375], + 66:[0.3046875, 0.40625, 0.0], + 67:[0.37109375, 0.40625, 0.26953125], + 68:[0.23046875, 0.30859375, 0.0], + 69:[0.28515625, 0.30859375, 0.20703125], + 70:[0.49609375, 0.99609375, 0.0], + 71:[0.828125, 0.99609375, 0.6640625], + 72:[0.3671875, 0.73828125, 0.0], + 73:[0.61328125, 0.73828125, 0.4921875], + 74:[0.25, 0.50390625, 0.0], + 75:[0.41796875, 0.50390625, 0.3359375], + 76:[0.203125, 0.40625, 0.0], + 77:[0.3359375, 0.40625, 0.26953125], + 78:[0.15234375, 0.30859375, 0.0], + 79:[0.2578125, 0.30859375, 0.20703125], + 80:[0.24609375, 0.99609375, 0.0], + 81:[0.74609375, 0.99609375, 0.6640625], + 82:[0.1796875, 0.73828125, 0.0], + 83:[0.55078125, 0.73828125, 0.4921875], + 84:[0.12109375, 0.50390625, 0.0], + 85:[0.375, 0.50390625, 0.3359375], + 86:[0.09765625, 0.40625, 0.0], + 87:[0.3046875, 0.40625, 0.26953125], + 88:[0.07421875, 0.30859375, 0.0], + 89:[0.23046875, 0.30859375, 0.20703125], + 90:[0.0, 0.99609375, 0.0], + 91:[0.6640625, 0.99609375, 0.6640625], + 92:[0.0, 0.73828125, 0.0], + 93:[0.4921875, 0.73828125, 0.4921875], + 94:[0.0, 0.50390625, 0.0], + 95:[0.3359375, 0.50390625, 0.3359375], + 96:[0.0, 0.40625, 0.0], + 97:[0.26953125, 0.40625, 0.26953125], + 98:[0.0, 0.30859375, 0.0], + 99:[0.20703125, 0.30859375, 0.20703125], + 100:[0.0, 0.99609375, 0.24609375], + 101:[0.6640625, 0.99609375, 0.74609375], + 102:[0.0, 0.73828125, 0.1796875], + 103:[0.4921875, 0.73828125, 0.55078125], + 104:[0.0, 0.50390625, 0.12109375], + 105:[0.3359375, 0.50390625, 0.375], + 106:[0.0, 0.40625, 0.09765625], + 107:[0.26953125, 0.40625, 0.3046875], + 108:[0.0, 0.30859375, 0.07421875], + 109:[0.20703125, 0.30859375, 0.23046875], + 110:[0.0, 0.99609375, 0.49609375], + 111:[0.6640625, 0.99609375, 0.828125], + 112:[0.0, 0.73828125, 0.3671875], + 113:[0.4921875, 0.73828125, 0.61328125], + 114:[0.0, 0.50390625, 0.25], + 115:[0.3359375, 0.50390625, 0.41796875], + 116:[0.0, 0.40625, 0.203125], + 117:[0.26953125, 0.40625, 0.3359375], + 118:[0.0, 0.30859375, 0.15234375], + 119:[0.20703125, 0.30859375, 0.2578125], + 120:[0.0, 0.99609375, 0.74609375], + 121:[0.6640625, 0.99609375, 0.9140625], + 122:[0.0, 0.73828125, 0.55078125], + 123:[0.4921875, 0.73828125, 0.67578125], + 124:[0.0, 0.50390625, 0.375], + 125:[0.3359375, 0.50390625, 0.4609375], + 126:[0.0, 0.40625, 0.3046875], + 127:[0.26953125, 0.40625, 0.37109375], + 128:[0.0, 0.30859375, 0.23046875], + 129:[0.20703125, 0.30859375, 0.28515625], + 130:[0.0, 0.99609375, 0.99609375], + 131:[0.6640625, 0.99609375, 0.99609375], + 132:[0.0, 0.73828125, 0.73828125], + 133:[0.4921875, 0.73828125, 0.73828125], + 134:[0.0, 0.50390625, 0.50390625], + 135:[0.3359375, 0.50390625, 0.50390625], + 136:[0.0, 0.40625, 0.40625], + 137:[0.26953125, 0.40625, 0.40625], + 138:[0.0, 0.30859375, 0.30859375], + 139:[0.20703125, 0.30859375, 0.30859375], + 140:[0.0, 0.74609375, 0.99609375], + 141:[0.6640625, 0.9140625, 0.99609375], + 142:[0.0, 0.55078125, 0.73828125], + 143:[0.4921875, 0.67578125, 0.73828125], + 144:[0.0, 0.375, 0.50390625], + 145:[0.3359375, 0.4609375, 0.50390625], + 146:[0.0, 0.3046875, 0.40625], + 147:[0.26953125, 0.37109375, 0.40625], + 148:[0.0, 0.23046875, 0.30859375], + 149:[0.20703125, 0.28515625, 0.30859375], + 150:[0.0, 0.49609375, 0.99609375], + 151:[0.6640625, 0.828125, 0.99609375], + 152:[0.0, 0.3671875, 0.73828125], + 153:[0.4921875, 0.61328125, 0.73828125], + 154:[0.0, 0.25, 0.50390625], + 155:[0.3359375, 0.41796875, 0.50390625], + 156:[0.0, 0.203125, 0.40625], + 157:[0.26953125, 0.3359375, 0.40625], + 158:[0.0, 0.15234375, 0.30859375], + 159:[0.20703125, 0.2578125, 0.30859375], + 160:[0.0, 0.24609375, 0.99609375], + 161:[0.6640625, 0.74609375, 0.99609375], + 162:[0.0, 0.1796875, 0.73828125], + 163:[0.4921875, 0.55078125, 0.73828125], + 164:[0.0, 0.12109375, 0.50390625], + 165:[0.3359375, 0.375, 0.50390625], + 166:[0.0, 0.09765625, 0.40625], + 167:[0.26953125, 0.3046875, 0.40625], + 168:[0.0, 0.07421875, 0.30859375], + 169:[0.20703125, 0.23046875, 0.30859375], + 170:[0.0, 0.0, 0.99609375], + 171:[0.6640625, 0.6640625, 0.99609375], + 172:[0.0, 0.0, 0.73828125], + 173:[0.4921875, 0.4921875, 0.73828125], + 174:[0.0, 0.0, 0.50390625], + 175:[0.3359375, 0.3359375, 0.50390625], + 176:[0.0, 0.0, 0.40625], + 177:[0.26953125, 0.26953125, 0.40625], + 178:[0.0, 0.0, 0.30859375], + 179:[0.20703125, 0.20703125, 0.30859375], + 180:[0.24609375, 0.0, 0.99609375], + 181:[0.74609375, 0.6640625, 0.99609375], + 182:[0.1796875, 0.0, 0.73828125], + 183:[0.55078125, 0.4921875, 0.73828125], + 184:[0.12109375, 0.0, 0.50390625], + 185:[0.375, 0.3359375, 0.50390625], + 186:[0.09765625, 0.0, 0.40625], + 187:[0.3046875, 0.26953125, 0.40625], + 188:[0.07421875, 0.0, 0.30859375], + 189:[0.23046875, 0.20703125, 0.30859375], + 190:[0.49609375, 0.0, 0.99609375], + 191:[0.828125, 0.6640625, 0.99609375], + 192:[0.3671875, 0.0, 0.73828125], + 193:[0.61328125, 0.4921875, 0.73828125], + 194:[0.25, 0.0, 0.50390625], + 195:[0.41796875, 0.3359375, 0.50390625], + 196:[0.203125, 0.0, 0.40625], + 197:[0.3359375, 0.26953125, 0.40625], + 198:[0.15234375, 0.0, 0.30859375], + 199:[0.2578125, 0.20703125, 0.30859375], + 200:[0.74609375, 0.0, 0.99609375], + 201:[0.9140625, 0.6640625, 0.99609375], + 202:[0.55078125, 0.0, 0.73828125], + 203:[0.67578125, 0.4921875, 0.73828125], + 204:[0.375, 0.0, 0.50390625], + 205:[0.4609375, 0.3359375, 0.50390625], + 206:[0.3046875, 0.0, 0.40625], + 207:[0.37109375, 0.26953125, 0.40625], + 208:[0.23046875, 0.0, 0.30859375], + 209:[0.28515625, 0.20703125, 0.30859375], + 210:[0.99609375, 0.0, 0.99609375], + 211:[0.99609375, 0.6640625, 0.99609375], + 212:[0.73828125, 0.0, 0.73828125], + 213:[0.73828125, 0.4921875, 0.73828125], + 214:[0.50390625, 0.0, 0.50390625], + 215:[0.50390625, 0.3359375, 0.50390625], + 216:[0.40625, 0.0, 0.40625], + 217:[0.40625, 0.26953125, 0.40625], + 218:[0.30859375, 0.0, 0.30859375], + 219:[0.30859375, 0.20703125, 0.30859375], + 220:[0.99609375, 0.0, 0.74609375], + 221:[0.99609375, 0.6640625, 0.9140625], + 222:[0.73828125, 0.0, 0.55078125], + 223:[0.73828125, 0.4921875, 0.67578125], + 224:[0.50390625, 0.0, 0.375], + 225:[0.50390625, 0.3359375, 0.4609375], + 226:[0.40625, 0.0, 0.3046875], + 227:[0.40625, 0.26953125, 0.37109375], + 228:[0.30859375, 0.0, 0.23046875], + 229:[0.30859375, 0.20703125, 0.28515625], + 230:[0.99609375, 0.0, 0.49609375], + 231:[0.99609375, 0.6640625, 0.828125], + 232:[0.73828125, 0.0, 0.3671875], + 233:[0.73828125, 0.4921875, 0.61328125], + 234:[0.50390625, 0.0, 0.25], + 235:[0.50390625, 0.3359375, 0.41796875], + 236:[0.40625, 0.0, 0.203125], + 237:[0.40625, 0.26953125, 0.3359375], + 238:[0.30859375, 0.0, 0.15234375], + 239:[0.30859375, 0.20703125, 0.2578125], + 240:[0.99609375, 0.0, 0.24609375], + 241:[0.99609375, 0.6640625, 0.74609375], + 242:[0.73828125, 0.0, 0.1796875], + 243:[0.73828125, 0.4921875, 0.55078125], + 244:[0.50390625, 0.0, 0.12109375], + 245:[0.50390625, 0.3359375, 0.375], + 246:[0.40625, 0.0, 0.09765625], + 247:[0.40625, 0.26953125, 0.3046875], + 248:[0.30859375, 0.0, 0.07421875], + 249:[0.30859375, 0.20703125, 0.23046875], + 250:[0.19921875, 0.19921875, 0.19921875], + 251:[0.3125, 0.3125, 0.3125], + 252:[0.41015625, 0.41015625, 0.41015625], + 253:[0.5078125, 0.5078125, 0.5078125], + 254:[0.7421875, 0.7421875, 0.7421875], + 255:[0.99609375, 0.99609375, 0.99609375], +} diff --git a/src/Mod/DDA/draftlibs/dxfImportObjects.py b/src/Mod/DDA/draftlibs/dxfImportObjects.py new file mode 100644 index 000000000000..27406b8198ce --- /dev/null +++ b/src/Mod/DDA/draftlibs/dxfImportObjects.py @@ -0,0 +1,1330 @@ +"""This module provides wrapper objects for dxf entities. + + The wrappers expect a "dxf object" as input. The dxf object is + an object with a type and a data attribute. Type is a lowercase + string matching the 0 code of a dxf entity. Data is a list containing + dxf objects or lists of [code, data] pairs. + + This module is not general, and is only for dxf import. +""" + +# -------------------------------------------------------------------------- +# DXF Import Objects v0.8 by Ed Blake (AKA Kitsu) +# -------------------------------------------------------------------------- +# ***** BEGIN GPL LICENSE BLOCK ***** +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# 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 General Public License for more details. +# +# You should have received a copy of the GNU 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. +# +# ***** END GPL LICENCE BLOCK ***** +# -------------------------------------------------------------------------- +from math import * + + +# from Stani's dxf writer v1.1 (c)www.stani.be (GPL) +#---color values +BYBLOCK=0 +BYLAYER=256 + +#---block-type flags (bit coded values, may be combined): +ANONYMOUS =1 # This is an anonymous block generated by hatching, associative dimensioning, other internal operations, or an application +NON_CONSTANT_ATTRIBUTES =2 # This block has non-constant attribute definitions (this bit is not set if the block has any attribute definitions that are constant, or has no attribute definitions at all) +XREF =4 # This block is an external reference (xref) +XREF_OVERLAY =8 # This block is an xref overlay +EXTERNAL =16 # This block is externally dependent +RESOLVED =32 # This is a resolved external reference, or dependent of an external reference (ignored on input) +REFERENCED =64 # This definition is a referenced external reference (ignored on input) + +#---mtext flags +#attachment point +TOP_LEFT = 1 +TOP_CENTER = 2 +TOP_RIGHT = 3 +MIDDLE_LEFT = 4 +MIDDLE_CENTER = 5 +MIDDLE_RIGHT = 6 +BOTTOM_LEFT = 7 +BOTTOM_CENTER = 8 +BOTTOM_RIGHT = 9 +#drawing direction +LEFT_RIGHT = 1 +TOP_BOTTOM = 3 +BY_STYLE = 5 #the flow direction is inherited from the associated text style +#line spacing style (optional): +AT_LEAST = 1 #taller characters will override +EXACT = 2 #taller characters will not override + +#---polyline flags +CLOSED =1 # This is a closed polyline (or a polygon mesh closed in the M direction) +CURVE_FIT =2 # Curve-fit vertices have been added +SPLINE_FIT =4 # Spline-fit vertices have been added +POLYLINE_3D =8 # This is a 3D polyline +POLYGON_MESH =16 # This is a 3D polygon mesh +CLOSED_N =32 # The polygon mesh is closed in the N direction +POLYFACE_MESH =64 # The polyline is a polyface mesh +CONTINOUS_LINETYPE_PATTERN =128 # The linetype pattern is generated continuously around the vertices of this polyline + +#---text flags +#horizontal +LEFT = 0 +CENTER = 1 +RIGHT = 2 +ALIGNED = 3 #if vertical alignment = 0 +MIDDLE = 4 #if vertical alignment = 0 +FIT = 5 #if vertical alignment = 0 +#vertical +BASELINE = 0 +BOTTOM = 1 +MIDDLE = 2 +TOP = 3 +class Object: + """Empty container class for dxf objects""" + + def __init__(self, _type=''): + """_type expects a string value.""" + self.type = _type + self.name = '' + self.data = [] + + def __str__(self): + if self.name: + return self.name + else: + return self.type + + def __repr__(self): + return str(self.data) + + def get_type(self, kind=''): + """Despite the name, this method actually returns all objects of type 'kind' from self.data.""" + if type: + objects = [] + for item in self.data: + if type(item) != list and item.type == kind: + # we want this type of object + objects.append(item) + elif type(item) == list and item[0] == kind: + # we want this type of data + objects.append(item[1]) + return objects + + +class Layer: + """Class for objects representing dxf layers.""" + + def __init__(self, obj): + """Expects an entity object of type line as input.""" + self.type = obj.type + self.data = obj.data[:] + + self.name = obj.get_type(2)[0] + self.color = obj.get_type(62)[0] + self.flags = obj.get_type(70)[0] + self.frozen = self.flags&1 + + + + def __repr__(self): + return "%s: name - %s, color - %s" %(self.__class__.__name__, self.name, self.color) + + + +class Line: + """Class for objects representing dxf lines.""" + + def __init__(self, obj): + """Expects an entity object of type line as input.""" + if not obj.type == 'line': + raise TypeError, "Wrong type %s for line object!" %obj.type + self.type = obj.type + self.data = obj.data[:] + + self.space = obj.get_type(67) + if self.space: + self.space = self.space[0] + else: + self.space = 0 + + self.color_index = obj.get_type(62) + if self.color_index: + self.color_index = self.color_index[0] + else: + self.color_index = BYLAYER + + discard, self.layer, discard_index = get_layer(obj.data) + del obj.data[discard_index] + + self.points = self.get_points(obj.data) + + + + + def get_points(self, data): + """Gets start and end points for a line type object. + + Lines have a fixed number of points (two) and fixed codes for each value. + """ + + # start x, y, z and end x, y, z = 0 + sx, sy, sz, ex, ey, ez = 0, 0, 0, 0, 0, 0 + for item in data: + if item[0] == 10: # 10 = x + sx = item[1] + elif item[0] == 20: # 20 = y + sy = item[1] + elif item[0] == 30: # 30 = z + sz = item[1] + elif item[0] == 11: # 11 = x + ex = item[1] + elif item[0] == 21: # 21 = y + ey = item[1] + elif item[0] == 31: # 31 = z + ez = item[1] + return [[sx, sy, sz], [ex, ey, ez]] + + + + def __repr__(self): + return "%s: layer - %s, points - %s" %(self.__class__.__name__, self.layer, self.points) + + + +class LWpolyline: + """Class for objects representing dxf LWpolylines.""" + + def __init__(self, obj): + """Expects an entity object of type lwpolyline as input.""" + if not obj.type == 'lwpolyline': + raise TypeError, "Wrong type %s for polyline object!" %obj.type + self.type = obj.type + self.data = obj.data[:] + + # required data + self.num_points = obj.get_type(90)[0] + + # optional data (with defaults) + self.space = obj.get_type(67) + if self.space: + self.space = self.space[0] + else: + self.space = 0 + + self.color_index = obj.get_type(62) + if self.color_index: + self.color_index = self.color_index[0] + else: + self.color_index = BYLAYER + + self.elevation = obj.get_type(38) + if self.elevation: + self.elevation = self.elevation[0] + else: + self.elevation = 0 + + self.flags = obj.get_type(70) + if self.flags: + self.flags = self.flags[0] + else: + self.flags = 0 + + self.closed = self.flags&1 # byte coded, 1 = closed, 128 = plinegen + discard, self.layer, discard_index = get_layer(obj.data) + del obj.data[discard_index] + self.points = self.get_points(obj.data) + self.extrusion = self.get_extrusion(obj.data) + + + + + + + def get_points(self, data): + """Gets points for a polyline type object. + + Polylines have no fixed number of verts, and + each vert can have a number of properties. + Verts should be coded as + 10:xvalue + 20:yvalue + 40:startwidth or 0 + 41:endwidth or 0 + 42:bulge or 0 + for each vert + """ + num = self.num_points + point = None + points = [] + for item in data: + if item[0] == 10: # 10 = x + if point: + points.append(point) + point = Vertex() + point.x = item[1] + elif item[0] == 20: # 20 = y + point.y = item[1] + elif item[0] == 40: # 40 = start width + point.swidth = item[1] + elif item[0] == 41: # 41 = end width + point.ewidth = item[1] + elif item[0] == 42: # 42 = bulge + point.bulge = item[1] + points.append(point) + return points + + + def get_extrusion(self, data): + """Find the axis of extrusion. + + Used to get the objects Object Coordinate System (ocs). + """ + vec = [0,0,1] + for item in data: + if item[0] == 210: # 210 = x + vec[0] = item[1] + elif item[0] == 220: # 220 = y + vec[1] = item[1] + elif item[0] == 230: # 230 = z + vec[2] = item[1] + return vec + + + def __repr__(self): + return "%s: layer - %s, points - %s" %(self.__class__.__name__, self.layer, self.points) + + + +class Polyline: + """Class for objects representing dxf LWpolylines.""" + + def __init__(self, obj): + """Expects an entity object of type polyline as input.""" + if not obj.type == 'polyline': + raise TypeError, "Wrong type %s for polyline object!" %obj.type + self.type = obj.type + self.data = obj.data[:] + self.points = [] + + # optional data (with defaults) + self.space = obj.get_type(67) + if self.space: + self.space = self.space[0] + else: + self.space = 0 + + self.color_index = obj.get_type(62) + if self.color_index: + self.color_index = self.color_index[0] + else: + self.color_index = BYLAYER + + self.elevation = obj.get_type(30) + if self.elevation: + self.elevation = self.elevation[0] + else: + self.elevation = 0 + + self.flags = obj.get_type(70) + if self.flags: + self.flags = self.flags[0] + else: + self.flags = 0 + + self.closed = self.flags&1 # byte coded, 1 = closed, 128 = plinegen + + discard, self.layer, discard_index = get_layer(obj.data) + del obj.data[discard_index] + self.extrusion = self.get_extrusion(obj.data) + + + + + + def get_extrusion(self, data): + """Find the axis of extrusion. + + Used to get the objects Object Coordinate System (ocs). + """ + vec = [0,0,1] + for item in data: + if item[0] == 210: # 210 = x + vec[0] = item[1] + elif item[0] == 220: # 220 = y + vec[1] = item[1] + elif item[0] == 230: # 230 = z + vec[2] = item[1] + return vec + + + def __repr__(self): + return "%s: layer - %s, points - %s" %(self.__class__.__name__, self.layer, self.points) + + + +class Vertex(object): + """Generic vertex object used by polylines (and maybe others).""" + + def __init__(self, obj=None): + """Initializes vertex data. + + The optional obj arg is an entity object of type vertex. + """ + self.loc = [0,0,0] + self.bulge = 0 + self.swidth = 0 + self.ewidth = 0 + self.flags = 0 + + if obj is not None: + if not obj.type == 'vertex': + raise TypeError, "Wrong type %s for vertex object!" %obj.type + self.type = obj.type + self.data = obj.data[:] + + self.get_props(obj.data) + + + def get_props(self, data): + """Gets coords for a vertex type object. + + Each vert can have a number of properties. + Verts should be coded as + 10:xvalue + 20:yvalue + 40:startwidth or 0 + 41:endwidth or 0 + 42:bulge or 0 + """ + for item in data: + if item[0] == 10: # 10 = x + self.x = item[1] + elif item[0] == 20: # 20 = y + self.y = item[1] + elif item[0] == 30: # 30 = z + self.z = item[1] + elif item[0] == 40: # 40 = start width + self.swidth = item[1] + elif item[0] == 41: # 41 = end width + self.ewidth = item[1] + elif item[0] == 42: # 42 = bulge + self.bulge = item[1] + elif item[0] == 70: # 70 = vert flags + self.flags = item[1] + + + def __len__(self): + return 3 + + + def __getitem__(self, key): + return self.loc[key] + + + def __setitem__(self, key, value): + if key in [0,1,2]: + self.loc[key] + + + def __iter__(self): + return self.loc.__iter__() + + + def __str__(self): + return str(self.loc) + + + def __repr__(self): + return "Vertex %s, swidth=%s, ewidth=%s, bulge=%s" %(self.loc, self.swidth, self.ewidth, self.bulge) + + + def getx(self): + return self.loc[0] + + def setx(self, value): + self.loc[0] = value + + x = property(getx, setx) + + + def gety(self): + return self.loc[1] + + def sety(self, value): + self.loc[1] = value + + y = property(gety, sety) + + + def getz(self): + return self.loc[2] + + def setz(self, value): + self.loc[2] = value + + z = property(getz, setz) + + + +class Text: + """Class for objects representing dxf Text.""" + + def __init__(self, obj): + """Expects an entity object of type text as input.""" + if not obj.type == 'text': + raise TypeError, "Wrong type %s for text object!" %obj.type + self.type = obj.type + self.data = obj.data[:] + + # required data + self.height = obj.get_type(40)[0] + self.value = obj.get_type(1)[0] # The text string value + + # optional data (with defaults) + self.space = obj.get_type(67) + if self.space: + self.space = self.space[0] + else: + self.space = 0 + + self.color_index = obj.get_type(62) + if self.color_index: + self.color_index = self.color_index[0] + else: + self.color_index = BYLAYER + + self.rotation = obj.get_type(50) # radians? + if not self.rotation: + self.rotation = 0 + else: + self.rotation = self.rotation[0] + + self.width_factor = obj.get_type(41) # Scaling factor along local x axis + if not self.width_factor: + self.width_factor = 1 + else: + self.width_factor = self.width_factor[0] + + self.oblique = obj.get_type(51) # skew in degrees -90 <= oblique <= 90 + if not self.oblique: + self.oblique = 0 + else: + self.oblique = self.oblique[0] + + self.halignment = obj.get_type(72) # horiz. alignment + if not self.halignment: # 0=left, 1=center, 2=right, 3=aligned, 4=middle, 5=fit + self.halignment = 0 + else: + self.halignment = self.halignment[0] + + self.valignment = obj.get_type(73) # vert. alignment + if not self.valignment: # 0=baseline, 1=bottom, 2=middle, 3=top + self.valignment = 0 + else: + self.valignment = self.valignment[0] + + discard, self.layer, discard_index = get_layer(obj.data) + del obj.data[discard_index] + self.loc = self.get_loc(obj.data, self.halignment, self.valignment) + self.extrusion = self.get_extrusion(obj.data) + + + + + def get_loc(self, data, halign, valign): + """Gets adjusted location for text type objects. + + If group 72 and/or 73 values are nonzero then the first alignment point values + are ignored and AutoCAD calculates new values based on the second alignment + point and the length and height of the text string itself (after applying the + text style). If the 72 and 73 values are zero or missing, then the second + alignment point is meaningless. + + I don't know how to calc text size... + """ + # bottom left x, y, z and justification x, y, z = 0 + x, y, z, jx, jy, jz = 0, 0, 0, 0, 0, 0 + for item in data: + if item[0] == 10: # 10 = x + x = item[1] + elif item[0] == 20: # 20 = y + y = item[1] + elif item[0] == 30: # 30 = z + z = item[1] + elif item[0] == 11: # 11 = x + jx = item[1] + elif item[0] == 21: # 21 = y + jy = item[1] + elif item[0] == 31: # 31 = z + jz = item[1] + + if halign or valign: + x, y, z = jx, jy, jz + return [x, y, z] + + def get_extrusion(self, data): + """Find the axis of extrusion. + + Used to get the objects Object Coordinate System (ocs). + """ + vec = [0,0,1] + for item in data: + if item[0] == 210: # 210 = x + vec[0] = item[1] + elif item[0] == 220: # 220 = y + vec[1] = item[1] + elif item[0] == 230: # 230 = z + vec[2] = item[1] + return vec + + + def __repr__(self): + return "%s: layer - %s, value - %s" %(self.__class__.__name__, self.layer, self.value) + + + +class Mtext: + """Class for objects representing dxf Mtext.""" + + def __init__(self, obj): + """Expects an entity object of type mtext as input.""" + if not obj.type == 'mtext': + raise TypeError, "Wrong type %s for mtext object!" %obj.type + self.type = obj.type + self.data = obj.data[:] + + # required data + self.height = obj.get_type(40)[0] + self.width = obj.get_type(41)[0] + self.alignment = obj.get_type(71)[0] # alignment 1=TL, 2=TC, 3=TR, 4=ML, 5=MC, 6=MR, 7=BL, 8=BC, 9=BR + self.value = self.get_text(obj.data) # The text string value + + # optional data (with defaults) + self.space = obj.get_type(67) + if self.space: + self.space = self.space[0] + else: + self.space = 0 + + self.color_index = obj.get_type(62) + if self.color_index: + self.color_index = self.color_index[0] + else: + self.color_index = BYLAYER + + self.rotation = obj.get_type(50) # radians + if not self.rotation: + self.rotation = 0 + else: + self.rotation = self.rotation[0] + + self.width_factor = obj.get_type(42) # Scaling factor along local x axis + if not self.width_factor: + self.width_factor = 1 + else: + self.width_factor = self.width_factor[0] + + self.line_space = obj.get_type(44) # percentage of default + if not self.line_space: + self.line_space = 1 + else: + self.line_space = self.line_space[0] + + discard, self.layer, discard_index = get_layer(obj.data) + del obj.data[discard_index] + self.loc = self.get_loc(obj.data) + self.extrusion = self.get_extrusion(obj.data) + + + + + + def get_text(self, data): + """Reconstructs mtext data from dxf codes.""" + primary = '' + secondary = [] + for item in data: + if item[0] == 1: # There should be only one primary... + primary = item[1] + elif item[0] == 3: # There may be any number of extra strings (in order) + secondary.append(item[1]) + if not primary: + #raise ValueError, "Empty Mtext Object!" + string = "Empty Mtext Object!" + if not secondary: + string = primary.replace(r'\P', '\n') + else: + string = ''.join(secondary)+primary + string = string.replace(r'\P', '\n') + return string + def get_loc(self, data): + """Gets location for a mtext type objects. + + Mtext objects have only one point indicating location. + """ + loc = [0,0,0] + for item in data: + if item[0] == 10: # 10 = x + loc[0] = item[1] + elif item[0] == 20: # 20 = y + loc[1] = item[1] + elif item[0] == 30: # 30 = z + loc[2] = item[1] + return loc + + + + + def get_extrusion(self, data): + """Find the axis of extrusion. + + Used to get the objects Object Coordinate System (ocs). + """ + vec = [0,0,1] + for item in data: + if item[0] == 210: # 210 = x + vec[0] = item[1] + elif item[0] == 220: # 220 = y + vec[1] = item[1] + elif item[0] == 230: # 230 = z + vec[2] = item[1] + return vec + + + def __repr__(self): + return "%s: layer - %s, value - %s" %(self.__class__.__name__, self.layer, self.value) + + + +class Circle: + """Class for objects representing dxf Circles.""" + + def __init__(self, obj): + """Expects an entity object of type circle as input.""" + if not obj.type == 'circle': + raise TypeError, "Wrong type %s for circle object!" %obj.type + self.type = obj.type + self.data = obj.data[:] + + # required data + self.radius = obj.get_type(40)[0] + + # optional data (with defaults) + self.space = obj.get_type(67) + if self.space: + self.space = self.space[0] + else: + self.space = 0 + + self.color_index = obj.get_type(62) + if self.color_index: + self.color_index = self.color_index[0] + else: + self.color_index = BYLAYER + + discard, self.layer, discard_index = get_layer(obj.data) + del obj.data[discard_index] + self.loc = self.get_loc(obj.data) + self.extrusion = self.get_extrusion(obj.data) + + + + + + def get_loc(self, data): + """Gets the center location for circle type objects. + + Circles have a single coord location. + """ + loc = [0, 0, 0] + for item in data: + if item[0] == 10: # 10 = x + loc[0] = item[1] + elif item[0] == 20: # 20 = y + loc[1] = item[1] + elif item[0] == 30: # 30 = z + loc[2] = item[1] + return loc + + + + def get_extrusion(self, data): + """Find the axis of extrusion. + + Used to get the objects Object Coordinate System (ocs). + """ + vec = [0,0,1] + for item in data: + if item[0] == 210: # 210 = x + vec[0] = item[1] + elif item[0] == 220: # 220 = y + vec[1] = item[1] + elif item[0] == 230: # 230 = z + vec[2] = item[1] + return vec + + + def __repr__(self): + return "%s: layer - %s, radius - %s" %(self.__class__.__name__, self.layer, self.radius) + + + +class Arc: + """Class for objects representing dxf arcs.""" + + def __init__(self, obj): + """Expects an entity object of type arc as input.""" + if not obj.type == 'arc': + raise TypeError, "Wrong type %s for arc object!" %obj.type + self.type = obj.type + self.data = obj.data[:] + + # required data + self.radius = obj.get_type(40)[0] + self.start_angle = obj.get_type(50)[0] + self.end_angle = obj.get_type(51)[0] + + # optional data (with defaults) + self.space = obj.get_type(67) + if self.space: + self.space = self.space[0] + else: + self.space = 0 + + self.color_index = obj.get_type(62) + if self.color_index: + self.color_index = self.color_index[0] + else: + self.color_index = BYLAYER + + discard, self.layer, discard_index = get_layer(obj.data) + del obj.data[discard_index] + self.loc = self.get_loc(obj.data) + self.extrusion = self.get_extrusion(obj.data) + + + + + + def get_loc(self, data): + """Gets the center location for arc type objects. + + Arcs have a single coord location. + """ + loc = [0, 0, 0] + for item in data: + if item[0] == 10: # 10 = x + loc[0] = item[1] + elif item[0] == 20: # 20 = y + loc[1] = item[1] + elif item[0] == 30: # 30 = z + loc[2] = item[1] + return loc + + + + def get_extrusion(self, data): + """Find the axis of extrusion. + + Used to get the objects Object Coordinate System (ocs). + """ + vec = [0,0,1] + for item in data: + if item[0] == 210: # 210 = x + vec[0] = item[1] + elif item[0] == 220: # 220 = y + vec[1] = item[1] + elif item[0] == 230: # 230 = z + vec[2] = item[1] + return vec + + + def __repr__(self): + return "%s: layer - %s, radius - %s" %(self.__class__.__name__, self.layer, self.radius) + + + +class BlockRecord: + """Class for objects representing dxf block_records.""" + + def __init__(self, obj): + """Expects an entity object of type block_record as input.""" + if not obj.type == 'block_record': + raise TypeError, "Wrong type %s for block_record object!" %obj.type + self.type = obj.type + self.data = obj.data[:] + + # required data + self.name = obj.get_type(2)[0] + + # optional data (with defaults) + self.insertion_units = obj.get_type(70) + if not self.insertion_units: + self.insertion_units = None + else: + self.insertion_units = self.insertion_units[0] + + self.insert_units = obj.get_type(1070) + if not self.insert_units: + self.insert_units = None + else: + self.insert_units = self.insert_units[0] + + + + + + + def __repr__(self): + return "%s: name - %s, insert units - %s" %(self.__class__.__name__, self.name, self.insertion_units) + + + + +class Block: + """Class for objects representing dxf blocks.""" + + def __init__(self, obj): + """Expects an entity object of type block as input.""" + if not obj.type == 'block': + raise TypeError, "Wrong type %s for block object!" %obj.type + self.type = obj.type + self.data = obj.data[:] + + # required data + self.flags = obj.get_type(70)[0] + self.entities = Object('block_contents') + self.entities.data = objectify([ent for ent in obj.data if type(ent) != list]) + + # optional data (with defaults) + self.name = obj.get_type(3) + if self.name: + self.name = self.name[0] + else: + self.name = obj.get_type(2) + if self.name: + self.name = self.name[0] + else: + self.name = 'blank' + + self.path = obj.get_type(1) + if self.path: + self.path = self.path[0] + else: + self.path = '' + + self.discription = obj.get_type(4) + if self.discription: + self.discription = self.discription[0] + else: + self.discription = '' + + discard, self.layer, discard_index = get_layer(obj.data) + del obj.data[discard_index] + self.loc = self.get_loc(obj.data) + + + + + + def get_loc(self, data): + """Gets the insert point of the block.""" + loc = [0, 0, 0] + for item in data: + if type(item) != list: + continue + if item[0] == 10: # 10 = x + loc[0] = item[1] + elif item[0] == 20: # 20 = y + loc[1] = item[1] + elif item[0] == 30: # 30 = z + loc[2] = item[1] + return loc + + + + def __repr__(self): + return "%s: name - %s, description - %s, xref-path - %s" %(self.__class__.__name__, self.name, self.discription, self.path) + + + + +class Insert: + """Class for objects representing dxf inserts.""" + + def __init__(self, obj): + """Expects an entity object of type insert as input.""" + if not obj.type == 'insert': + raise TypeError, "Wrong type %s for insert object!" %obj.type + self.type = obj.type + self.data = obj.data[:] + + # required data + self.block = obj.get_type(2)[0] + + # optional data (with defaults) + self.rotation = obj.get_type(50) + if self.rotation: + self.rotation = self.rotation[0] + else: + self.rotation = 0 + + self.space = obj.get_type(67) + if self.space: + self.space = self.space[0] + else: + self.space = 0 + + self.color_index = obj.get_type(62) + if self.color_index: + self.color_index = self.color_index[0] + else: + self.color_index = BYLAYER + + discard, self.layer, discard_index = get_layer(obj.data) + del obj.data[discard_index] + self.loc = self.get_loc(obj.data) + self.scale = self.get_scale(obj.data) + self.rows, self.columns = self.get_array(obj.data) + self.extrusion = self.get_extrusion(obj.data) + + + + + + def get_loc(self, data): + """Gets the center location for circle type objects. + + Circles have a single coord location. + """ + loc = [0, 0, 0] + for item in data: + if item[0] == 10: # 10 = x + loc[0] = item[1] + elif item[0] == 20: # 20 = y + loc[1] = item[1] + elif item[0] == 30: # 30 = z + loc[2] = item[1] + return loc + + + + def get_scale(self, data): + """Gets the x/y/z scale factor for the block. + """ + scale = [1, 1, 1] + for item in data: + if item[0] == 41: # 41 = x scale + scale[0] = item[1] + elif item[0] == 42: # 42 = y scale + scale[1] = item[1] + elif item[0] == 43: # 43 = z scale + scale[2] = item[1] + return scale + + + + def get_array(self, data): + """Returns the pair (row number, row spacing), (column number, column spacing).""" + columns = 1 + rows = 1 + cspace = 0 + rspace = 0 + for item in data: + if item[0] == 70: # 70 = columns + columns = item[1] + elif item[0] == 71: # 71 = rows + rows = item[1] + if item[0] == 44: # 44 = columns + cspace = item[1] + elif item[0] == 45: # 45 = rows + rspace = item[1] + return (rows, rspace), (columns, cspace) + + + + def get_extrusion(self, data): + """Find the axis of extrusion. + + Used to get the objects Object Coordinate System (ocs). + """ + vec = [0,0,1] + for item in data: + if item[0] == 210: # 210 = x + vec[0] = item[1] + elif item[0] == 220: # 220 = y + vec[1] = item[1] + elif item[0] == 230: # 230 = z + vec[2] = item[1] + return vec + + + def __repr__(self): + return "%s: layer - %s, block - %s" %(self.__class__.__name__, self.layer, self.block) + + + + +class Ellipse: + """Class for objects representing dxf ellipses.""" + + def __init__(self, obj): + """Expects an entity object of type ellipse as input.""" + if not obj.type == 'ellipse': + raise TypeError, "Wrong type %s for ellipse object!" %obj.type + self.type = obj.type + self.data = obj.data[:] + + # required data + self.ratio = obj.get_type(40)[0] + self.start_angle = obj.get_type(41)[0] + self.end_angle = obj.get_type(42)[0] + + # optional data (with defaults) + self.space = obj.get_type(67) + if self.space: + self.space = self.space[0] + else: + self.space = 0 + + self.color_index = obj.get_type(62) + if self.color_index: + self.color_index = self.color_index[0] + else: + self.color_index = BYLAYER + + discard, self.layer, discard_index = get_layer(obj.data) + del obj.data[discard_index] + self.loc = self.get_loc(obj.data) + self.major = self.get_major(obj.data) + self.extrusion = self.get_extrusion(obj.data) + self.radius = sqrt(self.major[0]**2 + self.major[0]**2 + self.major[0]**2) + + + + + def get_loc(self, data): + """Gets the center location for arc type objects. + + Arcs have a single coord location. + """ + loc = [0, 0, 0] + for item in data: + if item[0] == 10: # 10 = x + loc[0] = item[1] + elif item[0] == 20: # 20 = y + loc[1] = item[1] + elif item[0] == 30: # 30 = z + loc[2] = item[1] + return loc + + + + def get_major(self, data): + """Gets the major axis for ellipse type objects. + + The ellipse major axis defines the rotation of the ellipse and its radius. + """ + loc = [0, 0, 0] + for item in data: + if item[0] == 11: # 11 = x + loc[0] = item[1] + elif item[0] == 21: # 21 = y + loc[1] = item[1] + elif item[0] == 31: # 31 = z + loc[2] = item[1] + return loc + + + + def get_extrusion(self, data): + """Find the axis of extrusion. + + Used to get the objects Object Coordinate System (ocs). + """ + vec = [0,0,1] + for item in data: + if item[0] == 210: # 210 = x + vec[0] = item[1] + elif item[0] == 220: # 220 = y + vec[1] = item[1] + elif item[0] == 230: # 230 = z + vec[2] = item[1] + return vec + + + def __repr__(self): + return "%s: layer - %s, radius - %s" %(self.__class__.__name__, self.layer, self.radius) + + + +class Face: + """Class for objects representing dxf 3d faces.""" + + def __init__(self, obj): + """Expects an entity object of type 3dfaceplot as input.""" + if not obj.type == '3dface': + raise TypeError, "Wrong type %s for 3dface object!" %obj.type + self.type = obj.type + self.data = obj.data[:] + + # optional data (with defaults) + self.space = obj.get_type(67) + if self.space: + self.space = self.space[0] + else: + self.space = 0 + + self.color_index = obj.get_type(62) + if self.color_index: + self.color_index = self.color_index[0] + else: + self.color_index = BYLAYER + + discard, self.layer, discard_index = get_layer(obj.data) + del obj.data[discard_index] + self.points = self.get_points(obj.data) + + + + + def get_points(self, data): + """Gets 3-4 points for a 3d face type object. + + Faces have three or optionally four verts. + """ + + a = [0, 0, 0] + b = [0, 0, 0] + c = [0, 0, 0] + d = False + for item in data: + # ----------- a ------------- + if item[0] == 10: # 10 = x + a[0] = item[1] + elif item[0] == 20: # 20 = y + a[1] = item[1] + elif item[0] == 30: # 30 = z + a[2] = item[1] + # ----------- b ------------- + elif item[0] == 11: # 11 = x + b[0] = item[1] + elif item[0] == 21: # 21 = y + b[1] = item[1] + elif item[0] == 31: # 31 = z + b[2] = item[1] + # ----------- c ------------- + elif item[0] == 12: # 12 = x + c[0] = item[1] + elif item[0] == 22: # 22 = y + c[1] = item[1] + elif item[0] == 32: # 32 = z + c[2] = item[1] + # ----------- d ------------- + elif item[0] == 13: # 13 = x + d = [0, 0, 0] + d[0] = item[1] + elif item[0] == 23: # 23 = y + d[1] = item[1] + elif item[0] == 33: # 33 = z + d[2] = item[1] + out = [a,b,c] + if d: + out.append(d) + return out + + + def __repr__(self): + return "%s: layer - %s, points - %s" %(self.__class__.__name__, self.layer, self.points) + + +def get_name(data): + """Get the name of an object from its object data. + + Returns a pair of (data_item, name) where data_item is the list entry where the name was found + (the data_item can be used to remove the entry from the object data). Be sure to check + name not None before using the returned values! + """ + value = None + for i, item in enumerate(data): + if item[0] == 2: + value = item[1] + break + return item, value, i + +def get_layer(data): + """Expects object data as input. + + Returns (entry, layer_name, entry_index) where entry is the data item that provided the layer name. + """ + value = None + for i, item in enumerate(data): + if item[0] == 8: + value = item[1] + break + return item, value, i + + +# type to object map +type_map = { + 'line':Line, + 'lwpolyline':LWpolyline, + 'text':Text, + 'mtext':Mtext, + 'circle':Circle, + 'arc':Arc, + 'layer':Layer, + 'block_record':BlockRecord, + 'block':Block, + 'insert':Insert, + 'ellipse':Ellipse, + '3dface':Face +} + +def objectify(data): + """Expects a section type object's data as input. + + Maps object data to the correct object type. + """ + objects = [] # colector for finished objects + known_types = type_map.keys() # so we don't have to call foo.keys() every iteration + index = 0 + while index < len(data): + item = data[index] + if type(item) != list and item.type in known_types: + # proccess the object and append the resulting object + objects.append(type_map[item.type](item)) + elif type(item) != list and item.type == 'table': + item.data = objectify(item.data) # tables have sub-objects + objects.append(item) + elif type(item) != list and item.type == 'polyline': + pline = Polyline(item) + while 1: + index += 1 + item = data[index] + if item.type == 'vertex': + v = Vertex(item) + pline.points.append(v) + elif item.type == 'seqend': + break + else: + print "Error: non-vertex found before seqend!" + index -= 1 + break + objects.append(pline) + else: + # we will just let the data pass un-harrased + objects.append(item) + index += 1 + return objects +if __name__ == "__main__": + print "No example yet!" diff --git a/src/Mod/DDA/draftlibs/dxfLibrary.py b/src/Mod/DDA/draftlibs/dxfLibrary.py new file mode 100644 index 000000000000..05a6e4f03cc9 --- /dev/null +++ b/src/Mod/DDA/draftlibs/dxfLibrary.py @@ -0,0 +1,896 @@ +#dxfLibrary.py : provides functions for generating DXF files +# -------------------------------------------------------------------------- +__version__ = "v1.33 - 2009.06.16" +__author__ = "Stani Michiels(Stani), Remigiusz Fiedler(migius)" +__license__ = "GPL" +__url__ = "http://wiki.blender.org/index.php/Scripts/Manual/Export/autodesk_dxf" +__bpydoc__ ="""The library to export geometry data to DXF format r12 version. + +Copyright %s +Version %s +License %s +Homepage %s + +See the homepage for documentation. +Dedicated thread on BlenderArtists: http://blenderartists.org/forum/showthread.php?t=136439 + +IDEAs: +- + +TODO: +- add support for DXFr14 (needs extended file header) +- add support for SPLINEs (possible first in DXFr14 version) +- add user preset for floating point precision (3-16?) + +History +v1.33 - 2009.06.16 by migius + - modif _point(): converts all coords to floats + - modif LineType class: implement elements + - added VPORT class, incl. defaults + - fix Insert class +v1.32 - 2009.06.06 by migius + - modif Style class: changed defaults to widthFactor=1.0, obliqueAngle=0.0 + - modif Text class: alignment parameter reactivated +v1.31 - 2009.06.02 by migius + - modif _Entity class: added paperspace,elevation +v1.30 - 2009.05.28 by migius + - bugfix 3dPOLYLINE/POLYFACE: VERTEX needs x,y,z coordinates, index starts with 1 not 0 +v1.29 - 2008.12.28 by Yorik + - modif POLYLINE to support bulge segments +v1.28 - 2008.12.13 by Steeve/BlenderArtists + - bugfix for EXTMIN/EXTMAX to suit Cycas-CAD +v1.27 - 2008.10.07 by migius + - beautifying output code: keys whitespace prefix + - refactoring DXF-strings format: NewLine moved to the end of +v1.26 - 2008.10.05 by migius + - modif POLYLINE to support POLYFACE +v1.25 - 2008.09.28 by migius + - modif FACE class for r12 +v1.24 - 2008.09.27 by migius + - modif POLYLINE class for r12 + - changing output format from r9 to r12(AC1009) +v1.1 (20/6/2005) by www.stani.be/python/sdxf + - Python library to generate dxf drawings +______________________________________________________________ +""" % (__author__,__version__,__license__,__url__) + +# -------------------------------------------------------------------------- +# DXF Library: copyright (C) 2005 by Stani Michiels (AKA Stani) +# 2008/2009 modif by Remigiusz Fiedler (AKA migius) +# -------------------------------------------------------------------------- +# ***** BEGIN GPL LICENSE BLOCK ***** +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# 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 General Public License for more details. +# +# You should have received a copy of the GNU 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. +# +# ***** END GPL LICENCE BLOCK ***** + + +#import Blender +#from Blender import Mathutils, Window, Scene, sys, Draw +#import BPyMessages + +try: + import copy + #from struct import pack +except: + copy = None + +####1) Private (only for developpers) +_HEADER_POINTS=['insbase','extmin','extmax'] + +#---helper functions----------------------------------- +def _point(x,index=0): + """Convert tuple to a dxf point""" + #print 'deb: _point=', x #------------- + return '\n'.join([' %s\n%s'%((i+1)*10+index,float(x[i])) for i in range(len(x))]) + +def _points(plist): + """Convert a list of tuples to dxf points""" + out = '\n'.join([_point(plist[i],i)for i in range(len(plist))]) + return out + +#---base classes---------------------------------------- +class _Call: + """Makes a callable class.""" + def copy(self): + """Returns a copy.""" + return copy.deepcopy(self) + + def __call__(self,**attrs): + """Returns a copy with modified attributes.""" + copied=self.copy() + for attr in attrs:setattr(copied,attr,attrs[attr]) + return copied + +#------------------------------------------------------- +class _Entity(_Call): + """Base class for _common group codes for entities.""" + def __init__(self,paperspace=None,color=None,layer='0', + lineType=None,lineTypeScale=None,lineWeight=None, + extrusion=None,elevation=None,thickness=None, + parent=None): + """None values will be omitted.""" + self.paperspace = paperspace + self.color = color + self.layer = layer + self.lineType = lineType + self.lineTypeScale = lineTypeScale + self.lineWeight = lineWeight + self.extrusion = extrusion + self.elevation = elevation + self.thickness = thickness + #self.visible = visible + self.parent = parent + + def _common(self): + """Return common group codes as a string.""" + if self.parent:parent=self.parent + else:parent=self + result ='' + if parent.paperspace==1: result+=' 67\n1\n' + if parent.layer!=None: result+=' 8\n%s\n'%parent.layer + if parent.color!=None: result+=' 62\n%s\n'%parent.color + if parent.lineType!=None: result+=' 6\n%s\n'%parent.lineType + # TODO: if parent.lineWeight!=None: result+='370\n%s\n'%parent.lineWeight + # TODO: if parent.visible!=None: result+='60\n%s\n'%parent.visible + if parent.lineTypeScale!=None: result+=' 48\n%s\n'%parent.lineTypeScale + if parent.elevation!=None: result+=' 38\n%s\n'%parent.elevation + if parent.thickness!=None: result+=' 39\n%s\n'%parent.thickness + if parent.extrusion!=None: result+='%s\n'%_point(parent.extrusion,200) + return result + +#-------------------------- +class _Entities: + """Base class to deal with composed objects.""" + def __dxf__(self): + return [] + + def __str__(self): + return ''.join([str(x) for x in self.__dxf__()]) + +#-------------------------- +class _Collection(_Call): + """Base class to expose entities methods to main object.""" + def __init__(self,entities=[]): + self.entities=copy.copy(entities) + #link entities methods to drawing + for attr in dir(self.entities): + if attr[0]!='_': + attrObject=getattr(self.entities,attr) + if callable(attrObject): + setattr(self,attr,attrObject) + +####2) Constants +#---color values +BYBLOCK=0 +BYLAYER=256 + +#---block-type flags (bit coded values, may be combined): +ANONYMOUS =1 # This is an anonymous block generated by hatching, associative dimensioning, other internal operations, or an application +NON_CONSTANT_ATTRIBUTES =2 # This block has non-constant attribute definitions (this bit is not set if the block has any attribute definitions that are constant, or has no attribute definitions at all) +XREF =4 # This block is an external reference (xref) +XREF_OVERLAY =8 # This block is an xref overlay +EXTERNAL =16 # This block is externally dependent +RESOLVED =32 # This is a resolved external reference, or dependent of an external reference (ignored on input) +REFERENCED =64 # This definition is a referenced external reference (ignored on input) + +#---mtext flags +#attachment point +TOP_LEFT = 1 +TOP_CENTER = 2 +TOP_RIGHT = 3 +MIDDLE_LEFT = 4 +MIDDLE_CENTER = 5 +MIDDLE_RIGHT = 6 +BOTTOM_LEFT = 7 +BOTTOM_CENTER = 8 +BOTTOM_RIGHT = 9 +#drawing direction +LEFT_RIGHT = 1 +TOP_BOTTOM = 3 +BY_STYLE = 5 #the flow direction is inherited from the associated text style +#line spacing style (optional): +AT_LEAST = 1 #taller characters will override +EXACT = 2 #taller characters will not override + +#---polyline flags +CLOSED =1 # This is a closed polyline (or a polygon mesh closed in the M direction) +CURVE_FIT =2 # Curve-fit vertices have been added +SPLINE_FIT =4 # Spline-fit vertices have been added +POLYLINE_3D =8 # This is a 3D polyline +POLYGON_MESH =16 # This is a 3D polygon mesh +CLOSED_N =32 # The polygon mesh is closed in the N direction +POLYFACE_MESH =64 # The polyline is a polyface mesh +CONTINOUS_LINETYPE_PATTERN =128 # The linetype pattern is generated continuously around the vertices of this polyline + +#---text flags +#horizontal +LEFT = 0 +CENTER = 1 +RIGHT = 2 +ALIGNED = 3 #if vertical alignment = 0 +MIDDLE = 4 #if vertical alignment = 0 +FIT = 5 #if vertical alignment = 0 +#vertical +BASELINE = 0 +BOTTOM = 1 +MIDDLE = 2 +TOP = 3 + +####3) Classes +#---entitities ----------------------------------------------- +#-------------------------- +class Arc(_Entity): + """Arc, angles in degrees.""" + def __init__(self,center=(0,0,0),radius=1, + startAngle=0.0,endAngle=90,**common): + """Angles in degrees.""" + _Entity.__init__(self,**common) + self.center=center + self.radius=radius + self.startAngle=startAngle + self.endAngle=endAngle + def __str__(self): + return ' 0\nARC\n%s%s\n 40\n%s\n 50\n%s\n 51\n%s\n'%\ + (self._common(),_point(self.center), + self.radius,self.startAngle,self.endAngle) + +#----------------------------------------------- +class Circle(_Entity): + """Circle""" + def __init__(self,center=(0,0,0),radius=1,**common): + _Entity.__init__(self,**common) + self.center=center + self.radius=radius + def __str__(self): + return ' 0\nCIRCLE\n%s%s\n 40\n%s\n'%\ + (self._common(),_point(self.center),self.radius) + +#----------------------------------------------- +class Face(_Entity): + """3dface""" + def __init__(self,points,**common): + _Entity.__init__(self,**common) + while len(points)<4: #fix for r12 format + points.append(points[-1]) + self.points=points + + def __str__(self): + out = ' 0\n3DFACE\n%s%s\n' %(self._common(),_points(self.points)) + #print 'deb:out=', out #------------------- + return out + +#----------------------------------------------- +class Insert(_Entity): + """Block instance.""" + def __init__(self,name,point=(0,0,0), + xscale=None,yscale=None,zscale=None, + cols=None,colspacing=None,rows=None,rowspacing=None, + rotation=None, + **common): + _Entity.__init__(self,**common) + self.name=name + self.point=point + self.xscale=xscale + self.yscale=yscale + self.zscale=zscale + self.cols=cols + self.colspacing=colspacing + self.rows=rows + self.rowspacing=rowspacing + self.rotation=rotation + + def __str__(self): + result=' 0\nINSERT\n 2\n%s\n%s%s\n'%\ + (self.name,self._common(),_point(self.point)) + if self.xscale!=None:result+=' 41\n%s\n'%self.xscale + if self.yscale!=None:result+=' 42\n%s\n'%self.yscale + if self.zscale!=None:result+=' 43\n%s\n'%self.zscale + if self.rotation:result+=' 50\n%s\n'%self.rotation + if self.cols!=None:result+=' 70\n%s\n'%self.cols + if self.colspacing!=None:result+=' 44\n%s\n'%self.colspacing + if self.rows!=None:result+=' 71\n%s\n'%self.rows + if self.rowspacing!=None:result+=' 45\n%s\n'%self.rowspacing + return result + +#----------------------------------------------- +class Line(_Entity): + """Line""" + def __init__(self,points,**common): + _Entity.__init__(self,**common) + self.points=points + def __str__(self): + return ' 0\nLINE\n%s%s\n' %( + self._common(), _points(self.points)) + + +#----------------------------------------------- +class PolyLine(_Entity): + def __init__(self,points,org_point=[0,0,0],flag=0,width=None,**common): + #width = number, or width = list [width_start=None, width_end=None] + #for 2d-polyline: points = [ [x, y, z, width_start=None, width_end=None, bulge=0 or None], ...] + #for 3d-polyline: points = [ [x, y, z], ...] + #for polyface: points = [points_list, faces_list] + _Entity.__init__(self,**common) + self.points=points + self.org_point=org_point + self.flag=flag + self.polyface = False + self.polyline2d = False + self.faces = [] # dummy value + self.width= None # dummy value + if self.flag & POLYFACE_MESH: + self.polyface=True + self.points=points[0] + self.faces=points[1] + self.p_count=len(self.points) + self.f_count=len(self.faces) + elif not self.flag & POLYLINE_3D: + self.polyline2d = True + if width: + if type(width)!='list': + width=[width,width] + self.width=width + + def __str__(self): + result= ' 0\nPOLYLINE\n%s 70\n%s\n' %(self._common(),self.flag) + result+=' 66\n1\n' + result+='%s\n' %_point(self.org_point) + if self.polyface: + result+=' 71\n%s\n' %self.p_count + result+=' 72\n%s\n' %self.f_count + elif self.polyline2d: + if self.width!=None: result+=' 40\n%s\n 41\n%s\n' %(self.width[0],self.width[1]) + for point in self.points: + result+=' 0\nVERTEX\n' + result+=' 8\n%s\n' %self.layer + if self.polyface: + result+='%s\n' %_point(point[0:3]) + result+=' 70\n192\n' + elif self.polyline2d: + result+='%s\n' %_point(point[0:2]) + if len(point)>4: + width1, width2 = point[3], point[4] + if width1!=None: result+=' 40\n%s\n' %width1 + if width2!=None: result+=' 41\n%s\n' %width2 + if len(point)==6: + bulge = point[5] + if bulge: result+=' 42\n%s\n' %bulge + else: + result+='%s\n' %_point(point[0:3]) + for face in self.faces: + result+=' 0\nVERTEX\n' + result+=' 8\n%s\n' %self.layer + result+='%s\n' %_point(self.org_point) + result+=' 70\n128\n' + result+=' 71\n%s\n' %face[0] + result+=' 72\n%s\n' %face[1] + result+=' 73\n%s\n' %face[2] + if len(face)==4: result+=' 74\n%s\n' %face[3] + result+=' 0\nSEQEND\n' + result+=' 8\n%s\n' %self.layer + return result + +#----------------------------------------------- +class Point(_Entity): + """Point.""" + def __init__(self,points=None,**common): + _Entity.__init__(self,**common) + self.points=points + def __str__(self): # TODO: + return ' 0\nPOINT\n%s%s\n' %(self._common(), + _points(self.points) + ) + +#----------------------------------------------- +class Solid(_Entity): + """Colored solid fill.""" + def __init__(self,points=None,**common): + _Entity.__init__(self,**common) + self.points=points + def __str__(self): + return ' 0\nSOLID\n%s%s\n' %(self._common(), + _points(self.points[:2]+[self.points[3],self.points[2]]) + ) + + +#----------------------------------------------- +class Dimension(_Entity): + """Basic dimension entity""" + def __init__(self,point,start,end,**common): + _Entity.__init__(self,**common) + self.points=[point,start,end] + def __str__(self): + result = ' 0\nDIMENSION\n%s' %(self._common()) + result+=' 3\nStandard\n' + result+=' 70\n1\n' + result+='%s\n' %_point(self.points[0]) + result+='%s\n' %_point(self.points[1],3) + result+='%s\n' %_point(self.points[2],4) + print result + return result + +#----------------------------------------------- +class Text(_Entity): + """Single text line.""" + def __init__(self,text='',point=(0,0,0),alignment=None, + flag=None,height=1,justifyhor=None,justifyver=None, + rotation=None,obliqueAngle=None,style=None,xscale=None,**common): + _Entity.__init__(self,**common) + self.text=text + self.point=point + self.alignment=alignment + self.flag=flag + self.height=height + self.justifyhor=justifyhor + self.justifyver=justifyver + self.rotation=rotation + self.obliqueAngle=obliqueAngle + self.style=style + self.xscale=xscale + def __str__(self): + result= ' 0\nTEXT\n%s%s\n 40\n%s\n 1\n%s\n'%\ + (self._common(),_point(self.point),self.height,self.text) + if self.rotation: result+=' 50\n%s\n'%self.rotation + if self.xscale: result+=' 41\n%s\n'%self.xscale + if self.obliqueAngle: result+=' 51\n%s\n'%self.obliqueAngle + if self.style: result+=' 7\n%s\n'%self.style + if self.flag: result+=' 71\n%s\n'%self.flag + if self.justifyhor: result+=' 72\n%s\n'%self.justifyhor + if self.alignment: result+='%s\n'%_point(self.alignment,1) + if self.justifyver: result+=' 73\n%s\n'%self.justifyver + return result + +#----------------------------------------------- +class Mtext(Text): + """Surrogate for mtext, generates some Text instances.""" + def __init__(self,text='',point=(0,0,0),width=250,spacingFactor=1.5,down=0,spacingWidth=None,**options): + Text.__init__(self,text=text,point=point,**options) + if down:spacingFactor*=-1 + self.spacingFactor=spacingFactor + self.spacingWidth=spacingWidth + self.width=width + self.down=down + def __str__(self): + texts=self.text.replace('\r\n','\n').split('\n') + if not self.down:texts.reverse() + result='' + x=y=0 + if self.spacingWidth:spacingWidth=self.spacingWidth + else:spacingWidth=self.height*self.spacingFactor + for text in texts: + while text: + result+='%s\n'%Text(text[:self.width], + point=(self.point[0]+x*spacingWidth, + self.point[1]+y*spacingWidth, + self.point[2]), + alignment=self.alignment,flag=self.flag,height=self.height, + justifyhor=self.justifyhor,justifyver=self.justifyver, + rotation=self.rotation,obliqueAngle=self.obliqueAngle, + style=self.style,xscale=self.xscale,parent=self + ) + text=text[self.width:] + if self.rotation:x+=1 + else:y+=1 + return result[1:] + +#----------------------------------------------- +##class _Mtext(_Entity): +## """Mtext not functioning for minimal dxf.""" +## def __init__(self,text='',point=(0,0,0),attachment=1, +## charWidth=None,charHeight=1,direction=1,height=100,rotation=0, +## spacingStyle=None,spacingFactor=None,style=None,width=100, +## xdirection=None,**common): +## _Entity.__init__(self,**common) +## self.text=text +## self.point=point +## self.attachment=attachment +## self.charWidth=charWidth +## self.charHeight=charHeight +## self.direction=direction +## self.height=height +## self.rotation=rotation +## self.spacingStyle=spacingStyle +## self.spacingFactor=spacingFactor +## self.style=style +## self.width=width +## self.xdirection=xdirection +## def __str__(self): +## input=self.text +## text='' +## while len(input)>250: +## text+='3\n%s\n'%input[:250] +## input=input[250:] +## text+='1\n%s\n'%input +## result= '0\nMTEXT\n%s\n%s\n40\n%s\n41\n%s\n71\n%s\n72\n%s%s\n43\n%s\n50\n%s\n'%\ +## (self._common(),_point(self.point),self.charHeight,self.width, +## self.attachment,self.direction,text, +## self.height, +## self.rotation) +## if self.style:result+='7\n%s\n'%self.style +## if self.xdirection:result+='%s\n'%_point(self.xdirection,1) +## if self.charWidth:result+='42\n%s\n'%self.charWidth +## if self.spacingStyle:result+='73\n%s\n'%self.spacingStyle +## if self.spacingFactor:result+='44\n%s\n'%self.spacingFactor +## return result + +#---tables --------------------------------------------------- +#----------------------------------------------- +class Block(_Collection): + """Use list methods to add entities, eg append.""" + def __init__(self,name,layer='0',flag=0,base=(0,0,0),entities=[]): + self.entities=copy.copy(entities) + _Collection.__init__(self,entities) + self.layer=layer + self.name=name + self.flag=0 + self.base=base + def __str__(self): # TODO: + e=''.join([str(x)for x in self.entities]) + return ' 0\nBLOCK\n 8\n%s\n 2\n%s\n 70\n%s\n%s\n 3\n%s\n%s 0\nENDBLK\n'%\ + (self.layer,self.name.upper(),self.flag,_point(self.base),self.name.upper(),e) + +#----------------------------------------------- +class Layer(_Call): + """Layer""" + def __init__(self,name='pydxf',color=7,lineType='continuous',flag=64): + self.name=name + self.color=color + self.lineType=lineType + self.flag=flag + def __str__(self): + return ' 0\nLAYER\n 2\n%s\n 70\n%s\n 62\n%s\n 6\n%s\n'%\ + (self.name.upper(),self.flag,self.color,self.lineType) + +#----------------------------------------------- +class LineType(_Call): + """Custom linetype""" + def __init__(self,name='CONTINUOUS',description='Solid line',elements=[0.0],flag=0): + self.name=name + self.description=description + self.elements=copy.copy(elements) + self.flag=flag + def __str__(self): + result = ' 0\nLTYPE\n 2\n%s\n 70\n%s\n 3\n%s\n 72\n65\n'%\ + (self.name.upper(),self.flag,self.description) + if self.elements: + elements = ' 73\n%s\n' %(len(self.elements)-1) + elements += ' 40\n%s\n' %(self.elements[0]) + for e in self.elements[1:]: + elements += ' 49\n%s\n' %e + result += elements + return result + + +#----------------------------------------------- +class Style(_Call): + """Text style""" + def __init__(self,name='standard',flag=0,height=0,widthFactor=1.0,obliqueAngle=0.0, + mirror=0,lastHeight=1,font='arial.ttf',bigFont=''): + self.name=name + self.flag=flag + self.height=height + self.widthFactor=widthFactor + self.obliqueAngle=obliqueAngle + self.mirror=mirror + self.lastHeight=lastHeight + self.font=font + self.bigFont=bigFont + def __str__(self): + return ' 0\nSTYLE\n 2\n%s\n 70\n%s\n 40\n%s\n 41\n%s\n 50\n%s\n 71\n%s\n 42\n%s\n 3\n%s\n 4\n%s\n'%\ + (self.name.upper(),self.flag,self.flag,self.widthFactor, + self.obliqueAngle,self.mirror,self.lastHeight, + self.font.upper(),self.bigFont.upper()) + +#----------------------------------------------- +class VPort(_Call): + def __init__(self,name,flag=0, + leftBottom=(0.0,0.0), + rightTop=(1.0,1.0), + center=(0.5,0.5), + snap_base=(0.0,0.0), + snap_spacing=(0.1,0.1), + grid_spacing=(0.1,0.1), + direction=(0.0,0.0,1.0), + target=(0.0,0.0,0.0), + height=1.0, + ratio=1.0, + lens=50, + frontClipping=0, + backClipping=0, + snap_rotation=0, + twist=0, + mode=0, + circle_zoom=100, + fast_zoom=1, + ucsicon=1, + snap_on=0, + grid_on=0, + snap_style=0, + snap_isopair=0 + ): + self.name=name + self.flag=flag + self.leftBottom=leftBottom + self.rightTop=rightTop + self.center=center + self.snap_base=snap_base + self.snap_spacing=snap_spacing + self.grid_spacing=grid_spacing + self.direction=direction + self.target=target + self.height=float(height) + self.ratio=float(ratio) + self.lens=float(lens) + self.frontClipping=float(frontClipping) + self.backClipping=float(backClipping) + self.snap_rotation=float(snap_rotation) + self.twist=float(twist) + self.mode=mode + self.circle_zoom=circle_zoom + self.fast_zoom=fast_zoom + self.ucsicon=ucsicon + self.snap_on=snap_on + self.grid_on=grid_on + self.snap_style=snap_style + self.snap_isopair=snap_isopair + def __str__(self): + output = [' 0', 'VPORT', + ' 2', self.name, + ' 70', self.flag, + _point(self.leftBottom), + _point(self.rightTop,1), + _point(self.center,2), # View center point (in DCS) + _point(self.snap_base,3), + _point(self.snap_spacing,4), + _point(self.grid_spacing,5), + _point(self.direction,6), #view direction from target (in WCS) + _point(self.target,7), + ' 40', self.height, + ' 41', self.ratio, + ' 42', self.lens, + ' 43', self.frontClipping, + ' 44', self.backClipping, + ' 50', self.snap_rotation, + ' 51', self.twist, + ' 71', self.mode, + ' 72', self.circle_zoom, + ' 73', self.fast_zoom, + ' 74', self.ucsicon, + ' 75', self.snap_on, + ' 76', self.grid_on, + ' 77', self.snap_style, + ' 78', self.snap_isopair + ] + + output_str = '' + for s in output: + output_str += '%s\n' %s + return output_str + + + +#----------------------------------------------- +class View(_Call): + def __init__(self,name,flag=0, + width=1, + height=1, + center=(0.5,0.5), + direction=(0,0,1), + target=(0,0,0), + lens=50, + frontClipping=0, + backClipping=0, + twist=0,mode=0 + ): + self.name=name + self.flag=flag + self.width=float(width) + self.height=float(height) + self.center=center + self.direction=direction + self.target=target + self.lens=float(lens) + self.frontClipping=float(frontClipping) + self.backClipping=float(backClipping) + self.twist=float(twist) + self.mode=mode + def __str__(self): + output = [' 0', 'VIEW', + ' 2', self.name, + ' 70', self.flag, + ' 40', self.height, + _point(self.center), + ' 41', self.width, + _point(self.direction,1), + _point(self.target,2), + ' 42', self.lens, + ' 43', self.frontClipping, + ' 44', self.backClipping, + ' 50', self.twist, + ' 71', self.mode + ] + output_str = '' + for s in output: + output_str += '%s\n' %s + return output_str + +#----------------------------------------------- +def ViewByWindow(name,leftBottom=(0,0),rightTop=(1,1),**options): + width=abs(rightTop[0]-leftBottom[0]) + height=abs(rightTop[1]-leftBottom[1]) + center=((rightTop[0]+leftBottom[0])*0.5,(rightTop[1]+leftBottom[1])*0.5) + return View(name=name,width=width,height=height,center=center,**options) + +#---drawing +#----------------------------------------------- +class Drawing(_Collection): + """Dxf drawing. Use append or any other list methods to add objects.""" + def __init__(self,insbase=(0.0,0.0,0.0),extmin=(0.0,0.0,0.0),extmax=(0.0,0.0,0.0), + layers=[Layer()],linetypes=[LineType()],styles=[Style()],blocks=[], + views=[],vports=[],entities=None,fileName='test.dxf'): + # TODO: replace list with None,arial + if not entities: + entities=[] + _Collection.__init__(self,entities) + self.insbase=insbase + self.extmin=extmin + self.extmax=extmax + self.layers=copy.copy(layers) + self.linetypes=copy.copy(linetypes) + self.styles=copy.copy(styles) + self.views=copy.copy(views) + self.vports=copy.copy(vports) + self.blocks=copy.copy(blocks) + self.fileName=fileName + #private + #self.acadver='9\n$ACADVER\n1\nAC1006\n' + self.acadver=' 9\n$ACADVER\n 1\nAC1009\n' + """DXF AutoCAD-Release format codes + AC1021 2008, 2007 + AC1018 2006, 2005, 2004 + AC1015 2002, 2000i, 2000 + AC1014 R14,14.01 + AC1012 R13 + AC1009 R12,11 + AC1006 R10 + AC1004 R9 + AC1002 R2.6 + AC1.50 R2.05 + """ + + def _name(self,x): + """Helper function for self._point""" + return ' 9\n$%s\n' %x.upper() + + def _point(self,name,x): + """Point setting from drawing like extmin,extmax,...""" + return '%s%s' %(self._name(name),_point(x)) + + def _section(self,name,x): + """Sections like tables,blocks,entities,...""" + if x: xstr=''.join(x) + else: xstr='' + return ' 0\nSECTION\n 2\n%s\n%s 0\nENDSEC\n'%(name.upper(),xstr) + + def _table(self,name,x): + """Tables like ltype,layer,style,...""" + if x: xstr=''.join(x) + else: xstr='' + return ' 0\nTABLE\n 2\n%s\n 70\n%s\n%s 0\nENDTAB\n'%(name.upper(),len(x),xstr) + + def __str__(self): + """Returns drawing as dxf string.""" + header=[self.acadver]+[self._point(attr,getattr(self,attr))+'\n' for attr in _HEADER_POINTS] + header=self._section('header',header) + + tables=[self._table('vport',[str(x) for x in self.vports]), + self._table('ltype',[str(x) for x in self.linetypes]), + self._table('layer',[str(x) for x in self.layers]), + self._table('style',[str(x) for x in self.styles]), + self._table('view',[str(x) for x in self.views]), + ] + tables=self._section('tables',tables) + + blocks=self._section('blocks',[str(x) for x in self.blocks]) + + entities=self._section('entities',[str(x) for x in self.entities]) + + all=''.join([header,tables,blocks,entities,' 0\nEOF\n']) + return all + + def saveas(self,fileName): + self.fileName=fileName + self.save() + + def save(self): + test=open(self.fileName,'w') + test.write(str(self)) + test.close() + + +#---extras +#----------------------------------------------- +class Rectangle(_Entity): + """Rectangle, creates lines.""" + def __init__(self,point=(0,0,0),width=1,height=1,solid=None,line=1,**common): + _Entity.__init__(self,**common) + self.point=point + self.width=width + self.height=height + self.solid=solid + self.line=line + def __str__(self): + result='' + points=[self.point,(self.point[0]+self.width,self.point[1],self.point[2]), + (self.point[0]+self.width,self.point[1]+self.height,self.point[2]), + (self.point[0],self.point[1]+self.height,self.point[2]),self.point] + if self.solid: + result+= Solid(points=points[:-1],parent=self.solid) + if self.line: + for i in range(4): + result+= Line(points=[points[i],points[i+1]],parent=self) + return result[1:] + +#----------------------------------------------- +class LineList(_Entity): + """Like polyline, but built of individual lines.""" + def __init__(self,points=[],org_point=[0,0,0],closed=0,**common): + _Entity.__init__(self,**common) + self.closed=closed + self.points=copy.copy(points) + def __str__(self): + if self.closed:points=self.points+[self.points[0]] + else: points=self.points + result='' + for i in range(len(points)-1): + result+= Line(points=[points[i],points[i+1]],parent=self) + return result[1:] + +#----------------------------------------------------- +def test(): + #Blocks + b=Block('test') + b.append(Solid(points=[(0,0,0),(1,0,0),(1,1,0),(0,1,0)],color=1)) + b.append(Arc(center=(1,0,0),color=2)) + + #Drawing + d=Drawing() + #tables + d.blocks.append(b) #table blocks + d.styles.append(Style()) #table styles + d.views.append(View('Normal')) #table view + d.views.append(ViewByWindow('Window',leftBottom=(1,0),rightTop=(2,1))) #idem + + #entities + d.append(Circle(center=(1,1,0),color=3)) + d.append(Face(points=[(0,0,0),(1,0,0),(1,1,0),(0,1,0)],color=4)) + d.append(Insert('test',point=(3,3,3),cols=5,colspacing=2)) + d.append(Line(points=[(0,0,0),(1,1,1)])) + d.append(Mtext('Click on Ads\nmultiple lines with mtext',point=(1,1,1),color=5,rotation=90)) + d.append(Text('Please donate!',point=(3,0,1))) + #d.append(Rectangle(point=(2,2,2),width=4,height=3,color=6,solid=Solid(color=2))) + d.append(Solid(points=[(4,4,0),(5,4,0),(7,8,0),(9,9,0)],color=3)) + #d.append(PolyLine(points=[(1,1,1),(2,1,1),(2,2,1),(1,2,1)],flag=1,color=1)) + + #d.saveas('c:\\test.dxf') + d.saveas('test.dxf') + +#----------------------------------------------------- +if __name__=='__main__': + if not copy: + Draw.PupMenu('Error%t|This script requires a full python install') + else: test() + diff --git a/src/Mod/DDA/draftlibs/dxfReader.py b/src/Mod/DDA/draftlibs/dxfReader.py new file mode 100644 index 000000000000..02628b81c9a8 --- /dev/null +++ b/src/Mod/DDA/draftlibs/dxfReader.py @@ -0,0 +1,381 @@ +"""This module provides a function for reading dxf files and parsing them into a useful tree of objects and data. + + The convert function is called by the readDXF fuction to convert dxf strings into the correct data based + on their type code. readDXF expects a (full path) file name as input. +""" + +# -------------------------------------------------------------------------- +# DXF Reader v0.9 by Ed Blake (AKA Kitsu) +# 2008.05.08 modif.def convert() by Remigiusz Fiedler (AKA migius) +# -------------------------------------------------------------------------- +# ***** BEGIN GPL LICENSE BLOCK ***** +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# 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 General Public License for more details. +# +# You should have received a copy of the GNU 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. +# +# ***** END GPL LICENCE BLOCK ***** +# -------------------------------------------------------------------------- + + +from dxfImportObjects import * + +class Object: + """Empty container class for dxf objects""" + + def __init__(self, _type='', block=False): + """_type expects a string value.""" + self.type = _type + self.name = '' + self.data = [] + + def __str__(self): + if self.name: + return self.name + else: + return self.type + + def __repr__(self): + return str(self.data) + + def get_type(self, kind=''): + """Despite the name, this method actually returns all objects of type 'kind' from self.data.""" + if type: + objects = [] + for item in self.data: + if type(item) != list and item.type == kind: + # we want this type of object + objects.append(item) + elif type(item) == list and item[0] == kind: + # we want this type of data + objects.append(item[1]) + return objects + + +class InitializationError(Exception): pass + +class StateMachine: + """(finite) State Machine from the great David Mertz's great Charming Python article.""" + + def __init__(self): + self.handlers = [] + self.startState = None + self.endStates = [] + + def add_state(self, handler, end_state=0): + """All states and handlers are functions which return + a state and a cargo.""" + self.handlers.append(handler) + if end_state: + self.endStates.append(handler) + def set_start(self, handler): + """Sets the starting handler function.""" + self.startState = handler + + + def run(self, cargo=None): + if not self.startState: + raise InitializationError,\ + "must call .set_start() before .run()" + if not self.endStates: + raise InitializationError, \ + "at least one state must be an end_state" + handler = self.startState + while 1: + (newState, cargo) = handler(cargo) + #print cargo + if newState in self.endStates: + return newState(cargo) + #break + elif newState not in self.handlers: + raise RuntimeError, "Invalid target %s" % newState + else: + handler = newState + +def get_name(data): + """Get the name of an object from its object data. + + Returns a pair of (data_item, name) where data_item is the list entry where the name was found + (the data_item can be used to remove the entry from the object data). Be sure to check + name not None before using the returned values! + """ + value = None + for item in data: + if item[0] == 2: + value = item[1] + break + return item, value + +def get_layer(data): + """Expects object data as input. + + Returns (entry, layer_name) where entry is the data item that provided the layer name. + """ + value = None + for item in data: + if item[0] == 8: + value = item[1] + break + return item, value + + +def convert(code, value): + """Convert a string to the correct Python type based on its dxf code. + code types: + ints = 60-79, 170-179, 270-289, 370-389, 400-409, 1060-1070 + longs = 90-99, 420-429, 440-459, 1071 + floats = 10-39, 40-59, 110-139, 140-149, 210-239, 460-469, 1010-1059 + hex = 105, 310-379, 390-399 + strings = 0-9, 100, 102, 300-309, 410-419, 430-439, 470-479, 999, 1000-1009 + """ + if 59 < code < 80 or 169 < code < 180 or 269 < code < 290 or 369 < code < 390 or 399 < code < 410 or 1059 < code < 1071: + value = int(float(value)) + elif 89 < code < 100 or 419 < code < 430 or 439 < code < 460 or code == 1071: + value = long(float(value)) + elif 9 < code < 60 or 109 < code < 150 or 209 < code < 240 or 459 < code < 470 or 1009 < code < 1060: + value = float(value) + elif code == 105 or 309 < code < 380 or 389 < code < 400: + value = int(value, 16) # should be left as string? + else: # it's already a string so do nothing + pass + return value + + +def findObject(infile, kind=''): + """Finds the next occurance of an object.""" + obj = False + while 1: + line = infile.readline() + if not line: # readline returns '' at eof + return False + if not obj: # We're still looking for our object code + if line.lower().strip() == '0': + obj = True # found it + else: # we are in an object definition + if kind: # if we're looking for a particular kind + if line.lower().strip() == kind: + obj = Object(line.lower().strip()) + break + else: # otherwise take anything non-numeric + if line.lower().strip() not in string.digits: + obj = Object(line.lower().strip()) + break + obj = False # whether we found one or not it's time to start over + return obj + +def handleObject(infile): + """Add data to an object until end of object is found.""" + line = infile.readline() + if line.lower().strip() == 'section': + return 'section' # this would be a problem + elif line.lower().strip() == 'endsec': + return 'endsec' # this means we are done with a section + else: # add data to the object until we find a new object + obj = Object(line.lower().strip()) + obj.name = obj.type + done = False + data = [] + while not done: + line = infile.readline() + if not data: + if line.lower().strip() == '0': + #we've found an object, time to return + return obj + else: + # first part is always an int + data.append(int(line.lower().strip())) + else: + data.append(convert(data[0], line.strip())) + obj.data.append(data) + data = [] + +def handleTable(table, infile): + """Special handler for dealing with nested table objects.""" + item, name = get_name(table.data) + if name: # We should always find a name + table.data.remove(item) + table.name = name.lower() + # This next bit is from handleObject + # handleObject should be generalized to work with any section like object + while 1: + obj = handleObject(infile) + if obj.type == 'table': + print "Warning: previous table not closed!" + return table + elif obj.type == 'endtab': + return table # this means we are done with the table + else: # add objects to the table until one of the above is found + table.data.append(obj) + + + + +def handleBlock(block, infile): + """Special handler for dealing with nested table objects.""" + item, name = get_name(block.data) + if name: # We should always find a name + # block.data.remove(item) + block.name = name + # This next bit is from handleObject + # handleObject should be generalized to work with any section like object + while 1: + obj = handleObject(infile) + if obj.type == 'block': + print "Warning: previous block not closed!" + return block + elif obj.type == 'endblk': + return block # this means we are done with the table + else: # add objects to the table until one of the above is found + block.data.append(obj) + + + + +"""These are the states/functions used in the State Machine. +states: + start - find first section + start_section - add data, find first object + object - add obj-data, watch for next obj (called directly by start_section) + end_section - look for next section or eof + end - return results +""" + +def start(cargo): + """Expects the infile as cargo, initializes the cargo.""" + #print "Entering start state!" + infile = cargo + drawing = Object('drawing') + section = findObject(infile, 'section') + if section: + return start_section, (infile, drawing, section) + else: + return error, (infile, "Failed to find any sections!") + +def start_section(cargo): + """Expects [infile, drawing, section] as cargo, builds a nested section object.""" + #print "Entering start_section state!" + infile = cargo[0] + drawing = cargo[1] + section = cargo[2] + # read each line, if it is an object declaration go to object mode + # otherwise create a [index, data] pair and add it to the sections data. + done = False + data = [] + while not done: + line = infile.readline() + + if not data: # if we haven't found a dxf code yet + if line.lower().strip() == '0': + # we've found an object + while 1: # no way out unless we find an end section or a new section + obj = handleObject(infile) + if obj == 'section': # shouldn't happen + print "Warning: failed to close previous section!" + return end_section, (infile, drawing) + elif obj == 'endsec': # This section is over, look for the next + drawing.data.append(section) + return end_section, (infile, drawing) + elif obj.type == 'table': # tables are collections of data + obj = handleTable(obj, infile) # we need to find all there contents + section.data.append(obj) # before moving on + elif obj.type == 'block': # the same is true of blocks + obj = handleBlock(obj, infile) # we need to find all there contents + section.data.append(obj) # before moving on + else: # found another sub-object + section.data.append(obj) + else: + data.append(int(line.lower().strip())) + else: # we have our code, now we just need to convert the data and add it to our list. + data.append(convert(data[0], line.strip())) + section.data.append(data) + data = [] +def end_section(cargo): + """Expects (infile, drawing) as cargo, searches for next section.""" + #print "Entering end_section state!" + infile = cargo[0] + drawing = cargo[1] + section = findObject(infile, 'section') + if section: + return start_section, (infile, drawing, section) + else: + return end, (infile, drawing) + +def end(cargo): + """Expects (infile, drawing) as cargo, called when eof has been reached.""" + #print "Entering end state!" + infile = cargo[0] + drawing = cargo[1] + #infile.close() + return drawing + +def error(cargo): + """Expects a (infile, string) as cargo, called when there is an error during processing.""" + #print "Entering error state!" + infile = cargo[0] + err = cargo[1] + infile.close() + print "There has been an error:" + print err + return False + +def readDXF(filename): + """Given a file name try to read it as a dxf file. + + Output is an object with the following structure + drawing + header + header data + classes + class data + tables + table data + blocks + block data + entities + entity data + objects + object data + where foo data is a list of sub-objects. True object data + is of the form [code, data]. +""" + infile = open(filename) + + sm = StateMachine() + sm.add_state(error, True) + sm.add_state(end, True) + sm.add_state(start_section) + sm.add_state(end_section) + sm.add_state(start) + sm.set_start(start) + try: + drawing = sm.run(infile) + if drawing: + drawing.name = filename + for obj in drawing.data: + item, name = get_name(obj.data) + if name: + obj.data.remove(item) + obj.name = name.lower() + setattr(drawing, name.lower(), obj) + # Call the objectify function to cast + # raw objects into the right types of object + obj.data = objectify(obj.data) + #print obj.name + finally: + infile.close() + return drawing +if __name__ == "__main__": + filename = r".\examples\block-test.dxf" + drawing = readDXF(filename) + for item in drawing.entities.data: + print item diff --git a/src/Mod/DDA/draftlibs/fcgeo.py b/src/Mod/DDA/draftlibs/fcgeo.py new file mode 100644 index 000000000000..1a5c94b7ad3a --- /dev/null +++ b/src/Mod/DDA/draftlibs/fcgeo.py @@ -0,0 +1,1813 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2009, 2010 * +#* Yorik van Havre , Ken Cline * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU General Public License (GPL) * +#* 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 * +#* * +#*************************************************************************** + +__title__="FreeCAD Draft Workbench - Geometry library" +__author__ = "Yorik van Havre, Jacques-Antoine Gaudin, Ken Cline" +__url__ = ["http://free-cad.sourceforge.net"] + +"this file contains generic geometry functions for manipulating Part shapes" + +import FreeCAD, Part, fcvec, math, cmath, FreeCADGui +from FreeCAD import Vector + +NORM = Vector(0,0,1) # provisory normal direction for all geometry ops. + +params = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Draft") +precision = params.GetInt("precision") + +# Generic functions ********************************************************* + + +def vec(edge): + "vec(edge) or vec(line) -- returns a vector from an edge or a Part.line" + # if edge is not straight, you'll get strange results! + if isinstance(edge,Part.Shape): + return edge.Vertexes[-1].Point.sub(edge.Vertexes[0].Point) + elif isinstance(edge,Part.Line): + return edge.EndPoint.sub(edge.StartPoint) + else: + return None + +def edg(p1,p2): + "edg(Vector,Vector) -- returns an edge from 2 vectors" + if isinstance(p1,FreeCAD.Vector) and isinstance(p2,FreeCAD.Vector): + if fcvec.equals(p1,p2): return None + else: return Part.Line(p1,p2).toShape() + +def getVerts(shape): + "getVerts(shape) -- returns a list containing vectors of each vertex of the shape" + p = [] + for v in shape.Vertexes: + p.append(v.Point) + return p + +def v1(edge): + "v1(edge) -- returns the first point of an edge" + return edge.Vertexes[0].Point + +def isNull(something): + '''returns true if the given shape is null or the given placement is 0 or + if the given vector is (0,0,0)''' + if isinstance(something,Part.Shape): + return something.isNull() + elif isinstance(something,FreeCAD.Vector): + if something == Vector(0,0,0): + return True + else: + return False + elif isinstance(something,FreeCAD.Placement): + if (something.Base == Vector(0,0,0)) and (something.Rotation.Q == (0,0,0,1)): + return True + else: + return False + +def isPtOnEdge(pt,edge) : + '''isPtOnEdge(Vector,edge) -- Tests if a point is on an edge''' + if isinstance(edge.Curve,Part.Line) : + orig = edge.Vertexes[0].Point + if fcvec.isNull(pt.sub(orig).cross(vec(edge))) : + return pt.sub(orig).Length <= vec(edge).Length and pt.sub(orig).dot(vec(edge)) >= 0 + else : + return False + + elif isinstance(edge.Curve,Part.Circle) : + center = edge.Curve.Center + axis = edge.Curve.Axis ; axis.normalize() + radius = edge.Curve.Radius + if round(pt.sub(center).dot(axis),precision) == 0 \ + and round(pt.sub(center).Length - radius,precision) == 0 : + if len(edge.Vertexes) == 1 : + return True # edge is a complete circle + else : + begin = edge.Vertexes[0].Point + end = edge.Vertexes[-1].Point + if fcvec.isNull(pt.sub(begin)) or fcvec.isNull(pt.sub(end)) : + return True + else : + # newArc = Part.Arc(begin,pt,end) + # return fcvec.isNull(newArc.Center.sub(center)) \ + # and fcvec.isNull(newArc.Axis-axis) \ + # and round(newArc.Radius-radius,precision) == 0 + angle1 = fcvec.angle(begin.sub(center)) + angle2 = fcvec.angle(end.sub(center)) + anglept = fcvec.angle(pt.sub(center)) + if (angle1 < anglept) and (anglept < angle2): + return True + return False + +def hasCurves(shape): + "checks if the given shape has curves" + for e in shape.Edges: + if not isInstance(e.Curve,Part.Line): + return True + return False + +# edge functions ***************************************************************** + +def findEdge(anEdge,aList): + '''findEdge(anEdge,aList): returns True if anEdge is found in aList of edges''' + for e in range(len(aList)): + if str(anEdge.Curve) == str(aList[e].Curve): + if fcvec.equals(anEdge.Vertexes[0].Point,aList[e].Vertexes[0].Point): + if fcvec.equals(anEdge.Vertexes[-1].Point,aList[e].Vertexes[-1].Point): + return(e) + return None + + +def findIntersection(edge1,edge2,infinite1=False,infinite2=False,ex1=False,ex2=False) : + '''findIntersection(edge1,edge2,infinite1=False,infinite2=False): + returns a list containing the intersection point(s) of 2 edges. + You can also feed 4 points instead of edge1 and edge2''' + + pt1 = None + + if isinstance(edge1,FreeCAD.Vector) and isinstance(edge2,FreeCAD.Vector): + # we got points directly + pt1 = edge1 + pt2 = edge2 + pt3 = infinite1 + pt4 = infinite2 + infinite1 = ex1 + infinite2 = ex2 + + elif isinstance(edge1.Curve,Part.Line) and isinstance(edge2.Curve,Part.Line) : + # we have 2 edges + pt1, pt2, pt3, pt4 = [edge1.Vertexes[0].Point, + edge1.Vertexes[1].Point, + edge2.Vertexes[0].Point, + edge2.Vertexes[1].Point] + + if pt1: + # first check if we don't already have coincident endpoints + if (pt1 in [pt3,pt4]): + return [pt1] + elif (pt2 in [pt3,pt4]): + return [pt2] + + #we have 2 straight lines + if fcvec.isNull(pt2.sub(pt1).cross(pt3.sub(pt1)).cross(pt2.sub(pt4).cross(pt3.sub(pt4)))): + vec1 = pt2.sub(pt1) ; vec2 = pt4.sub(pt3) + if fcvec.isNull(vec1) or fcvec.isNull(vec2): + return [] + vec1.normalize() ; vec2.normalize() + cross = vec1.cross(vec2) + if not fcvec.isNull(cross) : + k = ((pt3.z-pt1.z)*(vec2.x-vec2.y)+(pt3.y-pt1.y)*(vec2.z-vec2.x)+ \ + (pt3.x-pt1.x)*(vec2.y-vec2.z))/(cross.x+cross.y+cross.z) + vec1.scale(k,k,k) + int = pt1.add(vec1) + + if infinite1 == False and not isPtOnEdge(int,edge1) : + return [] + + if infinite2 == False and not isPtOnEdge(int,edge2) : + return [] + + return [int] + else : + return [] # Lines have same direction + else : + return [] # Lines aren't on same plane + + elif isinstance(edge1.Curve,Part.Circle) and isinstance(edge2.Curve,Part.Line) \ + or isinstance(edge1.Curve,Part.Line) and isinstance(edge2.Curve,Part.Circle) : + + # deals with an arc or circle and a line + + edges = [edge1,edge2] + for edge in edges : + if isinstance(edge.Curve,Part.Line) : + line = edge + else : + arc = edge + + dirVec = vec(line) ; dirVec.normalize() + pt1 = line.Vertexes[0].Point + pt2 = line.Vertexes[1].Point + pt3 = arc.Vertexes[0].Point + pt4 = arc.Vertexes[-1].Point + center = arc.Curve.Center + + # first check for coincident endpoints + if (pt1 in [pt3,pt4]): + return [pt1] + elif (pt2 in [pt3,pt4]): + return [pt2] + + if fcvec.isNull(pt1.sub(center).cross(pt2.sub(center)).cross(arc.Curve.Axis)) : + # Line and Arc are on same plane + + dOnLine = center.sub(pt1).dot(dirVec) + onLine = Vector(dirVec) ; onLine.scale(dOnLine,dOnLine,dOnLine) + toLine = pt1.sub(center).add(onLine) + + if toLine.Length < arc.Curve.Radius : + dOnLine = (arc.Curve.Radius**2 - toLine.Length**2)**(0.5) + onLine = Vector(dirVec) ; onLine.scale(dOnLine,dOnLine,dOnLine) + int = [center.add(toLine).add(onLine)] + onLine = Vector(dirVec) ; onLine.scale(-dOnLine,-dOnLine,-dOnLine) + int += [center.add(toLine).add(onLine)] + elif round(toLine.Length-arc.Curve.Radius,precision) == 0 : + int = [center.add(toLine)] + else : + return [] + + else : # Line isn't on Arc's plane + if dirVec.dot(arc.Curve.Axis) != 0 : + toPlane = Vector(arc.Curve.Axis) ; toPlane.normalize() + d = vec1.dot(toPlane) + dToPlane = center.sub(pt1).dot(toPlane) + toPlane = Vector(vec1) + toPlane.scale(dToPlane/d,dToPlane/d,dToPlane/d) + ptOnPlane = toPlane.add(pt1) + if round(ptOnPlane.sub(center).Length - arc.Curve.Radius,precision) == 0 : + int = [ptOnPlane] + else : + return [] + else : + return [] + + if infinite1 == False : + for i in range(len(int)-1,-1,-1) : + if not isPtOnEdge(int[i],edge1) : + del int[i] + if infinite2 == False : + for i in range(len(int)-1,-1,-1) : + if not isPtOnEdge(int[i],edge2) : + del int[i] + return int + + elif isinstance(edge1.Curve,Part.Circle) and isinstance(edge2.Curve,Part.Circle) : + + # deals with 2 arcs or circles + + cent1, cent2 = edge1.Curve.Center, edge2.Curve.Center + rad1 , rad2 = edge1.Curve.Radius, edge2.Curve.Radius + axis1, axis2 = edge1.Curve.Axis , edge2.Curve.Axis + c2c = cent2.sub(cent1) + + if fcvec.isNull(axis1.cross(axis2)) : + if round(c2c.dot(axis1),precision) == 0 : + # circles are on same plane + dc2c = c2c.Length ; + if not fcvec.isNull(c2c): c2c.normalize() + if round(rad1+rad2-dc2c,precision) < 0 \ + or round(rad1-dc2c-rad2,precision) > 0 or round(rad2-dc2c-rad1,precision) > 0 : + return [] + else : + norm = c2c.cross(axis1) + if not fcvec.isNull(norm): norm.normalize() + if fcvec.isNull(norm): x = 0 + else: x = (dc2c**2 + rad1**2 - rad2**2)/(2*dc2c) + y = abs(rad1**2 - x**2)**(0.5) + c2c.scale(x,x,x) + if round(y,precision) != 0 : + norm.scale(y,y,y) + int = [cent1.add(c2c).add(norm)] + int += [cent1.add(c2c).sub(norm)] + else : + int = [cent1.add(c2c)] + else : + return [] # circles are on parallel planes + else : + # circles aren't on same plane + axis1.normalize() ; axis2.normalize() + U = axis1.cross(axis2) + V = axis1.cross(U) + dToPlane = c2c.dot(axis2) + d = V.add(cent1).dot(axis2) + V.scale(dToPlane/d,dToPlane/d,dToPlane/d) + PtOn2Planes = V.add(cent1) + planeIntersectionVector = U.add(PtOn2Planes) + intTemp = findIntersection(planeIntersectionVector,edge1,True,True) + int = [] + for pt in intTemp : + if round(pt.sub(cent2).Length-rad2,precision) == 0 : + int += [pt] + + if infinite1 == False : + for i in range(len(int)-1,-1,-1) : + if not isPtOnEdge(int[i],edge1) : + del int[i] + if infinite2 == False : + for i in range(len(int)-1,-1,-1) : + if not isPtOnEdge(int[i],edge2) : + del int[i] + + return int + else : + print "fcgeo: Unsupported curve type: (" + str(edge1.Curve) + ", " + str(edge2.Curve) + ")" + + +def mirror (point, edge): + "finds mirror point relative to an edge" + normPoint = point.add(findDistance(point, edge, False)) + if normPoint: + normPoint_point = Vector.sub(point, normPoint) + normPoint_refl = fcvec.neg(normPoint_point) + refl = Vector.add(normPoint, normPoint_refl) + return refl + else: + return None + +def findClosest(basepoint,pointslist): + ''' + findClosest(vector,list) + in a list of 3d points, finds the closest point to the base point. + an index from the list is returned. + ''' + if not pointslist: return None + smallest = 100000 + for n in range(len(pointslist)): + new = basepoint.sub(pointslist[n]).Length + if new < smallest: + smallest = new + npoint = n + return npoint + +def concatenate(shape): + "concatenate(shape) -- turns several faces into one" + edges = getBoundary(shape) + edges = sortEdges(edges) + try: + wire=Part.Wire(edges) + face=Part.Face(wire) + except: + print "fcgeo: Couldn't join faces into one" + return(shape) + else: + if not wire.isClosed(): return(wire) + else: return(face) + +def getBoundary(shape): + "getBoundary(shape) -- this function returns the boundary edges of a group of faces" + # make a lookup-table where we get the number of occurrences + # to each edge in the fused face + if isinstance(shape,list): + shape = Part.makeCompound(shape) + lut={} + for f in shape.Faces: + for e in f.Edges: + hc= e.hashCode() + if lut.has_key(hc): lut[hc]=lut[hc]+1 + else: lut[hc]=1 + # filter out the edges shared by more than one sub-face + bound=[] + for e in shape.Edges: + if lut[e.hashCode()] == 1: bound.append(e) + return bound + +def sortEdges(lEdges, aVertex=None): + "an alternative, more accurate version of Part.__sortEdges__" + + #There is no reason to limit this to lines only because every non-closed edge always + #has exactly two vertices (wmayer) + #for e in lEdges: + # if not isinstance(e.Curve,Part.Line): + # print "Warning: sortedges cannot treat wired containing curves yet." + # return lEdges + + def isSameVertex(V1, V2): + ''' Test if vertexes have same coordinates with precision 10E(-precision)''' + if round(V1.X-V2.X,1)==0 and round(V1.Y-V2.Y,1)==0 and round(V1.Z-V2.Z,1)==0 : + return True + else : + return False + + def lookfor(aVertex, inEdges): + ''' Look for (aVertex, inEdges) returns count, the position of the instance + the position in the instance and the instance of the Edge''' + count = 0 + linstances = [] #lists the instances of aVertex + for i in range(len(inEdges)) : + for j in range(2) : + if isSameVertex(aVertex,inEdges[i].Vertexes[j-1]): + instance = inEdges[i] + count += 1 + linstances += [i,j-1,instance] + return [count]+linstances + + if (len(lEdges) < 2): + if aVertex == None: + return lEdges + else: + result = lookfor(aVertex,lEdges) + if result[0] != 0: + if isSameVertex(aVertex,result[3].Vertexes[0]): + return lEdges + else: + if isinstance(result[3].Curve,Part.Line): + return [Part.Line(aVertex.Point,result[3].Vertexes[0].Point).toShape()] + elif isinstance(result[3].Curve,Part.Circle): + mp = findMidpoint(result[3]) + return [Part.Arc(aVertex.Point,mp,result[3].Vertexes[0].Point).toShape()] + else: + return lEdges + + olEdges = [] # ol stands for ordered list + if aVertex == None: + for i in range(len(lEdges)*2) : + if len(lEdges[i/2].Vertexes) > 1: + result = lookfor(lEdges[i/2].Vertexes[i%2],lEdges) + if result[0] == 1 : # Have we found an end ? + olEdges = sortEdges(lEdges, result[3].Vertexes[result[2]]) + return olEdges + # if the wire is closed there is no end so choose 1st Vertex + return sortEdges(lEdges, lEdges[0].Vertexes[0]) + else : + result = lookfor(aVertex,lEdges) + if result[0] != 0 : + del lEdges[result[1]] + next = sortEdges(lEdges, result[3].Vertexes[-((-result[2])^1)]) + if isSameVertex(aVertex,result[3].Vertexes[0]): + olEdges += [result[3]] + next + else: + if isinstance(result[3].Curve,Part.Line): + newedge = Part.Line(aVertex.Point,result[3].Vertexes[0].Point).toShape() + olEdges += [newedge] + next + elif isinstance(result[3].Curve,Part.Circle): + mp = findMidpoint(result[3]) + newedge = Part.Arc(aVertex.Point,mp,result[3].Vertexes[0].Point).toShape() + olEdges += [newedge] + next + else: + olEdges += [result[3]] + next + return olEdges + else : + return [] + + +def superWire(edgeslist,closed=False): + '''superWire(edges,[closed]): forces a wire between edges that don't necessarily + have coincident endpoints. If closed=True, wire will always be closed''' + def median(v1,v2): + vd = v2.sub(v1) + vd.scale(.5,.5,.5) + return v1.add(vd) + edges = sortEdges(edgeslist) + print edges + newedges = [] + for i in range(len(edges)): + curr = edges[i] + if i == 0: + if closed: + prev = edges[-1] + else: + prev = None + else: + prev = edges[i-1] + if i == (len(edges)-1): + if closed: + next = edges[0] + else: + next = None + else: + next = edges[i+1] + print i,prev,curr,next + if prev: + if curr.Vertexes[0].Point == prev.Vertexes[-1].Point: + p1 = curr.Vertexes[0].Point + else: + p1 = median(curr.Vertexes[0].Point,prev.Vertexes[-1].Point) + else: + p1 = curr.Vertexes[0].Point + if next: + if curr.Vertexes[-1].Point == next.Vertexes[0].Point: + p2 = next.Vertexes[0].Point + else: + p2 = median(curr.Vertexes[-1].Point,next.Vertexes[0].Point) + else: + p2 = curr.Vertexes[-1].Point + if isinstance(curr.Curve,Part.Line): + print "line",p1,p2 + newedges.append(Part.Line(p1,p2).toShape()) + elif isinstance(curr.Curve,Part.Circle): + p3 = findMidpoint(curr) + print "arc",p1,p3,p2 + newedges.append(Part.Arc(p1,p3,p2).toShape()) + else: + print "Cannot superWire edges that are not lines or arcs" + return None + print newedges + return Part.Wire(newedges) + +def findMidpoint(edge): + "calculates the midpoint of an edge" + first = edge.Vertexes[0].Point + last = edge.Vertexes[-1].Point + if isinstance(edge.Curve,Part.Circle): + center = edge.Curve.Center + radius = edge.Curve.Radius + if len(edge.Vertexes) == 1: + # Circle + dv = first.sub(center) + dv = fcvec.neg(dv) + return center.add(dv) + axis = edge.Curve.Axis + chord = last.sub(first) + perp = chord.cross(axis) + perp.normalize() + ray = first.sub(center) + apothem = ray.dot(perp) + sagitta = radius - apothem + startpoint = Vector.add(first, fcvec.scale(chord,0.5)) + endpoint = fcvec.scaleTo(perp,sagitta) + return Vector.add(startpoint,endpoint) + + elif isinstance(edge.Curve,Part.Line): + halfedge = fcvec.scale(last.sub(first),.5) + return Vector.add(first,halfedge) + + else: + return None + +def complexity(obj): + ''' + tests given object for shape complexity: + 1: line + 2: arc + 3: circle + 4: open wire with no arc + 5: closed wire + 6: wire with arcs + 7: faces + 8: faces with arcs + ''' + shape = obj.Shape + if shape.Faces: + for e in shape.Edges: + if (isinstance(e.Curve,Part.Circle)): return 8 + return 7 + if shape.Wires: + for e in shape.Edges: + if (isinstance(e.Curve,Part.Circle)): return 6 + for w in shape.Wires: + if w.isClosed(): return 5 + return 4 + if (isinstance(shape.Edges[0].Curve,Part.Circle)): + if len(shape.Vertexes) == 1: + return 3 + return 2 + return 1 + +def findPerpendicular(point,edgeslist,force=None): + ''' + findPerpendicular(vector,wire,[force]): + finds the shortest perpendicular distance between a point and an edgeslist. + If force is specified, only the edge[force] will be considered, and it will be + considered infinite. + The function will return a list [vector_from_point_to_closest_edge,edge_index] + or None if no perpendicular vector could be found. + ''' + if not isinstance(edgeslist,list): + try: + edgeslist = edgeslist.Edges + except: + return None + if (force == None): + valid = None + for edge in edgeslist: + dist = findDistance(point,edge,strict=True) + if dist: + if not valid: valid = [dist,edgeslist.index(edge)] + else: + if (dist.Length < valid[0].Length): + valid = [dist,edgeslist.index(edge)] + return valid + else: + edge = edgeslist[force] + dist = findDistance(point,edge) + if dist: return [dist,force] + else: return None + return None + +def offset(edge,vector): + ''' + offset(edge,vector) + returns a copy of the edge at a certain (vector) distance + if the edge is an arc, the vector will be added at its first point + and a complete circle will be returned + ''' + if (not isinstance(edge,Part.Shape)) or (not isinstance(vector,FreeCAD.Vector)): + return None + if isinstance(edge.Curve,Part.Line): + v1 = Vector.add(edge.Vertexes[0].Point, vector) + v2 = Vector.add(edge.Vertexes[-1].Point, vector) + return Part.Line(v1,v2).toShape() + else: + rad = edge.Vertexes[0].Point.sub(edge.Curve.Center) + newrad = Vector.add(rad,vector).Length + return Part.Circle(edge.Curve.Center,NORM,newrad).toShape() + +def isReallyClosed(wire): + "checks if a wire is really closed" + if len(wire.Edges) == len(wire.Vertexes): return True + v1 = wire.Vertexes[0].Point + v2 = wire.Vertexes[-1].Point + if fcvec.equals(v1,v2): return True + return False + +def getNormal(shape): + "finds the normal of a shape, if possible" + n = Vector(0,0,1) + if shape.ShapeType == "Face": + n = shape.normalAt(0.5,0.5) + elif shape.ShapeType == "Edge": + if isinstance(shape.Curve,Part.Circle): + n = shape.Curve.Axis + else: + for e in shape.Edges: + if isinstance(e.Curve,Part.Circle): + n = e.Curve.Axis + break + e1 = vec(shape.Edges[0]) + for i in range(1,len(shape.Edges)): + e2 = vec(shape.Edges[i]) + if 0.1 < abs(e1.getAngle(e2)) < 1.56: + n = e1.cross(e2).normalize() + break + vdir = FreeCADGui.ActiveDocument.ActiveView.getViewDirection() + if n.getAngle(vdir) < 0.78: n = fcvec.neg(n) + return n + +def offsetWire(wire,dvec,bind=False,occ=False): + ''' + offsetWire(wire,vector,[bind]): offsets the given wire along the + given vector. The vector will be applied at the first vertex of + the wire. If bind is True (and the shape is open), the original + wire and the offsetted one are bound by 2 edges, forming a face. + ''' + edges = sortEdges(wire.Edges) + norm = getNormal(wire) + closed = isReallyClosed(wire) + nedges = [] + if occ: + l=abs(dvec.Length) + if not l: return None + if not wire.Wires: + wire = Part.Wire(edges) + try: + off = wire.makeOffset(l) + except: + return None + else: + return off + for i in range(len(edges)): + curredge = edges[i] + delta = dvec + if i != 0: + angle = fcvec.angle(vec(edges[0]),vec(curredge),norm) + delta = fcvec.rotate(delta,angle,norm) + nedge = offset(curredge,delta) + nedges.append(nedge) + nedges = connect(nedges,closed) + if bind and not closed: + e1 = Part.Line(edges[0].Vertexes[0].Point,nedges[0].Vertexes[0].Point).toShape() + e2 = Part.Line(edges[-1].Vertexes[-1].Point,nedges[-1].Vertexes[-1].Point).toShape() + alledges = edges.extend(nedges) + alledges = alledges.extend([e1,e2]) + w = Part.Wire(alledges) + return w + else: + return nedges + +def connect(edges,closed=False): + '''connects the edges in the given list by their intersections''' + nedges = [] + for i in range(len(edges)): + curr = edges[i] + # print "fcgeo.connect edge ",i," : ",curr.Vertexes[0].Point,curr.Vertexes[-1].Point + if i > 0: + prev = edges[i-1] + else: + if closed: + prev = edges[-1] + else: + prev = None + if i < (len(edges)-1): + next = edges[i+1] + else: + if closed: next = edges[0] + else: + next = None + if prev: + # print "debug: fcgeo.connect prev : ",prev.Vertexes[0].Point,prev.Vertexes[-1].Point + v1 = findIntersection(curr,prev,True,True)[0] + else: + v1 = curr.Vertexes[0].Point + if next: + # print "debug: fcgeo.connect next : ",next.Vertexes[0].Point,next.Vertexes[-1].Point + v2 = findIntersection(curr,next,True,True)[0] + else: + v2 = curr.Vertexes[-1].Point + if isinstance(curr.Curve,Part.Line): + if v1 != v2: + nedges.append(Part.Line(v1,v2).toShape()) + elif isinstance(curr.Curve,Part.Circle): + if v1 != v2: + nedges.append(Part.Arc(v1,findMidPoint(curr),v2)) + return Part.Wire(nedges) + +def findDistance(point,edge,strict=False): + ''' + findDistance(vector,edge,[strict]) - Returns a vector from the point to its + closest point on the edge. If strict is True, the vector will be returned + only if its endpoint lies on the edge. + ''' + if isinstance(point, FreeCAD.Vector): + if isinstance(edge.Curve, Part.Line): + segment = vec(edge) + chord = edge.Vertexes[0].Point.sub(point) + norm = segment.cross(chord) + perp = segment.cross(norm) + dist = fcvec.project(chord,perp) + if not dist: return None + newpoint = point.add(dist) + if (dist.Length == 0): + return None + if strict: + s1 = newpoint.sub(edge.Vertexes[0].Point) + s2 = newpoint.sub(edge.Vertexes[-1].Point) + if (s1.Length <= segment.Length) and (s2.Length <= segment.Length): + return dist + else: + return None + else: return dist + elif isinstance(edge.Curve, Part.Circle): + ve1 = edge.Vertexes[0].Point + if (len(edge.Vertexes) > 1): + ve2 = edge.Vertexes[-1].Point + else: + ve2 = None + center = edge.Curve.Center + segment = center.sub(point) + ratio = (segment.Length - edge.Curve.Radius) / segment.Length + dist = fcvec.scale(segment,ratio) + newpoint = Vector.add(point, dist) + if (dist.Length == 0): + return None + if strict and ve2: + ang1 = fcvec.angle(ve1.sub(center)) + ang2 = fcvec.angle(ve2.sub(center)) + angpt = fcvec.angle(newpoint.sub(center)) + if ((angpt <= ang2 and angpt >= ang1) or (angpt <= ang1 and angpt >= ang2)): + return dist + else: + return None + else: + return dist + else: + print "fcgeo: Couldn't project point" + return None + else: + print "fcgeo: Couldn't project point" + return None + + +def angleBisection(edge1, edge2): + "angleBisection(edge,edge) - Returns an edge that bisects the angle between the 2 edges." + if isinstance(edge1.Curve, Part.Line) and isinstance(edge2.Curve, Part.Line): + p1 = edge1.Vertexes[0].Point + p2 = edge1.Vertexes[-1].Point + p3 = edge2.Vertexes[0].Point + p4 = edge2.Vertexes[-1].Point + int = findIntersection(edge1, edge2, True, True) + if int: + line1Dir = p2.sub(p1) + angleDiff = fcvec.angle(line1Dir, p4.sub(p3)) + ang = angleDiff * 0.5 + origin = int[0] + line1Dir.normalize() + dir = fcvec.rotate(line1Dir, ang) + return Part.Line(origin,origin.add(dir)).toShape() + else: + diff = p3.sub(p1) + origin = p1.add(fcvec.scale(diff, 0.5)) + dir = p2.sub(p1); dir.normalize() + return Part.Line(origin,origin.add(dir)).toShape() + else: + return None + +def findClosestCircle(point,circles): + "findClosestCircle(Vector, list of circles) -- returns the circle with closest center" + dist = 1000000 + closest = None + for c in circles: + if c.Center.sub(point).Length < dist: + dist = c.Center.sub(point).Length + closest = c + return closest + +def isCoplanar(faces): + "checks if all faces in the given list are coplanar" + if len(faces) < 2: + return True + base =faces[0].normalAt(.5,.5) + for i in range(1,len(faces)): + normal = faces[i].normalAt(.5,.5) + if (normal.getAngle(base) > .0001) and (normal.getAngle(base) < 3.1415): + return False + return True + +def findWires(edges): + '''finds connected edges in the list, and returns a list of lists containing edges + that can be connected''' + def verts(shape): + return [shape.Vertexes[0].Point,shape.Vertexes[-1].Point] + def group(shapes): + shapesIn = shapes[:] + shapesOut = [shapesIn.pop()] + changed = False + for s in shapesIn: + if len(s.Vertexes) < 2: + continue + else: + clean = True + for v in verts(s): + for i in range(len(shapesOut)): + if clean and (v in verts(shapesOut[i])): + shapesOut[i] = Part.Wire(shapesOut[i].Edges+s.Edges) + changed = True + clean = False + if clean: + shapesOut.append(s) + return(changed,shapesOut) + working = True + edgeSet = edges + while working: + result = group(edgeSet) + working = result[0] + edgeSet = result[1] + return result[1] + +def getTangent(edge,frompoint=None): + ''' + returns the tangent to an edge. If from point is given, it is used to + calculate the tangent (only useful for an arc of course). + ''' + if isinstance(edge.Curve,Part.Line): + return vec(edge) + elif isinstance(edge.Curve,Part.Circle): + if not frompoint: + v1 = edge.Vertexes[0].Point.sub(edge.Curve.Center) + else: + v1 = frompoint.sub(edge.Curve.Center) + return v1.cross(edge.Curve.Axis) + return None + +def bind(w1,w2): + '''bind(wire1,wire2): binds 2 wires by their endpoints and + returns a face''' + w3 = Part.Line(w1.Vertexes[0].Point,w2.Vertexes[0].Point).toShape() + w4 = Part.Line(w1.Vertexes[-1].Point,w2.Vertexes[-1].Point).toShape() + return Part.Face(Part.Wire(w1.Edges+[w3]+w2.Edges+[w4])) + +def cleanFaces(shape): + "removes inner edges from coplanar faces" + faceset = shape.Faces + def find(hc): + "finds a face with the given hashcode" + for f in faceset: + if f.hashCode() == hc: + return f + + def findNeighbour(hface,hfacelist): + "finds the first neighbour of a face in a list, and returns its index" + eset = [] + for e in find(hface).Edges: + eset.append(e.hashCode()) + for i in range(len(hfacelist)): + for ee in find(hfacelist[i]).Edges: + if ee.hashCode() in eset: + return i + return None + + # build lookup table + lut = {} + for face in faceset: + for edge in face.Edges: + if edge.hashCode() in lut: + lut[edge.hashCode()].append(face.hashCode()) + else: + lut[edge.hashCode()] = [face.hashCode()] + # print "lut:",lut + # take edges shared by 2 faces + sharedhedges = [] + for k,v in lut.iteritems(): + if len(v) == 2: + sharedhedges.append(k) + # print len(sharedhedges)," shared edges:",sharedhedges + # find those with same normals + targethedges = [] + for hedge in sharedhedges: + faces = lut[hedge] + n1 = find(faces[0]).normalAt(0.5,0.5) + n2 = find(faces[1]).normalAt(0.5,0.5) + if n1 == n2: + targethedges.append(hedge) + # print len(targethedges)," target edges:",targethedges + # get target faces + hfaces = [] + for hedge in targethedges: + for f in lut[hedge]: + if not f in hfaces: + hfaces.append(f) + + # print len(hfaces)," target faces:",hfaces + # sort islands + islands = [[hfaces.pop(0)]] + currentisle = 0 + currentface = 0 + found = True + while hfaces: + if not found: + if len(islands[currentisle]) > (currentface + 1): + currentface += 1 + found = True + else: + islands.append([hfaces.pop(0)]) + currentisle += 1 + currentface = 0 + found = True + else: + f = findNeighbour(islands[currentisle][currentface],hfaces) + if f != None: + islands[currentisle].append(hfaces.pop(f)) + else: + found = False + # print len(islands)," islands:",islands + # make new faces from islands + newfaces = [] + treated = [] + for isle in islands: + treated.extend(isle) + fset = [] + for i in isle: fset.append(find(i)) + bounds = getBoundary(fset) + shp = Part.Wire(sortEdges(bounds)) + shp = Part.Face(shp) + if shp.normalAt(0.5,0.5) != find(isle[0]).normalAt(0.5,0.5): + shp.reverse() + newfaces.append(shp) + # print "new faces:",newfaces + # add remaining faces + for f in faceset: + if not f.hashCode() in treated: + newfaces.append(f) + # print "final faces" + # finishing + fshape = Part.makeShell(newfaces) + if shape.isClosed(): + fshape = Part.makeSolid(fshape) + return fshape + + +def isCubic(shape): + '''isCubic(shape): verifies if a shape is cubic, that is, has + 8 vertices, 6 faces, and all angles are 90 degrees.''' + # first we try fast methods + if len(shape.Vertexes) != 8: + return False + if len(shape.Faces) != 6: + return False + if len(shape.Edges) != 12: + return False + for e in shape.Edges: + if not isinstance(e.Curve,Part.Line): + return False + # if ok until now, let's do more advanced testing + for f in shape.Faces: + if len(f.Edges) != 4: return False + for i in range(4): + e1 = vec(f.Edges[i]) + if i < 3: + e2 = vec(f.Edges[i+1]) + else: e2 = vec(f.Edges[0]) + rpi = [0.0,round(math.pi/2,precision)] + if not round(e1.getAngle(e2),precision) in rpi: + return False + return True + +def getCubicDimensions(shape): + '''getCubicDimensions(shape): returns a list containing the placement, + the length, the width and the height of a cubic shape. If not cubic, nothing + is returned. The placement point is the lowest corner of the shape.''' + if not isCubic(shape): return None + # determine lowest face, which will be our base + z = [10,1000000000000] + for i in range(len(shape.Faces)): + if shape.Faces[i].CenterOfMass.z < z[1]: + z = [i,shape.Faces[i].CenterOfMass.z] + if z[0] > 5: return None + base = shape.Faces[z[0]] + basepoint = base.Edges[0].Vertexes[0].Point + plpoint = base.CenterOfMass + basenorm = base.normalAt(0.5,0.5) + # getting length and width + vx = vec(base.Edges[0]) + vy = vec(base.Edges[1]) + # getting rotations + rotZ = fcvec.angle(vx) + rotY = fcvec.angle(vx,FreeCAD.Vector(vx.x,vx.y,0)) + rotX = fcvec.angle(vy,FreeCAD.Vector(vy.x,vy.y,0)) + # getting height + vz = None + rpi = round(math.pi/2,precision) + for i in range(1,6): + for e in shape.Faces[i].Edges: + if basepoint in [e.Vertexes[0].Point,e.Vertexes[1].Point]: + vtemp = vec(e) + # print vtemp + if round(vtemp.getAngle(vx),precision) == rpi: + if round(vtemp.getAngle(vy),precision) == rpi: + vz = vtemp + if not vz: return None + mat = FreeCAD.Matrix() + mat.move(plpoint) + mat.rotateX(rotX) + mat.rotateY(rotY) + mat.rotateZ(rotZ) + return [FreeCAD.Placement(mat),round(vx.Length,precision),round(vy.Length,precision),round(vz.Length,precision)] + +def removeInterVertices(wire): + '''removeInterVertices(wire) - remove unneeded vertices (those that + are in the middle of a straight line) from a wire, returns a new wire.''' + edges = sortEdges(wire.Edges) + nverts = [] + def getvec(v1,v2): + if not abs(round(v1.getAngle(v2),precision) in [0,round(math.pi,precision)]): + nverts.append(edges[i].Vertexes[-1].Point) + for i in range(len(edges)-1): + vA = vec(edges[i]) + vB = vec(edges[i+1]) + getvec(vA,vB) + vA = vec(edges[-1]) + vB = vec(edges[0]) + getvec(vA,vB) + if nverts: + if wire.isClosed(): + nverts.append(nverts[0]) + w = Part.makePolygon(nverts) + return w + else: + return wire + +def arcFromSpline(edge): + """arcFromSpline(edge): turns the given edge into an arc, by taking + its first point, midpoint and endpoint. Works best with bspline + segments such as those from imported svg files. Use this only + if you are sure your edge is really an arc...""" + if isinstance(edge.Curve,Part.Line): + print "This edge is straight, cannot build an arc on it" + return None + if len(edge.Vertexes) > 1: + # 2-point arc + p1 = edge.Vertexes[0].Point + p2 = edge.Vertexes[-1].Point + ml = edge.Length/2 + p3 = edge.valueAt(ml) + try: + return Part.Arc(p1,p3,p2).toShape() + except: + print "Couldn't make an arc out of this edge" + return None + else: + # circle + p1 = edge.Vertexes[0].Point + ml = edge.Length/2 + p2 = edge.valueAt(ml) + ray = p2.sub(p1) + ray.scale(.5,.5,.5) + center = p1.add(ray) + radius = ray.Length + try: + return Part.makeCircle(radius,center) + except: + print "couldn't make a circle out of this edge" + +# circle functions ********************************************************* + +def getBoundaryAngles(angle,alist): + '''returns the 2 closest angles from the list that + encompass the given angle''' + negs = True + while negs: + negs = False + for i in range(len(alist)): + if alist[i] < 0: + alist[i] = 2*math.pi + alist[i] + negs = True + if angle < 0: + angle = 2*math.pi + angle + negs = True + lower = None + for a in alist: + if a < angle: + if lower == None: + lower = a + else: + if a > lower: + lower = a + if lower == None: + lower = 0 + for a in alist: + if a > lower: + lower = a + higher = None + for a in alist: + if a > angle: + if higher == None: + higher = a + else: + if a < higher: + higher = a + if higher == None: + higher = 2*math.pi + for a in alist: + if a < higher: + higher = a + return (lower,higher) + + +def circleFrom2tan1pt(tan1, tan2, point): + "circleFrom2tan1pt(edge, edge, Vector)" + if isinstance(tan1.Curve, Part.Line) and isinstance(tan2.Curve, Part.Line) and isinstance(point, FreeCAD.Vector): + return circlefrom2Lines1Point(tan1, tan2, point) + elif isinstance(tan1.Curve, Part.Circle) and isinstance(tan2.Curve, Part.Line) and isinstance(point, FreeCAD.Vector): + return circlefromCircleLinePoint(tan1, tan2, point) + elif isinstance(tan2.Curve, Part.Circle) and isinstance(tan1.Curve, Part.Line) and isinstance(point, FreeCAD.Vector): + return circlefromCircleLinePoint(tan2, tan1, point) + elif isinstance(tan2.Curve, Part.Circle) and isinstance(tan1.Curve, Part.Circle) and isinstance(point, FreeCAD.Vector): + return circlefrom2Circles1Point(tan2, tan1, point) + +def circleFrom2tan1rad(tan1, tan2, rad): + "circleFrom2tan1rad(edge, edge, float)" + if isinstance(tan1.Curve, Part.Line) and isinstance(tan2.Curve, Part.Line): + return circleFrom2LinesRadius(tan1, tan2, rad) + elif isinstance(tan1.Curve, Part.Circle) and isinstance(tan2.Curve, Part.Line): + return circleFromCircleLineRadius(tan1, tan2, rad) + elif isinstance(tan1.Curve, Part.Line) and isinstance(tan2.Curve, Part.Circle): + return circleFromCircleLineRadius(tan2, tan1, rad) + elif isinstance(tan1.Curve, Part.Circle) and isinstance(tan2.Curve, Part.Circle): + return circleFrom2CirclesRadius(tan1, tan2, rad) + +def circleFrom1tan2pt(tan1, p1, p2): + if isinstance(tan1.Curve, Part.Line) and isinstance(p1, FreeCAD.Vector) and isinstance(p2, FreeCAD.Vector): + return circlefrom1Line2Points(tan1, p1, p2) + if isinstance(tan1.Curve, Part.Line) and isinstance(p1, FreeCAD.Vector) and isinstance(p2, FreeCAD.Vector): + return circlefrom1Circle2Points(tan1, p1, p2) + +def circleFrom1tan1pt1rad(tan1, p1, rad): + if isinstance(tan1.Curve, Part.Line) and isinstance(p1, FreeCAD.Vector): + return circleFromPointLineRadius(p1, tan1, rad) + if isinstance(tan1.Curve, Part.Circle) and isinstance(p1, FreeCAD.Vector): + return circleFromPointCircleRadius(p1, tan1, rad) + +def circleFrom3tan(tan1, tan2, tan3): + tan1IsLine = isinstance(tan1.Curve, Part.Line) + tan2IsLine = isinstance(tan2.Curve, Part.Line) + tan3IsLine = isinstance(tan3.Curve, Part.Line) + tan1IsCircle = isinstance(tan1.Curve, Part.Circle) + tan2IsCircle = isinstance(tan2.Curve, Part.Circle) + tan3IsCircle = isinstance(tan3.Curve, Part.Circle) + if tan1IsLine and tan2IsLine and tan3IsLine: + return circleFrom3LineTangents(tan1, tan2, tan3) + elif tan1IsCircle and tan2IsCircle and tan3IsCircle: + return circleFrom3CircleTangents(tan1, tan2, tan3) + elif (tan1IsCircle and tan2IsLine and tan3IsLine): + return circleFrom1Circle2Lines(tan1, tan2, tan3) + elif (tan1IsLine and tan2IsCircle and tan3IsLine): + return circleFrom1Circle2Lines(tan2, tan1, tan3) + elif (tan1IsLine and tan2IsLine and tan3IsCircle): + return circleFrom1Circle2Lines(tan3, tan1, tan2) + elif (tan1IsLine and tan2IsCircle and tan3IsCircle): + return circleFrom2Circle1Lines(tan2, tan3, tan1) + elif (tan1IsCircle and tan2IsLine and tan3IsCircle): + return circleFrom2Circle1Lines(tan1, tan3, tan2) + elif (tan1IsCircle and tan2IsCircle and tan3IsLine): + return circleFrom2Circle1Lines(tan1, tan2, tan3) + +def circlefrom2Lines1Point(edge1, edge2, point): + "circlefrom2Lines1Point(edge, edge, Vector)" + bis = angleBisection(edge1, edge2) + if not bis: return None + mirrPoint = mirror(point, bis) + return circlefrom1Line2Points(edge1, point, mirrPoint) + +def circlefrom1Line2Points(edge, p1, p2): + "circlefrom1Line2Points(edge, Vector, Vector)" + p1_p2 = edg(p1, p2) + s = findIntersection(edge, p1_p2, True, True) + if not s: return None + s = s[0] + v1 = p1.sub(s) + v2 = p2.sub(s) + projectedDist = math.sqrt(abs(v1.dot(v2))) + edgeDir = vec(edge); edgeDir.normailze() + projectedCen1 = Vector.add(s, fcvec.scale(edgeDir, projectedDist)) + projectedCen2 = Vector.add(s, fcvec.scale(edgeDir, -projectedDist)) + perpEdgeDir = edgeDir.cross(Vector(0,0,1)) + perpCen1 = Vector.add(projectedCen1, perpEdgeDir) + perpCen2 = Vector.add(projectedCen2, perpEdgeDir) + mid = findMidpoint(p1_p2) + x = fcvec.crossproduct(vec(p1_p2)); x.normalize() + perp_mid = Vector.add(mid, x) + cen1 = findIntersection(edg(projectedCen1, perpCen1), edg(mid, perp_mid), True, True) + cen2 = findIntersection(edg(projectedCen2, perpCen2), edg(mid, perp_mid), True, True) + circles = [] + if cen1: + radius = fcvec.dist(projectedCen1, cen1[0]) + circles.append(Part.Circle(cen1[0], NORM, radius)) + if cen2: + radius = fcvec.dist(projectedCen2, cen2[0]) + circles.append(Part.Circle(cen2[0], NORM, radius)) + + if circles: return circles + else: return None + +def circleFrom2LinesRadius (edge1, edge2, radius): + "circleFrom2LinesRadius(edge,edge,radius)" + int = findIntersection(edge1, edge2, True, True) + if not int: return None + int = int[0] + bis12 = angleBisection(edge1,edge2) + bis21 = Part.Line(bis12.Vertexes[0].Point,fcvec.rotate(vec(bis12), math.pi/2.0)) + ang12 = abs(fcvec.angle(vec(edge1),vec(edge2))) + ang21 = math.pi - ang12 + dist12 = radius / math.sin(ang12 * 0.5) + dist21 = radius / math.sin(ang21 * 0.5) + circles = [] + cen = Vector.add(int, fcvec.scale(vec(bis12), dist12)) + circles.append(Part.Circle(cen, NORM, radius)) + cen = Vector.add(int, fcvec.scale(vec(bis12), -dist12)) + circles.append(Part.Circle(cen, NORM, radius)) + cen = Vector.add(int, fcvec.scale(vec(bis21), dist21)) + circles.append(Part.Circle(cen, NORM, radius)) + cen = Vector.add(int, fcvec.scale(vec(bis21), -dist21)) + circles.append(Part.Circle(cen, NORM, radius)) + return circles + +def circleFrom3LineTangents (edge1, edge2, edge3): + "circleFrom3LineTangents(edge,edge,edge)" + def rot(ed): + return Part.Line(v1(ed),v1(ed).add(fcvec.rotate(vec(ed),math.pi/2))).toShape() + bis12 = angleBisection(edge1,edge2) + bis23 = angleBisection(edge2,edge3) + bis31 = angleBisection(edge3,edge1) + intersections = [] + int = findIntersection(bis12, bis23, True, True) + if int: + radius = findDistance(int[0],edge1).Length + intersections.append(Part.Circle(int[0],NORM,radius)) + int = findIntersection(bis23, bis31, True, True) + if int: + radius = findDistance(int[0],edge1).Length + intersections.append(Part.Circle(int[0],NORM,radius)) + int = findIntersection(bis31, bis12, True, True) + if int: + radius = findDistance(int[0],edge1).Length + intersections.append(Part.Circle(int[0],NORM,radius)) + int = findIntersection(rot(bis12), rot(bis23), True, True) + if int: + radius = findDistance(int[0],edge1).Length + intersections.append(Part.Circle(int[0],NORM,radius)) + int = findIntersection(rot(bis23), rot(bis31), True, True) + if int: + radius = findDistance(int[0],edge1).Length + intersections.append(Part.Circle(int[0],NORM,radius)) + int = findIntersection(rot(bis31), rot(bis12), True, True) + if int: + radius = findDistance(int[0],edge1).Length + intersections.append(Part.Circle(int[0],NORM,radius)) + circles = [] + for int in intersections: + exists = False + for cir in circles: + if fcvec.equals(cir.Center, int.Center): + exists = True + break + if not exists: + circles.append(int) + if circles: + return circles + else: + return None + +def circleFromPointLineRadius (point, edge, radius): + "circleFromPointLineRadius (point, edge, radius)" + dist = findDistance(point, edge, False) + center1 = None + center2 = None + if dist.Length == 0: + segment = vec(edge) + perpVec = fcvec.crossproduct(segment); perpVec.normalize() + normPoint_c1 = fcvec.scale(perpVec, radius) + normPoint_c2 = fcvec.scale(perpVec, -radius) + center1 = point.add(normPoint_c1) + center2 = point.add(normPoint_c2) + elif dist.Length > 2 * radius: + return None + elif dist.Length == 2 * radius: + normPoint = point.add(findDistance(point, edge, False)) + dummy = fcvec.scale(normPoint.sub(point), 0.5) + cen = point.add(dummy) + circ = Part.Circle(cen, NORM, radius) + if circ: + return [circ] + else: + return None + else: + normPoint = point.add(findDistance(point, edge, False)) + normDist = fcvec.dist(normPoint, point) + dist = math.sqrt(radius**2 - (radius - normDist)**2) + centerNormVec = fcvec.scaleTo(point.sub(normPoint), radius) + edgeDir = edge.Vertexes[0].Point.sub(normPoint); edgeDir.normalize() + center1 = centerNormVec.add(normPoint.add(fcvec.scale(edgeDir, dist))) + center2 = centerNormVec.add(normPoint.add(fcvec.scale(edgeDir, -dist))) + circles = [] + if center1: + circ = Part.Circle(center1, NORM, radius) + if circ: + circles.append(circ) + if center2: + circ = Part.Circle(center2, NORM, radius) + if circ: + circles.append(circ) + + if len(circles): + return circles + else: + return None + +def circleFrom2PointsRadius(p1, p2, radius): + "circleFrom2PointsRadiust(Vector, Vector, radius)" + if fcvec.equals(p1, p2): return None + + p1_p2 = Part.Line(p1, p2).toShape() + dist_p1p2 = fcvec.dist(p1, p1) + mid = findMidpoint(p1_p2) + if dist_p1p2 == 2*radius: + circle = Part.Circle(mid, norm, radius) + if circle: return [circle] + else: return None + dir = vec(p1_p2); dir.normalize() + perpDir = dir.cross(Vector(0,0,1)); perpDir.normailze() + dist = math.sqrt(radius**2 - (dist_p1p2 / 2.0)**2) + cen1 = Vector.add(mid, fcvec.scale(perpDir, dist)) + cen2 = Vector.add(mid, fcvec.scale(perpDir, -dist)) + circles = [] + if cen1: circles.append(Part.Circle(cen1, norm, radius)) + if cen2: circles.append(Part.Circle(cen2, norm, radius)) + if circles: return circles + else: return None + + + +#############################33 to include + + + + + + + +def outerSoddyCircle(circle1, circle2, circle3): + ''' + Computes the outer soddy circle for three tightly packed circles. + ''' + if isinstance(circle1.Curve, Part.Circle) and isinstance(circle2.Curve, Part.Circle) and isinstance(circle3.Curve, Part.Circle): + # Original Java code Copyright (rc) 2008 Werner Randelshofer + # Converted to python by Martin Buerbaum 2009 + # http://www.randelshofer.ch/treeviz/ + # Either Creative Commons Attribution 3.0, the MIT license, or the GNU Lesser General License LGPL. + + A = circle1.Curve.Center + B = circle2.Curve.Center + C = circle3.Curve.Center + + ra = circle1.Curve.Radius + rb = circle2.Curve.Radius + rc = circle3.Curve.Radius + + # Solution using Descartes' theorem, as described here: + # http://en.wikipedia.org/wiki/Descartes%27_theorem + k1 = 1 / ra + k2 = 1 / rb + k3 = 1 / rc + k4 = abs(k1 + k2 + k3 - 2 * math.sqrt(k1 * k2 + k2 * k3 + k3 * k1)) + + q1 = (k1 + 0j) * (A.x + A.y * 1j) + q2 = (k2 + 0j) * (B.x + B.y * 1j) + q3 = (k3 + 0j) * (C.x + C.y * 1j) + + temp = ((q1 * q2) + (q2 * q3) + (q3 * q1)) + q4 = q1 + q2 + q3 - ((2 + 0j) * cmath.sqrt(temp) ) + + z = q4 / (k4 + 0j) + + # If the formula is not solveable, we return no circle. + if (not z or not (1 / k4)): + return None + + X = -z.real + Y = -z.imag + print "Outer Soddy circle: " + str(X) + " " + str(Y) + "\n" # Debug + + # The Radius of the outer soddy circle can also be calculated with the following formula: + # radiusOuter = abs(r1*r2*r3 / (r1*r2 + r1*r3 + r2*r3 - 2 * math.sqrt(r1*r2*r3 * (r1+r2+r3)))) + circ = Part.Circle(Vector(X, Y, A.z), norm, 1 / k4) + return circ + + else: + print "debug: outerSoddyCircle bad parameters!\n" + # FreeCAD.Console.PrintMessage("debug: outerSoddyCircle bad parameters!\n") + return None + +def innerSoddyCircle(circle1, circle2, circle3): + ''' + Computes the inner soddy circle for three tightly packed circles. + ''' + if isinstance(circle1.Curve, Part.Circle) and isinstance(circle2.Curve, Part.Circle) and isinstance(circle3.Curve, Part.Circle): + # Original Java code Copyright (rc) 2008 Werner Randelshofer + # Converted to python by Martin Buerbaum 2009 + # http://www.randelshofer.ch/treeviz/ + + A = circle1.Curve.Center + B = circle2.Curve.Center + C = circle3.Curve.Center + + ra = circle1.Curve.Radius + rb = circle2.Curve.Radius + rc = circle3.Curve.Radius + + # Solution using Descartes' theorem, as described here: + # http://en.wikipedia.org/wiki/Descartes%27_theorem + k1 = 1 / ra + k2 = 1 / rb + k3 = 1 / rc + k4 = abs(k1 + k2 + k3 + 2 * math.sqrt(k1 * k2 + k2 * k3 + k3 * k1)) + + q1 = (k1 + 0j) * (A.x + A.y * 1j) + q2 = (k2 + 0j) * (B.x + B.y * 1j) + q3 = (k3 + 0j) * (C.x + C.y * 1j) + + temp = ((q1 * q2) + (q2 * q3) + (q3 * q1)) + q4 = q1 + q2 + q3 + ((2 + 0j) * cmath.sqrt(temp) ) + + z = q4 / (k4 + 0j) + + # If the formula is not solveable, we return no circle. + if (not z or not (1 / k4)): + return None + + X = z.real + Y = z.imag + print "Outer Soddy circle: " + str(X) + " " + str(Y) + "\n" # Debug + + # The Radius of the inner soddy circle can also be calculated with the following formula: + # radiusInner = abs(r1*r2*r3 / (r1*r2 + r1*r3 + r2*r3 + 2 * math.sqrt(r1*r2*r3 * (r1+r2+r3)))) + circ = Part.Circle(Vector(X, Y, A.z), norm, 1 / k4) + return circ + + else: + print "debug: innerSoddyCircle bad parameters!\n" + # FreeCAD.Console.PrintMessage("debug: innerSoddyCircle bad parameters!\n") + return None + +def circleFrom3CircleTangents(circle1, circle2, circle3): + ''' + http://en.wikipedia.org/wiki/Problem_of_Apollonius#Inversive_methods + http://mathworld.wolfram.com/ApolloniusCircle.html + http://mathworld.wolfram.com/ApolloniusProblem.html + ''' + + if isinstance(circle1.Curve, Part.Circle) and isinstance(circle2.Curve, Part.Circle) and isinstance(circle3.Curve, Part.Circle): + int12 = findIntersection(circle1, circle2, True, True) + int23 = findIntersection(circle2, circle3, True, True) + int31 = findIntersection(circle3, circle1, True, True) + + if int12 and int23 and int31: + if len(int12) == 1 and len(int23) == 1 and len(int31) == 1: + # Only one intersection with each circle. + # => "Soddy Circle" - 2 solutions. + # http://en.wikipedia.org/wiki/Problem_of_Apollonius#Mutually_tangent_given_circles:_Soddy.27s_circles_and_Descartes.27_theorem + # http://mathworld.wolfram.com/SoddyCircles.html + # http://mathworld.wolfram.com/InnerSoddyCenter.html + # http://mathworld.wolfram.com/OuterSoddyCenter.html + + r1 = circle1.Curve.Radius + r2 = circle2.Curve.Radius + r3 = circle3.Curve.Radius + outerSoddy = outerSoddyCircle(circle1, circle2, circle3) +# print str(outerSoddy) + "\n" # Debug + + innerSoddy = innerSoddyCircle(circle1, circle2, circle3) +# print str(innerSoddy) + "\n" # Debug + + circles = [] + if outerSoddy: + circles.append(outerSoddy) + if innerSoddy: + circles.append(innerSoddy) + return circles + + # @todo Calc all 6 homothetic centers. + # @todo Create 3 lines from the inner and 4 from the outer h. center. + # @todo Calc. the 4 inversion poles of these lines for each circle. + # @todo Calc. the radical center of the 3 circles. + # @todo Calc. the intersection points (max. 8) of 4 lines (trough each inversion pole and the radical center) with the circle. + # This gives us all the tangent points. + else: + # Some circles are inside each other or an error has occured. + return None + + else: + print "debug: circleFrom3CircleTangents bad parameters!\n" + # FreeCAD.Console.PrintMessage("debug: circleFrom3CircleTangents bad parameters!\n") + return None + + +def linearFromPoints (p1, p2): + ''' + Calculate linear equation from points. + Calculate the slope and offset parameters of the linear equation of a line defined by two points. + + Linear equation: + y = m * x + b + m = dy / dx + m ... Slope + b ... Offset (point where the line intersects the y axis) + dx/dy ... Delta x and y. Using both as a vector results in a non-offset direction vector. + ''' + if isinstance(p1, Vector) and isinstance(p2, Vector): + line = {} + line['dx'] = (p2.x - p1.x) + line['dy'] = (p2.y - p1.y) + line['slope'] = line['dy'] / line['dx'] + line['offset'] = p1.y - slope * p1.x + return line + else: + return None + + +def determinant (mat,n): + ''' + determinant(matrix,int) - Determinat function. Returns the determinant + of a n-matrix. It recursively expands the minors. + ''' + matTemp = [[0.0,0.0,0.0],[0.0,0.0,0.0],[0.0,0.0,0.0]] + if (n > 1): + if n == 2: + d = mat[0][0] * mat[1][1] - mat[1][0] * mat[0][1] + else: + d = 0.0 + for j1 in range(n): + # Create minor + for i in range(1, n): + j2 = 0 + for j in range(n): + if j == j1: + continue + matTemp[i-1][j2] = mat[i][j] + j2 += 1 + d += (-1.0)**(1.0 + j1 + 1.0) * mat[0][j1] * determinant(matTemp, n-1) + return d + else: + return 0 + + +def findHomotheticCenterOfCircles(circle1, circle2): + ''' + findHomotheticCenterOfCircles(circle1, circle2) + Calculates the homothetic center(s) of two circles. + + http://en.wikipedia.org/wiki/Homothetic_center + http://mathworld.wolfram.com/HomotheticCenter.html + ''' + + if isinstance(circle1.Curve, Part.Circle) and isinstance(circle2.Curve, Part.Circle): + if fcvec.equals(circle1.Curve.Center, circle2.Curve.Center): + return None + + cen1_cen2 = Part.Line(circle1.Curve.Center, circle2.Curve.Center).toShape() + cenDir = vec(cen1_cen2); cenDir.normalize() + + # Get the perpedicular vector. + perpCenDir = cenDir.cross(Vector(0,0,1)); perpCenDir.normalize() + + # Get point on first circle + p1 = Vector.add(circle1.Curve.Center, fcvec.scale(perpCenDir, circle1.Curve.Radius)) + + centers = [] + # Calculate inner homothetic center + # Get point on second circle + p2_inner = Vector.add(circle1.Curve.Center, fcvec.scale(perpCenDir, -circle1.Curve.Radius)) + hCenterInner = fcvec.intersect(circle1.Curve.Center, circle2.Curve.Center, p1, p2_inner, True, True) + if hCenterInner: + centers.append(hCenterInner) + + # Calculate outer homothetic center (only exists of the circles have different radii) + if circle1.Curve.Radius != circle2.Curve.Radius: + # Get point on second circle + p2_outer = Vector.add(circle1.Curve.Center, fcvec.scale(perpCenDir, circle1.Curve.Radius)) + hCenterOuter = fcvec.intersect(circle1.Curve.Center, circle2.Curve.Center, p1, p2_outer, True, True) + if hCenterOuter: + centers.append(hCenterOuter) + + if len(centers): + return centers + else: + return None + + else: + print "debug: findHomotheticCenterOfCircles bad parameters!\n" + FreeCAD.Console.PrintMessage("debug: findHomotheticCenterOfCirclescleFrom3tan bad parameters!\n") + return None + + +def findRadicalAxis(circle1, circle2): + ''' + Calculates the radical axis of two circles. + On the radical axis (also called power line) of two circles any + tangents drawn from a point on the axis to both circles have the same length. + + http://en.wikipedia.org/wiki/Radical_axis + http://mathworld.wolfram.com/RadicalLine.html + + @sa findRadicalCenter + ''' + + if isinstance(circle1.Curve, Part.Circle) and isinstance(circle2.Curve, Part.Circle): + if fcvec.equals(circle1.Curve.Center, circle2.Curve.Center): + return None + r1 = circle1.Curve.Radius + r2 = circle1.Curve.Radius + cen1 = circle1.Curve.Center + # dist .. the distance from cen1 to cen2. + dist = fcvec.dist(cen1, circle2.Curve.Center) + cenDir = cen1.sub(circle2.Curve.Center); cenDir.normalize() + + # Get the perpedicular vector. + perpCenDir = cenDir.cross(Vector(0,0,1)); perpCenDir.normalize() + + # J ... The radical center. + # K ... The point where the cadical axis crosses the line of cen1->cen2. + # k1 ... Distance from cen1 to K. + # k2 ... Distance from cen2 to K. + # dist = k1 + k2 + + k1 = (dist + (r1^2 - r2^2) / dist) / 2.0 + #k2 = dist - k1 + + K = Vector.add(cen1, fcvec.scale(cenDir, k1)) + + # K_ .. A point somewhere between K and J (actually with a distance of 1 unit from K). + K_ = Vector,add(K, perpCenDir) + + radicalAxis = Part.Line(K, Vector.add(origin, dir)) + + if radicalAxis: + return radicalAxis + else: + return None + else: + print "debug: findRadicalAxis bad parameters!\n" + FreeCAD.Console.PrintMessage("debug: findRadicalAxis bad parameters!\n") + return None + + + +def findRadicalCenter(circle1, circle2, circle3): + ''' + findRadicalCenter(circle1, circle2, circle3): + Calculates the radical center (also called the power center) of three circles. + It is the intersection point of the three radical axes of the pairs of circles. + + http://en.wikipedia.org/wiki/Power_center_(geometry) + http://mathworld.wolfram.com/RadicalCenter.html + + @sa findRadicalAxis + ''' + + if isinstance(circle1.Curve, Part.Circle) and isinstance(circle2.Curve, Part.Circle) and isinstance(circle2.Curve, Part.Circle): + radicalAxis12 = findRadicalAxis(circle1, circle2) + radicalAxis23 = findRadicalAxis(circle1, circle2) + + if not radicalAxis12 or not radicalAxis23: + # No radical center could be calculated. + return None + + int = findIntersection(radicalAxis12, radicalAxis23, True, True) + + if int: + return int + else: + # No radical center could be calculated. + return None + else: + print "debug: findRadicalCenter bad parameters!\n" + FreeCAD.Console.PrintMessage("debug: findRadicalCenter bad parameters!\n") + return None + +def pointInversion(circle, point): + ''' + pointInversion(Circle, Vector) + + Circle inversion of a point. + Will calculate the inversed point an return it. + If the given point is equal to the center of the circle "None" will be returned. + + See also: + http://en.wikipedia.org/wiki/Inversive_geometry + ''' + + if isinstance(circle.Curve, Part.Circle) and isinstance(point, FreeCAD.Vector): + cen = circle.Curve.Center + rad = circle.Curve.Radius + + if fcvec.equals(cen, point): + return None + + # Inverse the distance of the point + # dist(cen -> P) = r^2 / dist(cen -> invP) + + dist = fcvec.dist(point, cen) + invDist = rad**2 / d + + invPoint = Vector(0, 0, point.z) + invPoint.x = cen.x + (point.x - cen.x) * invDist / dist; + invPoint.y = cen.y + (point.y - cen.y) * invDist / dist; + + return invPoint + + else: + print "debug: pointInversion bad parameters!\n" + FreeCAD.Console.PrintMessage("debug: pointInversion bad parameters!\n") + return None + +def polarInversion(circle, edge): + ''' + polarInversion(circle, edge): + Returns the inversion pole of a line. + edge ... The polar. + i.e. The nearest point on the line is inversed. + + http://mathworld.wolfram.com/InversionPole.html + ''' + + if isinstance(circle.Curve, Part.Circle) and isinstance(edge.Curve, Part.Line): + nearest = circle.Curve.Center.add(findDistance(circle.Curve.Center, edge, False)) + if nearest: + inversionPole = pointInversion(circle, nearest) + if inversionPole: + return inversionPole + + else: + print "debug: circleInversionPole bad parameters!\n" + FreeCAD.Console.PrintMessage("debug: circleInversionPole bad parameters!\n") + return None + +def circleInversion(circle, circle2): + ''' + pointInversion(Circle, Circle) + + Circle inversion of a circle. + ''' + if isinstance(circle.Curve, Part.Circle) and isinstance(circle2.Curve, Part.Circle): + cen1 = circle.Curve.Center + rad1 = circle.Curve.Radius + + if fcvec.equals(cen1, point): + return None + + invCen2 = Inversion(circle, circle2.Curve.Center) + + pointOnCircle2 = Vector.add(circle2.Curve.Center, Vector(circle2.Curve.Radius, 0, 0)) + invPointOnCircle2 = Inversion(circle, pointOnCircle2) + + return Part.Circle(invCen2, norm, fcvec.dist(invCen2, invPointOnCircle2)) + + else: + print "debug: circleInversion bad parameters!\n" + FreeCAD.Console.PrintMessage("debug: circleInversion bad parameters!\n") + return None + diff --git a/src/Mod/DDA/draftlibs/fcvec.py b/src/Mod/DDA/draftlibs/fcvec.py new file mode 100644 index 000000000000..79182abceef1 --- /dev/null +++ b/src/Mod/DDA/draftlibs/fcvec.py @@ -0,0 +1,195 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2009, 2010 * +#* Yorik van Havre , Ken Cline * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU General Public License (GPL) * +#* 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 * +#* * +#*************************************************************************** + +__title__="FreeCAD Draft Workbench - Vector library" +__author__ = "Yorik van Havre, Werner Mayer, Martin Burbaum, Ken Cline" +__url__ = ["http://free-cad.sourceforge.net"] + +"a vector math library for FreeCAD" + +import math,FreeCAD +from FreeCAD import Vector, Matrix + +params = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Draft") +def precision(): + return params.GetInt("precision") + +def typecheck (args_and_types, name="?"): + for v,t in args_and_types: + if not isinstance (v,t): + FreeCAD.Console.PrintWarning("typecheck[" + str(name) + "]: " + str(v) + " is not " + str(t) + "\n") + raise TypeError("fcvec." + str(name)) + +def tup(u,array=False): + "returns a tuple (x,y,z) with the vector coords, or an array if array=true" + typecheck ([(u,Vector)], "tup"); + if array: + return [u.x,u.y,u.z] + else: + return (u.x,u.y,u.z) + +def neg(u): + "neg(Vector) - returns an opposite (negative) vector" + typecheck ([(u,Vector)],"neg") + return Vector(-u.x, -u.y, -u.z) + +def equals(u,v): + "returns True if vectors differ by less than precision (from ParamGet), elementwise " + typecheck ([(u,Vector), (v,Vector)], "equals") + return isNull (u.sub(v)) + +def scale(u,scalar): + "scale(Vector,Float) - scales (multiplies) a vector by a factor" + typecheck ([(u,Vector), (scalar,(int,long,float))], "scale") + return Vector(u.x*scalar, u.y*scalar, u.z*scalar) + +def scaleTo(u,l): + "scaleTo(Vector,length) - scales a vector to a given length" + typecheck ([(u,Vector),(l,(int,long,float))], "scaleTo") + if u.Length == 0: + return Vector(u) + else: + a = l/u.Length + return Vector(u.x*a, u.y*a, u.z*a) + +def dist(u, v): + "dist(Vector,Vector) - returns the distance between both points/vectors" + typecheck ([(u,Vector), (v,Vector)], "dist") + x=u.sub(v).Length + return u.sub(v).Length + +def angle(u,v=Vector(1,0,0),normal=Vector(0,0,1)): + ''' + angle(Vector,[Vector],[Vector]) - returns the angle + in radians between the two vectors. If only one is given, + angle is between the vector and the horizontal East direction. + If a third vector is given, it is the normal used to determine + the sign of the angle. + ''' + typecheck ([(u,Vector), (v,Vector)], "angle") + ll = u.Length*v.Length + if ll==0: return 0 + dp=u.dot(v)/ll + if (dp < -1): dp = -1 # roundoff errors can push dp out of the ... + elif (dp > 1): dp = 1 # ...geometrically meaningful interval [-1,1] + ang = math.acos(dp) + normal1 = u.cross(v) + coeff = normal.dot(normal1) + if coeff >= 0: + return ang + else: + return -ang + +def project(u,v): + "project(Vector,Vector): projects the first vector onto the second one" + typecheck([(u,Vector), (v,Vector)], "project") + dp = v.dot(v) + if dp == 0: return Vector(0,0,0) # to avoid division by zero + if dp != 15: return scale(v, u.dot(v)/dp) + return Vector(0,0,0) + +def rotate2D(u,angle): + "rotate2D(Vector,angle): rotates the given vector around the Z axis" + return Vector(math.cos(-angle)*u.x-math.sin(-angle)*u.y, + math.sin(-angle)*u.x+math.cos(-angle)*u.y,u.z) + +def rotate(u,angle,axis=Vector(0,0,1)): + '''rotate(Vector,Float,axis=Vector): rotates the first Vector + around the given axis, at the given angle. + If axis is omitted, the rotation is made on the xy plane.''' + typecheck ([(u,Vector), (angle,(int,long,float)), (axis,Vector)], "rotate") + + if angle == 0: return u + + l=axis.Length + x=axis.x/l + y=axis.y/l + z=axis.z/l + c = math.cos(angle) + s = math.sin(angle) + t = 1 - c; + + xyt = x*y*t + xzt = x*z*t + yzt = y*z*t + xs = x*s + ys = y*s + zs = z*s + + m = Matrix(c + x*x*t, xyt - zs, xzt + ys, 0, + xyt + zs, c + y*y*t, yzt - xs, 0, + xzt - ys, yzt + xs, c + z*z*t, 0) + + return m.multiply(u) + +def isNull(vector): + '''isNull(vector): Tests if a vector is nul vector''' + p = precision() + return (round(vector.x,p)==0 and round(vector.y,p)==0 and round(vector.z,p)==0) + +def find(vector,vlist): + '''find(vector,vlist): finds a vector in a list of vectors. returns + the index of the matching vector, or None if none is found. + ''' + typecheck ([(vector,Vector), (vlist,list)], "find") + for i,v in enumerate(vlist): + if equals(vector,v): + return i + return None + +def isColinear(vlist): + '''isColinear(list_of_vectors): checks if vectors in given list are colinear''' + typecheck ([(vlist,list)], "isColinear"); + if len(vlist) < 3: return True + first = vlist[1].sub(vlist[0]) + for i in range(2,len(vlist)): + if angle(vlist[i].sub(vlist[0]),first) != 0: + return False + return True + +def rounded(v): + "returns a rounded vector" + p = precision() + return Vector(round(v.x,p),round(v.y,p),round(v.z,p)) + +def getPlaneRotation(u,v,w=None): + "returns a rotation matrix defining the (u,v,w) coordinates system" + if not w: w = u.cross(v) + typecheck([(u,Vector), (v,Vector), (w,Vector)], "getPlaneRotation") + m = FreeCAD.Matrix( + u.x,v.x,w.x,0, + u.y,v.y,w.y,0, + u.z,v.z,w.z,0, + 0.0,0.0,0.0,1.0) + return m + +def removeDoubles(vlist): + "removes consecutive doubles from a list of vectors" + typecheck ([(vlist,list)], "removeDoubles"); + nlist = [] + if len(vlist) < 2: return vlist + for i in range(len(vlist)-1): + if not equals(vlist[i],vlist[i+1]): + nlist.append(vlist[i]) + nlist.append(vlist[-1]) + return nlist diff --git a/src/Mod/DDA/drawGui.py b/src/Mod/DDA/drawGui.py new file mode 100644 index 000000000000..3e6183a9766b --- /dev/null +++ b/src/Mod/DDA/drawGui.py @@ -0,0 +1,477 @@ +# coding=gbk + +import FreeCAD, FreeCADGui, os , sys , Base +try: + from PyQt4 import QtCore, QtGui, QtSvg +except: + FreeCAD.Console.PrintMessage("Error: Python-qt4 package must be installed on your system to use the Draft module.") + +#import Base + +def getMainWindow(): + "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") + +FreeCAD.Console.PrintMessage( 'MyDockWidget begin\n') + + + +class todo: + ''' static todo class, delays execution of functions. Use todo.delay + to schedule geometry manipulation that would crash coin if done in the + event callback''' + + '''List of (function, argument) pairs to be executed by + QtCore.QTimer.singleShot(0,doTodo).''' + itinerary = [] + commitlist = [] + + @staticmethod + def doTasks(): + # print "debug: doing delayed tasks: commitlist: ",todo.commitlist," itinerary: ",todo.itinerary + for f, arg in todo.itinerary: + try: + # print "debug: executing",f + if arg: + f(arg) + else: + f() + except: + wrn = "[Draft.todo] Unexpected error:" , sys.exc_info()[0] + FreeCAD.Console.PrintWarning (wrn) + print f , arg + todo.itinerary = [] +# if todo.commitlist: +# for name, func in todo.commitlist: +# # print "debug: committing ",str(name) +# # try: +# name = str(name) +# FreeCAD.ActiveDocument.openTransaction(name) +# func() +# FreeCAD.ActiveDocument.commitTransaction() +## except: +## wrn = "[Draft.todo] Unexpected error:" + sys.exc_info()[0] +## FreeCAD.Console.PrintWarning (wrn) +# todo.commitlist = [] + + @staticmethod + def delay (f, arg): + #print "debug: delaying",f + if todo.itinerary == []: + QtCore.QTimer.singleShot(0, todo.doTasks) + todo.itinerary.append((f, arg)) + +# @staticmethod +# def delayCommit (cl): +# #print "debug: delaying commit",cl +# QtCore.QTimer.singleShot(0, todo.doTasks) +# todo.commitlist = cl + + +class DDALineEdit(QtGui.QLineEdit): + "custom QLineEdit widget that has the power to catch Escape keypress" + def __init__(self, parent=None): + QtGui.QLineEdit.__init__(self, parent) + def keyPressEvent(self, event): + if event.key() == QtCore.Qt.Key_Escape: + self.emit(QtCore.SIGNAL("escaped()")) + elif event.key() == QtCore.Qt.Key_Up: + self.emit(QtCore.SIGNAL("up()")) + elif event.key() == QtCore.Qt.Key_Down: + self.emit(QtCore.SIGNAL("down()")) + elif (event.key() == QtCore.Qt.Key_Z) and QtCore.Qt.ControlModifier: + self.emit(QtCore.SIGNAL("undo()")) + else: + QtGui.QLineEdit.keyPressEvent(self, event) + + +class MyDockWidget: + "main DockWidget" + def __init__(self): + FreeCAD.Console.PrintMessage( 'MyDockWidget init begin\n') + self.taskmode = Base.getParam("UiMode") + self.paramcolor = Base.getParam("color")>>8 + self.color = QtGui.QColor(self.paramcolor) + self.facecolor = QtGui.QColor(204, 204, 204) + self.linewidth = Base.getParam("linewidth") + self.fontsize = Base.getParam("textheight") + self.paramconstr = Base.getParam("constructioncolor")>>8 + self.constrMode = False + self.continueMode = False + self.state = None + self.textbuffer = [] + self.crossedViews = [] + self.tray = None + self.sourceCmd = None + self.dockWidget = QtGui.QDockWidget() + self.mw = getMainWindow() + self.mw.addDockWidget(QtCore.Qt.TopDockWidgetArea, self.dockWidget) + self.centralWidget = QtGui.QWidget() + #self.label = QtGui.QLabel(self.dockWidget) + #self.label.setText("abc") + self.dockWidget.setWidget(self.centralWidget) + self.dockWidget.setVisible(False) + self.dockWidget.toggleViewAction().setVisible(False) + self.layout = QtGui.QHBoxLayout(self.centralWidget) + self.layout.setObjectName("layout") + self.setupToolBar() + self.setupTray() + self.setupStyle() + FreeCAD.Console.PrintMessage( 'MyDockWidget init done\n') + +#--------------------------------------------------------------------------- +# General UI setup +#--------------------------------------------------------------------------- + def _pushbutton (self, name, layout, hide=True, icon=None, width=66, checkable=False): + button = QtGui.QPushButton(self.dockWidget) + button.setObjectName(name) + button.setMaximumSize(QtCore.QSize(width, 26)) + if hide: + button.hide() + if icon: + button.setIcon(QtGui.QIcon(':/icons/' + icon + '.svg')) + button.setIconSize(QtCore.QSize(16, 16)) + if checkable: + button.setCheckable(True) + button.setChecked(False) + layout.addWidget(button) + return button + + def _label (self, name, layout, hide=True): + label = QtGui.QLabel(self.dockWidget) + label.setObjectName(name) + if hide: label.hide() + layout.addWidget(label) + return label + + def _lineedit (self, name, layout, hide=True, width=None): + lineedit = DDALineEdit(self.dockWidget) + lineedit.setObjectName(name) + if hide: lineedit.hide() + if not width: width = 800 + lineedit.setMaximumSize(QtCore.QSize(width, 22)) + layout.addWidget(lineedit) + return lineedit + + def _spinbox (self, name, layout, val=None, vmax=None, hide=True, double=False, size=None): + if double: + sbox = QtGui.QDoubleSpinBox(self.dockWidget) + sbox.setDecimals(2) + else: + sbox = QtGui.QSpinBox(self.dockWidget) + sbox.setObjectName(name) + if val: sbox.setValue(val) + if vmax: sbox.setMaximum(vmax) + if size: sbox.setMaximumSize(QtCore.QSize(size[0], size[1])) + if hide: sbox.hide() + layout.addWidget(sbox) + return sbox + + def _checkbox (self, name, layout, checked=True, hide=True): + chk = QtGui.QCheckBox(self.dockWidget) + chk.setChecked(checked) + chk.setObjectName(name) + if hide: chk.hide() + layout.addWidget(chk) + return chk + + def cross(self, on=True): + if on: + if not self.crossedViews: + mw = getMainWindow() + self.crossedViews = mw.findChildren(QtGui.QFrame, "SoQtWidgetName") + for w in self.crossedViews: + w.setCursor(QtCore.Qt.CrossCursor) + else: + for w in self.crossedViews: + w.unsetCursor() + self.crossedViews = [] + + def setTitle(self, title): + if self.taskmode: + self.dockWidget.setWindowTitle(title) + else: + self.cmdlabel.setText(title) + + def setupToolBar(self, task=False): + "sets the draft toolbar up" + + # command + + self.promptlabel = self._label("promptlabel", self.layout, hide=task) + self.cmdlabel = self._label("cmdlabel", self.layout, hide=task) + boldtxt = QtGui.QFont() + boldtxt.setWeight(75) + boldtxt.setBold(True) + self.cmdlabel.setFont(boldtxt) + + # point + + xl = QtGui.QHBoxLayout() + yl = QtGui.QHBoxLayout() + zl = QtGui.QHBoxLayout() + self.layout.addLayout(xl) + self.layout.addLayout(yl) + self.layout.addLayout(zl) + self.labelx = self._label("labelx", xl) + self.xValue = self._lineedit("xValue", xl, width=60) + self.xValue.setText("0.00") + self.labely = self._label("labely", yl) + self.yValue = self._lineedit("yValue", yl, width=60) + self.yValue.setText("0.00") + self.labelz = self._label("labelz", zl) + self.zValue = self._lineedit("zValue", zl, width=60) + self.zValue.setText("0.00") + self.textValue = self._lineedit("textValue", self.layout) + + + # circle radius + self.labelRadius = self._label("labelRadius", self.layout) + self.radiusValue = self._lineedit("radiusValue", self.layout, width=60) + self.radiusValue.setText("0.00") + + # spacer + if not self.taskmode: + spacerItem = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, + QtGui.QSizePolicy.Minimum) + else: + spacerItem = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, + QtGui.QSizePolicy.Expanding) + self.layout.addItem(spacerItem) + + + def offUi(self): + if self.taskmode: + self.isTaskOn = False + todo.delay(FreeCADGui.Control.closeDialog, None) + self.baseWidget = QtGui.QWidget() + # print "UI turned off" + else: + self.setTitle("None") + self.labelx.setText( "X") + self.labelx.hide() + self.labely.hide() + self.labelz.hide() + self.xValue.hide() + self.yValue.hide() + self.zValue.hide() + + def setupTray(self): + FreeCAD.Console.PrintMessage( 'MyDockWidget setting tray\n') + pass + + def setupStyle(self): + style = "#constrButton:Checked {background-color: " + style += self.getDefaultColor("constr", rgb=True) + " } " + style += "#addButton:Checked, #delButton:checked {" + style += "background-color: rgb(20,100,250) }" + self.dockWidget.setStyleSheet(style) + + def displayPoint(self, point, last=None, plane=None): + "this function displays the passed coords in the x, y, and z widgets" + dp = point + self.xValue.setText("%.2f" % dp.x) + self.yValue.setText("%.2f" % dp.y) + if self.zValue.isEnabled(): self.zValue.setText("%.2f" % dp.z) + if self.xValue.isEnabled(): + #self.xValue.setFocus() #不关闭些项,按Ecaspe等键的操作便无法再使用 + self.xValue.selectAll() + else: + #self.yValue.setFocus() + self.yValue.selectAll() + + def getDefaultColor(self, type, rgb=False): + "gets color from the preferences or toolbar" + if type == "snap": + color = Base.getParam("snapcolor") + r = ((color >> 24) & 0xFF) / 255 + g = ((color >> 16) & 0xFF) / 255 + b = ((color >> 8) & 0xFF) / 255 + elif type == "ui": + r = float(self.color.red() / 255.0) + g = float(self.color.green() / 255.0) + b = float(self.color.blue() / 255.0) + elif type == "face": + r = float(self.facecolor.red() / 255.0) + g = float(self.facecolor.green() / 255.0) + b = float(self.facecolor.blue() / 255.0) + elif type == "constr": + color = QtGui.QColor(Base.getParam("constructioncolor") >> 8) + r = color.red() / 255.0 + g = color.green() / 255.0 + b = color.blue() / 255.0 + else: print "draft: error: couldn't get a color for ", type, " type." + if rgb: + return("rgb(" + str(int(r * 255)) + "," + str(int(g * 255)) + "," + str(int(b * 255)) + ")") + else: + return (r, g, b) + +#--------------------------------------------------------------------------- +# Processing functions +#--------------------------------------------------------------------------- + def checkx(self): + if self.yValue.isEnabled(): + self.yValue.setFocus() + self.yValue.selectAll() + else: + self.checky() + + def checky(self): + if self.zValue.isEnabled(): + self.zValue.setFocus() + self.zValue.selectAll() + else: + self.validatePoint() + + def validatePoint(self): + "function for checking and sending numbers entered manually" + if self.sourceCmd != None: + if self.labelx.isVisible() and self.labely.isVisible() and self.labelz.isVisible(): + errorTags = [] + try: + numx = float(self.xValue.text()) + except ValueError: + errorTags.append('x') + + try: + numy = float(self.yValue.text()) + except ValueError: + errorTags.append('y') + + try: + numz = float(self.zValue.text()) + except ValueError: + errorTags.append('z') + + if len(errorTags) > 0: + msg = 'please input float for ' + for str in errorTags: + msg = msg + str + ' ' + + box = QtGui.QMessageBox(QtGui.QMessageBox.Critical , "ValueError" , msg) + box.show() + self.xValue.setFocus() + self.xValue.selectAll() + else: + self.sourceCmd.numericInput(numx, numy, numz) + + + + def setRadiusValue(self, val): + self.radiusValue.setText("%.2f" % val) + self.radiusValue.setFocus() + self.radiusValue.selectAll() + +#--------------------------------------------------------------------------- +# Interface modes +#--------------------------------------------------------------------------- + + def taskUi(self, title): + if self.taskmode: + self.isTaskOn = True + FreeCADGui.Control.closeDialog() + self.baseWidget = QtGui.QWidget() + self.setTitle(title) + self.layout = QtGui.QVBoxLayout(self.baseWidget) + self.setupToolBar(task=True) + self.retranslateUi(self.baseWidget) + self.panel = DraftTaskPanel(self.baseWidget) + FreeCADGui.Control.showDialog(self.panel) + else: + self.setTitle(title) + + def lineUi(self): + self.pointUi("Line") + self.xValue.setEnabled(True) + self.yValue.setEnabled(True) + self.zValue.setEnabled(False) + + def pointUi(self, title= "Point"): + self.taskUi(title) + self.xValue.setEnabled(True) + self.yValue.setEnabled(True) + self.labelx.setText("X") + self.labelx.show() + self.labely.setText("Y") + self.labely.show() + self.labelz.setText("Z") + self.labelz.show() + self.xValue.show() + self.yValue.show() + self.zValue.show() + self.xValue.setFocus() + self.xValue.selectAll() + + def circleUi(self): + self.pointUi("Circle") + self.labelx.setText( "Center X") + + def radiusUi(self): + self.labelx.hide() + self.labely.hide() + self.labelz.hide() + self.xValue.hide() + self.yValue.hide() + self.zValue.hide() + self.labelRadius.setText( "Radius") + self.labelRadius.show() + self.radiusValue.show() + + +#--------------------------------------------------------------------------- +# TaskView operations +#--------------------------------------------------------------------------- + + def setWatchers(self): # 工具栏的内容 + print "adding draft widgets to taskview..." + class DDACreateWatcher: + def __init__(self): + self.commands = ["DDA_Line"] + self.title = "Create objects" + FreeCAD.Console.PrintMessage( 'MyDockWidget watchers init done\n') + def shouldShow(self): + sign = (FreeCAD.ActiveDocument != None) and (not FreeCADGui.Selection.getSelection()) + if sign: + FreeCAD.Console.PrintMessage( 'MyDockWidget watchers showing\n') + return sign + FreeCADGui.Control.addTaskWatcher([DDACreateWatcher()]) # 添加的watcher会做功能显示出来,被FreeCAD监控 + FreeCAD.Console.PrintMessage( 'MyDockWidget watchers added\n') + + def show(self): + if not self.taskmode: + self.dockWidget.setVisible(True) + + + def Activated(self): + FreeCAD.Console.PrintMessage( 'MyDockWidget activing\n') + if self.taskmode: + FreeCAD.Console.PrintMessage( 'MyDockWidget setting watchers\n') + self.setWatchers() + else: + FreeCAD.Console.PrintMessage( 'MyDockWidget visible\n') + self.dockWidget.setVisible(True) + self.dockWidget.toggleViewAction().setVisible(True) + + def Deactivated(self): + if (FreeCAD.activeDDACommand != None): + FreeCAD.activeDDACommand.finish() + if self.taskmode: + FreeCADGui.Control.clearTaskWatcher() + self.tray = None + else: + self.dockWidget.setVisible(False) + self.dockWidget.toggleViewAction().setVisible(False) + +p = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/DDA") +print 'fixed point color :' , p.GetUnsigned('fixedpointcolor') +print 'loading point color :' , p.GetUnsigned('loadingpointcolor') +#t = p.GetFloat("snapRange") +#print t +FreeCADGui.DDADockWidget = MyDockWidget() \ No newline at end of file diff --git a/src/Mod/DDA/fcgeo.py b/src/Mod/DDA/fcgeo.py new file mode 100644 index 000000000000..1a5c94b7ad3a --- /dev/null +++ b/src/Mod/DDA/fcgeo.py @@ -0,0 +1,1813 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2009, 2010 * +#* Yorik van Havre , Ken Cline * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU General Public License (GPL) * +#* 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 * +#* * +#*************************************************************************** + +__title__="FreeCAD Draft Workbench - Geometry library" +__author__ = "Yorik van Havre, Jacques-Antoine Gaudin, Ken Cline" +__url__ = ["http://free-cad.sourceforge.net"] + +"this file contains generic geometry functions for manipulating Part shapes" + +import FreeCAD, Part, fcvec, math, cmath, FreeCADGui +from FreeCAD import Vector + +NORM = Vector(0,0,1) # provisory normal direction for all geometry ops. + +params = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Draft") +precision = params.GetInt("precision") + +# Generic functions ********************************************************* + + +def vec(edge): + "vec(edge) or vec(line) -- returns a vector from an edge or a Part.line" + # if edge is not straight, you'll get strange results! + if isinstance(edge,Part.Shape): + return edge.Vertexes[-1].Point.sub(edge.Vertexes[0].Point) + elif isinstance(edge,Part.Line): + return edge.EndPoint.sub(edge.StartPoint) + else: + return None + +def edg(p1,p2): + "edg(Vector,Vector) -- returns an edge from 2 vectors" + if isinstance(p1,FreeCAD.Vector) and isinstance(p2,FreeCAD.Vector): + if fcvec.equals(p1,p2): return None + else: return Part.Line(p1,p2).toShape() + +def getVerts(shape): + "getVerts(shape) -- returns a list containing vectors of each vertex of the shape" + p = [] + for v in shape.Vertexes: + p.append(v.Point) + return p + +def v1(edge): + "v1(edge) -- returns the first point of an edge" + return edge.Vertexes[0].Point + +def isNull(something): + '''returns true if the given shape is null or the given placement is 0 or + if the given vector is (0,0,0)''' + if isinstance(something,Part.Shape): + return something.isNull() + elif isinstance(something,FreeCAD.Vector): + if something == Vector(0,0,0): + return True + else: + return False + elif isinstance(something,FreeCAD.Placement): + if (something.Base == Vector(0,0,0)) and (something.Rotation.Q == (0,0,0,1)): + return True + else: + return False + +def isPtOnEdge(pt,edge) : + '''isPtOnEdge(Vector,edge) -- Tests if a point is on an edge''' + if isinstance(edge.Curve,Part.Line) : + orig = edge.Vertexes[0].Point + if fcvec.isNull(pt.sub(orig).cross(vec(edge))) : + return pt.sub(orig).Length <= vec(edge).Length and pt.sub(orig).dot(vec(edge)) >= 0 + else : + return False + + elif isinstance(edge.Curve,Part.Circle) : + center = edge.Curve.Center + axis = edge.Curve.Axis ; axis.normalize() + radius = edge.Curve.Radius + if round(pt.sub(center).dot(axis),precision) == 0 \ + and round(pt.sub(center).Length - radius,precision) == 0 : + if len(edge.Vertexes) == 1 : + return True # edge is a complete circle + else : + begin = edge.Vertexes[0].Point + end = edge.Vertexes[-1].Point + if fcvec.isNull(pt.sub(begin)) or fcvec.isNull(pt.sub(end)) : + return True + else : + # newArc = Part.Arc(begin,pt,end) + # return fcvec.isNull(newArc.Center.sub(center)) \ + # and fcvec.isNull(newArc.Axis-axis) \ + # and round(newArc.Radius-radius,precision) == 0 + angle1 = fcvec.angle(begin.sub(center)) + angle2 = fcvec.angle(end.sub(center)) + anglept = fcvec.angle(pt.sub(center)) + if (angle1 < anglept) and (anglept < angle2): + return True + return False + +def hasCurves(shape): + "checks if the given shape has curves" + for e in shape.Edges: + if not isInstance(e.Curve,Part.Line): + return True + return False + +# edge functions ***************************************************************** + +def findEdge(anEdge,aList): + '''findEdge(anEdge,aList): returns True if anEdge is found in aList of edges''' + for e in range(len(aList)): + if str(anEdge.Curve) == str(aList[e].Curve): + if fcvec.equals(anEdge.Vertexes[0].Point,aList[e].Vertexes[0].Point): + if fcvec.equals(anEdge.Vertexes[-1].Point,aList[e].Vertexes[-1].Point): + return(e) + return None + + +def findIntersection(edge1,edge2,infinite1=False,infinite2=False,ex1=False,ex2=False) : + '''findIntersection(edge1,edge2,infinite1=False,infinite2=False): + returns a list containing the intersection point(s) of 2 edges. + You can also feed 4 points instead of edge1 and edge2''' + + pt1 = None + + if isinstance(edge1,FreeCAD.Vector) and isinstance(edge2,FreeCAD.Vector): + # we got points directly + pt1 = edge1 + pt2 = edge2 + pt3 = infinite1 + pt4 = infinite2 + infinite1 = ex1 + infinite2 = ex2 + + elif isinstance(edge1.Curve,Part.Line) and isinstance(edge2.Curve,Part.Line) : + # we have 2 edges + pt1, pt2, pt3, pt4 = [edge1.Vertexes[0].Point, + edge1.Vertexes[1].Point, + edge2.Vertexes[0].Point, + edge2.Vertexes[1].Point] + + if pt1: + # first check if we don't already have coincident endpoints + if (pt1 in [pt3,pt4]): + return [pt1] + elif (pt2 in [pt3,pt4]): + return [pt2] + + #we have 2 straight lines + if fcvec.isNull(pt2.sub(pt1).cross(pt3.sub(pt1)).cross(pt2.sub(pt4).cross(pt3.sub(pt4)))): + vec1 = pt2.sub(pt1) ; vec2 = pt4.sub(pt3) + if fcvec.isNull(vec1) or fcvec.isNull(vec2): + return [] + vec1.normalize() ; vec2.normalize() + cross = vec1.cross(vec2) + if not fcvec.isNull(cross) : + k = ((pt3.z-pt1.z)*(vec2.x-vec2.y)+(pt3.y-pt1.y)*(vec2.z-vec2.x)+ \ + (pt3.x-pt1.x)*(vec2.y-vec2.z))/(cross.x+cross.y+cross.z) + vec1.scale(k,k,k) + int = pt1.add(vec1) + + if infinite1 == False and not isPtOnEdge(int,edge1) : + return [] + + if infinite2 == False and not isPtOnEdge(int,edge2) : + return [] + + return [int] + else : + return [] # Lines have same direction + else : + return [] # Lines aren't on same plane + + elif isinstance(edge1.Curve,Part.Circle) and isinstance(edge2.Curve,Part.Line) \ + or isinstance(edge1.Curve,Part.Line) and isinstance(edge2.Curve,Part.Circle) : + + # deals with an arc or circle and a line + + edges = [edge1,edge2] + for edge in edges : + if isinstance(edge.Curve,Part.Line) : + line = edge + else : + arc = edge + + dirVec = vec(line) ; dirVec.normalize() + pt1 = line.Vertexes[0].Point + pt2 = line.Vertexes[1].Point + pt3 = arc.Vertexes[0].Point + pt4 = arc.Vertexes[-1].Point + center = arc.Curve.Center + + # first check for coincident endpoints + if (pt1 in [pt3,pt4]): + return [pt1] + elif (pt2 in [pt3,pt4]): + return [pt2] + + if fcvec.isNull(pt1.sub(center).cross(pt2.sub(center)).cross(arc.Curve.Axis)) : + # Line and Arc are on same plane + + dOnLine = center.sub(pt1).dot(dirVec) + onLine = Vector(dirVec) ; onLine.scale(dOnLine,dOnLine,dOnLine) + toLine = pt1.sub(center).add(onLine) + + if toLine.Length < arc.Curve.Radius : + dOnLine = (arc.Curve.Radius**2 - toLine.Length**2)**(0.5) + onLine = Vector(dirVec) ; onLine.scale(dOnLine,dOnLine,dOnLine) + int = [center.add(toLine).add(onLine)] + onLine = Vector(dirVec) ; onLine.scale(-dOnLine,-dOnLine,-dOnLine) + int += [center.add(toLine).add(onLine)] + elif round(toLine.Length-arc.Curve.Radius,precision) == 0 : + int = [center.add(toLine)] + else : + return [] + + else : # Line isn't on Arc's plane + if dirVec.dot(arc.Curve.Axis) != 0 : + toPlane = Vector(arc.Curve.Axis) ; toPlane.normalize() + d = vec1.dot(toPlane) + dToPlane = center.sub(pt1).dot(toPlane) + toPlane = Vector(vec1) + toPlane.scale(dToPlane/d,dToPlane/d,dToPlane/d) + ptOnPlane = toPlane.add(pt1) + if round(ptOnPlane.sub(center).Length - arc.Curve.Radius,precision) == 0 : + int = [ptOnPlane] + else : + return [] + else : + return [] + + if infinite1 == False : + for i in range(len(int)-1,-1,-1) : + if not isPtOnEdge(int[i],edge1) : + del int[i] + if infinite2 == False : + for i in range(len(int)-1,-1,-1) : + if not isPtOnEdge(int[i],edge2) : + del int[i] + return int + + elif isinstance(edge1.Curve,Part.Circle) and isinstance(edge2.Curve,Part.Circle) : + + # deals with 2 arcs or circles + + cent1, cent2 = edge1.Curve.Center, edge2.Curve.Center + rad1 , rad2 = edge1.Curve.Radius, edge2.Curve.Radius + axis1, axis2 = edge1.Curve.Axis , edge2.Curve.Axis + c2c = cent2.sub(cent1) + + if fcvec.isNull(axis1.cross(axis2)) : + if round(c2c.dot(axis1),precision) == 0 : + # circles are on same plane + dc2c = c2c.Length ; + if not fcvec.isNull(c2c): c2c.normalize() + if round(rad1+rad2-dc2c,precision) < 0 \ + or round(rad1-dc2c-rad2,precision) > 0 or round(rad2-dc2c-rad1,precision) > 0 : + return [] + else : + norm = c2c.cross(axis1) + if not fcvec.isNull(norm): norm.normalize() + if fcvec.isNull(norm): x = 0 + else: x = (dc2c**2 + rad1**2 - rad2**2)/(2*dc2c) + y = abs(rad1**2 - x**2)**(0.5) + c2c.scale(x,x,x) + if round(y,precision) != 0 : + norm.scale(y,y,y) + int = [cent1.add(c2c).add(norm)] + int += [cent1.add(c2c).sub(norm)] + else : + int = [cent1.add(c2c)] + else : + return [] # circles are on parallel planes + else : + # circles aren't on same plane + axis1.normalize() ; axis2.normalize() + U = axis1.cross(axis2) + V = axis1.cross(U) + dToPlane = c2c.dot(axis2) + d = V.add(cent1).dot(axis2) + V.scale(dToPlane/d,dToPlane/d,dToPlane/d) + PtOn2Planes = V.add(cent1) + planeIntersectionVector = U.add(PtOn2Planes) + intTemp = findIntersection(planeIntersectionVector,edge1,True,True) + int = [] + for pt in intTemp : + if round(pt.sub(cent2).Length-rad2,precision) == 0 : + int += [pt] + + if infinite1 == False : + for i in range(len(int)-1,-1,-1) : + if not isPtOnEdge(int[i],edge1) : + del int[i] + if infinite2 == False : + for i in range(len(int)-1,-1,-1) : + if not isPtOnEdge(int[i],edge2) : + del int[i] + + return int + else : + print "fcgeo: Unsupported curve type: (" + str(edge1.Curve) + ", " + str(edge2.Curve) + ")" + + +def mirror (point, edge): + "finds mirror point relative to an edge" + normPoint = point.add(findDistance(point, edge, False)) + if normPoint: + normPoint_point = Vector.sub(point, normPoint) + normPoint_refl = fcvec.neg(normPoint_point) + refl = Vector.add(normPoint, normPoint_refl) + return refl + else: + return None + +def findClosest(basepoint,pointslist): + ''' + findClosest(vector,list) + in a list of 3d points, finds the closest point to the base point. + an index from the list is returned. + ''' + if not pointslist: return None + smallest = 100000 + for n in range(len(pointslist)): + new = basepoint.sub(pointslist[n]).Length + if new < smallest: + smallest = new + npoint = n + return npoint + +def concatenate(shape): + "concatenate(shape) -- turns several faces into one" + edges = getBoundary(shape) + edges = sortEdges(edges) + try: + wire=Part.Wire(edges) + face=Part.Face(wire) + except: + print "fcgeo: Couldn't join faces into one" + return(shape) + else: + if not wire.isClosed(): return(wire) + else: return(face) + +def getBoundary(shape): + "getBoundary(shape) -- this function returns the boundary edges of a group of faces" + # make a lookup-table where we get the number of occurrences + # to each edge in the fused face + if isinstance(shape,list): + shape = Part.makeCompound(shape) + lut={} + for f in shape.Faces: + for e in f.Edges: + hc= e.hashCode() + if lut.has_key(hc): lut[hc]=lut[hc]+1 + else: lut[hc]=1 + # filter out the edges shared by more than one sub-face + bound=[] + for e in shape.Edges: + if lut[e.hashCode()] == 1: bound.append(e) + return bound + +def sortEdges(lEdges, aVertex=None): + "an alternative, more accurate version of Part.__sortEdges__" + + #There is no reason to limit this to lines only because every non-closed edge always + #has exactly two vertices (wmayer) + #for e in lEdges: + # if not isinstance(e.Curve,Part.Line): + # print "Warning: sortedges cannot treat wired containing curves yet." + # return lEdges + + def isSameVertex(V1, V2): + ''' Test if vertexes have same coordinates with precision 10E(-precision)''' + if round(V1.X-V2.X,1)==0 and round(V1.Y-V2.Y,1)==0 and round(V1.Z-V2.Z,1)==0 : + return True + else : + return False + + def lookfor(aVertex, inEdges): + ''' Look for (aVertex, inEdges) returns count, the position of the instance + the position in the instance and the instance of the Edge''' + count = 0 + linstances = [] #lists the instances of aVertex + for i in range(len(inEdges)) : + for j in range(2) : + if isSameVertex(aVertex,inEdges[i].Vertexes[j-1]): + instance = inEdges[i] + count += 1 + linstances += [i,j-1,instance] + return [count]+linstances + + if (len(lEdges) < 2): + if aVertex == None: + return lEdges + else: + result = lookfor(aVertex,lEdges) + if result[0] != 0: + if isSameVertex(aVertex,result[3].Vertexes[0]): + return lEdges + else: + if isinstance(result[3].Curve,Part.Line): + return [Part.Line(aVertex.Point,result[3].Vertexes[0].Point).toShape()] + elif isinstance(result[3].Curve,Part.Circle): + mp = findMidpoint(result[3]) + return [Part.Arc(aVertex.Point,mp,result[3].Vertexes[0].Point).toShape()] + else: + return lEdges + + olEdges = [] # ol stands for ordered list + if aVertex == None: + for i in range(len(lEdges)*2) : + if len(lEdges[i/2].Vertexes) > 1: + result = lookfor(lEdges[i/2].Vertexes[i%2],lEdges) + if result[0] == 1 : # Have we found an end ? + olEdges = sortEdges(lEdges, result[3].Vertexes[result[2]]) + return olEdges + # if the wire is closed there is no end so choose 1st Vertex + return sortEdges(lEdges, lEdges[0].Vertexes[0]) + else : + result = lookfor(aVertex,lEdges) + if result[0] != 0 : + del lEdges[result[1]] + next = sortEdges(lEdges, result[3].Vertexes[-((-result[2])^1)]) + if isSameVertex(aVertex,result[3].Vertexes[0]): + olEdges += [result[3]] + next + else: + if isinstance(result[3].Curve,Part.Line): + newedge = Part.Line(aVertex.Point,result[3].Vertexes[0].Point).toShape() + olEdges += [newedge] + next + elif isinstance(result[3].Curve,Part.Circle): + mp = findMidpoint(result[3]) + newedge = Part.Arc(aVertex.Point,mp,result[3].Vertexes[0].Point).toShape() + olEdges += [newedge] + next + else: + olEdges += [result[3]] + next + return olEdges + else : + return [] + + +def superWire(edgeslist,closed=False): + '''superWire(edges,[closed]): forces a wire between edges that don't necessarily + have coincident endpoints. If closed=True, wire will always be closed''' + def median(v1,v2): + vd = v2.sub(v1) + vd.scale(.5,.5,.5) + return v1.add(vd) + edges = sortEdges(edgeslist) + print edges + newedges = [] + for i in range(len(edges)): + curr = edges[i] + if i == 0: + if closed: + prev = edges[-1] + else: + prev = None + else: + prev = edges[i-1] + if i == (len(edges)-1): + if closed: + next = edges[0] + else: + next = None + else: + next = edges[i+1] + print i,prev,curr,next + if prev: + if curr.Vertexes[0].Point == prev.Vertexes[-1].Point: + p1 = curr.Vertexes[0].Point + else: + p1 = median(curr.Vertexes[0].Point,prev.Vertexes[-1].Point) + else: + p1 = curr.Vertexes[0].Point + if next: + if curr.Vertexes[-1].Point == next.Vertexes[0].Point: + p2 = next.Vertexes[0].Point + else: + p2 = median(curr.Vertexes[-1].Point,next.Vertexes[0].Point) + else: + p2 = curr.Vertexes[-1].Point + if isinstance(curr.Curve,Part.Line): + print "line",p1,p2 + newedges.append(Part.Line(p1,p2).toShape()) + elif isinstance(curr.Curve,Part.Circle): + p3 = findMidpoint(curr) + print "arc",p1,p3,p2 + newedges.append(Part.Arc(p1,p3,p2).toShape()) + else: + print "Cannot superWire edges that are not lines or arcs" + return None + print newedges + return Part.Wire(newedges) + +def findMidpoint(edge): + "calculates the midpoint of an edge" + first = edge.Vertexes[0].Point + last = edge.Vertexes[-1].Point + if isinstance(edge.Curve,Part.Circle): + center = edge.Curve.Center + radius = edge.Curve.Radius + if len(edge.Vertexes) == 1: + # Circle + dv = first.sub(center) + dv = fcvec.neg(dv) + return center.add(dv) + axis = edge.Curve.Axis + chord = last.sub(first) + perp = chord.cross(axis) + perp.normalize() + ray = first.sub(center) + apothem = ray.dot(perp) + sagitta = radius - apothem + startpoint = Vector.add(first, fcvec.scale(chord,0.5)) + endpoint = fcvec.scaleTo(perp,sagitta) + return Vector.add(startpoint,endpoint) + + elif isinstance(edge.Curve,Part.Line): + halfedge = fcvec.scale(last.sub(first),.5) + return Vector.add(first,halfedge) + + else: + return None + +def complexity(obj): + ''' + tests given object for shape complexity: + 1: line + 2: arc + 3: circle + 4: open wire with no arc + 5: closed wire + 6: wire with arcs + 7: faces + 8: faces with arcs + ''' + shape = obj.Shape + if shape.Faces: + for e in shape.Edges: + if (isinstance(e.Curve,Part.Circle)): return 8 + return 7 + if shape.Wires: + for e in shape.Edges: + if (isinstance(e.Curve,Part.Circle)): return 6 + for w in shape.Wires: + if w.isClosed(): return 5 + return 4 + if (isinstance(shape.Edges[0].Curve,Part.Circle)): + if len(shape.Vertexes) == 1: + return 3 + return 2 + return 1 + +def findPerpendicular(point,edgeslist,force=None): + ''' + findPerpendicular(vector,wire,[force]): + finds the shortest perpendicular distance between a point and an edgeslist. + If force is specified, only the edge[force] will be considered, and it will be + considered infinite. + The function will return a list [vector_from_point_to_closest_edge,edge_index] + or None if no perpendicular vector could be found. + ''' + if not isinstance(edgeslist,list): + try: + edgeslist = edgeslist.Edges + except: + return None + if (force == None): + valid = None + for edge in edgeslist: + dist = findDistance(point,edge,strict=True) + if dist: + if not valid: valid = [dist,edgeslist.index(edge)] + else: + if (dist.Length < valid[0].Length): + valid = [dist,edgeslist.index(edge)] + return valid + else: + edge = edgeslist[force] + dist = findDistance(point,edge) + if dist: return [dist,force] + else: return None + return None + +def offset(edge,vector): + ''' + offset(edge,vector) + returns a copy of the edge at a certain (vector) distance + if the edge is an arc, the vector will be added at its first point + and a complete circle will be returned + ''' + if (not isinstance(edge,Part.Shape)) or (not isinstance(vector,FreeCAD.Vector)): + return None + if isinstance(edge.Curve,Part.Line): + v1 = Vector.add(edge.Vertexes[0].Point, vector) + v2 = Vector.add(edge.Vertexes[-1].Point, vector) + return Part.Line(v1,v2).toShape() + else: + rad = edge.Vertexes[0].Point.sub(edge.Curve.Center) + newrad = Vector.add(rad,vector).Length + return Part.Circle(edge.Curve.Center,NORM,newrad).toShape() + +def isReallyClosed(wire): + "checks if a wire is really closed" + if len(wire.Edges) == len(wire.Vertexes): return True + v1 = wire.Vertexes[0].Point + v2 = wire.Vertexes[-1].Point + if fcvec.equals(v1,v2): return True + return False + +def getNormal(shape): + "finds the normal of a shape, if possible" + n = Vector(0,0,1) + if shape.ShapeType == "Face": + n = shape.normalAt(0.5,0.5) + elif shape.ShapeType == "Edge": + if isinstance(shape.Curve,Part.Circle): + n = shape.Curve.Axis + else: + for e in shape.Edges: + if isinstance(e.Curve,Part.Circle): + n = e.Curve.Axis + break + e1 = vec(shape.Edges[0]) + for i in range(1,len(shape.Edges)): + e2 = vec(shape.Edges[i]) + if 0.1 < abs(e1.getAngle(e2)) < 1.56: + n = e1.cross(e2).normalize() + break + vdir = FreeCADGui.ActiveDocument.ActiveView.getViewDirection() + if n.getAngle(vdir) < 0.78: n = fcvec.neg(n) + return n + +def offsetWire(wire,dvec,bind=False,occ=False): + ''' + offsetWire(wire,vector,[bind]): offsets the given wire along the + given vector. The vector will be applied at the first vertex of + the wire. If bind is True (and the shape is open), the original + wire and the offsetted one are bound by 2 edges, forming a face. + ''' + edges = sortEdges(wire.Edges) + norm = getNormal(wire) + closed = isReallyClosed(wire) + nedges = [] + if occ: + l=abs(dvec.Length) + if not l: return None + if not wire.Wires: + wire = Part.Wire(edges) + try: + off = wire.makeOffset(l) + except: + return None + else: + return off + for i in range(len(edges)): + curredge = edges[i] + delta = dvec + if i != 0: + angle = fcvec.angle(vec(edges[0]),vec(curredge),norm) + delta = fcvec.rotate(delta,angle,norm) + nedge = offset(curredge,delta) + nedges.append(nedge) + nedges = connect(nedges,closed) + if bind and not closed: + e1 = Part.Line(edges[0].Vertexes[0].Point,nedges[0].Vertexes[0].Point).toShape() + e2 = Part.Line(edges[-1].Vertexes[-1].Point,nedges[-1].Vertexes[-1].Point).toShape() + alledges = edges.extend(nedges) + alledges = alledges.extend([e1,e2]) + w = Part.Wire(alledges) + return w + else: + return nedges + +def connect(edges,closed=False): + '''connects the edges in the given list by their intersections''' + nedges = [] + for i in range(len(edges)): + curr = edges[i] + # print "fcgeo.connect edge ",i," : ",curr.Vertexes[0].Point,curr.Vertexes[-1].Point + if i > 0: + prev = edges[i-1] + else: + if closed: + prev = edges[-1] + else: + prev = None + if i < (len(edges)-1): + next = edges[i+1] + else: + if closed: next = edges[0] + else: + next = None + if prev: + # print "debug: fcgeo.connect prev : ",prev.Vertexes[0].Point,prev.Vertexes[-1].Point + v1 = findIntersection(curr,prev,True,True)[0] + else: + v1 = curr.Vertexes[0].Point + if next: + # print "debug: fcgeo.connect next : ",next.Vertexes[0].Point,next.Vertexes[-1].Point + v2 = findIntersection(curr,next,True,True)[0] + else: + v2 = curr.Vertexes[-1].Point + if isinstance(curr.Curve,Part.Line): + if v1 != v2: + nedges.append(Part.Line(v1,v2).toShape()) + elif isinstance(curr.Curve,Part.Circle): + if v1 != v2: + nedges.append(Part.Arc(v1,findMidPoint(curr),v2)) + return Part.Wire(nedges) + +def findDistance(point,edge,strict=False): + ''' + findDistance(vector,edge,[strict]) - Returns a vector from the point to its + closest point on the edge. If strict is True, the vector will be returned + only if its endpoint lies on the edge. + ''' + if isinstance(point, FreeCAD.Vector): + if isinstance(edge.Curve, Part.Line): + segment = vec(edge) + chord = edge.Vertexes[0].Point.sub(point) + norm = segment.cross(chord) + perp = segment.cross(norm) + dist = fcvec.project(chord,perp) + if not dist: return None + newpoint = point.add(dist) + if (dist.Length == 0): + return None + if strict: + s1 = newpoint.sub(edge.Vertexes[0].Point) + s2 = newpoint.sub(edge.Vertexes[-1].Point) + if (s1.Length <= segment.Length) and (s2.Length <= segment.Length): + return dist + else: + return None + else: return dist + elif isinstance(edge.Curve, Part.Circle): + ve1 = edge.Vertexes[0].Point + if (len(edge.Vertexes) > 1): + ve2 = edge.Vertexes[-1].Point + else: + ve2 = None + center = edge.Curve.Center + segment = center.sub(point) + ratio = (segment.Length - edge.Curve.Radius) / segment.Length + dist = fcvec.scale(segment,ratio) + newpoint = Vector.add(point, dist) + if (dist.Length == 0): + return None + if strict and ve2: + ang1 = fcvec.angle(ve1.sub(center)) + ang2 = fcvec.angle(ve2.sub(center)) + angpt = fcvec.angle(newpoint.sub(center)) + if ((angpt <= ang2 and angpt >= ang1) or (angpt <= ang1 and angpt >= ang2)): + return dist + else: + return None + else: + return dist + else: + print "fcgeo: Couldn't project point" + return None + else: + print "fcgeo: Couldn't project point" + return None + + +def angleBisection(edge1, edge2): + "angleBisection(edge,edge) - Returns an edge that bisects the angle between the 2 edges." + if isinstance(edge1.Curve, Part.Line) and isinstance(edge2.Curve, Part.Line): + p1 = edge1.Vertexes[0].Point + p2 = edge1.Vertexes[-1].Point + p3 = edge2.Vertexes[0].Point + p4 = edge2.Vertexes[-1].Point + int = findIntersection(edge1, edge2, True, True) + if int: + line1Dir = p2.sub(p1) + angleDiff = fcvec.angle(line1Dir, p4.sub(p3)) + ang = angleDiff * 0.5 + origin = int[0] + line1Dir.normalize() + dir = fcvec.rotate(line1Dir, ang) + return Part.Line(origin,origin.add(dir)).toShape() + else: + diff = p3.sub(p1) + origin = p1.add(fcvec.scale(diff, 0.5)) + dir = p2.sub(p1); dir.normalize() + return Part.Line(origin,origin.add(dir)).toShape() + else: + return None + +def findClosestCircle(point,circles): + "findClosestCircle(Vector, list of circles) -- returns the circle with closest center" + dist = 1000000 + closest = None + for c in circles: + if c.Center.sub(point).Length < dist: + dist = c.Center.sub(point).Length + closest = c + return closest + +def isCoplanar(faces): + "checks if all faces in the given list are coplanar" + if len(faces) < 2: + return True + base =faces[0].normalAt(.5,.5) + for i in range(1,len(faces)): + normal = faces[i].normalAt(.5,.5) + if (normal.getAngle(base) > .0001) and (normal.getAngle(base) < 3.1415): + return False + return True + +def findWires(edges): + '''finds connected edges in the list, and returns a list of lists containing edges + that can be connected''' + def verts(shape): + return [shape.Vertexes[0].Point,shape.Vertexes[-1].Point] + def group(shapes): + shapesIn = shapes[:] + shapesOut = [shapesIn.pop()] + changed = False + for s in shapesIn: + if len(s.Vertexes) < 2: + continue + else: + clean = True + for v in verts(s): + for i in range(len(shapesOut)): + if clean and (v in verts(shapesOut[i])): + shapesOut[i] = Part.Wire(shapesOut[i].Edges+s.Edges) + changed = True + clean = False + if clean: + shapesOut.append(s) + return(changed,shapesOut) + working = True + edgeSet = edges + while working: + result = group(edgeSet) + working = result[0] + edgeSet = result[1] + return result[1] + +def getTangent(edge,frompoint=None): + ''' + returns the tangent to an edge. If from point is given, it is used to + calculate the tangent (only useful for an arc of course). + ''' + if isinstance(edge.Curve,Part.Line): + return vec(edge) + elif isinstance(edge.Curve,Part.Circle): + if not frompoint: + v1 = edge.Vertexes[0].Point.sub(edge.Curve.Center) + else: + v1 = frompoint.sub(edge.Curve.Center) + return v1.cross(edge.Curve.Axis) + return None + +def bind(w1,w2): + '''bind(wire1,wire2): binds 2 wires by their endpoints and + returns a face''' + w3 = Part.Line(w1.Vertexes[0].Point,w2.Vertexes[0].Point).toShape() + w4 = Part.Line(w1.Vertexes[-1].Point,w2.Vertexes[-1].Point).toShape() + return Part.Face(Part.Wire(w1.Edges+[w3]+w2.Edges+[w4])) + +def cleanFaces(shape): + "removes inner edges from coplanar faces" + faceset = shape.Faces + def find(hc): + "finds a face with the given hashcode" + for f in faceset: + if f.hashCode() == hc: + return f + + def findNeighbour(hface,hfacelist): + "finds the first neighbour of a face in a list, and returns its index" + eset = [] + for e in find(hface).Edges: + eset.append(e.hashCode()) + for i in range(len(hfacelist)): + for ee in find(hfacelist[i]).Edges: + if ee.hashCode() in eset: + return i + return None + + # build lookup table + lut = {} + for face in faceset: + for edge in face.Edges: + if edge.hashCode() in lut: + lut[edge.hashCode()].append(face.hashCode()) + else: + lut[edge.hashCode()] = [face.hashCode()] + # print "lut:",lut + # take edges shared by 2 faces + sharedhedges = [] + for k,v in lut.iteritems(): + if len(v) == 2: + sharedhedges.append(k) + # print len(sharedhedges)," shared edges:",sharedhedges + # find those with same normals + targethedges = [] + for hedge in sharedhedges: + faces = lut[hedge] + n1 = find(faces[0]).normalAt(0.5,0.5) + n2 = find(faces[1]).normalAt(0.5,0.5) + if n1 == n2: + targethedges.append(hedge) + # print len(targethedges)," target edges:",targethedges + # get target faces + hfaces = [] + for hedge in targethedges: + for f in lut[hedge]: + if not f in hfaces: + hfaces.append(f) + + # print len(hfaces)," target faces:",hfaces + # sort islands + islands = [[hfaces.pop(0)]] + currentisle = 0 + currentface = 0 + found = True + while hfaces: + if not found: + if len(islands[currentisle]) > (currentface + 1): + currentface += 1 + found = True + else: + islands.append([hfaces.pop(0)]) + currentisle += 1 + currentface = 0 + found = True + else: + f = findNeighbour(islands[currentisle][currentface],hfaces) + if f != None: + islands[currentisle].append(hfaces.pop(f)) + else: + found = False + # print len(islands)," islands:",islands + # make new faces from islands + newfaces = [] + treated = [] + for isle in islands: + treated.extend(isle) + fset = [] + for i in isle: fset.append(find(i)) + bounds = getBoundary(fset) + shp = Part.Wire(sortEdges(bounds)) + shp = Part.Face(shp) + if shp.normalAt(0.5,0.5) != find(isle[0]).normalAt(0.5,0.5): + shp.reverse() + newfaces.append(shp) + # print "new faces:",newfaces + # add remaining faces + for f in faceset: + if not f.hashCode() in treated: + newfaces.append(f) + # print "final faces" + # finishing + fshape = Part.makeShell(newfaces) + if shape.isClosed(): + fshape = Part.makeSolid(fshape) + return fshape + + +def isCubic(shape): + '''isCubic(shape): verifies if a shape is cubic, that is, has + 8 vertices, 6 faces, and all angles are 90 degrees.''' + # first we try fast methods + if len(shape.Vertexes) != 8: + return False + if len(shape.Faces) != 6: + return False + if len(shape.Edges) != 12: + return False + for e in shape.Edges: + if not isinstance(e.Curve,Part.Line): + return False + # if ok until now, let's do more advanced testing + for f in shape.Faces: + if len(f.Edges) != 4: return False + for i in range(4): + e1 = vec(f.Edges[i]) + if i < 3: + e2 = vec(f.Edges[i+1]) + else: e2 = vec(f.Edges[0]) + rpi = [0.0,round(math.pi/2,precision)] + if not round(e1.getAngle(e2),precision) in rpi: + return False + return True + +def getCubicDimensions(shape): + '''getCubicDimensions(shape): returns a list containing the placement, + the length, the width and the height of a cubic shape. If not cubic, nothing + is returned. The placement point is the lowest corner of the shape.''' + if not isCubic(shape): return None + # determine lowest face, which will be our base + z = [10,1000000000000] + for i in range(len(shape.Faces)): + if shape.Faces[i].CenterOfMass.z < z[1]: + z = [i,shape.Faces[i].CenterOfMass.z] + if z[0] > 5: return None + base = shape.Faces[z[0]] + basepoint = base.Edges[0].Vertexes[0].Point + plpoint = base.CenterOfMass + basenorm = base.normalAt(0.5,0.5) + # getting length and width + vx = vec(base.Edges[0]) + vy = vec(base.Edges[1]) + # getting rotations + rotZ = fcvec.angle(vx) + rotY = fcvec.angle(vx,FreeCAD.Vector(vx.x,vx.y,0)) + rotX = fcvec.angle(vy,FreeCAD.Vector(vy.x,vy.y,0)) + # getting height + vz = None + rpi = round(math.pi/2,precision) + for i in range(1,6): + for e in shape.Faces[i].Edges: + if basepoint in [e.Vertexes[0].Point,e.Vertexes[1].Point]: + vtemp = vec(e) + # print vtemp + if round(vtemp.getAngle(vx),precision) == rpi: + if round(vtemp.getAngle(vy),precision) == rpi: + vz = vtemp + if not vz: return None + mat = FreeCAD.Matrix() + mat.move(plpoint) + mat.rotateX(rotX) + mat.rotateY(rotY) + mat.rotateZ(rotZ) + return [FreeCAD.Placement(mat),round(vx.Length,precision),round(vy.Length,precision),round(vz.Length,precision)] + +def removeInterVertices(wire): + '''removeInterVertices(wire) - remove unneeded vertices (those that + are in the middle of a straight line) from a wire, returns a new wire.''' + edges = sortEdges(wire.Edges) + nverts = [] + def getvec(v1,v2): + if not abs(round(v1.getAngle(v2),precision) in [0,round(math.pi,precision)]): + nverts.append(edges[i].Vertexes[-1].Point) + for i in range(len(edges)-1): + vA = vec(edges[i]) + vB = vec(edges[i+1]) + getvec(vA,vB) + vA = vec(edges[-1]) + vB = vec(edges[0]) + getvec(vA,vB) + if nverts: + if wire.isClosed(): + nverts.append(nverts[0]) + w = Part.makePolygon(nverts) + return w + else: + return wire + +def arcFromSpline(edge): + """arcFromSpline(edge): turns the given edge into an arc, by taking + its first point, midpoint and endpoint. Works best with bspline + segments such as those from imported svg files. Use this only + if you are sure your edge is really an arc...""" + if isinstance(edge.Curve,Part.Line): + print "This edge is straight, cannot build an arc on it" + return None + if len(edge.Vertexes) > 1: + # 2-point arc + p1 = edge.Vertexes[0].Point + p2 = edge.Vertexes[-1].Point + ml = edge.Length/2 + p3 = edge.valueAt(ml) + try: + return Part.Arc(p1,p3,p2).toShape() + except: + print "Couldn't make an arc out of this edge" + return None + else: + # circle + p1 = edge.Vertexes[0].Point + ml = edge.Length/2 + p2 = edge.valueAt(ml) + ray = p2.sub(p1) + ray.scale(.5,.5,.5) + center = p1.add(ray) + radius = ray.Length + try: + return Part.makeCircle(radius,center) + except: + print "couldn't make a circle out of this edge" + +# circle functions ********************************************************* + +def getBoundaryAngles(angle,alist): + '''returns the 2 closest angles from the list that + encompass the given angle''' + negs = True + while negs: + negs = False + for i in range(len(alist)): + if alist[i] < 0: + alist[i] = 2*math.pi + alist[i] + negs = True + if angle < 0: + angle = 2*math.pi + angle + negs = True + lower = None + for a in alist: + if a < angle: + if lower == None: + lower = a + else: + if a > lower: + lower = a + if lower == None: + lower = 0 + for a in alist: + if a > lower: + lower = a + higher = None + for a in alist: + if a > angle: + if higher == None: + higher = a + else: + if a < higher: + higher = a + if higher == None: + higher = 2*math.pi + for a in alist: + if a < higher: + higher = a + return (lower,higher) + + +def circleFrom2tan1pt(tan1, tan2, point): + "circleFrom2tan1pt(edge, edge, Vector)" + if isinstance(tan1.Curve, Part.Line) and isinstance(tan2.Curve, Part.Line) and isinstance(point, FreeCAD.Vector): + return circlefrom2Lines1Point(tan1, tan2, point) + elif isinstance(tan1.Curve, Part.Circle) and isinstance(tan2.Curve, Part.Line) and isinstance(point, FreeCAD.Vector): + return circlefromCircleLinePoint(tan1, tan2, point) + elif isinstance(tan2.Curve, Part.Circle) and isinstance(tan1.Curve, Part.Line) and isinstance(point, FreeCAD.Vector): + return circlefromCircleLinePoint(tan2, tan1, point) + elif isinstance(tan2.Curve, Part.Circle) and isinstance(tan1.Curve, Part.Circle) and isinstance(point, FreeCAD.Vector): + return circlefrom2Circles1Point(tan2, tan1, point) + +def circleFrom2tan1rad(tan1, tan2, rad): + "circleFrom2tan1rad(edge, edge, float)" + if isinstance(tan1.Curve, Part.Line) and isinstance(tan2.Curve, Part.Line): + return circleFrom2LinesRadius(tan1, tan2, rad) + elif isinstance(tan1.Curve, Part.Circle) and isinstance(tan2.Curve, Part.Line): + return circleFromCircleLineRadius(tan1, tan2, rad) + elif isinstance(tan1.Curve, Part.Line) and isinstance(tan2.Curve, Part.Circle): + return circleFromCircleLineRadius(tan2, tan1, rad) + elif isinstance(tan1.Curve, Part.Circle) and isinstance(tan2.Curve, Part.Circle): + return circleFrom2CirclesRadius(tan1, tan2, rad) + +def circleFrom1tan2pt(tan1, p1, p2): + if isinstance(tan1.Curve, Part.Line) and isinstance(p1, FreeCAD.Vector) and isinstance(p2, FreeCAD.Vector): + return circlefrom1Line2Points(tan1, p1, p2) + if isinstance(tan1.Curve, Part.Line) and isinstance(p1, FreeCAD.Vector) and isinstance(p2, FreeCAD.Vector): + return circlefrom1Circle2Points(tan1, p1, p2) + +def circleFrom1tan1pt1rad(tan1, p1, rad): + if isinstance(tan1.Curve, Part.Line) and isinstance(p1, FreeCAD.Vector): + return circleFromPointLineRadius(p1, tan1, rad) + if isinstance(tan1.Curve, Part.Circle) and isinstance(p1, FreeCAD.Vector): + return circleFromPointCircleRadius(p1, tan1, rad) + +def circleFrom3tan(tan1, tan2, tan3): + tan1IsLine = isinstance(tan1.Curve, Part.Line) + tan2IsLine = isinstance(tan2.Curve, Part.Line) + tan3IsLine = isinstance(tan3.Curve, Part.Line) + tan1IsCircle = isinstance(tan1.Curve, Part.Circle) + tan2IsCircle = isinstance(tan2.Curve, Part.Circle) + tan3IsCircle = isinstance(tan3.Curve, Part.Circle) + if tan1IsLine and tan2IsLine and tan3IsLine: + return circleFrom3LineTangents(tan1, tan2, tan3) + elif tan1IsCircle and tan2IsCircle and tan3IsCircle: + return circleFrom3CircleTangents(tan1, tan2, tan3) + elif (tan1IsCircle and tan2IsLine and tan3IsLine): + return circleFrom1Circle2Lines(tan1, tan2, tan3) + elif (tan1IsLine and tan2IsCircle and tan3IsLine): + return circleFrom1Circle2Lines(tan2, tan1, tan3) + elif (tan1IsLine and tan2IsLine and tan3IsCircle): + return circleFrom1Circle2Lines(tan3, tan1, tan2) + elif (tan1IsLine and tan2IsCircle and tan3IsCircle): + return circleFrom2Circle1Lines(tan2, tan3, tan1) + elif (tan1IsCircle and tan2IsLine and tan3IsCircle): + return circleFrom2Circle1Lines(tan1, tan3, tan2) + elif (tan1IsCircle and tan2IsCircle and tan3IsLine): + return circleFrom2Circle1Lines(tan1, tan2, tan3) + +def circlefrom2Lines1Point(edge1, edge2, point): + "circlefrom2Lines1Point(edge, edge, Vector)" + bis = angleBisection(edge1, edge2) + if not bis: return None + mirrPoint = mirror(point, bis) + return circlefrom1Line2Points(edge1, point, mirrPoint) + +def circlefrom1Line2Points(edge, p1, p2): + "circlefrom1Line2Points(edge, Vector, Vector)" + p1_p2 = edg(p1, p2) + s = findIntersection(edge, p1_p2, True, True) + if not s: return None + s = s[0] + v1 = p1.sub(s) + v2 = p2.sub(s) + projectedDist = math.sqrt(abs(v1.dot(v2))) + edgeDir = vec(edge); edgeDir.normailze() + projectedCen1 = Vector.add(s, fcvec.scale(edgeDir, projectedDist)) + projectedCen2 = Vector.add(s, fcvec.scale(edgeDir, -projectedDist)) + perpEdgeDir = edgeDir.cross(Vector(0,0,1)) + perpCen1 = Vector.add(projectedCen1, perpEdgeDir) + perpCen2 = Vector.add(projectedCen2, perpEdgeDir) + mid = findMidpoint(p1_p2) + x = fcvec.crossproduct(vec(p1_p2)); x.normalize() + perp_mid = Vector.add(mid, x) + cen1 = findIntersection(edg(projectedCen1, perpCen1), edg(mid, perp_mid), True, True) + cen2 = findIntersection(edg(projectedCen2, perpCen2), edg(mid, perp_mid), True, True) + circles = [] + if cen1: + radius = fcvec.dist(projectedCen1, cen1[0]) + circles.append(Part.Circle(cen1[0], NORM, radius)) + if cen2: + radius = fcvec.dist(projectedCen2, cen2[0]) + circles.append(Part.Circle(cen2[0], NORM, radius)) + + if circles: return circles + else: return None + +def circleFrom2LinesRadius (edge1, edge2, radius): + "circleFrom2LinesRadius(edge,edge,radius)" + int = findIntersection(edge1, edge2, True, True) + if not int: return None + int = int[0] + bis12 = angleBisection(edge1,edge2) + bis21 = Part.Line(bis12.Vertexes[0].Point,fcvec.rotate(vec(bis12), math.pi/2.0)) + ang12 = abs(fcvec.angle(vec(edge1),vec(edge2))) + ang21 = math.pi - ang12 + dist12 = radius / math.sin(ang12 * 0.5) + dist21 = radius / math.sin(ang21 * 0.5) + circles = [] + cen = Vector.add(int, fcvec.scale(vec(bis12), dist12)) + circles.append(Part.Circle(cen, NORM, radius)) + cen = Vector.add(int, fcvec.scale(vec(bis12), -dist12)) + circles.append(Part.Circle(cen, NORM, radius)) + cen = Vector.add(int, fcvec.scale(vec(bis21), dist21)) + circles.append(Part.Circle(cen, NORM, radius)) + cen = Vector.add(int, fcvec.scale(vec(bis21), -dist21)) + circles.append(Part.Circle(cen, NORM, radius)) + return circles + +def circleFrom3LineTangents (edge1, edge2, edge3): + "circleFrom3LineTangents(edge,edge,edge)" + def rot(ed): + return Part.Line(v1(ed),v1(ed).add(fcvec.rotate(vec(ed),math.pi/2))).toShape() + bis12 = angleBisection(edge1,edge2) + bis23 = angleBisection(edge2,edge3) + bis31 = angleBisection(edge3,edge1) + intersections = [] + int = findIntersection(bis12, bis23, True, True) + if int: + radius = findDistance(int[0],edge1).Length + intersections.append(Part.Circle(int[0],NORM,radius)) + int = findIntersection(bis23, bis31, True, True) + if int: + radius = findDistance(int[0],edge1).Length + intersections.append(Part.Circle(int[0],NORM,radius)) + int = findIntersection(bis31, bis12, True, True) + if int: + radius = findDistance(int[0],edge1).Length + intersections.append(Part.Circle(int[0],NORM,radius)) + int = findIntersection(rot(bis12), rot(bis23), True, True) + if int: + radius = findDistance(int[0],edge1).Length + intersections.append(Part.Circle(int[0],NORM,radius)) + int = findIntersection(rot(bis23), rot(bis31), True, True) + if int: + radius = findDistance(int[0],edge1).Length + intersections.append(Part.Circle(int[0],NORM,radius)) + int = findIntersection(rot(bis31), rot(bis12), True, True) + if int: + radius = findDistance(int[0],edge1).Length + intersections.append(Part.Circle(int[0],NORM,radius)) + circles = [] + for int in intersections: + exists = False + for cir in circles: + if fcvec.equals(cir.Center, int.Center): + exists = True + break + if not exists: + circles.append(int) + if circles: + return circles + else: + return None + +def circleFromPointLineRadius (point, edge, radius): + "circleFromPointLineRadius (point, edge, radius)" + dist = findDistance(point, edge, False) + center1 = None + center2 = None + if dist.Length == 0: + segment = vec(edge) + perpVec = fcvec.crossproduct(segment); perpVec.normalize() + normPoint_c1 = fcvec.scale(perpVec, radius) + normPoint_c2 = fcvec.scale(perpVec, -radius) + center1 = point.add(normPoint_c1) + center2 = point.add(normPoint_c2) + elif dist.Length > 2 * radius: + return None + elif dist.Length == 2 * radius: + normPoint = point.add(findDistance(point, edge, False)) + dummy = fcvec.scale(normPoint.sub(point), 0.5) + cen = point.add(dummy) + circ = Part.Circle(cen, NORM, radius) + if circ: + return [circ] + else: + return None + else: + normPoint = point.add(findDistance(point, edge, False)) + normDist = fcvec.dist(normPoint, point) + dist = math.sqrt(radius**2 - (radius - normDist)**2) + centerNormVec = fcvec.scaleTo(point.sub(normPoint), radius) + edgeDir = edge.Vertexes[0].Point.sub(normPoint); edgeDir.normalize() + center1 = centerNormVec.add(normPoint.add(fcvec.scale(edgeDir, dist))) + center2 = centerNormVec.add(normPoint.add(fcvec.scale(edgeDir, -dist))) + circles = [] + if center1: + circ = Part.Circle(center1, NORM, radius) + if circ: + circles.append(circ) + if center2: + circ = Part.Circle(center2, NORM, radius) + if circ: + circles.append(circ) + + if len(circles): + return circles + else: + return None + +def circleFrom2PointsRadius(p1, p2, radius): + "circleFrom2PointsRadiust(Vector, Vector, radius)" + if fcvec.equals(p1, p2): return None + + p1_p2 = Part.Line(p1, p2).toShape() + dist_p1p2 = fcvec.dist(p1, p1) + mid = findMidpoint(p1_p2) + if dist_p1p2 == 2*radius: + circle = Part.Circle(mid, norm, radius) + if circle: return [circle] + else: return None + dir = vec(p1_p2); dir.normalize() + perpDir = dir.cross(Vector(0,0,1)); perpDir.normailze() + dist = math.sqrt(radius**2 - (dist_p1p2 / 2.0)**2) + cen1 = Vector.add(mid, fcvec.scale(perpDir, dist)) + cen2 = Vector.add(mid, fcvec.scale(perpDir, -dist)) + circles = [] + if cen1: circles.append(Part.Circle(cen1, norm, radius)) + if cen2: circles.append(Part.Circle(cen2, norm, radius)) + if circles: return circles + else: return None + + + +#############################33 to include + + + + + + + +def outerSoddyCircle(circle1, circle2, circle3): + ''' + Computes the outer soddy circle for three tightly packed circles. + ''' + if isinstance(circle1.Curve, Part.Circle) and isinstance(circle2.Curve, Part.Circle) and isinstance(circle3.Curve, Part.Circle): + # Original Java code Copyright (rc) 2008 Werner Randelshofer + # Converted to python by Martin Buerbaum 2009 + # http://www.randelshofer.ch/treeviz/ + # Either Creative Commons Attribution 3.0, the MIT license, or the GNU Lesser General License LGPL. + + A = circle1.Curve.Center + B = circle2.Curve.Center + C = circle3.Curve.Center + + ra = circle1.Curve.Radius + rb = circle2.Curve.Radius + rc = circle3.Curve.Radius + + # Solution using Descartes' theorem, as described here: + # http://en.wikipedia.org/wiki/Descartes%27_theorem + k1 = 1 / ra + k2 = 1 / rb + k3 = 1 / rc + k4 = abs(k1 + k2 + k3 - 2 * math.sqrt(k1 * k2 + k2 * k3 + k3 * k1)) + + q1 = (k1 + 0j) * (A.x + A.y * 1j) + q2 = (k2 + 0j) * (B.x + B.y * 1j) + q3 = (k3 + 0j) * (C.x + C.y * 1j) + + temp = ((q1 * q2) + (q2 * q3) + (q3 * q1)) + q4 = q1 + q2 + q3 - ((2 + 0j) * cmath.sqrt(temp) ) + + z = q4 / (k4 + 0j) + + # If the formula is not solveable, we return no circle. + if (not z or not (1 / k4)): + return None + + X = -z.real + Y = -z.imag + print "Outer Soddy circle: " + str(X) + " " + str(Y) + "\n" # Debug + + # The Radius of the outer soddy circle can also be calculated with the following formula: + # radiusOuter = abs(r1*r2*r3 / (r1*r2 + r1*r3 + r2*r3 - 2 * math.sqrt(r1*r2*r3 * (r1+r2+r3)))) + circ = Part.Circle(Vector(X, Y, A.z), norm, 1 / k4) + return circ + + else: + print "debug: outerSoddyCircle bad parameters!\n" + # FreeCAD.Console.PrintMessage("debug: outerSoddyCircle bad parameters!\n") + return None + +def innerSoddyCircle(circle1, circle2, circle3): + ''' + Computes the inner soddy circle for three tightly packed circles. + ''' + if isinstance(circle1.Curve, Part.Circle) and isinstance(circle2.Curve, Part.Circle) and isinstance(circle3.Curve, Part.Circle): + # Original Java code Copyright (rc) 2008 Werner Randelshofer + # Converted to python by Martin Buerbaum 2009 + # http://www.randelshofer.ch/treeviz/ + + A = circle1.Curve.Center + B = circle2.Curve.Center + C = circle3.Curve.Center + + ra = circle1.Curve.Radius + rb = circle2.Curve.Radius + rc = circle3.Curve.Radius + + # Solution using Descartes' theorem, as described here: + # http://en.wikipedia.org/wiki/Descartes%27_theorem + k1 = 1 / ra + k2 = 1 / rb + k3 = 1 / rc + k4 = abs(k1 + k2 + k3 + 2 * math.sqrt(k1 * k2 + k2 * k3 + k3 * k1)) + + q1 = (k1 + 0j) * (A.x + A.y * 1j) + q2 = (k2 + 0j) * (B.x + B.y * 1j) + q3 = (k3 + 0j) * (C.x + C.y * 1j) + + temp = ((q1 * q2) + (q2 * q3) + (q3 * q1)) + q4 = q1 + q2 + q3 + ((2 + 0j) * cmath.sqrt(temp) ) + + z = q4 / (k4 + 0j) + + # If the formula is not solveable, we return no circle. + if (not z or not (1 / k4)): + return None + + X = z.real + Y = z.imag + print "Outer Soddy circle: " + str(X) + " " + str(Y) + "\n" # Debug + + # The Radius of the inner soddy circle can also be calculated with the following formula: + # radiusInner = abs(r1*r2*r3 / (r1*r2 + r1*r3 + r2*r3 + 2 * math.sqrt(r1*r2*r3 * (r1+r2+r3)))) + circ = Part.Circle(Vector(X, Y, A.z), norm, 1 / k4) + return circ + + else: + print "debug: innerSoddyCircle bad parameters!\n" + # FreeCAD.Console.PrintMessage("debug: innerSoddyCircle bad parameters!\n") + return None + +def circleFrom3CircleTangents(circle1, circle2, circle3): + ''' + http://en.wikipedia.org/wiki/Problem_of_Apollonius#Inversive_methods + http://mathworld.wolfram.com/ApolloniusCircle.html + http://mathworld.wolfram.com/ApolloniusProblem.html + ''' + + if isinstance(circle1.Curve, Part.Circle) and isinstance(circle2.Curve, Part.Circle) and isinstance(circle3.Curve, Part.Circle): + int12 = findIntersection(circle1, circle2, True, True) + int23 = findIntersection(circle2, circle3, True, True) + int31 = findIntersection(circle3, circle1, True, True) + + if int12 and int23 and int31: + if len(int12) == 1 and len(int23) == 1 and len(int31) == 1: + # Only one intersection with each circle. + # => "Soddy Circle" - 2 solutions. + # http://en.wikipedia.org/wiki/Problem_of_Apollonius#Mutually_tangent_given_circles:_Soddy.27s_circles_and_Descartes.27_theorem + # http://mathworld.wolfram.com/SoddyCircles.html + # http://mathworld.wolfram.com/InnerSoddyCenter.html + # http://mathworld.wolfram.com/OuterSoddyCenter.html + + r1 = circle1.Curve.Radius + r2 = circle2.Curve.Radius + r3 = circle3.Curve.Radius + outerSoddy = outerSoddyCircle(circle1, circle2, circle3) +# print str(outerSoddy) + "\n" # Debug + + innerSoddy = innerSoddyCircle(circle1, circle2, circle3) +# print str(innerSoddy) + "\n" # Debug + + circles = [] + if outerSoddy: + circles.append(outerSoddy) + if innerSoddy: + circles.append(innerSoddy) + return circles + + # @todo Calc all 6 homothetic centers. + # @todo Create 3 lines from the inner and 4 from the outer h. center. + # @todo Calc. the 4 inversion poles of these lines for each circle. + # @todo Calc. the radical center of the 3 circles. + # @todo Calc. the intersection points (max. 8) of 4 lines (trough each inversion pole and the radical center) with the circle. + # This gives us all the tangent points. + else: + # Some circles are inside each other or an error has occured. + return None + + else: + print "debug: circleFrom3CircleTangents bad parameters!\n" + # FreeCAD.Console.PrintMessage("debug: circleFrom3CircleTangents bad parameters!\n") + return None + + +def linearFromPoints (p1, p2): + ''' + Calculate linear equation from points. + Calculate the slope and offset parameters of the linear equation of a line defined by two points. + + Linear equation: + y = m * x + b + m = dy / dx + m ... Slope + b ... Offset (point where the line intersects the y axis) + dx/dy ... Delta x and y. Using both as a vector results in a non-offset direction vector. + ''' + if isinstance(p1, Vector) and isinstance(p2, Vector): + line = {} + line['dx'] = (p2.x - p1.x) + line['dy'] = (p2.y - p1.y) + line['slope'] = line['dy'] / line['dx'] + line['offset'] = p1.y - slope * p1.x + return line + else: + return None + + +def determinant (mat,n): + ''' + determinant(matrix,int) - Determinat function. Returns the determinant + of a n-matrix. It recursively expands the minors. + ''' + matTemp = [[0.0,0.0,0.0],[0.0,0.0,0.0],[0.0,0.0,0.0]] + if (n > 1): + if n == 2: + d = mat[0][0] * mat[1][1] - mat[1][0] * mat[0][1] + else: + d = 0.0 + for j1 in range(n): + # Create minor + for i in range(1, n): + j2 = 0 + for j in range(n): + if j == j1: + continue + matTemp[i-1][j2] = mat[i][j] + j2 += 1 + d += (-1.0)**(1.0 + j1 + 1.0) * mat[0][j1] * determinant(matTemp, n-1) + return d + else: + return 0 + + +def findHomotheticCenterOfCircles(circle1, circle2): + ''' + findHomotheticCenterOfCircles(circle1, circle2) + Calculates the homothetic center(s) of two circles. + + http://en.wikipedia.org/wiki/Homothetic_center + http://mathworld.wolfram.com/HomotheticCenter.html + ''' + + if isinstance(circle1.Curve, Part.Circle) and isinstance(circle2.Curve, Part.Circle): + if fcvec.equals(circle1.Curve.Center, circle2.Curve.Center): + return None + + cen1_cen2 = Part.Line(circle1.Curve.Center, circle2.Curve.Center).toShape() + cenDir = vec(cen1_cen2); cenDir.normalize() + + # Get the perpedicular vector. + perpCenDir = cenDir.cross(Vector(0,0,1)); perpCenDir.normalize() + + # Get point on first circle + p1 = Vector.add(circle1.Curve.Center, fcvec.scale(perpCenDir, circle1.Curve.Radius)) + + centers = [] + # Calculate inner homothetic center + # Get point on second circle + p2_inner = Vector.add(circle1.Curve.Center, fcvec.scale(perpCenDir, -circle1.Curve.Radius)) + hCenterInner = fcvec.intersect(circle1.Curve.Center, circle2.Curve.Center, p1, p2_inner, True, True) + if hCenterInner: + centers.append(hCenterInner) + + # Calculate outer homothetic center (only exists of the circles have different radii) + if circle1.Curve.Radius != circle2.Curve.Radius: + # Get point on second circle + p2_outer = Vector.add(circle1.Curve.Center, fcvec.scale(perpCenDir, circle1.Curve.Radius)) + hCenterOuter = fcvec.intersect(circle1.Curve.Center, circle2.Curve.Center, p1, p2_outer, True, True) + if hCenterOuter: + centers.append(hCenterOuter) + + if len(centers): + return centers + else: + return None + + else: + print "debug: findHomotheticCenterOfCircles bad parameters!\n" + FreeCAD.Console.PrintMessage("debug: findHomotheticCenterOfCirclescleFrom3tan bad parameters!\n") + return None + + +def findRadicalAxis(circle1, circle2): + ''' + Calculates the radical axis of two circles. + On the radical axis (also called power line) of two circles any + tangents drawn from a point on the axis to both circles have the same length. + + http://en.wikipedia.org/wiki/Radical_axis + http://mathworld.wolfram.com/RadicalLine.html + + @sa findRadicalCenter + ''' + + if isinstance(circle1.Curve, Part.Circle) and isinstance(circle2.Curve, Part.Circle): + if fcvec.equals(circle1.Curve.Center, circle2.Curve.Center): + return None + r1 = circle1.Curve.Radius + r2 = circle1.Curve.Radius + cen1 = circle1.Curve.Center + # dist .. the distance from cen1 to cen2. + dist = fcvec.dist(cen1, circle2.Curve.Center) + cenDir = cen1.sub(circle2.Curve.Center); cenDir.normalize() + + # Get the perpedicular vector. + perpCenDir = cenDir.cross(Vector(0,0,1)); perpCenDir.normalize() + + # J ... The radical center. + # K ... The point where the cadical axis crosses the line of cen1->cen2. + # k1 ... Distance from cen1 to K. + # k2 ... Distance from cen2 to K. + # dist = k1 + k2 + + k1 = (dist + (r1^2 - r2^2) / dist) / 2.0 + #k2 = dist - k1 + + K = Vector.add(cen1, fcvec.scale(cenDir, k1)) + + # K_ .. A point somewhere between K and J (actually with a distance of 1 unit from K). + K_ = Vector,add(K, perpCenDir) + + radicalAxis = Part.Line(K, Vector.add(origin, dir)) + + if radicalAxis: + return radicalAxis + else: + return None + else: + print "debug: findRadicalAxis bad parameters!\n" + FreeCAD.Console.PrintMessage("debug: findRadicalAxis bad parameters!\n") + return None + + + +def findRadicalCenter(circle1, circle2, circle3): + ''' + findRadicalCenter(circle1, circle2, circle3): + Calculates the radical center (also called the power center) of three circles. + It is the intersection point of the three radical axes of the pairs of circles. + + http://en.wikipedia.org/wiki/Power_center_(geometry) + http://mathworld.wolfram.com/RadicalCenter.html + + @sa findRadicalAxis + ''' + + if isinstance(circle1.Curve, Part.Circle) and isinstance(circle2.Curve, Part.Circle) and isinstance(circle2.Curve, Part.Circle): + radicalAxis12 = findRadicalAxis(circle1, circle2) + radicalAxis23 = findRadicalAxis(circle1, circle2) + + if not radicalAxis12 or not radicalAxis23: + # No radical center could be calculated. + return None + + int = findIntersection(radicalAxis12, radicalAxis23, True, True) + + if int: + return int + else: + # No radical center could be calculated. + return None + else: + print "debug: findRadicalCenter bad parameters!\n" + FreeCAD.Console.PrintMessage("debug: findRadicalCenter bad parameters!\n") + return None + +def pointInversion(circle, point): + ''' + pointInversion(Circle, Vector) + + Circle inversion of a point. + Will calculate the inversed point an return it. + If the given point is equal to the center of the circle "None" will be returned. + + See also: + http://en.wikipedia.org/wiki/Inversive_geometry + ''' + + if isinstance(circle.Curve, Part.Circle) and isinstance(point, FreeCAD.Vector): + cen = circle.Curve.Center + rad = circle.Curve.Radius + + if fcvec.equals(cen, point): + return None + + # Inverse the distance of the point + # dist(cen -> P) = r^2 / dist(cen -> invP) + + dist = fcvec.dist(point, cen) + invDist = rad**2 / d + + invPoint = Vector(0, 0, point.z) + invPoint.x = cen.x + (point.x - cen.x) * invDist / dist; + invPoint.y = cen.y + (point.y - cen.y) * invDist / dist; + + return invPoint + + else: + print "debug: pointInversion bad parameters!\n" + FreeCAD.Console.PrintMessage("debug: pointInversion bad parameters!\n") + return None + +def polarInversion(circle, edge): + ''' + polarInversion(circle, edge): + Returns the inversion pole of a line. + edge ... The polar. + i.e. The nearest point on the line is inversed. + + http://mathworld.wolfram.com/InversionPole.html + ''' + + if isinstance(circle.Curve, Part.Circle) and isinstance(edge.Curve, Part.Line): + nearest = circle.Curve.Center.add(findDistance(circle.Curve.Center, edge, False)) + if nearest: + inversionPole = pointInversion(circle, nearest) + if inversionPole: + return inversionPole + + else: + print "debug: circleInversionPole bad parameters!\n" + FreeCAD.Console.PrintMessage("debug: circleInversionPole bad parameters!\n") + return None + +def circleInversion(circle, circle2): + ''' + pointInversion(Circle, Circle) + + Circle inversion of a circle. + ''' + if isinstance(circle.Curve, Part.Circle) and isinstance(circle2.Curve, Part.Circle): + cen1 = circle.Curve.Center + rad1 = circle.Curve.Radius + + if fcvec.equals(cen1, point): + return None + + invCen2 = Inversion(circle, circle2.Curve.Center) + + pointOnCircle2 = Vector.add(circle2.Curve.Center, Vector(circle2.Curve.Radius, 0, 0)) + invPointOnCircle2 = Inversion(circle, pointOnCircle2) + + return Part.Circle(invCen2, norm, fcvec.dist(invCen2, invPointOnCircle2)) + + else: + print "debug: circleInversion bad parameters!\n" + FreeCAD.Console.PrintMessage("debug: circleInversion bad parameters!\n") + return None + diff --git a/src/Mod/DDA/fcvec.py b/src/Mod/DDA/fcvec.py new file mode 100644 index 000000000000..79182abceef1 --- /dev/null +++ b/src/Mod/DDA/fcvec.py @@ -0,0 +1,195 @@ +#*************************************************************************** +#* * +#* Copyright (c) 2009, 2010 * +#* Yorik van Havre , Ken Cline * +#* * +#* This program is free software; you can redistribute it and/or modify * +#* it under the terms of the GNU General Public License (GPL) * +#* 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 * +#* * +#*************************************************************************** + +__title__="FreeCAD Draft Workbench - Vector library" +__author__ = "Yorik van Havre, Werner Mayer, Martin Burbaum, Ken Cline" +__url__ = ["http://free-cad.sourceforge.net"] + +"a vector math library for FreeCAD" + +import math,FreeCAD +from FreeCAD import Vector, Matrix + +params = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Draft") +def precision(): + return params.GetInt("precision") + +def typecheck (args_and_types, name="?"): + for v,t in args_and_types: + if not isinstance (v,t): + FreeCAD.Console.PrintWarning("typecheck[" + str(name) + "]: " + str(v) + " is not " + str(t) + "\n") + raise TypeError("fcvec." + str(name)) + +def tup(u,array=False): + "returns a tuple (x,y,z) with the vector coords, or an array if array=true" + typecheck ([(u,Vector)], "tup"); + if array: + return [u.x,u.y,u.z] + else: + return (u.x,u.y,u.z) + +def neg(u): + "neg(Vector) - returns an opposite (negative) vector" + typecheck ([(u,Vector)],"neg") + return Vector(-u.x, -u.y, -u.z) + +def equals(u,v): + "returns True if vectors differ by less than precision (from ParamGet), elementwise " + typecheck ([(u,Vector), (v,Vector)], "equals") + return isNull (u.sub(v)) + +def scale(u,scalar): + "scale(Vector,Float) - scales (multiplies) a vector by a factor" + typecheck ([(u,Vector), (scalar,(int,long,float))], "scale") + return Vector(u.x*scalar, u.y*scalar, u.z*scalar) + +def scaleTo(u,l): + "scaleTo(Vector,length) - scales a vector to a given length" + typecheck ([(u,Vector),(l,(int,long,float))], "scaleTo") + if u.Length == 0: + return Vector(u) + else: + a = l/u.Length + return Vector(u.x*a, u.y*a, u.z*a) + +def dist(u, v): + "dist(Vector,Vector) - returns the distance between both points/vectors" + typecheck ([(u,Vector), (v,Vector)], "dist") + x=u.sub(v).Length + return u.sub(v).Length + +def angle(u,v=Vector(1,0,0),normal=Vector(0,0,1)): + ''' + angle(Vector,[Vector],[Vector]) - returns the angle + in radians between the two vectors. If only one is given, + angle is between the vector and the horizontal East direction. + If a third vector is given, it is the normal used to determine + the sign of the angle. + ''' + typecheck ([(u,Vector), (v,Vector)], "angle") + ll = u.Length*v.Length + if ll==0: return 0 + dp=u.dot(v)/ll + if (dp < -1): dp = -1 # roundoff errors can push dp out of the ... + elif (dp > 1): dp = 1 # ...geometrically meaningful interval [-1,1] + ang = math.acos(dp) + normal1 = u.cross(v) + coeff = normal.dot(normal1) + if coeff >= 0: + return ang + else: + return -ang + +def project(u,v): + "project(Vector,Vector): projects the first vector onto the second one" + typecheck([(u,Vector), (v,Vector)], "project") + dp = v.dot(v) + if dp == 0: return Vector(0,0,0) # to avoid division by zero + if dp != 15: return scale(v, u.dot(v)/dp) + return Vector(0,0,0) + +def rotate2D(u,angle): + "rotate2D(Vector,angle): rotates the given vector around the Z axis" + return Vector(math.cos(-angle)*u.x-math.sin(-angle)*u.y, + math.sin(-angle)*u.x+math.cos(-angle)*u.y,u.z) + +def rotate(u,angle,axis=Vector(0,0,1)): + '''rotate(Vector,Float,axis=Vector): rotates the first Vector + around the given axis, at the given angle. + If axis is omitted, the rotation is made on the xy plane.''' + typecheck ([(u,Vector), (angle,(int,long,float)), (axis,Vector)], "rotate") + + if angle == 0: return u + + l=axis.Length + x=axis.x/l + y=axis.y/l + z=axis.z/l + c = math.cos(angle) + s = math.sin(angle) + t = 1 - c; + + xyt = x*y*t + xzt = x*z*t + yzt = y*z*t + xs = x*s + ys = y*s + zs = z*s + + m = Matrix(c + x*x*t, xyt - zs, xzt + ys, 0, + xyt + zs, c + y*y*t, yzt - xs, 0, + xzt - ys, yzt + xs, c + z*z*t, 0) + + return m.multiply(u) + +def isNull(vector): + '''isNull(vector): Tests if a vector is nul vector''' + p = precision() + return (round(vector.x,p)==0 and round(vector.y,p)==0 and round(vector.z,p)==0) + +def find(vector,vlist): + '''find(vector,vlist): finds a vector in a list of vectors. returns + the index of the matching vector, or None if none is found. + ''' + typecheck ([(vector,Vector), (vlist,list)], "find") + for i,v in enumerate(vlist): + if equals(vector,v): + return i + return None + +def isColinear(vlist): + '''isColinear(list_of_vectors): checks if vectors in given list are colinear''' + typecheck ([(vlist,list)], "isColinear"); + if len(vlist) < 3: return True + first = vlist[1].sub(vlist[0]) + for i in range(2,len(vlist)): + if angle(vlist[i].sub(vlist[0]),first) != 0: + return False + return True + +def rounded(v): + "returns a rounded vector" + p = precision() + return Vector(round(v.x,p),round(v.y,p),round(v.z,p)) + +def getPlaneRotation(u,v,w=None): + "returns a rotation matrix defining the (u,v,w) coordinates system" + if not w: w = u.cross(v) + typecheck([(u,Vector), (v,Vector), (w,Vector)], "getPlaneRotation") + m = FreeCAD.Matrix( + u.x,v.x,w.x,0, + u.y,v.y,w.y,0, + u.z,v.z,w.z,0, + 0.0,0.0,0.0,1.0) + return m + +def removeDoubles(vlist): + "removes consecutive doubles from a list of vectors" + typecheck ([(vlist,list)], "removeDoubles"); + nlist = [] + if len(vlist) < 2: return vlist + for i in range(len(vlist)-1): + if not equals(vlist[i],vlist[i+1]): + nlist.append(vlist[i]) + nlist.append(vlist[-1]) + return nlist diff --git a/src/Mod/DDA/interfaceTools.py b/src/Mod/DDA/interfaceTools.py new file mode 100644 index 000000000000..313b860831bf --- /dev/null +++ b/src/Mod/DDA/interfaceTools.py @@ -0,0 +1,422 @@ +# coding=gbk +#*************************************************************************** +#* * +#* Copyright (c) 2009, 2010 * +#* Xiaolong Cheng * +#* * +#* 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 * +#* * +#*************************************************************************** + + +def calcIntersection(list1 , list2): + ''' + calculate intersection of list1 and list2 + :param list1: + :param list2: + ''' + result = [] +# print 'list1 : ' , list1 , ' list2 : ' , list2 + i = j = 0 + if len(list1)>0 and len(list2)>0: + while True: + if list1[i] == list2[j]: + result.append(list1[i]) + i+=1 + j+=1 + elif list1[i]>list2[j]: + j+=1 + elif list1[i]list2[j]: + result.append(list2[j]) + j+=1 + elif list1[i]points[i].x: +# xmin = points[i].x +# elif xmaxpoints[i].y: +# ymin = points[i].y +# elif ymaxpoints[i][0]: + xmin = points[i][0] + elif xmaxpoints[i][1]: + ymin = points[i][1] + elif ymax startValue + result = [] + endIdx = self.getIndex(endValue) + s=0 + while s<=endIdx : + if startValue < self.segments[s][1]: + result.append(self.segments[s][2]) # self.segments[s][2] is blockNo + s+=1 + result.sort() + return result + + def getIndex(self , num): + ''' + this function will find 'num''s index in 'coords' + if 'num' is not in 'coords' , return i that coords[i]< 'num' < coords[i+1] + :param num: + :param coords: + ''' + t = len(self.segments)-1 + while t>=0: + if num>self.segments[t][0]: + break + t-=1 + return t + +class RectangleSelection: + def __init__(self): + self.XSelection = LineSelection() + self.YSelection = LineSelection() + + def setData(self , rects): + XCoords , YCoords = self.convertData(rects) + assert len(XCoords)>0 and len(YCoords)>0 + self.XSelection.setData(XCoords) + self.YSelection.setData(YCoords) + + def convertData(self, rects): + XCoords = [] + YCoords = [] + rects = self.getNormalizedRects(rects) + for i , r in enumerate(rects): + XCoords.append(( r[0] , r[2] , i)) + YCoords.append(( r[1] , r[3] , i )) +# print 'rects : ' , rects +# print 'XCoords : ' , XCoords +# print 'YCoords : ' , YCoords + return XCoords , YCoords + + def getIntersectedRectsNo(self , X1 , Y1 , X2 , Y2): + if X1>X2: + X1 , X2 = X2 , X1 + if Y1>Y2: + Y1 , Y2 = Y2 , Y1 + s1 = self.XSelection.getIntersectedBlockNo(X1, X2) + s2 = self.YSelection.getIntersectedBlockNo(Y1, Y2) +# print 'X intersects : ' , s1 +# print 'Y intersects : ' , s2 + return calcIntersection(s1,s2) + + def getNormalizedRects(self , rects): + for i , r in enumerate(rects): + rects[i] = self.normalizeRect(r) + return rects + + def normalizeRect(self , rect): + ''' + rect if format of (X1 , Y1 , X2 , Y2) , this function's result will guanrantee ( X1 , Y1 ) and ( X2 , Y2) + are left-bottom and right-top vertices + :param rect: + ''' + r = rect + if rect[0] > rect[2]: + r = ( rect[2] , rect[1] , rect[0] , rect[3]) + if rect[1] > rect[3]: # left-top and right-bottom vertices , so rect[1] > rect[3] + r = ( rect[0] , rect[3] , rect[2] , rect[1]) + return r + + +rectSelection = RectangleSelection() +blocksRects = BlockRectangles() + + + +########################################################## +# the following class is used to calculate border. +# R1 _R6 R5_ R4 +# || J________________________I || +# || / \ || +# ||/ \|| +# ||A H| | +# || | | +# || B | | +# | \ G/ | +# | \ _____________________ / | +# | C\/D E\/F | +# |_______________________________| +# R2 R3 +# in this graph . A-B-C-D-E-F-G-H-I-J is the original boundary. +# A-R6-R1-R2-R3-R4-R5-H is the result +########################################################## + +class BorderCalculator: + def __init__(self): + self.up = None # the max y + self.down = None # the min y + self.left = None # the min x + self.right = None # the max x + + self.leftIdx = None # index of the most left and most up point . mainly to left + self.rightIdx = None # index of the most right and most up point . mainly to right + + self.zValue = 0 # the z value of the points in result + + self.marginRatio = 0.05 # the ratio of border thickness to max(self.up-self.down , self.right-self.left) + + def __updateRadius4PointsInBase(self): + import Base + difference = self.up - self.down + tmp = self.right - self.left + if difference pts[self.leftIdx][1]): + self.leftIdx = i + self.left = p[0] + + if p[0]>self.right or (p[0]==self.right and p[1] > pts[self.rightIdx][1]): + self.rightIdx = i + self.right = p[0] + + if p[1]self.up: + self.up = p[1] + +# print 'left : %f index %f'%(self.left , self.leftIdx) +# print 'right : %f index %f'%(self.right , self.rightIdx) +# print 'up : %f'%self.up +# print 'down : %f'% self.down + self.__updateRadius4PointsInBase() + + def __calculateNewBoundaries(self , pts): + ''' + in the former graph , this function calculate the 'A-R6-R1-R2-R3-R4-R5-H' + the len(result) is also 8 + ''' + margin = self.right - self.left + tmp = self.up - self.down + if tmp>margin: + margin = tmp + minX = self.left - margin*self.marginRatio + maxX = self.right + margin*self.marginRatio + minY = self.down - margin*self.marginRatio + maxY = self.up + margin*self.marginRatio + + p = pts[self.leftIdx] + result = [(p[0] , p[1], self.zValue)] + +# result.append((self.left , maxY , self.zValue)) +# result.append((minX , maxY , self.zValue)) +# result.append((minX , minY , self.zValue)) +# result.append((maxX , minY , self.zValue)) +# result.append((maxX , maxY , self.zValue)) +# result.append((self.right , maxY , self.zValue)) + + result.append((minX , pts[self.leftIdx][1] , self.zValue)) + result.append((minX , minY , self.zValue)) + result.append((maxX , minY , self.zValue)) + result.append((maxX , pts[self.rightIdx][1] , self.zValue)) + + p = pts[self.rightIdx] + result.append((p[0] , p[1], self.zValue)) + + return result + + def calcualteBorder(self, pts): + self.__calculateRange(pts) + return self.__calculateNewBoundaries(pts) + +#################################################### +# +# tunnel bolt elements generator +# (currently only tunnel of type 2 has the bolt element generator) +# +#################################################### + +class Tunnel2BoltsGenerator: + @staticmethod + def generateBolts(centerX , centerY , halfWidth , halfHeight \ + , arcRadius , boltsDistance , boltLength , boltLength2 ): + import DDACalcTools + bolts = DDACalcTools.pyBolts() + print bolts.size() + DDACalcTools.calcBolts4Type2Tunnel( centerX , centerY , halfWidth, halfHeight \ + , arcRadius , boltLength , boltLength2 , boltsDistance , bolts) + + from loadDataTools import BoltElement + resultBolts=[] + for bolt in bolts: + p1 = ( bolt.startPoint.x , bolt.startPoint.y , 0 ) + p2 = ( bolt.endPoint.x , bolt.endPoint.y , 0 ) + resultBolts.append(BoltElement(p1 , p2 , 0 , 0 , 0)) + print "(%lf , %lf) (%lf , %lf)"%(bolt.startPoint.x \ + ,bolt.startPoint.y , bolt.endPoint.x,bolt.endPoint.y) + return resultBolts + +class ReadustCamera: + def GetResources(self): + return { + 'MenuText': 'adjustCamera', + 'ToolTip': "adjust camera."} + + def Activated(self): + import FreeCADGui + + centerX = 20 + centerY = 5 + height = 15 + + import Base + windowInfo = Base.__windowInfo__ + if windowInfo!=None and len(windowInfo)==4: + centerX = (windowInfo[0]+windowInfo[1])/2 + centerY = (windowInfo[2]+windowInfo[3])/2 + height = (windowInfo[1]-windowInfo[0])*0.75 + + print windowInfo + print 'camera center : ( %f , %f )'% (centerX,centerY) + camera = '#Inventor V2.1 ascii\n\n\nOrthographicCamera {\n viewportMapping ADJUST_CAMERA\n position %f %f 3\n orientation 0 0 1 0\n aspectRatio 1\n focalDistance 5\n height %f\n\n}\n'%(centerX,centerY,height) + FreeCADGui.activeDocument().activeView().setCamera(camera) + + def finish(self): + pass + +import FreeCADGui +FreeCADGui.addCommand('DDA_ResetCamera', ReadustCamera()) + + + + + + + + + + + + + diff --git a/src/Mod/DDA/loadDataTools.py b/src/Mod/DDA/loadDataTools.py new file mode 100644 index 000000000000..aad80d0c184e --- /dev/null +++ b/src/Mod/DDA/loadDataTools.py @@ -0,0 +1,1340 @@ +# coding=gbk + +#*************************************************************************** +#* * +#* Copyright (c) 2009, 2010 * +#* Xiaolong Cheng * +#* * +#* 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 FreeCADGui +from PyQt4 import QtCore , QtGui +import Base +from Base import showErrorMessageBox +import DDADatabase + +def checkFileExists(path): + import os + if not os.path.isfile(path): + showErrorMessageBox("FileError" , "File \"%s\" doesn't exist"%path) + return False + return True + +class FileReader(): + ''' + read files , this class will omit the blank lines + ''' + def __init__(self): + self.__fileName = None + self.__file = None + + def setFile(self, fileName): + self.__fileName = fileName + try: + self.__file = open(self.__fileName , 'rb') + except: + showErrorMessageBox('file open error' , fileName + ' open failed') + return False + return True + + def getNextLine(self): + line = self.__file.readline() + while len(line)!=0: + line = line.strip() + if len(line)==0: # blank line with '\n' + line = self.__file.readline() + else: + break # this line is not blank + if len(line)==0: # file already ends + import Base + Base.showErrorMessageBox('file error' , 'unvalid data') + raise + return line + + def closeFile(self): + self.__file.close() + + +class Block: + def __init__(self): + self.blockIndex = 0 # the index of this block + self.startNo = 0 + self.endNo = 0 + self.vertices = [] + self.parameters = [] + self.stressX = 0 + self.stressY = 0 + self.stressXY = 0 + self.materialNo = 0 # used in dc result + + # count how many hole points are on this block + self.holePointsCount = 0 + + def getPoints(self): + return [(t[1],t[2],0) for t in self.vertices] + + def visible(self): + if self.holePointsCount>0: + return False + elif self.holePointsCount==0: + return True + else : + raise Exception('unvalid value %f'% self.holePointsCount) + +class DDALine: + def __init__(self , p1 , p2 , materialNo): + self.startPoint = p1 + self.endPoint = p2 + self.materialNo = materialNo + self.visible = True + +class BoltElement(DDALine): + def __init__(self , p1 , p2 , e , t , f): + DDALine.__init__(self, p1, p2, 0) + self.e = e + self.t = t + self.f = f + +class DDAPolyLine: + def __init__(self , pts , materialNo): + self.pts = pts + self.materialNo = materialNo + self.visible = True + +class DDAPoint: + def __init__(self , x=0 , y=0): + self.x = x + self.y = y + self.Xspeed = 0 + self.Yspeed = 0 + self.blockNo = 0 + self.visible = True + +class FixedPoint(DDAPoint): + pass + +class LoadingPoint(DDAPoint): + pass + +class MeasuredPoint(DDAPoint): + def __init__(self): + DDAPoint.__init__(self) + self.u = 0 + self.v = 0 + self.r = 0 + self.stressX = 0 + self.stressY = 0 + self.stressXY = 0 + +class HolePoint(DDAPoint): + pass + +class Graph: + def __init__(self): + self.blocks = [] + self.fixedPoints = [] + self.measuredPoints = [] + self.loadingPoints = [] + self.holePoints = [] + self.boltElements = [] + + def reset(self): + self.blocks = [] + self.fixedPoints = [] + self.measuredPoints = [] + self.loadingPoints = [] + self.boltElements = [] + +class BaseParseData(): + ''' + parse data loaded , data may be DL data , DC data etc. + ''' + def parse(self , filename): + ''' + abstract function , overwrited by subclass + ''' + pass + + def parseFloatNum(self , numStr , itemName='None'): + try: + num = float(numStr) + except: + try: + num = int(numStr) + except: + showErrorMessageBox( 'InputError' , itemName + ' should be a float number') + return None + return num + + def parseIntNum(self , numStr , itemName='None'): + try: + num = int(numStr) + except: + showErrorMessageBox( 'InputError' , itemName + ' should be a integer') + return None + return num + + +class ParseAndLoadDLData(BaseParseData): + ''' + parse DL data + ''' + def __init__(self): + self.reset() + self.__fileReader = FileReader() + + def GetResources(self): + return { + 'MenuText': 'LoadDCInputData', + 'ToolTip': "Load DC Input Data"} + + def Activated(self): + from Base import __currentProjectPath__ + if self.parse(__currentProjectPath__ + '/data.dl'): + self.save2Database() + import Base + Base.changeStep4Stage('ShapesAvailable') + + def reset(self): + self.checkStatus = False + self.__miniLength = 0 + self.__jointSetNum = 0 + self.__boundaryNodeNum = 0 + self.__tunnelNum = 0 + self.__addtionalLineNum = 0 + self.__materialLineNum = 0 + self.__boltElementNum = 0 + self.__fixedPointNum = 0 + self.__loadingPointNum = 0 + self.__measuredPointNum = 0 + self.__holePointNum = 0 + self.__jointSets = [] + self.__slope = [] + self.__boundaryNodes = [] + self.__tunnels = [] + self.__additionalLines = [] + self.__materialLines = [] + self.__boltElements = [] + self.__fixedPoints = [] + self.__loadingPoints = [] + self.__measuredPoints = [] + self.__holePoints = [] + + def parse(self , filename ): + ''' + parse DL data + :param filename: the data file name + ''' + self.reset() + if not self.__fileReader.setFile(filename): + return False + if not self.__parsePandect(): + return False + if not self.__parseJointSets(): + return False + if not self.__parseBoundaryNodes(): + return False + if not self.__parseTunnels(): + return False + if not self.__parseLines(): + return False + if not self.__parsePoints(): + return False + self.__fileReader.closeFile() + return True + + + def __parseJointSets(self): + ''' + parse joint sets + ''' + # joint dip , dip direction + for i in range(self.__jointSetNum): + self.__jointSets.append(range(6)) + tmpNums = self.__jointSets[-1] + str = self.__fileReader.getNextLine() + nums = str.strip().split() + tmpNums[0] = self.parseFloatNum(nums[0], 'joint dip') + tmpNums[1] = self.parseFloatNum(nums[1], 'dip direction') + if tmpNums[0] == None or tmpNums[1] == None : + return False + print 'joint %d : ( %f , %f)'%( i , tmpNums[0],tmpNums[1]) + + # slope dip , dip direction + tmpNumbers = [0 , 1] + str = self.__fileReader.getNextLine() + nums = str.strip().split() + tmpNumbers[0] = self.parseFloatNum(nums[0], 'slope dip') + tmpNumbers[1] = self.parseFloatNum(nums[1], 'dip direction') + if tmpNumbers[0] == None or tmpNumbers[1] == None : + return False + print 'slope : ( %f , %f)'%(tmpNumbers[0],tmpNumbers[1]) + self.__slope.append((tmpNumbers[0],tmpNumbers[1])) + + for i in range(self.__jointSetNum): + tmpNums = self.__jointSets[i] + str = self.__fileReader.getNextLine() + nums = str.strip().split() + tmpNums[2] = self.parseFloatNum(nums[0], 'spacing') + tmpNums[3] = self.parseFloatNum(nums[1], 'length') + tmpNums[4] = self.parseFloatNum(nums[2], 'bridge') + tmpNums[5] = self.parseFloatNum(nums[3], 'random') + if tmpNums[2] == None or tmpNums[3] == None or tmpNums[4] == None or tmpNums[5] == None : + return False + print 'joint %d parameter : ( %f , %f , %f , %f)'%(i , tmpNums[2],tmpNums[3],tmpNums[4],tmpNums[5]) + return True + + def __parseBoundaryNodes(self ): + ''' + parse boundary nodes + ''' + for i in range(self.__boundaryNodeNum): + str = self.__fileReader.getNextLine() + nums = str.strip().split() + tmpNums = [0 , 1 , 0] + tmpNums[0] = self.parseFloatNum(nums[0], 'coordinate number') + tmpNums[1] = self.parseFloatNum(nums[1], 'coordinate number') + if tmpNums[0] == None or tmpNums[1] == None : + return False + print 'boundary line %d : (%f , %f)'%(i , tmpNums[0] , tmpNums[1]) + self.__boundaryNodes.append(tmpNums) + return True + + def __parseTunnels(self ): + ''' + parse tunnels + ''' + for i in range(self.__tunnelNum): + # tunnel shape number + str = self.__fileReader.getNextLine() + shapeNo = self.parseIntNum(str, 'tunnel shape number') + if shapeNo == None : + return False + + # tunnel a b c r + tmpNums = range(4) + str = self.__fileReader.getNextLine() + names = ['a' , 'b' , 'c' , 'r'] + nums = str.strip().split() + for j in range(4): + tmpNums[j] = self.parseFloatNum(nums[j], 'tunnel ' +names[j]) + if tmpNums[j] == None : + return False + + # tunnel center + center = [0 , 1] + str = self.__fileReader.getNextLine() + nums = str.strip().split() + for j in range(2): + center[j] = self.parseFloatNum(nums[j], 'tunnel center number') + if center[j] == None : + return False + print 'tunnel %d : (%f , %f , %f , %f , %f , %f , %f)'%(i , shapeNo , tmpNums[0] , tmpNums[1] , tmpNums[2] , tmpNums[3] , center[0] , center[1]) + self.__tunnels.append((shapeNo , tmpNums[0] , tmpNums[1] , tmpNums[2] , tmpNums[3] , center[0] , center[1])) + return True + + def __parseLines(self ): + ''' + parse material lines , addtional lines + ''' + tmpNums = range(4) + # additional line + for i in range(self.__addtionalLineNum): + str = self.__fileReader.getNextLine() + nums = str.strip().split() + for j in range(4): + tmpNums[j] = self.parseFloatNum(nums[j], 'additional line coordinate number') + if tmpNums[j] == None : + return False + materialNo = self.parseFloatNum(nums[4], 'additional line material number') + if materialNo == None : + return False + print 'additional line %d :(%f , %f , %f , %f , %f)'%(i , tmpNums[0] , tmpNums[1] ,tmpNums[2] , tmpNums[3] , materialNo) + self.__additionalLines.append((tmpNums[0] , tmpNums[1] ,tmpNums[2] , tmpNums[3] , materialNo)) + + # material line + for i in range(self.__materialLineNum): + str = self.__fileReader.getNextLine() + nums = str.strip().split() + for j in range(4): + tmpNums[j] = self.parseFloatNum(nums[j], 'material line coordinate number') + if tmpNums[j] == None : + return False + materialNo = self.parseFloatNum(nums[4], 'block material number') + if materialNo == None : + return False + print 'block material %d :(%f , %f , %f , %f , %f)'%(i , tmpNums[0] , tmpNums[1] ,tmpNums[2] , tmpNums[3] , materialNo) + self.__materialLines.append((tmpNums[0] , tmpNums[1] ,tmpNums[2] , tmpNums[3] , materialNo)) + + return True + + def __parsePoints(self): + ''' + parse points , fixed points , loading points , measured points , hole points + :param file: input dl file + ''' + tmpNums = range(4) + + # fixed points + for i in range(self.__fixedPointNum): + str = self.__fileReader.getNextLine() + nums = str.strip().split() + for j in range(4): + tmpNums[j] = self.parseFloatNum(nums[j], 'fixed point coordinate number') + if tmpNums[j] == None : + return False + print 'fixed line %d : (%f , %f , %f , %f)'%(i , tmpNums[0] , tmpNums[1] ,tmpNums[2] , tmpNums[3]) + self.__fixedPoints.append((tmpNums[0] , tmpNums[1] ,tmpNums[2] , tmpNums[3])) + + # measured points + itemNames = ['loading point' , 'measured point' , 'hole point'] + realNums = [self.__loadingPointNum , self.__measuredPointNum , self.__holePointNum] + for k in range(len(itemNames)): + for i in range(realNums[k]): + str = self.__fileReader.getNextLine() + nums = str.strip().split() + for j in range(2): + tmpNums[j] = self.parseFloatNum(nums[j], itemNames[k] +' coordinate number') + if tmpNums[j] == None : + return False + print '%s %d : (%f , %f)'%(itemNames[k] , i , tmpNums[0] , tmpNums[1]) + if k==0 : self.__loadingPoints.append((tmpNums[0] , tmpNums[1])) + elif k==1 : self.__measuredPoints.append((tmpNums[0] , tmpNums[1])) + elif k==2 : self.__holePoints.append((tmpNums[0] , tmpNums[1])) + return True + + def __parsePandect(self): + ''' + parse Numbers , for example , number of joint set + ''' + self.__miniLength = self.parseFloatNum(self.__fileReader.getNextLine(), 'minimun edge length') + if self.__miniLength == None : + return False + + self.__jointSetNum = self.parseIntNum(self.__fileReader.getNextLine(), 'joint set number') + if self.__jointSetNum == None: + return False + + self.__boundaryNodeNum = self.parseIntNum(self.__fileReader.getNextLine(), 'boundary line number') + if self.__boundaryNodeNum == None: + return False + + self.__tunnelNum = self.parseIntNum(self.__fileReader.getNextLine(), 'tunnel number') + if self.__tunnelNum == None: + return False + + self.__addtionalLineNum = self.parseIntNum(self.__fileReader.getNextLine(), 'additional line number') + if self.__addtionalLineNum == None: + return False + + self.__materialLineNum = self.parseIntNum(self.__fileReader.getNextLine(), 'material line number') + if self.__materialLineNum == None: + return False + + self.__boltElementNum = self.parseIntNum(self.__fileReader.getNextLine(), 'bolt element number') + if self.__boltElementNum == None: + return False + + self.__fixedPointNum = self.parseIntNum(self.__fileReader.getNextLine(), 'fixed point number') + if self.__fixedPointNum == None: + return False + + self.__loadingPointNum = self.parseIntNum(self.__fileReader.getNextLine(), 'loading point number') + if self.__loadingPointNum == None: + return False + + self.__measuredPointNum = self.parseIntNum(self.__fileReader.getNextLine(), 'measured point number') + if self.__measuredPointNum == None: + return False + + self.__holePointNum = self.parseIntNum(self.__fileReader.getNextLine(), 'hole point number') + if self.__holePointNum == None: + return False + + return True + + def save2Database(self): + ''' + save data to DDADatabase.dl_database + ''' + from DDAShapes import DDAJointSets , DDATunnels + DDADatabase.dl_database = DDADatabase.DLDatabase() + + database = DDADatabase.dl_database + + database.jointSets = self.__jointSets + DDAJointSets.dataTable.refreshData(database.jointSets) + database.slope = self.__slope + DDAJointSets.slopeDataTable.refreshData(database.slope) + + database.tunnels = self.__tunnels + DDATunnels.dataTable.refreshData(database.tunnels) + + # boundaryNodes + pts = [tuple(p) for p in self.__boundaryNodes] + pts.append(pts[0]) + database.boundaryNodes = [DDAPolyLine( pts, 1)] + + # additional lines + database.additionalLines = \ + [DDALine((p[0],p[1],0) , (p[2],p[3],0) , p[4]) for p in self.__additionalLines] + + # material line + database.materialLines = \ + [DDALine((p[0],p[1],0) , (p[2],p[3],0) , p[4]) for p in self.__materialLines] + + # bolt element + database.boltElements = \ + [DDALine((p[0],p[1],0) , (p[2],p[3],0) , p[4]) for p in self.__boltElements] + + # points + database.fixedPoints = [DDAPoint(t[0],t[1]) for t in self.__fixedPoints] + database.loadingPoints = [DDAPoint(t[0],t[1]) for t in self.__loadingPoints] + database.measuredPoints = [DDAPoint(t[0],t[1]) for t in self.__measuredPoints] + database.holePoints = [DDAPoint(t[0],t[1]) for t in self.__holePoints] + self.reset() + import Base + Base.refreshAllShapes() + + +#class ParseDFData(BaseParseData): +# def __init__(self): +# self.__file = FileReader() +# self.refreshBlocksData() +# +# def refreshBlocksData(self): +# self.graph = Graph() +# +# self.blocksNum = 0 +# self.blockVerticesNum = 0 +# self.fixedPointsNum = 0 +# self.loadingPointsNum = 0 +# self.measuredPointsNum = 0 +# self.boltElementsNum = 0 +# +# self.ifDynamic = 0 # 0 :static 1:dynamic +# self.stepsNum = 0 +# self.blockMatsNum = 0 +# self.jointMatsNum = 0 +# self.ratio = 0 +# self.OneSteptimeLimit = 0 +# self.springStiffness = 0 +# self.SOR = 0 +# +# self.blockMats = [] +# self.jointMats = [] +# self.loadingPoints = [] +# +# def refreshParas(self): +# self.ifDynamic = 0 # 0 :static 1:dynamic +# self.stepsNum = 0 +# self.ratio = 0 +# self.OneSteptimeLimit = 0 +# self.springStiffness = 0 +# self.SOR = 0 +# +# self.blockMats = [] +# self.jointMats = [] +# self.loadingPoints = [] +# +# def __parseDataSchema(self , infile): +# line = infile.readline() +# nums = line.split() +# self.blocksNum = self.parseIntNum(nums[0]) +# self.boltElementsNum = self.parseIntNum(nums[1]) +# self.blockVerticesNum = self.parseIntNum(nums[2]) +# +# line = infile.readline() +# nums = line.split() +# self.fixedPointsNum = self.parseIntNum(nums[0]) +# self.loadingPointsNum = self.parseIntNum(nums[1]) +# self.measuredPointsNum = self.parseIntNum(nums[2]) +# +# if None in [self.blocksNum , self.boltElementsNum , self.blockVerticesNum \ +# , self.fixedPointsNum , self.loadingPointsNum , self.measuredPointsNum]: +# return False +# print 'DF data : blocks : %d bolts : %d vertices : %d fixed Pnts :%d LoadingPnts :%d MeasuredPnts: %d' \ +# %(self.blocksNum , self.boltElementsNum , self.blockVerticesNum \ +# , self.fixedPointsNum , self.loadingPointsNum , self.measuredPointsNum) +# return True +# +# def __parseBlocks(self , infile): +# ''' +# parsing blocks and try to get the maximum material No +# :param infile: +# ''' +# for i in range(0 , self.blocksNum): +# line = infile.readline() +# nums = line.split() +# t = int(self.parseFloatNum(nums[0] ,'block No.')) +# if t==None or self.parseFloatNum(nums[1])==None or self.parseFloatNum(nums[2])==None: +# return False +# if t>self.blockMatsNum : # get max. block material No +# self.blockMatsNum = t +# +## self.blocksInfo.append((self.parseIntNum(nums[1]) , self.parseIntNum(nums[2]))) +# tmpB = Block() +# tmpB.startNo = self.parseIntNum(nums[1]) +# tmpB.endNo = self.parseIntNum(nums[2]) +# self.graph.blocks.append(tmpB ) +# +## print line , +# +# print 'DF blocks Info done.' +# +# return True +# +# def __parseBlockVertices(self,infile): +# ''' +# parsing blocks' vertices and try to get the maximum material No +# :param infile: +# ''' +# for i in range(self.blocksNum): +# tmpB = self.graph.blocks[i] +# for j in range(tmpB.endNo - tmpB.startNo +1): # read blocks vertices +# line = infile.readline() +# nums = line.split() +# +# # get max. blocks' vertices' material No +# t = int(self.parseFloatNum(nums[0] ,'block vertex material No.')) +# if t==None or self.parseFloatNum(nums[1])==None or self.parseFloatNum(nums[2])==None: +# return False +# if t>self.jointMatsNum : # get max. block material No +# self.jointMatsNum = t +# +# tmpB.vertices.append( (self.parseFloatNum(nums[0]) ,self.parseFloatNum(nums[1]) , self.parseFloatNum(nums[2])) ) +# +# print 'DF blocks vertices data done.' +# return True +# +# def parse1Point(self , line , point): +# #print line , +# nums = line.split() +# point.x = self.parseFloatNum(nums[0]) +# point.y = self.parseFloatNum(nums[1]) +# point.blockNo = int(self.parseFloatNum(nums[2])) +# +# def __parsePoints(self , infile): +# ''' +# parsing fixed , loading , and measured points +# :param infile: +# ''' +# for i in range(self.fixedPointsNum): +# pnt = FixedPoint() +# line = infile.readline() +# self.parse1Point(line , pnt) +# self.graph.fixedPoints.append(pnt) +# print ' fixed points : %d done'%self.fixedPointsNum +# +# for i in range(self.loadingPointsNum): +# pnt = LoadingPoint() +# line = infile.readline() +# self.parse1Point(line , pnt) +# self.graph.loadingPoints.append(pnt) +# print ' loading points : %d done'%self.loadingPointsNum +# +# for i in range(self.measuredPointsNum): +# pnt = MeasuredPoint() +# line = infile.readline() +# self.parse1Point(line , pnt) +# self.graph.measuredPoints.append(pnt) +# print ' measured points : %d done'%self.measuredPointsNum +# +# print 'DF points done.' +# return True +# +# def parseDFData(self , path): +# self.refreshBlocksData() +# file = open(path , "rb") +# if not self.__parseDataSchema(file) or not self.__parseBlocks(file) or \ +# not self.__parseBlockVertices(file) or not self.__parsePoints(file): +# return False +# +# return True +# +# def __parseParaSchema(self): +# ''' +# parse parameters from DF parameters file +# :param infile: +# ''' +# +# for i in range(7): +# line = self.__file.getNextLine() +# t =self.parseFloatNum(line) +# if t==None: return False +# +# if i==0: self.ifDynamic = float(t) +# elif i==1: self.stepsNum = int(t) +# elif i==2: self.blockMatsNum = int(t) +# elif i==3: self.jointMatsNum = int(t) +# elif i==4: self.ratio = t +# elif i==5: self.OneSteptimeLimit = int(t) +# else: self.springStiffness = int(t) +# +# print 'DF Para : IfDynamic: %d steps: %d blockMats: %d JointMats: %d Ratio: %f timeInterval: %d stiffness: %d'\ +# %(self.ifDynamic, self.stepsNum , self.blockMatsNum , self.jointMatsNum \ +# , self.ratio, self.OneSteptimeLimit, self.springStiffness) +# +# print 'Df parameters schema done' +# return True +# +# def __parsePointsParameters(self): +# ''' +# parse parameters for fixed points and loading points +# :param infile: +# ''' +# # parse fixed points and loading points' type 0 : fixed points , 2: loading points +# # fixed points +# if self.fixedPointsNum>0: +# line = self.__file.getNextLine() +# nums = line.split() +# for i in nums: +# if self.parseIntNum(i)==None : +# return False +# print nums +# +# # loading points +# if self.loadingPointsNum>0: +# line = self.__file.getNextLine() +# nums = line.split() +# for i in nums: +# if self.parseIntNum(i)==None : +# return False +# print nums +# +# # parse loading points parameters (starttime , stressX , stressY , endtime , stressX , stressY) +# for i in range(self.loadingPointsNum): +# digits = [1]*6 +# line1 = self.__file.getNextLine() +# nums1 = line1.split() +# line2 = self.__file.getNextLine() +# nums2 = line2.split() +# for j in range(3): +# digits[j] = self.parseIntNum(nums1[j]) +# digits[j+3] = self.parseIntNum(nums2[j]) +# if None in digits: +# return False +# self.loadingPoints.append(digits) +# +# print nums1 , nums2 +# +# print 'fixed points and loading points done.' +# +# return True +# +# def __parseBlocksAndJointsPara(self): +# ''' +# parse parameters for blocks and joints' +# :param infile: +# ''' +# for i in range(self.blockMatsNum): +# digits = [1]*14 +# line1 = self.__file.getNextLine() +# nums1 = line1.split() +# for j in range(5): +# digits[j] = self.parseFloatNum(nums1[j]) +# line2 = self.__file.getNextLine() +# nums2 = line2.split() +# line3 = self.__file.getNextLine() +# nums3 = line3.split() +# line4 = self.__file.getNextLine() +# nums4 = line4.split() +# for j in range(3): +# digits[j+5] = self.parseFloatNum(nums2[j]) +# digits[j+8] = self.parseFloatNum(nums3[j]) +# digits[j+11] = self.parseFloatNum(nums4[j]) +# if None in digits: +# return False +# self.blockMats.append(digits) +# print digits +# +# for i in range(self.jointMatsNum): +# digits = [1]*3 +# line = self.__file.getNextLine() +# nums = line.split() +# for j in range(3): +# digits[j] = self.parseFloatNum(nums[j]) +# if None in digits: +# return False +# self.jointMats.append(digits) +# print digits +# +# print 'DF blocks and block vertices\' parameters done.' +# +# return True +# +# def __parseRestPara(self ): +# ''' +# parse SOR and axes +# :param infile: +# ''' +# # parse SOR +# line = self.__file.getNextLine() +# self.SOR = self.parseFloatNum(line) +# if self.SOR==None: return False +# print 'SOR : ' , self.SOR +# +# line = self.__file.getNextLine() +# nums = line.split() +# for i in range(3): +# if self.parseFloatNum(nums[i])==None: +# return False +# print nums +# +# print 'DF parameters all done.' +# +# return True +# +# +# def parseDFParameters(self , path): +# self.refreshParas() +# self.__file.setFile(path) +# if not self.__parseParaSchema() or not self.__parsePointsParameters() \ +# or not self.__parseBlocksAndJointsPara() or not self.__parseRestPara(): +# return False +# +# return True + +class ParseDFInputParameters(BaseParseData): + def __init__(self): + self.__fileReader = None + self.reset() + + def reset(self): + from DDADatabase import df_inputDatabase + self.paras = df_inputDatabase.paras + self.paras.reset() + + def __parseParaSchema(self): + ''' + parse parameters from DF parameters file + :param infile: + ''' + + for i in range(7): + line = self.__file.getNextLine() + t =self.parseFloatNum(line) + if t==None: return False + + if i==0: self.paras.ifDynamic = float(t) + elif i==1: self.paras.stepsNum = int(t) + elif i==2: self.paras.blockMatsNum = int(t) + elif i==3: self.paras.jointMatsNum = int(t) + elif i==4: self.paras.ratio = t + elif i==5: self.paras.OneSteptimeLimit = int(t) + else: self.paras.springStiffness = int(t) + + print 'DF Para : IfDynamic: %d steps: %d blockMats: %d JointMats: %d Ratio: %f timeInterval: %d stiffness: %d'\ + %(self.paras.ifDynamic, self.paras.stepsNum , self.paras.blockMatsNum , self.paras.jointMatsNum \ + , self.paras.ratio, self.paras.OneSteptimeLimit, self.paras.springStiffness) + + print 'Df parameters schema done' + return True + + def __parsePointsParameters(self): + ''' + parse parameters for fixed points and loading points + :param infile: + ''' + # parse fixed points and loading points' type 0 : fixed points , 2: loading points + # fixed points + if self.fixedPointsNum>0: + line = self.__file.getNextLine() + nums = line.split() + for i in nums: + if self.parseIntNum(i)==None : + return False + print nums + + # loading points + if self.loadingPointsNum>0: + line = self.__file.getNextLine() + nums = line.split() + for i in nums: + if self.parseIntNum(i)==None : + return False + print nums + + # parse loading points parameters (starttime , stressX , stressY , endtime , stressX , stressY) + for i in range(self.loadingPointsNum): + digits = [1]*6 + line1 = self.__file.getNextLine() + nums1 = line1.split() + line2 = self.__file.getNextLine() + nums2 = line2.split() + for j in range(3): + digits[j] = self.parseIntNum(nums1[j]) + digits[j+3] = self.parseIntNum(nums2[j]) + if None in digits: + return False + self.paras.loadingPointMats.append(digits) + + print nums1 , nums2 + + print 'fixed points and loading points done.' + + return True + + def __parseBlocksAndJointsPara(self): + ''' + parse parameters for blocks and joints' + :param infile: + ''' + for i in range(self.blockMatsNum): + digits = [1]*14 + line1 = self.__file.getNextLine() + nums1 = line1.split() + for j in range(5): + digits[j] = self.parseFloatNum(nums1[j]) + line2 = self.__file.getNextLine() + nums2 = line2.split() + line3 = self.__file.getNextLine() + nums3 = line3.split() + line4 = self.__file.getNextLine() + nums4 = line4.split() + for j in range(3): + digits[j+5] = self.parseFloatNum(nums2[j]) + digits[j+8] = self.parseFloatNum(nums3[j]) + digits[j+11] = self.parseFloatNum(nums4[j]) + if None in digits: + return False + self.paras.blockMats.append(digits) + print digits + + for i in range(self.jointMatsNum): + digits = [1]*3 + line = self.__file.getNextLine() + nums = line.split() + for j in range(3): + digits[j] = self.parseFloatNum(nums[j]) + if None in digits: + return False + self.paras.jointMats.append(digits) + print digits + + print 'DF blocks and block vertices\' parameters done.' + + return True + + def __parseRestPara(self ): + ''' + parse SOR and axes + :param infile: + ''' + # parse SOR + line = self.__file.getNextLine() + self.paras.SOR = self.parseFloatNum(line) + if self.paras.SOR==None: return False + print 'SOR : ' , self.SOR + + line = self.__file.getNextLine() + nums = line.split() + for i in range(3): + if self.parseFloatNum(nums[i])==None: + return False + print nums + + print 'DF parameters all done.' + + return True + + + def parse(self , path = None): + self.reset() + if not path: Base.__currentProjectPath__+'/parameters.df' + if not checkFileExists(path): + return False + + import Base + self.__file.setFile(path) + if not self.__parseParaSchema() or not self.__parsePointsParameters() \ + or not self.__parseBlocksAndJointsPara() or not self.__parseRestPara(): + return False + + return True + + + + +class ParseDFInputGraphData(BaseParseData): + def __init__(self): + self.__fileReader = None + + def GetResources(self): + return { + 'MenuText': 'LoadDFInputData', + 'ToolTip': "Load DF Input Data"} + + def Activated(self): + self.parse() + import Base + Base.changeStep4Stage('ShapesAvailable') + + def finish(self): + pass + + def parse(self , path=None): + self.refreshBlocksData() + import Base + if not path : path = Base.__currentProjectPath__+'/data.df' + if not checkFileExists(path): + return False + + file = open(path , "rb") + if not self.__parseDataSchema(file) or not self.__parseBlocks(file) or \ + not self.__parseBlockVertices(file) or not self.__parsePoints(file): + Base.showErrorMessageBox("DataError", 'Data input unvalid') + return False + + return True + + def refreshBlocksData(self): + import Base + self.graph = Base.getDatabaser4CurrentStage() + self.graph.reset() + + self.blocksNum = 0 + self.blockVerticesNum = 0 + self.fixedPointsNum = 0 + self.loadingPointsNum = 0 + self.measuredPointsNum = 0 + self.boltElementsNum = 0 + def __parseDataSchema(self , infile): + line = infile.readline() + nums = line.split() + self.blocksNum = self.parseIntNum(nums[0]) + self.boltElementsNum = self.parseIntNum(nums[1]) + self.blockVerticesNum = self.parseIntNum(nums[2]) + + line = infile.readline() + nums = line.split() + self.fixedPointsNum = self.parseIntNum(nums[0]) + self.loadingPointsNum = self.parseIntNum(nums[1]) + self.measuredPointsNum = self.parseIntNum(nums[2]) + + if None in [self.blocksNum , self.boltElementsNum , self.blockVerticesNum \ + , self.fixedPointsNum , self.loadingPointsNum , self.measuredPointsNum]: + return False + print 'DF data : blocks : %d bolts : %d vertices : %d fixed Pnts :%d LoadingPnts :%d MeasuredPnts: %d' \ + %(self.blocksNum , self.boltElementsNum , self.blockVerticesNum \ + , self.fixedPointsNum , self.loadingPointsNum , self.measuredPointsNum) + return True + + def __parseBlocks(self , infile): + ''' + parsing blocks and try to get the maximum material No + :param infile: + ''' + from DDADatabase import df_inputDatabase + df_inputDatabase.blockMatCollections = set() + blockMatCollection = df_inputDatabase.blockMatCollections + + for i in range(0 , self.blocksNum): + line = infile.readline() + nums = line.split() + + # get blocks' vertices' material No + t0 = self.parseIntNum(nums[0]) + t1 = self.parseIntNum(nums[1]) + t2 = self.parseIntNum(nums[2]) + if t0==None or t1==None or t2==None: + return False + + tmpB = Block() + tmpB.materialNo = t0 + tmpB.startNo = t1 + tmpB.endNo = t2 + blockMatCollection.add(t0) + self.graph.blocks.append(tmpB ) + +# print line , + + print 'DF blocks Info done.' + + return True + + def __parseBlockVertices(self,infile): + ''' + parsing blocks' vertices and try to get the maximum material No + :param infile: + ''' + from DDADatabase import df_inputDatabase + df_inputDatabase.jointMatCollections =set() + jointMatCollection = df_inputDatabase.jointMatCollections + + for i in range(self.blocksNum): + tmpB = self.graph.blocks[i] + for j in range(int(tmpB.endNo) - int(tmpB.startNo) +1): # read blocks vertices + line = infile.readline() +# print line + nums = line.split() + + # get joint material No + t0 = int(self.parseFloatNum(nums[0])) + t1 = self.parseFloatNum(nums[1]) + t2 = self.parseFloatNum(nums[2]) + if t0==None or t1==None or t2==None: + return False + tmpB.vertices.append( (t0,t1,t2) ) + jointMatCollection.add(t0) + + for i in range(4): # block parameters + line = infile.readline() +# print line + nums = line.split() + t0 = self.parseFloatNum(nums[0]) + t1 = self.parseFloatNum(nums[1]) + t2 = self.parseFloatNum(nums[2]) + if t0==None or t1==None or t2==None: + return False + + tmpB.parameters.extend([t0,t1,t2]) + + print 'DF blocks vertices data done.' + return True + + def parse1Point(self , line , point): + #print line , + nums = line.split() + point.x = self.parseFloatNum(nums[0]) + point.y = self.parseFloatNum(nums[1]) + point.blockNo = int(self.parseFloatNum(nums[2])) + + def __parsePoints(self , infile): + ''' + parsing fixed , loading , and measured points + :param infile: + ''' + for i in range(self.fixedPointsNum): + pnt = FixedPoint() + line = infile.readline() + self.parse1Point(line , pnt) + self.graph.fixedPoints.append(pnt) + print ' fixed points : %d done'%self.fixedPointsNum + + for i in range(self.loadingPointsNum): + pnt = LoadingPoint() + line = infile.readline() + self.parse1Point(line , pnt) + self.graph.loadingPoints.append(pnt) + print ' loading points : %d done'%self.loadingPointsNum + + for i in range(self.measuredPointsNum): + pnt = MeasuredPoint() + line = infile.readline() + self.parse1Point(line , pnt) + self.graph.measuredPoints.append(pnt) + print ' measured points : %d done'%self.measuredPointsNum + + print 'DF points done.' + return True + + +class ParseAndLoadDCInputData(BaseParseData): + def __init__(self): + self.reset() + self.__fileReader = FileReader() + + def GetResources(self): + return { + 'MenuText': 'LoadDCInputData', + 'ToolTip': "Load DC Input Data"} + + def Activated(self): + self.parse() + import Base + Base.changeStep4Stage('SpecialStep') + + import Base + database = Base.getDatabaser4CurrentStage() + database.clearRedoUndoList() + + def finish(self): + pass + + def reset(self): + self.jointLinesNum = 0 + self.materialLinesNum = 0 + self.additionalLinesNum = 0 + self.boltElementsNum = 0 + self.fixedPointsNum = 0 + self.loadingPointsNum = 0 + self.measuredPointsNum = 0 + self.holePointsNum = 0 + + def __ParsePandect(self): + from DDADatabase import dc_inputDatabase + + self.__fileReader.getNextLine() # minimum edge length e0 + + nums = self.__fileReader.getNextLine().split() + self.jointLinesNum = self.parseIntNum(nums[0]) + + # temperary code, I will try to revise this if I fully understand the data.dc + dc_inputDatabase.boundaryLinesNum = self.parseIntNum(nums[1]) + + nums = self.__fileReader.getNextLine() + self.materialLinesNum = self.parseIntNum(nums) + + nums = self.__fileReader.getNextLine() + self.boltElementsNum = self.parseIntNum(nums) + + nums = self.__fileReader.getNextLine() + self.fixedPointsNum = self.parseIntNum(nums) + + nums = self.__fileReader.getNextLine() + self.loadingPointsNum = self.parseIntNum(nums) + + nums = self.__fileReader.getNextLine() + self.measuredPointsNum = self.parseIntNum(nums) + + nums = self.__fileReader.getNextLine() + self.holePointsNum = self.parseIntNum(nums) + + def __parseLines(self): + from DDADatabase import dc_inputDatabase + # joint lines + dc_inputDatabase.jointLines = [] + for i in range(self.jointLinesNum): + nums = self.__fileReader.getNextLine().split() + jointMaterial = int(self.parseFloatNum(nums[4])) + p1 = ( self.parseFloatNum(nums[0]) , self.parseFloatNum(nums[1]) , 0 ) + p2 = ( self.parseFloatNum(nums[2]) , self.parseFloatNum(nums[3]) , 0 ) + dc_inputDatabase.jointLines.append(DDALine(p1 , p2 , jointMaterial)) + + # material lines + dc_inputDatabase.materialLines = [] + for i in range(self.materialLinesNum): + self.__fileReader.getNextLine() + + + # bolt elements + pass + + def __parsePoints(self): + from DDADatabase import dc_inputDatabase + import Base + # fixed points + windowInfo = [0 , 0 , 0 , 0] + nums = self.__fileReader.getNextLine().split() + p = (self.parseFloatNum(nums[0]) , self.parseFloatNum(nums[1]) , 0) + dc_inputDatabase.fixedPoints.append( FixedPoint(p[0] , p[1])) + windowInfo[0] = windowInfo[1] = p[0] + windowInfo[2] = windowInfo[3] = p[1] + for i in range(self.fixedPointsNum-1): + nums = self.__fileReader.getNextLine().split() + p = (self.parseFloatNum(nums[0]) , self.parseFloatNum(nums[1]) , 0) + if p[0]windowInfo[1]:windowInfo[1] = p[0] + if p[1]windowInfo[3]:windowInfo[3] = p[1] + dc_inputDatabase.fixedPoints.append( FixedPoint(p[0] , p[1])) + + Base.__radius4Points__ = (windowInfo[1] - windowInfo[0]) * 0.01 + Base.__windowInfo__ = windowInfo + + # loading points + for i in range(self.loadingPointsNum): + nums = self.__fileReader.getNextLine().split() + dc_inputDatabase.loadingPoints.append( \ + LoadingPoint(self.parseFloatNum(nums[0]) , self.parseFloatNum(nums[1]))) + # measured points + for i in range(self.measuredPointsNum): + nums = self.__fileReader.getNextLine().split() + dc_inputDatabase.measuredPoints.append( \ + MeasuredPoint(self.parseFloatNum(nums[0]) , self.parseFloatNum(nums[1]))) + # hole points + for i in range(self.holePointsNum): + nums = self.__fileReader.getNextLine().split() + dc_inputDatabase.holePoints.append( \ + HolePoint(self.parseFloatNum(nums[0]) , self.parseFloatNum(nums[1]))) + + def parse(self): + import Base + filename = Base.__currentProjectPath__ + '/data.dc' + print 'try to read DC data from file : ' , filename +# filename = Base.__currentProjectPath__ + '/tmpData.dc' + self.__fileReader.setFile(filename) + self.reset() + self.__ParsePandect() + self.__parseLines() + self.__parsePoints() + self.__fileReader.closeFile() + + +class DDALoadData(): + def __init__(self): + self.current_path = Base.__currentProjectPath__ + + def changeStage( self ): + if Base.__currentStage__ == 'DL': # DL stage + print 'switch to DL stage' + self.parseData = ParseAndLoadDLData() + elif Base.__currentStage__ == 'DC': # DC stage + pass + + def GetResources(self): + return { + 'MenuText': 'Load', + 'ToolTip': "Load DL data."} + + + def __storeFileName(self , filename): + ''' + store the name of file which is being loaded + ''' + file = open(self.current_path+'\\Ff.c' , 'wb') + file.write(filename.strip().split('/')[-1]) + file.close() + + def __confirmLoadFile(self): + ''' + if a new data file loaded , old shapes will be cleared , so before this ,we have to make sure if user want to do this. + ''' + box = QtGui.QMessageBox() + box.setText('New data will be imported , and old shapes will be wipped.') + box.setInformativeText('Do you want to do this?') + box.setStandardButtons(QtGui.QMessageBox.Ok | QtGui.QMessageBox.Cancel) + box.setDefaultButton(QtGui.QMessageBox.Ok) + ret = box.exec_() + if ret == QtGui.QMessageBox.Ok: + return True + return False + + def Activated(self): + self.changeStage() + filename = str( QtGui.QFileDialog.getOpenFileName(None , 'please select input file' , self.current_path) ) + if not self.parseData.parse(filename): + self.parseData.reset() + print 'input data status : invalid' + return False + print 'input data status : ok' + if self.__confirmLoadFile(): + self.__storeFileName(filename) + self.parseData.save2Database() + FreeCADGui.DDADisplayCmd.preview() + + def finish(self): + pass + +FreeCADGui.addCommand('DDA_LoadDLInputData', ParseAndLoadDLData()) + +FreeCADGui.addCommand('DDA_Load', DDALoadData()) +FreeCADGui.addCommand('DDA_LoadDCInputData', ParseAndLoadDCInputData()) +FreeCADGui.addCommand('DDA_LoadDFInputGraphData', ParseDFInputGraphData()) \ No newline at end of file diff --git a/src/Mod/DDA/storeScene.py b/src/Mod/DDA/storeScene.py new file mode 100644 index 000000000000..33c4456ead16 --- /dev/null +++ b/src/Mod/DDA/storeScene.py @@ -0,0 +1,669 @@ +# coding=gbk + +#*************************************************************************** +#* * +#* Copyright (c) 2009, 2010 * +#* Xiaolong Cheng * +#* * +#* 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 QtGui , QtCore +import FreeCAD +import FreeCADGui +import DDADatabase +import Base +from Base import showErrorMessageBox + +from Base import __currentProjectPath__ , __workbenchPath__ + +def writeStr(file , str): + file.write(str+'\n') + +class BaseStore: + ''' + base class to store scene information + storeScene() is a virtual function , that will be overwrited in inherited classes to store + concrete information (for example , DL , DC) + ''' + def storeScene(self): + pass + + def getRealType(self , obj): + name = obj.Label + for i in range(1 , len(name)): + if not name[-i] in '1234567890': + return name[:len(name)-i+1] + return name + + def Activated(self): + if FreeCAD.activeDDACommand: + FreeCAD.activeDDACommand.finish() + self.storeScene() + + def Deactivated(self): + self.finish() + pass + + def finish(self): + pass + + +class DLInformationStore(BaseStore): + ''' + Data writer for DL , file path store in __filePath__ + ''' + + def __init__(self): + self.database = DDADatabase.dl_database + self.valid = True + + def GetResources(self): + return { + 'MenuText': 'DL_Store', + 'ToolTip': "store data for dl."} + + def checkDataValid(self): +# if not (self.boundaryLines and len(self.boundaryLines)>0) : + from DDADatabase import dl_database + if not len(dl_database.boundaryNodes)>0 : + FreeCAD.Console.PrintError('boundary lines store failed. \nPlease input boundary lines first.\n') + showErrorMessageBox('Input Error' , 'Please input boundary lines first') + return False + + return True + + def isDataValid(self): + return self.valid + + def storeScene(self): + FreeCAD.Console.PrintMessage('storing DL information\n') + + print ' object parsing done.' + + if not self.checkDataValid(): + self.valid = False + return + + print ' check passed.' + + database = DDADatabase.dl_database + self.jointSets = database.jointSets + self.slope = database.slope + self.tunnels = database.tunnels + + print ' joints , tunnels done.' + + self.write2DLFile() + FreeCAD.Console.PrintMessage('DL information store done.\n') + + self.valid = True + + def writePandect( self , file): + ''' + write pandect information to file , for example , number of additional lines , material lines , hole points , etc + ''' + # minimum edge length e0 + writeStr( file , str(0.0220)) # the number comes from dl24 + writeStr( file , str(len(self.jointSets))) + + from DDADatabase import dl_database + pts = dl_database.boundaryNodes[0].pts + num = len(pts) + if pts[0]==pts[-1]: + num = num-1 + writeStr( file , str(num)) + + writeStr( file , str(len(self.tunnels))) + + num = 0 + for pline in dl_database.borderNodes+dl_database.additionalLines : + num+=len(pline.pts)-1 + + writeStr( file , str(num)) + writeStr( file , '0') # material line + writeStr( file , '0') # bolt element number + writeStr( file , str(len(dl_database.fixedPoints))) + writeStr( file , str(len(dl_database.loadingPoints))) + writeStr( file , str(len(dl_database.measuredPoints))) + writeStr( file , str(len(dl_database.holePoints))) + + def writeBoundaryNodes( self , file ): + ''' + write boundary nodes + ''' + from DDADatabase import dl_database + pts = dl_database.boundaryNodes[0].pts + if pts[0]==pts[-1]: + pts = pts[:-1] + for p in pts: + writeStr( file , '%.6f %.6f' % (p[0] , p[1])) + + def writeLines( self , file): + ''' + write lines to file . For example , additional lines + ''' + # store additional lines + database = DDADatabase.dl_database + + for pline in database.additionalLines + database.borderNodes: + pts = pline.pts + for i in range(len(pts)-1): + p1 = pts[i] + p2 = pts[i+1] + writeStr( file , '%f %f %f %f %d'%(p1[0],p1[1],p2[0],p2[1] , pline.materialNo)) + + + def writeJointSetsAndSlope(self , file): + for joint in self.jointSets: + writeStr( file , '%f %f'%(joint[0],joint[1])) + + if len(self.slope)>0: + writeStr(file , '%f %f'%(self.slope[0][0],self.slope[0][1])) + + for joint in self.jointSets: + writeStr( file , '%f %f %f %f'%(joint[2], joint[3], joint[4], joint[5])) + + def writeTunnels(self , file): + for tunnel in self.tunnels: + print 'tunnel ' , tunnel + writeStr(file , '%d\n%f %f %f %f\n%f %f'%tunnel) + + def writePoints(self,file): + + from DDADatabase import dl_database + tmpContent = [] + + tmpContent.extend(['%f %f %f %f'%(p.x , p.y , p.x , p.y) for p in dl_database.fixedPoints]) + tmpContent.extend(['%f %f'%(p.x , p.y) for p in dl_database.loadingPoints]) + tmpContent.extend(['%f %f'%(p.x , p.y) for p in dl_database.measuredPoints]) + tmpContent.extend(['%f %f'%(p.x , p.y) for p in dl_database.holePoints]) + + writeStr( file , '\n'.join(tmpContent) +'\n') + + def write2DLFile(self): + print 'storing DL data' + try: + filename = Base.__currentProjectPath__ + '/data.dl' + file = open( filename , 'wb' , True) # 使用缓存,flush时再写入硬盘 + print 'begin writing data to file %s'%filename + except: + FreeCAD.Console.PrintError(' %s open failed\n') + return + + Base.setGraphRevised() # graph of active document has + + self.writePandect( file ) + self.writeJointSetsAndSlope(file) + file.flush() + self.writeBoundaryNodes(file) + file.flush() + self.writeTunnels(file) + self.writeLines( file ) + file.flush() + self.writePoints( file ) + + file.close() + + wholePath = __workbenchPath__ + '\\Ff.c' + file = open( wholePath , 'wb' ) #保存文件名 + file.write(filename) + file.close() + print 'file save done' + +class JointLineChangesConfirm(BaseStore): + ''' + 对应于ParseAndLoadDCInputData 使用,这类要保存的数据都在 dc_inputDatabase 中 + ''' + def __init__(self): + self.newFile = [] + + self.materialLines = [] + + def GetResources(self): + return { + 'MenuText': 'Confirm', + 'ToolTip': "confirm the data changes."} + + def storeScene(self): + self.collectShapes() + self.organizeContent() + self.write2File() + + + def storeShape( self , obj): + type = self.getRealType(obj) + print type + if type == 'MaterialLine': + self.materialLines.append(obj) + + + def organizeContent(self): + ''' + organize content that will be writen into file. + self.oldFile is original file + self.newFile is the new file + ''' + file = open(Base.__currentProjectPath__+'/data.dc','rb') + self.oldFile = file.read(-1).split('\n') + for i,line in enumerate(self.oldFile): + self.oldFile[i]=line.strip() + file.close() + + from DDADatabase import dc_inputDatabase + # schema + nums = self.oldFile[1].split() + self.jointLinesNum = int(nums[0]) + self.BoundaryLinesNum = int(nums[1]) + + self.newFile = [] + self.newFile.extend(self.oldFile[0:2]) + + self.newFile.append('%d\n%d\n%d\n%d\n%d\n%d'%(len(dc_inputDatabase.materialLines) , 0 \ + , len(dc_inputDatabase.fixedPoints) , len(dc_inputDatabase.loadingPoints) \ + , len(dc_inputDatabase.measuredPoints) , len(dc_inputDatabase.holePoints))) + + # lines + self.__addLines() + + # points + for p in dc_inputDatabase.fixedPoints: + self.newFile.append('%f %f %f %f'%(p[0],p[1] , p[0],p[1])) + + self.__addPoints(dc_inputDatabase.loadingPoints) + self.__addPoints(dc_inputDatabase.measuredPoints) + self.__addPoints(dc_inputDatabase.holePoints) + + if len(dc_inputDatabase.holePoints)>0: + self.newFile.append('0') + else: + self.newFile.append('0\n0 0') + + def __applyJointLinesChanges(self): + from DDADatabase import dc_inputDatabase + + jointLinesChanges = [] + for i in range(len(dc_inputDatabase.jointLines)): + jointLinesChanges.append([]) + + for item in dc_inputDatabase.jointLinesChanges.items(): + # item --> refer to DCInputDatabase.__init__() + jointSetNo = item[0][0]+1 + subElementNo = item[0][1]-1 + if item[1][0]!='D': # key is not 'Delete' + dc_inputDatabase.jointLines[jointSetNo][subElementNo*2] = item[1][0] + dc_inputDatabase.jointLines[jointSetNo][subElementNo*2+1] = item[1][1] + else: # 'Delete' + jointLinesChanges[jointSetNo].append(subElementNo) + + for i in range(len(jointLinesChanges)): + jointLinesChanges[i].sort(reverse = True) + + for i in range(len(jointLinesChanges)): + for j in range(len(jointLinesChanges[i])): + del dc_inputDatabase.jointLines[i][2*j+1] # 删除顺序不能错 + del dc_inputDatabase.jointLines[i][2*j] + + + def __addLines(self): + from DDADatabase import dc_inputDatabase + + # write joint lines + self.__applyJointLinesChanges() + nums = 0 + for materialNo , pts in enumerate(dc_inputDatabase.jointLines): + if pts==None: + continue + t = len(pts)/2 + nums+=t + for i in range(t): + p1 = pts[2*i] + p2 = pts[2*i+1] + self.newFile.append('%f %f %f %f %f'%(p1[0],p1[1],p2[0],p2[1],materialNo)) + + # update self.jointLinesNum + self.jointLinesNum = nums + tmpN = self.newFile[1].split() + self.newFile[1] = '%d %s'%(self.jointLinesNum, tmpN[1]) + + # material lines + for line in self.materialLines: + start = line.ViewObject.StartPoint + end = line.ViewObject.EndPoint + self.newFile.append('%f %f %f %f %f'%(start[0],start[1],end[0],end[1],line.ViewObject.Material)) + + + def __addPoints(self , points): + ''' + add points to self.newFile + ''' + for p in points: + self.newFile.append('%f %f'%(p[0],p[1])) + + def reset(self): + self.materialLines = [] + + def collectShapes(self): + self.reset() + doc = FreeCAD.ActiveDocument # 获取当前活动视图 + objs = doc.Objects # 获取当前对象列表,有时效性,如获得后列表更新,这个已获得不会改变 + for obj in objs : + self.storeShape(obj) + + def write2File(self): + paraFile = open(Base.__workbenchPath__+'/dc_Ff.c', 'wb') +# paraFile.write(Base.__currentProjectPath__+'/tmpData.dc') + paraFile.write(Base.__currentProjectPath__+'/data.dc') + paraFile.close() + +# outfile = open(Base.__currentProjectPath__+'/tmpData.dc', 'wb') + outfile = open(Base.__currentProjectPath__+'/data.dc', 'wb') + outfile.write('\n'.join(self.newFile)) + outfile.close() + + +class DCChangesConfirm(BaseStore): + ''' + this class is used to add material lines, four kinds of points in DC process + ''' + def __init__(self): + self.database = None + self.fixedPoints = [] + self.loadingPoints = [] + self.measuredPoints = [] + self.holePoints = [] + + self.jointLinesNum = 0 + self.BoundaryLinesNum = 0 + + self.oldFile = [] + self.newFile = [] + + def GetResources(self): + return { + 'MenuText': 'DC_Store', + 'ToolTip': "store data for dc."} + + def reset(self): + self.fixedPoints = [] + self.loadingPoints = [] + self.measuredPoints = [] + self.holePoints = [] + self.materialLines = [] + + def storeShape( self , obj): + type = self.getRealType(obj) +# print type + if type == 'MaterialLine': + self.materialLines.append(obj) + if type == 'FixedPoint': + self.fixedPoints.append(obj) + elif type == 'LoadingPoint': + self.loadingPoints.append(obj) + elif type == 'MeasuredPoint': + self.measuredPoints.append(obj) + elif type == 'HolePoint': + self.holePoints.append(obj) + + def storeScene(self): + self.collectPoints() + self.organizeContent() + self.write2File() + + + def organizeContent(self): + ''' + organize content that will be writen into file. + self.oldFile is original file + self.newFile is the new file + ''' + file = open(Base.__currentProjectPath__+'/data.dc','rb') + self.oldFile = file.read(-1).split('\n') + for i,line in enumerate(self.oldFile): + self.oldFile[i]=line.strip() + file.close() + + # schema + nums = self.oldFile[1].split() + self.jointLinesNum = int(nums[0]) + self.BoundaryLinesNum = int(nums[1]) + + self.newFile = [] + self.newFile.extend(self.oldFile[0:2]) + + self.newFile.append('%d\n%d\n%d\n%d\n%d\n%d'%(len(self.materialLines) , 0 \ + , len(self.fixedPoints) , len(self.loadingPoints) \ + , len(self.measuredPoints) , len(self.holePoints))) + + # lines + self.__addLines() + + # points + for p in self.fixedPoints: + center = p.ViewObject.Center + self.newFile.append('%f %f %f %f'%(center[0],center[1] , center[0],center[1])) + + self.__addPoints(self.loadingPoints) + self.__addPoints(self.measuredPoints) + self.__addPoints(self.holePoints) + + if len(self.holePoints)>0: + self.newFile.append('0') + else: + self.newFile.append('0\n0 0') + + + def __addLines(self): + self.newFile.extend(self.oldFile[8:8+self.jointLinesNum]) + + for line in self.materialLines: + start = line.ViewObject.StartPoint + end = line.ViewObject.EndPoint + self.newFile.append('%f %f %f %f %f'%(start[0],start[1],end[0],end[1],line.ViewObject.Material)) + + + def __addPoints(self , points): + ''' + add points to self.newFile + ''' + for p in points: + center = p.ViewObject.Center + self.newFile.append('%f %f'%(center[0],center[1])) + + def collectPoints(self): + self.reset() + doc = FreeCAD.ActiveDocument # 获取当前活动视图 + objs = doc.Objects # 获取当前对象列表,有时效性,如获得后列表更新,这个已获得不会改变 + for obj in objs : + self.storeShape(obj) + + def write2File(self): + paraFile = open(Base.__workbenchPath__+'/dc_Ff.c', 'wb') + paraFile.write(Base.__currentProjectPath__+'/data.dc') + paraFile.close() + + outfile = open(Base.__currentProjectPath__+'/data.dc', 'wb') + outfile.write('\n'.join(self.newFile)) + outfile.close() + + +class DCInputDataStore(BaseStore): + ''' + this class is used to add material lines, four kinds of points in DC process + ''' + def __init__(self): + self.reset() + + def GetResources(self): + return { + 'MenuText': 'DC_Store', + 'ToolTip': "store data for dc."} + + def reset(self): + self.database = None + self.content = '' + + def getPandect(self): + from DDADatabase import dc_inputDatabase , dl_database + + mine0 = 0.022000 + jointLinesCount = len(dc_inputDatabase.jointLines) + boundaryLinesCount = dc_inputDatabase.boundaryLinesNum + materialLinesNum = 0 + boltsNum = 0 + fps = len([p for p in dc_inputDatabase.fixedPoints if p.visible]) + lps = len([p for p in dc_inputDatabase.loadingPoints if p.visible]) + mps = len([p for p in dc_inputDatabase.measuredPoints if p.visible]) + hps = len([p for p in dc_inputDatabase.holePoints if p.visible]) + + return '%f\n%d %d\n%d\n%d\n%d\n%d\n%d\n%d\n'%(mine0 , jointLinesCount\ + , boundaryLinesCount , materialLinesNum , boltsNum , fps , lps , mps , hps) + + def getLines(self): + from DDADatabase import dc_inputDatabase + tmpContent = [] + for line in dc_inputDatabase.jointLines: +# if not line.visible: + p1 = line.startPoint + p2 = line.endPoint + tmpContent.append('%f %f %f %f %f'%(p1[0] , p1[1] , p2[0] , p2[1] , line.materialNo)) + return ('\n'.join(tmpContent))+'\n' + + def getPoints(self): + from DDADatabase import dc_inputDatabase + tmpContent = [] + + tmpContent.extend(['%f %f %f %f'%(p.x , p.y , p.x , p.y) for p in dc_inputDatabase.fixedPoints if p.visible]) + tmpContent.extend(['%f %f'%(p.x , p.y) for p in dc_inputDatabase.loadingPoints if p.visible]) + tmpContent.extend(['%f %f'%(p.x , p.y) for p in dc_inputDatabase.measuredPoints if p.visible]) + tmpContent.extend(['%f %f'%(p.x , p.y) for p in dc_inputDatabase.holePoints if p.visible]) + + return ('\n'.join(tmpContent)) +'\n' + + def storeScene(self): + ''' + organize content that will be writen into file. + self.oldFile is original file + self.newFile is the new file + ''' + print 'start to store DL information' + self.content = self.getPandect() + self.getLines() + self.getPoints() + self.write2File() + self.content = '' + print 'DL information store done' + + def write2File(self): + outfile = open(Base.__currentProjectPath__+'/data.dc', 'wb') + outfile.write(self.content) + outfile.close() + + +class DFInputGraphDataStore(BaseStore): + ''' + this class is used to add material lines, four kinds of points in DC process + ''' + def __init__(self): + self.reset() + + def GetResources(self): + return { + 'MenuText': 'DC_Store', + 'ToolTip': "store data for dc."} + + def reset(self): + self.database = None + self.content = '' + + def getPandect(self): + from DDADatabase import df_inputDatabase + blocksNum = 0 + boltsNum = 0 + + jointsNum = 0 + for block in df_inputDatabase.blocks: + if block.visible(): + blocksNum += 1 + jointsNum += len(block.vertices) + jointsNum += blocksNum*4 # parameters for block + + fps = len([p for p in df_inputDatabase.fixedPoints if p.visible]) + lps = len([p for p in df_inputDatabase.loadingPoints if p.visible]) + mps = len([p for p in df_inputDatabase.measuredPoints if p.visible]) + + return '%d %d %d\n%d %d %d\n'%(blocksNum , boltsNum , jointsNum\ + , fps , lps , mps) + + def getBlocksSchema(self): + from DDADatabase import df_inputDatabase + tmpContent = [] + jointsCount = 1 + for block in df_inputDatabase.blocks: + if block.visible(): + tmpContent.append('%d %d %d'%(block.materialNo , jointsCount \ + , jointsCount+len(block.vertices)-1)) + jointsCount = jointsCount+len(block.vertices)+4 + return ('\n'.join(tmpContent))+'\n' + + def getJoints(self): + from DDADatabase import df_inputDatabase + tmpContent = [] + for block in df_inputDatabase.blocks: + if block.visible(): + tmpContent.extend(['%f %f %f'%(t[0],t[1],t[2]) for t in block.vertices]) + paras = block.parameters + for i in range(4): + tmpContent.append('%f %f %f'%(paras[3*i],paras[3*i+1],paras[3*i+2])) + return ('\n'.join(tmpContent))+'\n' + + + def getPoints(self): + from DDADatabase import df_inputDatabase + tmpContent = [] + + tmpContent.extend(['%f %f %f'%(p.x , p.y , p.blockNo) for p in df_inputDatabase.fixedPoints if p.visible]) + tmpContent.extend(['%f %f %f'%(p.x , p.y , p.blockNo) for p in df_inputDatabase.loadingPoints if p.visible]) + tmpContent.extend(['%f %f %f'%(p.x , p.y , p.blockNo) for p in df_inputDatabase.measuredPoints if p.visible]) + + return ('\n'.join(tmpContent)) +'\n' + + def storeScene(self): + ''' + organize content that will be writen into file. + self.oldFile is original file + self.newFile is the new file + ''' + print 'start to store DC information' + self.content = self.getPandect() + self.getBlocksSchema() \ + + self.getJoints() + self.getPoints() + self.write2File() + self.content = '' + print 'DC information store done' + + def write2File(self): + outfile = open(Base.__currentProjectPath__+'/data.df', 'wb') + outfile.write(self.content) + outfile.close() + + +DLStoreData = DLInformationStore() +FreeCADGui.addCommand('DDA_StoreData', DLStoreData) +FreeCADGui.addCommand('DDA_JointLineChangesConfirm', JointLineChangesConfirm()) +FreeCADGui.addCommand('DDA_DCChangesConfirm', DCChangesConfirm()) +FreeCADGui.addCommand('DDA_DCInputDataStore', DCInputDataStore()) +FreeCADGui.addCommand('DDA_DFInputGraphDataStore', DFInputGraphDataStore()) \ No newline at end of file diff --git a/src/Mod/DDA/testInterfaceTools.py b/src/Mod/DDA/testInterfaceTools.py new file mode 100644 index 000000000000..30d279e069cf --- /dev/null +++ b/src/Mod/DDA/testInterfaceTools.py @@ -0,0 +1,88 @@ +# coding=gbk +#*************************************************************************** +#* * +#* Copyright (c) 2009, 2010 * +#* Xiaolong Cheng * +#* * +#* 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 interfaceTools + +######################################### +# test tools +# +######################################### +#s1 = [1 , 3 , 6 , 9 , 11] +#s2 = [0 , 2 , 3 , 10] +#s3 = [2 , 4 , 9 , 13] +#s4 = [1 , 3 , 6 , 9 , 11] +#print interfaceTools.calcIntersection(s1, s2) +#print interfaceTools.calcIntersection(s1, s3) +#print interfaceTools.calcIntersection(s1, s4) +# +#print interfaceTools.calcUnion(s1, s2) +#print interfaceTools.calcUnion(s1, s3) +#print interfaceTools.calcUnion(s1, s4) + + +######################################### +# test LineSelection +# +######################################### +#m = interfaceTools.LineSelection() +# +#segLists = [[1,3],[1,2,3,4],[1,2,4],[3,4]] +#m.setData(segLists) +#matrix = m.matrix +#for i in range(len(matrix)): +# print '======== line ' , i +# for j in range(len(matrix[i])): +# print '\t' , matrix[i][j] +# + +######################################## +# test RectangleSelection +######################################## + +rects = interfaceTools.RectangleSelection() +rectangles = [(0,4,4,0),(4,6,6,4),(3,7,7,3),(7,5,9,2)] +rects.setData(rectangles) +print rects.getIntersectedRectsNo(3, 4, 4 , 3) +print '===============' +print rects.getIntersectedRectsNo(3, 5, 5 , 3) + +###################################### +# 折半查找测试 +###################################### +#coords = [0 , 3 , 5 , 7 , 9 , 10 , 11] +#print rects.getIndex(-2, coords) +#print rects.getIndex(12, coords) +#print rects.getIndex(3, coords) +#print rects.getIndex(10, coords) +#print rects.getIndex(2, coords) +#print rects.getIndex(4, coords) +#print rects.getIndex(8, coords) +#print rects.getIndex(4.6, coords) + +######################################### +# test BorderCalculator +######################################### +#pts = [(0,0,0),(1,1,0),(2,0,0),(3,0,0),(4,1,0),(5,0,0),(6,1,0),(4,4,0),(3,2,0),(2,4,0),(0,2,0)] +#border = interfaceTools.BorderCalculator() +#print border.calcualteBorder(pts) \ No newline at end of file diff --git a/src/Mod/DDA/test_rc.py b/src/Mod/DDA/test_rc.py new file mode 100644 index 000000000000..4e56d71dd5dc --- /dev/null +++ b/src/Mod/DDA/test_rc.py @@ -0,0 +1,530 @@ +# -*- coding: utf-8 -*- + +# Resource object code +# +# Created: 鍛ㄤ簩 浜旀湀 21 22:03:21 2013 +# by: The Resource Compiler for PyQt (Qt v4.8.4) +# +# WARNING! All changes made in this file will be lost! + +from PyQt4 import QtCore + +qt_resource_data = "\ +\x00\x00\x04\xb3\ +\x00\ +\x00\x29\xf9\x78\x9c\xe5\x5a\x5b\x8f\xa3\x36\x14\x7e\xaf\xd4\xff\ +\x60\xe5\xb9\x5d\xc2\x2d\x3b\x33\x22\x59\x75\x26\x3b\xdb\x87\x19\ +\x69\x56\xbb\x55\x1f\x23\x02\x4e\x70\x17\x70\x64\x4c\x93\xfc\xfb\ +\x62\x73\x27\x81\x4c\x8c\x21\x5a\xf5\x29\xf8\x92\xe3\x73\xbe\xe3\ +\x8f\xe3\xcf\xc2\xfa\x74\x08\x7c\xf0\x2f\x24\x11\xc2\xe1\x7c\xa2\ +\x7e\x98\x4e\x00\x0c\x1d\xec\xa2\x70\x3b\x9f\xfc\xf5\xfd\xf9\xf7\ +\xbb\xc9\xa7\xc5\xaf\xbf\x58\x31\x2a\x67\x19\xc9\xac\xa4\x0f\x58\ +\x8e\x6f\x47\xd1\xe2\x4b\x8c\x1e\x1e\x96\xc8\xf6\xf1\x36\xf9\xf5\ +\xb7\xdf\x20\xa5\xc9\xdf\xa3\x25\xb1\x37\xd4\x52\xd2\x49\x6c\xfa\ +\x1e\xb9\x5b\x48\x01\xef\x98\x4f\xbe\xfe\xcd\x9b\x13\x10\xda\x01\ +\x9c\x4f\x9e\x31\x09\xb8\x55\x60\xed\x08\xde\x41\x42\x8f\xd9\xc8\ +\x16\xe2\x00\x52\x72\x4c\x47\x81\x45\xa0\x43\xd3\x47\x60\x1d\x16\ +\x53\x4b\x39\xe4\xad\x23\x6b\x1d\xf3\x56\xb2\x1c\xf5\x16\x33\x5d\ +\xb7\x94\xf4\x31\xeb\xf7\x20\xda\x7a\x74\x61\xce\x66\x96\x92\x3d\ +\xa7\x86\x95\xc2\xb2\xa5\xe4\x3e\x9c\xf5\x68\x8f\x42\x17\xef\xbf\ +\x23\xea\xc3\xdc\xa9\x88\x92\x24\xe6\x05\x8b\xc2\x52\xb2\xc6\x39\ +\x4b\x0d\x0c\xbe\x10\x1c\xef\x1e\xf1\x21\x47\x61\x9b\xb7\x33\xb3\ +\xdd\x50\xd4\xb0\x60\x60\x98\x15\x34\x18\x1c\x7a\x05\x8f\x1c\x10\ +\x53\x55\xeb\x80\x14\x88\xa8\x9a\x5a\x47\xa4\x0a\x49\x33\x92\x13\ +\xdf\x68\x05\x8e\x02\x8f\x37\x8c\x42\x0a\x9e\xb0\x8f\x49\x54\xc3\ +\xe5\xd4\x5c\x03\x99\x17\x7b\x0d\xfd\x1c\x16\x9f\x35\x56\x5a\x61\ +\xfd\x02\x2c\x75\x5c\x18\x30\x5a\x15\x18\x86\x8c\x56\x45\x26\x87\ +\xc6\xd0\x9b\xd0\x94\xd8\x34\x36\x4b\x1d\x9b\x93\x68\x4e\xd1\x81\ +\x07\x5a\xba\x97\x01\x11\xb1\x78\x39\x36\x60\x83\x09\xd8\xa0\x03\ +\x74\xc1\x6f\x20\x80\x76\x14\x13\xfe\xe8\x63\x9b\x51\x11\xd8\xa1\ +\x0b\x3c\xec\x43\xb0\x63\x80\x36\xa0\x3c\xc5\x52\x49\xc1\x3c\x8f\ +\x6c\x9d\x77\xbe\x7d\xc4\x31\xcd\xfa\x84\xf1\x35\x9b\xf8\x9a\xe7\ +\xf0\xd5\x66\x46\x1b\xbe\xa6\x71\x25\xbe\xa9\xdf\x15\x22\x21\xf7\ +\x85\x77\x95\x54\x2a\x7a\x0a\x93\x88\xc2\x00\x10\xbc\x9f\x4f\x92\ +\xf7\x5c\x82\x7c\x1c\x84\xec\xb1\xe6\x67\xf7\x26\x2c\xe7\x76\xa7\ +\xb8\xfa\x4e\xe0\x69\xe5\x89\x03\x0f\x8d\xcc\x9d\x0b\xad\x99\x3f\ +\xd6\x66\x8e\x77\x47\xa1\xb6\x46\xc1\xdf\xcf\x6f\x04\x6e\x38\x0d\ +\x1f\x63\x4a\x71\x98\xc7\xb4\x8b\x23\x2f\xeb\xb9\x3a\x30\xa5\x33\ +\x86\x13\x2b\xbb\xc4\x83\x37\x9b\x7a\x13\x10\x51\x37\xd9\xf9\x35\ +\xe0\x4b\xb4\x5e\xb1\xab\x2c\x97\x7f\xbc\x0b\xa7\xb3\x6b\x7c\x0e\ +\xd9\x4e\xed\x5e\x84\x33\x8d\x67\x84\xd3\x4f\x6c\x31\xfe\xd7\xb6\ +\x85\xf8\x60\xa5\x83\x51\xc6\x5d\x68\xa6\xc9\xb6\xb5\x5b\x1b\xd8\ +\x12\x08\x43\x56\xb9\xd2\x87\xea\xd0\xda\x8f\x21\x1b\xe1\xbf\x15\ +\xeb\x4a\xc3\xbc\xa4\x3d\xa4\x5d\xc3\x84\x95\x2e\xc0\x85\xd7\xfc\ +\xd5\x36\x34\x1d\xf4\x9e\x74\x58\x69\xff\x2b\x42\xe4\x25\xe7\x06\ +\x9c\x98\xb6\x31\x82\x93\xa5\x85\x13\x7c\x6c\x48\x56\xa8\x82\xf5\ +\x61\x65\x08\xb0\xe2\x25\xab\xf2\x1c\x7d\xc9\x9c\x50\xe5\x95\x08\ +\x11\xc6\x0f\xc3\x89\xec\x58\xd4\x77\xb7\xbe\x97\x1d\xbd\x28\x38\ +\x56\x99\x18\x93\x12\xd7\x15\x0a\x53\x80\x12\x7f\x16\x87\x5d\xd9\ +\x45\x42\x95\x58\x24\x04\xc8\xfe\x13\x17\x09\x26\x40\x6e\x71\x68\ +\x9a\xb6\x97\x88\xe9\xa8\xc7\x26\x4b\x49\x55\xc7\x19\x95\x55\x6f\ +\xbc\x53\xe5\x17\x87\x8c\xbe\x3a\x5f\xbd\xbb\x4a\xe8\x6b\xaa\x74\ +\xa1\xff\x6a\x53\x48\x90\xed\xcb\xd2\xfa\xb3\xa1\xb5\xbe\x7e\x3f\ +\xae\xd6\x7f\x2a\x75\xfe\x3f\x5c\xc3\x73\x4d\xbf\xf6\xb1\xf3\x23\ +\x02\x7b\x44\x3d\xe0\xa2\xcd\x06\x12\x98\xbc\xf1\x82\x0c\xcc\x9f\ +\x56\xe7\x6b\x5a\x2b\xb6\x46\x73\xeb\x49\x14\xfa\x95\x43\xbb\x04\ +\xa9\xbf\xfa\x28\x22\x70\x58\xea\x6c\xe4\x03\xf5\x66\x52\xbf\xbb\ +\x64\x09\x14\xe3\xee\x92\x35\xbc\xd0\x54\xa7\x7d\x12\xa1\xdd\x4c\ +\x64\x76\x27\x42\x24\x2a\x49\x99\x10\x16\x37\xaa\x88\xba\x29\x32\ +\xa1\xdf\x4c\xda\x5c\xc8\x84\x74\x5d\x33\xfc\x99\xfa\xae\x4f\x22\ +\x8c\x9b\x1d\xa9\xbb\x13\x31\xbb\x59\x1e\x34\x51\x46\xdc\xf7\xc9\ +\x83\x29\x39\x0f\x9a\x24\x42\x08\x14\x3e\xf9\x79\xb8\xb2\x46\x88\ +\x88\xcc\x22\x11\xb3\xe1\x12\xd1\x8b\x10\x02\x2c\x97\x94\x08\x5d\ +\xb8\x44\x08\x5d\x0b\xe7\x89\xf8\x28\x39\x11\xba\xac\x12\x21\xfd\ +\x3a\x58\x24\x84\x2b\x29\x21\xe0\x73\x99\x89\xbb\xe1\x32\xd1\x8b\ +\x12\x02\x2f\x5c\x49\x89\x30\x84\x29\x21\x50\xd7\x4a\x41\x7d\x2f\ +\x39\x11\x86\x2c\x4a\x48\xbf\xfc\x12\x09\xe1\x4a\x4a\x08\x4b\x3a\ +\x96\x09\x75\x3a\x5c\x2a\xfa\x49\x89\x71\x45\xdd\x3b\xaf\xc1\x6a\ +\xcf\x4e\x1c\x51\x1c\xa4\x1d\x51\x3a\xb5\xda\x95\x99\xaa\x7c\x50\ +\x54\x89\xb8\xf2\x0d\x51\x32\x27\x09\x07\x86\x6e\xb4\xf8\xfa\x56\ +\x00\x60\x29\x79\x67\x3a\xc5\x83\xb6\x0b\x09\xb3\xa3\xa4\x17\x1e\ +\xd1\x07\x8f\xdd\x3a\xf0\xde\xd4\xcd\x93\xc5\x2f\xb8\xf3\x8c\x7c\ +\xf8\xe4\x61\x1c\x41\xd2\xe2\x4e\xba\x52\x87\x2b\xcc\x44\xfa\x99\ +\x54\x6f\x6f\xd8\xcd\xf4\x45\x8f\x4e\xfd\x6e\x75\x8d\xd9\x93\x85\ +\x14\xb3\xf5\x6d\x87\xc2\x47\x7c\x68\x41\xaa\x18\x1d\xcd\x9f\x8b\ +\x9b\xe9\x74\xcb\x8d\xe7\x9b\x07\x9d\x1f\xed\x60\x95\xc3\x23\xa2\ +\x15\xac\x71\x87\x47\xc5\xf0\x68\x1e\xbd\xa0\x10\x7e\x76\x11\x6d\ +\xf1\xa8\x1c\x1e\xcd\xa3\x25\x8e\xd7\x3e\xec\xde\xe7\x8d\x39\x52\ +\x7c\xab\xf7\xa4\xdf\x55\x12\x18\xe1\x98\x38\x30\x52\xce\x35\x1d\ +\x1c\x86\xd0\xa1\x08\x87\xbc\xc3\x52\x62\x94\xfc\xfc\x07\x6d\x46\ +\xf9\x27\ +\x00\x00\x10\x37\ +\x00\ +\x00\xa6\x66\x78\x9c\xed\x1d\x6b\x6f\xdb\x38\xf2\x7b\x7e\x05\x91\ +\x0f\xbd\x1e\x90\x8d\x63\xe7\xdd\x3a\x3e\xb4\xe9\x13\x68\x77\xdb\ +\x3a\x6d\x6f\xef\xcb\x82\x96\x68\x9b\x57\x59\xf4\x92\x72\x12\x2f\ +\xee\xc7\xdf\x0c\x49\x59\x8f\xc8\x72\x64\x59\x96\xbd\x75\x51\x20\ +\x16\x49\x91\xc3\xe1\xbc\x38\x33\xa4\xda\xff\xba\x1f\x79\xe4\x96\ +\x49\xc5\x85\x7f\xb5\xdf\x3c\x3c\xda\x27\xcc\x77\x84\xcb\xfd\xc1\ +\xd5\xfe\xd7\x9b\x37\xbf\x5c\xec\xff\xab\xb3\xd7\x9e\xf0\xa8\xd1\ +\x09\x34\xea\xec\x91\xb6\xe3\x51\xa5\x3a\x6f\x27\xfc\xd9\xb3\x57\ +\x9c\x7a\x62\x00\x7f\xbd\x41\x97\x05\x01\xbc\xac\x5e\x49\xda\x0f\ +\xda\x0d\xd3\x08\x5a\xdf\x71\x77\xc0\x02\xa2\x9f\xaf\xf6\x3f\x7f\ +\xd7\x8f\xfb\xc4\xa7\x23\x76\xb5\x9f\xdb\x09\x0e\x46\xda\x63\x29\ +\xc6\x4c\x06\x53\xfb\xc6\x80\x89\x11\x0b\xe4\x54\x57\x92\xb6\x64\ +\x4e\xa0\x7f\x91\xf6\x7d\xe7\xa8\xdd\xb8\xb7\x0f\x53\x7c\x98\xda\ +\x07\x00\x21\x18\x76\x4e\x2f\xa1\xc8\xfc\x34\xc5\x43\xc6\x07\xc3\ +\xa0\x73\x76\xdc\x6a\x37\xec\x6f\xdd\x67\x23\xec\xb4\xdd\x08\x07\ +\xcf\x82\xe4\x8e\xfb\xae\xb8\xbb\xe1\x81\xc7\x2c\x30\x2a\x90\x00\ +\x7c\xe7\x2d\xf3\x99\xa4\x1e\x51\x76\x32\xed\x86\xad\x78\xd8\xa5\ +\x47\xa7\x62\x12\x21\xe7\xdb\x4b\x71\xff\x41\x17\xd9\x1e\x53\x43\ +\xaa\x31\x75\xa0\xa3\x7d\x3b\x01\x7f\x32\xea\x31\xd9\x39\x6b\x37\ +\xec\x2f\x03\x7e\x7c\x84\x07\x5d\x8c\xa8\x1c\x70\x3f\xd5\xc3\x65\ +\x6e\x0f\x3c\x60\xa3\x08\x93\xf1\xc5\x7c\x2b\xc5\x64\x0c\x30\x87\ +\xcb\x39\x08\x9f\x4d\xf3\x07\x83\x07\x11\xb2\x32\xf0\xa5\x17\x9d\ +\x74\x33\xb0\xf6\x10\xa8\x5c\xdc\xd9\xd1\x80\x70\x03\xee\x50\xcf\ +\x94\xfe\xd1\x8a\x06\x8e\x66\x94\xd1\xd1\xbb\x07\x1d\x0d\x85\xe4\ +\x7f\x09\x3f\x98\x75\xd5\xbc\x9c\xf5\x95\xee\xed\x01\x92\x34\x89\ +\x7f\x92\xac\x7f\x3d\x64\xce\x8f\x38\xb2\xb0\x62\x0c\x15\x0e\x56\ +\xf4\xc4\xfd\x1f\xcd\x56\xac\xdb\x0c\xec\x09\xe1\xdd\xf0\x71\xa2\ +\xcd\x0c\x89\xef\xfb\x24\x18\x72\x45\xe0\xbf\xee\x8f\xb9\x07\x50\ +\xc0\x2c\x52\xef\x84\xfc\xd1\x03\xfe\x1e\xc2\x2f\xff\x1f\x01\xa1\ +\xe3\x31\xa3\xf2\x90\x7c\x55\xac\x3f\x01\x4a\xe5\xbe\xc3\x08\xf5\ +\x3c\x22\xfa\xb1\xb7\x70\x40\x45\xa8\xc4\x2a\x25\x08\xf7\x75\xdd\ +\x0b\xa9\xbb\xb1\x1d\x1e\xa6\xd6\x29\x7b\xb1\xb2\xe7\xc3\xee\x83\ +\xec\xc9\xbc\xe3\xee\x03\xc8\x97\x1f\x07\x71\xfc\xda\x47\x99\x41\ +\x54\xe0\x02\x57\x5e\xed\x1f\xa5\xc6\x75\x6c\xdf\x43\x18\x58\x8f\ +\xfb\x3d\x1a\xd6\x29\x33\xee\x27\x1a\x0c\x17\x0f\xfb\x51\xb8\x8d\ +\x50\x6e\x3e\x72\x34\x2d\xca\x80\xcc\x62\x74\xd8\x48\x12\xe2\x02\ +\xba\xfc\xfc\x81\xf6\x98\x17\x12\xa3\x87\x0f\x49\xba\x2e\xb2\x60\ +\x66\xad\xb8\x1f\x30\xd9\xa7\x40\x4a\x23\xe1\xb2\xe5\x17\x8c\x7a\ +\x7c\xe0\x8f\x98\xff\x60\x30\x98\xee\xe7\xe0\xd9\xb3\x17\x58\xff\ +\x05\x05\xf6\xff\x66\x8f\x37\x92\x72\x0f\x46\x8b\x4a\xbe\x5d\x33\ +\x84\x07\xc0\x88\x63\xa9\x2a\x74\x46\x6c\x2e\x46\x3d\x91\xc9\xe6\ +\x58\x81\x6c\x7e\xb2\x3c\x97\xdf\x58\x16\x47\x3e\xfc\xfa\x5e\xa3\ +\x19\xd9\xf2\x6e\xc8\x81\x27\x23\xc6\x85\xf2\x89\xc7\xc8\x1d\x07\ +\x8e\x46\x06\x7a\x46\x6e\xa0\xd7\x1e\x95\xe6\x0d\x5d\x3e\xf6\xa8\ +\xe5\x79\xf3\x4e\xa8\xad\xb0\x3f\x0a\x4f\x63\x2a\x69\xc0\xb4\x0c\ +\x80\x17\x0f\x70\x0c\xe8\x32\xa0\xea\x47\xb2\x9f\x89\x62\x7a\xe4\ +\x37\x92\xb1\xeb\x17\xaf\xc8\x0d\xb4\xb8\xe5\xec\x8e\xa8\xa9\x02\ +\x8c\x91\xbe\x90\x7a\x14\x1e\x28\x6c\x2b\x0d\x95\x50\x27\x00\x9b\ +\x62\x2d\x3c\xfd\x95\x7f\xd4\xd4\xb8\x99\x7c\xfc\x80\xae\x1e\xc3\ +\x76\x11\x3d\x98\xd5\xc9\xc2\xe3\xbc\xe1\x1a\xe9\xf1\xca\x01\x60\ +\x57\xbb\x0c\x04\x0b\x79\xaf\xdd\x30\x2a\x7a\xa6\xbf\x13\xd5\xa5\ +\xb5\x79\xeb\xf1\xca\x3c\x4b\x68\x2e\x50\xda\xf3\x65\x26\xeb\xd3\ +\x89\x07\x5d\x0b\x4f\x64\xae\x60\xe5\x82\x0a\xc6\x7d\x39\x09\x02\ +\xe1\x67\xc8\x2a\xa8\xeb\x99\xba\xa5\x85\x15\x4a\x05\x37\x3e\x49\ +\x2d\x0b\x7c\x10\x0d\xa2\xf7\x5f\x30\xb1\xd3\x26\x5e\x1e\xcd\xa4\ +\xc6\xd5\xdd\xa5\x99\x10\xcb\x52\x54\x2a\x99\x8b\x1b\x01\xfc\x93\ +\xac\x18\x80\xb4\xf2\xb1\xca\xfc\x48\x56\xf6\xbc\x09\xc3\x3a\xfd\ +\x37\x49\xd0\x0f\x06\x59\xb9\xb8\xb2\xe4\xb0\x99\xd2\xaa\x12\xab\ +\x63\x81\x3e\x9c\xcb\x40\x5d\x9f\x8e\x37\x9d\x7b\x16\x49\x87\xe2\ +\xfc\xa3\x70\xd6\x6a\x0a\xb6\x84\xb7\x63\xa0\x04\xf8\x16\x17\x88\ +\xa0\x9f\x8f\x89\x96\xb5\xdc\xaf\x85\x0f\xbf\x26\xda\x1c\xdb\x78\ +\x66\x3a\x5e\x8d\xe5\xfc\x90\xa9\xac\x42\x22\x3d\x06\x6d\x89\x2b\ +\xe9\x9d\x6f\x0d\x5e\x8e\x58\x89\xa1\x08\x0d\xdf\x12\x7b\xde\x22\ +\x7c\x77\x72\x32\x9f\xf1\x9a\xad\xd3\x1c\xd6\x6b\x9d\x9e\xd6\xa6\ +\xbd\x22\x5c\xfd\x7c\x4c\xb8\x80\x3e\x17\x9a\x82\xb0\x81\x65\xda\ +\x43\x59\x03\x0f\x76\xc7\xdc\xcf\xda\xb6\x2a\x28\xef\x45\x2e\xbd\ +\xec\x99\x3d\x56\x8d\xcd\x26\xb8\x3a\x53\xf0\x96\x02\x9d\xa7\x46\ +\xb6\xce\xcc\x56\xc2\xad\x59\xa8\xd7\x02\x24\x1f\x5b\xb4\x2d\x25\ +\xf5\x8a\xf7\x57\xc7\x25\xf7\x57\x47\xa5\x54\x1b\xe5\x5a\x68\xd7\ +\xa2\xd5\x16\x79\x82\x4e\xcb\xe8\x33\x46\x66\x13\x44\xa5\x05\x73\ +\xe4\x7d\xce\x24\xf9\xc1\xa6\x6b\xf1\xab\xc0\x80\x4e\x08\xc0\xa6\ +\x92\x7e\x39\xe7\x86\x1a\x72\x1c\xac\x2e\xdf\x8a\x13\x48\xaf\xbe\ +\xd1\xa9\x57\x6a\xea\x4b\xb0\x11\x46\xb7\x80\x7e\xd3\x52\xa4\xab\ +\x8b\x17\xf0\x0a\xb4\x66\xd0\x18\xcd\x8e\x14\xf5\x30\x50\x01\xda\ +\x6b\xfc\x6e\xd6\x63\xbb\xa1\x0b\x0b\x93\xaa\xe2\x7f\xb1\x77\xdc\ +\x0f\xe6\x93\x2a\xb6\x48\xa1\xd3\x44\x1c\x4f\x92\xb1\xc7\x59\xad\ +\x8d\x3b\xb6\x8e\x12\x21\xc8\x08\xac\x74\x87\x73\x44\x96\x41\xdd\ +\x4a\x6d\x99\x56\xb3\xcc\xb6\x7c\x53\x25\xee\x59\x39\x89\xab\xec\ +\xdc\x56\x20\x69\x9d\x89\x94\x40\xb2\xef\x7d\x97\xdd\x67\x9b\x2f\ +\xcd\xb5\x98\x2f\x30\x1b\x9c\xd5\x4e\x82\x9b\xd2\x9d\x04\x8f\x0a\ +\x56\x2c\xc1\xf3\x79\x6f\x27\xc1\x57\x2e\xc1\x97\x8d\x4c\xbc\xf0\ +\x82\x8d\x15\xe0\xe7\xe5\x04\x38\x35\x53\x5b\x8b\xfc\x5e\xcf\xf6\ +\x13\x66\xa3\x19\x7d\x27\xbe\x77\xe2\x7b\x93\xa2\xaa\xcd\x38\x15\ +\x2d\x93\x8b\x52\x6e\xdb\x6f\xdd\xb5\x3a\x23\x4d\xbf\x52\x83\x34\ +\xfb\xc0\x7d\xf6\xda\xe5\xc1\x03\x69\x86\x2e\x23\x06\x15\x65\xa2\ +\x43\x59\x0e\xed\x68\xb6\xda\xbf\x96\x70\x5c\x87\x89\x93\x55\xe4\ +\x6b\xc5\x51\xbe\x16\xdf\x43\x7c\x66\x7a\xd2\x66\x85\x37\x53\x06\ +\xd6\xcd\x89\x27\x8f\x67\xc4\xc7\x27\x2b\x2e\x4f\xb8\xba\x07\x9b\ +\xac\xd8\x27\x00\x21\xb9\xa3\x3e\x26\x1b\xce\x52\x89\x74\xe0\xa0\ +\x11\xf3\x15\x4b\x31\xd2\x15\x36\x19\x89\x50\x15\x92\x7c\x15\xd4\ +\xdc\xa5\xb7\x00\x83\x51\xef\x36\x46\x44\x7d\x37\xe6\xbb\xa6\x8e\ +\x14\x4a\x11\xc5\x14\x26\x46\x97\xf0\x5d\x17\x89\x6a\x02\x50\xc2\ +\x67\xf7\x7c\x63\x55\x7d\xdd\x64\x7e\x5e\x05\x99\x97\x71\xd1\x66\ +\xa5\xe4\x3a\x62\x3c\x8d\x25\xcf\xf5\x18\x18\xa1\xe3\x20\xa4\x28\ +\xb0\x72\x47\x40\x6a\x07\x44\x00\xb5\xcb\x3b\xae\x58\x58\xa4\x4c\ +\x7b\xea\xdd\xd1\x29\x50\x5e\x40\x25\xa6\x5b\x12\x5f\xfc\x32\xeb\ +\xb1\x0a\x56\x78\xeb\x89\x1e\xf5\xc8\x0a\xc6\xb0\x18\x48\x0d\xd3\ +\x03\xfc\x75\x40\x90\x43\xc7\xfa\x67\xb5\x3a\x63\x3c\x1d\x6d\x70\ +\x26\x60\xdd\xfc\xd3\xbc\xa8\x84\x81\x4a\xc4\xec\x7f\x15\x72\x44\ +\x3d\x6f\x7a\x40\x00\x91\x4c\x6a\x32\xc4\x50\x87\x8d\x19\x1e\x58\ +\x65\x31\xe6\x4c\x11\x04\x4e\x31\x0f\xca\x99\x7b\x48\x42\xd6\x13\ +\x63\x6d\xfb\xa4\x93\xe2\x7b\x14\x38\x2b\x8c\xf9\x87\x8c\x18\xbe\ +\x0d\x7c\xa5\x02\x46\xdd\x4a\x32\xdb\xbb\x7a\x90\x24\x00\x89\xc9\ +\xad\x47\x99\x68\x28\x5e\x02\x10\xbf\x85\xe1\xd7\x1d\x4f\x64\xf1\ +\xc4\x69\x25\x2c\x71\xb1\x5a\x9d\xa2\x4d\xa8\xb8\x76\x40\x27\x35\ +\x98\x53\x60\x2c\xa8\x20\xc6\x2f\x36\xa3\x05\xb3\x5b\xa0\x54\x33\ +\x89\x2f\x82\xd8\xfb\x3d\xe3\xe0\x1e\xeb\x77\x7c\x6f\x0a\x2f\x30\ +\x9f\x00\xe8\x60\xe7\x40\xd1\xf5\xcd\x97\x0f\x95\x30\xc5\x8b\x24\ +\xdc\x21\xb8\x4f\x5d\xae\x68\xcf\x8b\xbc\xee\xe8\xb0\xf9\xe7\x36\ +\xab\x20\xb3\x40\xdd\x0d\x76\xb7\xaf\xdc\xe9\x9b\xbf\xc3\xdd\x39\ +\x7d\x57\xed\xf4\x6d\x96\x74\x90\x4a\xea\xf2\x89\x9a\x65\x9a\x6a\ +\x59\x00\x3c\xa9\xc6\xcc\xe1\x60\x09\x8e\x05\x20\x52\x1d\xe2\x29\ +\x3d\x2c\x3e\x32\x79\x3c\x82\x00\xab\x06\x14\x0f\x91\x3d\xe5\x7e\ +\x9f\xfb\x00\x77\x09\x46\x5d\x10\x5b\x94\xd4\x1f\xd4\xe1\xce\x59\ +\x90\x21\xb5\x80\xd4\xd5\xa4\xdf\xe7\x69\x4f\xb1\x9d\xc3\xf8\x7e\ +\x3d\x6a\x1f\xb0\xf7\xc5\x20\x6f\x4b\xa5\x4f\xd5\x27\x41\x0a\xf8\ +\x2c\x0b\xe8\xfb\x12\x07\xbe\xb2\xf4\xfd\x8c\x2f\xb5\xd2\x06\x15\ +\x4e\x84\xe3\x4c\x24\xa1\x03\x8a\xa6\x6b\xcc\xb0\x0d\x86\xa0\x36\ +\x25\x3a\x55\xa8\x39\xbb\xc9\x7d\x97\x3b\x14\x8d\x5c\x13\x99\xc0\ +\xf3\x9e\x0c\x66\x55\xc2\x87\xb1\x28\x11\x80\xde\xf3\xd1\x64\x54\ +\x89\xd6\xee\x53\x4f\xad\x43\x6d\xc3\x1c\x7e\x26\x9d\xbd\xd3\xd8\ +\xf3\x31\x5d\x45\x98\x36\x7f\x87\xcc\x7c\xb4\x81\x57\x4f\xff\xb9\ +\x62\xe7\xa3\xe1\xda\xb4\x94\x40\x95\xdf\x63\x3a\xae\xc0\x5d\x26\ +\x41\x8c\xc4\xed\x84\x2a\x64\xc8\x1c\x40\x36\x50\xfb\xe7\x67\x37\ +\x54\xb5\x8a\x56\xbc\x66\x07\xa0\x2f\x2f\x2f\x97\x0f\x41\xe7\xe5\ +\x55\x9f\xac\x27\xb2\x6d\xc4\xee\x6b\xb3\xe0\x5b\x2a\x7b\xab\xb6\ +\x58\x9a\x95\x58\x2c\x25\x36\x11\x60\xb1\x24\x7c\x6d\x5d\xb3\xab\ +\x37\x81\x9b\x99\x9b\x61\x28\xf4\x09\x1b\xe6\xb3\x5b\x60\x6b\xf4\ +\x40\x60\xf0\xa7\x4a\x49\xd2\x85\x21\xc3\x2b\x46\x62\x20\x6d\xb3\ +\x3b\x01\xb1\x88\x73\x79\x49\xff\xbe\xc7\x6c\x0a\x10\xed\xb2\x47\ +\xe0\x62\xb7\x8d\xa8\x38\xb1\x1a\xbf\xec\x44\x95\x88\x7a\x14\xbc\ +\x7a\x64\xdb\x17\xb3\xea\x08\x45\x81\x93\xfa\x45\xae\xdd\x59\x90\ +\xe9\x9c\x27\xed\x78\x4c\xda\x51\x62\x41\xb0\xbb\x2c\xed\x3a\x19\ +\x46\xa1\x64\xbc\x89\x03\xcb\xc6\x1e\xf5\x19\x89\x19\xd2\xf6\x3a\ +\x1e\x45\xdc\x09\x76\x1a\x7a\x68\x09\x82\xa1\x1b\x54\xb3\x3d\x43\ +\x81\xf8\xdd\xc2\xf4\x49\xc3\x14\x48\x0a\x53\x29\x21\x13\x0b\x0a\ +\x2f\x3d\xea\x4d\x38\xe8\x8e\xe8\xb3\x88\xbe\x9a\xa8\x5c\x89\x3c\ +\xf8\x2c\x97\x44\x22\x96\x66\xa8\x19\x93\x34\xfa\xf0\x08\x9b\x84\ +\x28\x5d\xe3\x90\xfc\x16\x46\xb6\xb5\x75\x30\x4d\xbf\x71\xc7\x01\ +\x4a\x59\x24\x5d\xab\x00\xc5\xbf\xc1\xb1\x66\x47\x7d\xa7\xe5\x73\ +\x48\x0a\x90\x3b\xa2\x62\x17\x7d\x9e\x4f\xe6\x05\x6e\x54\xcb\x74\ +\x7b\x97\xbd\x85\x25\x21\x9c\x37\x32\xf3\x39\x7f\x86\x05\x48\xd1\ +\x92\xfd\xf7\x4f\x9b\x4a\x8b\xe5\xf2\x66\x7f\x15\xd9\x0b\xb8\x9e\ +\xac\xdd\x7f\xff\x4e\x9e\xde\x88\x71\x66\xf4\x63\x4d\x10\xfc\x87\ +\x3c\x7d\x23\x81\xb7\x6a\x84\xe1\x77\x80\xa1\x0b\x06\x6d\x29\x10\ +\xea\x16\x49\xcd\x6a\x32\xca\xca\x5d\xf2\x18\xb3\x36\x07\x92\xbb\ +\x09\xfd\xa9\xc3\xf5\xd6\x78\xac\x42\x7f\x7e\x85\x2d\x3a\x0e\xba\ +\xd5\xce\x7c\x33\x81\xcd\x14\x7c\x2b\x8f\xbe\xe7\xfb\x71\x76\xbe\ +\xfc\x32\xbe\xfc\x22\x3b\xcc\xfc\xb3\x0c\xb5\xb8\xf8\xd3\x7e\x3a\ +\xe3\x00\x89\xc9\x14\x93\x94\xd3\x63\xe4\x96\x2b\x8e\x69\x38\x5a\ +\xbc\x64\xdd\x29\x0b\x3b\x01\xbc\xcf\xf1\x96\xc5\xcc\xfb\x58\x02\ +\xd1\x44\x67\x0f\xd1\x30\x95\xb5\xca\x0c\x22\xd8\x53\xae\xc5\x9a\ +\xb7\x89\x3c\x30\xdc\xdb\xbf\x97\x38\x79\x84\xa5\x9d\x9f\x11\x5d\ +\x19\x2d\xcf\xcf\x51\x46\x92\xb5\x37\x63\xd7\x60\xb8\xbf\x12\x13\ +\x98\xf0\xbc\xe8\x90\xab\x6b\xc3\x18\xd1\x06\x46\xfa\xf4\xa9\x76\ +\x83\x3c\xe0\xf5\xe0\x8e\x01\xc3\x32\x0a\x4c\xad\x25\x01\x9e\x79\ +\x58\x9e\xa1\x5c\xe6\xf0\x11\x40\x9e\x1d\x45\x2a\x11\x44\xca\x8e\ +\x7a\x19\x5c\x63\xd4\xeb\xf2\xf0\xf2\xe2\x72\xf6\xef\xfc\xa2\xd5\ +\x6e\xd8\xca\xc2\x43\x65\x85\xc1\x6c\x5f\xcd\xc3\xa3\xe4\xbf\xe5\ +\x47\x29\x68\xbf\x74\x43\x6a\xff\x99\xe4\x4e\x3d\x01\xd6\xbc\xd0\ +\x34\xf7\x35\x83\x28\x82\x41\xac\xc7\x1f\xac\x5b\x5f\x4c\x3a\x3f\ +\xf1\xa8\xa6\xcc\x02\xee\x1b\xa4\x85\xb1\x40\x73\xdb\x5e\x30\xe4\ +\xe8\x05\x3e\x24\x5d\xcc\x34\xec\x4f\x09\xd8\x11\x8c\xa0\x8b\x1a\ +\x6c\x86\x29\x51\x7f\x4e\xa8\x64\x6a\x26\xa2\x46\x61\x37\x25\x12\ +\x92\x73\x22\xdc\xcd\xa3\xb5\x44\xb8\x91\x97\x5f\x1b\xda\xd9\x52\ +\x4e\xae\x7a\x0b\x5e\xf2\xee\xb0\x05\x99\xf6\x73\x79\xfb\x3d\xde\ +\x51\xee\x63\xbe\xab\x04\x6a\xc4\x53\x7e\xc4\x03\x26\xcf\x3c\x0d\ +\x5e\x33\x8f\xe7\xdb\x14\x56\x53\x76\x61\x47\xf4\xd8\x5d\xd7\x59\ +\xfe\xae\xab\x79\x76\x7e\x7e\xde\x6a\x9e\x96\xd9\x7b\x15\x37\x51\ +\xa2\xfc\x9f\xd0\xa8\xc0\xe3\x6f\x3c\x5c\x26\x47\x08\xe9\x72\x9f\ +\x06\x4c\xc5\xa2\x66\xe4\x29\xa6\x27\xb1\xfb\x43\x72\x4c\xae\xc8\ +\x11\xa8\xeb\x66\x89\xac\xe4\x1c\x71\x71\xb6\x16\x69\x31\xa3\xc5\ +\xad\x95\x16\x45\xdd\x17\xf9\xfa\x6b\xe7\xbe\x58\xf9\xe1\x81\x65\ +\xe5\xe5\x2b\x3e\x62\xbe\x3e\x0c\xbd\x05\x12\x33\x7f\x03\x9b\x9b\ +\x51\x77\x51\x4d\x3e\xdd\x5a\xc4\x87\xcb\x47\x9f\xb6\x5e\x82\x54\ +\x6d\x6f\x14\x38\xf0\x97\xc5\x40\x0b\xf2\xe6\xe6\xf2\xcf\x8d\xf0\ +\x40\x69\xf9\x4e\xa5\x91\xc7\x7c\x59\x9b\xcf\xfa\x3b\x59\xbb\x12\ +\x57\x71\x01\x67\xd1\x4f\x60\xd6\x45\x17\xd8\x68\xe1\x88\xa9\x76\ +\x2e\xe6\x65\xf4\x27\xbe\x63\x0c\xb8\x60\x48\x03\x9d\x19\x4a\x49\ +\x10\xb2\xc8\xe1\xde\x37\x6c\x6d\xcf\xb7\xb8\xbc\xdf\x87\x9d\x22\ +\x94\xe3\xe6\xd0\x83\xfd\xa2\x4e\x4e\x31\x1d\x86\x5b\xcc\x40\x32\ +\x7d\xe8\x85\x2a\xa2\x00\xb0\x12\x7b\xc6\x9c\x53\x5c\x8d\x65\x08\ +\xde\x1f\x00\x39\x04\x2c\x8d\x22\xeb\x47\x02\x93\xb5\xb9\x22\x0f\ +\x53\x8e\x1f\x0b\x46\x39\x5d\xbf\x1f\x2b\x88\x44\xde\x4e\x17\x65\ +\xe9\xa2\xb3\x72\xaa\x68\x41\x86\xd7\xc2\x84\x18\x6c\x41\x8c\x2c\ +\xd8\x70\xaf\x7a\x7e\x40\xfd\xef\x20\x2a\xc3\x35\x31\xe3\xe9\x43\ +\x37\xb8\x3c\x4a\xdf\x4b\xe4\xce\x6c\xef\xd5\xee\x6d\x67\xd2\xa1\ +\x55\x83\x97\x1b\xa7\x17\x12\xdf\x96\x8a\x87\xa2\x06\x58\xbe\x23\ +\x67\x67\x80\xad\x7a\xb3\xbb\xe0\x66\xa7\xc7\x09\xc8\x3e\xe0\x7b\ +\x13\x6f\x16\x5c\x3e\xc7\x28\xeb\x5e\x41\x9c\xa5\x7e\x77\xf6\x35\ +\x47\xfb\x81\xd8\x0c\x21\x74\xb8\xf7\x1e\xe0\xa5\x3e\xda\x5d\x34\ +\xf6\xa6\x9a\x38\x43\x34\xc0\x9e\xfc\x39\x11\xc1\xf3\x17\x92\x53\ +\xcf\xfc\xc4\x54\xa6\x70\x20\x15\x4c\xbd\x74\x53\x45\x7d\x15\xb6\ +\xb4\x25\x4c\xf2\xbe\xf9\xb9\x07\xf0\x98\x5f\x23\xe1\x8b\xb0\x19\ +\x02\x49\xfa\x74\xc4\xbd\x69\xd6\xb8\x07\xef\x98\x77\xcb\xf0\xdb\ +\xc0\x07\x51\xe7\xe6\x25\x0d\xaa\x36\x2c\xa9\x01\x66\x2f\xe3\xfd\ +\x67\x2f\x85\xe7\x9a\xe7\x4a\x92\x19\x70\x8c\xad\xfa\x7a\x6a\x59\ +\x49\x6f\xb8\x68\x4b\xe5\x7c\xd5\x2e\x89\x02\x27\xfc\x32\x7d\x7a\ +\xcb\xde\xe3\x1f\xc9\xb9\xd1\xd8\xc3\x4f\xc1\xaa\x21\x63\x95\x0a\ +\xbb\x7c\xfd\xb8\x60\x22\x3b\x05\xb9\x12\x0f\xc5\x1b\xee\xb1\xeb\ +\xa1\x10\x20\x63\x1f\x28\x97\x3e\xd4\x39\xa6\x6e\x91\xd1\xcd\xfd\ +\xa2\x46\xf7\xf1\x51\x3e\x82\x4a\xe1\xa7\x78\xc0\xc9\x4d\x53\xbf\ +\xbd\x9f\x54\x67\xb4\x39\xe8\x4f\x30\x49\x6d\xf8\x0d\xab\xf0\xbc\ +\x56\x31\x06\x29\x27\x34\x0d\x54\x3b\xa1\x39\x47\x68\x16\xb8\xf3\ +\x36\x43\x68\x96\x8f\x82\x3c\xa1\xa3\xf1\x73\xf2\x81\x51\x17\x04\ +\x1a\x95\x52\xdc\x19\x73\x62\x13\x4f\x96\xac\xec\x5c\x09\x1f\x99\ +\xef\x92\x6e\x2a\x55\x96\x3b\xd3\xf0\x4a\x04\xe4\xb4\xbe\x23\x15\ +\x38\xfc\x79\xbd\xc3\x5f\xd6\x37\xfc\x35\x97\x0e\xec\x0c\x6a\xc4\ +\xbf\x85\xa0\xc6\x25\xb0\x10\xd4\xb8\x0a\x5d\x10\x2d\xc3\x3a\x17\ +\xc1\x00\x50\xe3\x1a\x18\x00\x6a\x5c\x82\x97\xd4\xf9\xa1\xea\x5e\ +\x86\x08\x88\x1a\x97\x22\x02\xa2\xd4\x72\xd4\x6e\xaa\x94\xf4\xf3\ +\x37\xf3\x93\x64\xe6\x5b\x2b\xdf\xa0\x15\x77\xa8\x17\xf3\xdd\x18\ +\x9f\x56\x6c\x27\xb5\x89\xe6\xca\xaa\xbe\x02\x1d\xbf\x80\x41\xf4\ +\x8d\xbf\x2b\xc4\x84\xf5\x6c\xd9\x13\x2f\xb0\xe1\x89\x23\x89\x4a\ +\x46\x6e\x2d\xf2\x0e\x49\xb8\x4d\x86\x5e\x3d\xd6\x0f\x0e\xf0\x96\ +\x5d\x73\x26\x06\x7b\x7c\xdf\xfd\x0d\x6f\x6b\xf7\x5d\x2a\xcb\x5c\ +\x28\x5d\xcc\x0a\x4b\x2c\xe0\xdf\xd1\x14\xfb\x00\x88\x26\x4f\xe3\ +\xb8\xad\xf1\xac\xeb\x97\x79\x21\xb2\x2d\x91\x40\x25\xc5\xcf\xb2\ +\xdf\xbc\x7e\xe1\xe9\xdc\x4d\xd8\x59\x77\xbf\xbd\x25\x40\x68\xf8\ +\x08\x3c\x24\x9c\xca\x25\xcf\x02\x3f\x53\xfe\x61\xbd\x9d\x9f\x69\ +\xad\x7e\xa6\x05\xe9\xcd\x5b\xed\x67\x7a\x87\x47\x1c\xf0\xee\x33\ +\x0c\x97\x28\x7b\xee\x81\x82\xaa\x91\xcc\x09\x84\x9c\xe2\x45\x8b\ +\x81\xfd\xbc\x33\x32\x09\xe2\x45\xc5\x0b\x9f\x78\xc1\xf3\xb1\xe1\ +\x9c\x27\x83\xe0\x39\x3a\xad\xf0\xee\xe5\x28\x75\x26\x8c\xc3\xb8\ +\x2e\x73\xd1\x83\x85\x2a\x29\x14\x99\x36\x86\x03\xcd\x40\x5d\xd9\ +\x5e\xd6\xf3\x2d\x1b\x3b\x18\x92\xc0\xa6\xea\xa7\x72\x32\x39\x59\ +\x99\xe8\x2b\x6a\x17\x6b\x14\x6b\x61\xe5\xf7\x2c\x20\x66\x4e\x7a\ +\x5d\xed\x9f\xed\x93\x11\x95\x03\xee\x5f\xed\x37\x9b\xfb\x98\x6b\ +\xd4\x1e\xf3\xfb\x11\x1d\x87\xc9\x52\x9d\x3f\x3f\xe9\xe7\x37\x52\ +\x8c\x3e\x82\xb1\xd2\x15\x13\x89\xc9\x35\xa9\x56\xf0\x9e\x33\x51\ +\x81\x18\x99\x11\x95\x86\x24\x5e\x62\xa0\xd4\xec\xda\xd1\xdc\x1a\ +\xe3\x54\xc0\x9f\x2e\xd7\x4d\x40\xb2\x33\xdf\x55\x9d\xcf\xdf\xf5\ +\x7b\x20\xea\x6c\xc1\x9e\xe1\x26\x74\x7d\x61\x0f\x0d\xec\xe0\x15\ +\xa7\x9e\x18\x1c\x0e\x91\xb9\x74\x85\x46\x40\x7a\xdc\x7c\x40\xae\ +\xf1\x53\x4c\x2f\x27\x41\xa0\xcd\x9a\x0c\x40\x3e\x4d\xd4\x30\xac\ +\x9f\x07\x8c\x01\x56\x95\x83\x24\x25\xc0\x32\xa1\x79\x88\xbb\x79\ +\x20\x61\x6f\x2b\x03\xcb\xa6\xcc\x64\x23\x68\x56\xb9\x16\x50\x16\ +\xad\xd7\xc3\x45\x5d\x0f\x58\xf6\xb8\x7e\x36\x8a\xa2\xda\x35\xe1\ +\xc8\xec\x76\xe6\x00\x33\xab\x5d\x0b\x30\x61\x56\x41\x36\x30\x51\ +\xed\x5a\x80\x49\x64\x80\x65\x43\x94\x6a\x52\x1e\xac\x64\x01\xf6\ +\xd4\x96\x4c\x69\x41\xaa\xb4\xc8\x05\xdd\xeb\x33\x93\x9b\x6a\x66\ +\x31\x7b\x36\xa3\x2a\x00\x00\xfa\xce\xb8\xf4\x05\x03\xe9\xbe\x1d\ +\x17\xad\x93\x81\x4f\xbd\x8e\xe3\xe1\xa1\x47\xf7\x29\x9e\xb3\xc4\ +\x1d\x8c\x29\xd5\x2d\xc0\x04\x60\xfc\x36\xde\x57\xea\x28\x79\xbb\ +\x31\x6b\x62\xba\xf4\x44\xd0\x01\x35\xf8\xda\x9c\xea\x9c\xf5\x89\ +\xc5\x06\x23\xf8\xe5\x06\xab\x91\xf0\x37\x09\xa6\x63\x34\x35\xf5\ +\xf4\x12\x61\x8f\xf6\x7d\xe7\x12\x00\xbe\x0f\x1f\xa7\x9d\xe3\xf3\ +\xcb\x76\x63\x1a\xaa\x33\x7c\xfb\x61\x47\x2e\xc3\xaf\xcd\x68\xc3\ +\x38\xdd\xdb\x49\xf3\x3c\xd9\xdd\x45\x33\xab\x3b\xf3\x53\xd9\xa5\ +\x49\xa0\x76\xad\x98\x9e\x1d\x9f\xad\x16\xc7\x88\xd3\x04\x8e\x8f\ +\xcb\xe0\xf8\xf4\xbc\x99\xea\xee\xa4\x32\x1c\x9f\xac\x0e\xc7\x67\ +\xd5\xe2\xf8\x2c\x49\x78\xad\xf3\xa3\x55\xe2\xb8\x75\xde\xda\x40\ +\x1c\x87\xd7\xca\x57\x8c\xd9\xd6\x4a\x31\xdb\x3c\x5b\x1b\x66\x97\ +\x97\x10\xe1\x0d\x28\xd5\x62\xf6\xf4\x22\xc9\xc8\x67\xa7\x65\x30\ +\x7b\x7c\x7a\xb2\x05\xb2\x37\xbc\xe3\xa1\x5a\xcc\x1e\x1f\xa7\x30\ +\x7b\xbe\x4a\x9a\xad\x12\xb3\xe7\xe5\x25\x6e\x74\x4f\x76\xb5\x48\ +\x6e\xa6\xe8\xb7\x75\x59\x4a\x32\x9c\xa0\xbf\x26\xd1\x5d\xa6\x9a\ +\xdc\x14\xdb\x21\x76\xe7\x57\xc5\xd6\x43\xda\x42\x2b\x25\x25\x5a\ +\xad\xb3\xc7\x18\x23\xf3\xb1\x1c\x7f\x84\xfa\x76\x63\xc2\x3b\x7b\ +\xff\x07\xbf\xef\x72\xe5\ +\x00\x00\x08\x8b\ +\x00\ +\x00\x1c\x9e\x78\x9c\xed\x58\xdf\x8f\x9b\x48\x12\x7e\xcf\x5f\xe1\ +\x73\x5e\x12\xdd\xd0\xf4\x2f\xa0\xf1\x8c\xb3\x0f\x89\x76\xb5\x52\ +\x4e\x27\xdd\x26\xba\xc7\x15\x86\xb6\x87\x1b\x0c\x16\xe0\xb1\x9d\ +\xbf\xfe\xbe\x6a\x30\xc6\x63\x4f\x76\xb2\x1b\xe9\x74\x7b\x47\x94\ +\x31\x7c\x5d\x55\xdd\x5d\x55\x5d\xf5\xc1\xdd\x0f\xfb\x75\x31\x79\ +\xb4\x75\x93\x57\xe5\x7c\x2a\x18\x9f\x4e\x6c\x99\x56\x59\x5e\xae\ +\xe6\xd3\xcf\x9f\x7e\xf4\xcc\x74\xd2\xb4\x49\x99\x25\x45\x55\xda\ +\xf9\xb4\xac\xa6\x3f\xbc\x7b\x75\xf7\x17\xcf\x9b\xbc\xaf\x6d\xd2\ +\xda\x6c\xb2\xcb\xdb\xfb\xc9\xcf\xe5\x43\x93\x26\x1b\x3b\x79\x73\ +\xdf\xb6\x9b\x99\xef\xef\x76\x3b\x96\xf7\x20\xab\xea\x95\xff\x76\ +\xe2\x79\xd0\x6c\x1e\x57\xaf\x26\x93\x09\xa6\x2d\x9b\x59\x96\xce\ +\xa7\xbd\xfc\x66\x5b\x17\x4e\x2e\x4b\x7d\x5b\xd8\xb5\x2d\xdb\xc6\ +\x17\x4c\xf8\xd3\x93\x78\x7a\x12\x4f\x69\xf2\xfc\xd1\xa6\xd5\x7a\ +\x5d\x95\x8d\xd3\x2c\x9b\xd7\x23\xe1\x3a\x5b\x0e\xd2\xb4\x98\x9d\ +\x72\x42\x22\x8e\x63\x9f\x4b\x5f\x4a\x0f\x12\x5e\x73\x28\xdb\x64\ +\xef\x9d\xab\x62\x8d\xd7\x54\x25\xe7\xdc\xc7\xd8\x49\xf2\x65\x52\ +\xb3\x7d\x01\x4f\x3c\xbb\x18\x37\x3a\x9e\x1d\xde\xdf\xe0\xff\xa0\ +\x70\x04\x58\x53\x6d\xeb\xd4\x2e\xa1\x69\x59\x69\x5b\xff\xc3\xa7\ +\x0f\xc3\xa0\xc7\x59\xd6\x66\x23\x33\x47\xe7\x9f\xcd\x7b\x16\x91\ +\x32\x59\xdb\x66\x93\xa4\xb6\xf1\x8f\xb8\xd3\xdf\xe5\x59\x7b\x3f\ +\x9f\x86\x7a\xb3\x77\xcf\xf7\x36\x5f\xdd\xb7\x23\x20\xcf\xe6\x53\ +\xec\x30\x30\x52\xb8\xe7\xe3\x1a\x66\x43\x22\x71\xa6\x64\x27\xda\ +\x1b\x1e\x0f\xe9\xf0\x5c\x2b\xab\x52\x5a\xca\x7c\xba\xa9\xed\xd2\ +\xd6\xc8\x3f\xdb\x78\x1f\xea\x64\xd9\xb2\xa3\x1f\x07\x33\xd5\xb6\ +\xdd\x6c\xdb\x5f\xed\xbe\xb5\x65\x67\x0f\x3b\x19\x6d\xcb\x0d\x93\ +\xda\x80\x4d\xdf\xc1\xc0\x5d\x66\x97\x0d\x19\xea\x16\x4f\x4f\x58\ +\xbd\x72\x63\x18\x45\x04\x6c\x52\xff\x54\x27\x59\x8e\xbc\xeb\xe4\ +\x46\x93\xa6\x55\x51\xd8\x14\x1e\x48\x8a\x5d\x72\x68\xa6\x83\x00\ +\x4c\x9d\xab\x86\x4a\xc7\xbd\x51\x98\x6d\xda\x6a\x73\x94\xc5\x7e\ +\xdb\x43\x81\x4d\x12\xe8\xc1\x62\x55\xcf\x5e\x73\x77\xdd\x3a\xa8\ +\x42\x24\xf2\xf6\x30\x13\xb7\xd3\x93\x4e\xb5\x5c\x36\x16\x13\xf3\ +\x11\xe6\xbc\x0f\x8d\x50\x05\x62\x3a\xf1\xff\xd8\x6c\xfc\xda\x6c\ +\xe2\xfa\x6c\x6a\x98\xed\xce\x3f\xdf\xf6\xd7\xdd\x78\xe1\x25\xa5\ +\xa2\xe8\x1b\xbc\xb4\x5c\x26\xc9\xef\xf6\x12\xe6\x8a\xbf\xc9\x4b\ +\xcb\x64\xb9\x94\x8b\x17\xcc\x76\xcd\x4b\x4a\x19\xf1\x3b\xbd\xf4\ +\x5b\xc9\xe6\xca\xc4\xec\x1e\x47\x64\x3e\x7d\x7d\xc5\x9f\x5f\x73\ +\xb7\x51\x27\x33\x62\x3e\x8d\x39\x0a\xab\x89\x82\x01\x3c\x00\x14\ +\x22\xe6\x6c\x0c\xee\x25\x40\x19\x46\x2c\xe6\xa1\x3c\x89\xca\x2b\ +\xa2\xab\x7e\xa6\xcf\x65\xde\xa2\x28\x6e\x1b\x5b\xff\x42\x85\xe5\ +\xef\xe5\xe7\xc6\x9e\xfc\x31\xec\x71\x83\x62\xb0\xc1\x26\x51\xc0\ +\x8f\x26\x86\x6a\xd0\x1e\xa8\x66\x9d\x8b\xaa\x6c\x7a\xe1\xa7\xc7\ +\xcd\xaf\x7b\x84\x7c\x32\x9b\x28\x89\x3f\xe2\xaa\xc4\xa1\x93\x10\ +\xc8\x7b\xfc\xf0\xab\x32\x5f\xa8\xb2\x7d\xc5\x4c\xbf\x02\xaf\xaa\ +\xf3\x55\x8e\x82\xe3\xe4\xa4\x60\xca\x5d\xe7\x3a\xf0\xfd\x68\x6f\ +\x28\x31\xa7\xdc\xbb\x23\x1f\x25\xc5\xf7\x8c\xbb\xab\x36\xe3\xb9\ +\xcf\xa7\xc0\x91\x3d\x85\x28\xdd\x53\xdc\xb8\x62\xa1\x8a\x4f\x4a\ +\x29\x1c\x24\xb4\xd4\x4c\xeb\xf0\x24\xbb\xbc\x2a\xbb\xbc\x2a\x5b\ +\x03\x8c\x81\xf1\x50\xe8\x8b\x7c\xf8\x54\x27\x65\x83\x7e\xb5\x9e\ +\x4f\xd7\x49\x5b\xe7\xfb\x37\x82\x69\xc5\x23\x1d\xc7\x37\x1e\x3c\ +\x18\xf2\x40\x04\xa1\xf5\xa2\x1b\xc1\x24\x97\x91\x50\xd6\x33\x37\ +\x9c\x21\xed\xb4\xe1\xe2\xc6\xd3\x51\xc0\x54\x2c\xcd\x8d\x90\x5a\ +\x33\x69\x64\xf8\xf6\x9b\x92\xee\xce\xa7\x52\xef\xee\x86\x04\xa3\ +\x5e\x93\x3d\xe6\x76\x77\xea\x07\x8b\xa4\xb1\xbd\xdd\x4d\xb2\xb2\ +\xae\x12\xc0\xdb\x4b\x77\xf5\x03\x8b\xaa\xce\x6c\x7d\x1c\x0a\xdd\ +\x75\x36\xd4\x17\x8b\x8e\x45\xbd\x7a\x92\x43\xb0\x3a\x8c\xf3\xeb\ +\xe3\xcd\x7d\x92\x55\xbb\xf9\x54\x3e\x1d\xfc\x52\x55\x70\x60\xc0\ +\x82\xa7\x03\x2e\xa6\x8a\x45\x11\x8f\x82\xf8\x62\x10\x33\x29\xc5\ +\x94\x09\xa2\x8b\xa1\x6d\x8d\x2e\xdb\x7a\x45\x72\xb0\xd8\xcc\x4a\ +\x21\x10\xbd\x4c\x73\x5f\xed\x56\x35\xf9\xa4\xad\xb7\xf6\xa9\x22\ +\x3a\xf5\x96\x98\x99\xb7\xed\x7c\xde\xf3\x81\x91\x04\xe9\x7a\x8b\ +\x45\xb5\xbf\x6e\x60\x97\x97\xd8\xa3\xd7\x33\x0c\x21\x23\xf3\x8c\ +\xc4\x91\x73\x44\x52\x3d\x23\xb1\x3f\xd5\xfb\xa7\x43\x14\x83\xe3\ +\xc1\xbb\x5b\xdb\x36\xc9\x92\x36\x39\x45\xfb\x88\xe0\x78\x86\x47\ +\x06\x00\x2e\x38\xfb\xc7\x87\x1f\x87\x36\x91\xa6\xb3\x7f\x56\xf5\ +\xc3\xa9\xc2\x93\x40\xb2\x00\xbf\x98\x4f\x87\xd6\x45\xbc\x22\x9d\ +\x51\x7e\x27\xed\xbb\x7c\x8d\x18\x12\xf1\xfb\x2b\xf8\x17\xf2\x6e\ +\x18\x38\x13\xa6\xea\x76\x32\xda\x99\xad\x6d\x47\xec\xae\x72\xe1\ +\x2c\x5d\xe7\xa4\xe4\xff\xd2\xe6\x45\xf1\x33\x4d\x32\x6e\x67\x7e\ +\xbf\xd0\x63\xc7\x19\xed\xe3\xce\x3f\x6e\xd4\x3d\xad\x4e\x0e\x70\ +\x71\x17\x4f\x9d\x57\x24\x0b\x5b\xcc\xa7\x1f\x69\x70\x72\x31\xba\ +\xaa\xab\xed\x66\x5d\x65\xb6\x57\x3f\x3a\x6e\x35\xae\x3f\xe3\x4c\ +\x1a\xe9\xda\xfd\xa6\xaa\x5b\x6f\x99\x17\xb6\x23\x7a\xfe\x7d\xb5\ +\xb6\xfe\x01\x15\xf5\xc1\xff\xd0\xe7\x54\xe3\x7f\x4c\x16\xbe\xa3\ +\x7d\x7e\x9e\x82\xd3\xfb\x99\xa3\x80\x9b\x72\xf5\xac\xc5\x7d\xb6\ +\x01\x4d\x56\x4c\xea\xc8\xa0\x90\x3c\x2b\x77\x78\x46\xae\xbd\xa8\ +\x4f\xa8\x3d\x2a\x8c\x4c\xa8\x6e\x38\xfd\x1b\x9e\x3c\xf4\x3c\x26\ +\x82\x40\x50\xe1\x52\x9a\x99\x30\x0e\xe5\xdb\x13\x89\xd9\x24\xed\ +\xfd\x88\x0e\x5c\x9d\x3f\x64\x32\x46\x61\x53\x67\xc4\xe1\xea\x8e\ +\x5e\x22\xf9\xc7\xbd\x39\x6a\xba\x25\x02\x4b\x59\x86\x33\x9d\xd2\ +\xf5\x84\xda\xd0\xee\xc0\x22\x82\x11\x0c\xf4\x6f\x13\x54\x65\xc9\ +\x64\x24\x25\xea\xb3\x44\x81\x8a\x23\x39\xf9\x38\x71\xa4\x81\xa3\ +\x21\x00\x0d\x24\xda\x85\x8e\x1d\x1a\x2b\x26\x42\x13\xdc\x08\x2d\ +\x34\x6d\x30\x22\x54\xa8\x18\xf7\x37\x42\x45\x86\xa9\x28\x50\x0e\ +\x43\xeb\x91\x4e\x52\x61\x34\xe4\xdc\x8c\xd7\xdc\x51\x36\x6c\xbf\ +\x98\xf5\x15\xfa\x96\x1e\x46\x64\xcd\x3d\xd6\xdb\x02\xbe\x7a\xb4\ +\xd8\x5a\x06\x36\x57\x57\x0f\x76\xf6\xba\xeb\xd9\xfd\x63\x57\x86\ +\x66\x02\xf5\x98\x83\x21\x20\x31\x3a\x86\x0c\xba\x73\x94\xa0\x7e\ +\x0b\xa7\xcf\x16\xdb\xb6\x1d\x63\xff\xaa\xf2\x72\x86\x13\x51\x1e\ +\x4d\x7b\x38\xa5\xb6\x2e\x72\xfc\xcc\xf4\x11\xcb\x12\xd4\xf4\xba\ +\x4e\x0e\xf0\x6f\x69\x8f\xe8\xb0\xce\xf1\x39\xfe\xef\xcc\x1f\xc7\ +\x39\x40\x5a\xa4\x8a\xf9\x45\x6e\x70\x65\x18\x42\xc8\x11\x4c\x62\ +\x90\x08\x2c\x7e\x1c\xef\xbc\x11\x48\x0c\x16\x23\xdc\x5d\x06\x40\ +\x4e\x09\x49\x39\x10\x31\xa3\x95\x99\xbc\x27\x34\x04\x6a\x04\xa1\ +\x20\x22\x71\x24\x08\x0b\x40\x1f\x48\x5f\x85\x38\x8d\x30\x72\x8e\ +\x11\x43\x10\xb2\xd3\x76\xa8\x06\xaa\x03\x66\x0c\x57\xc0\x02\xc1\ +\x02\x11\x85\x94\x55\x9c\xc5\xa1\x31\xc0\x22\xb0\x10\xd8\x19\x61\ +\xa4\x1d\x85\x2c\x44\xe7\x39\x93\x34\x82\x45\xc8\x64\xc2\x24\xe3\ +\x11\xa7\xf5\x98\x70\xd0\xd6\x8c\xe3\xd6\xed\xc7\x18\xbc\xe2\x1a\ +\xd3\x4b\xaa\x7e\x45\x06\x7b\x43\x6a\x01\x95\x31\xd3\xc6\xc8\x0e\ +\xeb\xd7\x2e\x43\x86\xf7\x51\x75\x8e\xc1\x66\xdc\x7b\xe3\x84\xf2\ +\x00\xde\x90\x58\x91\x84\x63\x35\xd5\x26\x9c\x2c\xce\xe0\x4b\x9c\ +\x41\xe5\x3c\x30\x20\xef\x09\xc3\x1a\xa5\x12\x63\xa9\x98\xce\x6c\ +\x48\x08\xde\x03\x84\x26\x5b\xb4\x52\xcc\xd5\x61\x91\xe9\x76\x82\ +\xb0\xe2\x4c\x3b\xd4\x68\x22\xfc\xce\x20\x40\x38\x88\xa6\x35\x92\ +\x99\x40\x68\xc2\x8c\x0b\x27\x61\x34\x49\x1c\x9d\x61\x38\xda\xa1\ +\xec\x95\x07\x10\xd1\x12\x9c\x3c\x2b\x35\xb0\x90\xbc\x28\x03\x9a\ +\x9b\xec\x85\xd2\xe5\x0c\xd1\xbe\x88\x49\x78\x94\x96\xf3\x34\xa1\ +\xbe\x5c\x56\x85\xf3\x1a\x30\x43\x1f\x7d\x73\xf1\xae\x64\xd4\xdb\ +\x97\x17\x8c\x68\x41\x55\xe1\xbb\x16\x8c\x75\x52\x3f\xd8\xba\x2b\ +\x09\xdd\xbd\xd7\xb4\x49\xdd\x9e\x21\xeb\x3c\x3b\x7b\xb6\x65\x76\ +\x56\x44\x5e\x5e\x6e\x08\xed\x5e\x59\x67\xfc\xa2\x04\xdd\x3e\xe6\ +\x4d\xbe\xc8\x0b\x7a\x70\xb7\x85\xbd\xcd\xf2\x66\x83\x16\x3f\xcb\ +\x4b\x5a\xf8\x6d\xf5\x68\xeb\x65\x51\xed\x86\x71\x54\x0d\xfc\x78\ +\x8b\x24\x7d\x58\xb9\x1d\xcd\x92\x14\x45\x63\x5b\x24\xad\xfd\x73\ +\x94\xb4\xae\xdd\x45\xea\xb2\xdd\xa1\x28\x69\x74\x37\xca\x73\xc3\ +\x22\x15\xb9\xc6\xc6\x71\x24\x05\x17\x38\x26\x5c\x73\x70\x0c\xae\ +\x9f\x69\x57\x2e\x2c\xdf\x9a\x6b\x2f\xca\x2c\x97\x0e\xff\xf3\xad\ +\xa8\x8f\xdb\x25\x4d\x11\x06\xed\x46\xc4\xd4\x4c\x14\x4a\x1e\x96\ +\x43\xdd\x28\x40\x59\x52\x9a\x9a\x04\x47\x71\x0f\x83\x30\xfc\x7f\ +\xdc\xfe\x83\x71\x33\xd1\xe5\x79\x8b\x62\x30\x6d\x25\xbb\x06\x2b\ +\x62\xed\x28\xa3\x14\x58\x1c\x8e\x22\x50\x50\xca\x08\xfd\xa4\xa3\ +\x97\x21\xe3\x32\x88\x88\x5e\xa2\x41\xa0\x6b\x3b\xf4\xd2\xc2\x95\ +\xb6\xd1\x91\xc9\xfe\xfb\xe8\x8b\x7b\xc3\xf0\x3d\x75\x1c\xf7\xcd\ +\xfe\xdb\x03\xff\xe7\x0c\x67\x7c\x19\xce\xd8\x30\xae\x43\x8a\x10\ +\x6e\x40\xcf\x3a\x4a\x20\x59\xa0\x63\x9c\x42\x0d\xd2\x16\x04\x1c\ +\xfd\x5f\x20\xae\x06\x01\x23\x8c\x0e\x29\xd1\x1d\xf0\x14\xc8\x39\ +\x8c\x5e\x3a\x8c\x10\xa4\xcd\x23\x22\x5b\x44\x51\x34\x98\x02\x6d\ +\x11\x98\xa4\xdd\x06\xa0\x6a\x3a\x40\xcc\x25\xa8\x63\x8c\x37\x0e\ +\x41\x34\xf0\x4c\xdb\x80\x11\x05\x22\x20\x4a\xa8\xc1\x6a\xa2\x28\ +\x36\xae\x2a\x70\xc3\x75\x44\xd9\x15\xb3\xd8\x80\x1e\xc5\x28\x0f\ +\x26\x34\x44\x51\x34\xe7\xb8\xd5\x8e\x94\x71\x22\x99\xda\xcd\xcd\ +\xc1\x84\x74\x18\xd3\xab\x8b\x44\x7d\x09\x5d\x6e\x82\xf0\x81\x21\ +\x12\xf1\x54\xa0\x51\x5a\x9e\x6b\x0b\x8c\x8b\xc0\xbd\x0e\x11\x91\ +\xd3\x81\x24\x5f\x68\x16\xea\xa8\x7f\x43\x32\x32\xbe\xe6\xb3\xe7\ +\xf2\xd7\x91\x9d\xcb\x2f\x80\x2f\x27\x3b\xe3\x0a\xf3\x5d\xb2\xf9\ +\x37\x5e\x34\x1b\x5c\xe9\xe8\x6b\xf9\xaa\xfb\x6a\x81\x9f\x3b\xfa\ +\x8e\xf2\xee\xd5\xbf\x01\xd6\x56\x1c\x39\ +" + +qt_resource_name = "\ +\x00\x05\ +\x00\x6f\xa6\x53\ +\x00\x69\ +\x00\x63\x00\x6f\x00\x6e\x00\x73\ +\x00\x12\ +\x07\xc4\xe5\x79\ +\x00\x44\ +\x00\x44\x00\x41\x00\x2d\x00\x70\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x65\x00\x73\x00\x2e\x00\x75\ +\x00\x69\ +\x00\x11\ +\x06\x6c\xdb\x99\ +\x00\x75\ +\x00\x73\x00\x65\x00\x72\x00\x70\x00\x72\x00\x65\x00\x66\x00\x73\x00\x2d\x00\x62\x00\x61\x00\x73\x00\x65\x00\x2e\x00\x75\x00\x69\ +\ +\x00\x1b\ +\x01\x35\x45\x07\ +\x00\x70\ +\x00\x72\x00\x65\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x65\x00\x73\x00\x2d\x00\x6d\x00\x79\x00\x77\x00\x6f\x00\x72\ +\x00\x6b\x00\x62\x00\x65\x00\x6e\x00\x63\x00\x68\x00\x2e\x00\x73\x00\x76\x00\x67\ +" + +qt_resource_struct = "\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x01\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04\ +\x00\x00\x00\x3a\x00\x01\x00\x00\x00\x01\x00\x00\x04\xb7\ +\x00\x00\x00\x10\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x00\x62\x00\x01\x00\x00\x00\x01\x00\x00\x14\xf2\ +" + +def qInitResources(): + QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) + +def qCleanupResources(): + QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) + +qInitResources() diff --git a/src/Mod/DDA/ui_DC.py b/src/Mod/DDA/ui_DC.py new file mode 100644 index 000000000000..db315e61dfb0 --- /dev/null +++ b/src/Mod/DDA/ui_DC.py @@ -0,0 +1,76 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file 'D:/DC.ui' +# +# Created: Thu Mar 21 22:26:29 2013 +# by: PyQt4 UI code generator 4.10 +# +# WARNING! All changes made in this file will be lost! + +from PyQt4 import QtCore, QtGui + +try: + _fromUtf8 = QtCore.QString.fromUtf8 +except AttributeError: + def _fromUtf8(s): + return s + +try: + _encoding = QtGui.QApplication.UnicodeUTF8 + def _translate(context, text, disambig): + return QtGui.QApplication.translate(context, text, disambig, _encoding) +except AttributeError: + def _translate(context, text, disambig): + return QtGui.QApplication.translate(context, text, disambig) + +class Ui_DC(object): + def setupUi(self, DC): + DC.setObjectName(_fromUtf8("DC")) + DC.resize(716, 111) + self.widget = QtGui.QWidget(DC) + self.widget.setGeometry(QtCore.QRect(11, 10, 594, 25)) + self.widget.setObjectName(_fromUtf8("widget")) + self.horizontalLayout = QtGui.QHBoxLayout(self.widget) + self.horizontalLayout.setSizeConstraint(QtGui.QLayout.SetFixedSize) + self.horizontalLayout.setMargin(0) + self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout")) + self.btn_BoltElement = QtGui.QPushButton(self.widget) + self.btn_BoltElement.setObjectName(_fromUtf8("btn_BoltElement")) + self.horizontalLayout.addWidget(self.btn_BoltElement) + self.btn_FixPoint = QtGui.QPushButton(self.widget) + self.btn_FixPoint.setObjectName(_fromUtf8("btn_FixPoint")) + self.horizontalLayout.addWidget(self.btn_FixPoint) + self.btn_LoadingPoint = QtGui.QPushButton(self.widget) + self.btn_LoadingPoint.setObjectName(_fromUtf8("btn_LoadingPoint")) + self.horizontalLayout.addWidget(self.btn_LoadingPoint) + self.btn_MeasuredPoint = QtGui.QPushButton(self.widget) + self.btn_MeasuredPoint.setObjectName(_fromUtf8("btn_MeasuredPoint")) + self.horizontalLayout.addWidget(self.btn_MeasuredPoint) + self.btn_HolePoint = QtGui.QPushButton(self.widget) + self.btn_HolePoint.setObjectName(_fromUtf8("btn_HolePoint")) + self.horizontalLayout.addWidget(self.btn_HolePoint) + self.line = QtGui.QFrame(self.widget) + self.line.setFrameShape(QtGui.QFrame.VLine) + self.line.setFrameShadow(QtGui.QFrame.Sunken) + self.line.setObjectName(_fromUtf8("line")) + self.horizontalLayout.addWidget(self.line) + self.btn_Preivew = QtGui.QPushButton(self.widget) + self.btn_Preivew.setObjectName(_fromUtf8("btn_Preivew")) + self.horizontalLayout.addWidget(self.btn_Preivew) + self.btn_Calculate = QtGui.QPushButton(self.widget) + self.btn_Calculate.setObjectName(_fromUtf8("btn_Calculate")) + self.horizontalLayout.addWidget(self.btn_Calculate) + + self.retranslateUi(DC) + QtCore.QMetaObject.connectSlotsByName(DC) + + def retranslateUi(self, DC): + DC.setWindowTitle(_translate("DC", "Form", None)) + self.btn_BoltElement.setText(_translate("DC", "BoltElement", None)) + self.btn_FixPoint.setText(_translate("DC", "FixPoint", None)) + self.btn_LoadingPoint.setText(_translate("DC", "LoadingPoint", None)) + self.btn_MeasuredPoint.setText(_translate("DC", "MeasuredPoint", None)) + self.btn_HolePoint.setText(_translate("DC", "HolePoint", None)) + self.btn_Preivew.setText(_translate("DC", "Preivew", None)) + self.btn_Calculate.setText(_translate("DC", "Calculate", None)) + diff --git a/src/Mod/DDA/ui_DF.py b/src/Mod/DDA/ui_DF.py new file mode 100644 index 000000000000..8724711bfc2d --- /dev/null +++ b/src/Mod/DDA/ui_DF.py @@ -0,0 +1,175 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file 'D:/DF.ui' +# +# Created: Thu Jun 06 14:39:08 2013 +# by: PyQt4 UI code generator 4.10 +# +# WARNING! All changes made in this file will be lost! + +from PyQt4 import QtCore, QtGui + +try: + _fromUtf8 = QtCore.QString.fromUtf8 +except AttributeError: + def _fromUtf8(s): + return s + +try: + _encoding = QtGui.QApplication.UnicodeUTF8 + def _translate(context, text, disambig): + return QtGui.QApplication.translate(context, text, disambig, _encoding) +except AttributeError: + def _translate(context, text, disambig): + return QtGui.QApplication.translate(context, text, disambig) + +class Ui_Dialog(object): + def setupUi(self, Dialog): + Dialog.setObjectName(_fromUtf8("Dialog")) + Dialog.resize(525, 287) + self.horizontalLayoutWidget = QtGui.QWidget(Dialog) + self.horizontalLayoutWidget.setGeometry(QtCore.QRect(20, 10, 461, 31)) + self.horizontalLayoutWidget.setObjectName(_fromUtf8("horizontalLayoutWidget")) + self.horizontalLayout = QtGui.QHBoxLayout(self.horizontalLayoutWidget) + self.horizontalLayout.setMargin(0) + self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout")) + self.label = QtGui.QLabel(self.horizontalLayoutWidget) + self.label.setObjectName(_fromUtf8("label")) + self.horizontalLayout.addWidget(self.label) + self.lineE_Path = QtGui.QLineEdit(self.horizontalLayoutWidget) + self.lineE_Path.setReadOnly(True) + self.lineE_Path.setObjectName(_fromUtf8("lineE_Path")) + self.horizontalLayout.addWidget(self.lineE_Path) + self.btn_ReadData = QtGui.QPushButton(self.horizontalLayoutWidget) + self.btn_ReadData.setObjectName(_fromUtf8("btn_ReadData")) + self.horizontalLayout.addWidget(self.btn_ReadData) + self.horizontalLayoutWidget_2 = QtGui.QWidget(Dialog) + self.horizontalLayoutWidget_2.setGeometry(QtCore.QRect(20, 40, 178, 31)) + self.horizontalLayoutWidget_2.setObjectName(_fromUtf8("horizontalLayoutWidget_2")) + self.horizontalLayout_2 = QtGui.QHBoxLayout(self.horizontalLayoutWidget_2) + self.horizontalLayout_2.setMargin(0) + self.horizontalLayout_2.setObjectName(_fromUtf8("horizontalLayout_2")) + self.label_2 = QtGui.QLabel(self.horizontalLayoutWidget_2) + self.label_2.setObjectName(_fromUtf8("label_2")) + self.horizontalLayout_2.addWidget(self.label_2) + self.btn_ReadPara = QtGui.QPushButton(self.horizontalLayoutWidget_2) + self.btn_ReadPara.setObjectName(_fromUtf8("btn_ReadPara")) + self.horizontalLayout_2.addWidget(self.btn_ReadPara) + self.btn_Calc = QtGui.QPushButton(Dialog) + self.btn_Calc.setGeometry(QtCore.QRect(100, 252, 121, 23)) + self.btn_Calc.setObjectName(_fromUtf8("btn_Calc")) + self.btn_Cancel = QtGui.QPushButton(Dialog) + self.btn_Cancel.setGeometry(QtCore.QRect(280, 252, 121, 23)) + self.btn_Cancel.setObjectName(_fromUtf8("btn_Cancel")) + self.groupBox = QtGui.QGroupBox(Dialog) + self.groupBox.setGeometry(QtCore.QRect(20, 90, 501, 161)) + self.groupBox.setObjectName(_fromUtf8("groupBox")) + self.horizontalLayoutWidget_3 = QtGui.QWidget(self.groupBox) + self.horizontalLayoutWidget_3.setGeometry(QtCore.QRect(0, 20, 491, 31)) + self.horizontalLayoutWidget_3.setObjectName(_fromUtf8("horizontalLayoutWidget_3")) + self.horizontalLayout_3 = QtGui.QHBoxLayout(self.horizontalLayoutWidget_3) + self.horizontalLayout_3.setMargin(0) + self.horizontalLayout_3.setObjectName(_fromUtf8("horizontalLayout_3")) + self.label_3 = QtGui.QLabel(self.horizontalLayoutWidget_3) + self.label_3.setObjectName(_fromUtf8("label_3")) + self.horizontalLayout_3.addWidget(self.label_3) + self.lineE_BlockNum = QtGui.QLineEdit(self.horizontalLayoutWidget_3) + self.lineE_BlockNum.setReadOnly(True) + self.lineE_BlockNum.setObjectName(_fromUtf8("lineE_BlockNum")) + self.horizontalLayout_3.addWidget(self.lineE_BlockNum) + self.label_4 = QtGui.QLabel(self.horizontalLayoutWidget_3) + self.label_4.setObjectName(_fromUtf8("label_4")) + self.horizontalLayout_3.addWidget(self.label_4) + self.lineE_JointNum = QtGui.QLineEdit(self.horizontalLayoutWidget_3) + self.lineE_JointNum.setReadOnly(True) + self.lineE_JointNum.setObjectName(_fromUtf8("lineE_JointNum")) + self.horizontalLayout_3.addWidget(self.lineE_JointNum) + self.btn_Config = QtGui.QPushButton(self.horizontalLayoutWidget_3) + self.btn_Config.setObjectName(_fromUtf8("btn_Config")) + self.horizontalLayout_3.addWidget(self.btn_Config) + self.gridLayoutWidget = QtGui.QWidget(self.groupBox) + self.gridLayoutWidget.setGeometry(QtCore.QRect(0, 60, 500, 100)) + self.gridLayoutWidget.setObjectName(_fromUtf8("gridLayoutWidget")) + self.gridLayout = QtGui.QGridLayout(self.gridLayoutWidget) + self.gridLayout.setMargin(0) + self.gridLayout.setObjectName(_fromUtf8("gridLayout")) + self.label_5 = QtGui.QLabel(self.gridLayoutWidget) + self.label_5.setObjectName(_fromUtf8("label_5")) + self.gridLayout.addWidget(self.label_5, 0, 0, 1, 1) + self.spinBox__NumStep = QtGui.QSpinBox(self.gridLayoutWidget) + self.spinBox__NumStep.setMaximum(999999999) + self.spinBox__NumStep.setObjectName(_fromUtf8("spinBox__NumStep")) + self.gridLayout.addWidget(self.spinBox__NumStep, 0, 3, 1, 1) + self.label_7 = QtGui.QLabel(self.gridLayoutWidget) + self.label_7.setObjectName(_fromUtf8("label_7")) + self.gridLayout.addWidget(self.label_7, 1, 0, 1, 1) + self.spinBox_Ratio = QtGui.QDoubleSpinBox(self.gridLayoutWidget) + self.spinBox_Ratio.setDecimals(4) + self.spinBox_Ratio.setMaximum(1.0) + self.spinBox_Ratio.setSingleStep(0.0001) + self.spinBox_Ratio.setProperty("value", 0.0001) + self.spinBox_Ratio.setObjectName(_fromUtf8("spinBox_Ratio")) + self.gridLayout.addWidget(self.spinBox_Ratio, 1, 1, 1, 1) + self.label_8 = QtGui.QLabel(self.gridLayoutWidget) + self.label_8.setObjectName(_fromUtf8("label_8")) + self.gridLayout.addWidget(self.label_8, 1, 2, 1, 1) + self.spinBox_timeInterval = QtGui.QDoubleSpinBox(self.gridLayoutWidget) + self.spinBox_timeInterval.setSingleStep(0.01) + self.spinBox_timeInterval.setObjectName(_fromUtf8("spinBox_timeInterval")) + self.gridLayout.addWidget(self.spinBox_timeInterval, 1, 3, 1, 1) + self.label_9 = QtGui.QLabel(self.gridLayoutWidget) + self.label_9.setObjectName(_fromUtf8("label_9")) + self.gridLayout.addWidget(self.label_9, 2, 0, 1, 1) + self.label_10 = QtGui.QLabel(self.gridLayoutWidget) + self.label_10.setObjectName(_fromUtf8("label_10")) + self.gridLayout.addWidget(self.label_10, 2, 2, 1, 1) + self.spinBox_SOR = QtGui.QDoubleSpinBox(self.gridLayoutWidget) + self.spinBox_SOR.setMaximum(2.0) + self.spinBox_SOR.setSingleStep(0.01) + self.spinBox_SOR.setObjectName(_fromUtf8("spinBox_SOR")) + self.gridLayout.addWidget(self.spinBox_SOR, 2, 3, 1, 1) + self.label_6 = QtGui.QLabel(self.gridLayoutWidget) + self.label_6.setObjectName(_fromUtf8("label_6")) + self.gridLayout.addWidget(self.label_6, 0, 2, 1, 1) + self.label_11 = QtGui.QLabel(self.gridLayoutWidget) + self.label_11.setObjectName(_fromUtf8("label_11")) + self.gridLayout.addWidget(self.label_11, 3, 0, 1, 1) + self.label_12 = QtGui.QLabel(self.gridLayoutWidget) + self.label_12.setObjectName(_fromUtf8("label_12")) + self.gridLayout.addWidget(self.label_12, 3, 1, 1, 1) + self.spinBox_SpringStiffness = QtGui.QSpinBox(self.gridLayoutWidget) + self.spinBox_SpringStiffness.setMaximum(9999999) + self.spinBox_SpringStiffness.setObjectName(_fromUtf8("spinBox_SpringStiffness")) + self.gridLayout.addWidget(self.spinBox_SpringStiffness, 2, 1, 1, 1) + self.doubleSpinBox_IFStatic = QtGui.QDoubleSpinBox(self.gridLayoutWidget) + self.doubleSpinBox_IFStatic.setDecimals(4) + self.doubleSpinBox_IFStatic.setMaximum(3.0) + self.doubleSpinBox_IFStatic.setSingleStep(0.0001) + self.doubleSpinBox_IFStatic.setProperty("value", 0.0) + self.doubleSpinBox_IFStatic.setObjectName(_fromUtf8("doubleSpinBox_IFStatic")) + self.gridLayout.addWidget(self.doubleSpinBox_IFStatic, 0, 1, 1, 1) + + self.retranslateUi(Dialog) + QtCore.QMetaObject.connectSlotsByName(Dialog) + + def retranslateUi(self, Dialog): + Dialog.setWindowTitle(_translate("Dialog", "Dialog", None)) + self.label.setText(_translate("Dialog", "Blocks data:", None)) + self.btn_ReadData.setText(_translate("Dialog", "select file", None)) + self.label_2.setText(_translate("Dialog", "Parameters :", None)) + self.btn_ReadPara.setText(_translate("Dialog", "read from file", None)) + self.btn_Calc.setText(_translate("Dialog", "Calculate DF", None)) + self.btn_Cancel.setText(_translate("Dialog", "Cancel", None)) + self.groupBox.setTitle(_translate("Dialog", "Configure DF parameters", None)) + self.label_3.setText(_translate("Dialog", "Block materials number:", None)) + self.label_4.setText(_translate("Dialog", "Joint materials number:", None)) + self.btn_Config.setText(_translate("Dialog", "Configure", None)) + self.label_5.setText(_translate("Dialog", "Statics / Dynamics (0,1):", None)) + self.label_7.setText(_translate("Dialog", "Max. ratio(.02-.0001):", None)) + self.label_8.setText(_translate("Dialog", "Max. time interval(0 for auto):", None)) + self.label_9.setText(_translate("Dialog", "Spring stiffness: ", None)) + self.label_10.setText(_translate("Dialog", "SOR:", None)) + self.label_6.setText(_translate("Dialog", "Steps:", None)) + self.label_11.setText(_translate("Dialog", "Frame of axes:", None)) + self.label_12.setText(_translate("Dialog", "Right-hand", None)) + diff --git a/src/Mod/DDA/ui_DFCalcProcess.py b/src/Mod/DDA/ui_DFCalcProcess.py new file mode 100644 index 000000000000..d8a34d9fe846 --- /dev/null +++ b/src/Mod/DDA/ui_DFCalcProcess.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file 'D:/CalculationProcess.ui' +# +# Created: Mon Mar 11 17:07:40 2013 +# by: PyQt4 UI code generator 4.10 +# +# WARNING! All changes made in this file will be lost! + +from PyQt4 import QtCore, QtGui + +try: + _fromUtf8 = QtCore.QString.fromUtf8 +except AttributeError: + def _fromUtf8(s): + return s + +try: + _encoding = QtGui.QApplication.UnicodeUTF8 + def _translate(context, text, disambig): + return QtGui.QApplication.translate(context, text, disambig, _encoding) +except AttributeError: + def _translate(context, text, disambig): + return QtGui.QApplication.translate(context, text, disambig) + +class Ui_DF_Calculation(object): + def setupUi(self, DF_Calculation): + DF_Calculation.setObjectName(_fromUtf8("DF_Calculation")) + DF_Calculation.resize(316, 147) + self.progressBar = QtGui.QProgressBar(DF_Calculation) + self.progressBar.setGeometry(QtCore.QRect(30, 50, 261, 23)) + self.progressBar.setProperty("value", 24) + self.progressBar.setObjectName(_fromUtf8("progressBar")) + self.pushButton = QtGui.QPushButton(DF_Calculation) + self.pushButton.setGeometry(QtCore.QRect(210, 110, 75, 23)) + self.pushButton.setObjectName(_fromUtf8("pushButton")) + self.label = QtGui.QLabel(DF_Calculation) + self.label.setGeometry(QtCore.QRect(30, 20, 261, 21)) + self.label.setObjectName(_fromUtf8("label")) + self.label_rate = QtGui.QLabel(DF_Calculation) + self.label_rate.setGeometry(QtCore.QRect(30, 80, 141, 16)) + self.label_rate.setObjectName(_fromUtf8("label_rate")) + + self.retranslateUi(DF_Calculation) + QtCore.QMetaObject.connectSlotsByName(DF_Calculation) + + def retranslateUi(self, DF_Calculation): + DF_Calculation.setWindowTitle(_translate("DF_Calculation", "DF Calculation", None)) + self.pushButton.setText(_translate("DF_Calculation", "Cancel", None)) + self.label.setText(_translate("DF_Calculation", "This may take serval minutes , please wait.", None)) + self.label_rate.setText(_translate("DF_Calculation", "TextLabel", None)) + diff --git a/src/Mod/DDA/ui_DL.py b/src/Mod/DDA/ui_DL.py new file mode 100644 index 000000000000..9636a78ed35c --- /dev/null +++ b/src/Mod/DDA/ui_DL.py @@ -0,0 +1,64 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file 'D:/DL.ui' +# +# Created: Thu Mar 21 22:26:20 2013 +# by: PyQt4 UI code generator 4.10 +# +# WARNING! All changes made in this file will be lost! + +from PyQt4 import QtCore, QtGui + +try: + _fromUtf8 = QtCore.QString.fromUtf8 +except AttributeError: + def _fromUtf8(s): + return s + +try: + _encoding = QtGui.QApplication.UnicodeUTF8 + def _translate(context, text, disambig): + return QtGui.QApplication.translate(context, text, disambig, _encoding) +except AttributeError: + def _translate(context, text, disambig): + return QtGui.QApplication.translate(context, text, disambig) + +class Ui_DL(object): + def setupUi(self, DL): + DL.setObjectName(_fromUtf8("DL")) + DL.resize(692, 65) + self.widget = QtGui.QWidget(DL) + self.widget.setGeometry(QtCore.QRect(23, 20, 329, 25)) + self.widget.setObjectName(_fromUtf8("widget")) + self.horizontalLayout = QtGui.QHBoxLayout(self.widget) + self.horizontalLayout.setSizeConstraint(QtGui.QLayout.SetFixedSize) + self.horizontalLayout.setMargin(0) + self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout")) + self.btn_JointSet = QtGui.QPushButton(self.widget) + self.btn_JointSet.setObjectName(_fromUtf8("btn_JointSet")) + self.horizontalLayout.addWidget(self.btn_JointSet) + self.btn_Tunnel = QtGui.QPushButton(self.widget) + self.btn_Tunnel.setObjectName(_fromUtf8("btn_Tunnel")) + self.horizontalLayout.addWidget(self.btn_Tunnel) + self.line = QtGui.QFrame(self.widget) + self.line.setFrameShape(QtGui.QFrame.VLine) + self.line.setFrameShadow(QtGui.QFrame.Sunken) + self.line.setObjectName(_fromUtf8("line")) + self.horizontalLayout.addWidget(self.line) + self.btn_Preview = QtGui.QPushButton(self.widget) + self.btn_Preview.setObjectName(_fromUtf8("btn_Preview")) + self.horizontalLayout.addWidget(self.btn_Preview) + self.btn_Calculate = QtGui.QPushButton(self.widget) + self.btn_Calculate.setObjectName(_fromUtf8("btn_Calculate")) + self.horizontalLayout.addWidget(self.btn_Calculate) + + self.retranslateUi(DL) + QtCore.QMetaObject.connectSlotsByName(DL) + + def retranslateUi(self, DL): + DL.setWindowTitle(_translate("DL", "Form", None)) + self.btn_JointSet.setText(_translate("DL", "JointSets", None)) + self.btn_Tunnel.setText(_translate("DL", "Tunnels", None)) + self.btn_Preview.setText(_translate("DL", "Preview", None)) + self.btn_Calculate.setText(_translate("DL", "Calculate", None)) + diff --git a/src/Mod/DDA/ui_TunnelSelection.py b/src/Mod/DDA/ui_TunnelSelection.py new file mode 100644 index 000000000000..327a3d27d55b --- /dev/null +++ b/src/Mod/DDA/ui_TunnelSelection.py @@ -0,0 +1,58 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file 'D:/Projects/QtCreator/DDA_UIs/TunnelSelection.ui' +# +# Created: Thu Aug 15 13:29:56 2013 +# by: PyQt4 UI code generator 4.10 +# +# WARNING! All changes made in this file will be lost! + +from PyQt4 import QtCore, QtGui + +try: + _fromUtf8 = QtCore.QString.fromUtf8 +except AttributeError: + def _fromUtf8(s): + return s + +try: + _encoding = QtGui.QApplication.UnicodeUTF8 + def _translate(context, text, disambig): + return QtGui.QApplication.translate(context, text, disambig, _encoding) +except AttributeError: + def _translate(context, text, disambig): + return QtGui.QApplication.translate(context, text, disambig) + +class Ui_Dialog(object): + def setupUi(self, Dialog): + Dialog.setObjectName(_fromUtf8("Dialog")) + Dialog.resize(635, 238) + self.buttonBox = QtGui.QDialogButtonBox(Dialog) + self.buttonBox.setGeometry(QtCore.QRect(250, 190, 341, 32)) + self.buttonBox.setOrientation(QtCore.Qt.Horizontal) + self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok) + self.buttonBox.setObjectName(_fromUtf8("buttonBox")) + self.tableWidget = QtGui.QTableWidget(Dialog) + self.tableWidget.setGeometry(QtCore.QRect(20, 30, 571, 141)) + sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.tableWidget.sizePolicy().hasHeightForWidth()) + self.tableWidget.setSizePolicy(sizePolicy) + self.tableWidget.setEditTriggers(QtGui.QAbstractItemView.NoEditTriggers) + self.tableWidget.setSelectionMode(QtGui.QAbstractItemView.SingleSelection) + self.tableWidget.setSelectionBehavior(QtGui.QAbstractItemView.SelectRows) + self.tableWidget.setRowCount(3) + self.tableWidget.setColumnCount(7) + self.tableWidget.setObjectName(_fromUtf8("tableWidget")) + self.tableWidget.horizontalHeader().setDefaultSectionSize(74) + self.tableWidget.horizontalHeader().setSortIndicatorShown(False) + + self.retranslateUi(Dialog) + QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), Dialog.accept) + QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), Dialog.reject) + QtCore.QMetaObject.connectSlotsByName(Dialog) + + def retranslateUi(self, Dialog): + Dialog.setWindowTitle(_translate("Dialog", "Dialog", None)) + diff --git a/src/Mod/DDA/ui_tunnelBolts.py b/src/Mod/DDA/ui_tunnelBolts.py new file mode 100644 index 000000000000..ac71d794b1de --- /dev/null +++ b/src/Mod/DDA/ui_tunnelBolts.py @@ -0,0 +1,227 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file 'D:/Projects/QtCreator/DDA_UIs/TunnelBolts.ui' +# +# Created: Fri Aug 16 14:44:13 2013 +# by: PyQt4 UI code generator 4.10 +# +# WARNING! All changes made in this file will be lost! + +from PyQt4 import QtCore, QtGui + +try: + _fromUtf8 = QtCore.QString.fromUtf8 +except AttributeError: + def _fromUtf8(s): + return s + +try: + _encoding = QtGui.QApplication.UnicodeUTF8 + def _translate(context, text, disambig): + return QtGui.QApplication.translate(context, text, disambig, _encoding) +except AttributeError: + def _translate(context, text, disambig): + return QtGui.QApplication.translate(context, text, disambig) + +class Ui_Dialog(object): + def setupUi(self, Dialog): + Dialog.setObjectName(_fromUtf8("Dialog")) + Dialog.resize(539, 457) + sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(Dialog.sizePolicy().hasHeightForWidth()) + Dialog.setSizePolicy(sizePolicy) + self.buttonBox = QtGui.QDialogButtonBox(Dialog) + self.buttonBox.setGeometry(QtCore.QRect(130, 420, 341, 32)) + self.buttonBox.setOrientation(QtCore.Qt.Horizontal) + self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok) + self.buttonBox.setObjectName(_fromUtf8("buttonBox")) + self.groupBox_2 = QtGui.QGroupBox(Dialog) + self.groupBox_2.setGeometry(QtCore.QRect(20, 330, 501, 81)) + self.groupBox_2.setObjectName(_fromUtf8("groupBox_2")) + self.layoutWidget = QtGui.QWidget(self.groupBox_2) + self.layoutWidget.setGeometry(QtCore.QRect(20, 50, 211, 22)) + self.layoutWidget.setObjectName(_fromUtf8("layoutWidget")) + self.horizontalLayout_4 = QtGui.QHBoxLayout(self.layoutWidget) + self.horizontalLayout_4.setMargin(0) + self.horizontalLayout_4.setObjectName(_fromUtf8("horizontalLayout_4")) + self.label_3 = QtGui.QLabel(self.layoutWidget) + self.label_3.setObjectName(_fromUtf8("label_3")) + self.horizontalLayout_4.addWidget(self.label_3) + self.spinBox_startBoltIdx = QtGui.QSpinBox(self.layoutWidget) + self.spinBox_startBoltIdx.setObjectName(_fromUtf8("spinBox_startBoltIdx")) + self.horizontalLayout_4.addWidget(self.spinBox_startBoltIdx) + self.layoutWidget1 = QtGui.QWidget(self.groupBox_2) + self.layoutWidget1.setGeometry(QtCore.QRect(250, 50, 211, 22)) + self.layoutWidget1.setObjectName(_fromUtf8("layoutWidget1")) + self.horizontalLayout_5 = QtGui.QHBoxLayout(self.layoutWidget1) + self.horizontalLayout_5.setMargin(0) + self.horizontalLayout_5.setObjectName(_fromUtf8("horizontalLayout_5")) + self.label_4 = QtGui.QLabel(self.layoutWidget1) + self.label_4.setObjectName(_fromUtf8("label_4")) + self.horizontalLayout_5.addWidget(self.label_4) + self.spinBox_endBoltIdx = QtGui.QSpinBox(self.layoutWidget1) + self.spinBox_endBoltIdx.setObjectName(_fromUtf8("spinBox_endBoltIdx")) + self.horizontalLayout_5.addWidget(self.spinBox_endBoltIdx) + self.label_10 = QtGui.QLabel(self.groupBox_2) + self.label_10.setGeometry(QtCore.QRect(20, 20, 441, 16)) + palette = QtGui.QPalette() + brush = QtGui.QBrush(QtGui.QColor(0, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.WindowText, brush) + brush = QtGui.QBrush(QtGui.QColor(0, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.WindowText, brush) + brush = QtGui.QBrush(QtGui.QColor(120, 120, 120)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.WindowText, brush) + self.label_10.setPalette(palette) + self.label_10.setObjectName(_fromUtf8("label_10")) + self.groupBox = QtGui.QGroupBox(Dialog) + self.groupBox.setGeometry(QtCore.QRect(20, 20, 501, 151)) + self.groupBox.setObjectName(_fromUtf8("groupBox")) + self.layoutWidget2 = QtGui.QWidget(self.groupBox) + self.layoutWidget2.setGeometry(QtCore.QRect(40, 20, 436, 118)) + self.layoutWidget2.setObjectName(_fromUtf8("layoutWidget2")) + self.gridLayout = QtGui.QGridLayout(self.layoutWidget2) + self.gridLayout.setMargin(0) + self.gridLayout.setObjectName(_fromUtf8("gridLayout")) + self.label_2 = QtGui.QLabel(self.layoutWidget2) + self.label_2.setObjectName(_fromUtf8("label_2")) + self.gridLayout.addWidget(self.label_2, 0, 2, 1, 1) + self.b = QtGui.QLineEdit(self.layoutWidget2) + self.b.setReadOnly(True) + self.b.setObjectName(_fromUtf8("b")) + self.gridLayout.addWidget(self.b, 1, 3, 1, 1) + self.label = QtGui.QLabel(self.layoutWidget2) + self.label.setObjectName(_fromUtf8("label")) + self.gridLayout.addWidget(self.label, 0, 0, 1, 1) + self.tunnelNo = QtGui.QLineEdit(self.layoutWidget2) + self.tunnelNo.setReadOnly(True) + self.tunnelNo.setObjectName(_fromUtf8("tunnelNo")) + self.gridLayout.addWidget(self.tunnelNo, 0, 1, 1, 1) + self.tunnelType = QtGui.QLineEdit(self.layoutWidget2) + self.tunnelType.setReadOnly(True) + self.tunnelType.setObjectName(_fromUtf8("tunnelType")) + self.gridLayout.addWidget(self.tunnelType, 0, 3, 1, 1) + self.label_5 = QtGui.QLabel(self.layoutWidget2) + self.label_5.setObjectName(_fromUtf8("label_5")) + self.gridLayout.addWidget(self.label_5, 1, 0, 1, 1) + self.a = QtGui.QLineEdit(self.layoutWidget2) + self.a.setReadOnly(True) + self.a.setObjectName(_fromUtf8("a")) + self.gridLayout.addWidget(self.a, 1, 1, 1, 1) + self.label_6 = QtGui.QLabel(self.layoutWidget2) + self.label_6.setObjectName(_fromUtf8("label_6")) + self.gridLayout.addWidget(self.label_6, 1, 2, 1, 1) + self.label_7 = QtGui.QLabel(self.layoutWidget2) + self.label_7.setObjectName(_fromUtf8("label_7")) + self.gridLayout.addWidget(self.label_7, 2, 0, 1, 1) + self.c = QtGui.QLineEdit(self.layoutWidget2) + self.c.setReadOnly(True) + self.c.setObjectName(_fromUtf8("c")) + self.gridLayout.addWidget(self.c, 2, 1, 1, 1) + self.label_8 = QtGui.QLabel(self.layoutWidget2) + self.label_8.setObjectName(_fromUtf8("label_8")) + self.gridLayout.addWidget(self.label_8, 3, 0, 1, 1) + self.centerX = QtGui.QLineEdit(self.layoutWidget2) + self.centerX.setReadOnly(True) + self.centerX.setObjectName(_fromUtf8("centerX")) + self.gridLayout.addWidget(self.centerX, 3, 1, 1, 1) + self.label_9 = QtGui.QLabel(self.layoutWidget2) + self.label_9.setObjectName(_fromUtf8("label_9")) + self.gridLayout.addWidget(self.label_9, 3, 2, 1, 1) + self.centerY = QtGui.QLineEdit(self.layoutWidget2) + self.centerY.setReadOnly(True) + self.centerY.setObjectName(_fromUtf8("centerY")) + self.gridLayout.addWidget(self.centerY, 3, 3, 1, 1) + self.groupBox_3 = QtGui.QGroupBox(Dialog) + self.groupBox_3.setGeometry(QtCore.QRect(20, 190, 501, 131)) + self.groupBox_3.setObjectName(_fromUtf8("groupBox_3")) + self.label_11 = QtGui.QLabel(self.groupBox_3) + self.label_11.setGeometry(QtCore.QRect(20, 30, 451, 16)) + self.label_11.setObjectName(_fromUtf8("label_11")) + self.label_12 = QtGui.QLabel(self.groupBox_3) + self.label_12.setGeometry(QtCore.QRect(20, 50, 401, 16)) + palette = QtGui.QPalette() + brush = QtGui.QBrush(QtGui.QColor(255, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.WindowText, brush) + brush = QtGui.QBrush(QtGui.QColor(255, 0, 0)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.WindowText, brush) + brush = QtGui.QBrush(QtGui.QColor(120, 120, 120)) + brush.setStyle(QtCore.Qt.SolidPattern) + palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.WindowText, brush) + self.label_12.setPalette(palette) + self.label_12.setObjectName(_fromUtf8("label_12")) + self.widget = QtGui.QWidget(self.groupBox_3) + self.widget.setGeometry(QtCore.QRect(250, 70, 211, 22)) + self.widget.setObjectName(_fromUtf8("widget")) + self.horizontalLayout_2 = QtGui.QHBoxLayout(self.widget) + self.horizontalLayout_2.setMargin(0) + self.horizontalLayout_2.setObjectName(_fromUtf8("horizontalLayout_2")) + self.label_14 = QtGui.QLabel(self.widget) + self.label_14.setObjectName(_fromUtf8("label_14")) + self.horizontalLayout_2.addWidget(self.label_14) + self.spinBox_boltLength2 = QtGui.QDoubleSpinBox(self.widget) + self.spinBox_boltLength2.setMaximum(9999.99) + self.spinBox_boltLength2.setProperty("value", 10.0) + self.spinBox_boltLength2.setObjectName(_fromUtf8("spinBox_boltLength2")) + self.horizontalLayout_2.addWidget(self.spinBox_boltLength2) + self.widget1 = QtGui.QWidget(self.groupBox_3) + self.widget1.setGeometry(QtCore.QRect(20, 70, 211, 22)) + self.widget1.setObjectName(_fromUtf8("widget1")) + self.horizontalLayout = QtGui.QHBoxLayout(self.widget1) + self.horizontalLayout.setMargin(0) + self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout")) + self.label_13 = QtGui.QLabel(self.widget1) + self.label_13.setObjectName(_fromUtf8("label_13")) + self.horizontalLayout.addWidget(self.label_13) + self.spinBox_boltLength = QtGui.QDoubleSpinBox(self.widget1) + self.spinBox_boltLength.setMaximum(9999.99) + self.spinBox_boltLength.setProperty("value", 12.0) + self.spinBox_boltLength.setObjectName(_fromUtf8("spinBox_boltLength")) + self.horizontalLayout.addWidget(self.spinBox_boltLength) + self.widget2 = QtGui.QWidget(self.groupBox_3) + self.widget2.setGeometry(QtCore.QRect(20, 100, 211, 22)) + self.widget2.setObjectName(_fromUtf8("widget2")) + self.horizontalLayout_3 = QtGui.QHBoxLayout(self.widget2) + self.horizontalLayout_3.setMargin(0) + self.horizontalLayout_3.setObjectName(_fromUtf8("horizontalLayout_3")) + self.label_15 = QtGui.QLabel(self.widget2) + self.label_15.setObjectName(_fromUtf8("label_15")) + self.horizontalLayout_3.addWidget(self.label_15) + self.spinBox_boltDistance = QtGui.QDoubleSpinBox(self.widget2) + self.spinBox_boltDistance.setMaximum(9999.99) + self.spinBox_boltDistance.setProperty("value", 4.0) + self.spinBox_boltDistance.setObjectName(_fromUtf8("spinBox_boltDistance")) + self.horizontalLayout_3.addWidget(self.spinBox_boltDistance) + + self.retranslateUi(Dialog) + QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), Dialog.accept) + QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), Dialog.reject) + QtCore.QMetaObject.connectSlotsByName(Dialog) + + def retranslateUi(self, Dialog): + Dialog.setWindowTitle(_translate("Dialog", "Dialog", None)) + self.groupBox_2.setTitle(_translate("Dialog", "Select bolts", None)) + self.label_3.setText(_translate("Dialog", "Start bolt Index:", None)) + self.label_4.setText(_translate("Dialog", "End bolt Index :", None)) + self.label_10.setText(_translate("Dialog", "Bolt elements between start and end indexes will be saved.", None)) + self.groupBox.setTitle(_translate("Dialog", "Tunnel Information", None)) + self.label_2.setText(_translate("Dialog", "Tunnel Type:", None)) + self.label.setText(_translate("Dialog", "Tunnel No:", None)) + self.label_5.setText(_translate("Dialog", "Half width :", None)) + self.label_6.setText(_translate("Dialog", "Half Height :", None)) + self.label_7.setText(_translate("Dialog", "Arc Radius :", None)) + self.label_8.setText(_translate("Dialog", "Center X:", None)) + self.label_9.setText(_translate("Dialog", "CenterY:", None)) + self.groupBox_3.setTitle(_translate("Dialog", "Configure bolts parameters", None)) + self.label_11.setText(_translate("Dialog", "Different lengths for bolts are used to balance tension and stress.", None)) + self.label_12.setText(_translate("Dialog", "Please don\'t change parameters unless you have the experience.", None)) + self.label_14.setText(_translate("Dialog", "bolt length 2:", None)) + self.label_13.setText(_translate("Dialog", "bolt length 1: ", None)) + self.label_15.setText(_translate("Dialog", "bolt distance :", None)) + diff --git a/src/Mod/Draft/importDXF.py b/src/Mod/Draft/importDXF.py index 66eb9b847be2..8fb87caf4d89 100644 --- a/src/Mod/Draft/importDXF.py +++ b/src/Mod/Draft/importDXF.py @@ -304,10 +304,9 @@ def buildTable(self,tablefile): def formatObject(self,obj,dxfobj=None): "applies color and linetype to objects" - if self.paramstyle == 0: - if hasattr(obj.ViewObject,"TextColor"): - obj.ViewObject.TextColor = (0.0,0.0,0.0) - elif self.paramstyle == 1: + if hasattr(obj.ViewObject,"TextColor"): + obj.ViewObject.TextColor = (0.0,0.0,0.0) + if self.paramstyle == 1: if hasattr(obj.ViewObject,"TextColor"): obj.ViewObject.TextColor = self.col else: @@ -638,7 +637,7 @@ def drawSpline(spline,shapemode=False): warn(spline) return None -def drawBlock(blockref,num=None): +def drawBlock(blockref,num=None,createObject=False): "returns a shape from a dxf block reference" if not fmt.paramstarblocks: if blockref.name[0] == '*': @@ -683,31 +682,52 @@ def drawBlock(blockref,num=None): except: warn(blockref) if shape: blockshapes[blockref.name]=shape + if createObject: + newob=doc.addObject("Part::Feature",blockref.name) + newob.Shape = shape + blockobjects[blockref.name] = newob + return newob return shape return None -def drawInsert(insert,num=None): - if blockshapes.has_key(insert): - shape = blockshapes[insert.block].copy() - else: - shape = None - for b in drawing.blocks.data: - if b.name == insert.block: - shape = drawBlock(b,num) +def drawInsert(insert,num=None,clone=False): if fmt.paramtext: attrs = attribs(insert) for a in attrs: addText(a,attrib=True) - if shape: - pos = vec(insert.loc) - rot = math.radians(insert.rotation) - scale = insert.scale - tsf = FreeCAD.Matrix() - tsf.scale(scale[0],scale[1],0) # for some reason z must be 0 to work - tsf.rotateZ(rot) - shape = shape.transformGeometry(tsf) - shape.translate(pos) - return shape + if clone: + if blockobjects.has_key(insert.block): + newob = Draft.clone(blockobjects[insert.block]) + tsf = FreeCAD.Matrix() + rot = math.radians(insert.rotation) + pos = vec(insert.loc) + tsf.move(pos) + tsf.rotateZ(rot) + sc = insert.scale + sc = FreeCAD.Vector(sc[0],sc[1],0) + newob.Placement = FreeCAD.Placement(tsf) + newob.Scale = sc + return newob + else: + shape = None + else: + if blockshapes.has_key(insert): + shape = blockshapes[insert.block].copy() + else: + shape = None + for b in drawing.blocks.data: + if b.name == insert.block: + shape = drawBlock(b,num) + if shape: + pos = vec(insert.loc) + rot = math.radians(insert.rotation) + scale = insert.scale + tsf = FreeCAD.Matrix() + tsf.scale(scale[0],scale[1],0) # for some reason z must be 0 to work + tsf.rotateZ(rot) + shape = shape.transformGeometry(tsf) + shape.translate(pos) + return shape return None def drawLayerBlock(objlist): @@ -791,6 +811,10 @@ def addText(text,attrib=False): elif hasattr(text,"rotation"): if text.rotation: Draft.rotate(newob,text.rotation) + if attrib: + attrot = rawValue(text,50) + if attrot: + Draft.rotate(newob,attrot) newob.LabelText = val.split("\n") newob.Position = pos if gui: @@ -824,6 +848,8 @@ def processdxf(document,filename): doc = document global blockshapes blockshapes = {} + global blockobjects + blockobjects = {} global badobjects badobjects = [] global layerBlocks @@ -1027,7 +1053,7 @@ def processdxf(document,filename): for text in texts: if fmt.dxflayout or (not rawValue(text,67)): addText(text) - + else: FreeCAD.Console.PrintMessage("skipping texts...\n") # drawing 3D objects @@ -1080,6 +1106,12 @@ def processdxf(document,filename): pt = FreeCAD.Vector(x1,y1,z1) p1 = FreeCAD.Vector(x2,y2,z2) p2 = FreeCAD.Vector(x3,y3,z3) + if align >= 128: + align -= 128 + elif align >= 64: + align -= 64 + elif align >= 32: + align -= 32 if align == 0: if angle in [0,180]: p2 = FreeCAD.Vector(x3,y2,z2) @@ -1190,10 +1222,16 @@ def processdxf(document,filename): FreeCAD.Console.PrintMessage("drawing "+str(len(inserts))+" blocks...\n") blockrefs = drawing.blocks.data for ref in blockrefs: - drawBlock(ref) + if fmt.paramstyle >= 4: + drawBlock(ref,createObject=True) + else: + drawBlock(ref,createObject=False) num = 0 for insert in inserts: - shape = drawInsert(insert,num) + if (fmt.paramstyle >= 4) and not(fmt.makeBlocks): + shape = drawInsert(insert,num,clone=True) + else: + shape = drawInsert(insert,num) if shape: if fmt.makeBlocks: addToBlock(shape,insert.layer) @@ -1211,7 +1249,14 @@ def processdxf(document,filename): if shape: newob = addObject(shape,k) del layerBlocks - + + # hide block objects, if any + + for k,o in blockobjects.iteritems(): + if o.ViewObject: + o.ViewObject.hide() + del blockobjects + # finishing print "done processing"