From 488949518446bf2a7412104f3b7319fc49300de9 Mon Sep 17 00:00:00 2001 From: wmayer Date: Sat, 4 Feb 2012 22:45:44 +0100 Subject: [PATCH 01/18] Show hash and branch name of Git repo in About dialog --- src/App/Application.cpp | 18 ++++--- src/Build/Version.h.in | 10 +--- src/Gui/AboutApplication.ui | 98 +++++++++++++++++++++---------------- src/Gui/Splashscreen.cpp | 48 ++++++++++++++---- src/Gui/Splashscreen.h | 1 + src/Tools/SubWCRev.py | 29 ++++------- 6 files changed, 119 insertions(+), 85 deletions(-) diff --git a/src/App/Application.cpp b/src/App/Application.cpp index aa49a5575..bed1c143d 100644 --- a/src/App/Application.cpp +++ b/src/App/Application.cpp @@ -1028,12 +1028,18 @@ void Application::initConfig(int argc, char ** argv) // only for 'BuildVersionMajor'. if (App::Application::Config().find("BuildVersionMajor") == App::Application::Config().end()) { std::stringstream str; str << FCVersionMajor << "." << FCVersionMinor; - App::Application::Config()["ExeVersion"] = str.str(); - App::Application::Config()["BuildVersionMajor"] = FCVersionMajor; - App::Application::Config()["BuildVersionMinor"] = FCVersionMinor; - App::Application::Config()["BuildRevision"] = FCRevision; - App::Application::Config()["BuildRepositoryURL"] = FCRepositoryURL; - App::Application::Config()["BuildRevisionDate"] = FCCurrentDateT; + App::Application::Config()["ExeVersion" ] = str.str(); + App::Application::Config()["BuildVersionMajor" ] = FCVersionMajor; + App::Application::Config()["BuildVersionMinor" ] = FCVersionMinor; + App::Application::Config()["BuildRevision" ] = FCRevision; + App::Application::Config()["BuildRepositoryURL" ] = FCRepositoryURL; + App::Application::Config()["BuildRevisionDate" ] = FCRevisionDate; +#if defined(FCRepositoryHash) + App::Application::Config()["BuildRevisionHash" ] = FCRepositoryHash; +#endif +#if defined(FCRepositoryBranch) + App::Application::Config()["BuildRevisionBranch"] = FCRepositoryBranch; +#endif } _argc = argc; diff --git a/src/Build/Version.h.in b/src/Build/Version.h.in index c67cfb174..ac7a33ee4 100644 --- a/src/Build/Version.h.in +++ b/src/Build/Version.h.in @@ -1,18 +1,10 @@ -/// Version Number +// Version Number #define FCVersionMajor "0" #define FCVersionMinor "13" #define FCVersionName "Vulcan" #define FCRevision "$WCREV$" //Highest committed revision number #define FCRevisionDate "$WCDATE$" //Date of highest committed revision -#define FCRevisionRange "$WCRANGE$" //Update revision range #define FCRepositoryURL "$WCURL$" //Repository URL of the working copy -#define FCCurrentDateT "$WCNOW$" //Current system date & time - -//Placeholders of the form "$WCxxx?TrueText:FalseText$" are replaced with -//TrueText if the tested condition is true, and FalseText if false. - -#define FCScrClean "$WCMODS?Src modified:Src not modified$" //True if local modifications found -#define FCScrMixed "$WCMIXED?Src mixed:Src not mixed$" //True if mixed update revisions found diff --git a/src/Gui/AboutApplication.ui b/src/Gui/AboutApplication.ui index e8d20441f..3c864a682 100644 --- a/src/Gui/AboutApplication.ui +++ b/src/Gui/AboutApplication.ui @@ -16,13 +16,17 @@ true - - - 9 - - - 6 - + + + + + + + + Qt::AlignCenter + + + @@ -36,15 +40,18 @@ - - - - + + + + Qt::Horizontal - - Qt::AlignCenter + + + 31 + 20 + - + @@ -161,6 +168,34 @@ + + + + Branch + + + + + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Unknown</span></p></body></html> + + + + + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:7.8pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><span style=" font-weight:600;">Unknown</span></p></body></html> + + + + + + + Hash + + + @@ -178,19 +213,6 @@ - - - - Qt::Horizontal - - - - 31 - 20 - - - - @@ -219,6 +241,13 @@ + + + + Copy to clipboard + + + @@ -239,19 +268,6 @@ - - - - Qt::Horizontal - - - - 181 - 20 - - - - @@ -264,7 +280,7 @@ - + diff --git a/src/Gui/Splashscreen.cpp b/src/Gui/Splashscreen.cpp index 9da80f552..f7e2d1e10 100644 --- a/src/Gui/Splashscreen.cpp +++ b/src/Gui/Splashscreen.cpp @@ -248,18 +248,18 @@ static QString getPlatform() void AboutDialog::setupLabels() { - QString exeName = QString::fromAscii(App::Application::Config()["ExeName"].c_str()); - std::map& cfg = App::Application::Config(); - std::map::iterator it = cfg.find("WindowTitle"); - if (it != cfg.end()) + std::map& config = App::Application::Config(); + QString exeName = QString::fromAscii(config["ExeName"].c_str()); + std::map::iterator it = config.find("WindowTitle"); + if (it != config.end()) exeName = QString::fromUtf8(it->second.c_str()); - QString banner = QString::fromUtf8(App::Application::Config()["ConsoleBanner"].c_str()); + QString banner = QString::fromUtf8(config["ConsoleBanner"].c_str()); banner = banner.left( banner.indexOf(QLatin1Char('\n')) ); - QString major = QString::fromAscii(App::Application::Config()["BuildVersionMajor"].c_str()); - QString minor = QString::fromAscii(App::Application::Config()["BuildVersionMinor"].c_str()); - QString build = QString::fromAscii(App::Application::Config()["BuildRevision"].c_str()); - QString disda = QString::fromAscii(App::Application::Config()["BuildRevisionDate"].c_str()); - QString mturl = QString::fromAscii(App::Application::Config()["MaintainerUrl"].c_str()); + QString major = QString::fromAscii(config["BuildVersionMajor"].c_str()); + QString minor = QString::fromAscii(config["BuildVersionMinor"].c_str()); + QString build = QString::fromAscii(config["BuildRevision"].c_str()); + QString disda = QString::fromAscii(config["BuildRevisionDate"].c_str()); + QString mturl = QString::fromAscii(config["MaintainerUrl"].c_str()); QString author = ui->labelAuthor->text(); author.replace(QString::fromAscii("Unknown Application"), exeName); @@ -283,10 +283,38 @@ void AboutDialog::setupLabels() platform.replace(QString::fromAscii("Unknown"), QString::fromAscii("%1 (%2-bit)").arg(getPlatform()).arg(QSysInfo::WordSize)); ui->labelBuildPlatform->setText(platform); + + // branch name + it = config.find("BuildRevisionBranch"); + if (it != config.end()) { + QString branch = ui->labelBuildBranch->text(); + branch.replace(QString::fromAscii("Unknown"), QString::fromAscii(it->second.c_str())); + ui->labelBuildBranch->setText(branch); + } + else { + ui->labelBranch->hide(); + ui->labelBuildBranch->hide(); + } + + // hash id + it = config.find("BuildRevisionHash"); + if (it != config.end()) { + QString hash = ui->labelBuildHash->text(); + hash.replace(QString::fromAscii("Unknown"), QString::fromAscii(it->second.c_str())); + ui->labelBuildHash->setText(hash); + } + else { + ui->labelHash->hide(); + ui->labelBuildHash->hide(); + } } void AboutDialog::on_licenseButton_clicked() { } +void AboutDialog::on_copyButton_clicked() +{ +} + #include "moc_Splashscreen.cpp" diff --git a/src/Gui/Splashscreen.h b/src/Gui/Splashscreen.h index 957d4c748..0f07e8d2b 100644 --- a/src/Gui/Splashscreen.h +++ b/src/Gui/Splashscreen.h @@ -85,6 +85,7 @@ protected: protected Q_SLOTS: virtual void on_licenseButton_clicked(); + virtual void on_copyButton_clicked(); private: Ui_AboutApplication* ui; diff --git a/src/Tools/SubWCRev.py b/src/Tools/SubWCRev.py index 28835ce36..843f0796b 100644 --- a/src/Tools/SubWCRev.py +++ b/src/Tools/SubWCRev.py @@ -50,11 +50,7 @@ class VersionControl: def __init__(self): self.rev = "" self.date = "" - self.range = "" self.url = "" - self.time = "" - self.mods = "Src not modified" - self.mixed = "Src not mixed" def extractInfo(self, srcdir): return False @@ -67,11 +63,7 @@ class VersionControl: for line in lines: line = string.replace(line,'$WCREV$',self.rev) line = string.replace(line,'$WCDATE$',self.date) - line = string.replace(line,'$WCRANGE$',self.range) line = string.replace(line,'$WCURL$',self.url) - line = string.replace(line,'$WCNOW$',self.time) - line = string.replace(line,'$WCMODS?Src modified:Src not modified$',self.mods) - line = string.replace(line,'$WCMIXED?Src mixed:Src not mixed$',self.mixed) content.append(line) return content @@ -82,9 +74,7 @@ class UnknownControl(VersionControl): return False self.rev = "Unknown" self.date = "Unknown" - self.range = "Unknown" self.url = "Unknown" - self.time = "Unknown" return True def printInfo(self): @@ -104,13 +94,10 @@ class DebianChangelog(VersionControl): r=re.search("bzr(\\d+)",c) if r != None: self.rev = r.groups()[0] + " (Launchpad)" - self.range = self.rev t = time.localtime() - self.url = "https://code.launchpad.net/~vcs-imports/freecad/trunk" - #self.time = time.asctime() self.date = ("%d/%02d/%02d %02d:%02d:%02d") % (t.tm_year, t.tm_mon, t.tm_mday, t.tm_hour, t.tm_min, t.tm_sec) - self.time = ("%d/%02d/%02d %02d:%02d:%02d") % (t.tm_year, t.tm_mon, t.tm_mday, t.tm_hour, t.tm_min, t.tm_sec) + self.url = "https://code.launchpad.net/~vcs-imports/freecad/trunk" return True def printInfo(self): @@ -121,8 +108,6 @@ class BazaarControl(VersionControl): info=os.popen("bzr log -l 1 %s" % (srcdir)).read() if len(info) == 0: return False - #Get the current local date - self.time = time.strftime("%Y/%m/%d %H:%M:%S") lines=info.split("\n") for i in lines: r = re.match("^revno: (\\d+)$", i) @@ -151,7 +136,6 @@ class GitControl(VersionControl): if len(info) == 0: return False self.rev='%04d (Git)' % (info.count('\n')) - self.range='%04d' % (info.count('\n')) # date/time info=os.popen("git log -1 --date=iso").read() info=info.split("\n") @@ -159,9 +143,7 @@ class GitControl(VersionControl): r = re.match("^Date:\\W+(\\d+-\\d+-\\d+\\W+\\d+:\\d+:\\d+)", i) if r != None: self.date = r.groups()[0].replace('-','/') - self.time = self.date break - #self.time = time.strftime("%Y/%m/%d %H:%M:%S") self.url = "Unknown" info=os.popen("git remote -v").read() info=info.split("\n") @@ -170,11 +152,20 @@ class GitControl(VersionControl): if r != None: self.url = r.groups()[0] break + self.hash=os.popen("git log -1 --pretty=format:%H").read() + self.branch=os.popen("git branch").read().split('\n')[0][2:] return True def printInfo(self): print "git" + def writeVersion(self, lines): + content = VersionControl.writeVersion(self, lines) + content.append('// Git relevant stuff\n') + content.append('#define FCRepositoryHash "%s"\n' % (self.hash)) + content.append('#define FCRepositoryBranch "%s"\n' % (self.branch)) + return content + class MercurialControl(VersionControl): def extractInfo(self, srcdir): return False From dcc5f1fa805d19d75c41413bbd2a3552ef57f145 Mon Sep 17 00:00:00 2001 From: wmayer Date: Sun, 5 Feb 2012 17:44:11 +0100 Subject: [PATCH 02/18] Add makedist script and custom build target --- CMakeLists.txt | 6 +++++ src/Tools/makedist.py | 57 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 63 insertions(+) create mode 100644 src/Tools/makedist.py diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fccee394..31c52b74e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -467,3 +467,9 @@ if(FREECAD_MAINTAINERS_BUILD AND NOT WIN32) #ADD_CUSTOM_TARGET(DIST make package_source) endif(FREECAD_MAINTAINERS_BUILD AND NOT WIN32) + add_custom_target(dist-git + COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/src/Tools/makedist.py + --srcdir=${CMAKE_SOURCE_DIR} --bindir=${CMAKE_BINARY_DIR} + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} + ) + diff --git a/src/Tools/makedist.py b/src/Tools/makedist.py new file mode 100644 index 000000000..d5590874c --- /dev/null +++ b/src/Tools/makedist.py @@ -0,0 +1,57 @@ +#! python +# -*- coding: utf-8 -*- +# (c) 2006 Werner Mayer LGPL +# +# Python script to make source tarballs. +# + +import sys, os, getopt, tarfile, gzip, time, StringIO + +def main(): + srcdir="." + bindir="." + try: + opts, args = getopt.getopt(sys.argv[1:], "sb:", ["srcdir=","bindir="]) + except getopt.GetoptError: + pass + + for o, a in opts: + if o in ("-s", "--srcdir"): + srcdir = a + if o in ("-b", "--bindir"): + bindir = a + + # revision number + info=os.popen("git rev-list HEAD").read() + revision='%04d' % (info.count('\n')) + + PACKAGE_NAME = 'freecad' + version = "0.13.%s" % (revision) + + DIRNAME = "%(p)s-%(v)s" % {'p': PACKAGE_NAME, 'v': version} + TARNAME = DIRNAME + '.tar.gz' + + verfile = open("%s/src/Build/Version.h" % (bindir), 'r') + verstream = StringIO.StringIO(verfile.read()) + verfile.close() + verinfo = tarfile.TarInfo(DIRNAME + "/src/Build/Version.h") + verinfo.mode = 0660 + verinfo.size = len(verstream.getvalue()) + verinfo.mtime = time.time() + + print "git archive --worktree-attributes --prefix=%s/ HEAD" % (DIRNAME) + tardata = os.popen("git archive --worktree-attributes --prefix=%s/ HEAD" + % (DIRNAME)).read() + tarstream = StringIO.StringIO(tardata) + + tar = tarfile.TarFile(mode="a", fileobj=tarstream) + tar.addfile(verinfo, verstream) + tar.close() + + out = gzip.open(TARNAME, "wb") + out.write(tarstream.getvalue()) + out.close() + print "Created " + TARNAME + +if __name__ == "__main__": + main() From 60568c00f7de00e36fbb01dd9053af739efa5905 Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Sun, 5 Feb 2012 15:27:03 -0200 Subject: [PATCH 03/18] Auto workbench switching when editing a wall's base sketch --- src/Mod/Arch/ArchComponent.py | 36 +++++++++++++++++++++++++++++++---- 1 file changed, 32 insertions(+), 4 deletions(-) diff --git a/src/Mod/Arch/ArchComponent.py b/src/Mod/Arch/ArchComponent.py index fde19dcce..6b8b33af1 100644 --- a/src/Mod/Arch/ArchComponent.py +++ b/src/Mod/Arch/ArchComponent.py @@ -140,6 +140,7 @@ class ComponentTaskPanel: QtCore.QObject.connect(self.addButton, QtCore.SIGNAL("clicked()"), self.addElement) QtCore.QObject.connect(self.delButton, QtCore.SIGNAL("clicked()"), self.removeElement) QtCore.QObject.connect(self.tree, QtCore.SIGNAL("itemClicked(QTreeWidgetItem*,int)"), self.check) + QtCore.QObject.connect(self.tree, QtCore.SIGNAL("itemDoubleClicked(QTreeWidgetItem *,int)"), self.editObject) self.update() def isAllowedAlterSelection(self): @@ -224,7 +225,21 @@ class ComponentTaskPanel: if self.obj: self.obj.ViewObject.finishEditing() return True - + + def editObject(self,wid,col): + if wid.parent(): + obj = FreeCAD.ActiveDocument.getObject(str(wid.text(0))) + if obj: + self.obj.ViewObject.Transparency = 80 + self.obj.ViewObject.Selectable = False + obj.ViewObject.show() + self.accept() + if obj.isDerivedFrom("Sketcher::SketchObject"): + FreeCADGui.activateWorkbench("SketcherWorkbench") + FreeCAD.ArchObserver = ArchSelectionObserver(self.obj,obj) + FreeCADGui.Selection.addObserver(FreeCAD.ArchObserver) + FreeCADGui.ActiveDocument.setEdit(obj.Name,0) + def retranslateUi(self, TaskPanel): TaskPanel.setWindowTitle(QtGui.QApplication.translate("Arch", "Components", None, QtGui.QApplication.UnicodeUTF8)) self.delButton.setText(QtGui.QApplication.translate("Arch", "Remove", None, QtGui.QApplication.UnicodeUTF8)) @@ -251,8 +266,7 @@ class Component: obj.Proxy = self self.Type = "Component" self.Subvolume = None - - + class ViewProviderComponent: "A default View Provider for Component objects" def __init__(self,vobj): @@ -295,4 +309,18 @@ class ViewProviderComponent: def unsetEdit(self,vobj,mode): FreeCADGui.Control.closeDialog() return - + +class ArchSelectionObserver: + def __init__(self,origin,watched): + self.origin = origin + self.watched = watched + def addSelection(self,document, object, element, position): + if object == self.watched.Name: + if not element: + print "closing Sketch edit" + self.origin.ViewObject.Transparency = 0 + self.origin.ViewObject.Selectable = True + self.watched.ViewObject.hide() + FreeCADGui.activateWorkbench("ArchWorkbench") + FreeCADGui.Selection.removeObserver(FreeCAD.ArchObserver) + del FreeCAD.ArchObserver From 9afae903acd1c90ab6b8c8c737c87f9b0cf35617 Mon Sep 17 00:00:00 2001 From: wmayer Date: Mon, 6 Feb 2012 15:40:59 +0100 Subject: [PATCH 04/18] implement copy license information to clipboard --- src/Gui/Splashscreen.cpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/Gui/Splashscreen.cpp b/src/Gui/Splashscreen.cpp index f7e2d1e10..53dd9688f 100644 --- a/src/Gui/Splashscreen.cpp +++ b/src/Gui/Splashscreen.cpp @@ -23,8 +23,11 @@ #include "PreCompiled.h" #ifndef _PreComp_ +# include +# include # include # include +# include # include #endif @@ -315,6 +318,24 @@ void AboutDialog::on_licenseButton_clicked() void AboutDialog::on_copyButton_clicked() { + QString data; + QTextStream str(&data); + std::map& config = App::Application::Config(); + std::map::iterator it; + + QString major = QString::fromAscii(config["BuildVersionMajor"].c_str()); + QString minor = QString::fromAscii(config["BuildVersionMinor"].c_str()); + QString build = QString::fromAscii(config["BuildRevision"].c_str()); + str << "Version: " << major << "." << minor << "." << build << endl; + it = config.find("BuildRevisionBranch"); + if (it != config.end()) + str << "Branch: " << it->second.c_str() << endl; + it = config.find("BuildRevisionHash"); + if (it != config.end()) + str << "Hash: " << it->second.c_str() << endl; + + QClipboard* cb = QApplication::clipboard(); + cb->setText(data); } #include "moc_Splashscreen.cpp" From e31d6e0539c9a150a3cf2ebf774198e8125cddd8 Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Mon, 6 Feb 2012 17:18:57 -0200 Subject: [PATCH 05/18] Added Draft.heal() method This function recreates damaged Draft objects saved with earlier versions of FreeCAD --- src/Mod/Draft/Draft.py | 122 +++++++++++++++++++++++++++++++---------- 1 file changed, 92 insertions(+), 30 deletions(-) diff --git a/src/Mod/Draft/Draft.py b/src/Mod/Draft/Draft.py index 8e1621663..ae198a4f4 100644 --- a/src/Mod/Draft/Draft.py +++ b/src/Mod/Draft/Draft.py @@ -256,18 +256,11 @@ def formatObject(target,origin=None): if "ShapeColor" in obrep.PropertiesList: obrep.ShapeColor = fcol else: matchrep = origin.ViewObject - if ("LineWidth" in obrep.PropertiesList) and \ - ("LineWidth" in matchrep.PropertiesList): - obrep.LineWidth = matchrep.LineWidth - if ("PointColor" in obrep.PropertiesList) and \ - ("PointColor" in matchrep.PropertiesList): - obrep.PointColor = matchrep.PointColor - if ("LineColor" in obrep.PropertiesList) and \ - ("LineColor" in matchrep.PropertiesList): - obrep.LineColor = matchrep.LineColor - if ("ShapeColor" in obrep.PropertiesList) and \ - ("ShapeColor" in matchrep.PropertiesList): - obrep.ShapeColor = matchrep.ShapeColor + for p in matchrep.PropertiesList: + if not p in ["DisplayMode","BoundingBox","Proxy","RootNode"]: + if p in obrep.PropertiesList: + val = getattr(matchrep,p) + setattr(obrep,p,val) if matchrep.DisplayMode in obrep.listDisplayModes(): obrep.DisplayMode = matchrep.DisplayMode @@ -516,48 +509,52 @@ def makeText(stringslist,point=Vector(0,0,0),screen=False): select(obj) return obj -def makeCopy(obj): +def makeCopy(obj,force=None,reparent=False): '''makeCopy(object): returns an exact copy of an object''' - if getType(obj) == "Rectangle": + if (getType(obj) == "Rectangle") or (force == "Rectangle"): newobj = FreeCAD.ActiveDocument.addObject(obj.Type,getRealName(obj.Name)) _Rectangle(newobj) _ViewProviderRectangle(newobj.ViewObject) - elif getType(obj) == "Wire": + elif (getType(obj) == "Dimension") or (force == "Dimension"): + newobj = FreeCAD.ActiveDocument.addObject(obj.Type,getRealName(obj.Name)) + _Dimension(newobj) + _ViewProviderDimension(newobj.ViewObject) + elif (getType(obj) == "Wire") or (force == "Wire"): newobj = FreeCAD.ActiveDocument.addObject(obj.Type,getRealName(obj.Name)) _Wire(newobj) _ViewProviderWire(newobj.ViewObject) - elif getType(obj) == "Circle": + elif (getType(obj) == "Circle") or (force == "Circle"): newobj = FreeCAD.ActiveDocument.addObject(obj.Type,getRealName(obj.Name)) _Circle(newobj) - _ViewProviderCircle(newobj.ViewObject) - elif getType(obj) == "Polygon": + _ViewProviderDraft(newobj.ViewObject) + elif (getType(obj) == "Polygon") or (force == "Polygon"): newobj = FreeCAD.ActiveDocument.addObject(obj.Type,getRealName(obj.Name)) _Polygon(newobj) _ViewProviderPolygon(newobj.ViewObject) - elif getType(obj) == "BSpline": + elif (getType(obj) == "BSpline") or (force == "BSpline"): newobj = FreeCAD.ActiveDocument.addObject(obj.Type,getRealName(obj.Name)) _BSpline(newobj) _ViewProviderBSpline(newobj.ViewObject) - elif getType(obj) == "Block": + elif (getType(obj) == "Block") or (force == "BSpline"): newobj = FreeCAD.ActiveDocument.addObject(obj.Type,getRealName(obj.Name)) _Block(newobj) _ViewProviderDraftPart(newobj.ViewObject) - elif getType(obj) == "Structure": + elif (getType(obj) == "Structure") or (force == "Structure"): import ArchStructure newobj = FreeCAD.ActiveDocument.addObject(obj.Type,getRealName(obj.Name)) ArchStructure._Structure(newobj) ArchStructure._ViewProviderStructure(newobj.ViewObject) - elif getType(obj) == "Wall": + elif (getType(obj) == "Wall") or (force == "Wall"): import ArchWall newobj = FreeCAD.ActiveDocument.addObject(obj.Type,getRealName(obj.Name)) ArchWall._Wall(newobj) ArchWall._ViewProviderWall(newobj.ViewObject) - elif getType(obj) == "Window": + elif (getType(obj) == "Window") or (force == "Window"): import ArchWindow newobj = FreeCAD.ActiveDocument.addObject(obj.Type,getRealName(obj.Name)) ArchWindow._Window(newobj) Archwindow._ViewProviderWindow(newobj.ViewObject) - elif getType(obj) == "Cell": + elif (getType(obj) == "Cell") or (force == "Cell"): import ArchCell newobj = FreeCAD.ActiveDocument.addObject(obj.Type,getRealName(obj.Name)) ArchCell._Cell(newobj) @@ -569,8 +566,19 @@ def makeCopy(obj): print "Error: Object type cannot be copied" return None for p in obj.PropertiesList: - if p in newobj.PropertiesList: - setattr(newobj,p,obj.getPropertyByName(p)) + if not p in ["Proxy"]: + if p in newobj.PropertiesList: + setattr(newobj,p,obj.getPropertyByName(p)) + if reparent: + parents = obj.InList + if parents: + for par in parents: + if par.Type == "App::DocumentObjectGroup": + par.addObject(newobj) + else: + for prop in par.PropertiesList: + if getattr(par,prop) == obj: + setattr(par,prop,newobj) formatObject(newobj,obj) return newobj @@ -685,7 +693,7 @@ def move(objectslist,vector,copy=False): if copy: newobj = FreeCAD.ActiveDocument.addObject("App::FeaturePython",getRealName(obj.Name)) _Dimension(newobj) - _DimensionViewProvider(newobj.ViewObject) + _ViewProviderDimension(newobj.ViewObject) else: newobj = obj newobj.Start = obj.Start.add(vector) @@ -1401,6 +1409,57 @@ def clone(obj,delta=None): if delta: cl.Placement.move(delta) return cl + +def heal(objlist=None,delete=True,reparent=True): + '''heal([objlist],[delete],[reparent]) - recreates Draft objects that are damaged, + for example if created from an earlier version. If delete is True, + the damaged objects are deleted (default). If ran without arguments, all the objects + in the document will be healed if they are damaged. If reparent is True (default), + new objects go at the very same place in the tree than their original.''' + + if not objlist: + objlist = FreeCAD.ActiveDocument.Objects + print "Healing whole document..." + + if not isinstance(objlist,list): + objlist = [objlist] + + dellist = [] + got = False + + for obj in objlist: + dtype = getType(obj) + ftype = obj.Type + if ftype in ["Part::FeaturePython","App::FeaturePython"]: + if obj.ViewObject.Proxy == 1 and dtype in ["Unknown","Part"]: + got = True + dellist.append(obj.Name) + props = obj.PropertiesList + if ("Dimline" in props) and ("Start" in props): + print "Healing " + obj.Name + " of type Dimension" + nobj = makeCopy(obj,force="Dimension",reparent=reparent) + elif ("Height" in props) and ("Length" in props): + print "Healing " + obj.Name + " of type Rectangle" + nobj = makeCopy(obj,force="Rectangle",reparent=reparent) + elif ("Points" in props) and ("Closed" in props): + print "Healing " + obj.Name + " of type Wire" + nobj = makeCopy(obj,force="Wire",reparent=reparent) + elif ("Radius" in props) and ("FirstAngle" in props): + print "Healing " + obj.Name + " of type Circle" + nobj = makeCopy(obj,force="Circle",reparent=reparent) + else: + dellist.pop() + print "Object " + obj.Name + " is not healable" + + if not got: + print "No object seems to need healing" + else: + print "Healed ",len(dellist)," objects" + + if dellist and delete: + for n in dellist: + FreeCAD.ActiveDocument.removeObject(n) + #--------------------------------------------------------------------------- # Python Features definitions @@ -1539,10 +1598,13 @@ class _ViewProviderDimension: if hasattr(obj.ViewObject,"DisplayMode"): if obj.ViewObject.DisplayMode == "3D": offset = fcvec.neg(offset) - if obj.ViewObject.TextPosition == Vector(0,0,0): - tbase = midpoint.add(offset) + if hasattr(obj.ViewObject,"TextPosition"): + if obj.ViewObject.TextPosition == Vector(0,0,0): + tbase = midpoint.add(offset) + else: + tbase = obj.ViewObject.TextPosition else: - tbase = obj.ViewObject.TextPosition + tbase = midpoint.add(offset) rot = FreeCAD.Placement(fcvec.getPlaneRotation(u,v,norm)).Rotation.Q return p1,p2,p3,p4,tbase,norm,rot From 21d3c0c81be29f36b6a623fe1f0ca198a0c615de Mon Sep 17 00:00:00 2001 From: wmayer Date: Tue, 7 Feb 2012 12:18:10 +0100 Subject: [PATCH 06/18] Print pythons exceptions in macros to output window --- src/Gui/Macro.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Gui/Macro.cpp b/src/Gui/Macro.cpp index f1b505fc2..a7285008e 100644 --- a/src/Gui/Macro.cpp +++ b/src/Gui/Macro.cpp @@ -227,6 +227,10 @@ void MacroManager::run(MacroType eType,const char *sName) PyErr_Clear(); Base::Interpreter().systemExit(); } + catch (const Base::PyException& e) { + Base::Console().Error("%s%s: %s\n", + e.getStackTrace().c_str(), e.getErrorType().c_str(), e.what()); + } catch (const Base::Exception& e) { qWarning("%s",e.what()); } From a592f55473226f5bf91538359516623a0cdfea77 Mon Sep 17 00:00:00 2001 From: wmayer Date: Tue, 7 Feb 2012 14:20:22 +0100 Subject: [PATCH 07/18] 0000589: Some files are not properly closed --- src/Base/FileInfo.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/Base/FileInfo.cpp b/src/Base/FileInfo.cpp index 63506a2af..8464e24b2 100644 --- a/src/Base/FileInfo.cpp +++ b/src/Base/FileInfo.cpp @@ -176,8 +176,11 @@ std::string FileInfo::getTempFileName(const char* FileName, const char* Path) else std::strcat(buf, "/fileXXXXXX"); - /*int id =*/ (void) mkstemp(buf); - //FILE* file = fdopen(id, "w"); + int id = (void) mkstemp(buf); + if (id > -1) { + FILE* file = fdopen(id, "w"); + fclose(file); + } return std::string(buf); #endif } From 60472e057fb0d36f639db9f46223bcd1959a8319 Mon Sep 17 00:00:00 2001 From: wmayer Date: Tue, 7 Feb 2012 16:49:00 +0100 Subject: [PATCH 08/18] Make dist target also working on Windows, add distdfsg target --- .gitattributes | 1 + CMakeLists.txt | 5 ++++ src/Tools/makedist.py | 61 +++++++++++++++++++++++++++++++++---------- 3 files changed, 53 insertions(+), 14 deletions(-) diff --git a/.gitattributes b/.gitattributes index ec9af644e..99557679b 100644 --- a/.gitattributes +++ b/.gitattributes @@ -11,5 +11,6 @@ mkinstalldirs export-ignore package export-ignore fc.sh export-ignore UpdateResources.bat export-ignore +BuildVersion.bat export-ignore *.sln export-ignore WindowsInstaller export-ignore diff --git a/CMakeLists.txt b/CMakeLists.txt index 31c52b74e..e4ade5685 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -472,4 +472,9 @@ endif(FREECAD_MAINTAINERS_BUILD AND NOT WIN32) --srcdir=${CMAKE_SOURCE_DIR} --bindir=${CMAKE_BINARY_DIR} WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} ) + add_custom_target(distdfsg-git + COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/src/Tools/makedist.py + --srcdir=${CMAKE_SOURCE_DIR} --bindir=${CMAKE_BINARY_DIR} --dfsg + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} + ) diff --git a/src/Tools/makedist.py b/src/Tools/makedist.py index d5590874c..62c4dcbdb 100644 --- a/src/Tools/makedist.py +++ b/src/Tools/makedist.py @@ -5,13 +5,15 @@ # Python script to make source tarballs. # -import sys, os, getopt, tarfile, gzip, time, StringIO +import sys, os, getopt, tarfile, gzip, time, StringIO, platform def main(): srcdir="." bindir="." + dfsg=False + wta="" try: - opts, args = getopt.getopt(sys.argv[1:], "sb:", ["srcdir=","bindir="]) + opts, args = getopt.getopt(sys.argv[1:], "sb:", ["srcdir=","bindir=","dfsg"]) except getopt.GetoptError: pass @@ -20,6 +22,16 @@ def main(): srcdir = a if o in ("-b", "--bindir"): bindir = a + if o in ("--dfsg"): + dfsg = True + wta = "--worktree-attributes" + + if dfsg: + gitattr = open("src/.gitattributes","w") + gitattr.write("zipios++ export-ignore\n") + gitattr.write("Pivy-0.5 export-ignore\n") + gitattr.write("Pivy export-ignore\n") + gitattr.close() # revision number info=os.popen("git rev-list HEAD").read() @@ -29,7 +41,10 @@ def main(): version = "0.13.%s" % (revision) DIRNAME = "%(p)s-%(v)s" % {'p': PACKAGE_NAME, 'v': version} - TARNAME = DIRNAME + '.tar.gz' + TARNAME = DIRNAME + '.tar' + TGZNAME = DIRNAME + '.tar.gz' + if dfsg: + TGZNAME = DIRNAME + '-dfsg.tar.gz' verfile = open("%s/src/Build/Version.h" % (bindir), 'r') verstream = StringIO.StringIO(verfile.read()) @@ -39,19 +54,37 @@ def main(): verinfo.size = len(verstream.getvalue()) verinfo.mtime = time.time() - print "git archive --worktree-attributes --prefix=%s/ HEAD" % (DIRNAME) - tardata = os.popen("git archive --worktree-attributes --prefix=%s/ HEAD" - % (DIRNAME)).read() - tarstream = StringIO.StringIO(tardata) + print "git archive %s --prefix=%s/ HEAD" % (wta, DIRNAME) + if platform.system() == 'Windows': + os.popen("git archive %s --prefix=%s/ --output=%s HEAD" + % (wta, DIRNAME, TARNAME)).read() - tar = tarfile.TarFile(mode="a", fileobj=tarstream) - tar.addfile(verinfo, verstream) - tar.close() + tar = tarfile.TarFile(mode="a", name=TARNAME) + tar.addfile(verinfo, verstream) + tar.close() - out = gzip.open(TARNAME, "wb") - out.write(tarstream.getvalue()) - out.close() - print "Created " + TARNAME + out = gzip.open(TGZNAME, "wb") + tardata = open(TARNAME, 'rb') + out.write(tardata.read()) + out.close() + tardata.close() + os.remove(TARNAME) + else: + tardata = os.popen("git archive %s --prefix=%s/ HEAD" + % (wta, DIRNAME)).read() + tarstream = StringIO.StringIO(tardata) + + tar = tarfile.TarFile(mode="a", fileobj=tarstream) + tar.addfile(verinfo, verstream) + tar.close() + + out = gzip.open(TGZNAME, "wb") + out.write(tarstream.getvalue()) + out.close() + + if dfsg: + os.remove("src/.gitattributes") + print "Created " + TGZNAME if __name__ == "__main__": main() From 77d103156be688b23d43c94f3ec0a560eba3cf22 Mon Sep 17 00:00:00 2001 From: wmayer Date: Tue, 7 Feb 2012 20:57:41 +0100 Subject: [PATCH 09/18] fix build errror with gcc --- src/Base/FileInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Base/FileInfo.cpp b/src/Base/FileInfo.cpp index 8464e24b2..80c6ea43b 100644 --- a/src/Base/FileInfo.cpp +++ b/src/Base/FileInfo.cpp @@ -176,7 +176,7 @@ std::string FileInfo::getTempFileName(const char* FileName, const char* Path) else std::strcat(buf, "/fileXXXXXX"); - int id = (void) mkstemp(buf); + int id = mkstemp(buf); if (id > -1) { FILE* file = fdopen(id, "w"); fclose(file); From fe7c57b8c53d0a6aaf49eefc912c8920480caa94 Mon Sep 17 00:00:00 2001 From: wmayer Date: Tue, 7 Feb 2012 22:24:01 +0100 Subject: [PATCH 10/18] Make dfsg tarball compiling with cmake --- src/3rdParty/CMakeLists.txt | 8 ++++++-- src/Base/CMakeLists.txt | 17 ++++++++++++----- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/src/3rdParty/CMakeLists.txt b/src/3rdParty/CMakeLists.txt index e6e825fee..e6de70dba 100644 --- a/src/3rdParty/CMakeLists.txt +++ b/src/3rdParty/CMakeLists.txt @@ -22,9 +22,13 @@ elseif(FREECAD_BUILD_GUI AND FREECAD_LIBPACK_CHECKFILE7X) elseif(FREECAD_BUILD_GUI) find_path(COIN_VERSION3 Inventor/scxml/ScXML.h ${COIN3D_INCLUDE_DIR}) if (COIN_VERSION3) - add_subdirectory(Pivy-0.5) + if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/Pivy-0.5) + add_subdirectory(Pivy-0.5) + endif (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/Pivy-0.5) else (COIN_VERSION3) - add_subdirectory(Pivy) + if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/Pivy) + add_subdirectory(Pivy) + endif (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/Pivy) endif(COIN_VERSION3) endif(FREECAD_BUILD_GUI AND FREECAD_LIBPACK_CHECKFILE6X) diff --git a/src/Base/CMakeLists.txt b/src/Base/CMakeLists.txt index 10cd30b50..32612ca95 100644 --- a/src/Base/CMakeLists.txt +++ b/src/Base/CMakeLists.txt @@ -68,6 +68,7 @@ if(SWIG_FOUND) add_definitions(-DHAVE_SWIG=1) endif(SWIG_FOUND) +if (EXISTS ${CMAKE_SOURCE_DIR}/src/zipios++) SET(zipios_SRCS ../zipios++/backbuffer.h ../zipios++/basicentry.cpp @@ -121,6 +122,12 @@ SET(zipios_SRCS ../zipios++/zipoutputstream.h ) SOURCE_GROUP("zipios" FILES ${zipios_SRCS}) +else (EXISTS ${CMAKE_SOURCE_DIR}/src/zipios++) + set(FreeCADBase_LIBS + ${FreeCADBase_LIBS} + -lzipios + ) +endif (EXISTS ${CMAKE_SOURCE_DIR}/src/zipios++) SET(pycxx_SRCS ../CXX/Config.hxx @@ -148,11 +155,11 @@ SET(FreeCADBase_XML_SRCS VectorPy.xml ) SOURCE_GROUP("XML" FILES ${FreeCADBase_XML_SRCS}) - -set(FreeCADBase_MOC_HDRS - FutureWatcherProgress.h -) -fc_wrap_cpp(FreeCADBase_MOC_SRCS ${FreeCADBase_MOC_HDRS}) + +set(FreeCADBase_MOC_HDRS + FutureWatcherProgress.h +) +fc_wrap_cpp(FreeCADBase_MOC_SRCS ${FreeCADBase_MOC_HDRS}) SET(FreeCADBase_UNITAPI_SRCS UnitsApi.cpp From c79e5d50e5e931c102e0d6c16fc766e7f0336760 Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Tue, 7 Feb 2012 20:58:44 -0200 Subject: [PATCH 11/18] Added RFE #588 - Curved corners to Draft objects Draft Rectangle, Wire and Polygon now have a "Fillet Radius" property, which can be used to round their corners. Code donated by Jacques-Antoine Gaudin --- src/Mod/Draft/Draft.py | 31 +++- src/Mod/Draft/draftlibs/fcgeo.py | 274 +++++++++++++++++++++++++++++++ 2 files changed, 302 insertions(+), 3 deletions(-) diff --git a/src/Mod/Draft/Draft.py b/src/Mod/Draft/Draft.py index ae198a4f4..3e733d387 100644 --- a/src/Mod/Draft/Draft.py +++ b/src/Mod/Draft/Draft.py @@ -2028,6 +2028,7 @@ class _Rectangle: def __init__(self, obj): obj.addProperty("App::PropertyDistance","Length","Base","Length of the rectangle") obj.addProperty("App::PropertyDistance","Height","Base","Height of the rectange") + obj.addProperty("App::PropertyDistance","FilletRadius","Base","Radius to use to fillet the corners") obj.Proxy = self obj.Length=1 obj.Height=1 @@ -2042,12 +2043,18 @@ class _Rectangle: def createGeometry(self,fp): import Part + from draftlibs import fcgeo plm = fp.Placement p1 = Vector(0,0,0) p2 = Vector(p1.x+fp.Length,p1.y,p1.z) p3 = Vector(p1.x+fp.Length,p1.y+fp.Height,p1.z) p4 = Vector(p1.x,p1.y+fp.Height,p1.z) shape = Part.makePolygon([p1,p2,p3,p4,p1]) + if "FilletRadius" in fp.PropertiesList: + if fp.FilletRadius != 0: + w = fcgeo.filletWire(shape,fp.FilletRadius) + if w: + shape = w shape = Part.Face(shape) fp.Shape = shape fp.Placement = plm @@ -2079,9 +2086,9 @@ class _Circle: "The Circle object" def __init__(self, obj): - obj.addProperty("App::PropertyAngle","FirstAngle","Arc", + obj.addProperty("App::PropertyAngle","FirstAngle","Base", "Start angle of the arc") - obj.addProperty("App::PropertyAngle","LastAngle","Arc", + obj.addProperty("App::PropertyAngle","LastAngle","Base", "End angle of the arc (for a full circle, give it same value as First Angle)") obj.addProperty("App::PropertyDistance","Radius","Base", "Radius of the circle") @@ -2122,6 +2129,7 @@ class _Wire: "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" @@ -2130,7 +2138,7 @@ class _Wire: self.createGeometry(fp) def onChanged(self, fp, prop): - if prop in ["Points","Closed","Base","Tool"]: + if prop in ["Points","Closed","Base","Tool","FilletRadius"]: self.createGeometry(fp) if prop == "Points": if fp.Start != fp.Points[0]: @@ -2183,6 +2191,11 @@ class _Wire: fp.Points.pop() if fp.Closed and (len(fp.Points) > 2): shape = Part.makePolygon(fp.Points+[fp.Points[0]]) + if "FilletRadius" in fp.PropertiesList: + if fp.FilletRadius != 0: + w = fcgeo.filletWire(shape,fp.FilletRadius) + if w: + shape = w shape = Part.Face(shape) else: edges = [] @@ -2192,6 +2205,11 @@ class _Wire: edges.append(Part.Line(lp,p).toShape()) lp = p shape = Part.Wire(edges) + if "FilletRadius" in fp.PropertiesList: + if fp.FilletRadius != 0: + w = fcgeo.filletWire(shape,fp.FilletRadius) + if w: + shape = w fp.Shape = shape fp.Placement = plm @@ -2240,6 +2258,7 @@ class _Polygon: obj.addProperty("App::PropertyInteger","FacesNumber","Base","Number of faces") obj.addProperty("App::PropertyDistance","Radius","Base","Radius of the control circle") obj.addProperty("App::PropertyEnumeration","DrawMode","Base","How the polygon must be drawn from the control circle") + obj.addProperty("App::PropertyDistance","FilletRadius","Base","Radius to use to fillet the corners") obj.DrawMode = ['inscribed','circumscribed'] obj.FacesNumber = 3 obj.Radius = 1 @@ -2255,6 +2274,7 @@ class _Polygon: def createGeometry(self,fp): import Part + from draftlibs import fcgeo plm = fp.Placement angle = (math.pi*2)/fp.FacesNumber if fp.DrawMode == 'inscribed': @@ -2267,6 +2287,11 @@ class _Polygon: pts.append(Vector(delta*math.cos(ang),delta*math.sin(ang),0)) pts.append(pts[0]) shape = Part.makePolygon(pts) + if "FilletRadius" in fp.PropertiesList: + if fp.FilletRadius != 0: + w = fcgeo.filletWire(shape,fp.FilletRadius) + if w: + shape = w shape = Part.Face(shape) fp.Shape = shape fp.Placement = plm diff --git a/src/Mod/Draft/draftlibs/fcgeo.py b/src/Mod/Draft/draftlibs/fcgeo.py index a2844af07..06bc691f2 100755 --- a/src/Mod/Draft/draftlibs/fcgeo.py +++ b/src/Mod/Draft/draftlibs/fcgeo.py @@ -1195,6 +1195,280 @@ def arcFromSpline(edge): return Part.makeCircle(radius,center) except: print "couldn't make a circle out of this edge" + +# Fillet code graciously donated by Jacques-Antoine Gaudin + +def fillet(lEdges,r): + ''' Take a list of two Edges & a float as argument, + Returns a list of sorted edges describing a round corner''' + + def getCurveType(edge,existingCurveType = None): + '''Builds or completes a dictionnary containing edges with keys "Arc" and "Line"''' + if not existingCurveType : + existingCurveType = { 'Line' : [], 'Arc' : [] } + if issubclass(type(edge.Curve),Part.Line) : + existingCurveType['Line'] += [edge] + elif issubclass(type(edge.Curve),Part.Circle) : + existingCurveType['Arc'] += [edge] + else : + raise Exception("Edge's curve must be either Line or Arc") + return existingCurveType + + rndEdges = lEdges[0:2] + rndEdges = sortEdges(rndEdges) + + if len(rndEdges) < 2 : + return rndEdges + + if r <= 0 : + print "fcgeo.fillet : Error : radius is negative." + return rndEdges + + curveType = getCurveType(rndEdges[0]) + curveType = getCurveType(rndEdges[1],curveType) + + lVertexes = rndEdges[0].Vertexes + [rndEdges[1].Vertexes[-1]] + + if len(curveType['Line']) == 2: + + # Deals with 2-line-edges lists -------------------------------------- + + U1 = lVertexes[0].Point.sub(lVertexes[1].Point) ; U1.normalize() + U2 = lVertexes[2].Point.sub(lVertexes[1].Point) ; U2.normalize() + alpha = U1.getAngle(U2) + + if round(alpha,precision) == 0 or round(alpha - math.pi,precision) == 0: # Edges have same direction + print "fcgeo.fillet : Warning : edges have same direction. Did nothing" + return rndEdges + + dToCenter = r / math.sin(alpha/2.) + dToTangent = (dToCenter**2-r**2)**(0.5) + dirVect = Vector(U1) ; dirVect.scale(dToTangent,dToTangent,dToTangent) + arcPt1 = lVertexes[1].Point.add(dirVect) + + dirVect = U2.add(U1) ; dirVect.normalize() + dirVect.scale(dToCenter-r,dToCenter-r,dToCenter-r) + arcPt2 = lVertexes[1].Point.add(dirVect) + + dirVect = Vector(U2) ; dirVect.scale(dToTangent,dToTangent,dToTangent) + arcPt3 = lVertexes[1].Point.add(dirVect) + + if (dToTangent>lEdges[0].Length) or (dToTangent>lEdges[1].Length) : + print "fcgeo.fillet : Error : radius value ", r," is too high" + return rndEdges + + rndEdges[1] = Part.Edge(Part.Arc(arcPt1,arcPt2,arcPt3)) + rndEdges[0] = Part.Edge(Part.Line(lVertexes[0].Point,arcPt1)) + rndEdges += [Part.Edge(Part.Line(arcPt3,lVertexes[2].Point))] + + return rndEdges + + elif len(curveType['Arc']) == 1 : + + # Deals with lists containing an arc and a line ---------------------------------- + + if lEdges[0] in curveType['Arc'] : + lineEnd = lVertexes[2] ; arcEnd = lVertexes[0] ; arcFirst = True + else : + lineEnd = lVertexes[0] ; arcEnd = lVertexes[2] ; arcFirst = False + arcCenter = curveType['Arc'][0].Curve.Center + arcRadius = curveType['Arc'][0].Curve.Radius + arcAxis = curveType['Arc'][0].Curve.Axis + arcLength = curveType['Arc'][0].Length + + U1 = lineEnd.Point.sub(lVertexes[1].Point) ; U1.normalize() + toCenter = arcCenter.sub(lVertexes[1].Point) + if arcFirst : # make sure the tangent points towards the arc + T = arcAxis.cross(toCenter) + else : + T = toCenter.cross(arcAxis) + + projCenter = toCenter.dot(U1) + if round(abs(projCenter),precision) > 0 : + normToLine = U1.cross(T).cross(U1) + else : + normToLine = Vector(toCenter) + normToLine.normalize() + + dCenterToLine = toCenter.dot(normToLine) - r + + if round(projCenter,precision) > 0 : + newRadius = arcRadius - r + elif round(projCenter,precision) < 0 or (round(projCenter,precision) == 0 and U1.dot(T) > 0): + newRadius = arcRadius + r + else : + print "fcgeo.fillet : Warning : edges are already tangent. Did nothing" + return rndEdges + + toNewCent = newRadius**2-dCenterToLine**2 + if toNewCent > 0 : + toNewCent = abs(abs(projCenter) - toNewCent**(0.5)) + else : + print "fcgeo.fillet : Error : radius value ", r," is too high" + return rndEdges + + U1.scale(toNewCent,toNewCent,toNewCent) + normToLine.scale(r,r,r) + newCent = lVertexes[1].Point.add(U1).add(normToLine) + + arcPt1= lVertexes[1].Point.add(U1) + arcPt2= lVertexes[1].Point.sub(newCent); arcPt2.normalize() + arcPt2.scale(r,r,r) ; arcPt2 = arcPt2.add(newCent) + if newRadius == arcRadius - r : + arcPt3= newCent.sub(arcCenter) + else : + arcPt3= arcCenter.sub(newCent) + arcPt3.normalize() + arcPt3.scale(r,r,r) ; arcPt3 = arcPt3.add(newCent) + arcPt = [arcPt1,arcPt2,arcPt3] + + + # Warning : In the following I used a trick for calling the right element + # in arcPt or V : arcFirst is a boolean so - not arcFirst is -0 or -1 + # list[-1] is the last element of a list and list[0] the first + # this way I don't have to proceed tests to know the position of the arc + + myTrick = not arcFirst + + V = [arcPt3] + V += [arcEnd.Point] + + toCenter.scale(-1,-1,-1) + + delLength = arcRadius * V[0].sub(arcCenter).getAngle(toCenter) + if delLength > arcLength or toNewCent > curveType['Line'][0].Length: + print "fcgeo.fillet : Error : radius value ", r," is too high" + return rndEdges + + arcAsEdge = arcFrom2Pts(V[-arcFirst],V[-myTrick],arcCenter,arcAxis) + + V = [lineEnd.Point,arcPt1] + lineAsEdge = Part.Edge(Part.Line(V[-arcFirst],V[myTrick])) + + rndEdges[not arcFirst] = arcAsEdge + rndEdges[arcFirst] = lineAsEdge + rndEdges[1:1] = [Part.Edge(Part.Arc(arcPt[- arcFirst],arcPt[1],arcPt[- myTrick]))] + + return rndEdges + + elif len(curveType['Arc']) == 2 : + + # Deals with lists of 2 arc-edges -------------------------------------------- + + arcCenter, arcRadius, arcAxis, arcLength, toCenter, T, newRadius = [], [], [], [], [], [], [] + for i in range(2) : + arcCenter += [curveType['Arc'][i].Curve.Center] + arcRadius += [curveType['Arc'][i].Curve.Radius] + arcAxis += [curveType['Arc'][i].Curve.Axis] + arcLength += [curveType['Arc'][i].Length] + toCenter += [arcCenter[i].sub(lVertexes[1].Point)] + T += [arcAxis[0].cross(toCenter[0])] + T += [toCenter[1].cross(arcAxis[1])] + CentToCent = toCenter[1].sub(toCenter[0]) + dCentToCent = CentToCent.Length + + sameDirection = (arcAxis[0].dot(arcAxis[1]) > 0) + TcrossT = T[0].cross(T[1]) + if sameDirection : + if round(TcrossT.dot(arcAxis[0]),precision) > 0 : + newRadius += [arcRadius[0]+r] + newRadius += [arcRadius[1]+r] + elif round(TcrossT.dot(arcAxis[0]),precision) < 0 : + newRadius += [arcRadius[0]-r] + newRadius += [arcRadius[1]-r] + elif T[0].dot(T[1]) > 0 : + newRadius += [arcRadius[0]+r] + newRadius += [arcRadius[1]+r] + else : + print "fcgeo.fillet : Warning : edges are already tangent. Did nothing" + return rndEdges + elif not sameDirection : + if round(TcrossT.dot(arcAxis[0]),precision) > 0 : + newRadius += [arcRadius[0]+r] + newRadius += [arcRadius[1]-r] + elif round(TcrossT.dot(arcAxis[0]),precision) < 0 : + newRadius += [arcRadius[0]-r] + newRadius += [arcRadius[1]+r] + elif T[0].dot(T[1]) > 0 : + if arcRadius[0] > arcRadius[1] : + newRadius += [arcRadius[0]-r] + newRadius += [arcRadius[1]+r] + elif arcRadius[1] > arcRadius[0] : + newRadius += [arcRadius[0]+r] + newRadius += [arcRadius[1]-r] + else : + print "fcgeo.fillet : Warning : arcs are coincident. Did nothing" + return rndEdges + else : + print "fcgeo.fillet : Warning : edges are already tangent. Did nothing" + return rndEdges + + if newRadius[0]+newRadius[1] < dCentToCent or \ + newRadius[0]-newRadius[1] > dCentToCent or \ + newRadius[1]-newRadius[0] > dCentToCent : + print "fcgeo.fillet : Error : radius value ", r," is too high" + return rndEdges + + x = (dCentToCent**2+newRadius[0]**2-newRadius[1]**2)/(2*dCentToCent) + y = (newRadius[0]**2-x**2)**(0.5) + + CentToCent.normalize() ; toCenter[0].normalize() ; toCenter[1].normalize() + if abs(toCenter[0].dot(toCenter[1])) != 1 : + normVect = CentToCent.cross(CentToCent.cross(toCenter[0])) + else : + normVect = T[0] + normVect.normalize() + CentToCent.scale(x,x,x) ; normVect.scale(y,y,y) + newCent = arcCenter[0].add(CentToCent.add(normVect)) + CentToNewCent = [newCent.sub(arcCenter[0]),newCent.sub(arcCenter[1])] + for i in range(2) : + CentToNewCent[i].normalize() + if newRadius[i] == arcRadius[i]+r : + CentToNewCent[i].scale(-r,-r,-r) + else : + CentToNewCent[i].scale(r,r,r) + toThirdPt = lVertexes[1].Point.sub(newCent) ; toThirdPt.normalize() + toThirdPt.scale(r,r,r) + arcPt1 = newCent.add(CentToNewCent[0]) + arcPt2 = newCent.add(toThirdPt) + arcPt3 = newCent.add(CentToNewCent[1]) + arcPt = [arcPt1,arcPt2,arcPt3] + + arcAsEdge = [] + for i in range(2) : + toCenter[i].scale(-1,-1,-1) + delLength = arcRadius[i] * arcPt[-i].sub(arcCenter[i]).getAngle(toCenter[i]) + if delLength > arcLength[i] : + print "fcgeo.fillet : Error : radius value ", r," is too high" + return rndEdges + V = [arcPt[-i],lVertexes[-i].Point] + arcAsEdge += [arcFrom2Pts(V[i-1],V[-i],arcCenter[i],arcAxis[i])] + + rndEdges[0] = arcAsEdge[0] + rndEdges[1] = arcAsEdge[1] + rndEdges[1:1] = [Part.Edge(Part.Arc(arcPt[0],arcPt[1],arcPt[2]))] + + return rndEdges + +def filletWire(aWire,r,makeClosed=True): + ''' Fillets each angle of a wire with r as radius value''' + + edges = aWire.Edges + edges = sortEdges(edges) + filEdges = [edges[0]] + for i in range(len(edges)-1): + result = fillet([filEdges[-1],edges[i+1]],r) + if len(result)>2: + filEdges[-1:] = result[0:3] + else : + filEdges[-1:] = result[0:2] + if isReallyClosed(aWire) and makeClosed : + result = fillet([filEdges[-1],filEdges[0]],r) + if len(result)>2: + filEdges[-1:] = result[0:2] + filEdges[0] = result[2] + return Part.Wire(filEdges) + # circle functions ********************************************************* From 33e946b57c74eebf337b13cec7ee6ef198e513aa Mon Sep 17 00:00:00 2001 From: wmayer Date: Wed, 8 Feb 2012 13:50:47 +0100 Subject: [PATCH 12/18] Add distcheck target for GCC and MinGW --- CMakeLists.txt | 12 ++++++++++++ src/Tools/makedist.py | 18 ++++++++++++++++-- 2 files changed, 28 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e4ade5685..473349a60 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -477,4 +477,16 @@ endif(FREECAD_MAINTAINERS_BUILD AND NOT WIN32) --srcdir=${CMAKE_SOURCE_DIR} --bindir=${CMAKE_BINARY_DIR} --dfsg WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} ) +if(CMAKE_COMPILER_IS_GNUCXX OR MINGW) + add_custom_target(distcheck-git + COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/src/Tools/makedist.py + --srcdir=${CMAKE_SOURCE_DIR} --bindir=${CMAKE_BINARY_DIR} --check + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} + ) + add_custom_target(distcheckdfsg-git + COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/src/Tools/makedist.py + --srcdir=${CMAKE_SOURCE_DIR} --bindir=${CMAKE_BINARY_DIR} --dfsg --check + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} + ) +endif(CMAKE_COMPILER_IS_GNUCXX OR MINGW) diff --git a/src/Tools/makedist.py b/src/Tools/makedist.py index 62c4dcbdb..a30550e2c 100644 --- a/src/Tools/makedist.py +++ b/src/Tools/makedist.py @@ -5,15 +5,16 @@ # Python script to make source tarballs. # -import sys, os, getopt, tarfile, gzip, time, StringIO, platform +import sys, os, getopt, tarfile, gzip, time, StringIO, platform, shutil def main(): srcdir="." bindir="." dfsg=False + check=False wta="" try: - opts, args = getopt.getopt(sys.argv[1:], "sb:", ["srcdir=","bindir=","dfsg"]) + opts, args = getopt.getopt(sys.argv[1:], "sb:", ["srcdir=","bindir=","dfsg", "check"]) except getopt.GetoptError: pass @@ -25,6 +26,8 @@ def main(): if o in ("--dfsg"): dfsg = True wta = "--worktree-attributes" + if o in ("--check"): + check = True if dfsg: gitattr = open("src/.gitattributes","w") @@ -85,6 +88,17 @@ def main(): if dfsg: os.remove("src/.gitattributes") print "Created " + TGZNAME + # Unpack and build + if check: + archive=tarfile.open(mode='r:gz',name=TGZNAME) + archive.extractall(bindir) + builddir = os.path.join(bindir, DIRNAME) + cwd = os.getcwd() + os.chdir(builddir) + os.system("cmake .") + os.system("make") + os.chdir(cwd) + shutil.rmtree(builddir) if __name__ == "__main__": main() From 5ac58143698f5924ead26b760abaef48ff757fcf Mon Sep 17 00:00:00 2001 From: Sebastian Kuzminsky Date: Thu, 9 Feb 2012 09:03:19 -0700 Subject: [PATCH 13/18] when exporting SVG, map user units to mm so the coordinates make sense This commit changes SVG export so that the user unit (what SVG calls 'px') is defined to be 1 mm. This lets us write out the native sketch coordinates in the SVG file, and the SVG will contain a drawing of the correct size (same size as what's in FreeCAD). --- src/Mod/Draft/importSVG.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Mod/Draft/importSVG.py b/src/Mod/Draft/importSVG.py index 6ecbed714..e071ebf20 100644 --- a/src/Mod/Draft/importSVG.py +++ b/src/Mod/Draft/importSVG.py @@ -961,12 +961,14 @@ def export(exportList,filename): boty = sizey+miny # writing header + # we specify the svg width and height in FreeCAD's physical units (mm), + # and specify the viewBox so that user units maps one-to-one to mm svg = pythonopen(filename,'wb') svg.write('\n') svg.write('\n') svg.write('\n') From ff157cf94df1d082f4186b6602bfe92224f05619 Mon Sep 17 00:00:00 2001 From: Sebastian Kuzminsky Date: Thu, 9 Feb 2012 20:08:23 -0700 Subject: [PATCH 14/18] export SVG as either 'Translated' or 'Raw' There are two things a user might want when exporting to SVG: 1. A pretty picture, to put on paper or on the screen and show to humans. 2. An accurate representation of their part, for feeding to CAM software. This commit adds a mechanism that lets the user select which of those two options they want. A new choice is added to the Draft Preferences. The two options are: * "Translated (for print and display)", which acts just like before. The sketch is translated so it fits neatly in the display area. of the cartesian plane. This is usually what you want if you're going to display the SVG to humans. * "Raw (for CAM)", which does not translate the sketch at all. All sketch coordinates are preserved exactly. This is useful for feeding the SVG to a CAM program (like PyCAM). The SVG export function is modified to check this new Preference setting, and write either "Translated" or "Raw" SVGs as appropriate. --- src/Mod/Draft/Draft_rc.py | 63991 ++++++++++++---- .../Draft/Resources/ui/userprefs-import.ui | 37 + src/Mod/Draft/importSVG.py | 29 +- 3 files changed, 51087 insertions(+), 12970 deletions(-) diff --git a/src/Mod/Draft/Draft_rc.py b/src/Mod/Draft/Draft_rc.py index 19a4b3739..d20b6686e 100644 --- a/src/Mod/Draft/Draft_rc.py +++ b/src/Mod/Draft/Draft_rc.py @@ -2,8 +2,8 @@ # Resource object code # -# Created: Sat Dec 17 13:34:40 2011 -# by: The Resource Compiler for PyQt (Qt v4.7.3) +# Created: Thu Feb 9 23:14:38 2012 +# by: The Resource Compiler for PyQt (Qt v4.6.2) # # WARNING! All changes made in this file will be lost! @@ -117,79 +117,345 @@ qt_resource_data = "\ \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\x15\x07\ +\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\x6f\x6e\x63\x72\x65\x74\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\x35\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x2e\x35\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\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x73\x63\ +\x61\x6c\x65\x28\x2e\x30\x31\x29\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x67\x33\x34\x30\x31\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\x6d\x20\x35\x2e\x33\ +\x35\x37\x31\x34\x32\x38\x2c\x33\x2e\x35\x32\x32\x38\x39\x34\x36\ +\x20\x61\x20\x31\x2e\x33\x33\x39\x32\x38\x35\x37\x2c\x31\x2e\x33\ +\x33\x39\x32\x38\x35\x37\x20\x30\x20\x31\x20\x31\x20\x2d\x32\x2e\ +\x36\x37\x38\x35\x37\x31\x35\x2c\x30\x20\x31\x2e\x33\x33\x39\x32\ +\x38\x35\x37\x2c\x31\x2e\x33\x33\x39\x32\x38\x35\x37\x20\x30\x20\ +\x31\x20\x31\x20\x32\x2e\x36\x37\x38\x35\x37\x31\x35\x2c\x30\x20\ +\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x61\x74\x68\x32\x38\x34\x30\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\x6d\x20\x31\x34\x2e\ +\x31\x30\x37\x31\x34\x33\x2c\x36\x2e\x38\x32\x36\x34\x36\x36\x31\ +\x20\x61\x20\x33\x2e\x32\x31\x34\x32\x38\x35\x36\x2c\x33\x2e\x32\ +\x31\x34\x32\x38\x35\x36\x20\x30\x20\x31\x20\x31\x20\x2d\x36\x2e\ +\x34\x32\x38\x35\x37\x31\x31\x2c\x30\x20\x33\x2e\x32\x31\x34\x32\ +\x38\x35\x36\x2c\x33\x2e\x32\x31\x34\x32\x38\x35\x36\x20\x30\x20\ +\x31\x20\x31\x20\x36\x2e\x34\x32\x38\x35\x37\x31\x31\x2c\x30\x20\ +\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x61\x74\x68\x32\x38\x34\x32\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\x6d\x20\x31\x34\x2e\ +\x38\x32\x31\x34\x32\x38\x2c\x33\x30\x2e\x39\x33\x33\x36\x30\x39\ +\x20\x61\x20\x30\x2e\x37\x31\x34\x32\x38\x35\x37\x33\x2c\x30\x2e\ +\x37\x31\x34\x32\x38\x35\x37\x33\x20\x30\x20\x31\x20\x31\x20\x2d\ +\x31\x2e\x34\x32\x38\x35\x37\x31\x2c\x30\x20\x30\x2e\x37\x31\x34\ +\x32\x38\x35\x37\x33\x2c\x30\x2e\x37\x31\x34\x32\x38\x35\x37\x33\ +\x20\x30\x20\x31\x20\x31\x20\x31\x2e\x34\x32\x38\x35\x37\x31\x2c\ +\x30\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x38\x34\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\x6d\x20\x32\ +\x38\x2e\x35\x37\x31\x34\x32\x38\x2c\x31\x36\x2e\x32\x30\x31\x34\ +\x36\x36\x20\x61\x20\x32\x2e\x32\x33\x32\x31\x34\x32\x39\x2c\x32\ +\x2e\x32\x33\x32\x31\x34\x32\x39\x20\x30\x20\x31\x20\x31\x20\x2d\ +\x34\x2e\x34\x36\x34\x32\x38\x36\x2c\x30\x20\x32\x2e\x32\x33\x32\ +\x31\x34\x32\x39\x2c\x32\x2e\x32\x33\x32\x31\x34\x32\x39\x20\x30\ +\x20\x31\x20\x31\x20\x34\x2e\x34\x36\x34\x32\x38\x36\x2c\x30\x20\ +\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x61\x74\x68\x32\x38\x34\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\x6d\x20\x36\x2e\x32\ +\x35\x30\x30\x30\x30\x32\x2c\x32\x30\x2e\x30\x38\x35\x33\x39\x34\ +\x20\x61\x20\x30\x2e\x34\x39\x31\x30\x37\x31\x34\x33\x2c\x30\x2e\ +\x34\x39\x31\x30\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x2d\ +\x30\x2e\x39\x38\x32\x31\x34\x32\x39\x2c\x30\x20\x30\x2e\x34\x39\ +\x31\x30\x37\x31\x34\x33\x2c\x30\x2e\x34\x39\x31\x30\x37\x31\x34\ +\x33\x20\x30\x20\x31\x20\x31\x20\x30\x2e\x39\x38\x32\x31\x34\x32\ +\x39\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x38\x34\x38\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\x6d\ +\x20\x33\x34\x2e\x37\x33\x32\x31\x34\x34\x2c\x32\x37\x2e\x35\x32\ +\x37\x37\x32\x35\x20\x61\x20\x30\x2e\x32\x36\x37\x38\x35\x37\x31\ +\x33\x2c\x30\x2e\x34\x33\x33\x34\x30\x31\x39\x37\x20\x30\x20\x31\ +\x20\x31\x20\x2d\x30\x2e\x35\x33\x35\x37\x31\x34\x2c\x30\x20\x30\ +\x2e\x32\x36\x37\x38\x35\x37\x31\x33\x2c\x30\x2e\x34\x33\x33\x34\ +\x30\x31\x39\x37\x20\x30\x20\x31\x20\x31\x20\x30\x2e\x35\x33\x35\ +\x37\x31\x34\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x38\x35\x30\ +\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\x6d\x20\x34\x30\x2e\x31\x37\x38\x35\x37\x32\x2c\x39\x2e\x33\ +\x37\x31\x31\x30\x38\x31\x20\x61\x20\x30\x2e\x31\x33\x33\x39\x32\ +\x38\x35\x37\x2c\x30\x2e\x32\x32\x33\x32\x31\x34\x32\x38\x20\x30\ +\x20\x31\x20\x31\x20\x2d\x30\x2e\x32\x36\x37\x38\x35\x37\x2c\x30\ +\x20\x30\x2e\x31\x33\x33\x39\x32\x38\x35\x37\x2c\x30\x2e\x32\x32\ +\x33\x32\x31\x34\x32\x38\x20\x30\x20\x31\x20\x31\x20\x30\x2e\x32\ +\x36\x37\x38\x35\x37\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x38\ +\x35\x32\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\x6d\x20\x34\x30\x2e\x39\x38\x32\x31\x34\x34\x2c\x33\ +\x38\x2e\x37\x34\x36\x31\x30\x39\x20\x61\x20\x30\x2e\x32\x32\x33\ +\x32\x31\x34\x32\x38\x2c\x30\x2e\x32\x32\x33\x32\x31\x34\x32\x38\ +\x20\x30\x20\x31\x20\x31\x20\x2d\x30\x2e\x34\x34\x36\x34\x32\x38\ +\x2c\x30\x20\x30\x2e\x32\x32\x33\x32\x31\x34\x32\x38\x2c\x30\x2e\ +\x32\x32\x33\x32\x31\x34\x32\x38\x20\x30\x20\x31\x20\x31\x20\x30\ +\x2e\x34\x34\x36\x34\x32\x38\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ +\x32\x38\x35\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\x6d\x20\x33\x31\x2e\x31\x36\x30\x37\x31\x35\ +\x2c\x34\x30\x2e\x35\x37\x36\x34\x36\x36\x20\x61\x20\x33\x2e\x39\ +\x32\x38\x35\x37\x31\x35\x2c\x33\x2e\x39\x32\x38\x35\x37\x31\x35\ +\x20\x30\x20\x31\x20\x31\x20\x2d\x37\x2e\x38\x35\x37\x31\x34\x33\ +\x2c\x30\x20\x33\x2e\x39\x32\x38\x35\x37\x31\x35\x2c\x33\x2e\x39\ +\x32\x38\x35\x37\x31\x35\x20\x30\x20\x31\x20\x31\x20\x37\x2e\x38\ +\x35\x37\x31\x34\x33\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x38\ +\x35\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\x6d\x20\x32\x32\x2e\x32\x33\x32\x31\x34\x33\x2c\x33\ +\x38\x2e\x32\x35\x35\x30\x33\x35\x20\x61\x20\x31\x2e\x36\x30\x37\ +\x31\x34\x32\x38\x2c\x31\x2e\x36\x30\x37\x31\x34\x32\x38\x20\x30\ +\x20\x31\x20\x31\x20\x2d\x33\x2e\x32\x31\x34\x32\x38\x36\x2c\x30\ +\x20\x31\x2e\x36\x30\x37\x31\x34\x32\x38\x2c\x31\x2e\x36\x30\x37\ +\x31\x34\x32\x38\x20\x30\x20\x31\x20\x31\x20\x33\x2e\x32\x31\x34\ +\x32\x38\x36\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x38\x35\x38\ +\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\x6d\x20\x34\x31\x2e\x39\x36\x34\x32\x38\x37\x2c\x31\x31\x2e\ +\x36\x34\x37\x38\x39\x35\x20\x61\x20\x30\x2e\x38\x39\x32\x38\x35\ +\x37\x31\x33\x2c\x30\x2e\x38\x39\x32\x38\x35\x37\x31\x33\x20\x30\ +\x20\x31\x20\x31\x20\x2d\x31\x2e\x37\x38\x35\x37\x31\x34\x2c\x30\ +\x20\x30\x2e\x38\x39\x32\x38\x35\x37\x31\x33\x2c\x30\x2e\x38\x39\ +\x32\x38\x35\x37\x31\x33\x20\x30\x20\x31\x20\x31\x20\x31\x2e\x37\ +\x38\x35\x37\x31\x34\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x38\ +\x36\x30\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\x6d\x20\x33\x36\x2e\x30\x37\x31\x34\x33\x2c\x32\x35\ +\x2e\x37\x35\x35\x30\x33\x37\x20\x61\x20\x30\x2e\x33\x35\x37\x31\ +\x34\x32\x38\x37\x2c\x30\x2e\x33\x35\x37\x31\x34\x32\x38\x37\x20\ +\x30\x20\x31\x20\x31\x20\x2d\x30\x2e\x37\x31\x34\x32\x38\x36\x2c\ +\x30\x20\x30\x2e\x33\x35\x37\x31\x34\x32\x38\x37\x2c\x30\x2e\x33\ +\x35\x37\x31\x34\x32\x38\x37\x20\x30\x20\x31\x20\x31\x20\x30\x2e\ +\x37\x31\x34\x32\x38\x36\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\ +\x38\x36\x32\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\x6d\x20\x36\x2e\x32\x35\x2c\x34\x32\x2e\x39\x38\ +\x37\x31\x37\x39\x20\x61\x20\x30\x2e\x36\x32\x35\x2c\x30\x2e\x36\ +\x32\x35\x20\x30\x20\x31\x20\x31\x20\x2d\x31\x2e\x32\x35\x2c\x30\ +\x20\x30\x2e\x36\x32\x35\x2c\x30\x2e\x36\x32\x35\x20\x30\x20\x31\ +\x20\x31\x20\x31\x2e\x32\x35\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ +\x32\x38\x36\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\x6d\x20\x31\x37\x2e\x33\x32\x31\x34\x32\x38\ +\x2c\x31\x39\x2e\x39\x35\x31\x34\x36\x36\x20\x61\x20\x31\x2e\x33\ +\x33\x39\x32\x38\x35\x37\x2c\x31\x2e\x33\x33\x39\x32\x38\x35\x37\ +\x20\x30\x20\x31\x20\x31\x20\x2d\x32\x2e\x36\x37\x38\x35\x37\x31\ +\x2c\x30\x20\x31\x2e\x33\x33\x39\x32\x38\x35\x37\x2c\x31\x2e\x33\ +\x33\x39\x32\x38\x35\x37\x20\x30\x20\x31\x20\x31\x20\x32\x2e\x36\ +\x37\x38\x35\x37\x31\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x38\ +\x36\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\x6d\x20\x31\x31\x2e\x39\x36\x34\x32\x38\x36\x2c\x31\ +\x38\x2e\x31\x36\x35\x37\x35\x32\x20\x61\x20\x30\x2e\x34\x34\x36\ +\x34\x32\x38\x35\x37\x2c\x30\x2e\x34\x34\x36\x34\x32\x38\x35\x37\ +\x20\x30\x20\x31\x20\x31\x20\x2d\x30\x2e\x38\x39\x32\x38\x35\x37\ +\x2c\x30\x20\x30\x2e\x34\x34\x36\x34\x32\x38\x35\x37\x2c\x30\x2e\ +\x34\x34\x36\x34\x32\x38\x35\x37\x20\x30\x20\x31\x20\x31\x20\x30\ +\x2e\x38\x39\x32\x38\x35\x37\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ +\x32\x38\x36\x38\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\x6d\x20\x31\x36\x2e\x36\x30\x37\x31\x34\x33\ +\x2c\x37\x2e\x38\x39\x37\x38\x39\x34\x39\x20\x61\x20\x30\x2e\x35\ +\x33\x35\x37\x31\x34\x32\x37\x2c\x30\x2e\x35\x33\x35\x37\x31\x34\ +\x32\x37\x20\x30\x20\x31\x20\x31\x20\x2d\x31\x2e\x30\x37\x31\x34\ +\x32\x39\x2c\x30\x20\x30\x2e\x35\x33\x35\x37\x31\x34\x32\x37\x2c\ +\x30\x2e\x35\x33\x35\x37\x31\x34\x32\x37\x20\x30\x20\x31\x20\x31\ +\x20\x31\x2e\x30\x37\x31\x34\x32\x39\x2c\x30\x20\x7a\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ +\x74\x68\x32\x38\x37\x30\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\x6d\x20\x33\x30\x2e\x35\x33\x35\x37\ +\x31\x34\x2c\x31\x33\x2e\x36\x31\x32\x31\x38\x31\x20\x61\x20\x30\ +\x2e\x35\x33\x35\x37\x31\x34\x32\x37\x2c\x30\x2e\x35\x33\x35\x37\ +\x31\x34\x32\x37\x20\x30\x20\x31\x20\x31\x20\x2d\x31\x2e\x30\x37\ +\x31\x34\x32\x38\x2c\x30\x20\x30\x2e\x35\x33\x35\x37\x31\x34\x32\ +\x37\x2c\x30\x2e\x35\x33\x35\x37\x31\x34\x32\x37\x20\x30\x20\x31\ +\x20\x31\x20\x31\x2e\x30\x37\x31\x34\x32\x38\x2c\x30\x20\x7a\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x70\x61\x74\x68\x32\x38\x37\x32\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\x6d\x20\x33\x34\x2e\x32\x38\ +\x35\x37\x31\x36\x2c\x34\x32\x2e\x37\x31\x39\x33\x32\x32\x20\x61\ +\x20\x30\x2e\x37\x31\x34\x32\x38\x35\x37\x33\x2c\x30\x2e\x37\x31\ +\x34\x32\x38\x35\x37\x33\x20\x30\x20\x31\x20\x31\x20\x2d\x31\x2e\ +\x34\x32\x38\x35\x37\x32\x2c\x30\x20\x30\x2e\x37\x31\x34\x32\x38\ +\x35\x37\x33\x2c\x30\x2e\x37\x31\x34\x32\x38\x35\x37\x33\x20\x30\ +\x20\x31\x20\x31\x20\x31\x2e\x34\x32\x38\x35\x37\x32\x2c\x30\x20\ +\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x61\x74\x68\x32\x38\x37\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\x6d\x20\x34\x30\x2e\ +\x35\x33\x35\x37\x31\x34\x2c\x32\x38\x2e\x35\x32\x32\x38\x39\x34\ +\x20\x61\x20\x31\x2e\x35\x31\x37\x38\x35\x37\x32\x2c\x31\x2e\x35\ +\x31\x37\x38\x35\x37\x32\x20\x30\x20\x31\x20\x31\x20\x2d\x33\x2e\ +\x30\x33\x35\x37\x31\x35\x2c\x30\x20\x31\x2e\x35\x31\x37\x38\x35\ +\x37\x32\x2c\x31\x2e\x35\x31\x37\x38\x35\x37\x32\x20\x30\x20\x31\ +\x20\x31\x20\x33\x2e\x30\x33\x35\x37\x31\x35\x2c\x30\x20\x7a\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x70\x61\x74\x68\x32\x38\x37\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\x6d\x20\x33\x39\x2e\x38\x32\ +\x31\x34\x32\x37\x2c\x32\x32\x2e\x30\x30\x35\x30\x33\x37\x20\x61\ +\x20\x31\x2e\x37\x38\x35\x37\x31\x34\x33\x2c\x31\x2e\x37\x38\x35\ +\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x2d\x33\x2e\x35\x37\ +\x31\x34\x32\x38\x2c\x30\x20\x31\x2e\x37\x38\x35\x37\x31\x34\x33\ +\x2c\x31\x2e\x37\x38\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\ +\x20\x33\x2e\x35\x37\x31\x34\x32\x38\x2c\x30\x20\x7a\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ +\x74\x68\x32\x38\x37\x38\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\x6d\x20\x32\x37\x2e\x38\x35\x37\x31\ +\x34\x34\x2c\x32\x38\x2e\x35\x32\x32\x38\x39\x34\x20\x61\x20\x32\ +\x2e\x39\x34\x36\x34\x32\x38\x35\x2c\x32\x2e\x39\x34\x36\x34\x32\ +\x38\x35\x20\x30\x20\x31\x20\x31\x20\x2d\x35\x2e\x38\x39\x32\x38\ +\x35\x37\x2c\x30\x20\x32\x2e\x39\x34\x36\x34\x32\x38\x35\x2c\x32\ +\x2e\x39\x34\x36\x34\x32\x38\x35\x20\x30\x20\x31\x20\x31\x20\x35\ +\x2e\x38\x39\x32\x38\x35\x37\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ +\x32\x38\x38\x30\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\x6d\x20\x36\x2e\x32\x35\x30\x30\x30\x30\x32\ +\x2c\x32\x38\x2e\x39\x36\x39\x33\x32\x34\x20\x61\x20\x31\x2e\x34\ +\x32\x38\x35\x37\x31\x35\x2c\x31\x2e\x34\x32\x38\x35\x37\x31\x35\ +\x20\x30\x20\x31\x20\x31\x20\x2d\x32\x2e\x38\x35\x37\x31\x34\x32\ +\x39\x2c\x30\x20\x31\x2e\x34\x32\x38\x35\x37\x31\x35\x2c\x31\x2e\ +\x34\x32\x38\x35\x37\x31\x35\x20\x30\x20\x31\x20\x31\x20\x32\x2e\ +\x38\x35\x37\x31\x34\x32\x39\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ +\x32\x38\x38\x32\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\x6d\x20\x33\x2e\x30\x33\x35\x37\x31\x34\x33\ +\x2c\x33\x33\x2e\x38\x38\x30\x30\x33\x39\x20\x61\x20\x30\x2e\x38\ +\x30\x33\x35\x37\x31\x34\x2c\x30\x2e\x38\x30\x33\x35\x37\x31\x34\ +\x20\x30\x20\x31\x20\x31\x20\x2d\x31\x2e\x36\x30\x37\x31\x34\x32\ +\x38\x2c\x30\x20\x30\x2e\x38\x30\x33\x35\x37\x31\x34\x2c\x30\x2e\ +\x38\x30\x33\x35\x37\x31\x34\x20\x30\x20\x31\x20\x31\x20\x31\x2e\ +\x36\x30\x37\x31\x34\x32\x38\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ +\x32\x38\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\x6d\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\ +\x31\x38\x2e\x39\x36\x39\x33\x32\x34\x20\x61\x20\x31\x2e\x36\x30\ +\x37\x31\x34\x32\x38\x2c\x31\x2e\x36\x30\x37\x31\x34\x32\x38\x20\ +\x30\x20\x31\x20\x31\x20\x2d\x33\x2e\x32\x31\x34\x32\x38\x36\x2c\ +\x30\x20\x31\x2e\x36\x30\x37\x31\x34\x32\x38\x2c\x31\x2e\x36\x30\ +\x37\x31\x34\x32\x38\x20\x30\x20\x31\x20\x31\x20\x33\x2e\x32\x31\ +\x34\x32\x38\x36\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x38\x38\ +\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\x6d\x20\x33\x33\x2e\x35\x37\x31\x34\x33\x2c\x36\x2e\x30\ +\x32\x32\x38\x39\x34\x39\x20\x61\x20\x30\x2e\x39\x38\x32\x31\x34\ +\x32\x38\x37\x2c\x30\x2e\x39\x38\x32\x31\x34\x32\x38\x37\x20\x30\ +\x20\x31\x20\x31\x20\x2d\x31\x2e\x39\x36\x34\x32\x38\x36\x2c\x30\ +\x20\x30\x2e\x39\x38\x32\x31\x34\x32\x38\x37\x2c\x30\x2e\x39\x38\ +\x32\x31\x34\x32\x38\x37\x20\x30\x20\x31\x20\x31\x20\x31\x2e\x39\ +\x36\x34\x32\x38\x36\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x38\ +\x38\x38\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\x6d\x20\x32\x35\x2e\x37\x31\x34\x32\x38\x35\x2c\x31\ +\x2e\x35\x35\x38\x36\x30\x39\x20\x61\x20\x30\x2e\x34\x34\x36\x34\ +\x32\x38\x35\x37\x2c\x30\x2e\x34\x34\x36\x34\x32\x38\x35\x37\x20\ +\x30\x20\x31\x20\x31\x20\x2d\x30\x2e\x38\x39\x32\x38\x35\x37\x2c\ +\x30\x20\x30\x2e\x34\x34\x36\x34\x32\x38\x35\x37\x2c\x30\x2e\x34\ +\x34\x36\x34\x32\x38\x35\x37\x20\x30\x20\x31\x20\x31\x20\x30\x2e\ +\x38\x39\x32\x38\x35\x37\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\ +\x38\x39\x30\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\x6d\x20\x32\x33\x2e\x35\x37\x31\x34\x32\x38\x2c\ +\x34\x2e\x30\x35\x38\x36\x30\x39\x20\x61\x20\x30\x2e\x39\x38\x32\ +\x31\x34\x32\x38\x37\x2c\x30\x2e\x39\x38\x32\x31\x34\x32\x38\x37\ +\x20\x30\x20\x31\x20\x31\x20\x2d\x31\x2e\x39\x36\x34\x32\x38\x36\ +\x2c\x30\x20\x30\x2e\x39\x38\x32\x31\x34\x32\x38\x37\x2c\x30\x2e\ +\x39\x38\x32\x31\x34\x32\x38\x37\x20\x30\x20\x31\x20\x31\x20\x31\ +\x2e\x39\x36\x34\x32\x38\x36\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ +\x32\x38\x39\x32\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\x6d\x20\x32\x38\x2e\x30\x33\x35\x37\x31\x35\ +\x2c\x31\x39\x2e\x35\x30\x35\x30\x33\x37\x20\x61\x20\x30\x2e\x33\ +\x35\x37\x31\x34\x32\x38\x37\x2c\x30\x2e\x33\x35\x37\x31\x34\x32\ +\x38\x37\x20\x30\x20\x31\x20\x31\x20\x2d\x30\x2e\x37\x31\x34\x32\ +\x38\x36\x2c\x30\x20\x30\x2e\x33\x35\x37\x31\x34\x32\x38\x37\x2c\ +\x30\x2e\x33\x35\x37\x31\x34\x32\x38\x37\x20\x30\x20\x31\x20\x31\ +\x20\x30\x2e\x37\x31\x34\x32\x38\x36\x2c\x30\x20\x7a\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ +\x74\x68\x32\x38\x39\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\x6d\x20\x33\x32\x2e\x30\x34\x38\x35\ +\x39\x35\x2c\x33\x35\x2e\x39\x33\x33\x36\x30\x39\x20\x61\x20\x30\ +\x2e\x35\x37\x37\x38\x36\x39\x33\x2c\x30\x2e\x33\x35\x37\x31\x34\ +\x32\x38\x37\x20\x30\x20\x31\x20\x31\x20\x2d\x31\x2e\x31\x35\x35\ +\x37\x33\x38\x2c\x30\x20\x30\x2e\x35\x37\x37\x38\x36\x39\x33\x2c\ +\x30\x2e\x33\x35\x37\x31\x34\x32\x38\x37\x20\x30\x20\x31\x20\x31\ +\x20\x31\x2e\x31\x35\x35\x37\x33\x38\x2c\x30\x20\x7a\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ +\x74\x68\x32\x38\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\x6d\x20\x34\x37\x2e\x35\x2c\x34\x35\ +\x2e\x30\x34\x30\x37\x35\x32\x20\x61\x20\x31\x2e\x32\x35\x2c\x31\ +\x2e\x32\x35\x20\x30\x20\x31\x20\x31\x20\x2d\x32\x2e\x35\x2c\x30\ +\x20\x31\x2e\x32\x35\x2c\x31\x2e\x32\x35\x20\x30\x20\x31\x20\x31\ +\x20\x32\x2e\x35\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x38\x39\ +\x38\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\x6d\x20\x34\x34\x2e\x38\x32\x31\x34\x32\x39\x2c\x33\x2e\ +\x37\x39\x30\x37\x35\x31\x39\x20\x61\x20\x30\x2e\x37\x31\x34\x32\ +\x38\x35\x37\x33\x2c\x30\x2e\x37\x31\x34\x32\x38\x35\x37\x33\x20\ +\x30\x20\x31\x20\x31\x20\x2d\x31\x2e\x34\x32\x38\x35\x37\x31\x2c\ +\x30\x20\x30\x2e\x37\x31\x34\x32\x38\x35\x37\x33\x2c\x30\x2e\x37\ +\x31\x34\x32\x38\x35\x37\x33\x20\x30\x20\x31\x20\x31\x20\x31\x2e\ +\x34\x32\x38\x35\x37\x31\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\ +\x39\x30\x30\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\x6d\x20\x38\x2e\x37\x34\x39\x39\x39\x39\x36\x2c\ +\x34\x33\x2e\x37\x30\x31\x34\x36\x36\x20\x61\x20\x30\x2e\x32\x36\ +\x37\x38\x35\x37\x31\x33\x2c\x30\x2e\x32\x36\x37\x38\x35\x37\x31\ +\x33\x20\x30\x20\x31\x20\x31\x20\x2d\x30\x2e\x35\x33\x35\x37\x31\ +\x34\x33\x2c\x30\x20\x30\x2e\x32\x36\x37\x38\x35\x37\x31\x33\x2c\ +\x30\x2e\x32\x36\x37\x38\x35\x37\x31\x33\x20\x30\x20\x31\x20\x31\ +\x20\x30\x2e\x35\x33\x35\x37\x31\x34\x33\x2c\x30\x20\x7a\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x61\x74\x68\x32\x39\x30\x32\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\x74\xe7\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ @@ -4814,825 +5080,2930 @@ qt_resource_data = "\ \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\xb6\x9f\ +\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\xaa\x40\x00\x00\x00\x59\ +\x00\x00\xab\x0f\x00\x00\x00\x5a\x00\x00\xab\xbe\x00\x00\x05\xd9\ +\x00\x00\xaa\xcf\x00\x00\x05\xda\x00\x00\xaa\xef\x00\x00\x05\xea\ +\x00\x00\xab\x9e\x00\x00\x07\x78\x00\x00\x75\x92\x00\x00\x48\x83\ +\x00\x00\x03\x6f\x00\x00\x48\x83\x00\x00\x7c\x1c\x00\x00\x68\x34\ +\x00\x00\x6f\x27\x00\x04\xa6\x79\x00\x00\x7f\xad\x00\x04\xbb\x04\ +\x00\x00\x0b\xd0\x00\x04\xbb\x04\x00\x00\x83\xfc\x00\x05\x30\x45\ +\x00\x00\x0e\x1d\x00\x05\x30\x45\x00\x00\x95\x83\x00\x05\x46\xc5\ +\x00\x00\x0e\x4a\x00\x05\x46\xc5\x00\x00\x96\x27\x00\x05\x56\x45\ +\x00\x00\x49\xf5\x00\x05\x56\x45\x00\x00\x96\x51\x00\x05\xac\xf4\ +\x00\x00\x1a\x1a\x00\x05\xb8\xfd\x00\x00\xa7\xd6\x00\x05\xcf\xc7\ +\x00\x00\xa8\x7c\x00\x05\xe0\x85\x00\x00\x24\x43\x00\x06\xab\x8c\ +\x00\x00\x70\xf9\x00\x10\x84\x49\x00\x00\x56\x0f\x00\x12\x05\xba\ +\x00\x00\xa3\xf2\x00\x16\xc6\xda\x00\x00\x8a\x6a\x00\x2a\xa6\x79\ +\x00\x00\x78\x72\x00\x2b\xc4\xaf\x00\x00\x79\x50\x00\x2b\xe0\x65\ +\x00\x00\x79\x7f\x00\x39\xdf\x33\x00\x00\x37\x04\x00\x3d\xa1\x19\ +\x00\x00\x7d\x60\x00\x3e\x93\x83\x00\x00\x38\x52\x00\x48\x8f\x7c\ +\x00\x00\x27\x0d\x00\x4b\x66\x35\x00\x00\x33\xe6\x00\x4b\x66\x37\ +\x00\x00\x34\x2b\x00\x4b\x66\x39\x00\x00\x34\x70\x00\x4b\x87\xd4\ +\x00\x00\x83\x31\x00\x57\x60\x54\x00\x00\x9f\xad\x00\x58\xfd\xf4\ +\x00\x00\x4d\x78\x00\x59\x98\x25\x00\x00\x14\x98\x00\x59\x98\x25\ +\x00\x00\xa1\x03\x00\x6a\x58\x9a\x00\x00\x98\xa3\x00\x79\xef\xd4\ +\x00\x00\x75\xca\x00\x7e\x7f\x0e\x00\x00\x6b\x8a\x00\x8a\x23\x95\ +\x00\x00\x2a\xc5\x00\x8a\x23\x97\x00\x00\x2b\x11\x00\x8a\x23\x99\ +\x00\x00\x2b\x5d\x00\x91\xbc\xe9\x00\x00\x0e\x79\x00\xa6\x37\x3f\ +\x00\x00\x29\x66\x00\xaa\x80\x25\x00\x00\x82\x63\x00\xc6\xe3\x6e\ +\x00\x00\x25\x8d\x00\xcb\xa8\x14\x00\x00\x74\x9e\x00\xfc\x00\xca\ +\x00\x00\x91\x16\x01\x21\xd6\x39\x00\x00\x54\xec\x01\x22\xb4\xf9\ +\x00\x00\x14\xc7\x01\x2f\x8e\x7e\x00\x00\x61\x58\x01\x48\xfe\xa3\ +\x00\x00\x38\xd8\x01\x53\xf3\xaa\x00\x00\x87\x78\x01\x56\x16\x4a\ +\x00\x00\x90\x99\x01\x67\x0d\x8a\x00\x00\x8c\x0f\x01\x69\x11\x7a\ +\x00\x00\x9d\x34\x01\x82\x39\x0a\x00\x00\x99\x57\x01\x8b\x68\x75\ +\x00\x00\xa7\x5b\x01\xa1\x7f\x63\x00\x00\x1c\xf3\x01\xc1\xd9\xde\ +\x00\x00\x58\x5e\x01\xd2\x8f\xd3\x00\x00\x4e\x2d\x01\xdf\x11\x43\ +\x00\x00\x05\xa4\x01\xe2\xf4\x5a\x00\x00\xa3\x7b\x01\xfc\xae\xd3\ +\x00\x00\x76\x0d\x02\x05\xbe\x25\x00\x00\x81\x16\x02\x46\x58\x0a\ +\x00\x00\x9c\x64\x02\x65\xad\x62\x00\x00\xac\x94\x02\x6e\x07\xe2\ +\x00\x00\x50\x8b\x02\x76\x24\x13\x00\x00\x3d\x4d\x02\x7d\xe0\x55\ +\x00\x00\x51\x27\x02\x94\x46\x1a\x00\x00\x98\xf8\x02\xa7\x2c\x15\ +\x00\x00\x04\x4a\x02\xaa\x36\x95\x00\x00\x78\x0f\x02\xb1\xf0\xba\ +\x00\x00\x8d\xbe\x02\xbf\xaa\x8e\x00\x00\x3b\xb8\x02\xc0\x66\xf2\ +\x00\x00\x5d\x16\x02\xc8\x3f\xf5\x00\x00\x69\x35\x02\xd9\xa4\xb9\ +\x00\x00\x6e\xd2\x02\xdb\x1a\x94\x00\x00\x07\x53\x03\x01\x84\xc4\ +\x00\x00\x91\xc7\x03\x12\x97\x6a\x00\x00\x8f\xbe\x03\x1a\x14\x14\ +\x00\x00\x31\x3e\x03\x1a\x16\x59\x00\x00\x51\xdb\x03\x2f\x1a\x6a\ +\x00\x00\x79\xf8\x03\x7e\xca\xb5\x00\x00\x45\x32\x03\x88\x1f\xd4\ +\x00\x00\x46\x01\x03\x9e\x58\xa5\x00\x00\x00\x48\x03\xb3\x9e\xfa\ +\x00\x00\x9a\x0f\x03\xb5\xc8\x9a\x00\x00\x9b\xa9\x03\xbd\xd4\xe4\ +\x00\x00\x7a\xa7\x03\xc4\x3c\xf5\x00\x00\x7d\x22\x03\xc5\xd5\x5e\ +\x00\x00\x09\x69\x03\xcb\x0d\xe5\x00\x00\xa1\x2c\x03\xdc\x0c\xd4\ +\x00\x00\x78\xce\x03\xf2\x70\x35\x00\x00\x2d\xc7\x03\xf2\xbd\x60\ +\x00\x00\x16\x33\x03\xfb\x0f\x04\x00\x00\x30\xbc\x04\x21\x23\x23\ +\x00\x00\x21\xef\x04\x56\x06\x93\x00\x00\x2e\xc7\x04\x60\x7c\x15\ +\x00\x00\xa0\x02\x04\x79\xef\x9a\x00\x00\x8d\x45\x04\x82\x77\xf4\ +\x00\x00\x50\xdd\x04\x87\xf9\x9e\x00\x00\x92\xd0\x04\x8c\xd6\xae\ +\x00\x00\x67\x4c\x04\xa0\x8a\x25\x00\x00\x05\x6f\x04\xa0\x8a\x25\ +\x00\x00\x7e\xa9\x04\xa4\x31\x5a\x00\x00\x95\x0f\x04\xa8\xeb\x85\ +\x00\x00\x34\xb5\x04\xe1\x6e\xe3\x00\x00\x09\xdf\x04\xe4\x0f\x75\ +\x00\x00\x03\x05\x04\xeb\x41\xc3\x00\x00\x2e\x4c\x04\xef\xd9\xa8\ +\x00\x00\x4c\xe8\x05\x03\x83\x95\x00\x00\x71\x37\x05\x05\xcb\x13\ +\x00\x00\x44\x12\x05\x0f\xf2\x74\x00\x00\x97\xa0\x05\x1b\x10\x59\ +\x00\x00\x47\xba\x05\x2a\xe5\x97\x00\x00\x4f\x13\x05\x44\x3b\x5f\ +\x00\x00\x73\x82\x05\x5c\xd9\xc4\x00\x00\x0f\xc6\x05\x5c\xd9\xc4\ +\x00\x00\x96\xc2\x05\x63\xf6\x93\x00\x00\x4d\xbb\x05\x65\xee\x65\ +\x00\x00\x85\xec\x05\x87\xb0\xc3\x00\x00\x9f\xd6\x05\x96\xa8\xa5\ +\x00\x00\x13\x3a\x05\x96\xa8\xa5\x00\x00\xa0\xd9\x05\xad\x4b\xc3\ +\x00\x00\x45\x8a\x05\xb9\x03\xc8\x00\x00\x1e\xb4\x05\xbd\x0c\xba\ +\x00\x00\x88\x1d\x05\xbd\x8e\xde\x00\x00\x65\x9c\x05\xbe\x56\x93\ +\x00\x00\x4c\x76\x05\xc5\x50\x04\x00\x00\x0c\x03\x05\xe5\x8e\x2e\ +\x00\x00\x11\x30\x05\xfb\xdc\x83\x00\x00\x44\x74\x06\x1e\xe6\xb5\ +\x00\x00\xa6\x8b\x06\x29\xee\xa9\x00\x00\x7e\xd7\x06\x32\xe3\xe3\ +\x00\x00\x83\x5a\x06\x57\x19\xf4\x00\x00\x00\x00\x06\x5a\xef\x15\ +\x00\x00\x78\x3d\x06\x5b\xd2\xb5\x00\x00\x40\x7d\x06\x6c\x88\x8e\ +\x00\x00\x42\x15\x06\x74\x1d\x55\x00\x00\x57\xb8\x06\x8b\x96\x44\ +\x00\x00\x0c\xbb\x06\x97\x58\xc9\x00\x00\x52\x68\x06\xbc\x80\xa5\ +\x00\x00\x1e\x17\x06\xc9\xb8\x05\x00\x00\x7b\x27\x06\xe8\x05\x4e\ +\x00\x00\x06\xe4\x06\xee\xaa\x57\x00\x00\xa5\x78\x06\xf0\xcb\x25\ +\x00\x00\x1b\x8d\x06\xfa\xff\xc3\x00\x00\x44\xd6\x06\xfc\x1a\x14\ +\x00\x00\x35\xdd\x06\xfc\xa0\x8a\x00\x00\x97\xf1\x07\x08\x90\xe5\ +\x00\x00\x2c\x3c\x07\x0d\xb7\xf7\x00\x00\x3a\xed\x07\x0e\x86\x3e\ +\x00\x00\x1c\x18\x07\x35\x68\x6e\x00\x00\x17\x6a\x07\x35\xe8\x9a\ +\x00\x00\x9d\x87\x07\x44\x41\x2a\x00\x00\x86\xe9\x07\x4a\x1f\x63\ +\x00\x00\x02\x0c\x07\x4d\x73\x22\x00\x00\x95\xab\x07\x4e\xa6\xf2\ +\x00\x00\x84\x5d\x07\x58\xcb\xe8\x00\x00\x95\xe7\x07\x63\xfe\x0e\ +\x00\x00\x12\x0f\x07\x80\xc6\xb3\x00\x00\xaa\x08\x07\x88\x72\x5a\ +\x00\x00\x7c\x41\x07\xa3\xe4\x0e\x00\x00\x23\x69\x07\xc1\xfc\x13\ +\x00\x00\x2f\x9c\x08\x27\xb4\xba\x00\x00\x9b\x2c\x08\x32\xc4\xaa\ +\x00\x00\x9e\x70\x08\x36\x74\x14\x00\x00\x25\x46\x08\x44\xb9\x83\ +\x00\x00\x36\x86\x08\x49\xc9\x30\x00\x00\x16\x85\x08\x61\x7c\xb3\ +\x00\x00\x1e\xf7\x08\xa2\xca\x67\x00\x00\x51\x7f\x08\xa3\xe0\x33\ +\x00\x00\x7f\xd5\x08\xb1\x15\x28\x00\x00\x30\x45\x08\xb4\x04\x04\ +\x00\x00\xa0\x50\x08\xd0\x32\xf4\x00\x00\x84\x2a\x08\xd4\xcd\x69\ +\x00\x00\x84\x9b\x08\xe1\x9b\xbe\x00\x00\x1a\xb5\x08\xe1\xc1\xfa\ +\x00\x00\x86\x37\x08\xeb\x8d\x7a\x00\x00\xa9\xad\x09\x20\xda\x24\ +\x00\x00\xab\x2c\x09\x20\xda\xb4\x00\x00\xab\xdb\x09\x20\xda\xd4\ +\x00\x00\xaa\x5d\x09\x4d\x96\xd9\x00\x00\x26\x1e\x09\x65\xda\x8a\ +\x00\x00\x89\xfd\x09\x68\x0d\x29\x00\x00\x93\xee\x09\x71\x8d\x25\ +\x00\x00\x06\x98\x09\x75\x23\x14\x00\x00\x79\xae\x09\x76\xed\x34\ +\x00\x00\x6a\x86\x09\x86\xa6\x05\x00\x00\x24\x6e\x09\x8b\x23\xba\ +\x00\x00\x9e\xdd\x09\x9e\xfd\x7e\x00\x00\x6a\xdc\x09\xb6\x2a\x63\ +\x00\x00\x35\x2f\x09\xcd\x1c\x55\x00\x00\xa1\x76\x09\xd2\x21\xea\ +\x00\x00\x62\x7b\x09\xe5\x23\x0e\x00\x00\x5b\xd3\x09\xec\x2b\x45\ +\x00\x00\x0c\x6b\x09\xef\x33\xa3\x00\x00\x18\x79\x09\xf0\x1f\x6e\ +\x00\x00\x03\x98\x09\xfd\x45\x1a\x00\x00\x99\xb6\x0a\x09\xc1\x7a\ +\x00\x00\x9c\xcb\x0a\x28\x9a\x65\x00\x00\x4f\xb6\x0a\x28\x9a\x67\ +\x00\x00\x4f\xfd\x0a\x28\x9a\x69\x00\x00\x50\x44\x0a\x2d\xbe\xe4\ +\x00\x00\x31\xbb\x0a\x35\xa9\xfa\x00\x00\x8e\x3c\x0a\x3f\x27\x74\ +\x00\x00\x81\x5e\x0a\x3f\x6b\x05\x00\x00\x81\x97\x0a\x49\xa5\x4a\ +\x00\x00\xa6\xce\x0a\x60\xe0\x15\x00\x00\x27\x4e\x0a\x60\xe0\x17\ +\x00\x00\x27\xa1\x0a\x60\xe0\x19\x00\x00\x27\xf4\x0a\x65\x9b\xea\ +\x00\x00\x96\xee\x0a\x78\x05\x80\x00\x00\x01\x4f\x0a\x7f\x8f\x65\ +\x00\x00\x3e\xaa\x0a\x98\x86\x18\x00\x00\x2b\xa9\x0a\x99\x5c\xaa\ +\x00\x00\x9f\x45\x0a\xa8\x16\x95\x00\x00\x12\xf9\x0a\xa9\x89\xec\ +\x00\x00\x46\x5e\x0a\xc8\x5c\x59\x00\x00\x0f\xf9\x0a\xd0\x50\xb8\ +\x00\x00\x78\x9d\x0a\xd0\xe6\xf5\x00\x00\x18\x2a\x0a\xd6\xf1\xfa\ +\x00\x00\x83\x95\x0a\xeb\x91\x88\x00\x00\x69\xe7\x0b\x07\x78\x8a\ +\x00\x00\x89\x54\x0b\x1b\xe0\x73\x00\x00\x52\xe0\x0b\x24\x9d\xb4\ +\x00\x00\x53\xe1\x0b\x24\xc5\xc9\x00\x00\x13\x6b\x0b\x26\x7e\x0e\ +\x00\x00\x80\x96\x0b\x2b\x50\xfa\x00\x00\x8c\xa8\x0b\x2d\xb3\xf9\ +\x00\x00\x6e\x24\x0b\x37\x73\x69\x00\x00\xa8\xa4\x0b\x40\x40\x3e\ +\x00\x00\x48\x26\x0b\x43\xcd\x19\x00\x00\x46\xe2\x0b\x66\x28\xd2\ +\x00\x00\x69\x84\x0b\x88\xe0\x07\x00\x00\x0a\xde\x0b\x94\x44\xc5\ +\x00\x00\x32\x40\x0b\xc2\x99\x6a\x00\x00\x88\x95\x0b\xd3\x27\xae\ +\x00\x00\x04\x84\x0b\xd4\x7e\x9e\x00\x00\x0b\x15\x0b\xf5\xee\x53\ +\x00\x00\x96\x7d\x0c\x06\x50\x2e\x00\x00\x0d\x42\x0c\x08\x46\x23\ +\x00\x00\x82\x1c\x0c\x19\xfa\x99\x00\x00\x85\x29\x0c\x28\x9b\x45\ +\x00\x00\x79\x1b\x0c\x31\x7e\x4a\x00\x00\x9a\x68\x0c\x38\x4d\xe5\ +\x00\x00\x07\x9c\x0c\x3a\x16\xd0\x00\x00\x19\x8e\x0c\x5a\xc0\xc8\ +\x00\x00\x7c\xf0\x0c\x6e\x87\xf5\x00\x00\x23\x32\x0c\x91\xa0\x7a\ +\x00\x00\xa6\x2a\x0c\x96\x90\x59\x00\x00\x47\x47\x0c\xca\xdd\xfa\ +\x00\x00\xa4\x68\x0c\xd6\xef\x12\x00\x00\x2f\x39\x0c\xde\x99\x49\ +\x00\x00\x6e\x7a\x0c\xf0\xde\xaa\x00\x00\x8b\x67\x0d\x1c\xf6\xee\ +\x00\x00\x2d\x05\x0d\x3a\x6c\xba\x00\x00\x9a\xca\x0d\x45\xe2\x6a\ +\x00\x00\xa2\xe2\x0d\x59\xa1\x45\x00\x00\x82\x95\x0d\x5a\xad\x33\ +\x00\x00\x7b\xa9\x0d\x5e\xe7\x6e\x00\x00\x28\x47\x0d\x64\xa5\xd9\ +\x00\x00\x60\x60\x0d\x6d\xf8\xf4\x00\x00\x08\x4d\x0d\x76\xb5\x92\ +\x00\x00\x2d\x59\x0d\x9b\xec\xc9\x00\x00\x57\x3d\x0d\xa5\xd9\x94\ +\x00\x00\x2c\xb0\x0d\xa6\xda\xa4\x00\x00\x49\x83\x0d\xc6\xc6\x2a\ +\x00\x00\x9d\xfa\x0d\xf2\x39\xba\x00\x00\x8e\xf7\x0e\x2b\x04\x15\ +\x00\x00\x80\x4b\x0e\x2c\xe4\x2a\x00\x00\xa2\x6f\x0e\x4e\xcc\xc5\ +\x00\x00\x09\xa0\x0e\x6f\x9a\x1a\x00\x00\xa4\xfa\x0e\x7b\x7a\x2c\ +\x00\x00\x33\x4e\x0e\x8f\x6a\x37\x00\x00\x37\xe4\x0e\x91\x65\xf5\ +\x00\x00\x1a\x47\x0e\xca\xd7\x34\x00\x00\x20\xd5\x0e\xcd\x1c\x55\ +\x00\x00\xa1\xc9\x0e\xcd\x1c\x65\x00\x00\xa2\x1c\x0e\xea\xe5\x03\ +\x00\x00\x76\xb2\x0e\xed\xe1\xf9\x00\x00\x4a\x39\x0f\x07\x8d\xe3\ +\x00\x00\x77\x56\x0f\x17\x82\x4e\x00\x00\x00\xf1\x0f\x1f\x8d\xa5\ +\x00\x00\x80\x0b\x0f\x4f\x75\x3a\x00\x00\xac\x4d\x0f\x5f\xca\xd5\ +\x00\x00\x32\xbd\x0f\x75\xb0\x54\x00\x00\x81\xce\x0f\x77\xc3\xb4\ +\x00\x00\x6f\x62\x0f\x89\x0b\xbe\x00\x00\x4a\xa1\x0f\x8f\xa8\xa7\ +\x00\x00\x19\x3f\x0f\x98\x0a\x39\x00\x00\xa8\x00\x0f\x9e\xec\xa0\ +\x00\x00\x12\x48\x0f\xbf\x87\xa3\x00\x00\x94\xc5\x0f\xcd\xce\x95\ +\x00\x00\x37\x70\x0f\xdf\x21\x05\x00\x00\x24\xed\x0f\xf6\x06\x1e\ +\x00\x00\x21\x3b\x0f\xf6\x29\x0a\x00\x00\x7b\x59\x0f\xf7\x77\xaa\ +\x00\x00\x8a\xe2\x0f\xfb\x5f\xae\x00\x00\x80\xd4\x69\x00\x00\xac\ +\xed\x03\x00\x00\x00\x1c\x00\x41\x00\x67\x00\x67\x00\x69\x00\x75\ +\x00\x6e\x00\x67\x00\x69\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\ +\x00\x6f\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\x5e\x00\x45\ +\x00\x6c\x00\x69\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x75\ +\x00\x6e\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x6f\x00\x20\ +\x00\x64\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x77\x00\x69\ +\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x20\x00\x62\x00\x73\x00\x70\ +\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x65\x00\x73\x00\x69\ +\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x74\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\x2a\x00\x41\x00\x67\x00\x67\x00\x69\x00\ +\x75\x00\x6e\x00\x67\x00\x69\x00\x20\x00\x61\x00\x6c\x00\x20\x00\ +\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\x6f\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\x00\x41\x00\x67\x00\x67\x00\x69\x00\x75\x00\ +\x6e\x00\x67\x00\x65\x00\x20\x00\x6c\x00\x27\x00\x6f\x00\x67\x00\ +\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\ +\x6f\x00\x20\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x67\x00\ +\x72\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x20\x00\x65\x00\x73\x00\ +\x69\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x74\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\x9c\x00\x41\x00\x70\x00\x70\x00\x6c\x00\x69\x00\x63\x00\x61\ +\x00\x20\x00\x6c\x00\x6f\x00\x20\x00\x73\x00\x70\x00\x65\x00\x73\ +\x00\x73\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x65\x00\x64\x00\x20\ +\x00\x69\x00\x6c\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\ +\x00\x65\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x61\x00\x20\ +\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x61\x00\x20\x00\x63\x00\x6f\ +\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x61\ +\x00\x67\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\ +\x00\x74\x00\x74\x00\x69\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\ +\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\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\x32\x00\x41\x00\x70\x00\ +\x70\x00\x6c\x00\x69\x00\x63\x00\x61\x00\x20\x00\x6c\x00\x6f\x00\ +\x20\x00\x73\x00\x74\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x63\x00\ +\x6f\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x65\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\x00\x41\x00\x72\x00\x63\x00\x6f\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\x64\x00\x43\ +\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x61\ +\x00\x72\x00\x63\x00\x6f\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\ +\x00\x4c\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x6c\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\x70\x00\x65\x00\x72\ +\x00\x20\x00\x6c\x00\x69\x00\x6d\x00\x69\x00\x74\x00\x61\x00\x72\ +\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\x86\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x61\x00\x20\x00\x62\x00\x2d\ +\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x6d\ +\x00\x75\x00\x6c\x00\x74\x00\x69\x00\x2d\x00\x70\x00\x75\x00\x6e\ +\x00\x74\x00\x6f\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\ +\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x6c\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\x70\x00\x65\x00\x72\x00\x20\ +\x00\x6c\x00\x69\x00\x6d\x00\x69\x00\x74\x00\x61\x00\x72\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\x0e\x00\x43\x00\x65\x00\x72\x00\x63\x00\x68\x00\ +\x69\x00\x6f\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\x96\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x63\x00\x65\x00\x72\ +\x00\x63\x00\x68\x00\x69\x00\x6f\x00\x2e\x00\x20\x00\x43\x00\x54\ +\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x6c\ +\x00\x6f\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x2c\x00\x20\ +\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\ +\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\ +\x00\x61\x00\x72\x00\x65\x00\x20\x00\x67\x00\x6c\x00\x69\x00\x20\ +\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\ +\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x65\x00\x6e\x00\x74\x00\x69\ +\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\x1e\x00\x43\ +\x00\x68\x00\x69\x00\x75\x00\x64\x00\x69\x00\x20\x00\x6c\x00\x61\ +\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\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\x30\x00\x43\x00\x68\x00\x69\ +\x00\x75\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6c\ +\x00\x69\x00\x6e\x00\x65\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x72\ +\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1b\x43\x6c\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x6c\ +\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x07\ +\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\x73\x65\x4c\ +\x69\x6e\x65\x01\x03\x00\x00\x00\x1a\x00\x45\x00\x6c\x00\x69\x00\ +\x6d\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x70\x00\x75\x00\x6e\x00\ +\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x52\x65\x6d\ +\x6f\x76\x65\x20\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x0e\x44\x72\ +\x61\x66\x74\x5f\x44\x65\x6c\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\ +\x00\x5e\x00\x45\x00\x6c\x00\x69\x00\x6d\x00\x69\x00\x6e\x00\x61\ +\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\ +\x00\x6f\x00\x20\x00\x64\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\ +\x00\x77\x00\x69\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x20\x00\x62\ +\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x65\ +\x00\x73\x00\x69\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x74\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\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\ +\x6e\x00\x61\x00\x20\x00\x71\x00\x75\x00\x6f\x00\x74\x00\x61\x00\ +\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\ +\x65\x00\x72\x00\x20\x00\x6c\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\x70\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x69\x00\ +\x6d\x00\x69\x00\x74\x00\x61\x00\x72\x00\x65\x00\x2c\x00\x20\x00\ +\x41\x00\x4c\x00\x54\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\ +\x61\x00\x72\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x73\x00\ +\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x4e\x43\x72\x65\x61\x74\x65\x73\x20\x61\ +\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x2e\x20\x43\x54\x52\x4c\ +\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\ +\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\ +\x54\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x20\x61\x20\x73\x65\ +\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\ +\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x01\x03\x00\x00\x00\x0a\x00\ +\x51\x00\x75\x00\x6f\x00\x74\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\ +\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ +\x01\x03\x00\x00\x00\x12\x00\x44\x00\x6f\x00\x77\x00\x6e\x00\x67\ +\x00\x72\x00\x61\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x09\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0f\ +\x44\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\ +\x03\x00\x00\x00\x96\x00\x45\x00\x73\x00\x70\x00\x6c\x00\x6f\x00\ +\x64\x00\x65\x00\x20\x00\x67\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\ +\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\ +\x74\x00\x69\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x6f\x00\x67\x00\ +\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\x70\x00\x69\x00\ +\xfa\x00\x20\x00\x73\x00\x65\x00\x6d\x00\x70\x00\x6c\x00\x69\x00\ +\x63\x00\x65\x00\x2c\x00\x20\x00\x6f\x00\x20\x00\x73\x00\x6f\x00\ +\x74\x00\x74\x00\x72\x00\x61\x00\x65\x00\x20\x00\x6c\x00\x65\x00\ +\x20\x00\x66\x00\x61\x00\x63\x00\x63\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x45\x45\x78\x70\x6c\x6f\x64\x65\x73\x20\x74\x68\ +\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x69\x6e\x74\x6f\x20\x73\x69\x6d\x70\x6c\x65\x72\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\x6f\x72\x20\x73\x75\x62\x74\ +\x72\x61\x63\x74\x20\x66\x61\x63\x65\x73\x07\x00\x00\x00\x0f\x44\ +\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\x03\ +\x00\x00\x00\x0e\x00\x44\x00\x69\x00\x73\x00\x65\x00\x67\x00\x6e\ +\x00\x6f\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\x6c\x00\x4d\x00\x65\x00\ +\x74\x00\x74\x00\x65\x00\x20\x00\x67\x00\x6c\x00\x69\x00\x20\x00\ +\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\ +\x61\x00\x74\x00\x69\x00\x20\x00\x73\x00\x75\x00\x20\x00\x75\x00\ +\x6e\x00\x20\x00\x66\x00\x6f\x00\x67\x00\x6c\x00\x69\x00\x6f\x00\ +\x20\x00\x64\x00\x69\x00\x20\x00\x64\x00\x69\x00\x73\x00\x65\x00\ +\x67\x00\x6e\x00\x6f\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\x10\x00\x4d\x00\x6f\x00\x64\x00\x69\x00\x66\ +\x00\x69\x00\x63\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x45\x64\x69\x74\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x45\ +\x64\x69\x74\x01\x03\x00\x00\x00\x32\x00\x4d\x00\x6f\x00\x64\x00\ +\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x20\x00\x6c\x00\x27\x00\ +\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\ +\x61\x00\x74\x00\x74\x00\x69\x00\x76\x00\x6f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\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\x54\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\ +\x20\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x46\x69\x6e\x69\x73\ +\x68\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\ +\x5f\x46\x69\x6e\x69\x73\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\ +\x40\x00\x54\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\ +\x20\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\ +\x61\x00\x20\x00\x73\x00\x65\x00\x6e\x00\x7a\x00\x61\x00\x20\x00\ +\x63\x00\x68\x00\x69\x00\x75\x00\x64\x00\x65\x00\x72\x00\x6c\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x46\x69\x6e\x69\x73\ +\x68\x65\x73\x20\x61\x20\x6c\x69\x6e\x65\x20\x77\x69\x74\x68\x6f\ +\x75\x74\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\x07\x00\x00\ +\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\x69\x73\x68\x4c\x69\ +\x6e\x65\x01\x03\x00\x00\x00\x84\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x20\x00\x75\x00\x6e\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\ +\x00\x65\x00\x61\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x64\ +\x00\x75\x00\x65\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x69\ +\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\ +\x00\x65\x00\x72\x00\x20\x00\x6c\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\x70\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x69\ +\x00\x6d\x00\x69\x00\x74\x00\x61\x00\x72\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\x65\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x0a\ +\x44\x72\x61\x66\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x0c\ +\x00\x53\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\x0a\x44\ +\x72\x61\x66\x74\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\x00\xd4\x00\ +\x53\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x20\x00\x67\x00\ +\x6c\x00\x69\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\ +\x74\x00\x69\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\ +\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\x69\x00\x20\x00\x74\x00\ +\x72\x00\x61\x00\x20\x00\x32\x00\x20\x00\x70\x00\x75\x00\x6e\x00\ +\x74\x00\x69\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ +\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x6c\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\x70\x00\x65\x00\x72\x00\x20\x00\ +\x6c\x00\x69\x00\x6d\x00\x69\x00\x74\x00\x61\x00\x72\x00\x65\x00\ +\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x70\x00\x65\x00\ +\x72\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x72\x00\x65\x00\ +\x20\x00\x75\x00\x6e\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x70\x00\ +\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5a\x4d\x6f\x76\ +\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\ +\x32\x20\x70\x6f\x69\x6e\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\ +\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\ +\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\ +\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0a\x44\x72\x61\x66\ +\x74\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\x00\x0c\x00\x4f\x00\x66\ +\x00\x66\x00\x73\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x0c\x44\x72\x61\ +\x66\x74\x5f\x4f\x66\x66\x73\x65\x74\x01\x03\x00\x00\x00\xce\x00\ +\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\ +\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x00\x20\x00\x64\x00\ +\x65\x00\x6c\x00\x6c\x00\x27\x00\x6f\x00\x67\x00\x67\x00\x65\x00\ +\x74\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\x6f\x00\x2e\x00\ +\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x65\x00\ +\x72\x00\x20\x00\x6c\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\x70\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x69\x00\x6d\x00\ +\x69\x00\x74\x00\x61\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x41\x00\ +\x4c\x00\x54\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x63\x00\ +\x72\x00\x65\x00\x61\x00\x72\x00\x65\x00\x20\x00\x75\x00\x6e\x00\ +\x61\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x61\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\x82\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\ +\x00\x75\x00\x6e\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x69\x00\x67\ +\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\x72\x00\x65\x00\x67\x00\x6f\ +\x00\x6c\x00\x61\x00\x72\x00\x65\x00\x2e\x00\x20\x00\x43\x00\x54\ +\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x6c\ +\x00\x6f\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x2c\x00\x20\ +\x00\x4d\x00\x41\x00\x49\x00\x55\x00\x53\x00\x43\x00\x20\x00\x70\ +\x00\x65\x00\x72\x00\x20\x00\x76\x00\x69\x00\x6e\x00\x63\x00\x6f\ +\x00\x6c\x00\x61\x00\x72\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\x10\x00\x50\x00\x6f\x00\x6c\x00\x69\x00\x67\x00\ +\x6f\x00\x6e\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x50\ +\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\ +\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\x00\x00\x64\x00\x43\ +\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x72\ +\x00\x65\x00\x74\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x6f\x00\x6c\ +\x00\x6f\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x64\x00\x75\ +\x00\x65\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x69\x00\x2e\ +\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x65\ +\x00\x72\x00\x20\x00\x6c\x00\x6f\x00\x20\x00\x73\x00\x6e\x00\x61\ +\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\x20\x72\x65\ +\x63\x74\x61\x6e\x67\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\ +\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\ +\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x14\x00\ +\x52\x00\x65\x00\x74\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x6f\x00\ +\x6c\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x52\x65\x63\ +\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\ +\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x0a\ +\x00\x52\x00\x75\x00\x6f\x00\x74\x00\x61\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\x00\x52\x00\x6f\x00\x75\x00\x74\x00\x61\x00\x20\x00\x67\x00\ +\x6c\x00\x69\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\ +\x74\x00\x69\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\ +\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\x69\x00\x2e\x00\x20\x00\ +\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x65\x00\x72\x00\ +\x20\x00\x6c\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\ +\x70\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x69\x00\x6d\x00\x69\x00\ +\x74\x00\x61\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\ +\x54\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x63\x00\x72\x00\ +\x65\x00\x61\x00\x72\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x61\x00\ +\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x52\x52\x6f\x74\x61\x74\x65\x73\x20\x74\x68\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\ +\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\ +\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x63\x72\x65\x61\x74\x65\x73\ +\x20\x61\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0c\x44\x72\x61\x66\ +\x74\x5f\x52\x6f\x74\x61\x74\x65\x01\x03\x00\x00\x00\x0a\x00\x53\ +\x00\x63\x00\x61\x00\x6c\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x53\x63\x61\x6c\x65\x07\x00\x00\x00\x0b\x44\x72\x61\x66\ +\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\xf0\x00\x53\x00\ +\x63\x00\x61\x00\x6c\x00\x61\x00\x20\x00\x67\x00\x6c\x00\x69\x00\ +\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\ +\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\ +\x6e\x00\x61\x00\x74\x00\x69\x00\x20\x00\x61\x00\x20\x00\x70\x00\ +\x61\x00\x72\x00\x74\x00\x69\x00\x72\x00\x65\x00\x20\x00\x64\x00\ +\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x70\x00\x75\x00\x6e\x00\ +\x74\x00\x6f\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x2e\x00\ +\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x65\x00\ +\x72\x00\x20\x00\x6c\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\x70\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x69\x00\x6d\x00\ +\x69\x00\x74\x00\x61\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x41\x00\ +\x4c\x00\x54\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x63\x00\ +\x72\x00\x65\x00\x61\x00\x72\x00\x65\x00\x20\x00\x75\x00\x6e\x00\ +\x61\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x5c\x53\x63\x61\x6c\x65\x73\x20\x74\x68\ +\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x66\x72\x6f\x6d\x20\x61\x20\x62\x61\x73\x65\x20\x70\ +\x6f\x69\x6e\x74\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ +\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ +\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\ +\x6f\x70\x79\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x53\x63\ +\x61\x6c\x65\x01\x03\x00\x00\x00\x20\x00\x53\x00\x65\x00\x6c\x00\ +\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x20\x00\x67\x00\ +\x72\x00\x75\x00\x70\x00\x70\x00\x6f\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\x88\x00\x53\x00\x65\x00\ +\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x20\x00\ +\x74\x00\x75\x00\x74\x00\x74\x00\x69\x00\x20\x00\x67\x00\x6c\x00\ +\x69\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\ +\x69\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x20\x00\x67\x00\x6c\x00\ +\x69\x00\x20\x00\x73\x00\x74\x00\x65\x00\x73\x00\x73\x00\x69\x00\ +\x20\x00\x67\x00\x65\x00\x6e\x00\x69\x00\x74\x00\x6f\x00\x72\x00\ +\x69\x00\x20\x00\x64\x00\x69\x00\x20\x00\x71\x00\x75\x00\x65\x00\ +\x73\x00\x74\x00\x6f\x00\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\ +\x70\x00\x6f\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\x6e\ +\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\ +\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x70\x00\x69\x00\x61\ +\x00\x6e\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x20\x00\x6c\x00\x61\ +\x00\x76\x00\x6f\x00\x72\x00\x6f\x00\x20\x00\x70\x00\x65\x00\x72\ +\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\ +\x00\x72\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x67\x00\x65\ +\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\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\ +\x00\x50\x00\x69\x00\x61\x00\x6e\x00\x6f\x00\x20\x00\x64\x00\x69\ +\x00\x20\x00\x6c\x00\x61\x00\x76\x00\x6f\x00\x72\x00\x6f\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\x76\x00\ +\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x61\x00\ +\x20\x00\x76\x00\x69\x00\x73\x00\x75\x00\x61\x00\x6c\x00\x69\x00\ +\x7a\x00\x7a\x00\x61\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\ +\x20\x00\x32\x00\x44\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\ +\x61\x00\x20\x00\x64\x00\x65\x00\x67\x00\x6c\x00\x69\x00\x20\x00\ +\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\ +\x61\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x1c\x00\x46\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\ +\x20\x00\x76\x00\x69\x00\x73\x00\x74\x00\x61\x00\x20\x00\x32\x00\ +\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x68\x61\x70\x65\ +\x20\x32\x44\x20\x76\x69\x65\x77\x07\x00\x00\x00\x11\x44\x72\x61\ +\x66\x74\x5f\x53\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\ +\x00\x00\x00\x4a\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\ +\x00\x6e\x00\x27\x00\x61\x00\x6e\x00\x6e\x00\x6f\x00\x74\x00\x61\ +\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x2e\x00\x20\x00\x43\ +\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\ +\x00\x6c\x00\x6f\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\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\x73\x00\x74\x00\x6f\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\x26\x00\x4d\x00\ +\x6f\x00\x64\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x20\x00\x63\x00\ +\x6f\x00\x73\x00\x74\x00\x72\x00\x75\x00\x7a\x00\x69\x00\x6f\x00\ +\x6e\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\x78\x00\x41\x00\x74\x00\ +\x74\x00\x69\x00\x76\x00\x61\x00\x2f\x00\x64\x00\x69\x00\x73\x00\ +\x61\x00\x74\x00\x74\x00\x69\x00\x76\x00\x61\x00\x20\x00\x69\x00\ +\x6c\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x6f\x00\x20\x00\x43\x00\ +\x6f\x00\x73\x00\x74\x00\x72\x00\x75\x00\x7a\x00\x69\x00\x6f\x00\ +\x6e\x00\x65\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x69\x00\ +\x20\x00\x70\x00\x72\x00\x6f\x00\x73\x00\x73\x00\x69\x00\x6d\x00\ +\x69\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\ +\x69\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\x4a\x00\x41\x00\x74\x00\x74\x00\x69\x00\x76\x00\x61\x00\ +\x2f\x00\x44\x00\x69\x00\x73\x00\x61\x00\x74\x00\x74\x00\x69\x00\ +\x76\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x4d\x00\x6f\x00\ +\x64\x00\x61\x00\x6c\x00\x69\x00\x74\x00\xe0\x00\x20\x00\x43\x00\ +\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\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\x82\x00\x41\ +\x00\x74\x00\x74\x00\x69\x00\x76\x00\x61\x00\x20\x00\x6f\x00\x20\ +\x00\x64\x00\x69\x00\x73\x00\x61\x00\x74\x00\x74\x00\x69\x00\x76\ +\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x4d\x00\x6f\x00\x64\ +\x00\x61\x00\x6c\x00\x69\x00\x74\x00\xe0\x00\x20\x00\x43\x00\x6f\ +\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x61\x00\x20\x00\x70\ +\x00\x65\x00\x72\x00\x20\x00\x69\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x61\x00\x6e\x00\x64\x00\x69\x00\x20\x00\x73\x00\x75\x00\x63\ +\x00\x63\x00\x65\x00\x73\x00\x73\x00\x69\x00\x76\x00\x69\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\xb2\x00\x41\x00\x6c\x00\x74\x00\ +\x65\x00\x72\x00\x6e\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x20\x00\ +\x6d\x00\x6f\x00\x64\x00\x61\x00\x6c\x00\x69\x00\x74\x00\xe0\x00\ +\x20\x00\x64\x00\x69\x00\x20\x00\x76\x00\x69\x00\x73\x00\x75\x00\ +\x61\x00\x6c\x00\x69\x00\x7a\x00\x7a\x00\x61\x00\x7a\x00\x69\x00\ +\x6f\x00\x6e\x00\x65\x00\x20\x00\x64\x00\x65\x00\x67\x00\x6c\x00\ +\x69\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\ +\x69\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\ +\x6f\x00\x6e\x00\x61\x00\x74\x00\x69\x00\x20\x00\x64\x00\x61\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\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\x5e\x00\x41\x00\ +\x74\x00\x74\x00\x69\x00\x76\x00\x61\x00\x2f\x00\x44\x00\x69\x00\ +\x73\x00\x61\x00\x74\x00\x74\x00\x69\x00\x76\x00\x61\x00\x20\x00\ +\x6c\x00\x61\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x61\x00\x6c\x00\ +\x69\x00\x74\x00\xe0\x00\x20\x00\x64\x00\x69\x00\x20\x00\x76\x00\ +\x69\x00\x73\x00\x75\x00\x61\x00\x6c\x00\x69\x00\x7a\x00\x7a\x00\ +\x61\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\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\x1c\x00\x54\x00\x61\x00\x67\ +\x00\x6c\x00\x69\x00\x61\x00\x2f\x00\x45\x00\x73\x00\x74\x00\x65\ +\x00\x6e\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x54\x72\x69\x6d\x65\x78\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\ +\x5f\x54\x72\x69\x6d\x65\x78\x01\x03\x00\x00\x01\x34\x00\x54\x00\ +\x61\x00\x67\x00\x6c\x00\x69\x00\x61\x00\x20\x00\x6f\x00\x20\x00\ +\x65\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\ +\x6c\x00\x27\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\ +\x6f\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\ +\x6f\x00\x6e\x00\x61\x00\x74\x00\x6f\x00\x2c\x00\x20\x00\x6f\x00\ +\x20\x00\x65\x00\x73\x00\x74\x00\x72\x00\x75\x00\x64\x00\x65\x00\ +\x20\x00\x6c\x00\x65\x00\x20\x00\x73\x00\x69\x00\x6e\x00\x67\x00\ +\x6f\x00\x6c\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\x63\x00\ +\x65\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\ +\x70\x00\x65\x00\x72\x00\x20\x00\x6c\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\x70\x00\x65\x00\x72\x00\x20\x00\x76\x00\ +\x69\x00\x6e\x00\x63\x00\x6f\x00\x6c\x00\x61\x00\x72\x00\x65\x00\ +\x20\x00\x61\x00\x6c\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x72\x00\ +\x72\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x20\x00\ +\x61\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\ +\x6d\x00\x61\x00\x6c\x00\x65\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\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x89\x54\x72\x69\x6d\x73\ +\x20\x6f\x72\x20\x65\x78\x74\x65\x6e\x64\x73\x20\x74\x68\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x2c\ +\x20\x6f\x72\x20\x65\x78\x74\x72\x75\x64\x65\x73\x20\x73\x69\x6e\ +\x67\x6c\x65\x20\x66\x61\x63\x65\x73\x2e\x20\x43\x54\x52\x4c\x20\ +\x73\x6e\x61\x70\x73\x2c\x20\x53\x48\x49\x46\x54\x20\x63\x6f\x6e\ +\x73\x74\x72\x61\x69\x6e\x73\x20\x74\x6f\x20\x63\x75\x72\x72\x65\ +\x6e\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\x72\x20\x74\x6f\ +\x20\x6e\x6f\x72\x6d\x61\x6c\x2c\x20\x41\x4c\x54\x20\x69\x6e\x76\ +\x65\x72\x74\x73\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x54\ +\x72\x69\x6d\x65\x78\x01\x03\x00\x00\x00\x32\x00\x41\x00\x6e\x00\ +\x6e\x00\x75\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\x27\x00\ +\x75\x00\x6c\x00\x74\x00\x69\x00\x6d\x00\x6f\x00\x20\x00\x73\x00\ +\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\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\x6e\x00\x75\x00\x6c\x00\x6c\x00\x61\x00\ +\x20\x00\x6c\x00\x27\x00\x75\x00\x6c\x00\x74\x00\x69\x00\x6d\x00\ +\x6f\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x61\x00\ +\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x61\x00\x20\x00\x63\x00\ +\x6f\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x65\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\xc4\x00\x55\x00\x6e\x00\x69\x00\x73\x00\x63\x00\ +\x65\x00\x20\x00\x67\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\x67\x00\ +\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\ +\x69\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x75\x00\x6e\x00\x6f\x00\ +\x20\x00\x73\x00\x6f\x00\x6c\x00\x6f\x00\x2c\x00\x20\x00\x6f\x00\ +\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\ +\x65\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\ +\x65\x00\x65\x00\x20\x00\x63\x00\x68\x00\x69\x00\x75\x00\x73\x00\ +\x65\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x66\x00\x61\x00\x63\x00\ +\x63\x00\x65\x00\x2c\x00\x20\x00\x6f\x00\x20\x00\x75\x00\x6e\x00\ +\x69\x00\x73\x00\x63\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x20\x00\ +\x66\x00\x61\x00\x63\x00\x63\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x5d\x4a\x6f\x69\x6e\x73\x20\x74\x68\x65\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\ +\x74\x6f\x20\x6f\x6e\x65\x2c\x20\x6f\x72\x20\x63\x6f\x6e\x76\x65\ +\x72\x74\x73\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x73\ +\x20\x74\x6f\x20\x66\x69\x6c\x6c\x65\x64\x20\x66\x61\x63\x65\x73\ +\x2c\x20\x6f\x72\x20\x75\x6e\x69\x74\x65\x20\x66\x61\x63\x65\x73\ +\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x55\x70\x67\x72\x61\ +\x64\x65\x01\x03\x00\x00\x00\x0e\x00\x55\x00\x70\x00\x67\x00\x72\ +\x00\x61\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ +\x55\x70\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0d\x44\x72\x61\x66\ +\x74\x5f\x55\x70\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x7c\x00\ +\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\ +\x77\x00\x69\x00\x72\x00\x65\x00\x20\x00\x6d\x00\x75\x00\x6c\x00\ +\x74\x00\x69\x00\x2d\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x6f\x00\ +\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\ +\x65\x00\x72\x00\x20\x00\x6c\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\x70\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x69\x00\ +\x6d\x00\x69\x00\x74\x00\x61\x00\x72\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\x57\x00\x69\x00\x72\x00\ +\x65\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\x36\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\ +\x00\x74\x00\x65\x00\x20\x00\x74\x00\x72\x00\x61\x00\x20\x00\x57\ +\x00\x69\x00\x72\x00\x65\x00\x20\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\x21\x43\x6f\x6e\x76\x65\x72\x74\x73\x20\x62\x65\x74\ +\x77\x65\x65\x6e\x20\x57\x69\x72\x65\x20\x61\x6e\x64\x20\x42\x53\ +\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x13\x44\x72\x61\x66\x74\x5f\ +\x57\x69\x72\x65\x54\x6f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\ +\x00\x00\x22\x00\x44\x00\x61\x00\x20\x00\x57\x00\x69\x00\x72\x00\ +\x65\x00\x20\x00\x61\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\x40\x00\x50\x00\x65\x00\x72\x00\x63\x00\x6f\x00\x72\x00\ +\x73\x00\x6f\x00\x20\x00\x61\x00\x6c\x00\x74\x00\x65\x00\x72\x00\ +\x6e\x00\x61\x00\x74\x00\x69\x00\x76\x00\x6f\x00\x20\x00\x50\x00\ +\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x20\x00\x53\x00\ +\x56\x00\x47\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x41\x6c\x74\ +\x65\x72\x6e\x61\x74\x65\x20\x53\x56\x47\x20\x50\x61\x74\x74\x65\ +\x72\x6e\x73\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x90\x00\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x61\ +\x00\x64\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\ +\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x6d\x00\x70\x00\x72\x00\x65\ +\x00\x20\x00\x61\x00\x74\x00\x74\x00\x69\x00\x76\x00\x6f\x00\x20\ +\x00\x28\x00\x64\x00\x69\x00\x73\x00\x61\x00\x62\x00\x69\x00\x6c\ +\x00\x69\x00\x74\x00\xe0\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x74\ +\x00\x61\x00\x73\x00\x74\x00\x6f\x00\x20\x00\x6d\x00\x6f\x00\x64\ +\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x6f\x00\x72\ +\x00\x65\x00\x20\x00\x64\x00\x69\x00\x20\x00\x73\x00\x6e\x00\x61\ +\x00\x70\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\xae\x00\x53\x00\ +\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\ +\x72\x00\x65\x00\x20\x00\x71\x00\x75\x00\x65\x00\x73\x00\x74\x00\ +\x61\x00\x20\x00\x6f\x00\x70\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x20\x00\x73\x00\x69\x00\x20\x00\ +\x64\x00\x65\x00\x73\x00\x69\x00\x64\x00\x65\x00\x72\x00\x61\x00\ +\x20\x00\x63\x00\x68\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x63\x00\ +\x68\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x61\x00\x72\x00\ +\x65\x00\x65\x00\x20\x00\x28\x00\x66\x00\x61\x00\x63\x00\x63\x00\ +\x65\x00\x20\x00\x33\x00\x44\x00\x29\x00\x20\x00\x73\x00\x69\x00\ +\x61\x00\x6e\x00\x6f\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x61\x00\x74\x00\x65\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\xda\x00\x53\x00\x65\ +\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x20\ +\x00\x71\x00\x75\x00\x65\x00\x73\x00\x74\x00\x61\x00\x20\x00\x6f\ +\x00\x70\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x73\ +\x00\x65\x00\x20\x00\x73\x00\x69\x00\x20\x00\x64\x00\x65\x00\x73\ +\x00\x69\x00\x64\x00\x65\x00\x72\x00\x61\x00\x20\x00\x63\x00\x68\ +\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x63\x00\x68\x00\x65\x00\x20\ +\x00\x69\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x63\x00\x63\x00\x68\ +\x00\x69\x00\x20\x00\x73\x00\x65\x00\x6e\x00\x7a\x00\x61\x00\x20\ +\x00\x6e\x00\x6f\x00\x6d\x00\x65\x00\x20\x00\x28\x00\x63\x00\x68\ +\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x69\x00\x7a\x00\x69\x00\x61\ +\x00\x6e\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x20\x00\x2a\ +\x00\x29\x00\x20\x00\x76\x00\x65\x00\x6e\x00\x67\x00\x61\x00\x6e\ +\x00\x6f\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\ +\x00\x61\x00\x74\x00\x69\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\x12\x00\x43\x00\x65\x00\ +\x72\x00\x63\x00\x68\x00\x69\x00\x6f\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\x12\x00\x43\x00\x65\x00\x72\x00\x63\x00\ +\x68\x00\x69\x00\x6f\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\x12\x00\x43\x00\x65\x00\x72\x00\x63\x00\x68\x00\x69\x00\ +\x6f\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\ +\x69\x72\x63\x6c\x65\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\x00\ +\x44\x00\x61\x00\x20\x00\x6d\x00\x61\x00\x70\x00\x70\x00\x61\x00\ +\x74\x00\x75\x00\x72\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\ +\x6f\x00\x72\x00\x65\x00\x20\x00\x61\x00\x20\x00\x73\x00\x70\x00\ +\x65\x00\x73\x00\x73\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x6c\x00\ +\x69\x00\x6e\x00\x65\x00\x61\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\x00\x46\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x69\ +\x00\x20\x00\x6d\x00\x61\x00\x70\x00\x70\x00\x61\x00\x74\x00\x75\ +\x00\x72\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\ +\x00\x65\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\x16\x00\x56\x00\x69\x00\x6e\x00\x63\x00\x6f\ +\x00\x6c\x00\x6f\x00\x20\x00\x6d\x00\x6f\x00\x64\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x73\x74\x72\x61\x69\x6e\x20\ +\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x43\x00\x6f\x00\ +\x73\x00\x74\x00\x72\x00\x75\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x6f\x6e\x73\x74\ +\x72\x75\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\ +\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x64\x00\ +\x69\x00\x20\x00\x63\x00\x6f\x00\x73\x00\x74\x00\x72\x00\x75\x00\ +\x7a\x00\x69\x00\x6f\x00\x6e\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\x3c\x00\x4e\x00\ +\x6f\x00\x6d\x00\x65\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\ +\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\x6f\x00\x20\x00\x64\x00\ +\x69\x00\x20\x00\x63\x00\x6f\x00\x73\x00\x74\x00\x72\x00\x75\x00\ +\x7a\x00\x69\x00\x6f\x00\x6e\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\x30\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x6f\x00\x67\ +\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\x70\x00\x61\ +\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x63\ +\x00\x69\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\x2e\x00\x4f\x00\ +\x70\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x69\x00\x20\x00\x64\x00\ +\x65\x00\x6c\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\ +\x74\x00\x6f\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\x24\x00\ +\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x70\x00\ +\x72\x00\x65\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\ +\x74\x00\x6f\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\x44\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\ +\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\ +\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\x61\x00\x20\ +\x00\x70\x00\x65\x00\x72\x00\x20\x00\x74\x00\x65\x00\x73\x00\x74\ +\x00\x69\x00\x20\x00\x65\x00\x20\x00\x71\x00\x75\x00\x6f\x00\x74\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x44\x65\x66\x61\ +\x75\x6c\x74\x20\x68\x65\x69\x67\x68\x74\x20\x66\x6f\x72\x20\x74\ +\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\ +\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x00\x53\x00\x70\x00\ +\x65\x00\x73\x00\x73\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x6c\x00\ +\x69\x00\x6e\x00\x65\x00\x61\x00\x20\x00\x70\x00\x72\x00\x65\x00\ +\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\x6f\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\x3a\x00\x4d\x00\x6f\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x6f\ +\x00\x20\x00\x64\x00\x69\x00\x20\x00\x66\x00\x6f\x00\x67\x00\x6c\ +\x00\x69\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\x00\x65\ +\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\x6f\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\x3a\x00\x54\x00\x69\x00\x70\x00\x6f\x00\x20\x00\x64\ +\x00\x69\x00\x20\x00\x63\x00\x61\x00\x72\x00\x61\x00\x74\x00\x74\ +\x00\x65\x00\x72\x00\x65\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\ +\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\x6f\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\ +\x40\x00\x44\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\ +\x6f\x00\x6e\x00\x65\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\ +\x74\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x72\x00\ +\x65\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\ +\x61\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\x36\x00\x50\x00\x69\x00\x61\x00\x6e\x00\x6f\ +\x00\x20\x00\x64\x00\x69\x00\x20\x00\x6c\x00\x61\x00\x76\x00\x6f\ +\x00\x72\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\x00\x65\ +\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\x6f\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x15\x44\x65\x66\x61\x75\x6c\x74\x20\x77\x6f\ +\x72\x6b\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x40\x00\x44\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\ +\x69\x00\x6f\x00\x6e\x00\x69\x00\x20\x00\x65\x00\x20\x00\x73\x00\ +\x74\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x65\x00\x6c\x00\ +\x6c\x00\x61\x00\x20\x00\x66\x00\x72\x00\x65\x00\x63\x00\x63\x00\ +\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x44\x69\x6d\ +\x65\x6e\x73\x69\x6f\x6e\x73\x20\x26\x20\x4c\x65\x61\x64\x65\x72\ +\x20\x61\x72\x72\x6f\x77\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x4c\x00\x4c\x00\x69\x00\x76\x00\x65\x00\x6c\x00\x6c\ +\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x20\x00\x70\x00\x72\x00\x65\ +\x00\x63\x00\x69\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\ +\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x69\ +\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x69\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x44\x69\x6d\x65\x6e\x73\ +\x69\x6f\x6e\x73\x20\x70\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\ +\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x50\x00\x75\ +\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x44\x6f\x74\x20\x35\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0e\x00\x50\x00\x75\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x37\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\x37\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0e\x00\x50\x00\x75\x00\x6e\x00\x74\x00\x6f\ +\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\x34\x00\x4d\x00\x6f\x00\ +\x64\x00\x61\x00\x6c\x00\x69\x00\x74\x00\xe0\x00\x20\x00\x69\x00\ +\x6e\x00\x74\x00\x65\x00\x72\x00\x66\x00\x61\x00\x63\x00\x63\x00\ +\x69\x00\x61\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x14\x44\x72\x61\x66\x74\x20\x69\ +\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x6d\x6f\x64\x65\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x58\x00\x45\x00\x73\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x61\x00\x20\x00\x67\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\ +\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\x33\x00\ +\x44\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x65\x00\x20\x00\x6d\x00\ +\x65\x00\x73\x00\x68\x00\x20\x00\x6d\x00\x75\x00\x6c\x00\x74\x00\ +\x69\x00\x66\x00\x61\x00\x63\x00\x63\x00\x69\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x24\x45\x78\x70\x6f\x72\x74\x20\x33\x44\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x61\x73\x20\x70\x6f\x6c\x79\ +\x66\x61\x63\x65\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x60\x00\x52\x00\x69\x00\x65\x00\x6d\x00\x70\x00\x69\x00\ +\x20\x00\x67\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\x67\x00\x67\x00\ +\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\ +\x65\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x74\x00\ +\x61\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x70\x00\ +\x72\x00\x65\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\ +\x74\x00\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\x36\x00\x49\x00\x6d\ +\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x7a\x00\x69\x00\x6f\ +\x00\x6e\x00\x69\x00\x20\x00\x67\x00\x65\x00\x6e\x00\x65\x00\x72\ +\x00\x61\x00\x6c\x00\x69\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\ +\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\x2a\x00\x49\x00\x6d\x00\x70\ +\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x7a\x00\x69\x00\x6f\x00\x6e\ +\x00\x69\x00\x20\x00\x67\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\ +\x00\x6c\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\ +\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\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\x4d\x00\x6f\x00\x64\x00\x61\x00\x6c\ +\x00\x69\x00\x74\x00\xe0\x00\x20\x00\x64\x00\x69\x00\x20\x00\x63\ +\x00\x6f\x00\x70\x00\x69\x00\x61\x00\x20\x00\x67\x00\x6c\x00\x6f\ +\x00\x62\x00\x61\x00\x6c\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\x30\x00\x53\x00\x70\x00\x61\ +\x00\x7a\x00\x69\x00\x61\x00\x74\x00\x75\x00\x72\x00\x61\x00\x20\ +\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x67\x00\x72\ +\x00\x69\x00\x67\x00\x6c\x00\x69\x00\x61\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\x3c\x00\x52\x00\x61\x00\x67\x00\x67\ +\x00\x72\x00\x75\x00\x70\x00\x70\x00\x61\x00\x20\x00\x69\x00\x20\ +\x00\x6c\x00\x69\x00\x76\x00\x65\x00\x6c\x00\x6c\x00\x69\x00\x20\ +\x00\x69\x00\x6e\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x63\x00\x63\ +\x00\x68\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x47\x72\ +\x6f\x75\x70\x20\x6c\x61\x79\x65\x72\x73\x20\x69\x6e\x74\x6f\x20\ +\x62\x6c\x6f\x63\x6b\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x56\x00\x51\ +\x00\x75\x00\x69\x00\x20\x00\xe8\x00\x20\x00\x70\x00\x6f\x00\x73\ +\x00\x73\x00\x69\x00\x62\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x73\ +\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\ +\x00\x72\x00\x65\x00\x20\x00\x75\x00\x6e\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\x65\x00\x6e\x00\x65\ +\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x69\x00\x20\x00\x66\x00\x69\ +\x00\x6c\x00\x65\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x63\ +\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x65\ +\x00\x6e\x00\x67\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\x6c\x00\x65\ +\x00\x20\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x7a\ +\x00\x69\x00\x6f\x00\x6e\x00\x69\x00\x20\x00\x3c\x00\x70\x00\x61\ +\x00\x74\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x3e\x00\x20\x00\x63\ +\x00\x68\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x73\x00\x6f\ +\x00\x6e\x00\x6f\x00\x20\x00\x65\x00\x73\x00\x73\x00\x65\x00\x72\ +\x00\x65\x00\x20\x00\x61\x00\x67\x00\x67\x00\x69\x00\x75\x00\x6e\ +\x00\x74\x00\x65\x00\x20\x00\x61\x00\x69\x00\x20\x00\x6d\x00\x6f\ +\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x69\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\x64\x00\x69\x00\x20\ +\x00\x63\x00\x61\x00\x6d\x00\x70\x00\x69\x00\x74\x00\x75\x00\x72\ +\x00\x61\x00\x20\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\x6e\x00\x53\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\x6f\x00\ +\x2c\x00\x20\x00\x75\x00\x6e\x00\x61\x00\x20\x00\x67\x00\x72\x00\ +\x69\x00\x67\x00\x6c\x00\x69\x00\x61\x00\x20\x00\x61\x00\x70\x00\ +\x70\x00\x61\x00\x72\x00\x69\x00\x72\x00\xe0\x00\x20\x00\x64\x00\ +\x75\x00\x72\x00\x61\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x69\x00\ +\x6c\x00\x20\x00\x64\x00\x69\x00\x73\x00\x65\x00\x67\x00\x6e\x00\ +\x6f\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\xfe\x00\x53\ +\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\ +\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\x6f\x00\x2c\x00\x20\x00\x66\ +\x00\x72\x00\x65\x00\x65\x00\x63\x00\x61\x00\x64\x00\x20\x00\x63\ +\x00\x65\x00\x72\x00\x63\x00\x68\x00\x65\x00\x72\x00\xe0\x00\x20\ +\x00\x64\x00\x69\x00\x20\x00\x75\x00\x6e\x00\x69\x00\x72\x00\x65\ +\x00\x20\x00\x67\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\x67\x00\x67\ +\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\x63\x00\x6f\x00\x69\ +\x00\x6e\x00\x63\x00\x69\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x69\ +\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\ +\x00\x2e\x00\x20\x00\x41\x00\x74\x00\x74\x00\x65\x00\x6e\x00\x7a\ +\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x2c\x00\x20\x00\x71\x00\x75\ +\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x75\x00\xf2\ +\x00\x20\x00\x72\x00\x69\x00\x63\x00\x68\x00\x69\x00\x65\x00\x64\ +\x00\x65\x00\x72\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x70\ +\x00\x6f\x00\x27\x00\x20\x00\x64\x00\x69\x00\x20\x00\x74\x00\x65\ +\x00\x6d\x00\x70\x00\x6f\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\xda\x00\x53\x00\x65\x00\x20\x00\x71\x00\x75\x00\x65\x00\ +\x73\x00\x74\x00\x61\x00\x20\x00\x6f\x00\x70\x00\x7a\x00\x69\x00\ +\x6f\x00\x6e\x00\x65\x00\x20\x00\xe8\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\ +\x61\x00\x2c\x00\x20\x00\x74\x00\x75\x00\x74\x00\x74\x00\x69\x00\ +\x20\x00\x67\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\x67\x00\x67\x00\ +\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\ +\x74\x00\x65\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x20\x00\ +\x66\x00\x61\x00\x63\x00\x63\x00\x65\x00\x20\x00\x73\x00\x61\x00\ +\x72\x00\x61\x00\x6e\x00\x6e\x00\x6f\x00\x20\x00\x65\x00\x73\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x74\x00\x69\x00\x20\x00\ +\x63\x00\x6f\x00\x6d\x00\x65\x00\x20\x00\x6d\x00\x75\x00\x6c\x00\ +\x74\x00\x69\x00\x66\x00\x61\x00\x63\x00\x63\x00\x65\x00\x66\x00\ +\x61\x00\x63\x00\x63\x00\x65\x00\x20\x00\x33\x00\x44\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\x32\ +\x00\x53\x00\x65\x00\x20\x00\x71\x00\x75\x00\x65\x00\x73\x00\x74\ +\x00\x61\x00\x20\x00\x6f\x00\x70\x00\x7a\x00\x69\x00\x6f\x00\x6e\ +\x00\x65\x00\x20\x00\xe8\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\ +\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\x61\x00\x2c\ +\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x61\ +\x00\x6c\x00\x69\x00\x74\x00\xe0\x00\x20\x00\x63\x00\x6f\x00\x70\ +\x00\x69\x00\x61\x00\x20\x00\x73\x00\x61\x00\x72\x00\xe0\x00\x20\ +\x00\x6d\x00\x61\x00\x6e\x00\x74\x00\x65\x00\x6e\x00\x75\x00\x74\ +\x00\x61\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x74\x00\x75\ +\x00\x74\x00\x74\x00\x69\x00\x20\x00\x69\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x69\x00\x2c\x00\x20\x00\x61\ +\x00\x6c\x00\x74\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x00\x69\x00\x20\x00\x69\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x61\ +\x00\x6e\x00\x64\x00\x69\x00\x20\x00\x69\x00\x6e\x00\x69\x00\x7a\ +\x00\x69\x00\x65\x00\x72\x00\x61\x00\x6e\x00\x6e\x00\x6f\x00\x20\ +\x00\x73\x00\x65\x00\x6d\x00\x70\x00\x72\x00\x65\x00\x20\x00\x6e\ +\x00\x65\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x6d\x00\x6f\x00\x64\ +\x00\x61\x00\x6c\x00\x69\x00\x74\x00\xe0\x00\x20\x00\x73\x00\x65\ +\x00\x6e\x00\x7a\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x69\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x6f\x49\x66\x20\x74\ +\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\ +\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x62\ +\x65\x20\x6b\x65\x70\x74\x20\x61\x63\x72\x6f\x73\x73\x20\x63\x6f\ +\x6d\x6d\x61\x6e\x64\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\ +\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x20\x77\x69\x6c\x6c\x20\x61\ +\x6c\x77\x61\x79\x73\x20\x73\x74\x61\x72\x74\x20\x69\x6e\x20\x6e\ +\x6f\x2d\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x01\x00\x00\x53\x00\x65\x00\x20\x00\x71\x00\x75\x00\x65\x00\ +\x73\x00\x74\x00\x61\x00\x20\x00\x6f\x00\x70\x00\x7a\x00\x69\x00\ +\x6f\x00\x6e\x00\x65\x00\x20\x00\xe8\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\ +\x61\x00\x2c\x00\x20\x00\x67\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\ +\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\x61\x00\ +\x70\x00\x70\x00\x61\x00\x72\x00\x69\x00\x72\x00\x61\x00\x6e\x00\ +\x6e\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x20\x00\x64\x00\x65\x00\ +\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x63\x00\x6f\x00\ +\x6d\x00\x65\x00\x20\x00\x72\x00\x69\x00\x65\x00\x6d\x00\x70\x00\ +\x69\x00\x74\x00\x69\x00\x2e\x00\x20\x00\x49\x00\x6e\x00\x20\x00\ +\x63\x00\x61\x00\x73\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\ +\x74\x00\x72\x00\x61\x00\x72\x00\x69\x00\x6f\x00\x2c\x00\x20\x00\ +\x61\x00\x70\x00\x70\x00\x61\x00\x72\x00\x69\x00\x72\x00\x61\x00\ +\x6e\x00\x6e\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x65\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\x4a\x00\x53\x00\x65\x00\ +\x20\x00\x71\x00\x75\x00\x65\x00\x73\x00\x74\x00\x61\x00\x20\x00\ +\x6f\x00\x70\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\ +\xe8\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\ +\x6f\x00\x6e\x00\x61\x00\x74\x00\x61\x00\x2c\x00\x20\x00\x6c\x00\ +\x6f\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x61\x00\ +\x67\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\ +\x74\x00\x74\x00\x69\x00\x20\x00\x65\x00\x73\x00\x69\x00\x73\x00\ +\x74\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x20\x00\x64\x00\x75\x00\ +\x72\x00\x61\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x69\x00\x6c\x00\ +\x20\x00\x64\x00\x69\x00\x73\x00\x65\x00\x67\x00\x6e\x00\x6f\x00\ +\x20\x00\x73\x00\x61\x00\x72\x00\xe0\x00\x20\x00\x73\x00\x65\x00\ +\x6d\x00\x70\x00\x72\x00\x65\x00\x20\x00\x61\x00\x74\x00\x74\x00\ +\x69\x00\x76\x00\x6f\x00\x2e\x00\x20\x00\x49\x00\x6e\x00\x20\x00\ +\x63\x00\x61\x00\x73\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\ +\x74\x00\x72\x00\x61\x00\x72\x00\x69\x00\x6f\x00\x2c\x00\x20\x00\ +\x6c\x00\x6f\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\ +\x73\x00\x61\x00\x72\x00\xe0\x00\x20\x00\x61\x00\x74\x00\x74\x00\ +\x69\x00\x76\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x65\x00\x6d\x00\ +\x65\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x69\x00\x6c\x00\x20\x00\ +\x74\x00\x61\x00\x73\x00\x74\x00\x6f\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\x61\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x63\ +\x00\x63\x00\x68\x00\x69\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\x20\x00\x49\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x20\x00\x61\x00\x72\x00\x65\ +\x00\x65\x00\x20\x00\x4f\x00\x43\x00\x41\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x49\x6d\x70\x6f\x72\x74\x20\x4f\x43\x41\x20\x61\ +\x72\x65\x61\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x49\x00\x6d\ +\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x20\x00\x6c\x00\x61\ +\x00\x79\x00\x6f\x00\x75\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0e\x49\x6d\x70\x6f\x72\x74\x20\x6c\x61\x79\x6f\x75\x74\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x49\x00\x6d\x00\x70\x00\x6f\ +\x00\x72\x00\x74\x00\x61\x00\x20\x00\x73\x00\x74\x00\x69\x00\x6c\ +\x00\x65\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\x2a\ +\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x20\ +\x00\x74\x00\x65\x00\x73\x00\x74\x00\x69\x00\x20\x00\x65\x00\x20\ +\x00\x71\x00\x75\x00\x6f\x00\x74\x00\x65\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\x61\x00\x2f\x00\x45\x00\x73\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x61\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\x3a\x00\x4c\x00\x69\x00\x76\x00\x65\x00\x6c\x00\x6c\ +\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x20\x00\x70\x00\x72\x00\x65\ +\x00\x63\x00\x69\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\ +\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x6f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x18\x49\x6e\x74\x65\x72\x6e\x61\x6c\ +\x20\x70\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x26\x00\x55\x00\x6e\x00\x69\x00\x73\ +\x00\x63\x00\x69\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x67\x00\x65\ +\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0d\x4a\x6f\x69\x6e\x20\x67\x65\x6f\ +\x6d\x65\x74\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x53\x00\ +\x69\x00\x6e\x00\x69\x00\x73\x00\x74\x00\x72\x00\x61\x00\x20\x00\ +\x28\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\ +\x64\x00\x20\x00\x49\x00\x53\x00\x4f\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x13\x4c\x65\x66\x74\x20\x28\x49\x53\x4f\x20\x73\ +\x74\x61\x6e\x64\x61\x72\x64\x29\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\ +\x00\x4c\x00\x69\x00\x6e\x00\x65\x00\x65\x00\x20\x00\x70\x00\x72\ +\x00\x69\x00\x6e\x00\x63\x00\x69\x00\x70\x00\x61\x00\x6c\x00\x69\ +\x00\x20\x00\x6f\x00\x67\x00\x6e\x00\x69\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\xda\x00\x4c\x00\x65\ +\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x65\x00\x20\x00\x70\ +\x00\x72\x00\x69\x00\x6e\x00\x63\x00\x69\x00\x70\x00\x61\x00\x6c\ +\x00\x69\x00\x20\x00\x73\x00\x61\x00\x72\x00\x61\x00\x6e\x00\x6e\ +\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x73\x00\x65\x00\x67\x00\x6e\ +\x00\x61\x00\x74\x00\x65\x00\x20\x00\x70\x00\x69\x00\xf9\x00\x20\ +\x00\x73\x00\x70\x00\x65\x00\x73\x00\x73\x00\x65\x00\x2e\x00\x20\ +\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x69\x00\x63\ +\x00\x61\x00\x72\x00\x65\x00\x20\x00\x71\x00\x75\x00\x69\x00\x20\ +\x00\x69\x00\x6c\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x65\x00\x72\ +\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x20\x00\x71\x00\x75\x00\x61\ +\x00\x64\x00\x72\x00\x61\x00\x74\x00\x69\x00\x20\x00\x74\x00\x72\ +\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x65\x00\x20\ +\x00\x70\x00\x72\x00\x69\x00\x6e\x00\x63\x00\x69\x00\x70\x00\x61\ +\x00\x6c\x00\x69\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\ +\x4d\x61\x69\x6e\x6c\x69\x6e\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\ +\x65\x20\x64\x72\x61\x77\x6e\x20\x74\x68\x69\x63\x6b\x65\x72\x2e\ +\x20\x53\x70\x65\x63\x69\x66\x79\x20\x68\x65\x72\x65\x20\x68\x6f\ +\x77\x20\x6d\x61\x6e\x79\x20\x73\x71\x75\x61\x72\x65\x73\x20\x62\ +\x65\x74\x77\x65\x65\x6e\x20\x6d\x61\x69\x6e\x6c\x69\x6e\x65\x73\ +\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x53\x00\x65\x00\x67\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x53\x00\x70\x00\ +\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x73\x00\ +\x73\x00\x69\x00\x6d\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x12\x4d\x61\x78\x20\x53\x70\x6c\x69\x6e\x65\x20\x53\x65\x67\x6d\ +\x65\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x4e\x00\x65\x00\ +\x73\x00\x73\x00\x75\x00\x6e\x00\x6f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\ +\x4e\x00\x65\x00\x73\x00\x73\x00\x75\x00\x6e\x00\x6f\x00\x20\x00\ +\x28\x00\x70\x00\x69\x00\xf9\x00\x20\x00\x76\x00\x65\x00\x6c\x00\ +\x6f\x00\x63\x00\x65\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\x24\x00\x4e\x00\x6f\x00\x72\x00\x6d\x00\ +\x61\x00\x6c\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x2c\x00\ +\x20\x00\x64\x00\x6f\x00\x70\x00\x6f\x00\x20\x00\x6c\x00\x61\x00\ +\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x61\x00\x20\x00\x64\x00\ +\x65\x00\x67\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\x67\x00\x67\x00\ +\x65\x00\x74\x00\x74\x00\x69\x00\x2c\x00\x20\x00\x6c\x00\x65\x00\ +\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x20\x00\x73\x00\ +\x6f\x00\x6e\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\x65\x00\x2e\x00\ +\x20\x00\x53\x00\x65\x00\x20\x00\x71\x00\x75\x00\x65\x00\x73\x00\ +\x74\x00\x61\x00\x20\x00\x6f\x00\x70\x00\x7a\x00\x69\x00\x6f\x00\ +\x6e\x00\x65\x00\x20\x00\xe8\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\x61\x00\ +\x2c\x00\x20\x00\x73\x00\x61\x00\x72\x00\x61\x00\x6e\x00\x6e\x00\ +\x6f\x00\x20\x00\x69\x00\x6e\x00\x76\x00\x65\x00\x63\x00\x65\x00\ +\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\ +\x6e\x00\x61\x00\x74\x00\x69\x00\x20\x00\x67\x00\x6c\x00\x69\x00\ +\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\ +\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x2e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x7f\x4e\x6f\x72\x6d\x61\x6c\x6c\x79\x2c\x20\x61\ +\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\x6e\x67\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x2c\x20\x74\x68\x65\x20\x63\x6f\x70\x69\x65\x73\ +\x20\x67\x65\x74\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x2e\x20\x49\ +\x66\x20\x74\x68\x69\x73\x20\x6f\x70\x74\x69\x6f\x6e\x20\x69\x73\ +\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x62\x61\ +\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\ +\x62\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x69\x6e\x73\x74\ +\x65\x61\x64\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x4f\x00\x70\ +\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x69\x00\x20\x00\x64\x00\x65\ +\x00\x6c\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\ +\x00\x6f\x00\x20\x00\x4f\x00\x43\x00\x41\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x12\x4f\x43\x41\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\ +\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\x00\x43\ +\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x65\x00\x20\ +\x00\x73\x00\x70\x00\x65\x00\x73\x00\x73\x00\x6f\x00\x72\x00\x65\ +\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x61\x00\x20\x00\x6f\ +\x00\x72\x00\x69\x00\x67\x00\x69\x00\x6e\x00\x61\x00\x6c\x00\x69\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x4f\x72\x69\x67\x69\x6e\ +\x61\x6c\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\ +\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x44\ +\x00\x65\x00\x73\x00\x74\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x52\x69\x67\x68\x74\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x2e\x00\x4f\x00\x70\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x69\x00\ +\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x6d\x00\x61\x00\x74\x00\x6f\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\x84\x00\x53\x00\x61\x00\x6c\x00\x76\x00\x61\x00\x20\x00\ +\x69\x00\x6c\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ +\x65\x00\x20\x00\x63\x00\x6f\x00\x72\x00\x72\x00\x65\x00\x6e\x00\ +\x74\x00\x65\x00\x20\x00\x65\x00\x20\x00\x6c\x00\x6f\x00\x20\x00\ +\x73\x00\x70\x00\x65\x00\x73\x00\x73\x00\x6f\x00\x72\x00\x65\x00\ +\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x61\x00\x20\x00\x70\x00\ +\x65\x00\x72\x00\x20\x00\x74\x00\x75\x00\x74\x00\x74\x00\x65\x00\ +\x20\x00\x6c\x00\x65\x00\x20\x00\x73\x00\x65\x00\x73\x00\x73\x00\ +\x69\x00\x6f\x00\x6e\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x30\x53\x61\x76\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x63\x6f\ +\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\ +\x68\x20\x61\x63\x72\x6f\x73\x73\x20\x73\x65\x73\x73\x69\x6f\x6e\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x50\x00\x53\x00\x65\x00\x6c\x00\ +\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x20\x00\x67\x00\ +\x6c\x00\x69\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\ +\x74\x00\x69\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\ +\x64\x00\x6f\x00\x70\x00\x6f\x00\x20\x00\x6c\x00\x61\x00\x20\x00\ +\x63\x00\x6f\x00\x70\x00\x69\x00\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\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\ +\x16\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\x20\x00\ +\x73\x00\x6e\x00\x61\x00\x70\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\x1c\x00\x52\x00\ +\x61\x00\x67\x00\x67\x00\x69\x00\x6f\x00\x20\x00\x64\x00\x69\x00\ +\x20\x00\x53\x00\x6e\x00\x61\x00\x70\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\x22\x00\x46\x00\x69\x00\x6e\x00\x65\x00\x73\x00\ +\x74\x00\x72\x00\x61\x00\x20\x00\x61\x00\x74\x00\x74\x00\x69\x00\ +\x76\x00\x69\x00\x74\x00\xe0\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\ +\x3e\x00\x49\x00\x6c\x00\x20\x00\x74\x00\x61\x00\x73\x00\x74\x00\ +\x6f\x00\x20\x00\x64\x00\x69\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\ +\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x20\x00\x64\x00\x69\x00\ +\x20\x00\x76\x00\x69\x00\x6e\x00\x63\x00\x6f\x00\x6c\x00\x6f\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\x49\ +\x00\x6c\x00\x20\x00\x74\x00\x61\x00\x73\x00\x74\x00\x6f\x00\x20\ +\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\ +\x00\x74\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\x20\x61\x6c\ +\x74\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x8e\x00\x49\x00\x6c\x00\x20\x00\x66\x00\x69\ +\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x69\x00\x20\x00\x6d\x00\x61\ +\x00\x70\x00\x70\x00\x61\x00\x74\x00\x75\x00\x72\x00\x61\x00\x20\ +\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x70\ +\x00\x65\x00\x72\x00\x20\x00\x74\x00\x72\x00\x61\x00\x64\x00\x75\ +\x00\x72\x00\x72\x00\x65\x00\x20\x00\x69\x00\x20\x00\x63\x00\x6f\ +\x00\x6c\x00\x6f\x00\x72\x00\x69\x00\x20\x00\x64\x00\x78\x00\x66\ +\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x73\x00\x70\x00\x65\x00\x73\ +\x00\x73\x00\x6f\x00\x72\x00\x69\x00\x20\x00\x6c\x00\x69\x00\x6e\ +\x00\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x41\x54\x68\ +\x65\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\ +\x66\x69\x6c\x65\x20\x66\x6f\x72\x20\x74\x72\x61\x6e\x73\x6c\x61\ +\x74\x69\x6e\x67\x20\x64\x78\x66\x20\x63\x6f\x6c\x6f\x72\x73\x20\ +\x69\x6e\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x73\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x9c\x00\x49\x00\x6c\x00\x20\x00\x6d\x00\ +\x6f\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x6f\x00\x20\x00\x70\x00\ +\x72\x00\x65\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\ +\x74\x00\x6f\x00\x20\x00\x64\x00\x61\x00\x20\x00\x75\x00\x74\x00\ +\x69\x00\x6c\x00\x69\x00\x7a\x00\x7a\x00\x61\x00\x72\x00\x65\x00\ +\x20\x00\x71\x00\x75\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\ +\x73\x00\x69\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x20\x00\ +\x75\x00\x6e\x00\x20\x00\x6e\x00\x75\x00\x6f\x00\x76\x00\x6f\x00\ +\x20\x00\x66\x00\x6f\x00\x67\x00\x6c\x00\x69\x00\x6f\x00\x20\x00\ +\x64\x00\x69\x00\x20\x00\x64\x00\x69\x00\x73\x00\x65\x00\x67\x00\ +\x6e\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3d\x54\x68\x65\ +\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x6d\x70\x6c\x61\x74\ +\x65\x20\x74\x6f\x20\x75\x73\x65\x20\x77\x68\x65\x6e\x20\x63\x72\ +\x65\x61\x74\x69\x6e\x67\x20\x61\x20\x6e\x65\x77\x20\x64\x72\x61\ +\x77\x69\x6e\x67\x20\x73\x68\x65\x65\x74\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\xa4\x00\x49\x00\x6c\x00\x20\x00\x6e\x00\x75\x00\x6d\x00\x65\ +\x00\x72\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x20\x00\x64\x00\x65\ +\x00\x63\x00\x69\x00\x6d\x00\x61\x00\x6c\x00\x69\x00\x20\x00\x6e\ +\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x70\x00\x65\ +\x00\x72\x00\x61\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x69\x00\x20\ +\x00\x63\x00\x6f\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x6f\x00\x72\ +\x00\x64\x00\x69\x00\x6e\x00\x61\x00\x74\x00\x65\x00\x20\x00\x69\ +\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x65\x00\x20\x00\x28\ +\x00\x61\x00\x64\x00\x20\x00\x65\x00\x73\x00\x65\x00\x6d\x00\x70\ +\x00\x69\x00\x6f\x00\x20\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\xae\x00\x49\x00\x6c\x00\x20\x00\x72\x00\x61\x00\ +\x67\x00\x67\x00\x69\x00\x6f\x00\x20\x00\x70\x00\x65\x00\x72\x00\ +\x20\x00\x6c\x00\x27\x00\x61\x00\x67\x00\x67\x00\x61\x00\x6e\x00\ +\x63\x00\x69\x00\x6f\x00\x20\x00\x61\x00\x69\x00\x20\x00\x70\x00\ +\x75\x00\x6e\x00\x74\x00\x69\x00\x20\x00\x73\x00\x70\x00\x65\x00\ +\x63\x00\x69\x00\x61\x00\x6c\x00\x69\x00\x2e\x00\x20\x00\x49\x00\ +\x6d\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x20\x00\x61\x00\ +\x20\x00\x30\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x6e\x00\ +\x65\x00\x73\x00\x73\x00\x75\x00\x6e\x00\x61\x00\x20\x00\x64\x00\ +\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x7a\x00\x61\x00\x20\x00\ +\x28\x00\x69\x00\x6e\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\ +\x6f\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\x34\x00\x49\x00\x6c\x00\x20\x00\x74\x00\x61\x00\x73\x00\ +\x74\x00\x6f\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\ +\x69\x00\x63\x00\x61\x00\x74\x00\x6f\x00\x72\x00\x65\x00\x20\x00\ +\x73\x00\x6e\x00\x61\x00\x70\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\x4c\ +\x00\x61\x00\x20\x00\x73\x00\x70\x00\x61\x00\x7a\x00\x69\x00\x61\ +\x00\x74\x00\x75\x00\x72\x00\x61\x00\x20\x00\x74\x00\x72\x00\x61\ +\x00\x20\x00\x6f\x00\x67\x00\x6e\x00\x69\x00\x20\x00\x72\x00\x69\ +\x00\x67\x00\x61\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x61\ +\x00\x20\x00\x67\x00\x72\x00\x69\x00\x67\x00\x6c\x00\x69\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x54\x68\x65\x20\x73\x70\ +\x61\x63\x69\x6e\x67\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x65\x61\ +\x63\x68\x20\x67\x72\x69\x64\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x02\x74\x00\x51\x00\x75\x00\x65\x00\x73\x00\x74\x00\x61\ +\x00\x20\x00\xe8\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6d\x00\x6f\ +\x00\x64\x00\x61\x00\x6c\x00\x69\x00\x74\x00\xe0\x00\x20\x00\x64\ +\x00\x69\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x66\ +\x00\x61\x00\x63\x00\x63\x00\x69\x00\x61\x00\x20\x00\x75\x00\x74\ +\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\ +\x00\x63\x00\x75\x00\x69\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x6d\ +\x00\x6f\x00\x64\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x00\x20\x00\x66\x00\x75\x00\x6e\x00\x7a\ +\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x72\x00\xe0\x00\x3a\x00\x20\ +\x00\x6c\x00\x61\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x61\x00\x6c\ +\x00\x69\x00\x74\x00\xe0\x00\x20\x00\x62\x00\x61\x00\x72\x00\x72\ +\x00\x61\x00\x20\x00\x64\x00\x65\x00\x67\x00\x6c\x00\x69\x00\x20\ +\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x00\x69\x00\x20\x00\x70\x00\x6f\x00\x72\x00\x72\x00\xe0\x00\x20\ +\x00\x74\x00\x75\x00\x74\x00\x74\x00\x65\x00\x20\x00\x6c\x00\x65\ +\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x61\ +\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x69\x00\x20\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x75\ +\x00\x6e\x00\x61\x00\x20\x00\x62\x00\x61\x00\x72\x00\x72\x00\x61\ +\x00\x20\x00\x64\x00\x65\x00\x67\x00\x6c\x00\x69\x00\x20\x00\x73\ +\x00\x74\x00\x72\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x69\ +\x00\x20\x00\x73\x00\x65\x00\x70\x00\x61\x00\x72\x00\x61\x00\x74\ +\x00\x61\x00\x2c\x00\x20\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x72\ +\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6d\x00\x6f\x00\x64\ +\x00\x61\x00\x6c\x00\x69\x00\x74\x00\xe0\x00\x20\x00\x62\x00\x61\ +\x00\x72\x00\x72\x00\x61\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x6c\ +\x00\x65\x00\x20\x00\x61\x00\x74\x00\x74\x00\x69\x00\x76\x00\x69\ +\x00\x74\x00\xe0\x00\x20\x00\x75\x00\x74\x00\x69\x00\x6c\x00\x69\ +\x00\x7a\x00\x7a\x00\x65\x00\x72\x00\xe0\x00\x20\x00\x69\x00\x6c\ +\x00\x20\x00\x73\x00\x69\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x61\ +\x00\x20\x00\x66\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x74\x00\x72\ +\x00\x61\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x61\x00\x20\ +\x00\x61\x00\x74\x00\x74\x00\x69\x00\x76\x00\x69\x00\x74\x00\xe0\ +\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\ +\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x74\x00\x75\x00\x74\ +\x00\x74\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x73\x00\x75\ +\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x61\ +\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x69\x00\x20\x00\x75\x00\x74\ +\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\xcf\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x55\x49\ +\x20\x6d\x6f\x64\x65\x20\x69\x6e\x20\x77\x68\x69\x63\x68\x20\x74\ +\x68\x65\x20\x44\x72\x61\x66\x74\x20\x6d\x6f\x64\x75\x6c\x65\x20\ +\x77\x69\x6c\x6c\x20\x77\x6f\x72\x6b\x3a\x20\x54\x6f\x6f\x6c\x62\ +\x61\x72\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x70\x6c\x61\ +\x63\x65\x20\x61\x6c\x6c\x20\x44\x72\x61\x66\x74\x20\x73\x65\x74\ +\x74\x69\x6e\x67\x73\x20\x69\x6e\x20\x61\x20\x73\x65\x70\x61\x72\ +\x61\x74\x65\x20\x74\x6f\x6f\x6c\x62\x61\x72\x2c\x20\x77\x68\x69\ +\x6c\x65\x20\x74\x61\x73\x6b\x62\x61\x72\x20\x6d\x6f\x64\x65\x20\ +\x77\x69\x6c\x6c\x20\x75\x73\x65\x20\x74\x68\x65\x20\x46\x72\x65\ +\x65\x43\x41\x44\x20\x54\x61\x73\x6b\x76\x69\x65\x77\x20\x73\x79\ +\x73\x74\x65\x6d\x20\x66\x6f\x72\x20\x61\x6c\x6c\x20\x69\x74\x73\ +\x20\x75\x73\x65\x72\x20\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x6f\ +\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\xc4\x00\x51\x00\x75\x00\x65\x00\ +\x73\x00\x74\x00\x6f\x00\x20\x00\xe8\x00\x20\x00\x69\x00\x6c\x00\ +\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\x20\x00\ +\x70\x00\x72\x00\x65\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\ +\x69\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\ +\x67\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\ +\x74\x00\x74\x00\x69\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x66\x00\ +\x61\x00\x73\x00\x65\x00\x20\x00\x64\x00\x69\x00\x20\x00\x65\x00\ +\x6c\x00\x61\x00\x62\x00\x6f\x00\x72\x00\x61\x00\x7a\x00\x69\x00\ +\x6f\x00\x6e\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x6d\x00\ +\x6f\x00\x64\x00\x61\x00\x6c\x00\x69\x00\x74\x00\xe0\x00\x20\x00\ +\x64\x00\x69\x00\x20\x00\x63\x00\x6f\x00\x73\x00\x74\x00\x72\x00\ +\x75\x00\x7a\x00\x69\x00\x6f\x00\x6e\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\x02\x26\x00\x51\x00\x75\ +\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\x00\xe8\x00\x20\x00\x69\ +\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\x6d\x00\x65\x00\x20\x00\x64\ +\x00\x65\x00\x6c\x00\x20\x00\x63\x00\x61\x00\x72\x00\x61\x00\x74\ +\x00\x74\x00\x65\x00\x72\x00\x65\x00\x20\x00\x70\x00\x72\x00\x65\ +\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\x6f\ +\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x74\x00\x75\x00\x74\ +\x00\x74\x00\x69\x00\x20\x00\x69\x00\x20\x00\x74\x00\x65\x00\x73\ +\x00\x74\x00\x69\x00\x20\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x20\ +\x00\x71\x00\x75\x00\x6f\x00\x74\x00\x65\x00\x20\x00\x6e\x00\x65\ +\x00\x6c\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x6c\x00\x6f\ +\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x2e\x00\x0a\ +\x00\x50\x00\x75\x00\xf2\x00\x20\x00\x65\x00\x73\x00\x73\x00\x65\ +\x00\x72\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6e\x00\x6f\ +\x00\x6d\x00\x65\x00\x20\x00\x64\x00\x69\x00\x20\x00\x63\x00\x61\ +\x00\x72\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x65\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x65\x00\x20\x00\x22\x00\x41\x00\x72\ +\x00\x69\x00\x61\x00\x6c\x00\x22\x00\x2c\x00\x20\x00\x75\x00\x6e\ +\x00\x6f\x00\x20\x00\x73\x00\x74\x00\x69\x00\x6c\x00\x65\x00\x20\ +\x00\x70\x00\x72\x00\x65\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\ +\x00\x69\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x65\ +\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\x6f\x00\x20\x00\x22\x00\x6d\x00\x6f\x00\x6e\x00\x6f\ +\x00\x22\x00\x2c\x00\x20\x00\x6f\x00\x20\x00\x75\x00\x6e\x00\x61\ +\x00\x20\x00\x66\x00\x61\x00\x6d\x00\x69\x00\x67\x00\x6c\x00\x69\ +\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x65\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\x6f\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6e\x00\x6f\x00\x6d\ +\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x20\x00\x75\x00\x6e\ +\x00\x6f\x00\x20\x00\x73\x00\x74\x00\x69\x00\x6c\x00\x65\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x65\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\x8e\x00\x51\x00\x75\x00\x65\x00\x73\x00\x74\ +\x00\x6f\x00\x20\x00\xe8\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x6e\ +\x00\x6f\x00\x6d\x00\x65\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\ +\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\x6f\x00\x20\ +\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x67\x00\x72\x00\x75\x00\x70\ +\x00\x70\x00\x6f\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x6c\ +\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\x64\x00\x69\x00\x20\x00\x63\ +\x00\x6f\x00\x73\x00\x74\x00\x72\x00\x75\x00\x7a\x00\x69\x00\x6f\ +\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x54\x68\ +\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\ +\x74\x20\x67\x72\x6f\x75\x70\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\ +\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x67\x65\ +\x6f\x6d\x65\x74\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xaa\x00\x51\ +\x00\x75\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\x00\xe8\x00\x20\ +\x00\x69\x00\x6c\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x6f\x00\x64\ +\x00\x6f\x00\x20\x00\x73\x00\x63\x00\x65\x00\x6c\x00\x74\x00\x6f\ +\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x27\x00\x69\ +\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x7a\x00\x69\ +\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x64\x00\x65\x00\x69\x00\x20\ +\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x69\x00\x20\x00\x64\ +\x00\x65\x00\x67\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\x67\x00\x67\ +\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\x53\x00\x56\x00\x47\ +\x00\x20\x00\x69\x00\x6e\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\ +\x0c\x00\x51\x00\x75\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\x00\ +\xe8\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x6d\x00\x65\x00\x74\x00\ +\x6f\x00\x64\x00\x6f\x00\x20\x00\x73\x00\x63\x00\x65\x00\x6c\x00\ +\x74\x00\x6f\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x6c\x00\ +\x27\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\ +\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x20\x00\ +\x6c\x00\x61\x00\x20\x00\x74\x00\x72\x00\x61\x00\x64\x00\x75\x00\ +\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x64\x00\x65\x00\ +\x6c\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\ +\x20\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x27\x00\x6f\x00\x67\x00\ +\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\x44\x00\x58\x00\ +\x46\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x46\x00\x72\x00\x65\x00\ +\x65\x00\x43\x00\x41\x00\x44\x00\x2e\x00\x0a\x00\x53\x00\x65\x00\ +\x20\x00\x6c\x00\x61\x00\x20\x00\x6d\x00\x61\x00\x70\x00\x70\x00\ +\x61\x00\x74\x00\x75\x00\x72\x00\x61\x00\x20\x00\x63\x00\x6f\x00\ +\x6c\x00\x6f\x00\x72\x00\x65\x00\x20\x00\xe8\x00\x20\x00\x73\x00\ +\x63\x00\x65\x00\x6c\x00\x74\x00\x61\x00\x2c\x00\x20\x00\xe8\x00\ +\x20\x00\x6e\x00\x65\x00\x63\x00\x65\x00\x73\x00\x73\x00\x61\x00\ +\x72\x00\x69\x00\x6f\x00\x20\x00\x73\x00\x63\x00\x65\x00\x67\x00\ +\x6c\x00\x69\x00\x65\x00\x72\x00\x65\x00\x20\x00\x75\x00\x6e\x00\ +\x20\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x69\x00\ +\x20\x00\x6d\x00\x61\x00\x70\x00\x70\x00\x61\x00\x74\x00\x75\x00\ +\x72\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ +\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x65\x00\x6e\x00\ +\x65\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x61\x00\ +\x20\x00\x74\x00\x61\x00\x62\x00\x65\x00\x6c\x00\x6c\x00\x61\x00\ +\x20\x00\x64\x00\x69\x00\x20\x00\x74\x00\x72\x00\x61\x00\x64\x00\ +\x75\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x63\x00\ +\x68\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\ +\x72\x00\x74\x00\x65\x00\x20\x00\x69\x00\x20\x00\x63\x00\x6f\x00\ +\x6c\x00\x6f\x00\x72\x00\x69\x00\x20\x00\x69\x00\x6e\x00\x20\x00\ +\x73\x00\x70\x00\x65\x00\x73\x00\x73\x00\x6f\x00\x72\x00\x69\x00\ +\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x61\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\ +\x01\x00\x00\x51\x00\x75\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\ +\x00\xe8\x00\x20\x00\x6c\x00\x27\x00\x6f\x00\x72\x00\x69\x00\x65\ +\x00\x6e\x00\x74\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\ +\x00\x20\x00\x64\x00\x65\x00\x69\x00\x20\x00\x74\x00\x65\x00\x73\ +\x00\x74\x00\x69\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x65\ +\x00\x20\x00\x71\x00\x75\x00\x6f\x00\x74\x00\x65\x00\x20\x00\x71\ +\x00\x75\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x74\x00\x61\ +\x00\x6c\x00\x69\x00\x20\x00\x71\x00\x75\x00\x6f\x00\x74\x00\x65\ +\x00\x20\x00\x73\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\x76\x00\x65\ +\x00\x72\x00\x74\x00\x69\x00\x63\x00\x61\x00\x6c\x00\x65\x00\x2e\ +\x00\x20\x00\x50\x00\x72\x00\x65\x00\x64\x00\x65\x00\x66\x00\x69\ +\x00\x6e\x00\x69\x00\x74\x00\x6f\x00\x20\x00\xe8\x00\x20\x00\x61\ +\x00\x20\x00\x73\x00\x69\x00\x6e\x00\x69\x00\x73\x00\x74\x00\x72\ +\x00\x61\x00\x2c\x00\x20\x00\x63\x00\x68\x00\x65\x00\x20\x00\xe8\ +\x00\x20\x00\x6c\x00\x6f\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\ +\x00\x64\x00\x61\x00\x72\x00\x64\x00\x20\x00\x49\x00\x53\x00\x4f\ +\x00\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\x3c\x00\x51\x00\x75\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\ +\x00\xe8\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x76\x00\x61\x00\x6c\ +\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x75\x00\x74\x00\x69\x00\x6c\ +\x00\x69\x00\x7a\x00\x7a\x00\x61\x00\x74\x00\x6f\x00\x20\x00\x64\ +\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x66\x00\x75\x00\x6e\ +\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x69\x00\x20\x00\x63\x00\x68\ +\x00\x65\x00\x20\x00\x75\x00\x74\x00\x69\x00\x6c\x00\x69\x00\x7a\ +\x00\x7a\x00\x61\x00\x6e\x00\x6f\x00\x20\x00\x75\x00\x6e\x00\x61\ +\x00\x20\x00\x74\x00\x6f\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x61\ +\x00\x6e\x00\x7a\x00\x61\x00\x2e\x00\x20\x00\x49\x00\x20\x00\x76\ +\x00\x61\x00\x6c\x00\x6f\x00\x72\x00\x69\x00\x20\x00\x63\x00\x6f\ +\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x66\x00\x66\x00\x65\x00\x72\ +\x00\x65\x00\x6e\x00\x7a\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x20\ +\x00\x64\x00\x69\x00\x20\x00\x73\x00\x6f\x00\x74\x00\x74\x00\x6f\ +\x00\x20\x00\x64\x00\x69\x00\x20\x00\x71\x00\x75\x00\x65\x00\x73\ +\x00\x74\x00\x6f\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x6f\x00\x72\ +\x00\x65\x00\x20\x00\x73\x00\x61\x00\x72\x00\x61\x00\x6e\x00\x6e\ +\x00\x6f\x00\x20\x00\x74\x00\x72\x00\x61\x00\x74\x00\x74\x00\x61\ +\x00\x74\x00\x69\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x65\x00\x20\ +\x00\x75\x00\x67\x00\x75\x00\x61\x00\x6c\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\x14\x00\x54\x00\x6f\x00\ +\x6c\x00\x6c\x00\x65\x00\x72\x00\x61\x00\x6e\x00\x7a\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\x6f\x6c\x65\x72\x61\x6e\ +\x63\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x42\x00\x61\x00\x72\ +\x00\x72\x00\x61\x00\x20\x00\x64\x00\x65\x00\x67\x00\x6c\x00\x69\ +\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6d\x00\x65\x00\x6e\ +\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x55\x00\ +\x73\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ +\x65\x00\x20\x00\x65\x00\x20\x00\x73\x00\x70\x00\x65\x00\x73\x00\ +\x73\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\ +\x65\x00\x61\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\x00\x65\x00\ +\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\x69\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1f\x55\x73\x65\x20\x64\x65\x66\x61\x75\x6c\x74\ +\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\ +\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x55\x00\x73\ +\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x67\x00\x72\x00\x69\ +\x00\x67\x00\x6c\x00\x69\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\x58\x00\x4f\x00\x72\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x61\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x65\ +\x00\x6c\x00\x20\x00\x74\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\ +\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x71\x00\x75\ +\x00\x6f\x00\x74\x00\x65\x00\x20\x00\x76\x00\x65\x00\x72\x00\x74\ +\x00\x69\x00\x63\x00\x61\x00\x6c\x00\x69\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\xa6\ +\x00\x51\x00\x75\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x73\ +\x00\x69\x00\x20\x00\x65\x00\x73\x00\x70\x00\x6f\x00\x72\x00\x74\ +\x00\x61\x00\x6e\x00\x6f\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x73\ +\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x69\x00\x6e\ +\x00\x20\x00\x44\x00\x58\x00\x46\x00\x2c\x00\x20\x00\x73\x00\x61\ +\x00\x72\x00\x61\x00\x6e\x00\x6e\x00\x6f\x00\x20\x00\x74\x00\x72\ +\x00\x61\x00\x73\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\ +\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x70\x00\x6f\x00\x6c\ +\x00\x69\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x65\x00\x2e\x00\x20\ +\x00\x51\x00\x75\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\x00\x76\ +\x00\x61\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\x20\x00\xe8\x00\x20\ +\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\x75\x00\x6e\x00\x67\x00\x68\ +\x00\x65\x00\x7a\x00\x7a\x00\x61\x00\x20\x00\x6d\x00\x61\x00\x73\ +\x00\x73\x00\x69\x00\x6d\x00\x61\x00\x20\x00\x64\x00\x69\x00\x20\ +\x00\x63\x00\x69\x00\x61\x00\x73\x00\x63\x00\x75\x00\x6e\x00\x20\ +\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\ +\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x70\ +\x00\x6f\x00\x6c\x00\x69\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x61\ +\x00\x2e\x00\x20\x00\x53\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x74\x00\x6f\x00\x20\x00\x61\ +\x00\x20\x00\x30\x00\x2c\x00\x20\x00\x6c\x00\x27\x00\x69\x00\x6e\ +\x00\x74\x00\x65\x00\x72\x00\x61\x00\x20\x00\x73\x00\x70\x00\x6c\ +\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x73\x00\x61\x00\x72\x00\xe0\ +\x00\x20\x00\x74\x00\x72\x00\x61\x00\x74\x00\x74\x00\x61\x00\x74\ +\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x65\x00\x20\x00\x75\ +\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\ +\x00\x74\x00\x6f\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\x1c\x00\x58\x00\x59\x00\x20\ +\x00\x28\x00\x73\x00\x75\x00\x70\x00\x65\x00\x72\x00\x69\x00\x6f\ +\x00\x72\x00\x65\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\ +\x58\x59\x20\x28\x54\x6f\x70\x29\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\ +\x00\x58\x00\x5a\x00\x20\x00\x28\x00\x61\x00\x6e\x00\x74\x00\x65\ +\x00\x72\x00\x69\x00\x6f\x00\x72\x00\x65\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\x1a\x00\x59\x00\x5a\x00\x20\x00\x28\ +\x00\x6c\x00\x61\x00\x74\x00\x65\x00\x72\x00\x61\x00\x6c\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\x01\x18\x00\x53\x00\x65\x00\x6c\x00\x65\ +\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x65\x00\x20\ +\x00\x71\x00\x75\x00\x65\x00\x73\x00\x74\x00\x61\x00\x20\x00\x6f\ +\x00\x70\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x73\ +\x00\x65\x00\x20\x00\x73\x00\x69\x00\x20\x00\x64\x00\x65\x00\x73\ +\x00\x69\x00\x64\x00\x65\x00\x72\x00\x61\x00\x20\x00\x75\x00\x74\ +\x00\x69\x00\x6c\x00\x69\x00\x7a\x00\x7a\x00\x61\x00\x72\x00\x65\ +\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\ +\x00\x72\x00\x65\x00\x20\x00\x65\x00\x20\x00\x6c\x00\x6f\x00\x20\ +\x00\x73\x00\x70\x00\x65\x00\x73\x00\x73\x00\x6f\x00\x72\x00\x65\ +\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x61\x00\x20\x00\x64\ +\x00\x61\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x62\x00\x61\x00\x72\ +\x00\x72\x00\x61\x00\x20\x00\x64\x00\x65\x00\x67\x00\x6c\x00\x69\ +\x00\x20\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6d\x00\x65\x00\x6e\ +\x00\x74\x00\x69\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x65\x00\x20\ +\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x7a\ +\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x70\x00\x72\x00\x65\ +\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\x61\ +\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\x86\x00\x73\x00\ +\x65\x00\x20\x00\x71\x00\x75\x00\x65\x00\x73\x00\x74\x00\x61\x00\ +\x20\x00\x6f\x00\x70\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\ +\x20\x00\xe8\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\ +\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\x61\x00\x2c\x00\x20\x00\ +\x67\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\ +\x74\x00\x74\x00\x69\x00\x20\x00\x61\x00\x70\x00\x70\x00\x61\x00\ +\x72\x00\x74\x00\x65\x00\x6e\x00\x65\x00\x6e\x00\x74\x00\x69\x00\ +\x20\x00\x61\x00\x67\x00\x6c\x00\x69\x00\x20\x00\x73\x00\x74\x00\ +\x65\x00\x73\x00\x73\x00\x69\x00\x20\x00\x6c\x00\x69\x00\x76\x00\ +\x65\x00\x6c\x00\x6c\x00\x69\x00\x20\x00\x73\x00\x61\x00\x72\x00\ +\x61\x00\x6e\x00\x6e\x00\x6f\x00\x20\x00\x75\x00\x6e\x00\x69\x00\ +\x74\x00\x69\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x62\x00\x6c\x00\ +\x6f\x00\x63\x00\x63\x00\x68\x00\x69\x00\x20\x00\x44\x00\x72\x00\ +\x61\x00\x66\x00\x74\x00\x2c\x00\x20\x00\x41\x00\x75\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\ +\x6c\x00\x61\x00\x20\x00\x76\x00\x65\x00\x6c\x00\x6f\x00\x63\x00\ +\x69\x00\x74\x00\xe0\x00\x20\x00\x64\x00\x69\x00\x20\x00\x76\x00\ +\x69\x00\x73\x00\x75\x00\x61\x00\x6c\x00\x69\x00\x7a\x00\x7a\x00\ +\x61\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x2c\x00\x20\x00\ +\x6d\x00\x61\x00\x20\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\ +\x6e\x00\x64\x00\x6f\x00\x6c\x00\x69\x00\x20\x00\x6d\x00\x65\x00\ +\x6e\x00\x6f\x00\x20\x00\x66\x00\x61\x00\x63\x00\x69\x00\x6c\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x6d\x00\x6f\x00\ +\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x62\x00\x69\x00\ +\x6c\x00\x69\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\xae\x00\x53\x00\x65\x00\x20\x00\x71\ +\x00\x75\x00\x65\x00\x73\x00\x74\x00\x61\x00\x20\x00\x6f\x00\x70\ +\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\xe8\x00\x20\ +\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\ +\x00\x61\x00\x74\x00\x61\x00\x2c\x00\x20\x00\x61\x00\x6e\x00\x63\ +\x00\x68\x00\x65\x00\x20\x00\x67\x00\x6c\x00\x69\x00\x20\x00\x6f\ +\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\x64\ +\x00\x65\x00\x6c\x00\x6c\x00\x6f\x00\x20\x00\x73\x00\x70\x00\x61\ +\x00\x7a\x00\x69\x00\x6f\x00\x20\x00\x63\x00\x61\x00\x72\x00\x74\ +\x00\x61\x00\x20\x00\x73\x00\x61\x00\x72\x00\x61\x00\x6e\x00\x6e\ +\x00\x6f\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\ +\x00\x61\x00\x74\x00\x69\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\x8e\x00\x53\x00\x65\x00\x20\x00\x71\x00\x75\x00\x65\ +\x00\x73\x00\x74\x00\x61\x00\x20\x00\x6f\x00\x70\x00\x7a\x00\x69\ +\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x20\ +\x00\xe8\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\ +\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\x61\x00\x2c\x00\x20\x00\x69\ +\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x2f\x00\x6d\x00\x74\ +\x00\x65\x00\x78\x00\x74\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x20\ +\x00\x73\x00\x61\x00\x72\x00\x61\x00\x6e\x00\x6e\x00\x6f\x00\x20\ +\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x74\ +\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x69\x66\x20\x74\ +\x68\x69\x73\x20\x69\x73\x20\x75\x6e\x63\x68\x65\x63\x6b\x65\x64\ +\x2c\x20\x74\x65\x78\x74\x73\x2f\x6d\x74\x65\x78\x74\x73\x20\x77\ +\x6f\x6e\x27\x74\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x04\x00\x70\x00\x78\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x02\x70\x78\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\ +\x00\x6d\x00\x61\x00\x69\x00\x75\x00\x73\x00\x63\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\x52\x00\x69\x00\x6c\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\ +\x6f\x00\x72\x00\x65\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\x00\ +\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\x6f\x00\x20\x00\ +\x70\x00\x65\x00\x72\x00\x20\x00\x69\x00\x20\x00\x6e\x00\x75\x00\ +\x6f\x00\x76\x00\x69\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\ +\x74\x00\x74\x00\x69\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\x00\x69\x00\x6c\x00\x20\x00\x63\ +\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\x20\x00\x70\x00\x72\ +\x00\x65\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\ +\x00\x6f\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x69\x00\x20\ +\x00\x73\x00\x69\x00\x6d\x00\x62\x00\x6f\x00\x6c\x00\x69\x00\x20\ +\x00\x73\x00\x6e\x00\x61\x00\x70\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\x62\x00\x6c\x00\x6f\ +\x00\x20\x00\x73\x00\x70\x00\x65\x00\x73\x00\x73\x00\x6f\x00\x72\ +\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x61\x00\x20\ +\x00\x70\x00\x72\x00\x65\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\ +\x00\x69\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\ +\x00\x69\x00\x20\x00\x6e\x00\x75\x00\x6f\x00\x76\x00\x69\x00\x20\ +\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x25\x74\x68\x65\x20\x64\x65\x66\x61\ +\x75\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x6f\ +\x72\x20\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0e\x00\x26\x00\x43\x00\x68\x00\x69\x00\x75\x00\ +\x64\x00\x69\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\x43\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\ +\x6e\x00\x75\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\ +\x43\x6f\x6e\x74\x69\x6e\x75\x65\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x26\x00\x43\x00\x6f\x00\x70\ +\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x43\ +\x6f\x70\x79\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x10\x00\x26\x00\x54\x00\x65\x00\x72\x00\x6d\x00\x69\x00\ +\x6e\x00\x61\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\x4f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\ +\x00\x20\x00\x73\x00\x74\x00\x69\x00\x6c\x00\x65\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\ +\x12\x00\x26\x00\x52\x00\x65\x00\x6c\x00\x61\x00\x74\x00\x69\x00\ +\x76\x00\x6f\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\x00\x26\x00\x41\x00\x6e\x00\x6e\x00\x75\ +\x00\x6c\x00\x6c\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x26\x55\x6e\x64\x6f\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x10\x00\x26\x00\x50\x00\x75\x00\x6c\x00\x69\x00\ +\x73\x00\x63\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\x43\x00\x6f\x00\x6d\x00\x61\x00\x6e\x00\x64\ +\x00\x6f\x00\x20\x00\x61\x00\x74\x00\x74\x00\x69\x00\x76\x00\x6f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x62\x00\x4c\ +\x00\x27\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\ +\x00\x20\x00\x61\x00\x74\x00\x74\x00\x69\x00\x76\x00\x6f\x00\x20\ +\x00\x64\x00\x65\x00\x76\x00\x65\x00\x20\x00\x61\x00\x76\x00\x65\ +\x00\x72\x00\x65\x00\x20\x00\x70\x00\x69\x00\xf9\x00\x20\x00\x64\ +\x00\x69\x00\x20\x00\x64\x00\x75\x00\x65\x00\x20\x00\x70\x00\x75\ +\x00\x6e\x00\x74\x00\x69\x00\x2f\x00\x6e\x00\x6f\x00\x64\x00\x69\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x41\x63\x74\x69\x76\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x6d\x75\x73\x74\x20\x68\x61\x76\ +\x65\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\x74\x77\x6f\x20\ +\x70\x6f\x69\x6e\x74\x73\x2f\x6e\x6f\x64\x65\x73\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x41\x00\ +\x67\x00\x67\x00\x69\x00\x75\x00\x6e\x00\x67\x00\x69\x00\x20\x00\ +\x70\x00\x75\x00\x6e\x00\x74\x00\x69\x00\x20\x00\x61\x00\x6c\x00\ +\x6c\x00\x27\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\ +\x6f\x00\x20\x00\x63\x00\x6f\x00\x72\x00\x72\x00\x65\x00\x6e\x00\ +\x74\x00\x65\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\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x41\x70\x65\x72\x74\x75\x72\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\ +\x41\x00\x6e\x00\x67\x00\x6f\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\ +\x69\x00\x20\x00\x61\x00\x70\x00\x65\x00\x72\x00\x74\x00\x75\x00\ +\x72\x00\x61\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x41\ +\x70\x65\x72\x74\x75\x72\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\x00\ +\x41\x00\x70\x00\x70\x00\x6c\x00\x69\x00\x63\x00\x61\x00\x20\x00\ +\x61\x00\x67\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\x67\x00\x67\x00\ +\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\x69\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\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\x00\x41\x00\x72\x00\x63\x00\x6f\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\x76\x00\x4e\x00\x6f\x00\x6e\x00\x20\x00\ +\xe8\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x73\x00\x69\x00\x62\x00\ +\x69\x00\x6c\x00\x65\x00\x20\x00\x61\x00\x70\x00\x70\x00\x6c\x00\ +\x69\x00\x63\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6c\x00\x27\x00\ +\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x00\x20\x00\x61\x00\ +\x20\x00\x71\x00\x75\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\x00\ +\x74\x00\x69\x00\x70\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x20\x00\ +\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\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\x43\x00\x65\x00\x6e\x00\x74\x00\x72\ +\x00\x6f\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\x61\x00\x6d\x00\x62\ +\x00\x69\x00\x61\x00\x20\x00\x73\x00\x74\x00\x69\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\xd4\x00\x53\x00\x70\x00\x75\x00\x6e\x00\x74\ +\x00\x61\x00\x20\x00\x71\x00\x75\x00\x65\x00\x73\x00\x74\x00\x61\ +\x00\x20\x00\x6f\x00\x70\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\ +\x00\x20\x00\x73\x00\x65\x00\x20\x00\x6c\x00\x27\x00\x6f\x00\x67\ +\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x6f\ +\x00\x76\x00\x72\x00\x65\x00\x62\x00\x62\x00\x65\x00\x20\x00\x61\ +\x00\x70\x00\x70\x00\x61\x00\x72\x00\x69\x00\x72\x00\x65\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x65\x00\x20\x00\x72\x00\x69\x00\x65\ +\x00\x6d\x00\x70\x00\x69\x00\x74\x00\x6f\x00\x2c\x00\x20\x00\x61\ +\x00\x6c\x00\x74\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x00\x69\x00\x20\x00\x61\x00\x70\x00\x70\x00\x61\x00\x72\x00\x69\ +\x00\x72\x00\xe0\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x65\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\x0e\x00\ +\x43\x00\x65\x00\x72\x00\x63\x00\x68\x00\x69\x00\x6f\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\x86\x00\x43\x00\ +\x6f\x00\x6f\x00\x72\x00\x64\x00\x69\x00\x6e\x00\x61\x00\x74\x00\ +\x65\x00\x20\x00\x72\x00\x65\x00\x6c\x00\x61\x00\x74\x00\x69\x00\ +\x76\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x27\x00\x75\x00\ +\x6c\x00\x74\x00\x69\x00\x6d\x00\x6f\x00\x20\x00\x70\x00\x75\x00\ +\x6e\x00\x74\x00\x6f\x00\x20\x00\x6f\x00\x20\x00\x61\x00\x73\x00\ +\x73\x00\x6f\x00\x6c\x00\x75\x00\x74\x00\x65\x00\x20\x00\x28\x00\ +\x42\x00\x41\x00\x52\x00\x52\x00\x41\x00\x20\x00\x53\x00\x50\x00\ +\x41\x00\x5a\x00\x49\x00\x41\x00\x54\x00\x52\x00\x49\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\x0a\x00\x43\x00\x6f\x00\x70\x00\x69\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x43\x6f\x70\x79\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x43\x00\x72\x00\ +\x65\x00\x61\x00\x20\x00\x41\x00\x72\x00\x63\x00\x6f\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\ +\x18\x00\x43\x00\x72\x00\x65\x00\x61\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\ +\x24\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x43\x00\x69\x00\ +\x72\x00\x63\x00\x6f\x00\x6e\x00\x66\x00\x65\x00\x72\x00\x65\x00\ +\x6e\x00\x7a\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\x14\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x20\x00\x51\x00\x75\x00\x6f\x00\x74\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\x74\x65\ +\x20\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x20\x00\x50\x00\x6f\x00\x6c\x00\x69\x00\x67\x00\x6f\ +\x00\x6e\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x43\x72\ +\x65\x61\x74\x65\x20\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x20\x00\x52\x00\x65\x00\x74\x00\x74\x00\x61\ +\x00\x6e\x00\x67\x00\x6f\x00\x6c\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x43\x72\x65\x61\x74\x65\x20\x52\x65\x63\x74\x61\ +\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x14\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x54\ +\x00\x65\x00\x73\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x54\x65\x78\x74\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x43\x00\ +\x72\x00\x65\x00\x61\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\x22\x00\x45\x00\x6c\x00\x69\x00\x6d\x00\x69\x00\x6e\ +\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x4d\x00\x69\x00\x73\ +\x00\x75\x00\x72\x00\x61\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\x7a\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5a\x00\x4e\x00\x6f\x00\ +\x6e\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x69\x00\x65\x00\x74\x00\ +\x74\x00\x61\x00\x72\x00\x65\x00\x20\x00\x69\x00\x20\x00\x70\x00\ +\x75\x00\x6e\x00\x74\x00\x69\x00\x20\x00\x73\x00\x75\x00\x20\x00\ +\x75\x00\x6e\x00\x20\x00\x70\x00\x69\x00\x61\x00\x6e\x00\x6f\x00\ +\x20\x00\x64\x00\x69\x00\x20\x00\x64\x00\x69\x00\x73\x00\x65\x00\ +\x67\x00\x6e\x00\x6f\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\x36\x00\x49\x00\x20\x00\ +\x62\x00\x6f\x00\x72\x00\x64\x00\x69\x00\x20\x00\x6e\x00\x6f\x00\ +\x6e\x00\x20\x00\x73\x00\x69\x00\x20\x00\x69\x00\x6e\x00\x74\x00\ +\x65\x00\x72\x00\x73\x00\x65\x00\x63\x00\x61\x00\x6e\x00\x6f\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\x10\x00\x4d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\ +\x00\x52\x00\x26\x00\x69\x00\x65\x00\x6d\x00\x70\x00\x69\x00\x74\ +\x00\x6f\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\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\ +\x20\x00\x66\x00\x61\x00\x63\x00\x63\x00\x69\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x46\x61\x63\x65\x20\x43\x6f\x6c\x6f\ +\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x4c\x00\x54\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\ +\x20\x00\x65\x00\x20\x00\x63\x00\x68\x00\x69\x00\x75\x00\x64\x00\ +\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\ +\x65\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x72\x00\x72\x00\x65\x00\ +\x6e\x00\x74\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\x74\x00\ +\x54\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x20\x00\ +\x69\x00\x6c\x00\x20\x00\x64\x00\x69\x00\x73\x00\x65\x00\x67\x00\ +\x6e\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x72\x00\x72\x00\x65\x00\ +\x6e\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x20\x00\x6c\x00\x27\x00\ +\x6f\x00\x70\x00\x65\x00\x72\x00\x61\x00\x7a\x00\x69\x00\x6f\x00\ +\x6e\x00\x65\x00\x20\x00\x64\x00\x69\x00\x20\x00\x6d\x00\x6f\x00\ +\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x20\x00\x28\x00\ +\x54\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\x28\x00\x44\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\ +\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x63\x00\x61\x00\x72\x00\x61\ +\x00\x74\x00\x74\x00\x65\x00\x72\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\x64\x00\x54\x00\ +\x72\x00\x6f\x00\x76\x00\x61\x00\x74\x00\x6f\x00\x20\x00\x31\x00\ +\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\ +\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x63\x00\x68\x00\x20\x00\ +\x63\x00\x68\x00\x69\x00\x75\x00\x73\x00\x6f\x00\x3a\x00\x20\x00\ +\x63\x00\x72\x00\x65\x00\x61\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\ +\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\x63\x00\x69\x00\x61\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\x52\x00\ +\x54\x00\x72\x00\x6f\x00\x76\x00\x61\x00\x74\x00\x61\x00\x20\x00\ +\x31\x00\x20\x00\x66\x00\x61\x00\x63\x00\x63\x00\x69\x00\x61\x00\ +\x3a\x00\x20\x00\x65\x00\x73\x00\x74\x00\x72\x00\x61\x00\x7a\x00\ +\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x64\x00\x69\x00\x20\x00\ +\x73\x00\x75\x00\x6f\x00\x69\x00\x20\x00\x77\x00\x69\x00\x72\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x46\x6f\x75\x6e\x64\ +\x20\x31\x20\x66\x61\x63\x65\x3a\x20\x65\x78\x74\x72\x61\x63\x74\ +\x69\x6e\x67\x20\x69\x74\x73\x20\x77\x69\x72\x65\x73\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5c\x00\x54\ +\x00\x72\x00\x6f\x00\x76\x00\x61\x00\x74\x00\x6f\x00\x20\x00\x31\ +\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\ +\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\x61\x00\x72\ +\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x63\x00\x6f\ +\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\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\x40\x00\x54\x00\x72\x00\x6f\x00\x76\x00\x61\x00\x74\x00\ +\x6f\x00\x20\x00\x31\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\ +\x20\x00\x61\x00\x70\x00\x65\x00\x72\x00\x74\x00\x6f\x00\x3a\x00\ +\x20\x00\x63\x00\x68\x00\x69\x00\x75\x00\x73\x00\x75\x00\x72\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\x70\x00\x54\x00\x72\x00\ +\x6f\x00\x76\x00\x61\x00\x74\x00\x6f\x00\x20\x00\x31\x00\x20\x00\ +\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\ +\x69\x00\x63\x00\x6f\x00\x3a\x00\x20\x00\x72\x00\x6f\x00\x74\x00\ +\x74\x00\x75\x00\x72\x00\x61\x00\x20\x00\x64\x00\x65\x00\x6c\x00\ +\x6c\x00\x65\x00\x20\x00\x64\x00\x69\x00\x70\x00\x65\x00\x6e\x00\ +\x64\x00\x65\x00\x6e\x00\x7a\x00\x65\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\x62\x00\x54\x00\x72\x00\x6f\ +\x00\x76\x00\x61\x00\x74\x00\x6f\x00\x20\x00\x31\x00\x20\x00\x6f\ +\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\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\x3a\x00\x20\x00\x73\x00\x6f\ +\x00\x6c\x00\x69\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\ +\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\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\x36\x00\x54\x00\x72\x00\x6f\x00\x76\x00\x61\x00\x74\x00\ +\x69\x00\x20\x00\x32\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\ +\x74\x00\x74\x00\x69\x00\x3a\x00\x20\x00\x66\x00\x75\x00\x73\x00\ +\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1d\x46\x6f\x75\x6e\x64\x20\x32\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\ +\x00\x54\x00\x72\x00\x6f\x00\x76\x00\x61\x00\x74\x00\x69\x00\x20\ +\x00\x32\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\ +\x00\x69\x00\x3a\x00\x20\x00\x73\x00\x6f\x00\x74\x00\x74\x00\x72\ +\x00\x61\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x22\x46\x6f\x75\x6e\x64\x20\x32\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x3a\x20\x73\x75\x62\x74\x72\x61\x63\x74\x69\ +\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x4a\x00\x54\x00\x72\x00\x6f\x00\x76\ +\x00\x61\x00\x74\x00\x69\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\ +\x00\x20\x00\x63\x00\x68\x00\x69\x00\x75\x00\x73\x00\x69\x00\x3a\ +\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x7a\x00\x69\x00\x6f\ +\x00\x6e\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\x63\x00\x65\ +\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\x60\x00\x54\x00\ +\x72\x00\x6f\x00\x76\x00\x61\x00\x74\x00\x69\x00\x20\x00\x67\x00\ +\x72\x00\x75\x00\x70\x00\x70\x00\x69\x00\x3a\x00\x20\x00\x63\x00\ +\x68\x00\x69\x00\x75\x00\x73\x00\x75\x00\x72\x00\x61\x00\x20\x00\ +\x64\x00\x69\x00\x20\x00\x6f\x00\x67\x00\x6e\x00\x69\x00\x20\x00\ +\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\ +\x61\x00\x70\x00\x65\x00\x72\x00\x74\x00\x6f\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\x52\x00\x54\x00\x72\x00\x6f\x00\x76\x00\x61\x00\ +\x74\x00\x69\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\ +\x74\x00\x69\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x65\x00\ +\x6e\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x20\x00\x63\x00\x75\x00\ +\x72\x00\x76\x00\x65\x00\x3a\x00\x20\x00\x66\x00\x75\x00\x73\x00\ +\x69\x00\x6f\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2d\x46\x6f\x75\x6e\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x63\ +\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x63\x75\x72\x76\x65\x73\ +\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5a\x00\x54\ +\x00\x72\x00\x6f\x00\x76\x00\x61\x00\x74\x00\x69\x00\x20\x00\x73\ +\x00\x6f\x00\x6c\x00\x6f\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\ +\x00\x3a\x00\x20\x00\x65\x00\x73\x00\x74\x00\x72\x00\x61\x00\x7a\ +\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x64\x00\x65\x00\x69\ +\x00\x20\x00\x6c\x00\x6f\x00\x72\x00\x6f\x00\x20\x00\x62\x00\x6f\ +\x00\x72\x00\x64\x00\x69\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\x72\x00\ +\x6f\x00\x76\x00\x61\x00\x74\x00\x69\x00\x20\x00\x6e\x00\x75\x00\ +\x6d\x00\x65\x00\x72\x00\x6f\x00\x73\x00\x69\x00\x20\x00\x62\x00\ +\x6f\x00\x72\x00\x64\x00\x69\x00\x3a\x00\x20\x00\x75\x00\x6e\x00\ +\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x21\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\ +\x20\x65\x64\x67\x65\x73\x3a\x20\x77\x69\x72\x69\x6e\x67\x20\x74\ +\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x40\x00\x54\x00\x72\x00\x6f\x00\x76\x00\x61\x00\x74\ +\x00\x65\x00\x20\x00\x64\x00\x69\x00\x76\x00\x65\x00\x72\x00\x73\ +\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\x63\x00\x65\x00\x3a\ +\x00\x20\x00\x64\x00\x69\x00\x76\x00\x69\x00\x73\x00\x69\x00\x6f\ +\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x24\x46\x6f\ +\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x66\x61\x63\x65\ +\x73\x3a\x20\x73\x70\x6c\x69\x74\x74\x69\x6e\x67\x20\x74\x68\x65\ +\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x6e\x00\x54\x00\x72\x00\x6f\x00\x76\x00\x61\x00\x74\x00\x6f\ +\x00\x20\x00\x64\x00\x69\x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\ +\x00\x20\x00\x62\x00\x6f\x00\x72\x00\x64\x00\x69\x00\x20\x00\x6e\ +\x00\x6f\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x6e\x00\x65\ +\x00\x73\x00\x73\x00\x69\x00\x3a\x00\x20\x00\x63\x00\x72\x00\x65\ +\x00\x61\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x69\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\x78\x00\x54\x00\ +\x72\x00\x6f\x00\x76\x00\x61\x00\x74\x00\x6f\x00\x20\x00\x6e\x00\ +\x75\x00\x6d\x00\x65\x00\x72\x00\x6f\x00\x73\x00\x69\x00\x20\x00\ +\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\ +\x6e\x00\x6f\x00\x6e\x00\x20\x00\x74\x00\x72\x00\x61\x00\x74\x00\ +\x74\x00\x61\x00\x62\x00\x69\x00\x6c\x00\x69\x00\x3a\x00\x20\x00\ +\x63\x00\x72\x00\x65\x00\x61\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\ +\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\ +\x74\x00\x69\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x46\ +\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6e\x6f\x6e\ +\x2d\x74\x72\x65\x61\x74\x61\x62\x6c\x65\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x63\x6f\x6d\x70\x6f\ +\x75\x6e\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x88\x00\x54\x00\x72\x00\x6f\x00\x76\x00\x61\x00\x74\ +\x00\x69\x00\x20\x00\x64\x00\x69\x00\x76\x00\x65\x00\x72\x00\x73\ +\x00\x69\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\ +\x00\x69\x00\x20\x00\x6f\x00\x20\x00\x66\x00\x61\x00\x63\x00\x63\ +\x00\x65\x00\x3a\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x7a\ +\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x64\x00\x69\x00\x20\ +\x00\x75\x00\x6e\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x63\ +\x00\x69\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\x61\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\x40\x00\ +\x54\x00\x72\x00\x6f\x00\x76\x00\x61\x00\x74\x00\x69\x00\x20\x00\ +\x64\x00\x69\x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\x00\x20\x00\ +\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x3a\x00\ +\x20\x00\x66\x00\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\x73\ +\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\ +\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5c\x00\x54\x00\x72\ +\x00\x6f\x00\x76\x00\x61\x00\x74\x00\x69\x00\x20\x00\x64\x00\x69\ +\x00\x76\x00\x65\x00\x72\x00\x73\x00\x69\x00\x20\x00\x6f\x00\x67\ +\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x3a\x00\x20\x00\x73\ +\x00\x6f\x00\x74\x00\x74\x00\x72\x00\x61\x00\x7a\x00\x69\x00\x6f\ +\x00\x6e\x00\x65\x00\x20\x00\x64\x00\x61\x00\x6c\x00\x20\x00\x70\ +\x00\x72\x00\x69\x00\x6d\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x3b\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x73\x75\x62\x74\x72\x61\x63\ +\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\x66\x72\x6f\x6d\x20\x74\ +\x68\x65\x20\x66\x69\x72\x73\x74\x20\x6f\x6e\x65\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa0\x00\x53\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\ +\x6f\x00\x6e\x00\x61\x00\x74\x00\x6f\x00\x2c\x00\x20\x00\x73\x00\ +\x61\x00\x72\x00\xe0\x00\x20\x00\x65\x00\x73\x00\x65\x00\x67\x00\ +\x75\x00\x69\x00\x74\x00\x6f\x00\x20\x00\x75\x00\x6e\x00\x20\x00\ +\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x00\x20\x00\x69\x00\ +\x6e\x00\x20\x00\x73\x00\x74\x00\x69\x00\x6c\x00\x65\x00\x20\x00\ +\x4f\x00\x43\x00\x43\x00\x20\x00\x69\x00\x6e\x00\x76\x00\x65\x00\ +\x63\x00\x65\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x27\x00\ +\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x00\x20\x00\x63\x00\ +\x6c\x00\x61\x00\x73\x00\x73\x00\x69\x00\x63\x00\x6f\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\xb8\x00\x53\x00\x65\x00\x20\x00\x73\x00\x65\ +\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\ +\x00\x6f\x00\x2c\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x6e\x00\x6f\ +\x00\x6e\x00\x20\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x72\x00\xe0\ +\x00\x20\x00\x66\x00\x69\x00\x6e\x00\x63\x00\x68\x00\xe9\x00\x20\ +\x00\x6e\x00\x6f\x00\x6e\x00\x20\x00\x73\x00\x69\x00\x20\x00\x70\ +\x00\x72\x00\x65\x00\x6d\x00\x65\x00\x20\x00\x6e\x00\x75\x00\x6f\ +\x00\x76\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x20\ +\x00\x69\x00\x6c\x00\x20\x00\x70\x00\x75\x00\x6c\x00\x73\x00\x61\ +\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x6f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x4c\x49\x66\x20\x63\x68\x65\x63\x6b\ +\x65\x64\x2c\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x77\x69\x6c\x6c\ +\x20\x6e\x6f\x74\x20\x66\x69\x6e\x69\x73\x68\x20\x75\x6e\x74\x69\ +\x6c\x20\x79\x6f\x75\x20\x70\x72\x65\x73\x73\x20\x74\x68\x65\x20\ +\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x62\x75\x74\x74\x6f\x6e\x20\x61\ +\x67\x61\x69\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x86\x00\x53\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\ +\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x74\x00\x6f\ +\x00\x2c\x00\x20\x00\x67\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\x67\ +\x00\x67\x00\x65\x00\x74\x00\x74\x00\x69\x00\x20\x00\x73\x00\x61\ +\x00\x72\x00\x61\x00\x6e\x00\x6e\x00\x6f\x00\x20\x00\x63\x00\x6f\ +\x00\x70\x00\x69\x00\x61\x00\x74\x00\x69\x00\x20\x00\x69\x00\x6e\ +\x00\x76\x00\x65\x00\x63\x00\x65\x00\x20\x00\x63\x00\x68\x00\x65\ +\x00\x20\x00\x73\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x74\ +\x00\x69\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\x3e\x00\x4c\x00\x27\x00\x75\x00\x6c\x00\x74\x00\ +\x69\x00\x6d\x00\x6f\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\ +\x6f\x00\x20\x00\xe8\x00\x20\x00\x73\x00\x74\x00\x61\x00\x74\x00\ +\x6f\x00\x20\x00\x72\x00\x69\x00\x6d\x00\x6f\x00\x73\x00\x73\x00\ +\x6f\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\ +\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4c\x69\x6e\ +\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x18\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\x20\x00\ +\x6c\x00\x69\x00\x6e\x00\x65\x00\x61\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\x53\x00\ +\x70\x00\x65\x00\x73\x00\x73\x00\x6f\x00\x72\x00\x65\x00\x20\x00\ +\x6c\x00\x69\x00\x6e\x00\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0a\x4c\x69\x6e\x65\x20\x57\x69\x64\x74\x68\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x53\x00\ +\x70\x00\x6f\x00\x73\x00\x74\x00\x61\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\x0e\x00\x4e\x00\x65\x00\x73\x00\x73\x00\ +\x75\x00\x6e\x00\x6f\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\x1c\x00\x4e\x00\x75\x00\x6d\x00\x65\x00\x72\x00\x6f\x00\ +\x20\x00\x64\x00\x69\x00\x20\x00\x6c\x00\x61\x00\x74\x00\x69\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4e\x75\x6d\x62\x65\x72\x20\ +\x6f\x66\x20\x73\x69\x64\x65\x73\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x4f\x00\x66\x00\x66\x00\x73\ +\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x4f\x66\ +\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x6e\x00\x49\x00\x6c\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x6f\x00\x66\x00\x66\ +\x00\x73\x00\x65\x00\x74\x00\x20\x00\x66\x00\x75\x00\x6e\x00\x7a\ +\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x20\x00\x73\x00\x75\x00\x20\ +\x00\x75\x00\x6e\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x6f\x00\x20\ +\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\ +\x00\x70\x00\x65\x00\x72\x00\x20\x00\x76\x00\x6f\x00\x6c\x00\x74\ +\x00\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\x2c\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\ +\x00\x66\x00\x69\x00\x63\x00\x61\x00\x72\x00\x65\x00\x20\x00\x75\ +\x00\x6e\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x70\x00\x53\x00\x70\x00\x65\x00\x63\x00\ +\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x72\x00\x65\x00\x20\x00\ +\x75\x00\x6e\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x63\x00\ +\x69\x00\x61\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x64\x00\ +\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x72\x00\x65\x00\x20\x00\ +\x69\x00\x6c\x00\x20\x00\x70\x00\x69\x00\x61\x00\x6e\x00\x6f\x00\ +\x20\x00\x64\x00\x69\x00\x20\x00\x64\x00\x69\x00\x73\x00\x65\x00\ +\x67\x00\x6e\x00\x6f\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\x2c\x00\x41\x00\x70\x00\x65\x00\ +\x72\x00\x74\x00\x75\x00\x72\x00\x61\x00\x20\x00\x64\x00\x69\x00\ +\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\ +\x6e\x00\x65\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\x34\x00\x53\ +\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\ +\x00\x72\x00\x65\x00\x20\x00\x6c\x00\x27\x00\x61\x00\x6e\x00\x67\ +\x00\x6f\x00\x6c\x00\x6f\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\ +\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\x34\x00\x53\x00\ +\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\ +\x72\x00\x65\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x70\x00\x75\x00\ +\x6e\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\ +\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\ +\x62\x61\x73\x65\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x53\x00\x70\ +\x00\x65\x00\x63\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x72\ +\x00\x65\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x63\x00\x65\x00\x6e\ +\x00\x74\x00\x72\x00\x6f\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\x30\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\ +\x66\x00\x69\x00\x63\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6c\x00\ +\x61\x00\x20\x00\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\ +\x7a\x00\x61\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\x38\x00\x53\ +\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\ +\x00\x72\x00\x65\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x70\x00\x75\ +\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x66\x00\x69\x00\x6e\x00\x61\ +\x00\x6c\x00\x65\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x50\x69\x63\x6b\x20\x65\x6e\x64\x20\x70\x6f\x69\x6e\x74\x3a\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\ +\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x69\x00\x63\ +\x00\x61\x00\x72\x00\x65\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x70\ +\x00\x72\x00\x69\x00\x6d\x00\x6f\x00\x20\x00\x70\x00\x75\x00\x6e\ +\x00\x74\x00\x6f\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\x4e\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x69\ +\x00\x63\x00\x61\x00\x72\x00\x65\x00\x20\x00\x69\x00\x6c\x00\x20\ +\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x69\ +\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x69\x00\x7a\ +\x00\x7a\x00\x61\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x3a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x6c\ +\x6f\x63\x61\x74\x69\x6f\x6e\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x78\x00\ +\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x69\x00\x63\x00\ +\x61\x00\x72\x00\x65\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x70\x00\ +\x75\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x75\x00\x63\x00\ +\x63\x00\x65\x00\x73\x00\x73\x00\x69\x00\x76\x00\x6f\x00\x2c\x00\ +\x20\x00\x6f\x00\x20\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\ +\x6e\x00\x61\x00\x20\x00\x28\x00\x46\x00\x29\x00\x20\x00\x6f\x00\ +\x20\x00\x63\x00\x68\x00\x69\x00\x75\x00\x64\x00\x69\x00\x20\x00\ +\x28\x00\x43\x00\x29\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x29\x50\x69\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\ +\x2c\x20\x6f\x72\x20\x28\x46\x29\x69\x6e\x69\x73\x68\x20\x6f\x72\ +\x20\x28\x43\x29\x6c\x6f\x73\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x00\x53\x00\x70\x00\x65\ +\x00\x63\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x72\x00\x65\ +\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\ +\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x67\x00\x75\x00\x65\x00\x6e\ +\x00\x74\x00\x65\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\ +\x50\x69\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x3a\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x3a\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x69\x00\ +\x63\x00\x61\x00\x72\x00\x65\x00\x20\x00\x69\x00\x6c\x00\x20\x00\ +\x70\x00\x75\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x6f\x00\x70\x00\ +\x70\x00\x6f\x00\x73\x00\x74\x00\x6f\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\x2c\x00\x53\x00\x70\x00\x65\ +\x00\x63\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x72\x00\x65\ +\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x72\x00\x61\x00\x67\x00\x67\ +\x00\x69\x00\x6f\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\x44\x00\x53\x00\ +\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\ +\x72\x00\x65\x00\x20\x00\x6c\x00\x27\x00\x61\x00\x6e\x00\x67\x00\ +\x6f\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\x69\x00\x20\x00\x72\x00\ +\x6f\x00\x74\x00\x61\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\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\x46\ +\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x69\x00\x63\ +\x00\x61\x00\x72\x00\x65\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x63\ +\x00\x65\x00\x6e\x00\x74\x00\x72\x00\x6f\x00\x20\x00\x64\x00\x69\ +\x00\x20\x00\x72\x00\x6f\x00\x74\x00\x61\x00\x7a\x00\x69\x00\x6f\ +\x00\x6e\x00\x65\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\x40\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\ +\x00\x66\x00\x69\x00\x63\x00\x61\x00\x72\x00\x65\x00\x20\x00\x69\ +\x00\x6c\x00\x20\x00\x66\x00\x61\x00\x74\x00\x74\x00\x6f\x00\x72\ +\x00\x65\x00\x20\x00\x64\x00\x69\x00\x20\x00\x73\x00\x63\x00\x61\ +\x00\x6c\x00\x61\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\x3c\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\ +\x69\x00\x63\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6c\x00\x27\x00\ +\x61\x00\x6e\x00\x67\x00\x6f\x00\x6c\x00\x6f\x00\x20\x00\x69\x00\ +\x6e\x00\x69\x00\x7a\x00\x69\x00\x61\x00\x6c\x00\x65\x00\x3a\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\x6b\x20\x73\x74\ +\x61\x72\x74\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x00\x53\x00\x70\x00\ +\x65\x00\x63\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x72\x00\ +\x65\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x70\x00\x75\x00\x6e\x00\ +\x74\x00\x6f\x00\x20\x00\x69\x00\x6e\x00\x69\x00\x7a\x00\x69\x00\ +\x61\x00\x6c\x00\x65\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x12\x50\x69\x63\x6b\x20\x73\x74\x61\x72\x74\x20\x70\x6f\x69\x6e\ +\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0a\x00\x50\x00\x75\x00\x6e\x00\x74\x00\x6f\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\x67\x00\x67\x00\x69\x00\x6f\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\x24\x00\x52\x00\x61\x00\x67\x00\x67\ +\x00\x69\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x43\ +\x00\x65\x00\x72\x00\x63\x00\x68\x00\x69\x00\x6f\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\x69\x00\x6d\x00\x75\x00\x6f\ +\x00\x76\x00\x69\x00\x20\x00\x69\x00\x20\x00\x70\x00\x75\x00\x6e\ +\x00\x74\x00\x69\x00\x20\x00\x64\x00\x61\x00\x6c\x00\x6c\x00\x27\ +\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\ +\x00\x63\x00\x6f\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x65\ +\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\x75\x00\x6f\x00\x74\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x06\x52\x6f\x74\x61\x74\x65\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x53\x00\x63\x00\x61\x00\ +\x6c\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x53\x63\x61\ +\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x24\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\ +\x00\x6e\x00\x61\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x70\x00\x69\ +\x00\x61\x00\x6e\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x53\x65\x6c\x65\x63\x74\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x53\x00\x65\ +\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x20\ +\x00\x69\x00\x6c\x00\x20\x00\x70\x00\x69\x00\x61\x00\x6e\x00\x6f\ +\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\x00\ +\x53\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\ +\x61\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x70\x00\x69\x00\x61\x00\ +\x6e\x00\x6f\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\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\ +\x00\x6e\x00\x61\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x70\x00\x69\ +\x00\x61\x00\x6e\x00\x6f\x00\x20\x00\x59\x00\x5a\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x59\x5a\x20\ +\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x40\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\ +\x69\x00\x6f\x00\x6e\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\ +\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\ +\x64\x00\x61\x00\x20\x00\x73\x00\x70\x00\x6f\x00\x73\x00\x74\x00\ +\x61\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x53\ +\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x74\x6f\x20\x6d\x6f\x76\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x64\x00\x53\x00\x65\x00\x6c\x00\x65\ +\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x20\x00\x75\x00\x6e\ +\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\ +\x00\x20\x00\x73\x00\x75\x00\x6c\x00\x20\x00\x71\x00\x75\x00\x61\ +\x00\x6c\x00\x65\x00\x20\x00\x65\x00\x66\x00\x66\x00\x65\x00\x74\ +\x00\x74\x00\x75\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6c\x00\x27\ +\x00\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1b\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\ +\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x6f\x66\x66\x73\x65\x74\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x42\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\ +\x6e\x00\x61\x00\x72\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\ +\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\ +\x64\x00\x61\x00\x20\x00\x72\x00\x75\x00\x6f\x00\x74\x00\x61\x00\ +\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x53\x65\x6c\ +\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\ +\x20\x72\x6f\x74\x61\x74\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x42\x00\x53\x00\x65\x00\x6c\x00\x65\ +\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x65\x00\x20\ +\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\ +\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x61\x00\x20\x00\x73\x00\x63\ +\x00\x61\x00\x6c\x00\x61\x00\x72\x00\x65\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\x58\x00\x53\ +\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\ +\x00\x72\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x67\ +\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x61\ +\x00\x20\x00\x74\x00\x61\x00\x67\x00\x6c\x00\x69\x00\x61\x00\x72\ +\x00\x65\x00\x2f\x00\x65\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x64\ +\x00\x65\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\ +\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x74\x6f\x20\x74\x72\x69\x6d\x2f\x65\x78\x74\x65\x6e\x64\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\ +\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\ +\x00\x61\x00\x72\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\ +\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\x00\x20\x00\x64\ +\x00\x61\x00\x20\x00\x61\x00\x67\x00\x67\x00\x69\x00\x6f\x00\x72\ +\x00\x6e\x00\x61\x00\x72\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1c\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x74\x6f\x20\x75\x70\x67\x72\x61\x64\x65\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6a\x00\x53\ +\x00\x65\x00\x6c\x00\x65\x00\x7a\x00\x69\x00\x6f\x00\x6e\x00\x61\ +\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x70\x00\x69\x00\x61\x00\x6e\ +\x00\x6f\x00\x20\x00\x70\x00\x65\x00\x72\x00\x70\x00\x65\x00\x6e\ +\x00\x64\x00\x69\x00\x63\x00\x6f\x00\x6c\x00\x61\x00\x72\x00\x65\ +\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x76\x00\x69\ +\x00\x73\x00\x74\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x72\x00\x72\ +\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x2e\x53\x65\x6c\x65\x63\x74\x20\x70\x6c\x61\x6e\x65\x20\x70\ +\x65\x72\x70\x65\x6e\x64\x69\x63\x75\x6c\x61\x72\x20\x74\x6f\x20\ +\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x76\x69\x65\x77\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\ +\x00\x4c\x00\x61\x00\x20\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\ +\x00\x65\x00\x20\x00\xe8\x00\x20\x00\x73\x00\x74\x00\x61\x00\x74\ +\x00\x61\x00\x20\x00\x63\x00\x68\x00\x69\x00\x75\x00\x73\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\ +\x1e\x00\x41\x00\x6e\x00\x67\x00\x6f\x00\x6c\x00\x6f\x00\x20\x00\ +\x69\x00\x6e\x00\x69\x00\x7a\x00\x69\x00\x61\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\x52\x00\x51\x00\x75\x00\x65\x00\x73\x00\x74\x00\x6f\ +\x00\x20\x00\x74\x00\x69\x00\x70\x00\x6f\x00\x20\x00\x64\x00\x69\ +\x00\x20\x00\x6f\x00\x67\x00\x67\x00\x65\x00\x74\x00\x74\x00\x6f\ +\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x20\x00\xe8\x00\x20\x00\x6d\ +\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x62\ +\x00\x69\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\ +\x54\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\ +\x20\x69\x73\x20\x6e\x6f\x74\x20\x65\x64\x69\x74\x61\x62\x6c\x65\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x48\x00\x41\x00\x74\x00\x74\x00\x69\x00\x76\x00\x61\x00\x2f\x00\ +\x64\x00\x69\x00\x73\x00\x61\x00\x74\x00\x74\x00\x69\x00\x76\x00\ +\x61\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\ +\x6f\x00\x20\x00\x43\x00\x6f\x00\x73\x00\x74\x00\x72\x00\x75\x00\ +\x7a\x00\x69\x00\x6f\x00\x6e\x00\x65\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\x0c\x00\x54\x00\x61\ +\x00\x67\x00\x6c\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x54\x72\x69\x6d\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x44\x00\x41\x00\x6e\x00\x6e\x00\x75\x00\x6c\ +\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\x27\x00\x75\x00\x6c\x00\x74\ +\x00\x69\x00\x6d\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x6f\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\x56\x00\x69\x00\x73\x00\x74\x00\x61\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\x00\x50\x00\x75\x00\x6c\ +\x00\x69\x00\x73\x00\x63\x00\x65\x00\x20\x00\x69\x00\x20\x00\x73\ +\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x20\ +\x00\x65\x00\x73\x00\x69\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x74\ +\x00\x69\x00\x20\x00\x64\x00\x69\x00\x20\x00\x71\x00\x75\x00\x65\ +\x00\x73\x00\x74\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\ +\x00\x61\x00\x20\x00\x65\x00\x20\x00\x72\x00\x69\x00\x63\x00\x6f\ +\x00\x6d\x00\x69\x00\x6e\x00\x63\x00\x69\x00\x61\x00\x20\x00\x64\ +\x00\x61\x00\x6c\x00\x6c\x00\x27\x00\x75\x00\x6c\x00\x74\x00\x69\ +\x00\x6d\x00\x6f\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x6f\ +\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\x2c\x00\x49\x00\x6c\x00\x20\x00\x77\x00\x69\x00\x72\x00\ +\x65\x00\x20\x00\xe8\x00\x20\x00\x73\x00\x74\x00\x61\x00\x74\x00\ +\x6f\x00\x20\x00\x63\x00\x68\x00\x69\x00\x75\x00\x73\x00\x6f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x15\x57\x69\x72\x65\x20\x68\x61\ +\x73\x20\x62\x65\x65\x6e\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x57\ +\x00\x69\x00\x72\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x6f\x00\x6c\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x57\x69\x72\x65\ +\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x02\x00\x58\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x01\x58\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x3e\x00\x43\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x69\x00\ +\x6e\x00\x61\x00\x74\x00\x61\x00\x20\x00\x58\x00\x20\x00\x64\x00\ +\x65\x00\x6c\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x73\x00\x73\x00\ +\x69\x00\x6d\x00\x6f\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\ +\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x58\x20\x63\x6f\x6f\ +\x72\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\ +\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x04\x00\x58\x00\x59\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x02\x58\x59\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x04\x00\x58\x00\x5a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x02\x58\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x02\x00\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x01\x59\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x3e\x00\x43\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x69\x00\x6e\ +\x00\x61\x00\x74\x00\x61\x00\x20\x00\x59\x00\x20\x00\x64\x00\x65\ +\x00\x6c\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x73\x00\x73\x00\x69\ +\x00\x6d\x00\x6f\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x6f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x59\x20\x63\x6f\x6f\x72\ +\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\ +\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x04\x00\x59\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x02\x59\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x02\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\ +\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x3e\x00\x43\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x69\x00\x6e\x00\ +\x61\x00\x74\x00\x61\x00\x20\x00\x5a\x00\x20\x00\x64\x00\x65\x00\ +\x6c\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x73\x00\x73\x00\x69\x00\ +\x6d\x00\x6f\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x6f\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\x63\x00\x6f\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\ +\x6f\x00\x20\x00\x61\x00\x74\x00\x74\x00\x69\x00\x76\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\x2e\x00\x42\x00\x61\x00\x72\ +\x00\x72\x00\x61\x00\x20\x00\x64\x00\x65\x00\x69\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x69\x00\x20\x00\x64\ +\x00\x72\x00\x61\x00\x66\x00\x74\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\xa8\x73\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ @@ -8331,812 +10702,2689 @@ qt_resource_data = "\ \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\xa7\x87\ +\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\x9b\x38\x00\x00\x00\x59\ +\x00\x00\x9c\x03\x00\x00\x00\x5a\x00\x00\x9c\xae\x00\x00\x05\xd9\ +\x00\x00\x9b\xc3\x00\x00\x05\xda\x00\x00\x9b\xe3\x00\x00\x05\xea\ +\x00\x00\x9c\x8e\x00\x00\x07\x78\x00\x00\x6a\x7a\x00\x00\x48\x83\ +\x00\x00\x03\x0b\x00\x00\x48\x83\x00\x00\x70\xbc\x00\x00\x68\x34\ +\x00\x00\x65\x49\x00\x04\xa6\x79\x00\x00\x73\xdd\x00\x04\xbb\x04\ +\x00\x00\x0b\x48\x00\x04\xbb\x04\x00\x00\x78\x2c\x00\x05\x30\x45\ +\x00\x00\x0d\x99\x00\x05\x30\x45\x00\x00\x89\x3b\x00\x05\x46\xc5\ +\x00\x00\x0d\xc6\x00\x05\x46\xc5\x00\x00\x89\xdb\x00\x05\x56\x45\ +\x00\x00\x43\x71\x00\x05\x56\x45\x00\x00\x8a\x01\x00\x05\xac\xf4\ +\x00\x00\x18\x80\x00\x05\xb8\xfd\x00\x00\x98\xd8\x00\x05\xcf\xc7\ +\x00\x00\x99\x72\x00\x05\xe0\x85\x00\x00\x21\xc3\x00\x06\xab\x8c\ +\x00\x00\x66\x9d\x00\x10\x84\x49\x00\x00\x4e\xd3\x00\x12\x05\xba\ +\x00\x00\x95\x66\x00\x16\xc6\xda\x00\x00\x7e\x66\x00\x2a\xa6\x79\ +\x00\x00\x6d\x1e\x00\x2b\xc4\xaf\x00\x00\x6d\xf8\x00\x2b\xe0\x65\ +\x00\x00\x6e\x21\x00\x39\xdf\x33\x00\x00\x32\xc2\x00\x3d\xa1\x19\ +\x00\x00\x71\xca\x00\x3e\x93\x83\x00\x00\x33\xdc\x00\x48\x8f\x7c\ +\x00\x00\x24\x5f\x00\x4b\x66\x35\x00\x00\x30\x06\x00\x4b\x66\x37\ +\x00\x00\x30\x47\x00\x4b\x66\x39\x00\x00\x30\x88\x00\x4b\x87\xd4\ +\x00\x00\x77\x69\x00\x57\x60\x54\x00\x00\x91\xa3\x00\x58\xfd\xf4\ +\x00\x00\x46\xd6\x00\x59\x98\x25\x00\x00\x13\x9a\x00\x59\x98\x25\ +\x00\x00\x92\xeb\x00\x6a\x58\x9a\x00\x00\x8c\x11\x00\x79\xef\xd4\ +\x00\x00\x6a\xb2\x00\x7e\x7f\x0e\x00\x00\x61\xea\x00\x8a\x23\x95\ +\x00\x00\x27\xb3\x00\x8a\x23\x97\x00\x00\x27\xfd\x00\x8a\x23\x99\ +\x00\x00\x28\x47\x00\x91\xbc\xe9\x00\x00\x0d\xf1\x00\xa6\x37\x3f\ +\x00\x00\x26\x88\x00\xaa\x80\x25\x00\x00\x76\xa5\x00\xc6\xe3\x6e\ +\x00\x00\x23\x17\x00\xcb\xa8\x14\x00\x00\x69\xac\x00\xfc\x00\xca\ +\x00\x00\x84\xf4\x01\x21\xd6\x39\x00\x00\x4d\xba\x01\x22\xb4\xf9\ +\x00\x00\x13\xcd\x01\x2f\x8e\x7e\x00\x00\x58\x92\x01\x48\xfe\xa3\ +\x00\x00\x34\x56\x01\x53\xf3\xaa\x00\x00\x7b\x80\x01\x56\x16\x4a\ +\x00\x00\x84\x71\x01\x67\x0d\x8a\x00\x00\x80\x07\x01\x69\x11\x7a\ +\x00\x00\x8f\xba\x01\x82\x39\x0a\x00\x00\x8c\xa5\x01\x8b\x68\x75\ +\x00\x00\x98\x73\x01\xa1\x7f\x63\x00\x00\x1a\xfd\x01\xc1\xd9\xde\ +\x00\x00\x50\xf8\x01\xd2\x8f\xd3\x00\x00\x47\x7f\x01\xdf\x11\x43\ +\x00\x00\x05\x54\x01\xe2\xf4\x5a\x00\x00\x94\xfb\x01\xfc\xae\xd3\ +\x00\x00\x6a\xf3\x02\x05\xbe\x25\x00\x00\x75\x4e\x02\x46\x58\x0a\ +\x00\x00\x8f\x14\x02\x65\xad\x62\x00\x00\x9d\x88\x02\x6e\x07\xe2\ +\x00\x00\x49\xab\x02\x76\x24\x13\x00\x00\x38\x43\x02\x7d\xe0\x55\ +\x00\x00\x4a\x4b\x02\x94\x46\x1a\x00\x00\x8c\x58\x02\xa7\x2c\x15\ +\x00\x00\x03\xfc\x02\xaa\x36\x95\x00\x00\x6c\xbd\x02\xb1\xf0\xba\ +\x00\x00\x81\xba\x02\xbf\xaa\x8e\x00\x00\x36\xe2\x02\xc0\x66\xf2\ +\x00\x00\x54\xb0\x02\xc8\x3f\xf5\x00\x00\x5f\xc3\x02\xd9\xa4\xb9\ +\x00\x00\x64\xfc\x02\xdb\x1a\x94\x00\x00\x06\xf7\x03\x01\x84\xc4\ +\x00\x00\x85\xbf\x03\x12\x97\x6a\x00\x00\x83\xac\x03\x1a\x14\x14\ +\x00\x00\x2d\xb6\x03\x1a\x16\x59\x00\x00\x4a\xe5\x03\x2f\x1a\x6a\ +\x00\x00\x6e\xa8\x03\x7e\xca\xb5\x00\x00\x3f\x18\x03\x88\x1f\xd4\ +\x00\x00\x3f\xeb\x03\x9e\x58\xa5\x00\x00\x00\x3e\x03\xb3\x9e\xfa\ +\x00\x00\x8d\x45\x03\xb5\xc8\x9a\x00\x00\x8e\x7f\x03\xbd\xd4\xe4\ +\x00\x00\x6f\x5b\x03\xc4\x3c\xf5\x00\x00\x71\x8c\x03\xc5\xd5\x5e\ +\x00\x00\x08\xff\x03\xcb\x0d\xe5\x00\x00\x93\x18\x03\xdc\x0c\xd4\ +\x00\x00\x6d\x76\x03\xf2\x70\x35\x00\x00\x2a\x8d\x03\xf2\xbd\x60\ +\x00\x00\x15\x01\x03\xfb\x0f\x04\x00\x00\x2d\x4c\x04\x21\x23\x23\ +\x00\x00\x1f\x77\x04\x56\x06\x93\x00\x00\x2b\x81\x04\x60\x7c\x15\ +\x00\x00\x91\xf4\x04\x79\xef\x9a\x00\x00\x81\x3d\x04\x82\x77\xf4\ +\x00\x00\x4a\x01\x04\x87\xf9\x9e\x00\x00\x86\xc6\x04\x8c\xd6\xae\ +\x00\x00\x5e\x20\x04\xa0\x8a\x25\x00\x00\x05\x21\x04\xa0\x8a\x25\ +\x00\x00\x72\xf5\x04\xa4\x31\x5a\x00\x00\x88\xcd\x04\xa8\xeb\x85\ +\x00\x00\x30\xc9\x04\xe1\x6e\xe3\x00\x00\x09\x75\x04\xe4\x0f\x75\ +\x00\x00\x02\xad\x04\xeb\x41\xc3\x00\x00\x2b\x04\x04\xef\xd9\xa8\ +\x00\x00\x46\x34\x05\x03\x83\x95\x00\x00\x66\xdb\x05\x05\xcb\x13\ +\x00\x00\x3e\x00\x05\x0f\xf2\x74\x00\x00\x8b\x3c\x05\x1b\x10\x59\ +\x00\x00\x41\x82\x05\x2a\xe5\x97\x00\x00\x48\x41\x05\x44\x3b\x5f\ +\x00\x00\x68\xc6\x05\x5c\xd9\xc4\x00\x00\x0f\x1e\x05\x5c\xd9\xc4\ +\x00\x00\x8a\x78\x05\x63\xf6\x93\x00\x00\x47\x17\x05\x65\xee\x65\ +\x00\x00\x7a\x0e\x05\x87\xb0\xc3\x00\x00\x91\xcc\x05\x96\xa8\xa5\ +\x00\x00\x12\x50\x05\x96\xa8\xa5\x00\x00\x92\xbf\x05\xad\x4b\xc3\ +\x00\x00\x3f\x68\x05\xb9\x03\xc8\x00\x00\x1c\x60\x05\xbd\x0c\xba\ +\x00\x00\x7c\x27\x05\xbd\x8e\xde\x00\x00\x5c\x74\x05\xbe\x56\x93\ +\x00\x00\x45\xcc\x05\xc5\x50\x04\x00\x00\x0b\x79\x05\xe5\x8e\x2e\ +\x00\x00\x10\x4a\x05\xfb\xdc\x83\x00\x00\x3e\x5c\x06\x1e\xe6\xb5\ +\x00\x00\x97\xbb\x06\x29\xee\xa9\x00\x00\x73\x21\x06\x32\xe3\xe3\ +\x00\x00\x77\x92\x06\x57\x19\xf4\x00\x00\x00\x00\x06\x5a\xef\x15\ +\x00\x00\x6c\xe9\x06\x5b\xd2\xb5\x00\x00\x3a\xe7\x06\x6c\x88\x8e\ +\x00\x00\x3c\x4b\x06\x74\x1d\x55\x00\x00\x50\x60\x06\x8b\x96\x44\ +\x00\x00\x0c\x2b\x06\x97\x58\xc9\x00\x00\x4b\x6e\x06\xbc\x80\xa5\ +\x00\x00\x1b\xfb\x06\xc9\xb8\x05\x00\x00\x6f\xd5\x06\xe8\x05\x4e\ +\x00\x00\x06\x8a\x06\xee\xaa\x57\x00\x00\x96\xb6\x06\xf0\xcb\x25\ +\x00\x00\x19\xe3\x06\xfa\xff\xc3\x00\x00\x3e\xbe\x06\xfc\x1a\x14\ +\x00\x00\x31\xd5\x06\xfc\xa0\x8a\x00\x00\x8b\x7f\x07\x08\x90\xe5\ +\x00\x00\x29\x0e\x07\x0d\xb7\xf7\x00\x00\x36\x2f\x07\x0e\x86\x3e\ +\x00\x00\x1a\x4c\x07\x35\x68\x6e\x00\x00\x16\x16\x07\x35\xe8\x9a\ +\x00\x00\x8f\xfb\x07\x44\x41\x2a\x00\x00\x7a\xfd\x07\x4a\x1f\x63\ +\x00\x00\x01\xe0\x07\x4d\x73\x22\x00\x00\x89\x63\x07\x4e\xa6\xf2\ +\x00\x00\x78\x87\x07\x58\xcb\xe8\x00\x00\x89\x9d\x07\x63\xfe\x0e\ +\x00\x00\x11\x1d\x07\x80\xc6\xb3\x00\x00\x9b\x00\x07\x88\x72\x5a\ +\x00\x00\x70\xe3\x07\xa3\xe4\x0e\x00\x00\x20\xe7\x07\xc1\xfc\x13\ +\x00\x00\x2c\x3c\x08\x27\xb4\xba\x00\x00\x8e\x26\x08\x32\xc4\xaa\ +\x00\x00\x90\xb0\x08\x36\x74\x14\x00\x00\x22\xd0\x08\x44\xb9\x83\ +\x00\x00\x32\x4c\x08\x49\xc9\x30\x00\x00\x15\x4b\x08\x61\x7c\xb3\ +\x00\x00\x1c\x93\x08\xa2\xca\x67\x00\x00\x4a\x9b\x08\xa3\xe0\x33\ +\x00\x00\x74\x03\x08\xb1\x15\x28\x00\x00\x2c\xe3\x08\xb4\x04\x04\ +\x00\x00\x92\x36\x08\xd0\x32\xf4\x00\x00\x78\x58\x08\xd4\xcd\x69\ +\x00\x00\x78\xbf\x08\xe1\x9b\xbe\x00\x00\x19\x25\x08\xe1\xc1\xfa\ +\x00\x00\x7a\x47\x08\xeb\x8d\x7a\x00\x00\x9a\xa7\x09\x20\xda\x24\ +\x00\x00\x9c\x20\x09\x20\xda\xb4\x00\x00\x9c\xcb\x09\x20\xda\xd4\ +\x00\x00\x9b\x55\x09\x4d\x96\xd9\x00\x00\x23\xa6\x09\x65\xda\x8a\ +\x00\x00\x7d\xf5\x09\x68\x0d\x29\x00\x00\x87\xc4\x09\x71\x8d\x25\ +\x00\x00\x06\x46\x09\x75\x23\x14\x00\x00\x6e\x4a\x09\x76\xed\x34\ +\x00\x00\x61\x02\x09\x86\xa6\x05\x00\x00\x21\xf0\x09\x8b\x23\xba\ +\x00\x00\x91\x03\x09\x9e\xfd\x7e\x00\x00\x61\x4c\x09\xb6\x2a\x63\ +\x00\x00\x31\x37\x09\xcd\x1c\x55\x00\x00\x93\x56\x09\xd2\x21\xea\ +\x00\x00\x59\x99\x09\xe5\x23\x0e\x00\x00\x53\x97\x09\xec\x2b\x45\ +\x00\x00\x0b\xe5\x09\xef\x33\xa3\x00\x00\x17\x07\x09\xf0\x1f\x6e\ +\x00\x00\x03\x36\x09\xfd\x45\x1a\x00\x00\x8c\xf2\x0a\x09\xc1\x7a\ +\x00\x00\x8f\x61\x0a\x28\x9a\x65\x00\x00\x48\xd6\x0a\x28\x9a\x67\ +\x00\x00\x49\x1d\x0a\x28\x9a\x69\x00\x00\x49\x64\x0a\x2d\xbe\xe4\ +\x00\x00\x2e\x1b\x0a\x35\xa9\xfa\x00\x00\x82\x40\x0a\x3f\x27\x74\ +\x00\x00\x75\x98\x0a\x3f\x6b\x05\x00\x00\x75\xd3\x0a\x49\xa5\x4a\ +\x00\x00\x97\xf6\x0a\x60\xe0\x15\x00\x00\x24\xa0\x0a\x60\xe0\x17\ +\x00\x00\x24\xf3\x0a\x60\xe0\x19\x00\x00\x25\x46\x0a\x65\x9b\xea\ +\x00\x00\x8a\xa4\x0a\x78\x05\x80\x00\x00\x01\x2b\x0a\x7f\x8f\x65\ +\x00\x00\x39\x68\x0a\x98\x86\x18\x00\x00\x28\x91\x0a\x99\x5c\xaa\ +\x00\x00\x91\x53\x0a\xa8\x16\x95\x00\x00\x12\x0d\x0a\xa9\x89\xec\ +\x00\x00\x40\x44\x0a\xc8\x5c\x59\x00\x00\x0f\x51\x0a\xd0\x50\xb8\ +\x00\x00\x6d\x47\x0a\xd0\xe6\xf5\x00\x00\x16\xc0\x0a\xd6\xf1\xfa\ +\x00\x00\x77\xcd\x0a\xeb\x91\x88\x00\x00\x60\x57\x0b\x07\x78\x8a\ +\x00\x00\x7d\x54\x0b\x1b\xe0\x73\x00\x00\x4b\xdc\x0b\x24\x9d\xb4\ +\x00\x00\x4c\xd1\x0b\x24\xc5\xc9\x00\x00\x12\x83\x0b\x26\x7e\x0e\ +\x00\x00\x74\xc0\x0b\x2b\x50\xfa\x00\x00\x80\xa8\x0b\x2d\xb3\xf9\ +\x00\x00\x64\x62\x0b\x37\x73\x69\x00\x00\x99\x9a\x0b\x40\x40\x3e\ +\x00\x00\x41\xe4\x0b\x43\xcd\x19\x00\x00\x40\xbe\x0b\x66\x28\xd2\ +\x00\x00\x60\x10\x0b\x88\xe0\x07\x00\x00\x0a\x68\x0b\x94\x44\xc5\ +\x00\x00\x2e\x86\x0b\xc2\x99\x6a\x00\x00\x7c\x9b\x0b\xd3\x27\xae\ +\x00\x00\x04\x36\x0b\xd4\x7e\x9e\x00\x00\x0a\x9f\x0b\xf5\xee\x53\ +\x00\x00\x8a\x31\x0c\x06\x50\x2e\x00\x00\x0c\xb4\x0c\x08\x46\x23\ +\x00\x00\x76\x5e\x0c\x19\xfa\x99\x00\x00\x79\x55\x0c\x28\x9b\x45\ +\x00\x00\x6d\xc3\x0c\x31\x7e\x4a\x00\x00\x8d\x8c\x0c\x38\x4d\xe5\ +\x00\x00\x07\x3e\x0c\x3a\x16\xd0\x00\x00\x17\xf8\x0c\x5a\xc0\xc8\ +\x00\x00\x71\x5a\x0c\x6e\x87\xf5\x00\x00\x20\xb0\x0c\x91\xa0\x7a\ +\x00\x00\x97\x5c\x0c\x96\x90\x59\x00\x00\x41\x17\x0c\xca\xdd\xfa\ +\x00\x00\x95\xce\x0c\xd6\xef\x12\x00\x00\x2b\xe9\x0c\xde\x99\x49\ +\x00\x00\x64\xac\x0c\xf0\xde\xaa\x00\x00\x7f\x63\x0d\x1c\xf6\xee\ +\x00\x00\x29\xcf\x0d\x3a\x6c\xba\x00\x00\x8d\xd6\x0d\x45\xe2\x6a\ +\x00\x00\x94\x90\x0d\x59\xa1\x45\x00\x00\x76\xd7\x0d\x5a\xad\x33\ +\x00\x00\x70\x51\x0d\x5e\xe7\x6e\x00\x00\x25\x99\x0d\x64\xa5\xd9\ +\x00\x00\x57\xb8\x0d\x6d\xf8\xf4\x00\x00\x07\xf1\x0d\x76\xb5\x92\ +\x00\x00\x2a\x25\x0d\x9b\xec\xc9\x00\x00\x4f\xef\x0d\xa5\xd9\x94\ +\x00\x00\x29\x76\x0d\xa6\xda\xa4\x00\x00\x43\x09\x0d\xc6\xc6\x2a\ +\x00\x00\x90\x54\x0d\xf2\x39\xba\x00\x00\x82\xf3\x0e\x2b\x04\x15\ +\x00\x00\x74\x7f\x0e\x2c\xe4\x2a\x00\x00\x94\x2b\x0e\x4e\xcc\xc5\ +\x00\x00\x09\x36\x0e\x6f\x9a\x1a\x00\x00\x96\x48\x0e\x7b\x7a\x2c\ +\x00\x00\x2f\x86\x0e\x8f\x6a\x37\x00\x00\x33\x86\x0e\x91\x65\xf5\ +\x00\x00\x18\xaf\x0e\xca\xd7\x34\x00\x00\x1e\x4f\x0e\xcd\x1c\x55\ +\x00\x00\x93\x9d\x0e\xcd\x1c\x65\x00\x00\x93\xe4\x0e\xea\xe5\x03\ +\x00\x00\x6b\x84\x0e\xed\xe1\xf9\x00\x00\x43\xb9\x0f\x07\x8d\xe3\ +\x00\x00\x6c\x1c\x0f\x17\x82\x4e\x00\x00\x00\xd9\x0f\x1f\x8d\xa5\ +\x00\x00\x74\x3b\x0f\x4f\x75\x3a\x00\x00\x9d\x39\x0f\x5f\xca\xd5\ +\x00\x00\x2e\xf7\x0f\x75\xb0\x54\x00\x00\x76\x0e\x0f\x77\xc3\xb4\ +\x00\x00\x65\x84\x0f\x89\x0b\xbe\x00\x00\x44\x1d\x0f\x8f\xa8\xa7\ +\x00\x00\x17\xab\x0f\x98\x0a\x39\x00\x00\x98\xfe\x0f\x9e\xec\xa0\ +\x00\x00\x11\x5a\x0f\xbf\x87\xa3\x00\x00\x88\x83\x0f\xcd\xce\x95\ +\x00\x00\x33\x24\x0f\xdf\x21\x05\x00\x00\x22\x7b\x0f\xf6\x06\x1e\ +\x00\x00\x1e\xb5\x0f\xf6\x29\x0a\x00\x00\x70\x07\x0f\xf7\x77\xaa\ +\x00\x00\x7e\xe6\x0f\xfb\x5f\xae\x00\x00\x75\x0a\x69\x00\x00\x9d\ +\xd5\x03\x00\x00\x00\x12\x00\x41\x00\x64\x00\x64\x00\x20\x00\x50\ +\x00\x6f\x00\x69\x00\x6e\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\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\ +\x60\x00\x41\x00\x64\x00\x64\x00\x73\x00\x20\x00\x74\x00\x68\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x65\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x28\x00\x73\x00\x29\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ +\x61\x00\x6e\x00\x20\x00\x65\x00\x78\x00\x69\x00\x73\x00\x74\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\ +\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x41\x64\x64\x73\x20\ +\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x28\x73\x29\x20\x74\x6f\x20\x61\x6e\x20\x65\x78\x69\ +\x73\x74\x69\x6e\x67\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x10\ +\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\ +\x01\x03\x00\x00\x00\x70\x00\x41\x00\x70\x00\x70\x00\x6c\x00\x69\ +\x00\x65\x00\x73\x00\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\x65\ +\x00\x6e\x00\x74\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\ +\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x20\x00\x61\x00\x6e\ +\x00\x64\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\ +\x00\x74\x00\x6f\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\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\x41\x00\x70\x00\x70\x00\x6c\x00\x79\x00\x20\x00\ +\x43\x00\x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\ +\x53\x00\x74\x00\x79\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x13\x41\x70\x70\x6c\x79\x20\x43\x75\x72\x72\x65\x6e\x74\ +\x20\x53\x74\x79\x6c\x65\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\ +\x5f\x41\x70\x70\x6c\x79\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\ +\x0a\x00\x4b\x00\x61\x00\x61\x00\x72\x00\x69\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x03\x41\x72\x63\x07\x00\x00\x00\x09\x44\x72\x61\ +\x66\x74\x5f\x41\x72\x63\x01\x03\x00\x00\x00\x78\x00\x4c\x00\x75\ +\x00\x6f\x00\x20\x00\x6b\x00\x61\x00\x61\x00\x72\x00\x65\x00\x6e\ +\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x6b\ +\x00\x6f\x00\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\x61\ +\x00\x20\x00\x6b\x00\x6f\x00\x68\x00\x74\x00\x65\x00\x69\x00\x73\ +\x00\x69\x00\x69\x00\x6e\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\ +\x00\x46\x00\x54\x00\x20\x00\x6c\x00\x75\x00\x6f\x00\x20\x00\x72\ +\x00\x61\x00\x6a\x00\x6f\x00\x69\x00\x74\x00\x74\x00\x65\x00\x69\ +\x00\x74\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x72\x63\x2e\x20\x43\x54\ +\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\ +\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\ +\x00\x00\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\x01\x03\x00\x00\ +\x00\x10\x00\x42\x00\x2d\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x42\x2d\x53\x70\ +\x6c\x69\x6e\x65\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x42\ +\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\x86\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\ +\x00\x6d\x00\x75\x00\x6c\x00\x74\x00\x69\x00\x70\x00\x6c\x00\x65\ +\x00\x2d\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x62\ +\x00\x2d\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x2e\ +\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x74\x00\x6f\ +\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x2c\x00\x20\x00\x53\ +\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x74\x00\x6f\x00\x20\ +\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\x70\ +\x6f\x69\x6e\x74\x20\x62\x2d\x73\x70\x6c\x69\x6e\x65\x2e\x20\x43\ +\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\ +\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\ +\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x42\x53\x70\x6c\x69\x6e\ +\x65\x01\x03\x00\x00\x00\x0c\x00\x59\x00\x6d\x00\x70\x00\x79\x00\ +\x72\x00\xe4\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\x69\x72\ +\x63\x6c\x65\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x43\x69\ +\x72\x63\x6c\x65\x01\x03\x00\x00\x00\x94\x00\x4c\x00\x75\x00\x6f\ +\x00\x20\x00\x79\x00\x6d\x00\x70\x00\x79\x00\x72\x00\xe4\x00\x6e\ +\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x6b\ +\x00\x6f\x00\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\x61\ +\x00\x20\x00\x6b\x00\x6f\x00\x68\x00\x74\x00\x65\x00\x65\x00\x73\ +\x00\x65\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\ +\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x73\x00\x65\ +\x00\x65\x00\x20\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x65\x00\x6e\ +\x00\x74\x00\x69\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x65\x00\x69\x00\x6c\x00\x6c\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x3d\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x20\x63\x69\x72\x63\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\ +\x6f\x20\x73\x6e\x61\x70\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x73\ +\x65\x6c\x65\x63\x74\x20\x74\x61\x6e\x67\x65\x6e\x74\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\ +\x43\x69\x72\x63\x6c\x65\x01\x03\x00\x00\x00\x16\x00\x53\x00\x75\ +\x00\x6c\x00\x6a\x00\x65\x00\x20\x00\x56\x00\x69\x00\x69\x00\x76\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6c\x6f\x73\ +\x65\x20\x4c\x69\x6e\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\ +\x5f\x43\x6c\x6f\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x2e\ +\x00\x53\x00\x75\x00\x6c\x00\x6b\x00\x65\x00\x65\x00\x20\x00\x70\ +\x00\x69\x00\x69\x00\x72\x00\x72\x00\x65\x00\x74\x00\x79\x00\x6e\ +\x00\x20\x00\x76\x00\x69\x00\x69\x00\x76\x00\x61\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1b\x43\x6c\x6f\x73\x65\x73\x20\x74\ +\x68\x65\x20\x6c\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\x64\x72\ +\x61\x77\x6e\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\x6c\ +\x6f\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x18\x00\x52\x00\ +\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x50\x00\x6f\x00\ +\x69\x00\x6e\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\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\x9c\x00\x43\x00\x72\x00\x65\x00\x61\x00\ +\x74\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x64\x00\x69\x00\ +\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\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\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x74\x00\ +\x6f\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x20\x00\x61\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\x0a\x00\x4d\x00\x69\x00\x74\x00\x74\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x44\x69\x6d\x65\x6e\x73\x69\ +\x6f\x6e\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\x6d\ +\x65\x6e\x73\x69\x6f\x6e\x01\x03\x00\x00\x00\x12\x00\x44\x00\x6f\ +\x00\x77\x00\x6e\x00\x67\x00\x72\x00\x61\x00\x64\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x44\x6f\x77\x6e\x67\x72\x61\x64\ +\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\ +\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x8a\x00\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\x0e\x00\x44\ +\x00\x72\x00\x61\x00\x77\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\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\x0e\x00\x4d\ +\x00\x75\x00\x6f\x00\x6b\x00\x6b\x00\x61\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x0a\x44\ +\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\x36\x00\ +\x4d\x00\x75\x00\x6f\x00\x6b\x00\x6b\x00\x61\x00\x61\x00\x20\x00\ +\x61\x00\x6b\x00\x74\x00\x69\x00\x69\x00\x76\x00\x69\x00\x73\x00\ +\x74\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x45\ +\x64\x69\x74\x73\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\ +\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\ +\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\x16\x00\x46\x00\x69\x00\ +\x6e\x00\x69\x00\x73\x00\x68\x00\x20\x00\x6c\x00\x69\x00\x6e\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\ +\x42\x00\x56\x00\x69\x00\x69\x00\x6d\x00\x65\x00\x69\x00\x73\x00\ +\x74\x00\x65\x00\x6c\x00\x65\x00\x20\x00\x76\x00\x69\x00\x69\x00\ +\x76\x00\x61\x00\x20\x00\x73\x00\x75\x00\x6c\x00\x6b\x00\x65\x00\ +\x6d\x00\x61\x00\x74\x00\x74\x00\x61\x00\x20\x00\x73\x00\x69\x00\ +\x74\x00\xe4\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x46\x69\x6e\ +\x69\x73\x68\x65\x73\x20\x61\x20\x6c\x69\x6e\x65\x20\x77\x69\x74\ +\x68\x6f\x75\x74\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\x74\x07\ +\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\x69\x73\x68\ +\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x8e\x00\x4c\x00\x75\x00\x6f\ +\x00\x20\x00\x32\x00\x20\x00\x70\x00\x69\x00\x73\x00\x74\x00\x65\ +\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x69\x00\x69\x00\x76\x00\x61\ +\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x6b\ +\x00\x6f\x00\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\x61\ +\x00\x20\x00\x6b\x00\x6f\x00\x68\x00\x74\x00\x65\x00\x69\x00\x73\ +\x00\x69\x00\x69\x00\x6e\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\ +\x00\x46\x00\x54\x00\x20\x00\x74\x00\x65\x00\x6b\x00\x65\x00\x65\ +\x00\x20\x00\x72\x00\x61\x00\x6a\x00\x6f\x00\x69\x00\x74\x00\x75\ +\x00\x6b\x00\x73\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x38\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\ +\x69\x6e\x74\x20\x6c\x69\x6e\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\ +\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\ +\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\ +\x72\x61\x66\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x0a\x00\ +\x56\x00\x69\x00\x69\x00\x76\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\ +\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x08\x00\x4d\x00\x6f\ +\x00\x76\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4d\x6f\ +\x76\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4d\x6f\x76\ +\x65\x01\x03\x00\x00\x00\xb4\x00\x4d\x00\x6f\x00\x76\x00\x65\x00\ +\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x64\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x62\x00\ +\x65\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x32\x00\ +\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\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\x5a\x4d\x6f\x76\x65\x73\x20\x74\x68\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\ +\x62\x65\x74\x77\x65\x65\x6e\x20\x32\x20\x70\x6f\x69\x6e\x74\x73\ +\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\ +\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\ +\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\ +\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4d\x6f\x76\x65\x01\x03\ +\x00\x00\x00\x0c\x00\x4f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x4f\x66\x66\x73\x65\x74\ +\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x4f\x66\x66\x73\x65\ +\x74\x01\x03\x00\x00\x00\x90\x00\x4f\x00\x66\x00\x66\x00\x73\x00\ +\x65\x00\x74\x00\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\x14\x00\x4d\x00\x6f\x00\x6e\x00\x69\x00\x6b\x00\x75\x00\ +\x6c\x00\x6d\x00\x69\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x07\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\ +\x66\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\x00\x00\x66\ +\x00\x4c\x00\x75\x00\x6f\x00\x20\x00\x32\x00\x2d\x00\x70\x00\x69\ +\x00\x73\x00\x74\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x75\ +\x00\x6f\x00\x72\x00\x61\x00\x6b\x00\x61\x00\x69\x00\x64\x00\x65\ +\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x6b\ +\x00\x6f\x00\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\x61\ +\x00\x20\x00\x6b\x00\x6f\x00\x68\x00\x74\x00\x65\x00\x69\x00\x73\ +\x00\x69\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\ +\x74\x20\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\x2e\x20\x43\x54\x52\ +\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x0f\x44\x72\ +\x61\x66\x74\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\ +\x00\x00\x16\x00\x53\x00\x75\x00\x6f\x00\x72\x00\x61\x00\x6b\x00\ +\x75\x00\x6c\x00\x6d\x00\x69\x00\x6f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\ +\x0f\x44\x72\x61\x66\x74\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\ +\x01\x03\x00\x00\x00\x0c\x00\x52\x00\x6f\x00\x74\x00\x61\x00\x74\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x6f\x74\x61\ +\x74\x65\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\ +\x61\x74\x65\x01\x03\x00\x00\x00\xa4\x00\x52\x00\x6f\x00\x74\x00\ +\x61\x00\x74\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\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\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\ +\x20\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x52\x52\x6f\x74\x61\x74\x65\x73\x20\x74\ +\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\ +\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\ +\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x63\x72\x65\x61\x74\ +\x65\x73\x20\x61\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0c\x44\x72\ +\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\x01\x03\x00\x00\x00\x0e\ +\x00\x53\x00\x6b\x00\x61\x00\x61\x00\x6c\x00\x61\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x07\x00\x00\ +\x00\x0b\x44\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\x00\ +\x00\x00\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\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\x58\x00\x53\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x61\x00\x20\x00\x77\ +\x00\x6f\x00\x72\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x70\ +\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\ +\x00\x20\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\ +\x00\x79\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x53\x65\ +\x6c\x65\x63\x74\x20\x61\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\ +\x6c\x61\x6e\x65\x20\x66\x6f\x72\x20\x67\x65\x6f\x6d\x65\x74\x72\ +\x79\x20\x63\x72\x65\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x11\x44\ +\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\ +\x01\x03\x00\x00\x00\x16\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\ +\x00\x74\x00\x50\x00\x6c\x00\x61\x00\x6e\x00\x65\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\x46\x00\x43\ +\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\x61\ +\x00\x6e\x00\x20\x00\x61\x00\x6e\x00\x6e\x00\x6f\x00\x74\x00\x61\ +\x00\x74\x00\x69\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\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x6e\x6e\x6f\x74\x61\x74\ +\x69\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\ +\x70\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\ +\x01\x03\x00\x00\x00\x0c\x00\x54\x00\x65\x00\x6b\x00\x73\x00\x74\ +\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x54\x65\x78\x74\ +\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\x01\ +\x03\x00\x00\x00\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\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\x32\x00\x4b\x00\x75\x00\x6d\x00\x6f\x00\x61\x00\ +\x20\x00\x76\x00\x69\x00\x69\x00\x6d\x00\x65\x00\x69\x00\x6e\x00\ +\x65\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x11\x55\x6e\x64\x6f\x20\x6c\x61\x73\x74\x20\x73\x65\x67\x6d\x65\ +\x6e\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x55\x6e\x64\ +\x6f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x6a\x00\x55\x00\x6e\x00\ +\x64\x00\x6f\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x6c\x00\x61\x00\x73\x00\x74\x00\x20\x00\x64\x00\x72\x00\ +\x61\x00\x77\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x66\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\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\x00\x50\x00\xe4\x00\x69\x00\x76\x00\x69\ +\x00\x74\x00\xe4\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x55\x70\ +\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\ +\x55\x70\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\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\x0a\x00\x4c\x00\x61\x00\x6e\x00\ +\x6b\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x57\x69\x72\ +\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x57\x69\x72\x65\ +\x01\x03\x00\x00\x00\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\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\x32\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\ +\x72\x00\x20\x00\x6d\x00\x61\x00\x70\x00\x70\x00\x65\x00\x64\x00\ +\x20\x00\x74\x00\x6f\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\ +\x77\x00\x69\x00\x64\x00\x74\x00\x68\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\x24\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\ +\x00\x6d\x00\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x66\x00\x69\x00\x6c\x00\x65\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\x43\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\ +\x72\x00\x75\x00\x63\x00\x74\x00\x69\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\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\x63\x00\x6f\x00\x6c\x00\x6f\x00\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\x24\x00\x44\x00\x58\x00\x46\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\x44\x58\x46\x20\x66\x6f\x72\x6d\x61\x74\x20\ +\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\ +\x4f\x00\x6c\x00\x65\x00\x74\x00\x75\x00\x73\x00\x76\x00\xe4\x00\ +\x72\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x44\x65\x66\ +\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x4e\x00\x44\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\ +\x00\x20\x00\x68\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x00\x20\ +\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\ +\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x64\x00\x69\ +\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x44\x65\x66\x61\x75\x6c\ +\x74\x20\x68\x65\x69\x67\x68\x74\x20\x66\x6f\x72\x20\x74\x65\x78\ +\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x4f\x00\x6c\x00\x65\x00\ +\x74\x00\x75\x00\x73\x00\x20\x00\x76\x00\x69\x00\x69\x00\x76\x00\ +\x61\x00\x6e\x00\x6c\x00\x65\x00\x76\x00\x65\x00\x79\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\x65\x66\x61\x75\x6c\x74\ +\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x22\x00\x4f\x00\x6c\x00\x65\x00\x74\x00\x75\x00\x73\x00\x20\ +\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\x69\x00\x61\x00\x72\x00\x6b\ +\x00\x6b\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x44\x65\ +\x66\x61\x75\x6c\x74\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x20\x73\ +\x68\x65\x65\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x44\x00\x65\ +\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x74\x00\x65\ +\x00\x78\x00\x74\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x11\x44\x65\x66\x61\x75\x6c\x74\x20\ +\x74\x65\x78\x74\x20\x66\x6f\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x26\x00\x44\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\ +\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\x00\x68\x00\x65\x00\ +\x69\x00\x67\x00\x68\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\x2a\x00\x44\x00\x65\ +\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x77\x00\x6f\ +\x00\x72\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x70\x00\x6c\ +\x00\x61\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\ +\x44\x65\x66\x61\x75\x6c\x74\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\ +\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x44\x00\ +\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\ +\x73\x00\x20\x00\x26\x00\x20\x00\x4c\x00\x65\x00\x61\x00\x64\x00\ +\x65\x00\x72\x00\x20\x00\x61\x00\x72\x00\x72\x00\x6f\x00\x77\x00\ +\x20\x00\x73\x00\x74\x00\x79\x00\x6c\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\ +\x26\x20\x4c\x65\x61\x64\x65\x72\x20\x61\x72\x72\x6f\x77\x20\x73\ +\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x34\x00\x44\x00\x69\ +\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\ +\x00\x20\x00\x70\x00\x72\x00\x65\x00\x63\x00\x69\x00\x73\x00\x69\ +\x00\x6f\x00\x6e\x00\x20\x00\x6c\x00\x65\x00\x76\x00\x65\x00\x6c\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x44\x69\x6d\x65\x6e\x73\ +\x69\x6f\x6e\x73\x20\x70\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\ +\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\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\x2e\x00\x59\x00\x6c\x00\x65\x00\x69\x00\x73\x00\x65\x00\x74\ +\x00\x20\x00\x76\x00\x65\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x61\ +\x00\x73\x00\x65\x00\x74\x00\x75\x00\x6b\x00\x73\x00\x65\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x47\x65\x6e\x65\x72\x61\ +\x6c\x20\x44\x72\x61\x66\x74\x20\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x20\x00\x47\x00\x65\x00\x6e\x00\x65\ +\x00\x72\x00\x61\x00\x6c\x00\x20\x00\x73\x00\x65\x00\x74\x00\x74\ +\x00\x69\x00\x6e\x00\x67\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\ +\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\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\x1a\x00\x54\x00\x75\x00\x6f\x00\x20\x00\x61\x00\x73\ +\x00\x65\x00\x74\x00\x74\x00\x65\x00\x6c\x00\x75\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0e\x49\x6d\x70\x6f\x72\x74\x20\x6c\ +\x61\x79\x6f\x75\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x54\ +\x00\x75\x00\x6f\x00\x20\x00\x74\x00\x79\x00\x79\x00\x6c\x00\x69\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x49\x6d\x70\x6f\x72\x74\ +\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\x49\ +\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x74\x00\x65\ +\x00\x78\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\ +\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\ +\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x49\x6d\ +\x70\x6f\x72\x74\x20\x74\x65\x78\x74\x73\x20\x61\x6e\x64\x20\x64\ +\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x1a\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2f\x00\ +\x45\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0d\x49\x6d\x70\x6f\x72\x74\x2f\x45\x78\x70\x6f\ +\x72\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\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\x12\x00\x45\x00\x69\x00\x20\x00\x6d\x00\ +\x69\x00\x74\x00\xe4\x00\xe4\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\ +\x45\x00\x69\x00\x20\x00\x6d\x00\x69\x00\x74\x00\xe4\x00\xe4\x00\ +\x6e\x00\x20\x00\x28\x00\x6e\x00\x6f\x00\x70\x00\x65\x00\x69\x00\ +\x6e\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x4e\x6f\x6e\ +\x65\x20\x28\x66\x61\x73\x74\x65\x73\x74\x29\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\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\x54\x00\x41\x00\x6c\x00\x6b\ +\x00\x75\x00\x70\x00\x65\x00\x72\x00\xe4\x00\x69\x00\x6e\x00\x65\ +\x00\x6e\x00\x20\x00\x76\x00\xe4\x00\x72\x00\x69\x00\x20\x00\x6a\ +\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x61\ +\x00\x6c\x00\x69\x00\x20\x00\x76\x00\x69\x00\x69\x00\x76\x00\x61\ +\x00\x6e\x00\x6c\x00\x65\x00\x76\x00\x65\x00\x79\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1c\x4f\x72\x69\x67\x69\x6e\x61\x6c\ +\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\ +\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\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\x24\x00\x53\x00\ +\x56\x00\x47\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\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\ +\x1a\x00\x4b\x00\x6f\x00\x68\x00\x64\x00\x69\x00\x73\x00\x74\x00\ +\x61\x00\x20\x00\x76\x00\xe4\x00\x72\x00\x69\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0a\x53\x6e\x61\x70\x20\x63\x6f\x6c\x6f\x72\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\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\x82\x00\x54\x00\x68\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6c\ +\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x70\x00\x70\x00\x69\ +\x00\x6e\x00\x67\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x20\ +\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x72\x00\x61\x00\x6e\ +\x00\x73\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x64\x00\x78\x00\x66\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\ +\x00\x72\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\ +\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x77\x00\x69\x00\x64\x00\x74\ +\x00\x68\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x41\x54\x68\ +\x65\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\ +\x66\x69\x6c\x65\x20\x66\x6f\x72\x20\x74\x72\x61\x6e\x73\x6c\x61\ +\x74\x69\x6e\x67\x20\x64\x78\x66\x20\x63\x6f\x6c\x6f\x72\x73\x20\ +\x69\x6e\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x73\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x7a\x00\x54\x00\x68\x00\x65\x00\x20\x00\ +\x64\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\ +\x74\x00\x65\x00\x6d\x00\x70\x00\x6c\x00\x61\x00\x74\x00\x65\x00\ +\x20\x00\x74\x00\x6f\x00\x20\x00\x75\x00\x73\x00\x65\x00\x20\x00\ +\x77\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x63\x00\x72\x00\x65\x00\ +\x61\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\ +\x6e\x00\x65\x00\x77\x00\x20\x00\x64\x00\x72\x00\x61\x00\x77\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x73\x00\x68\x00\x65\x00\x65\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\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\xe4\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\x66\ +\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x6e\x00\x61\x00\x6d\x00\x65\ +\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x6c\x00\x6c\ +\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x74\ +\x00\x65\x00\x78\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\ +\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\ +\x00\x6f\x00\x6e\x00\x73\x00\x2e\x00\x0a\x00\x49\x00\x74\x00\x20\ +\x00\x63\x00\x61\x00\x6e\x00\x20\x00\x62\x00\x65\x00\x20\x00\x61\ +\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x6e\x00\x61\ +\x00\x6d\x00\x65\x00\x20\x00\x73\x00\x75\x00\x63\x00\x68\x00\x20\ +\x00\x61\x00\x73\x00\x20\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\ +\x00\x6c\x00\x22\x00\x2c\x00\x20\x00\x61\x00\x20\x00\x64\x00\x65\ +\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x73\x00\x74\ +\x00\x79\x00\x6c\x00\x65\x00\x20\x00\x73\x00\x75\x00\x63\x00\x68\ +\x00\x20\x00\x61\x00\x73\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\x00\x6f\x00\x72\x00\x20\x00\x22\ +\x00\x6d\x00\x6f\x00\x6e\x00\x6f\x00\x22\x00\x2c\x00\x20\x00\x6f\ +\x00\x72\x00\x20\x00\x61\x00\x20\x00\x66\x00\x61\x00\x6d\x00\x69\ +\x00\x6c\x00\x79\x00\x20\x00\x73\x00\x75\x00\x63\x00\x68\x00\x20\ +\x00\x61\x00\x73\x00\x20\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\ +\x00\x6c\x00\x2c\x00\x48\x00\x65\x00\x6c\x00\x76\x00\x65\x00\x74\ +\x00\x69\x00\x63\x00\x61\x00\x2c\x00\x73\x00\x61\x00\x6e\x00\x73\ +\x00\x22\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x20\x00\x6e\ +\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\ +\x00\x20\x00\x61\x00\x20\x00\x73\x00\x74\x00\x79\x00\x6c\x00\x65\ +\x00\x0a\x00\x73\x00\x75\x00\x63\x00\x68\x00\x20\x00\x61\x00\x73\ +\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\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\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\x01\xc6\x00\ +\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x68\x00\ +\x6f\x00\x64\x00\x20\x00\x63\x00\x68\x00\x6f\x00\x6f\x00\x73\x00\ +\x65\x00\x64\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x69\x00\ +\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x72\x00\x61\x00\x6e\x00\ +\x73\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x20\x00\ +\x44\x00\x58\x00\x46\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ +\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x46\x00\x72\x00\ +\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x2e\x00\x20\x00\x0a\x00\ +\x49\x00\x66\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ +\x20\x00\x6d\x00\x61\x00\x70\x00\x70\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\x68\x00\x6f\x00\x6f\x00\ +\x73\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x79\x00\x6f\x00\x75\x00\ +\x20\x00\x6d\x00\x75\x00\x73\x00\x74\x00\x20\x00\x63\x00\x68\x00\ +\x6f\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x61\x00\x20\x00\x63\x00\ +\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x70\x00\ +\x70\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x66\x00\x69\x00\x6c\x00\ +\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x69\x00\ +\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x74\x00\ +\x72\x00\x61\x00\x6e\x00\x73\x00\x6c\x00\x61\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x20\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x00\ +\x20\x00\x74\x00\x68\x00\x61\x00\x74\x00\x20\x00\x77\x00\x69\x00\ +\x6c\x00\x6c\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\ +\x72\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\ +\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x6c\x00\ +\x69\x00\x6e\x00\x65\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\ +\x73\x00\x2e\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\xe3\x54\ +\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\ +\x64\x20\x63\x68\x6f\x6f\x73\x65\x64\x20\x66\x6f\x72\x20\x69\x6d\ +\x70\x6f\x72\x74\x69\x6e\x67\x20\x6f\x72\x20\x74\x72\x61\x6e\x73\ +\x6c\x61\x74\x69\x6e\x67\x20\x44\x58\x46\x20\x6f\x62\x6a\x65\x63\ +\x74\x20\x63\x6f\x6c\x6f\x72\x20\x69\x6e\x74\x6f\x20\x46\x72\x65\ +\x65\x43\x41\x44\x2e\x20\x0a\x49\x66\x20\x63\x6f\x6c\x6f\x72\x20\ +\x6d\x61\x70\x70\x69\x6e\x67\x20\x69\x73\x20\x63\x68\x6f\x6f\x73\ +\x65\x64\x2c\x20\x79\x6f\x75\x20\x6d\x75\x73\x74\x20\x63\x68\x6f\ +\x6f\x73\x65\x20\x61\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\ +\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x63\x6f\x6e\x74\x61\x69\x6e\ +\x69\x6e\x67\x20\x61\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6f\ +\x6e\x20\x74\x61\x62\x6c\x65\x20\x74\x68\x61\x74\x20\x77\x69\x6c\ +\x6c\x20\x63\x6f\x6e\x76\x65\x72\x74\x20\x63\x6f\x6c\x6f\x72\x73\ +\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x73\ +\x2e\x0a\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\xfc\x00\x54\x00\x68\x00\x69\ +\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x6f\x00\x72\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x61\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\x66\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\ +\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x74\x00\x65\ +\x00\x78\x00\x74\x00\x73\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\ +\x00\x20\x00\x74\x00\x68\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x64\ +\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\ +\x00\x73\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x76\x00\x65\ +\x00\x72\x00\x74\x00\x69\x00\x63\x00\x61\x00\x6c\x00\x2e\x00\x20\ +\x00\x44\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\ +\x00\x69\x00\x73\x00\x20\x00\x6c\x00\x65\x00\x66\x00\x74\x00\x2c\ +\x00\x20\x00\x77\x00\x68\x00\x69\x00\x63\x00\x68\x00\x20\x00\x69\ +\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x49\x00\x53\ +\x00\x4f\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\ +\x00\x72\x00\x64\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7e\ +\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6f\x72\x69\x65\ +\x6e\x74\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x64\ +\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x20\x74\x65\x78\x74\x73\x20\x77\ +\x68\x65\x6e\x20\x74\x68\x6f\x73\x65\x20\x64\x69\x6d\x65\x6e\x73\ +\x69\x6f\x6e\x73\x20\x61\x72\x65\x20\x76\x65\x72\x74\x69\x63\x61\ +\x6c\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x69\x73\x20\x6c\x65\ +\x66\x74\x2c\x20\x77\x68\x69\x63\x68\x20\x69\x73\x20\x74\x68\x65\ +\x20\x49\x53\x4f\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x2e\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\xf6\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x76\ +\x00\x61\x00\x6c\x00\x75\x00\x65\x00\x20\x00\x75\x00\x73\x00\x65\ +\x00\x64\x00\x20\x00\x62\x00\x79\x00\x20\x00\x66\x00\x75\x00\x6e\ +\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x74\ +\x00\x68\x00\x61\x00\x74\x00\x20\x00\x75\x00\x73\x00\x65\x00\x20\ +\x00\x61\x00\x20\x00\x74\x00\x6f\x00\x6c\x00\x65\x00\x72\x00\x61\ +\x00\x6e\x00\x63\x00\x65\x00\x2e\x00\x0a\x00\x56\x00\x61\x00\x6c\ +\x00\x75\x00\x65\x00\x73\x00\x20\x00\x77\x00\x69\x00\x74\x00\x68\ +\x00\x20\x00\x64\x00\x69\x00\x66\x00\x66\x00\x65\x00\x72\x00\x65\ +\x00\x6e\x00\x63\x00\x65\x00\x73\x00\x20\x00\x62\x00\x65\x00\x6c\ +\x00\x6f\x00\x77\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\ +\x00\x76\x00\x61\x00\x6c\x00\x75\x00\x65\x00\x20\x00\x77\x00\x69\ +\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\x20\x00\x74\x00\x72\ +\x00\x65\x00\x61\x00\x74\x00\x65\x00\x64\x00\x20\x00\x61\x00\x73\ +\x00\x20\x00\x73\x00\x61\x00\x6d\x00\x65\x00\x2e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x7b\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\ +\x65\x20\x76\x61\x6c\x75\x65\x20\x75\x73\x65\x64\x20\x62\x79\x20\ +\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\x74\x68\x61\x74\x20\x75\ +\x73\x65\x20\x61\x20\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x2e\x0a\ +\x56\x61\x6c\x75\x65\x73\x20\x77\x69\x74\x68\x20\x64\x69\x66\x66\ +\x65\x72\x65\x6e\x63\x65\x73\x20\x62\x65\x6c\x6f\x77\x20\x74\x68\ +\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x77\x69\x6c\x6c\x20\x62\x65\ +\x20\x74\x72\x65\x61\x74\x65\x64\x20\x61\x73\x20\x73\x61\x6d\x65\ +\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x54\x00\x6f\x00\x6c\x00\ +\x65\x00\x72\x00\x61\x00\x6e\x00\x63\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\x5a\x00\x4b\x00\ +\xe4\x00\x79\x00\x74\x00\xe4\x00\x20\x00\x6f\x00\x6c\x00\x65\x00\ +\x74\x00\x75\x00\x73\x00\x76\x00\xe4\x00\x72\x00\x69\x00\xe4\x00\ +\x20\x00\x6a\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\ +\x61\x00\x61\x00\x6c\x00\x69\x00\x61\x00\x20\x00\x76\x00\x69\x00\ +\x69\x00\x76\x00\x61\x00\x6e\x00\x6c\x00\x65\x00\x76\x00\x65\x00\ +\x79\x00\x74\x00\x74\x00\xe4\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1f\x55\x73\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ +\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\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\x10\x00\x58\x00\x59\x00\x20\x00\x28\ +\x00\x54\x00\x6f\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\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\x78\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\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\x73\x00\x20\x00\x77\x00\x69\ +\x00\x6c\x00\x6c\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\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\x68\x00\x69\x00\x66\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x69\x00\x73\x00\x20\x00\x75\x00\x6e\x00\x63\x00\x68\ +\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\x74\ +\x00\x65\x00\x78\x00\x74\x00\x73\x00\x2f\x00\x6d\x00\x74\x00\x65\ +\x00\x78\x00\x74\x00\x73\x00\x20\x00\x77\x00\x6f\x00\x6e\x00\x27\ +\x00\x74\x00\x20\x00\x62\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x64\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x34\x69\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x75\ +\x6e\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x65\x78\x74\x73\x2f\ +\x6d\x74\x65\x78\x74\x73\x20\x77\x6f\x6e\x27\x74\x20\x62\x65\x20\ +\x69\x6d\x70\x6f\x72\x74\x65\x64\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\ +\x00\x70\x00\x78\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x70\x78\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x73\x00\x68\x00\x69\x00\x66\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x73\x68\x69\x66\ +\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x4f\x00\x6c\x00\x65\x00\ +\x74\x00\x75\x00\x73\x00\x20\x00\x76\x00\xe4\x00\x72\x00\x69\x00\ +\x20\x00\x75\x00\x75\x00\x73\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\ +\x69\x00\x6c\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x21\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\ +\x6f\x72\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x44\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\x73\x00\x6e\x00\x61\x00\x70\x00\x20\ +\x00\x73\x00\x79\x00\x6d\x00\x62\x00\x6f\x00\x6c\x00\x73\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\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x65\x00\x66\ +\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x6c\x00\x69\x00\x6e\ +\x00\x65\x00\x77\x00\x69\x00\x64\x00\x74\x00\x68\x00\x20\x00\x66\ +\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x77\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\x25\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\ +\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x6f\x72\x20\ +\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0c\x00\x26\x00\x43\x00\x6c\x00\x6f\x00\x73\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x06\x26\x43\x6c\x6f\x73\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\ +\x26\x00\x43\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x0a\x00\x26\x00\x43\x00\x6f\x00\x70\x00\x79\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\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\x0a\x00\x26\ +\x00\x55\x00\x6e\x00\x64\x00\x6f\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\x30\ +\x00\x41\x00\x6b\x00\x74\x00\x69\x00\x69\x00\x76\x00\x69\x00\x6e\ +\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x65\x00\x64\x00\x6f\x00\x73\ +\x00\x2d\x00\x6b\x00\x6f\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x41\x63\x74\x69\x76\x65\ +\x20\x44\x72\x61\x66\x74\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\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\x38\x00\x4b\x00\xe4\x00\x79\x00\x74\x00\ +\xe4\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x74\x00\ +\x75\x00\x69\x00\x68\x00\x69\x00\x6e\x00\x20\x00\x6b\x00\x6f\x00\ +\x68\x00\x74\x00\x65\x00\x69\x00\x73\x00\x69\x00\x69\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x19\x41\x70\x70\x6c\x79\x20\x74\ +\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0a\x00\x4b\x00\x61\x00\x61\x00\x72\x00\x69\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x03\x41\x72\x63\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x43\x00\x61\x00\x6e\x00\ +\x6e\x00\x6f\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x66\x00\x73\x00\ +\x65\x00\x74\x00\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x74\x00\ +\x79\x00\x70\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1f\x43\x61\x6e\x6e\x6f\x74\x20\x6f\x66\x66\x73\x65\x74\x20\x74\ +\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\ +\x00\x43\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\x59\x00\x6d\x00\ +\x70\x00\x79\x00\x72\x00\xe4\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x06\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x6c\x00\x43\x00\x6f\x00\x6f\x00\x72\x00\ +\x64\x00\x69\x00\x6e\x00\x61\x00\x74\x00\x65\x00\x73\x00\x20\x00\ +\x72\x00\x65\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x76\x00\x65\x00\ +\x20\x00\x74\x00\x6f\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\x6f\x00\ +\x72\x00\x20\x00\x61\x00\x62\x00\x73\x00\x6f\x00\x6c\x00\x75\x00\ +\x74\x00\x65\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\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\x50\x00\x44\x00\ +\x6f\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x70\x00\x72\x00\ +\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x70\x00\x6f\x00\ +\x69\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x20\x00\ +\x61\x00\x20\x00\x64\x00\x72\x00\x61\x00\x77\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\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\x0e\x00\x4d\x00\x75\x00\x6f\x00\x6b\x00\x6b\x00\x61\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\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\x14\x00\x46\x00\ +\x61\x00\x63\x00\x65\x00\x20\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\ +\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\x54\x00\x56\x00\x69\x00\x69\x00\x6d\x00\x65\x00\ +\x69\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x65\x00\x65\x00\x20\x00\ +\x6a\x00\x61\x00\x20\x00\x73\x00\x75\x00\x6c\x00\x6b\x00\x65\x00\ +\x65\x00\x20\x00\x6e\x00\x79\x00\x6b\x00\x79\x00\x69\x00\x73\x00\ +\x65\x00\x6e\x00\x20\x00\x76\x00\x69\x00\x69\x00\x76\x00\x61\x00\ +\x6e\x00\x20\x00\x28\x00\x43\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x28\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x61\x6e\x64\x20\ +\x63\x6c\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\ +\x6e\x74\x20\x6c\x69\x6e\x65\x20\x28\x43\x29\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\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\x16\x00\x46\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\ +\x00\x20\x00\x6b\x00\x6f\x00\x6b\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x46\x6f\x6e\x74\x20\x53\x69\x7a\x65\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\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\x6e\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\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\x63\x00\x6f\x00\x70\x00\x69\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\x6d\x00\x6f\x00\x76\x00\x65\x00\x64\ +\x00\x20\x00\x28\x00\x43\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x37\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x63\x6f\ +\x70\x69\x65\x64\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\ +\x6d\x6f\x76\x65\x64\x20\x28\x43\x29\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x49\x00\x6e\x00\x73\x00\ +\x74\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x64\x00\x20\x00\x4d\x00\ +\x61\x00\x63\x00\x72\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x10\x49\x6e\x73\x74\x61\x6c\x6c\x65\x64\x20\x4d\x61\x63\ +\x72\x6f\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x38\x00\x4c\x00\x61\x00\x73\x00\x74\x00\x20\x00\x70\x00\ +\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x68\x00\x61\x00\x73\x00\ +\x20\x00\x62\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x72\x00\x65\x00\ +\x6d\x00\x6f\x00\x76\x00\x65\x00\x64\x00\x0a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1c\x4c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\ +\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x72\x65\x6d\x6f\x76\x65\x64\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0a\x00\x56\x00\x69\x00\x69\x00\x76\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x56\x00\x69\x00\x69\x00\ +\x76\x00\x61\x00\x6e\x00\x20\x00\x76\x00\xe4\x00\x72\x00\x69\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x4c\x69\x6e\x65\x20\x43\x6f\ +\x6c\x6f\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x1a\x00\x56\x00\x69\x00\x69\x00\x76\x00\x61\x00\x6e\x00\ +\x20\x00\x6c\x00\x65\x00\x76\x00\x65\x00\x79\x00\x73\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x4c\x69\x6e\x65\x20\x57\x69\x64\x74\ +\x68\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x08\x00\x4d\x00\x6f\x00\x76\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x12\x00\x45\x00\x69\x00\x20\x00\x6d\x00\ +\x69\x00\x74\x00\xe4\x00\xe4\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x1e\x00\x4e\x00\x75\x00\x6d\x00\x62\x00\ +\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x73\x00\x69\x00\ +\x64\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4e\ +\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x73\x69\x64\x65\x73\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x4f\ +\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\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\x1e\x00\x56\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x73\x00\x65\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x50\x69\x63\x6b\x20\x4f\ +\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x50\x00\x50\x00\x69\x00\x63\x00\x6b\x00\x20\x00\ +\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x74\x00\ +\x6f\x00\x20\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x65\x00\ +\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\x00\x72\x00\x61\x00\ +\x77\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x70\x00\x6c\x00\x61\x00\ +\x6e\x00\x65\x00\x0a\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\x22\x00\x50\ +\x00\x69\x00\x63\x00\x6b\x00\x20\x00\x62\x00\x61\x00\x73\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\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\x22\x00\x50\x00\x69\x00\ +\x63\x00\x6b\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\ +\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x3a\x00\x0a\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\x26\x00\x50\x00\x69\x00\x63\x00\x6b\ +\x00\x20\x00\x63\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x20\ +\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x3a\x00\x0a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\x6b\x20\x63\x65\x6e\ +\x74\x65\x72\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x50\x00\x69\x00\ +\x63\x00\x6b\x00\x20\x00\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\ +\x6e\x00\x63\x00\x65\x00\x3a\x00\x0a\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\x20\x00\x50\x00\x69\x00\x63\x00\x6b\x00\x20\x00\x65\x00\x6e\ +\x00\x64\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x3a\ +\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x50\x69\x63\x6b\ +\x20\x65\x6e\x64\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\x50\x00\x69\ +\x00\x63\x00\x6b\x00\x20\x00\x66\x00\x69\x00\x72\x00\x73\x00\x74\ +\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\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\x2a\x00\x50\x00\x69\ +\x00\x63\x00\x6b\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\ +\x00\x74\x00\x3a\x00\x0a\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\x52\x00\x50\x00\x69\x00\x63\x00\x6b\x00\x20\x00\ +\x6e\x00\x65\x00\x78\x00\x74\x00\x20\x00\x70\x00\x6f\x00\x69\x00\ +\x6e\x00\x74\x00\x2c\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x28\x00\ +\x46\x00\x29\x00\x69\x00\x6e\x00\x69\x00\x73\x00\x68\x00\x20\x00\ +\x6f\x00\x72\x00\x20\x00\x28\x00\x43\x00\x29\x00\x6c\x00\x6f\x00\ +\x73\x00\x65\x00\x3a\x00\x0a\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\x22\x00\x50\x00\x69\x00\x63\ +\x00\x6b\x00\x20\x00\x6e\x00\x65\x00\x78\x00\x74\x00\x20\x00\x70\ +\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x3a\x00\x0a\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\x2a\x00\x50\x00\x69\x00\x63\x00\x6b\x00\ +\x20\x00\x6f\x00\x70\x00\x70\x00\x6f\x00\x73\x00\x69\x00\x74\x00\ +\x65\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x3a\x00\ +\x0a\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\x50\x00\x69\x00\x63\x00\x6b\x00\x20\x00\x72\x00\x61\x00\x64\ +\x00\x69\x00\x75\x00\x73\x00\x3a\x00\x0a\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\x00\x50\x00\x69\x00\x63\x00\x6b\x00\x20\x00\x72\x00\x6f\x00\ +\x74\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\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\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\x50\x00\x69\x00\x63\ +\x00\x6b\x00\x20\x00\x72\x00\x6f\x00\x74\x00\x61\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x20\x00\x63\x00\x65\x00\x6e\x00\x74\x00\x65\ +\x00\x72\x00\x3a\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\ +\x50\x69\x63\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\x6e\x20\x63\x65\ +\x6e\x74\x65\x72\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x26\x00\x50\x00\x69\x00\x63\x00\x6b\x00\x20\ +\x00\x73\x00\x63\x00\x61\x00\x6c\x00\x65\x00\x20\x00\x66\x00\x61\ +\x00\x63\x00\x74\x00\x6f\x00\x72\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\x24\x00\x50\x00\x69\x00\x63\x00\ +\x6b\x00\x20\x00\x73\x00\x74\x00\x61\x00\x72\x00\x74\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\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\x24\x00\x50\x00\x69\x00\x63\x00\ +\x6b\x00\x20\x00\x73\x00\x74\x00\x61\x00\x72\x00\x74\x00\x20\x00\ +\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x3a\x00\x0a\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\x08\x00\x53\x00\xe4\x00\x64\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x52\x61\x64\x69\x75\x73\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x59\x00\x6d\x00\x70\ +\x00\x79\x00\x72\x00\xe4\x00\x6e\x00\x20\x00\x73\x00\xe4\x00\x64\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x61\x64\x69\ +\x75\x73\x20\x6f\x66\x20\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4a\x00\x52\x00\x65\ +\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x69\ +\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x66\x00\x72\x00\x6f\x00\x6d\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x63\x00\x75\x00\x72\ +\x00\x72\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x25\ +\x52\x65\x6d\x6f\x76\x65\x20\x70\x6f\x69\x6e\x74\x73\x20\x66\x72\ +\x6f\x6d\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6f\ +\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0c\x00\x52\x00\x6f\x00\x74\x00\x61\x00\x74\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x6f\x74\x61\x74\ +\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0e\x00\x53\x00\x6b\x00\x61\x00\x61\x00\x6c\x00\x61\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x56\ +\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x73\x00\x65\x00\x20\x00\x74\ +\x00\x61\x00\x73\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x53\x65\x6c\x65\x63\x74\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x56\x00\x61\ +\x00\x6c\x00\x69\x00\x74\x00\x73\x00\x65\x00\x20\x00\x78\x00\x79\ +\x00\x2d\x00\x74\x00\x61\x00\x73\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x58\x59\x20\x70\x6c\ +\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x1e\x00\x56\x00\x61\x00\x6c\x00\x69\x00\x74\x00\x73\x00\ +\x65\x00\x20\x00\x58\x00\x5a\x00\x2d\x00\x74\x00\x61\x00\x73\x00\ +\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\ +\x74\x20\x58\x5a\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x56\x00\x61\x00\x6c\ +\x00\x69\x00\x74\x00\x73\x00\x65\x00\x20\x00\x59\x00\x5a\x00\x2d\ +\x00\x74\x00\x61\x00\x73\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x59\x5a\x20\x70\x6c\x61\x6e\ +\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x32\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\x6d\x00\x6f\x00\x76\x00\ +\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x53\x65\x6c\ +\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\ +\x20\x6d\x6f\x76\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x36\x00\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\x6f\ +\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x00\x0a\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\ +\x36\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\x72\x00\x6f\x00\x74\x00\ +\x61\x00\x74\x00\x65\x00\x0a\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\x34\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\x73\x00\x63\x00\x61\x00\x6c\x00\x65\x00\x0a\ +\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\x38\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\x75\x00\x70\x00\x67\x00\x72\x00\x61\ +\x00\x64\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\ +\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x74\x6f\x20\x75\x70\x67\x72\x61\x64\x65\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5e\x00\x56\x00\x61\ +\x00\x6c\x00\x69\x00\x74\x00\x73\x00\x65\x00\x20\x00\x74\x00\x61\ +\x00\x73\x00\x6f\x00\x20\x00\x6e\x00\x79\x00\x6b\x00\x79\x00\x69\ +\x00\x73\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x6b\x00\x6f\ +\x00\x68\x00\x74\x00\x69\x00\x73\x00\x75\x00\x6f\x00\x72\x00\x61\ +\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x6e\x00\xe4\x00\x6b\x00\x79\ +\x00\x6d\x00\xe4\x00\x6c\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2e\x53\x65\x6c\x65\x63\x74\x20\x70\x6c\x61\x6e\x65\ +\x20\x70\x65\x72\x70\x65\x6e\x64\x69\x63\x75\x6c\x61\x72\x20\x74\ +\x6f\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x76\x69\ +\x65\x77\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x2e\x00\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\x42\x00\x54\x00\x68\ +\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\x00\x69\ +\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x74\x00\x20\x00\x65\x00\x64\ +\x00\x69\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x0a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x21\x54\x68\x69\x73\x20\x6f\x62\x6a\ +\x65\x63\x74\x20\x74\x79\x70\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\ +\x65\x64\x69\x74\x61\x62\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x32\x00\x54\x00\x6f\x00\x67\x00\ +\x67\x00\x6c\x00\x65\x00\x73\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\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\x3c\x00\x55\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x73\x00\x74\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\x0a\x00\x4e\x00\xe4\x00\x79\x00\x74\ +\x00\xe4\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x56\x69\x65\x77\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\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\x3a\x00\x58\x00\x2d\x00\ +\x6b\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x69\x00\x6e\x00\x61\x00\ +\x61\x00\x74\x00\x69\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x75\x00\ +\x72\x00\x61\x00\x61\x00\x76\x00\x61\x00\x20\x00\x6b\x00\x6f\x00\ +\x68\x00\x74\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x58\ +\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\ +\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x58\x00\x59\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x02\x58\x59\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x58\x00\x5a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x02\x58\x5a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x02\x00\x59\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x01\x59\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x3a\x00\x59\x00\x2d\x00\x6b\x00\x6f\x00\x6f\ +\x00\x72\x00\x64\x00\x69\x00\x6e\x00\x61\x00\x61\x00\x74\x00\x69\ +\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x75\x00\x72\x00\x61\x00\x61\ +\x00\x76\x00\x61\x00\x20\x00\x6b\x00\x6f\x00\x68\x00\x74\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x59\x20\x63\x6f\x6f\x72\ +\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\ +\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x04\x00\x59\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x02\x59\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x02\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x01\ +\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x3a\x00\x5a\x00\x2d\x00\x6b\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\ +\x69\x00\x6e\x00\x61\x00\x61\x00\x74\x00\x69\x00\x6e\x00\x20\x00\ +\x73\x00\x65\x00\x75\x00\x72\x00\x61\x00\x61\x00\x76\x00\x61\x00\ +\x20\x00\x6b\x00\x6f\x00\x68\x00\x74\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1a\x5a\x20\x63\x6f\x6f\x72\x64\x69\x6e\x61\x74\ +\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\ +\x61\x00\x6b\x00\x74\x00\x69\x00\x69\x00\x76\x00\x69\x00\x6e\x00\ +\x65\x00\x6e\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x6f\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x61\ +\x63\x74\x69\x76\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x3a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x64\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x43\x00\x6f\x00\x6d\ +\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x42\x00\x61\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\x95\xad\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ @@ -14355,829 +18603,2860 @@ qt_resource_data = "\ \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\xb2\x3b\ +\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\xa5\xcc\x00\x00\x00\x59\ +\x00\x00\xa6\xa1\x00\x00\x00\x5a\x00\x00\xa7\x56\x00\x00\x05\xd9\ +\x00\x00\xa6\x61\x00\x00\x05\xda\x00\x00\xa6\x81\x00\x00\x05\xea\ +\x00\x00\xa7\x36\x00\x00\x07\x78\x00\x00\x71\x96\x00\x00\x48\x83\ +\x00\x00\x03\x73\x00\x00\x48\x83\x00\x00\x78\x38\x00\x00\x68\x34\ +\x00\x00\x6b\xf7\x00\x04\xa6\x79\x00\x00\x7b\xb5\x00\x04\xbb\x04\ +\x00\x00\x0c\x52\x00\x04\xbb\x04\x00\x00\x80\x30\x00\x05\x30\x45\ +\x00\x00\x0e\xb7\x00\x05\x30\x45\x00\x00\x92\xd5\x00\x05\x46\xc5\ +\x00\x00\x0e\xe2\x00\x05\x46\xc5\x00\x00\x93\x67\x00\x05\x56\x45\ +\x00\x00\x48\x85\x00\x05\x56\x45\x00\x00\x93\x9b\x00\x05\xac\xf4\ +\x00\x00\x1a\xca\x00\x05\xb8\xfd\x00\x00\xa3\x4c\x00\x05\xcf\xc7\ +\x00\x00\xa3\xf8\x00\x05\xe0\x85\x00\x00\x24\xc9\x00\x06\xab\x8c\ +\x00\x00\x6d\x23\x00\x10\x84\x49\x00\x00\x54\x8f\x00\x12\x05\xba\ +\x00\x00\x9f\x72\x00\x16\xc6\xda\x00\x00\x86\xa0\x00\x2a\xa6\x79\ +\x00\x00\x74\x5e\x00\x2b\xc4\xaf\x00\x00\x75\x56\x00\x2b\xe0\x65\ +\x00\x00\x75\x93\x00\x39\xdf\x33\x00\x00\x36\x64\x00\x3d\xa1\x19\ +\x00\x00\x79\x66\x00\x3e\x93\x83\x00\x00\x37\x92\x00\x48\x8f\x7c\ +\x00\x00\x27\x8f\x00\x4b\x66\x35\x00\x00\x33\x88\x00\x4b\x66\x37\ +\x00\x00\x33\xcb\x00\x4b\x66\x39\x00\x00\x34\x0e\x00\x4b\x87\xd4\ +\x00\x00\x7f\x67\x00\x57\x60\x54\x00\x00\x9b\x4f\x00\x58\xfd\xf4\ +\x00\x00\x4c\x04\x00\x59\x98\x25\x00\x00\x15\x6e\x00\x59\x98\x25\ +\x00\x00\x9c\xb5\x00\x6a\x58\x9a\x00\x00\x95\xbd\x00\x79\xef\xd4\ +\x00\x00\x71\xce\x00\x7e\x7f\x0e\x00\x00\x68\x56\x00\x8a\x23\x95\ +\x00\x00\x2b\x0b\x00\x8a\x23\x97\x00\x00\x2b\x55\x00\x8a\x23\x99\ +\x00\x00\x2b\x9f\x00\x91\xbc\xe9\x00\x00\x0f\x1b\x00\xa6\x37\x3f\ +\x00\x00\x29\xc0\x00\xaa\x80\x25\x00\x00\x7e\xa3\x00\xc6\xe3\x6e\ +\x00\x00\x26\x2b\x00\xcb\xa8\x14\x00\x00\x70\xa0\x00\xfc\x00\xca\ +\x00\x00\x8d\xe8\x01\x21\xd6\x39\x00\x00\x53\x96\x01\x22\xb4\xf9\ +\x00\x00\x15\xa1\x01\x2f\x8e\x7e\x00\x00\x5e\xb8\x01\x48\xfe\xa3\ +\x00\x00\x38\x10\x01\x53\xf3\xaa\x00\x00\x83\x88\x01\x56\x16\x4a\ +\x00\x00\x8d\x51\x01\x67\x0d\x8a\x00\x00\x88\x5f\x01\x69\x11\x7a\ +\x00\x00\x99\x80\x01\x82\x39\x0a\x00\x00\x96\x51\x01\x8b\x68\x75\ +\x00\x00\xa2\xd7\x01\xa1\x7f\x63\x00\x00\x1d\x79\x01\xc1\xd9\xde\ +\x00\x00\x56\xb8\x01\xd2\x8f\xd3\x00\x00\x4c\xaf\x01\xdf\x11\x43\ +\x00\x00\x05\xc4\x01\xe2\xf4\x5a\x00\x00\x9e\xff\x01\xfc\xae\xd3\ +\x00\x00\x72\x0f\x02\x05\xbe\x25\x00\x00\x7d\x3e\x02\x46\x58\x0a\ +\x00\x00\x98\xbe\x02\x65\xad\x62\x00\x00\xa8\x36\x02\x6e\x07\xe2\ +\x00\x00\x4f\x2d\x02\x76\x24\x13\x00\x00\x3c\x65\x02\x7d\xe0\x55\ +\x00\x00\x4f\xdd\x02\x94\x46\x1a\x00\x00\x96\x06\x02\xa7\x2c\x15\ +\x00\x00\x04\x5e\x02\xaa\x36\x95\x00\x00\x73\xf7\x02\xb1\xf0\xba\ +\x00\x00\x8a\x2c\x02\xbf\xaa\x8e\x00\x00\x3a\xd2\x02\xc0\x66\xf2\ +\x00\x00\x5a\x92\x02\xc8\x3f\xf5\x00\x00\x66\x1b\x02\xd9\xa4\xb9\ +\x00\x00\x6b\xa4\x02\xdb\x1a\x94\x00\x00\x07\x73\x03\x01\x84\xc4\ +\x00\x00\x8e\xb9\x03\x12\x97\x6a\x00\x00\x8c\x58\x03\x1a\x14\x14\ +\x00\x00\x31\x2e\x03\x1a\x16\x59\x00\x00\x50\x7b\x03\x2f\x1a\x6a\ +\x00\x00\x76\x0a\x03\x7e\xca\xb5\x00\x00\x44\x0c\x03\x88\x1f\xd4\ +\x00\x00\x44\xef\x03\x9e\x58\xa5\x00\x00\x00\x48\x03\xb3\x9e\xfa\ +\x00\x00\x96\xeb\x03\xb5\xc8\x9a\x00\x00\x98\x1b\x03\xbd\xd4\xe4\ +\x00\x00\x76\xc3\x03\xc4\x3c\xf5\x00\x00\x79\x24\x03\xc5\xd5\x5e\ +\x00\x00\x09\xbb\x03\xcb\x0d\xe5\x00\x00\x9c\xe2\x03\xdc\x0c\xd4\ +\x00\x00\x74\xc8\x03\xf2\x70\x35\x00\x00\x2d\xfd\x03\xf2\xbd\x60\ +\x00\x00\x17\x01\x03\xfb\x0f\x04\x00\x00\x30\xbc\x04\x21\x23\x23\ +\x00\x00\x22\x4d\x04\x56\x06\x93\x00\x00\x2e\xe3\x04\x60\x7c\x15\ +\x00\x00\x9b\xa2\x04\x79\xef\x9a\x00\x00\x89\x9b\x04\x82\x77\xf4\ +\x00\x00\x4f\x8f\x04\x87\xf9\x9e\x00\x00\x8f\xee\x04\x8c\xd6\xae\ +\x00\x00\x64\x38\x04\xa0\x8a\x25\x00\x00\x05\x91\x04\xa0\x8a\x25\ +\x00\x00\x7a\xaf\x04\xa4\x31\x5a\x00\x00\x92\x6b\x04\xa8\xeb\x85\ +\x00\x00\x34\x51\x04\xe1\x6e\xe3\x00\x00\x0a\x3f\x04\xe4\x0f\x75\ +\x00\x00\x03\x0d\x04\xeb\x41\xc3\x00\x00\x2e\x62\x04\xef\xd9\xa8\ +\x00\x00\x4b\x7e\x05\x03\x83\x95\x00\x00\x6d\x61\x05\x05\xcb\x13\ +\x00\x00\x42\xd2\x05\x0f\xf2\x74\x00\x00\x94\xe4\x05\x1b\x10\x59\ +\x00\x00\x46\x88\x05\x2a\xe5\x97\x00\x00\x4d\x81\x05\x44\x3b\x5f\ +\x00\x00\x6f\xac\x05\x5c\xd9\xc4\x00\x00\x10\x78\x05\x5c\xd9\xc4\ +\x00\x00\x94\x04\x05\x63\xf6\x93\x00\x00\x4c\x47\x05\x65\xee\x65\ +\x00\x00\x82\x00\x05\x87\xb0\xc3\x00\x00\x9b\x76\x05\x96\xa8\xa5\ +\x00\x00\x13\xf8\x05\x96\xa8\xa5\x00\x00\x9c\x87\x05\xad\x4b\xc3\ +\x00\x00\x44\x62\x05\xb9\x03\xc8\x00\x00\x1e\xf2\x05\xbd\x0c\xba\ +\x00\x00\x84\x43\x05\xbd\x8e\xde\x00\x00\x62\x98\x05\xbe\x56\x93\ +\x00\x00\x4b\x16\x05\xc5\x50\x04\x00\x00\x0c\x85\x05\xe5\x8e\x2e\ +\x00\x00\x11\xd6\x05\xfb\xdc\x83\x00\x00\x43\x38\x06\x1e\xe6\xb5\ +\x00\x00\xa2\x17\x06\x29\xee\xa9\x00\x00\x7a\xdb\x06\x32\xe3\xe3\ +\x00\x00\x7f\x90\x06\x57\x19\xf4\x00\x00\x00\x00\x06\x5a\xef\x15\ +\x00\x00\x74\x29\x06\x5b\xd2\xb5\x00\x00\x3f\x99\x06\x6c\x88\x8e\ +\x00\x00\x41\x05\x06\x74\x1d\x55\x00\x00\x56\x22\x06\x8b\x96\x44\ +\x00\x00\x0d\x37\x06\x97\x58\xc9\x00\x00\x51\x00\x06\xbc\x80\xa5\ +\x00\x00\x1e\x89\x06\xc9\xb8\x05\x00\x00\x77\x4b\x06\xe8\x05\x4e\ +\x00\x00\x07\x06\x06\xee\xaa\x57\x00\x00\xa1\x10\x06\xf0\xcb\x25\ +\x00\x00\x1c\x45\x06\xfa\xff\xc3\x00\x00\x43\xa8\x06\xfc\x1a\x14\ +\x00\x00\x35\x69\x06\xfc\xa0\x8a\x00\x00\x95\x1f\x07\x08\x90\xe5\ +\x00\x00\x2c\x70\x07\x0d\xb7\xf7\x00\x00\x39\xed\x07\x0e\x86\x3e\ +\x00\x00\x1c\xb4\x07\x35\x68\x6e\x00\x00\x18\x24\x07\x35\xe8\x9a\ +\x00\x00\x99\xc1\x07\x44\x41\x2a\x00\x00\x82\xf9\x07\x4a\x1f\x63\ +\x00\x00\x02\x32\x07\x4d\x73\x22\x00\x00\x92\xfb\x07\x4e\xa6\xf2\ +\x00\x00\x80\x8d\x07\x58\xcb\xe8\x00\x00\x93\x31\x07\x63\xfe\x0e\ +\x00\x00\x12\xc1\x07\x80\xc6\xb3\x00\x00\xa5\x8a\x07\x88\x72\x5a\ +\x00\x00\x78\x5d\x07\xa3\xe4\x0e\x00\x00\x23\xdf\x07\xc1\xfc\x13\ +\x00\x00\x2f\xa6\x08\x27\xb4\xba\x00\x00\x97\xd0\x08\x32\xc4\xaa\ +\x00\x00\x9a\x64\x08\x36\x74\x14\x00\x00\x25\xe0\x08\x44\xb9\x83\ +\x00\x00\x35\xe4\x08\x49\xc9\x30\x00\x00\x17\x51\x08\x61\x7c\xb3\ +\x00\x00\x1f\x25\x08\xa2\xca\x67\x00\x00\x50\x2f\x08\xa3\xe0\x33\ +\x00\x00\x7b\xdd\x08\xb1\x15\x28\x00\x00\x30\x53\x08\xb4\x04\x04\ +\x00\x00\x9b\xf6\x08\xd0\x32\xf4\x00\x00\x80\x5e\x08\xd4\xcd\x69\ +\x00\x00\x80\xcd\x08\xe1\x9b\xbe\x00\x00\x1b\x73\x08\xe1\xc1\xfa\ +\x00\x00\x82\x3b\x08\xeb\x8d\x7a\x00\x00\xa5\x37\x09\x20\xda\x24\ +\x00\x00\xa6\xbe\x09\x20\xda\xb4\x00\x00\xa7\x73\x09\x20\xda\xd4\ +\x00\x00\xa5\xe9\x09\x4d\x96\xd9\x00\x00\x26\xbe\x09\x65\xda\x8a\ +\x00\x00\x86\x27\x09\x68\x0d\x29\x00\x00\x91\x20\x09\x71\x8d\x25\ +\x00\x00\x06\xc4\x09\x75\x23\x14\x00\x00\x75\xbc\x09\x76\xed\x34\ +\x00\x00\x67\x4c\x09\x86\xa6\x05\x00\x00\x24\xf6\x09\x8b\x23\xba\ +\x00\x00\x9a\xb7\x09\x9e\xfd\x7e\x00\x00\x67\xa2\x09\xb6\x2a\x63\ +\x00\x00\x34\xbf\x09\xcd\x1c\x55\x00\x00\x9d\x24\x09\xd2\x21\xea\ +\x00\x00\x5f\xcb\x09\xe5\x23\x0e\x00\x00\x59\x8d\x09\xec\x2b\x45\ +\x00\x00\x0c\xef\x09\xef\x33\xa3\x00\x00\x19\x1d\x09\xf0\x1f\x6e\ +\x00\x00\x03\x9c\x09\xfd\x45\x1a\x00\x00\x96\x9c\x0a\x09\xc1\x7a\ +\x00\x00\x99\x11\x0a\x28\x9a\x65\x00\x00\x4e\x22\x0a\x28\x9a\x67\ +\x00\x00\x4e\x7b\x0a\x28\x9a\x69\x00\x00\x4e\xd4\x0a\x2d\xbe\xe4\ +\x00\x00\x31\x97\x0a\x35\xa9\xfa\x00\x00\x8a\xbe\x0a\x3f\x27\x74\ +\x00\x00\x7d\x8c\x0a\x3f\x6b\x05\x00\x00\x7d\xcd\x0a\x49\xa5\x4a\ +\x00\x00\xa2\x4e\x0a\x60\xe0\x15\x00\x00\x27\xd0\x0a\x60\xe0\x17\ +\x00\x00\x28\x23\x0a\x60\xe0\x19\x00\x00\x28\x76\x0a\x65\x9b\xea\ +\x00\x00\x94\x3c\x0a\x78\x05\x80\x00\x00\x01\x5b\x0a\x7f\x8f\x65\ +\x00\x00\x3d\xa0\x0a\x98\x86\x18\x00\x00\x2b\xe9\x0a\x99\x5c\xaa\ +\x00\x00\x9b\x03\x0a\xa8\x16\x95\x00\x00\x13\xb9\x0a\xa9\x89\xec\ +\x00\x00\x45\x48\x0a\xc8\x5c\x59\x00\x00\x10\xb7\x0a\xd0\x50\xb8\ +\x00\x00\x74\x8f\x0a\xd0\xe6\xf5\x00\x00\x18\xd0\x0a\xd6\xf1\xfa\ +\x00\x00\x7f\xd5\x0a\xeb\x91\x88\x00\x00\x66\xb3\x0b\x07\x78\x8a\ +\x00\x00\x85\x84\x0b\x1b\xe0\x73\x00\x00\x51\x72\x0b\x24\x9d\xb4\ +\x00\x00\x52\x93\x0b\x24\xc5\xc9\x00\x00\x14\x2d\x0b\x26\x7e\x0e\ +\x00\x00\x7c\xa8\x0b\x2b\x50\xfa\x00\x00\x88\xf8\x0b\x2d\xb3\xf9\ +\x00\x00\x6a\xf8\x0b\x37\x73\x69\x00\x00\xa4\x26\x0b\x40\x40\x3e\ +\x00\x00\x46\xea\x0b\x43\xcd\x19\x00\x00\x45\xc0\x0b\x66\x28\xd2\ +\x00\x00\x66\x6a\x0b\x88\xe0\x07\x00\x00\x0b\x52\x0b\x94\x44\xc5\ +\x00\x00\x32\x06\x0b\xc2\x99\x6a\x00\x00\x84\xbf\x0b\xd3\x27\xae\ +\x00\x00\x04\x98\x0b\xd4\x7e\x9e\x00\x00\x0b\x8b\x0b\xf5\xee\x53\ +\x00\x00\x93\xc1\x0c\x06\x50\x2e\x00\x00\x0d\xcc\x0c\x08\x46\x23\ +\x00\x00\x7e\x5e\x0c\x19\xfa\x99\x00\x00\x81\x59\x0c\x28\x9b\x45\ +\x00\x00\x75\x21\x0c\x31\x7e\x4a\x00\x00\x97\x30\x0c\x38\x4d\xe5\ +\x00\x00\x07\xc2\x0c\x3a\x16\xd0\x00\x00\x1a\x22\x0c\x5a\xc0\xc8\ +\x00\x00\x78\xea\x0c\x6e\x87\xf5\x00\x00\x23\xa0\x0c\x91\xa0\x7a\ +\x00\x00\xa1\xc0\x0c\x96\x90\x59\x00\x00\x46\x23\x0c\xca\xdd\xfa\ +\x00\x00\x9f\xec\x0c\xd6\xef\x12\x00\x00\x2f\x4b\x0c\xde\x99\x49\ +\x00\x00\x6b\x4e\x0c\xf0\xde\xaa\x00\x00\x87\xa7\x0d\x1c\xf6\xee\ +\x00\x00\x2d\x3b\x0d\x3a\x6c\xba\x00\x00\x97\x80\x0d\x45\xe2\x6a\ +\x00\x00\x9e\x7e\x0d\x59\xa1\x45\x00\x00\x7e\xd3\x0d\x5a\xad\x33\ +\x00\x00\x77\xbf\x0d\x5e\xe7\x6e\x00\x00\x28\xc9\x0d\x64\xa5\xd9\ +\x00\x00\x5d\xd6\x0d\x6d\xf8\xf4\x00\x00\x08\x81\x0d\x76\xb5\x92\ +\x00\x00\x2d\x8f\x0d\x9b\xec\xc9\x00\x00\x55\xad\x0d\xa5\xd9\x94\ +\x00\x00\x2c\xe0\x0d\xa6\xda\xa4\x00\x00\x48\x1f\x0d\xc6\xc6\x2a\ +\x00\x00\x9a\x14\x0d\xf2\x39\xba\x00\x00\x8b\x85\x0e\x2b\x04\x15\ +\x00\x00\x7c\x63\x0e\x2c\xe4\x2a\x00\x00\x9e\x05\x0e\x4e\xcc\xc5\ +\x00\x00\x09\xf8\x0e\x6f\x9a\x1a\x00\x00\xa0\x8e\x0e\x7b\x7a\x2c\ +\x00\x00\x33\x08\x0e\x8f\x6a\x37\x00\x00\x37\x3a\x0e\x91\x65\xf5\ +\x00\x00\x1a\xf7\x0e\xca\xd7\x34\x00\x00\x21\x0b\x0e\xcd\x1c\x55\ +\x00\x00\x9d\x6f\x0e\xcd\x1c\x65\x00\x00\x9d\xba\x0e\xea\xe5\x03\ +\x00\x00\x72\xae\x0e\xed\xe1\xf9\x00\x00\x48\xc3\x0f\x07\x8d\xe3\ +\x00\x00\x73\x4a\x0f\x17\x82\x4e\x00\x00\x00\xfb\x0f\x1f\x8d\xa5\ +\x00\x00\x7c\x1b\x0f\x4f\x75\x3a\x00\x00\xa7\xeb\x0f\x5f\xca\xd5\ +\x00\x00\x32\x71\x0f\x75\xb0\x54\x00\x00\x7e\x0e\x0f\x77\xc3\xb4\ +\x00\x00\x6c\x32\x0f\x89\x0b\xbe\x00\x00\x49\x1f\x0f\x8f\xa8\xa7\ +\x00\x00\x19\xd1\x0f\x98\x0a\x39\x00\x00\xa3\x72\x0f\x9e\xec\xa0\ +\x00\x00\x12\xfa\x0f\xbf\x87\xa3\x00\x00\x92\x13\x0f\xcd\xce\x95\ +\x00\x00\x36\xd0\x0f\xdf\x21\x05\x00\x00\x25\x85\x0f\xf6\x06\x1e\ +\x00\x00\x21\x79\x0f\xf6\x29\x0a\x00\x00\x77\x7b\x0f\xf7\x77\xaa\ +\x00\x00\x87\x26\x0f\xfb\x5f\xae\x00\x00\x7c\xf4\x69\x00\x00\xa8\ +\x89\x03\x00\x00\x00\x1c\x00\x50\x00\x75\x00\x6e\x00\x74\x00\x20\ +\x00\x74\x00\x6f\x00\x65\x00\x76\x00\x6f\x00\x65\x00\x67\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x56\ +\x00\x6f\x00\x65\x00\x67\x00\x74\x00\x20\x00\x65\x00\x65\x00\x6e\ +\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x20\x00\x74\x00\x6f\ +\x00\x65\x00\x20\x00\x61\x00\x61\x00\x6e\x00\x20\x00\x65\x00\x65\ +\x00\x6e\x00\x20\x20\x0b\x20\x0b\x00\x62\x00\x65\x00\x73\x00\x74\ +\x00\x61\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x64\x00\x72\ +\x00\x61\x00\x61\x00\x64\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\ +\x2c\x00\x54\x00\x6f\x00\x65\x00\x76\x00\x6f\x00\x65\x00\x67\x00\ +\x65\x00\x6e\x00\x20\x00\x61\x00\x61\x00\x6e\x00\x20\x00\x67\x00\ +\x72\x00\x6f\x00\x65\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\ +\x82\x00\x56\x00\x6f\x00\x65\x00\x67\x00\x74\x00\x20\x00\x68\x00\ +\x65\x00\x74\x00\x2f\x00\x64\x00\x65\x00\x20\x00\x67\x00\x65\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\ +\x72\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x28\x00\x65\x00\x6e\x00\x29\x00\x20\x00\x61\x00\ +\x61\x00\x6e\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x62\x00\ +\x65\x00\x73\x00\x74\x00\x61\x00\x61\x00\x6e\x00\x64\x00\x65\x00\ +\x20\x00\x67\x00\x72\x00\x6f\x00\x65\x00\x70\x00\x20\x00\x74\x00\ +\x6f\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\x7e\x00\x48\x00\x75\x00\x69\x00\x64\ +\x00\x69\x00\x67\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6a\x00\x6e\ +\x00\x64\x00\x69\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x65\x00\x6e\ +\x00\x20\x00\x2d\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\ +\x00\x74\x00\x6f\x00\x65\x00\x70\x00\x61\x00\x73\x00\x73\x00\x65\ +\x00\x6e\x00\x20\x00\x6f\x00\x70\x00\x20\x00\x67\x00\x65\x00\x73\ +\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\ +\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x00\x48\x00\x75\x00\x69\x00\x64\x00\x69\x00\x67\x00\ +\x65\x00\x20\x00\x73\x00\x74\x00\x69\x00\x6a\x00\x6c\x00\x20\x00\ +\x74\x00\x6f\x00\x65\x00\x70\x00\x61\x00\x73\x00\x73\x00\x65\x00\ +\x6e\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\x00\x42\x00\x6f\x00\x6f\x00\ +\x67\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\x74\x00\x43\x00\x72\x00\x65\x00\xeb\x00\x65\x00\x72\x00\x74\ +\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x62\x00\x6f\x00\x6f\ +\x00\x67\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\ +\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x65\x00\x20\x00\x73\x00\x6e\ +\x00\x61\x00\x70\x00\x70\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x53\ +\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x6f\x00\x6d\x00\x20\ +\x00\x74\x00\x65\x00\x20\x00\x62\x00\x65\x00\x70\x00\x65\x00\x72\ +\x00\x6b\x00\x65\x00\x6e\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\x94\x00\x43\ +\x00\x72\x00\x65\x00\xeb\x00\x65\x00\x72\x00\x74\x00\x20\x00\x65\ +\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x65\x00\x65\x00\x72\x00\x76\ +\x00\x6f\x00\x75\x00\x64\x00\x69\x00\x67\x00\x65\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\x6f\x00\x6d\ +\x00\x20\x00\x74\x00\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\ +\x00\x70\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\ +\x00\x46\x00\x74\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x65\ +\x00\x20\x00\x62\x00\x65\x00\x70\x00\x65\x00\x72\x00\x6b\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x43\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\x70\ +\x6f\x69\x6e\x74\x20\x62\x2d\x73\x70\x6c\x69\x6e\x65\x2e\x20\x43\ +\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\ +\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\ +\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x42\x53\x70\x6c\x69\x6e\ +\x65\x01\x03\x00\x00\x00\x0c\x00\x43\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\xa2\x00\x48\x00\x69\x00\x65\ +\x00\x72\x00\x6d\x00\x65\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x61\ +\x00\x6b\x00\x74\x00\x20\x00\x75\x00\x20\x00\x65\x00\x65\x00\x6e\ +\x00\x20\x00\x63\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\x6f\x00\x6d\ +\x00\x20\x00\x74\x00\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\ +\x00\x70\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\ +\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x72\x00\x61\x00\x6b\x00\x65\ +\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x65\x00\x20\ +\x00\x6b\x00\x69\x00\x65\x00\x7a\x00\x65\x00\x6e\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\x53\x00\x6c\x00\x75\ +\x00\x69\x00\x74\x00\x20\x00\x6c\x00\x69\x00\x6a\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6c\x6f\x73\x65\x20\x4c\x69\ +\x6e\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\ +\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x2e\x00\x53\x00\x6c\ +\x00\x75\x00\x69\x00\x74\x00\x20\x00\x64\x00\x65\x00\x20\x00\x67\ +\x00\x65\x00\x74\x00\x65\x00\x6b\x00\x65\x00\x6e\x00\x64\x00\x65\ +\x00\x20\x00\x6c\x00\x69\x00\x6a\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\x20\x00\x50\x00\x75\x00\x6e\x00\ +\x74\x00\x20\x00\x76\x00\x65\x00\x72\x00\x77\x00\x69\x00\x6a\x00\ +\x64\x00\x65\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\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\x6c\x00\x56\x00\x65\x00\x72\x00\x77\ +\x00\x69\x00\x6a\x00\x64\x00\x65\x00\x72\x00\x74\x00\x20\x00\x65\ +\x00\x65\x00\x6e\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x20\ +\x00\x75\x00\x69\x00\x74\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\ +\x00\x62\x00\x65\x00\x73\x00\x74\x00\x61\x00\x61\x00\x6e\x00\x64\ +\x00\x65\x00\x20\x00\x64\x00\x72\x00\x61\x00\x61\x00\x64\x00\x20\ +\x00\x6f\x00\x66\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\xc8\x00\x48\x00\x69\x00\x65\x00\x72\x00\ +\x6d\x00\x65\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x61\x00\x6b\x00\ +\x74\x00\x20\x00\x75\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\ +\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x65\x00\ +\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x6f\x00\ +\x6d\x00\x20\x00\x74\x00\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\ +\x70\x00\x70\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x53\x00\x48\x00\ +\x49\x00\x46\x00\x54\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\ +\x65\x00\x20\x00\x62\x00\x65\x00\x70\x00\x65\x00\x72\x00\x6b\x00\ +\x65\x00\x6e\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\ +\x6f\x00\x6d\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x73\x00\ +\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x74\x00\ +\x65\x00\x20\x00\x6b\x00\x69\x00\x65\x00\x7a\x00\x65\x00\x6e\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\x41\x00\x66\x00\x6d\x00\x65\x00\x74\x00\x69\x00\x6e\x00\ +\x67\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\x1a\x00\x56\ +\x00\x6f\x00\x72\x00\x69\x00\x67\x00\x65\x00\x20\x00\x76\x00\x65\ +\x00\x72\x00\x73\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x09\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0f\ +\x44\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\ +\x03\x00\x00\x00\xaa\x00\x56\x00\x65\x00\x72\x00\x64\x00\x65\x00\ +\x65\x00\x6c\x00\x74\x00\x20\x00\x64\x00\x65\x00\x20\x00\x67\x00\ +\x65\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\ +\x65\x00\x72\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\ +\x20\x00\x73\x00\x69\x00\x6d\x00\x70\x00\x65\x00\x6c\x00\x65\x00\ +\x72\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x76\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x64\x00\x65\x00\ +\x72\x00\x74\x00\x20\x00\x61\x00\x61\x00\x6e\x00\x74\x00\x61\x00\ +\x6c\x00\x20\x00\x7a\x00\x69\x00\x6a\x00\x64\x00\x65\x00\x6e\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\x54\x00\x65\x00\x6b\x00\x65\ +\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\ +\x78\x00\x48\x00\x69\x00\x65\x00\x72\x00\x6d\x00\x65\x00\x65\x00\ +\x20\x00\x70\x00\x6c\x00\x61\x00\x61\x00\x74\x00\x73\x00\x74\x00\ +\x20\x00\x75\x00\x20\x00\x64\x00\x65\x00\x20\x00\x67\x00\x65\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\ +\x72\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x70\x00\x20\x00\ +\x65\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x65\x00\x6b\x00\x65\x00\ +\x6e\x00\x76\x00\x65\x00\x6c\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\x10\x00\x42\x00\x65\x00\x77\x00\x65\ +\x00\x72\x00\x6b\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\ +\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\x34\x00\x42\x00\x65\x00\ +\x77\x00\x65\x00\x72\x00\x6b\x00\x74\x00\x20\x00\x68\x00\x65\x00\ +\x74\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x65\x00\x76\x00\ +\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\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\x18\x00\x56\x00\x6f\x00\x6c\x00\x74\x00\x6f\x00\ +\x6f\x00\x69\x00\x20\x00\x6c\x00\x69\x00\x6a\x00\x6e\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\x56\x00\ +\x6f\x00\x6c\x00\x74\x00\x6f\x00\x6f\x00\x69\x00\x74\x00\x20\x00\ +\x65\x00\x65\x00\x6e\x00\x20\x00\x6c\x00\x69\x00\x6a\x00\x6e\x00\ +\x20\x00\x7a\x00\x6f\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\ +\x68\x00\x65\x00\x6d\x00\x20\x00\x74\x00\x65\x00\x20\x00\x73\x00\ +\x6c\x00\x75\x00\x69\x00\x74\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\x94\x00\x48\x00\x69\x00\x65\x00\x72\x00\x6d\x00\x65\x00\x65\ +\x00\x20\x00\x6d\x00\x61\x00\x61\x00\x6b\x00\x74\x00\x20\x00\x75\ +\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x32\x00\x2d\x00\x70\ +\x00\x75\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x6a\ +\x00\x6e\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\ +\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x65\x00\x20\x00\x73\x00\x6e\ +\x00\x61\x00\x70\x00\x70\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x53\ +\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x6f\x00\x6d\x00\x20\ +\x00\x74\x00\x65\x00\x20\x00\x62\x00\x65\x00\x70\x00\x65\x00\x72\ +\x00\x6b\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\ +\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\ +\x74\x20\x6c\x69\x6e\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\ +\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\ +\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\x72\x61\ +\x66\x74\x5f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x08\x00\x4c\x00\ +\x69\x00\x6a\x00\x6e\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\x00\x56\x00\x65\x00\x72\x00\x70\ +\x00\x6c\x00\x61\x00\x61\x00\x74\x00\x73\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\ +\x0a\x44\x72\x61\x66\x74\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\x00\ +\xe4\x00\x56\x00\x65\x00\x72\x00\x70\x00\x6c\x00\x61\x00\x61\x00\ +\x74\x00\x73\x00\x74\x00\x20\x00\x64\x00\x65\x00\x20\x00\x67\x00\ +\x65\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\ +\x65\x00\x72\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x75\x00\ +\x73\x00\x73\x00\x65\x00\x6e\x00\x20\x00\x32\x00\x20\x00\x70\x00\ +\x75\x00\x6e\x00\x74\x00\x65\x00\x6e\x00\x2e\x00\x20\x00\x43\x00\ +\x54\x00\x52\x00\x4c\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\ +\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x65\x00\ +\x6e\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\ +\x20\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x65\x00\x20\x00\x62\x00\ +\x65\x00\x70\x00\x65\x00\x72\x00\x6b\x00\x65\x00\x6e\x00\x2c\x00\ +\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\ +\x74\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\xeb\x00\ +\x72\x00\x65\x00\x6e\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\x18\x00\x56\ +\x00\x65\x00\x72\x00\x73\x00\x63\x00\x68\x00\x75\x00\x69\x00\x76\ +\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\xb6\x00\x56\x00\ +\x65\x00\x72\x00\x73\x00\x63\x00\x68\x00\x75\x00\x69\x00\x66\x00\ +\x74\x00\x20\x00\x68\x00\x65\x00\x74\x00\x20\x00\x61\x00\x63\x00\ +\x74\x00\x69\x00\x65\x00\x76\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x2e\x00\x20\x00\x43\x00\x54\x00\ +\x52\x00\x4c\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x65\x00\ +\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x65\x00\x6e\x00\ +\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\ +\x6f\x00\x6d\x00\x20\x00\x74\x00\x65\x00\x20\x00\x62\x00\x65\x00\ +\x70\x00\x65\x00\x72\x00\x6b\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\ +\x41\x00\x4c\x00\x54\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\ +\x65\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\xeb\x00\x72\x00\ +\x65\x00\x6e\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\x8e\x00\x43\x00\x72\ +\x00\x65\x00\xeb\x00\x65\x00\x72\x00\x74\x00\x20\x00\x65\x00\x65\ +\x00\x6e\x00\x20\x00\x72\x00\x65\x00\x67\x00\x65\x00\x6c\x00\x6d\ +\x00\x61\x00\x74\x00\x69\x00\x67\x00\x65\x00\x20\x00\x76\x00\x65\ +\x00\x65\x00\x6c\x00\x68\x00\x6f\x00\x65\x00\x6b\x00\x2e\x00\x20\ +\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x6f\x00\x6d\x00\x20\ +\x00\x74\x00\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\ +\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\ +\x00\x54\x00\x20\x00\x74\x00\x65\x00\x20\x00\x62\x00\x65\x00\x70\ +\x00\x65\x00\x72\x00\x6b\x00\x65\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\x10\x00\x56\x00\x65\x00\x65\x00\x6c\x00\ +\x68\x00\x6f\x00\x65\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x07\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\ +\x66\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\x00\x00\x72\ +\x00\x48\x00\x69\x00\x65\x00\x72\x00\x6d\x00\x65\x00\x65\x00\x20\ +\x00\x6d\x00\x61\x00\x61\x00\x6b\x00\x74\x00\x20\x00\x75\x00\x20\ +\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x32\x00\x2d\x00\x70\x00\x75\ +\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x72\x00\x65\x00\x63\x00\x68\ +\x00\x74\x00\x68\x00\x6f\x00\x65\x00\x6b\x00\x2e\x00\x20\x00\x43\ +\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x74\ +\x00\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\x20\x72\x65\ +\x63\x74\x61\x6e\x67\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\ +\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\ +\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x12\x00\ +\x72\x00\x65\x00\x63\x00\x68\x00\x74\x00\x68\x00\x6f\x00\x65\x00\ +\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x52\x65\x63\x74\x61\ +\x6e\x67\x6c\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x52\ +\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x0e\x00\x44\ +\x00\x72\x00\x61\x00\x61\x00\x69\x00\x65\x00\x6e\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\xce\x00\x44\x00\x72\x00\x61\x00\x61\x00\x69\x00\x74\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x67\x00\x65\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x64\x00\ +\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x65\x00\x6e\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ +\x20\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x65\x00\x20\x00\x73\x00\ +\x6e\x00\x61\x00\x70\x00\x70\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\ +\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x6f\x00\x6d\x00\ +\x20\x00\x74\x00\x65\x00\x20\x00\x62\x00\x65\x00\x70\x00\x65\x00\ +\x72\x00\x6b\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\ +\x54\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x65\x00\x65\x00\x6e\x00\ +\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x20\x00\x74\x00\ +\x65\x00\x20\x00\x63\x00\x72\x00\x65\x00\xeb\x00\x72\x00\x65\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x6f\x74\x61\x74\ +\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\ +\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\ +\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x63\ +\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x6f\x70\x79\x07\x00\x00\ +\x00\x0c\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\x01\x03\ +\x00\x00\x00\x0e\x00\x53\x00\x63\x00\x68\x00\x61\x00\x6c\x00\x65\ +\x00\x6e\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\xe4\x00\x53\x00\x63\x00\x68\x00\x61\x00\ +\x61\x00\x6c\x00\x74\x00\x20\x00\x64\x00\x65\x00\x20\x00\x67\x00\ +\x65\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\ +\x65\x00\x72\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x75\x00\x69\x00\ +\x74\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x62\x00\x61\x00\ +\x73\x00\x69\x00\x73\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x2e\x00\ +\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x6f\x00\x6d\x00\ +\x20\x00\x74\x00\x65\x00\x20\x00\x73\x00\x72\x00\x70\x00\x69\x00\ +\x6e\x00\x67\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x53\x00\x48\x00\ +\x49\x00\x46\x00\x54\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\ +\x65\x00\x20\x00\x62\x00\x65\x00\x70\x00\x65\x00\x72\x00\x6b\x00\ +\x65\x00\x6e\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\ +\x6f\x00\x6d\x00\x20\x00\x74\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\ +\x70\x00\x69\x00\xeb\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x5c\x53\x63\x61\x6c\x65\x73\x20\x74\x68\x65\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x20\x66\x72\x6f\x6d\x20\x61\x20\x62\x61\x73\x65\x20\x70\x6f\x69\ +\x6e\x74\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\ +\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\ +\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\ +\x79\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\ +\x65\x01\x03\x00\x00\x00\x1e\x00\x53\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x20\x00\x67\x00\x72\x00\ +\x6f\x00\x65\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\x76\x00\x53\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x74\x00\x20\x00\x61\x00\ +\x6c\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x65\x00\x74\x00\ +\x20\x00\x64\x00\x65\x00\x7a\x00\x65\x00\x6c\x00\x66\x00\x64\x00\ +\x65\x00\x20\x00\x6f\x00\x75\x00\x64\x00\x65\x00\x72\x00\x73\x00\ +\x20\x00\x61\x00\x6c\x00\x73\x00\x20\x00\x64\x00\x65\x00\x7a\x00\ +\x65\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x65\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\x00\x53\x00\x65\x00\x6c\ +\x00\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x20\x00\x65\ +\x00\x65\x00\x6e\x00\x20\x00\x77\x00\x65\x00\x72\x00\x6b\x00\x76\ +\x00\x6c\x00\x61\x00\x6b\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\ +\x00\x20\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\ +\x00\x69\x00\x65\x00\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\ +\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2c\x53\x65\ +\x6c\x65\x63\x74\x20\x61\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\ +\x6c\x61\x6e\x65\x20\x66\x6f\x72\x20\x67\x65\x6f\x6d\x65\x74\x72\ +\x79\x20\x63\x72\x65\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\x11\x44\ +\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\ +\x01\x03\x00\x00\x00\x1c\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\ +\x00\x74\x00\x65\x00\x65\x00\x72\x00\x20\x00\x76\x00\x6c\x00\x61\ +\x00\x6b\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\x64\x00\x4d\x00\x61\x00\x61\x00\x6b\x00\x74\x00\x20\x00\ +\x32\x00\x44\x00\x2d\x00\x75\x00\x69\x00\x74\x00\x7a\x00\x69\x00\ +\x63\x00\x68\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x6d\x00\x65\x00\ +\x6e\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x67\x00\x65\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\ +\x72\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\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\x1e\x00\x32\x00\x44\x00\x2d\x00\x75\x00\ +\x69\x00\x74\x00\x7a\x00\x69\x00\x63\x00\x68\x00\x74\x00\x76\x00\ +\x6f\x00\x72\x00\x6d\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\x66\x00\x48\x00\x69\x00\x65\x00\x72\ +\x00\x6d\x00\x65\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x61\x00\x6b\ +\x00\x74\x00\x20\x00\x75\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\ +\x00\x61\x00\x61\x00\x6e\x00\x74\x00\x65\x00\x6b\x00\x65\x00\x6e\ +\x00\x69\x00\x6e\x00\x67\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\ +\x00\x4c\x00\x20\x00\x6f\x00\x70\x00\x20\x00\x74\x00\x65\x00\x20\ +\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x65\x00\x6e\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\x42\x00\ +\x6f\x00\x75\x00\x77\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x73\x00\ +\x20\x00\x69\x00\x6e\x00\x2d\x00\x2f\x00\x75\x00\x69\x00\x74\x00\ +\x73\x00\x63\x00\x68\x00\x61\x00\x6b\x00\x65\x00\x6c\x00\x65\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x54\x6f\x67\x67\x6c\ +\x65\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x69\x6f\x6e\x20\x4d\x6f\ +\x64\x65\x07\x00\x00\x00\x1c\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\ +\x67\x6c\x65\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x4d\ +\x6f\x64\x65\x01\x03\x00\x00\x00\x72\x00\x53\x00\x63\x00\x68\x00\ +\x61\x00\x6b\x00\x65\x00\x6c\x00\x74\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x42\x00\x6f\x00\x75\x00\x77\x00\x2d\x00\x6d\x00\x6f\x00\ +\x64\x00\x75\x00\x73\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6c\x00\x67\x00\ +\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x61\x00\ +\x6e\x00\x2f\x00\x75\x00\x69\x00\x74\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\x2e\x00\x56\x00\x65\x00\ +\x72\x00\x76\x00\x6f\x00\x6c\x00\x67\x00\x2d\x00\x6d\x00\x6f\x00\ +\x64\x00\x75\x00\x73\x00\x20\x00\x73\x00\x63\x00\x68\x00\x61\x00\ +\x6b\x00\x65\x00\x6c\x00\x65\x00\x6e\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\x6c\x00\x53\x00\x63\x00\x68\ +\x00\x61\x00\x6b\x00\x65\x00\x6c\x00\x74\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x76\x00\x65\x00\x72\x00\x76\x00\x6f\x00\x6c\x00\x67\ +\x00\x2d\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x73\x00\x20\x00\x76\ +\x00\x6f\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x76\ +\x00\x6f\x00\x6c\x00\x67\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\ +\x00\x6f\x00\x70\x00\x64\x00\x72\x00\x61\x00\x63\x00\x68\x00\x74\ +\x00\x65\x00\x6e\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\x00\ +\x53\x00\x63\x00\x68\x00\x61\x00\x6b\x00\x65\x00\x6c\x00\x74\x00\ +\x20\x00\x77\x00\x65\x00\x65\x00\x72\x00\x67\x00\x61\x00\x76\x00\ +\x65\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x73\x00\x20\x00\x76\x00\ +\x61\x00\x6e\x00\x20\x00\x67\x00\x65\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x64\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x65\x00\ +\x6e\x00\x20\x00\x74\x00\x75\x00\x73\x00\x73\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\x65\x00\x6e\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\x2a\x00\ +\x57\x00\x69\x00\x73\x00\x73\x00\x65\x00\x6c\x00\x20\x00\x77\x00\ +\x65\x00\x65\x00\x72\x00\x67\x00\x61\x00\x76\x00\x65\x00\x2d\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\x3c\x00\x54\x00\x72\x00\ +\x69\x00\x6d\x00\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x62\x00\ +\x72\x00\x65\x00\x69\x00\x64\x00\x74\x00\x20\x00\x68\x00\x65\x00\ +\x74\x00\x20\x00\x67\x00\x65\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x64\x00\x65\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x75\x00\ +\x69\x00\x74\x00\x2c\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x65\x00\ +\x78\x00\x74\x00\x72\x00\x75\x00\x64\x00\x65\x00\x65\x00\x72\x00\ +\x74\x00\x20\x00\x65\x00\x6e\x00\x6b\x00\x65\x00\x6c\x00\x65\x00\ +\x20\x00\x6f\x00\x70\x00\x70\x00\x65\x00\x72\x00\x76\x00\x6c\x00\ +\x61\x00\x6b\x00\x6b\x00\x65\x00\x6e\x00\x2e\x00\x20\x00\x43\x00\ +\x54\x00\x52\x00\x4c\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\ +\x74\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\ +\x2c\x00\x20\x00\x62\x00\x65\x00\x70\x00\x65\x00\x72\x00\x6b\x00\ +\x74\x00\x20\x00\x74\x00\x6f\x00\x74\x00\x20\x00\x68\x00\x75\x00\ +\x69\x00\x64\x00\x69\x00\x67\x00\x65\x00\x20\x00\x73\x00\x65\x00\ +\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x74\x00\x6f\x00\x74\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x65\x00\x2c\x00\ +\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x6f\x00\x6d\x00\x6b\x00\ +\x65\x00\x65\x00\x72\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\ +\x3a\x00\x4d\x00\x61\x00\x61\x00\x6b\x00\x20\x00\x6c\x00\x61\x00\ +\x61\x00\x74\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\x6f\x00\x6e\x00\ +\x67\x00\x65\x00\x64\x00\x61\x00\x61\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x11\x55\x6e\x64\x6f\x20\x6c\x61\x73\x74\x20\x73\ +\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\ +\x5f\x55\x6e\x64\x6f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x7c\x00\ +\x56\x00\x65\x00\x72\x00\x77\x00\x69\x00\x6a\x00\x64\x00\x65\x00\ +\x72\x00\x74\x00\x20\x00\x68\x00\x65\x00\x74\x00\x20\x00\x6c\x00\ +\x61\x00\x61\x00\x74\x00\x73\x00\x74\x00\x20\x00\x67\x00\x65\x00\ +\x74\x00\x65\x00\x6b\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\ +\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\ +\x76\x00\x61\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\x74\x00\ +\x65\x00\x20\x00\x74\x00\x65\x00\x6b\x00\x65\x00\x6e\x00\x65\x00\ +\x6e\x00\x20\x00\x6c\x00\x69\x00\x6a\x00\x6e\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\xd4\x00\x56\x00\x6f\x00\x65\x00\x67\x00\x74\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x67\x00\x65\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x64\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x65\x00\ +\x6e\x00\x20\x00\x73\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x2c\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\ +\x65\x00\x72\x00\x74\x00\x65\x00\x65\x00\x72\x00\x74\x00\x20\x00\ +\x67\x00\x65\x00\x73\x00\x6c\x00\x6f\x00\x74\x00\x65\x00\x6e\x00\ +\x20\x00\x6c\x00\x69\x00\x6a\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\ +\x74\x00\x6f\x00\x74\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\ +\x76\x00\x6c\x00\x61\x00\x6b\x00\x2c\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x76\x00\x6f\x00\x65\x00\x67\x00\x74\x00\x20\x00\x76\x00\ +\x6c\x00\x61\x00\x6b\x00\x6b\x00\x65\x00\x6e\x00\x20\x00\x73\x00\ +\x61\x00\x6d\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x5d\x4a\x6f\x69\x6e\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\ +\x20\x6f\x6e\x65\x2c\x20\x6f\x72\x20\x63\x6f\x6e\x76\x65\x72\x74\ +\x73\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x73\x20\x74\ +\x6f\x20\x66\x69\x6c\x6c\x65\x64\x20\x66\x61\x63\x65\x73\x2c\x20\ +\x6f\x72\x20\x75\x6e\x69\x74\x65\x20\x66\x61\x63\x65\x73\x07\x00\ +\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x55\x70\x67\x72\x61\x64\x65\ +\x01\x03\x00\x00\x00\x16\x00\x4f\x00\x70\x00\x77\x00\x61\x00\x61\ +\x00\x72\x00\x64\x00\x65\x00\x72\x00\x65\x00\x6e\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\x8c\x00\x43\x00\x72\x00\x65\x00\xeb\x00\x65\x00\ +\x72\x00\x74\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\ +\x65\x00\x65\x00\x72\x00\x76\x00\x6f\x00\x75\x00\x64\x00\x69\x00\ +\x67\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6a\x00\x6e\x00\x2e\x00\ +\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x6f\x00\x6d\x00\ +\x20\x00\x74\x00\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\ +\x70\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\ +\x46\x00\x74\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x65\x00\ +\x20\x00\x62\x00\x65\x00\x70\x00\x65\x00\x72\x00\x6b\x00\x65\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\x0a\x00\ +\x44\x00\x72\x00\x61\x00\x61\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\x46\x00\x43\x00\x6f\ +\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x65\x00\x65\x00\x72\ +\x00\x74\x00\x20\x00\x74\x00\x75\x00\x73\x00\x73\x00\x65\x00\x6e\ +\x00\x20\x00\x64\x00\x72\x00\x61\x00\x61\x00\x64\x00\x20\x00\x65\ +\x00\x6e\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\x24\x00\x44\x00\x72\x00\ +\x61\x00\x61\x00\x64\x00\x20\x00\x6e\x00\x61\x00\x61\x00\x72\x00\ +\x20\x00\x42\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x57\x69\x72\x65\x20\x74\x6f\ +\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x13\x44\x72\x61\ +\x66\x74\x5f\x57\x69\x72\x65\x54\x6f\x42\x53\x70\x6c\x69\x6e\x65\ +\x01\x03\x00\x00\x00\x12\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x6d\ +\x00\x6f\x00\x64\x00\x75\x00\x73\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\ +\x42\x00\x41\x00\x6c\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\ +\x74\x00\x69\x00\x65\x00\x76\x00\x65\x00\x20\x00\x53\x00\x56\x00\ +\x47\x00\x20\x00\x70\x00\x61\x00\x74\x00\x72\x00\x6f\x00\x6e\x00\ +\x65\x00\x6e\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x74\x00\ +\x69\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\x72\x00\x41\x00\x6c\x00\x74\x00\x69\x00\x6a\x00\x64\ +\x00\x20\x00\x6b\x00\x6c\x00\x65\x00\x76\x00\x65\x00\x6e\x00\x20\ +\x00\x61\x00\x61\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x28\x00\x75\x00\x69\ +\x00\x74\x00\x73\x00\x63\x00\x68\x00\x61\x00\x6b\x00\x65\x00\x6c\ +\x00\x65\x00\x6e\x00\x20\x00\x6b\x00\x6c\x00\x65\x00\x65\x00\x66\ +\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x2d\x00\x74\x00\x6f\x00\x65\ +\x00\x74\x00\x73\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\x86\x00\ +\x53\x00\x63\x00\x68\x00\x61\x00\x6b\x00\x65\x00\x6c\x00\x20\x00\ +\x64\x00\x69\x00\x74\x00\x20\x00\x61\x00\x6c\x00\x73\x00\x20\x00\ +\x75\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x74\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x67\x00\x65\x00\x62\x00\x69\x00\x65\x00\x64\x00\ +\x65\x00\x6e\x00\x20\x00\x28\x00\x33\x00\x44\x00\x20\x00\x6f\x00\ +\x70\x00\x70\x00\x65\x00\x72\x00\x76\x00\x6c\x00\x61\x00\x6b\x00\ +\x6b\x00\x65\x00\x6e\x00\x29\x00\x20\x00\x74\x00\x65\x00\x20\x00\ +\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x00\ +\x65\x00\x6e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3f\x43\ +\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\x75\ +\x20\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x61\x72\x65\x61\x73\x20\ +\x28\x33\x44\x20\x66\x61\x63\x65\x73\x29\x20\x74\x6f\x20\x62\x65\ +\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x2e\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\xc6\x00\x53\x00\x63\x00\x68\x00\x61\x00\x6b\ +\x00\x65\x00\x6c\x00\x20\x00\x64\x00\x69\x00\x74\x00\x20\x00\x69\ +\x00\x6e\x00\x20\x00\x61\x00\x6c\x00\x73\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x74\x00\x2d\x00\x67\x00\x65\ +\x00\x6e\x00\x6f\x00\x65\x00\x6d\x00\x64\x00\x65\x00\x20\x00\x62\ +\x00\x6c\x00\x6f\x00\x6b\x00\x6b\x00\x65\x00\x6e\x00\x20\x00\x28\ +\x00\x64\x00\x69\x00\x65\x00\x20\x00\x62\x00\x65\x00\x67\x00\x69\ +\x00\x6e\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x65\x00\x74\ +\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x2a\x00\x29\x00\x20\ +\x00\x6d\x00\x6f\x00\x65\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x6f\ +\x00\x6f\x00\x6b\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x64\x00\x65\ +\x00\x6e\x00\x20\x00\x67\x00\x65\x00\xef\x00\x6d\x00\x70\x00\x6f\ +\x00\x72\x00\x74\x00\x65\x00\x65\x00\x72\x00\x64\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\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\x43\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\x43\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\x3c\x00\ +\x4b\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x74\x00\x6f\x00\ +\x65\x00\x67\x00\x65\x00\x77\x00\x65\x00\x7a\x00\x65\x00\x6e\x00\ +\x20\x00\x61\x00\x61\x00\x6e\x00\x20\x00\x6c\x00\x69\x00\x6a\x00\ +\x6e\x00\x64\x00\x69\x00\x6b\x00\x74\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x19\x43\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x65\ +\x64\x20\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x2c\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\x72\ +\x00\x76\x00\x65\x00\x72\x00\x74\x00\x61\x00\x6c\x00\x69\x00\x6e\ +\x00\x67\x00\x73\x00\x62\x00\x65\x00\x73\x00\x74\x00\x61\x00\x6e\ +\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x43\x6f\x6c\x6f\ +\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x1c\x00\x42\x00\x65\x00\x70\x00\x65\x00\x72\ +\x00\x6b\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x75\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x73\ +\x74\x72\x61\x69\x6e\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x16\x00\x43\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\ +\x63\x00\x74\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0c\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x2a\x00\x43\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\ +\x72\x00\x75\x00\x63\x00\x74\x00\x69\x00\x65\x00\x6c\x00\x61\x00\ +\x61\x00\x67\x00\x20\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\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\x1c\x00\x42\x00\x6f\x00\x75\x00\x77\x00\x67\x00\x72\x00\ +\x6f\x00\x65\x00\x70\x00\x73\x00\x6e\x00\x61\x00\x61\x00\x6d\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x17\x43\x6f\x6e\x73\x74\x72\x75\ +\x63\x74\x69\x6f\x6e\x20\x67\x72\x6f\x75\x70\x20\x6e\x61\x6d\x65\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x36\x00\x4d\x00\x61\x00\x61\x00\x6b\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\ +\x00\x72\x00\x69\x00\x73\x00\x63\x00\x68\x00\x65\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\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\x24\x00\x44\x00\x58\x00\x46\x00\ +\x2d\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x61\x00\x74\x00\ +\x20\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x65\x00\x73\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\x61\x00\ +\x72\x00\x64\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\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\x54\x00\x53\x00\x74\ +\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x61\x00\x72\x00\x64\x00\x68\ +\x00\x6f\x00\x6f\x00\x67\x00\x74\x00\x65\x00\x20\x00\x76\x00\x6f\ +\x00\x6f\x00\x72\x00\x20\x00\x74\x00\x65\x00\x6b\x00\x73\x00\x74\ +\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x66\ +\x00\x6d\x00\x65\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x44\x65\x66\x61\x75\x6c\ +\x74\x20\x68\x65\x69\x67\x68\x74\x20\x66\x6f\x72\x20\x74\x65\x78\ +\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x26\x00\x53\x00\x74\x00\x61\x00\ +\x6e\x00\x64\x00\x61\x00\x61\x00\x72\x00\x64\x00\x20\x00\x6c\x00\ +\x69\x00\x6a\x00\x6e\x00\x64\x00\x69\x00\x6b\x00\x74\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\x2a\x00\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x61\ +\x00\x72\x00\x64\x00\x20\x00\x73\x00\x6a\x00\x61\x00\x62\x00\x6c\ +\x00\x6f\x00\x6f\x00\x6e\x00\x76\x00\x65\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\x61\x00\x72\x00\x64\x00\x6c\x00\x65\x00\x74\x00\x74\x00\x65\ +\x00\x72\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\x2a\x00\x53\x00\ +\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x61\x00\x72\x00\x64\x00\ +\x20\x00\x74\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x68\x00\x6f\x00\ +\x6f\x00\x67\x00\x74\x00\x65\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\x24\x00\x53\x00\x74\ +\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x61\x00\x72\x00\x64\x00\x20\ +\x00\x77\x00\x65\x00\x72\x00\x6b\x00\x76\x00\x6c\x00\x61\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\x46\x00\x50\x00\x69\x00\x6a\x00\x6c\x00\ +\x73\x00\x74\x00\x69\x00\x6a\x00\x6c\x00\x20\x00\x76\x00\x6f\x00\ +\x6f\x00\x72\x00\x20\x00\x61\x00\x66\x00\x6d\x00\x65\x00\x74\x00\ +\x69\x00\x6e\x00\x67\x00\x65\x00\x6e\x00\x20\x00\x26\x00\x20\x00\ +\x6c\x00\x65\x00\x69\x00\x64\x00\x65\x00\x72\x00\x73\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\x41\ +\x00\x66\x00\x6d\x00\x65\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x65\ +\x00\x6e\x00\x20\x00\x70\x00\x72\x00\x65\x00\x63\x00\x69\x00\x73\ +\x00\x69\x00\x65\x00\x2d\x00\x6e\x00\x69\x00\x76\x00\x65\x00\x61\ +\x00\x75\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\x75\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\x75\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\x75\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\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\x6d\x00\x6f\x00\x64\x00\x75\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x14\x44\x72\x61\x66\x74\x20\x69\ +\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x6d\x6f\x64\x65\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x54\x00\x33\x00\x44\x00\x2d\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x65\x00\ +\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x00\x65\x00\ +\x6e\x00\x20\x00\x61\x00\x6c\x00\x73\x00\x20\x00\x70\x00\x6f\x00\ +\x6c\x00\x79\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6e\x00\ +\x65\x00\x74\x00\x74\x00\x65\x00\x6e\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\x32\x00\ +\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x61\x00\x72\x00\ +\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x65\x00\x6e\x00\x20\x00\x76\x00\x75\x00\x6c\x00\x6c\x00\x65\x00\ +\x6e\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\x38\x00\x41\x00\x6c\x00\x67\ +\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x6e\ +\x00\x74\x00\x77\x00\x65\x00\x72\x00\x70\x00\x69\x00\x6e\x00\x73\ +\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x41\x00\x6c\x00\x67\ +\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x65\x00\x20\x00\x69\x00\x6e\ +\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x69\x00\x6e\x00\x67\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x47\x65\ +\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x28\x00\x47\x00\x6c\x00\x6f\x00\x62\x00\x61\ +\x00\x6c\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x65\ +\x00\x65\x00\x72\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\x1a\ +\x00\x52\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\x00\x61\x00\x66\ +\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x47\x72\x69\x64\x20\x73\x70\x61\x63\x69\x6e\x67\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x34\x00\x4c\x00\x61\x00\x67\x00\x65\ +\x00\x6e\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x65\x00\x70\x00\x65\ +\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x62\ +\x00\x6c\x00\x6f\x00\x6b\x00\x6b\x00\x65\x00\x6e\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\x1e\x00\x48\x00\x69\x00\x65\x00\x72\x00\x20\ +\x00\x6b\x00\x75\x00\x6e\x00\x74\x00\x20\x00\x75\x00\x20\x00\x65\ +\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x61\x00\x70\x00\x20\x00\x61\ +\x00\x61\x00\x6e\x00\x64\x00\x75\x00\x69\x00\x64\x00\x65\x00\x6e\ +\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x20\x00\x53\x00\x56\x00\x47\ +\x00\x20\x00\x62\x00\x65\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\ +\x00\x65\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x65\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\x65\x00\x73\x00\x20\x00\x62\x00\x65\x00\x76\x00\x61\ +\x00\x74\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x74\x00\x6f\ +\x00\x65\x00\x67\x00\x65\x00\x76\x00\x6f\x00\x65\x00\x67\x00\x64\ +\x00\x20\x00\x61\x00\x61\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x61\x00\x72\ +\x00\x64\x00\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\x72\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x7a\ +\x00\x75\x00\x6c\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x7a\x00\x69\ +\x00\x6a\x00\x6e\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\x88\x00\x49\x00\x6e\x00\x64\x00\x69\x00\x65\x00\x6e\x00\ +\x20\x00\x61\x00\x61\x00\x6e\x00\x67\x00\x65\x00\x76\x00\x69\x00\ +\x6e\x00\x6b\x00\x74\x00\x2c\x00\x20\x00\x7a\x00\x61\x00\x6c\x00\ +\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x72\x00\x61\x00\x73\x00\ +\x74\x00\x65\x00\x72\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x64\x00\ +\x65\x00\x6e\x00\x20\x00\x77\x00\x65\x00\x65\x00\x72\x00\x67\x00\ +\x65\x00\x67\x00\x65\x00\x76\x00\x65\x00\x6e\x00\x20\x00\x62\x00\ +\x69\x00\x6a\x00\x20\x00\x68\x00\x65\x00\x74\x00\x20\x00\x74\x00\ +\x65\x00\x6b\x00\x65\x00\x6e\x00\x65\x00\x6e\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\xfc\x00\x49\x00\x6e\x00\x64\x00\x69\ +\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x73\ +\x00\x63\x00\x68\x00\x61\x00\x6b\x00\x65\x00\x6c\x00\x64\x00\x2c\ +\x00\x20\x00\x7a\x00\x61\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\x6f\ +\x00\x62\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x67\x00\x65\ +\x00\x7a\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x6c\x00\x69\x00\x6a\ +\x00\x6b\x00\x20\x00\x73\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x76\ +\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x65\x00\x6e\ +\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x64\x00\x72\x00\x61\x00\x64\ +\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x6d\x00\x7a\x00\x65\x00\x74\ +\x00\x74\x00\x65\x00\x6e\x00\x2e\x00\x20\x00\x50\x00\x61\x00\x73\ +\x00\x20\x00\x6f\x00\x70\x00\x2c\x00\x20\x00\x64\x00\x69\x00\x74\ +\x00\x20\x00\x6b\x00\x61\x00\x6e\x00\x20\x00\x65\x00\x76\x00\x65\ +\x00\x6e\x00\x20\x00\x64\x00\x75\x00\x72\x00\x65\x00\x6e\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\xb8\x00\x41\x00\x6c\x00\ +\x73\x00\x20\x00\x64\x00\x69\x00\x74\x00\x20\x00\x69\x00\x6e\x00\ +\x67\x00\x65\x00\x73\x00\x63\x00\x68\x00\x61\x00\x6b\x00\x65\x00\ +\x6c\x00\x64\x00\x20\x00\x69\x00\x73\x00\x2c\x00\x20\x00\x77\x00\ +\x6f\x00\x72\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x6c\x00\ +\x6c\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x20\x00\ +\x6f\x00\x70\x00\x70\x00\x65\x00\x72\x00\x76\x00\x6c\x00\x61\x00\ +\x6b\x00\x6b\x00\x65\x00\x6e\x00\x20\x00\x67\x00\x65\x00\xeb\x00\ +\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x65\x00\x72\x00\ +\x64\x00\x20\x00\x61\x00\x6c\x00\x73\x00\x20\x00\x33\x00\x44\x00\ +\x2d\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\x58\x00\x41\x00\x6c\x00\x73\x00\x20\x00\x64\ +\x00\x69\x00\x74\x00\x20\x00\x69\x00\x73\x00\x20\x00\x61\x00\x61\ +\x00\x6e\x00\x67\x00\x65\x00\x76\x00\x69\x00\x6e\x00\x6b\x00\x74\ +\x00\x20\x00\x7a\x00\x61\x00\x6c\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x27\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x27\x00\x20\ +\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x73\x00\x20\x00\x67\x00\x65\ +\x00\x68\x00\x61\x00\x6e\x00\x64\x00\x68\x00\x61\x00\x61\x00\x66\ +\x00\x64\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x64\x00\x65\x00\x6e\ +\x00\x20\x00\x64\x00\x6f\x00\x6f\x00\x72\x00\x68\x00\x65\x00\x65\ +\x00\x6e\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x65\x00\x6e\x00\x76\ +\x00\x6f\x00\x6c\x00\x67\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x6f\ +\x00\x27\x00\x73\x00\x2e\x00\x20\x00\x4b\x00\x6f\x00\x70\x00\x69\ +\x00\x65\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x73\x00\x20\ +\x00\x6b\x00\x61\x00\x6e\x00\x20\x00\x75\x00\x69\x00\x74\x00\x67\ +\x00\x65\x00\x73\x00\x63\x00\x68\x00\x61\x00\x6b\x00\x65\x00\x6c\ +\x00\x64\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x64\x00\x65\x00\x6e\ +\x00\x20\x00\x64\x00\x6f\x00\x6f\x00\x72\x00\x20\x00\x68\x00\x65\ +\x00\x74\x00\x20\x00\x61\x00\x61\x00\x6e\x00\x76\x00\x69\x00\x6e\ +\x00\x6b\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x6e\x00\x67\x00\x65\ +\x00\x64\x00\x61\x00\x61\x00\x6e\x00\x20\x00\x74\x00\x65\x00\x20\ +\x00\x6d\x00\x61\x00\x6b\x00\x65\x00\x6e\x00\x2e\x00\x20\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\xd4\x00\ +\x41\x00\x6c\x00\x73\x00\x20\x00\x64\x00\x69\x00\x74\x00\x20\x00\ +\x69\x00\x6e\x00\x67\x00\x65\x00\x73\x00\x63\x00\x68\x00\x61\x00\ +\x6b\x00\x65\x00\x6c\x00\x64\x00\x20\x00\x69\x00\x73\x00\x2c\x00\ +\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\x63\x00\x68\x00\x69\x00\ +\x6a\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x67\x00\x65\x00\ +\x76\x00\x75\x00\x6c\x00\x64\x00\x20\x00\x6f\x00\x70\x00\x20\x00\ +\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x69\x00\x65\x00\x2e\x00\ +\x20\x00\x5a\x00\x65\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x64\x00\ +\x74\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x73\x00\ +\x20\x00\x77\x00\x65\x00\x65\x00\x72\x00\x67\x00\x65\x00\x67\x00\ +\x65\x00\x76\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x6c\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\x1a\x00\x41\x00\x6c\x00\ +\x73\x00\x20\x00\x64\x00\x69\x00\x74\x00\x20\x00\x69\x00\x6e\x00\ +\x67\x00\x65\x00\x73\x00\x63\x00\x68\x00\x61\x00\x6b\x00\x65\x00\ +\x6c\x00\x64\x00\x20\x00\x69\x00\x73\x00\x2c\x00\x20\x00\x7a\x00\ +\x61\x00\x6c\x00\x20\x00\x75\x00\x20\x00\x61\x00\x6c\x00\x74\x00\ +\x69\x00\x6a\x00\x64\x00\x20\x00\x6f\x00\x70\x00\x20\x00\x62\x00\ +\x65\x00\x73\x00\x74\x00\x61\x00\x61\x00\x6e\x00\x64\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x65\x00\ +\x6e\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x70\x00\x65\x00\ +\x6e\x00\x20\x00\x74\x00\x69\x00\x6a\x00\x64\x00\x65\x00\x6e\x00\ +\x73\x00\x20\x00\x68\x00\x65\x00\x74\x00\x20\x00\x74\x00\x65\x00\ +\x6b\x00\x65\x00\x6e\x00\x65\x00\x6e\x00\x2e\x00\x20\x00\x41\x00\ +\x6c\x00\x73\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x74\x00\x2c\x00\ +\x20\x00\x75\x00\x20\x00\x7a\x00\x61\x00\x6c\x00\x20\x00\x73\x00\ +\x6e\x00\x61\x00\x70\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x65\x00\ +\x6e\x00\x6b\x00\x65\x00\x6c\x00\x20\x00\x77\x00\x61\x00\x6e\x00\ +\x6e\x00\x65\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x70\x00\x20\x00\ +\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x64\x00\x72\x00\x75\x00\ +\x6b\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\x26\x00\x49\x00\x6d\x00\x70\x00\x6f\ +\x00\x72\x00\x74\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x2a\ +\x00\x62\x00\x6c\x00\x6f\x00\x6b\x00\x6b\x00\x65\x00\x6e\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\x2e\x00\x4f\ +\x00\x43\x00\x41\x00\x20\x00\x67\x00\x65\x00\x62\x00\x69\x00\x65\ +\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\ +\x00\x72\x00\x74\x00\x65\x00\x72\x00\x65\x00\x6e\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\x24\x00\x49\ +\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x65\x00\x72\ +\x00\x20\x00\x6c\x00\x61\x00\x79\x00\x2d\x00\x6f\x00\x75\x00\x74\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x49\x6d\x70\x6f\ +\x72\x74\x20\x6c\x61\x79\x6f\x75\x74\x73\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x18\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\ +\x00\x73\x00\x74\x00\x69\x00\x6a\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\x40\x00\x54\x00\x65\x00\x6b\x00\x73\ +\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x61\ +\x00\x66\x00\x6d\x00\x65\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x65\ +\x00\x6e\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\ +\x00\x65\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1b\x49\x6d\x70\x6f\x72\x74\x20\x74\x65\x78\x74\x73\x20\x61\ +\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x1a\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x2f\x00\x45\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x49\x6d\x70\x6f\x72\x74\x2f\ +\x45\x78\x70\x6f\x72\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x49\ +\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x65\x00\x20\x00\x70\ +\x00\x72\x00\x65\x00\x63\x00\x69\x00\x73\x00\x69\x00\x65\x00\x2d\ +\x00\x6e\x00\x69\x00\x76\x00\x65\x00\x61\x00\x75\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\x47\x00\x65\x00\x6f\x00\x6d\x00\x65\ +\x00\x74\x00\x72\x00\x69\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x70\ +\x00\x70\x00\x65\x00\x6c\x00\x65\x00\x6e\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\x20\x00\x4c\x00\x69\x00\x6e\x00\ +\x6b\x00\x73\x00\x20\x00\x28\x00\x49\x00\x53\x00\x4f\x00\x2d\x00\ +\x6e\x00\x6f\x00\x72\x00\x6d\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\x48\ +\x00\x6f\x00\x6f\x00\x66\x00\x64\x00\x6c\x00\x69\x00\x6a\x00\x6e\ +\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x6c\x00\x6b\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x4d\x61\x69\x6e\x20\x6c\x69\x6e\ +\x65\x73\x20\x65\x76\x65\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xb2\ +\x00\x48\x00\x6f\x00\x6f\x00\x66\x00\x64\x00\x6c\x00\x69\x00\x6a\ +\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x64\ +\x00\x65\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x6b\x00\x6b\x00\x65\ +\x00\x72\x00\x20\x00\x67\x00\x65\x00\x74\x00\x72\x00\x6f\x00\x6b\ +\x00\x6b\x00\x65\x00\x6e\x00\x2e\x00\x20\x00\x47\x00\x65\x00\x65\ +\x00\x66\x00\x20\x00\x68\x00\x69\x00\x65\x00\x72\x00\x20\x00\x61\ +\x00\x61\x00\x6e\x00\x20\x00\x68\x00\x6f\x00\x65\x00\x76\x00\x65\ +\x00\x65\x00\x6c\x00\x20\x00\x72\x00\x75\x00\x69\x00\x74\x00\x6a\ +\x00\x65\x00\x73\x00\x20\x00\x74\x00\x75\x00\x73\x00\x73\x00\x65\ +\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\x68\x00\x6f\x00\x6f\ +\x00\x66\x00\x64\x00\x6c\x00\x69\x00\x6a\x00\x6e\x00\x65\x00\x6e\ +\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\x22\x00\x4d\x00\x61\x00\x78\x00\x20\x00\x73\x00\ +\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\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\x08\x00\x47\x00\x65\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\x1c\x00\x47\x00\x65\x00\x65\x00\ +\x6e\x00\x20\x00\x28\x00\x73\x00\x6e\x00\x65\x00\x6c\x00\x73\x00\ +\x74\x00\x65\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\x46\x00\x4e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\ +\x61\x00\x6c\x00\x2c\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x68\x00\ +\x65\x00\x74\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\xeb\x00\ +\x72\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x00\ +\x2c\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x64\x00\x65\x00\x6e\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\ +\x65\x00\xeb\x00\x6e\x00\x20\x00\x67\x00\x65\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x64\x00\ +\x2e\x00\x20\x00\x41\x00\x6c\x00\x73\x00\x20\x00\x64\x00\x65\x00\ +\x7a\x00\x65\x00\x20\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x65\x00\ +\x20\x00\x69\x00\x73\x00\x20\x00\x61\x00\x61\x00\x6e\x00\x67\x00\ +\x65\x00\x76\x00\x69\x00\x6e\x00\x6b\x00\x74\x00\x2c\x00\x20\x00\ +\x7a\x00\x75\x00\x6c\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\x69\x00\x73\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\ +\x69\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x61\x00\x74\x00\ +\x73\x00\x20\x00\x64\x00\x61\x00\x61\x00\x72\x00\x76\x00\x61\x00\ +\x6e\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x64\x00\x65\x00\x6e\x00\ +\x20\x00\x67\x00\x65\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x65\x00\x72\x00\x64\x00\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\x2d\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x61\ +\x00\x74\x00\x20\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x65\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\x38\x00\x4f\x00\x72\x00\x69\x00\x67\x00\x69\x00\x6e\ +\x00\x65\x00\x6c\x00\x65\x00\x20\x00\x6b\x00\x6c\x00\x65\x00\x75\ +\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x6c\x00\x69\x00\x6a\ +\x00\x6e\x00\x64\x00\x69\x00\x6b\x00\x74\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\x0c\x00\x52\x00\x65\x00\x63\ +\x00\x68\x00\x74\x00\x73\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\x24\x00\x53\x00\ +\x56\x00\x47\x00\x2d\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\ +\x61\x00\x74\x00\x20\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x65\x00\ +\x73\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\x70\x00\x53\x00\x6c\x00\x61\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x68\x00\x75\x00\x69\x00\x64\x00\x69\x00\x67\x00\ +\x65\x00\x20\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\ +\x65\x00\x6e\x00\x20\x00\x6c\x00\x69\x00\x6a\x00\x6e\x00\x62\x00\ +\x72\x00\x65\x00\x65\x00\x64\x00\x74\x00\x65\x00\x20\x00\x6f\x00\ +\x70\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x20\x00\x61\x00\ +\x6c\x00\x6c\x00\x65\x00\x20\x00\x73\x00\x65\x00\x73\x00\x73\x00\ +\x69\x00\x65\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\x4e\x00\x53\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x20\x00\x62\x00\x61\x00\ +\x73\x00\x69\x00\x73\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x6e\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x68\x00\ +\x65\x00\x74\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\xeb\x00\ +\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x53\ +\x65\x6c\x65\x63\x74\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x61\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\x6e\x67\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x20\x00\x53\x00\x63\x00\x68\x00\x75\ +\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x73\x00\x74\x00\x72\x00\x65\ +\x00\x65\x00\x70\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\ +\x20\x00\x53\x00\x63\x00\x68\x00\x75\x00\x69\x00\x6e\x00\x65\x00\ +\x20\x00\x73\x00\x74\x00\x72\x00\x65\x00\x65\x00\x70\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\x20\x00\x53\x00\x63\x00\x68\ +\x00\x75\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x73\x00\x74\x00\x72\ +\x00\x65\x00\x65\x00\x70\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x07\x53\x6c\x61\x73\x68\x20\x39\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x26\x00\x4b\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\ +\x68\x00\x65\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x69\x00\x6e\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\x14\x00\x53\x00\x6e\x00\x61\x00\x70\x00\x20\x00\ +\x6d\x00\x6f\x00\x64\x00\x75\x00\x73\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\x16\x00\x4b\x00\x6c\x00\x65\x00\x65\x00\x66\x00\x62\x00\ +\x65\x00\x72\x00\x65\x00\x69\x00\x6b\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\x12\x00\x54\x00\x61\x00\x61\x00\x6b\x00\x7a\x00\ +\x69\x00\x63\x00\x68\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\ +\x36\x00\x44\x00\x65\x00\x20\x00\x42\x00\x65\x00\x70\x00\x65\x00\ +\x72\x00\x6b\x00\x65\x00\x6e\x00\x20\x00\x77\x00\x69\x00\x6a\x00\ +\x7a\x00\x69\x00\x67\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x74\x00\ +\x6f\x00\x65\x00\x74\x00\x73\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\x2c\x00\x44\x00\x65\x00\x20\x00\x61\x00\x6c\ +\x00\x74\x00\x2d\x00\x77\x00\x69\x00\x6a\x00\x7a\x00\x69\x00\x67\ +\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x74\x00\x6f\x00\x65\x00\x74\ +\x00\x73\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\xae\x00\x44\x00\x65\x00\x20\x00\x6b\ +\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x76\x00\x65\x00\x72\x00\x74\ +\x00\x61\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x62\x00\x65\ +\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x6f\x00\x6d\ +\x00\x20\x00\x74\x00\x65\x00\x20\x00\x67\x00\x65\x00\x62\x00\x72\ +\x00\x75\x00\x69\x00\x6b\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x6f\ +\x00\x6f\x00\x72\x00\x20\x00\x6f\x00\x6d\x00\x7a\x00\x65\x00\x74\ +\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\ +\x00\x64\x00\x78\x00\x66\x00\x20\x00\x6b\x00\x6c\x00\x65\x00\x75\ +\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x6c\ +\x00\x69\x00\x6a\x00\x6e\x00\x62\x00\x72\x00\x65\x00\x65\x00\x64\ +\x00\x74\x00\x65\x00\x6e\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\x94\x00\x44\x00\x65\x00\x20\x00\ +\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x61\x00\x72\x00\ +\x64\x00\x73\x00\x6a\x00\x61\x00\x62\x00\x6c\x00\x6f\x00\x6f\x00\ +\x6e\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x65\x00\x20\x00\ +\x67\x00\x65\x00\x62\x00\x72\x00\x75\x00\x69\x00\x6b\x00\x65\x00\ +\x6e\x00\x20\x00\x62\x00\x69\x00\x6a\x00\x20\x00\x68\x00\x65\x00\ +\x74\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x65\x00\x6e\x00\x20\x00\ +\x76\x00\x61\x00\x6e\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\ +\x6e\x00\x69\x00\x65\x00\x75\x00\x77\x00\x65\x00\x20\x00\x74\x00\ +\x65\x00\x6b\x00\x65\x00\x6e\x00\x69\x00\x6e\x00\x67\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\x7a\x00\x48\x00\x65\ +\x00\x74\x00\x20\x00\x61\x00\x61\x00\x6e\x00\x74\x00\x61\x00\x6c\ +\x00\x20\x00\x64\x00\x65\x00\x63\x00\x69\x00\x6d\x00\x61\x00\x6c\ +\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x69\x00\x6e\ +\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x65\x00\x20\x00\x63\x00\x6f\ +\x00\xf6\x00\x72\x00\x64\x00\x69\x00\x6e\x00\x61\x00\x74\x00\x65\ +\x00\x6e\x00\x20\x00\x28\x00\x62\x00\x69\x00\x6a\x00\x76\x00\x2e\ +\x00\x20\x00\x30\x00\x2e\x00\x30\x00\x30\x00\x31\x00\x20\x00\x3d\ +\x00\x20\x00\x33\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\x9e\x00\x44\x00\x65\x00\x20\x00\x73\x00\x74\x00\ +\x72\x00\x61\x00\x61\x00\x6c\x00\x20\x00\x76\x00\x61\x00\x6e\x00\ +\x20\x00\x68\x00\x65\x00\x74\x00\x20\x00\x6b\x00\x6c\x00\x65\x00\ +\x76\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x61\x00\x6e\x00\x20\x00\ +\x73\x00\x70\x00\x65\x00\x63\x00\x69\x00\x61\x00\x6c\x00\x65\x00\ +\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x65\x00\x6e\x00\x2e\x00\ +\x20\x00\x4f\x00\x70\x00\x20\x00\x30\x00\x20\x00\x76\x00\x6f\x00\ +\x6f\x00\x72\x00\x20\x00\x67\x00\x65\x00\x65\x00\x6e\x00\x20\x00\ +\x61\x00\x66\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x20\x00\ +\x28\x00\x6f\x00\x6e\x00\x65\x00\x69\x00\x6e\x00\x64\x00\x69\x00\ +\x67\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\x2e\x00\x44\x00\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\ +\x70\x00\x2d\x00\x77\x00\x69\x00\x6a\x00\x7a\x00\x69\x00\x67\x00\ +\x69\x00\x6e\x00\x67\x00\x73\x00\x74\x00\x6f\x00\x65\x00\x74\x00\ +\x73\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\x42\x00\x44\x00\x65\x00\x20\x00\x61\ +\x00\x66\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x20\x00\x74\ +\x00\x75\x00\x73\x00\x73\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x6c\ +\x00\x6b\x00\x65\x00\x20\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\ +\x00\x72\x00\x6c\x00\x69\x00\x6a\x00\x6e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x22\x54\x68\x65\x20\x73\x70\x61\x63\x69\x6e\x67\x20\ +\x62\x65\x74\x77\x65\x65\x6e\x20\x65\x61\x63\x68\x20\x67\x72\x69\ +\x64\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\xd4\x00\x44\ +\x00\x69\x00\x74\x00\x20\x00\x69\x00\x73\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x55\x00\x49\x00\x2d\x00\x6d\x00\x6f\x00\x64\x00\x75\ +\x00\x73\x00\x20\x00\x77\x00\x61\x00\x61\x00\x72\x00\x69\x00\x6e\ +\x00\x20\x00\x64\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\x7a\x00\x61\x00\x6c\x00\x20\x00\x77\x00\x65\x00\x72\ +\x00\x6b\x00\x65\x00\x6e\x00\x3a\x00\x20\x00\x77\x00\x65\x00\x72\ +\x00\x6b\x00\x62\x00\x61\x00\x6c\x00\x6b\x00\x20\x00\x6d\x00\x6f\ +\x00\x64\x00\x75\x00\x73\x00\x20\x00\x7a\x00\x61\x00\x6c\x00\x20\ +\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x6e\x00\x74\ +\x00\x77\x00\x65\x00\x72\x00\x70\x00\x2d\x00\x69\x00\x6e\x00\x73\ +\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\x65\ +\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x65\x00\x65\x00\x6e\ +\x00\x20\x00\x61\x00\x70\x00\x61\x00\x72\x00\x74\x00\x65\x00\x20\ +\x00\x77\x00\x65\x00\x72\x00\x6b\x00\x62\x00\x61\x00\x6c\x00\x6b\ +\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x61\x00\x74\x00\x73\x00\x65\ +\x00\x6e\x00\x2c\x00\x20\x00\x74\x00\x65\x00\x72\x00\x77\x00\x69\ +\x00\x6a\x00\x6c\x00\x20\x00\x74\x00\x61\x00\x61\x00\x6b\x00\x7a\ +\x00\x69\x00\x63\x00\x68\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x64\ +\x00\x75\x00\x73\x00\x20\x00\x7a\x00\x61\x00\x6c\x00\x20\x00\x68\ +\x00\x65\x00\x74\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\x65\x00\x6d\x00\x20\x00\x67\x00\x65\x00\x62\x00\x72\ +\x00\x75\x00\x69\x00\x6b\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x6f\ +\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x20\ +\x00\x68\x00\x61\x00\x61\x00\x72\x00\x20\x00\x67\x00\x65\x00\x62\ +\x00\x72\x00\x75\x00\x69\x00\x6b\x00\x65\x00\x72\x00\x73\x00\x69\ +\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\xcf\x54\x68\x69\x73\ +\x20\x69\x73\x20\x74\x68\x65\x20\x55\x49\x20\x6d\x6f\x64\x65\x20\ +\x69\x6e\x20\x77\x68\x69\x63\x68\x20\x74\x68\x65\x20\x44\x72\x61\ +\x66\x74\x20\x6d\x6f\x64\x75\x6c\x65\x20\x77\x69\x6c\x6c\x20\x77\ +\x6f\x72\x6b\x3a\x20\x54\x6f\x6f\x6c\x62\x61\x72\x20\x6d\x6f\x64\ +\x65\x20\x77\x69\x6c\x6c\x20\x70\x6c\x61\x63\x65\x20\x61\x6c\x6c\ +\x20\x44\x72\x61\x66\x74\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x20\ +\x69\x6e\x20\x61\x20\x73\x65\x70\x61\x72\x61\x74\x65\x20\x74\x6f\ +\x6f\x6c\x62\x61\x72\x2c\x20\x77\x68\x69\x6c\x65\x20\x74\x61\x73\ +\x6b\x62\x61\x72\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x75\ +\x73\x65\x20\x74\x68\x65\x20\x46\x72\x65\x65\x43\x41\x44\x20\x54\ +\x61\x73\x6b\x76\x69\x65\x77\x20\x73\x79\x73\x74\x65\x6d\x20\x66\ +\x6f\x72\x20\x61\x6c\x6c\x20\x69\x74\x73\x20\x75\x73\x65\x72\x20\ +\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x86\x00\x44\x00\x69\x00\x74\x00\x20\x00\x69\x00\x73\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x67\x00\x65\x00\x6b\x00\x6f\x00\ +\x7a\x00\x65\x00\x6e\x00\x20\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\ +\x72\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\ +\x67\x00\x65\x00\x74\x00\x65\x00\x6b\x00\x65\x00\x6e\x00\x64\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\x65\x00\x2d\x00\ +\x6d\x00\x6f\x00\x64\x00\x75\x00\x73\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\x20\x00\x44\x00\x69\x00\x74\x00\x20\ +\x00\x69\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x73\x00\x74\ +\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x61\x00\x72\x00\x64\x00\x20\ +\x00\x6e\x00\x61\x00\x61\x00\x6d\x00\x20\x00\x76\x00\x61\x00\x6e\ +\x00\x20\x00\x68\x00\x65\x00\x74\x00\x20\x00\x6c\x00\x65\x00\x74\ +\x00\x74\x00\x65\x00\x72\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\ +\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x6c\x00\x6c\ +\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\ +\x00\x74\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x20\ +\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x66\x00\x6d\x00\x65\x00\x74\ +\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x6e\x00\x2e\x00\x20\x00\x48\ +\x00\x65\x00\x74\x00\x20\x00\x6b\x00\x61\x00\x6e\x00\x20\x00\x65\ +\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x20\ +\x00\x6e\x00\x61\x00\x61\x00\x6d\x00\x20\x00\x7a\x00\x69\x00\x6a\ +\x00\x6e\x00\x2c\x00\x20\x00\x7a\x00\x6f\x00\x61\x00\x6c\x00\x73\ +\x00\x20\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x22\ +\x00\x2c\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x74\ +\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x61\x00\x72\x00\x64\x00\x20\ +\x00\x73\x00\x74\x00\x69\x00\x6a\x00\x6c\x00\x2c\x00\x20\x00\x7a\ +\x00\x6f\x00\x61\x00\x6c\x00\x73\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\x6f\x00\x66\x00\x20\ +\x00\x22\x00\x6d\x00\x6f\x00\x6e\x00\x6f\x00\x22\x00\x2c\x00\x20\ +\x00\x6f\x00\x66\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x66\ +\x00\x61\x00\x6d\x00\x69\x00\x6c\x00\x69\x00\x65\x00\x2c\x00\x20\ +\x00\x7a\x00\x6f\x00\x61\x00\x6c\x00\x73\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\x6f\ +\x00\x66\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x6e\x00\x61\ +\x00\x61\x00\x6d\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x20\x00\x65\ +\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x74\x00\x69\x00\x6a\x00\x6c\ +\x00\x20\x00\x7a\x00\x6f\x00\x61\x00\x6c\x00\x73\x00\x20\x00\x22\ +\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x3a\x00\x20\x00\x42\ +\x00\x6f\x00\x6c\x00\x64\x00\x22\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\xf2\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\ +\x66\x61\x75\x6c\x74\x20\x66\x6f\x6e\x74\x20\x6e\x61\x6d\x65\x20\ +\x66\x6f\x72\x20\x61\x6c\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\x78\x00\x44\x00\x69\ +\x00\x74\x00\x20\x00\x69\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x61\x00\x72\ +\x00\x64\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x65\x00\x70\x00\x73\ +\x00\x6e\x00\x61\x00\x61\x00\x6d\x00\x20\x00\x76\x00\x6f\x00\x6f\ +\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\ +\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x69\x00\x65\ +\x00\x20\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\ +\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x9a\x00\x44\ +\x00\x69\x00\x74\x00\x20\x00\x69\x00\x73\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x68\x00\x6f\x00\x64\x00\x65\ +\x00\x20\x00\x67\x00\x65\x00\x6b\x00\x6f\x00\x7a\x00\x65\x00\x6e\ +\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x20\x00\x68\x00\x65\ +\x00\x74\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\ +\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x6e\ +\x00\x20\x00\x53\x00\x56\x00\x47\x00\x2d\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\x72\ +\x00\x20\x00\x69\x00\x6e\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\ +\xb8\x00\x44\x00\x69\x00\x74\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x68\x00\x6f\x00\ +\x64\x00\x65\x00\x20\x00\x67\x00\x65\x00\x6b\x00\x6f\x00\x7a\x00\ +\x65\x00\x6e\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x20\x00\ +\x68\x00\x65\x00\x74\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\ +\x66\x00\x20\x00\x68\x00\x65\x00\x74\x00\x20\x00\x76\x00\x65\x00\ +\x72\x00\x74\x00\x61\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x76\x00\ +\x61\x00\x6e\x00\x20\x00\x44\x00\x58\x00\x46\x00\x2d\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\ +\x69\x00\x6e\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\ +\x41\x00\x44\x00\x2d\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\x72\x00\ +\x65\x00\x6e\x00\x2e\x00\x20\x00\x41\x00\x6c\x00\x73\x00\x20\x00\ +\x22\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x76\x00\ +\x65\x00\x72\x00\x74\x00\x61\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\ +\x22\x00\x20\x00\x69\x00\x73\x00\x20\x00\x67\x00\x65\x00\x6b\x00\ +\x6f\x00\x7a\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x6d\x00\x6f\x00\ +\x65\x00\x74\x00\x20\x00\x75\x00\x20\x00\x65\x00\x65\x00\x6d\x00\ +\x20\x00\x62\x00\x65\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\ +\x20\x00\x6b\x00\x69\x00\x65\x00\x7a\x00\x65\x00\x6e\x00\x20\x00\ +\x6d\x00\x65\x00\x74\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\ +\x76\x00\x65\x00\x72\x00\x74\x00\x61\x00\x6c\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x74\x00\x61\x00\x62\x00\x65\x00\x6c\x00\x20\x00\ +\x64\x00\x69\x00\x65\x00\x20\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\ +\x72\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x6c\x00\ +\x69\x00\x6a\x00\x6e\x00\x62\x00\x72\x00\x65\x00\x65\x00\x64\x00\ +\x74\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x6d\x00\x7a\x00\x65\x00\ +\x74\x00\x74\x00\x65\x00\x6e\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\xf0\x00\x44\ +\x00\x69\x00\x74\x00\x20\x00\x69\x00\x73\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x61\x00\x74\x00\x73\x00\x20\ +\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\ +\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x65\x00\x2d\ +\x00\x74\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x20\ +\x00\x77\x00\x61\x00\x6e\x00\x6e\x00\x65\x00\x65\x00\x72\x00\x20\ +\x00\x64\x00\x65\x00\x7a\x00\x65\x00\x20\x00\x64\x00\x69\x00\x6d\ +\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x65\x00\x73\x00\x20\x00\x76\ +\x00\x65\x00\x72\x00\x74\x00\x69\x00\x63\x00\x61\x00\x61\x00\x6c\ +\x00\x20\x00\x73\x00\x74\x00\x61\x00\x61\x00\x6e\x00\x2e\x00\x20\ +\x00\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x61\x00\x72\ +\x00\x64\x00\x20\x00\x69\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x6e\ +\x00\x6b\x00\x73\x00\x2c\x00\x20\x00\x64\x00\x61\x00\x74\x00\x20\ +\x00\x69\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x49\x00\x53\ +\x00\x4f\x00\x2d\x00\x6e\x00\x6f\x00\x72\x00\x6d\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\x36\x00\x44\ +\x00\x65\x00\x7a\x00\x65\x00\x20\x00\x77\x00\x61\x00\x61\x00\x72\ +\x00\x64\x00\x65\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x64\x00\x74\ +\x00\x20\x00\x67\x00\x65\x00\x62\x00\x72\x00\x75\x00\x69\x00\x6b\ +\x00\x74\x00\x20\x00\x64\x00\x6f\x00\x6f\x00\x72\x00\x20\x00\x66\ +\x00\x75\x00\x6e\x00\x63\x00\x74\x00\x69\x00\x65\x00\x73\x00\x20\ +\x00\x64\x00\x69\x00\x65\x00\x20\x00\x67\x00\x65\x00\x62\x00\x72\ +\x00\x75\x00\x69\x00\x6b\x00\x6d\x00\x61\x00\x6b\x00\x65\x00\x6e\ +\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x65\x00\x65\x00\x6e\ +\x00\x20\x00\x74\x00\x6f\x00\x6c\x00\x65\x00\x72\x00\x61\x00\x6e\ +\x00\x74\x00\x69\x00\x65\x00\x2e\x00\x20\x00\x57\x00\x61\x00\x61\ +\x00\x72\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x65\x00\x74\ +\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\x63\x00\x68\x00\x69\ +\x00\x6c\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x6e\x00\x64\ +\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\x00\x7a\x00\x65\x00\x20\ +\x00\x77\x00\x61\x00\x61\x00\x72\x00\x64\x00\x65\x00\x20\x00\x7a\ +\x00\x75\x00\x6c\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x6c\ +\x00\x73\x00\x20\x00\x67\x00\x65\x00\x6c\x00\x69\x00\x6a\x00\x6b\ +\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x64\x00\x65\x00\x6e\x00\x20\ +\x00\x62\x00\x65\x00\x68\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x6c\ +\x00\x64\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7b\x54\x68\ +\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\ +\x75\x73\x65\x64\x20\x62\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\ +\x73\x20\x74\x68\x61\x74\x20\x75\x73\x65\x20\x61\x20\x74\x6f\x6c\ +\x65\x72\x61\x6e\x63\x65\x2e\x0a\x56\x61\x6c\x75\x65\x73\x20\x77\ +\x69\x74\x68\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x63\x65\x73\x20\ +\x62\x65\x6c\x6f\x77\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\ +\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x74\x72\x65\x61\x74\x65\x64\ +\x20\x61\x73\x20\x73\x61\x6d\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x14\x00\x54\x00\x6f\x00\x6c\x00\x65\x00\x72\x00\x61\x00\x6e\x00\ +\x74\x00\x69\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\x10\ +\x00\x57\x00\x65\x00\x72\x00\x6b\x00\x62\x00\x61\x00\x6c\x00\x6b\ +\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\x48\x00\x47\x00\x65\x00\x62\x00\ +\x72\x00\x75\x00\x69\x00\x6b\x00\x20\x00\x73\x00\x74\x00\x61\x00\ +\x6e\x00\x64\x00\x61\x00\x61\x00\x72\x00\x64\x00\x20\x00\x6b\x00\ +\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x20\x00\ +\x6c\x00\x69\x00\x6a\x00\x6e\x00\x64\x00\x69\x00\x6b\x00\x74\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\x1c\x00\x47\x00\x65\x00\x62\x00\x72\x00\x75\x00\x69\x00\x6b\ +\x00\x20\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\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\x5e\x00\x44\x00\x65\x00\x20\x00\x70\ +\x00\x6c\x00\x61\x00\x61\x00\x74\x00\x73\x00\x20\x00\x76\x00\x61\ +\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\x74\x00\x65\x00\x6b\ +\x00\x73\x00\x74\x00\x20\x00\x62\x00\x69\x00\x6a\x00\x20\x00\x76\ +\x00\x65\x00\x72\x00\x74\x00\x69\x00\x63\x00\x61\x00\x6c\x00\x65\ +\x00\x20\x00\x61\x00\x66\x00\x6d\x00\x65\x00\x74\x00\x69\x00\x6e\ +\x00\x67\x00\x65\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\xae\x00\x42\x00\x69\ +\x00\x6a\x00\x20\x00\x68\x00\x65\x00\x74\x00\x20\x00\x65\x00\x78\ +\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x00\x65\x00\x6e\ +\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x73\x00\x70\x00\x6c\ +\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x6e\x00\x61\x00\x61\ +\x00\x72\x00\x20\x00\x44\x00\x58\x00\x46\x00\x2d\x00\x66\x00\x6f\ +\x00\x72\x00\x6d\x00\x61\x00\x61\x00\x74\x00\x2c\x00\x20\x00\x77\ +\x00\x6f\x00\x72\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x7a\x00\x65\ +\x00\x20\x00\x6f\x00\x6d\x00\x67\x00\x65\x00\x7a\x00\x65\x00\x74\ +\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\ +\x00\x6c\x00\x69\x00\x6a\x00\x6e\x00\x65\x00\x6e\x00\x2e\x00\x20\ +\x00\x44\x00\x65\x00\x7a\x00\x65\x00\x20\x00\x77\x00\x61\x00\x61\ +\x00\x72\x00\x64\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x61\ +\x00\x6c\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x6e\x00\x67\x00\x74\ +\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x65\x00\x6c\ +\x00\x6b\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x6c\x00\x69\x00\x6a\ +\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\ +\x00\x74\x00\x65\x00\x6e\x00\x2e\x00\x20\x00\x41\x00\x6c\x00\x73\ +\x00\x20\x00\x30\x00\x2c\x00\x20\x00\x64\x00\x61\x00\x6e\x00\x20\ +\x00\x77\x00\x6f\x00\x72\x00\x64\x00\x74\x00\x20\x00\x64\x00\x65\ +\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\x20\x00\x62\x00\x65\x00\x68\ +\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x6c\x00\x64\x00\x20\x00\x61\ +\x00\x6c\x00\x73\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x72\ +\x00\x65\x00\x63\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\x1c\x00\x58\ +\x00\x59\x00\x20\x00\x28\x00\x42\x00\x6f\x00\x76\x00\x65\x00\x6e\ +\x00\x6b\x00\x61\x00\x6e\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\x1a\x00\x58\x00\x5a\x00\x20\x00\x28\x00\x76\x00\x6f\ +\x00\x6f\x00\x72\x00\x6b\x00\x61\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\x18\x00\x59\x00\x5a\x00\x20\ +\x00\x28\x00\x7a\x00\x69\x00\x6a\x00\x6b\x00\x61\x00\x6e\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\x72\x00\x56\x00\x69\x00\x6e\x00\x6b\ +\x00\x20\x00\x64\x00\x69\x00\x74\x00\x20\x00\x61\x00\x61\x00\x6e\ +\x00\x20\x00\x61\x00\x6c\x00\x73\x00\x20\x00\x75\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\ +\x00\x61\x00\x72\x00\x64\x00\x20\x00\x6b\x00\x6c\x00\x65\x00\x75\ +\x00\x72\x00\x2f\x00\x6c\x00\x69\x00\x6a\x00\x6e\x00\x20\x00\x77\ +\x00\x69\x00\x6c\x00\x74\x00\x20\x00\x67\x00\x65\x00\x62\x00\x72\ +\x00\x75\x00\x69\x00\x6b\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x4d\x63\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\ +\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x6f\x20\x75\x73\ +\x65\x20\x74\x68\x65\x20\x63\x6f\x6c\x6f\x72\x2f\x6c\x69\x6e\x65\ +\x77\x69\x64\x74\x68\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x74\ +\x6f\x6f\x6c\x62\x61\x72\x20\x61\x73\x20\x64\x65\x66\x61\x75\x6c\ +\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x08\x00\x63\x00\x74\x00\x72\x00\ +\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x63\x74\x72\x6c\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x01\x86\x00\x41\x00\x6c\x00\x73\x00\x20\x00\ +\x64\x00\x69\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x67\x00\x65\x00\ +\x73\x00\x63\x00\x68\x00\x61\x00\x6b\x00\x65\x00\x6c\x00\x64\x00\ +\x20\x00\x69\x00\x73\x00\x2c\x00\x20\x00\x7a\x00\x75\x00\x6c\x00\ +\x6c\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x70\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x64\x00\x65\x00\x7a\x00\x65\x00\x6c\x00\ +\x66\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x67\x00\x65\x00\ +\x6e\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x44\x00\x72\x00\x61\x00\ +\x66\x00\x74\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x6b\x00\x6b\x00\ +\x65\x00\x6e\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x64\x00\x65\x00\ +\x6e\x00\x20\x00\x6f\x00\x6d\x00\x67\x00\x65\x00\x7a\x00\x65\x00\ +\x74\x00\x2c\x00\x20\x00\x77\x00\x61\x00\x61\x00\x72\x00\x64\x00\ +\x6f\x00\x6f\x00\x72\x00\x20\x00\x68\x00\x65\x00\x74\x00\x20\x00\ +\x64\x00\x69\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x20\x00\ +\x73\x00\x6e\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\x00\ +\x7a\x00\x61\x00\x6c\x00\x20\x00\x64\x00\x72\x00\x61\x00\x61\x00\ +\x69\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x6d\x00\x61\x00\x61\x00\ +\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x69\x00\ +\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x67\x00\x65\x00\x6d\x00\ +\x61\x00\x6b\x00\x6b\x00\x65\x00\x6c\x00\x69\x00\x6a\x00\x6b\x00\ +\x20\x00\x62\x00\x65\x00\x77\x00\x65\x00\x72\x00\x6b\x00\x62\x00\ +\x61\x00\x61\x00\x72\x00\x20\x00\x7a\x00\x75\x00\x6c\x00\x6c\x00\ +\x65\x00\x6e\x00\x20\x00\x7a\x00\x69\x00\x6a\x00\x6e\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\x86\x00\x41\x00\x6c\x00\x73\x00\x20\x00\x64\x00\x69\x00\x74\ +\x00\x20\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x73\x00\x63\x00\x68\ +\x00\x61\x00\x6b\x00\x65\x00\x6c\x00\x64\x00\x20\x00\x69\x00\x73\ +\x00\x2c\x00\x20\x00\x7a\x00\x69\x00\x6a\x00\x6e\x00\x20\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\x65\x00\x6e\x00\x20\x00\x6f\x00\x6f\x00\x6b\x00\x20\ +\x00\x67\x00\x65\x00\xef\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\ +\x00\x65\x00\x65\x00\x72\x00\x64\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\x90\x00\x41\x00\x6c\x00\x73\x00\x20\x00\x64\ +\x00\x69\x00\x74\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x74\x00\x20\ +\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x73\x00\x63\x00\x68\x00\x61\ +\x00\x6b\x00\x65\x00\x6c\x00\x64\x00\x20\x00\x69\x00\x73\x00\x2c\ +\x00\x20\x00\x77\x00\x65\x00\x72\x00\x64\x00\x65\x00\x6e\x00\x20\ +\x00\x74\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x20\ +\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x74\x00\x65\x00\x78\x00\x74\ +\x00\x73\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x74\x00\x20\x00\x67\ +\x00\x65\x00\xef\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\ +\x00\x65\x00\x72\x00\x64\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\x00\x64\x00\x65\x00\x20\x00\x73\x00\x74\x00\ +\x61\x00\x6e\x00\x64\x00\x61\x00\x61\x00\x72\x00\x64\x00\x6b\x00\ +\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\ +\x72\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x75\x00\x77\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x65\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x74\x68\x65\x20\x64\ +\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\x72\ +\x20\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x48\x00\x64\x00\x65\x00\x20\x00\x73\x00\x74\x00\x61\ +\x00\x6e\x00\x64\x00\x61\x00\x61\x00\x72\x00\x64\x00\x6b\x00\x6c\ +\x00\x65\x00\x75\x00\x72\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\ +\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x73\x00\x79\ +\x00\x6d\x00\x62\x00\x6f\x00\x6c\x00\x65\x00\x6e\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\x56\ +\x00\x64\x00\x65\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\ +\x00\x61\x00\x61\x00\x72\x00\x64\x00\x20\x00\x6c\x00\x69\x00\x6a\ +\x00\x6e\x00\x64\x00\x69\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x76\ +\x00\x6f\x00\x6f\x00\x72\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x75\ +\x00\x77\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x65\x00\x6e\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\x12\x00\x26\x00\ +\x20\x00\x53\x00\x6c\x00\x75\x00\x69\x00\x74\x00\x65\x00\x6e\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\x44\x00\x6f\x00\x6f\x00\x72\x00\x67\x00\x61\x00\x61\x00\ +\x6e\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\x12\x00\x26\x00\x4b\x00\x6f\x00\x70\x00\x69\x00\xeb\ +\x00\x72\x00\x65\x00\x6e\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\x18\x00\x26\x00\x42\x00\x65\x00\xeb\x00\x69\x00\ +\x6e\x00\x64\x00\x69\x00\x67\x00\x65\x00\x6e\x00\x20\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\x2e\x00\x26\ +\x00\x4f\x00\x43\x00\x43\x00\x2d\x00\x73\x00\x74\x00\x69\x00\x6a\ +\x00\x6c\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\x63\x00\x68\ +\x00\x75\x00\x69\x00\x76\x00\x69\x00\x6e\x00\x67\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\x65\x00\x66\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\x1e\x00\x26\x00\x4f\ +\x00\x6e\x00\x67\x00\x65\x00\x64\x00\x61\x00\x61\x00\x6e\x00\x20\ +\x00\x6d\x00\x61\x00\x6b\x00\x65\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\x0a\x00\x26\x00\x56\x00\x65\x00\ +\x65\x00\x67\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\x20\x00\x41\x00\x63\x00\x74\x00\x69\x00\x65\x00\x76\x00\x65\ +\x00\x20\x00\x6f\x00\x70\x00\x64\x00\x72\x00\x61\x00\x63\x00\x68\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x41\x63\x74\x69\ +\x76\x65\x20\x44\x72\x61\x66\x74\x20\x63\x6f\x6d\x6d\x61\x6e\x64\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6c\ +\x00\x41\x00\x63\x00\x74\x00\x69\x00\x65\x00\x76\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x6d\ +\x00\x6f\x00\x65\x00\x74\x00\x20\x00\x6d\x00\x65\x00\x65\x00\x72\ +\x00\x20\x00\x64\x00\x61\x00\x6e\x00\x20\x00\x74\x00\x77\x00\x65\ +\x00\x65\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x65\x00\x6e\ +\x00\x2f\x00\x6e\x00\x6f\x00\x64\x00\x65\x00\x73\x00\x20\x00\x68\ +\x00\x65\x00\x62\x00\x62\x00\x65\x00\x6e\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\x4e\x00\x50\x00\x75\x00\x6e\x00\ +\x74\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x61\x00\x6e\x00\x20\x00\ +\x68\x00\x65\x00\x74\x00\x20\x00\x68\x00\x75\x00\x69\x00\x64\x00\ +\x69\x00\x67\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x65\x00\x76\x00\x6f\x00\ +\x65\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x20\x41\x64\x64\x20\x70\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\x74\ +\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\ +\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0e\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x69\x00\x6e\x00\x67\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\x4f\x00\x70\x00\x65\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\ +\x73\x00\x68\x00\x6f\x00\x65\x00\x6b\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\x46\x00\x54\x00\x6f\x00\x65\x00\x70\x00\x61\x00\ +\x73\x00\x73\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x70\x00\x20\x00\ +\x67\x00\x65\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x65\x00\x65\x00\x72\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\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\x00\x42\ +\x00\x6f\x00\x6f\x00\x67\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\x54\x00\x44\x00\x69\x00\x74\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x74\x00\x79\x00\x70\x00\x65\x00\ +\x20\x00\x6e\x00\x69\x00\x65\x00\x74\x00\x20\x00\x6b\x00\x61\x00\ +\x6e\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\x63\x00\x68\x00\ +\x75\x00\x69\x00\x66\x00\x74\x00\x20\x00\x77\x00\x6f\x00\x72\x00\ +\x64\x00\x65\x00\x6e\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\x18\ +\x00\x4d\x00\x69\x00\x64\x00\x64\x00\x65\x00\x6c\x00\x70\x00\x75\ +\x00\x6e\x00\x74\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\x00\x53\x00\x74\x00\x69\ +\x00\x6a\x00\x6c\x00\x20\x00\x77\x00\x69\x00\x6a\x00\x7a\x00\x69\ +\x00\x67\x00\x65\x00\x6e\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\xd4\x00\x53\x00\x63\ +\x00\x68\x00\x61\x00\x6b\x00\x65\x00\x6c\x00\x20\x00\x64\x00\x69\ +\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x61\x00\x6c\x00\x73\ +\x00\x20\x00\x68\x00\x65\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x65\x00\x74\ +\x00\x20\x00\x61\x00\x6c\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x67\ +\x00\x65\x00\x76\x00\x75\x00\x6c\x00\x64\x00\x20\x00\x76\x00\x65\ +\x00\x72\x00\x73\x00\x63\x00\x68\x00\x69\x00\x6a\x00\x6e\x00\x65\ +\x00\x6e\x00\x2c\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x72\ +\x00\x73\x00\x20\x00\x7a\x00\x61\x00\x6c\x00\x20\x00\x68\x00\x65\ +\x00\x74\x00\x20\x00\x20\x00\x61\x00\x6c\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\x76\x00\x65\x00\x72\x00\x73\x00\x63\x00\x68\x00\x69\ +\x00\x6a\x00\x6e\x00\x65\x00\x6e\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\x43\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\ +\x8a\x00\x43\x00\x6f\x00\xf6\x00\x72\x00\x64\x00\x69\x00\x6e\x00\ +\x61\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x72\x00\x65\x00\x6c\x00\ +\x61\x00\x74\x00\x69\x00\x65\x00\x66\x00\x20\x00\x74\x00\x65\x00\ +\x6e\x00\x20\x00\x6f\x00\x70\x00\x7a\x00\x69\x00\x63\x00\x68\x00\ +\x74\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x76\x00\ +\x6f\x00\x72\x00\x69\x00\x67\x00\x20\x00\x70\x00\x75\x00\x6e\x00\ +\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x62\x00\x73\x00\ +\x6f\x00\x6c\x00\x75\x00\x75\x00\x74\x00\x20\x00\x28\x00\x53\x00\ +\x50\x00\x41\x00\x54\x00\x49\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\x0a\x00\x4b\x00\x6f\x00\ +\x70\x00\x69\x00\x65\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\x1a\x00\x42\x00\x6f\x00\x6f\x00\x67\x00\x20\x00\x61\x00\ +\x61\x00\x6e\x00\x6d\x00\x61\x00\x6b\x00\x65\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x43\x72\x65\x61\x74\x65\x20\x41\x72\ +\x63\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x20\x00\x42\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\ +\x20\x00\x61\x00\x61\x00\x6e\x00\x6d\x00\x61\x00\x6b\x00\x65\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x43\x72\x65\x61\x74\ +\x65\x20\x42\x53\x70\x6c\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x43\x00\x69\x00\x72\x00\ +\x6b\x00\x65\x00\x6c\x00\x20\x00\x61\x00\x61\x00\x6e\x00\x6d\x00\ +\x61\x00\x6b\x00\x65\x00\x6e\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\x00\x44\ +\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x65\x00\x20\ +\x00\x61\x00\x61\x00\x6e\x00\x6d\x00\x61\x00\x6b\x00\x65\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\x22\x00\x56\x00\x65\x00\x65\ +\x00\x6c\x00\x68\x00\x6f\x00\x65\x00\x6b\x00\x20\x00\x61\x00\x61\ +\x00\x6e\x00\x6d\x00\x61\x00\x6b\x00\x65\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0e\x43\x72\x65\x61\x74\x65\x20\x50\x6f\x6c\ +\x79\x67\x6f\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x24\x00\x52\x00\x65\x00\x63\x00\x68\x00\x74\x00\x68\ +\x00\x6f\x00\x65\x00\x6b\x00\x20\x00\x61\x00\x61\x00\x6e\x00\x6d\ +\x00\x61\x00\x6b\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x43\x72\x65\x61\x74\x65\x20\x52\x65\x63\x74\x61\x6e\x67\ +\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x1c\x00\x54\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x20\x00\x61\ +\x00\x61\x00\x6e\x00\x6d\x00\x61\x00\x6b\x00\x65\x00\x6e\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\x1c\x00\x44\x00\x72\x00\x61\x00\x61\x00\x64\x00\x20\x00\ +\x61\x00\x61\x00\x6e\x00\x6d\x00\x61\x00\x6b\x00\x65\x00\x6e\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\x4d\x00\x65\x00\x74\x00\x69\x00\x6e\x00\x67\ +\x00\x20\x00\x76\x00\x65\x00\x72\x00\x77\x00\x69\x00\x6a\x00\x64\ +\x00\x65\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\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\x1c\x00\x57\x00\x65\x00\x65\x00\x72\x00\x67\x00\x61\ +\x00\x76\x00\x65\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x65\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\x0e\x00\x41\x00\x66\x00\x73\x00\ +\x74\x00\x61\x00\x6e\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x52\x00\x50\x00\x72\x00\x6f\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x20\x00\ +\x67\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x70\x00\x75\x00\x6e\x00\ +\x74\x00\x65\x00\x6e\x00\x20\x00\x6e\x00\x61\x00\x61\x00\x72\x00\ +\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x65\x00\x6b\x00\ +\x65\x00\x6e\x00\x76\x00\x6c\x00\x61\x00\x6b\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\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\ +\x00\x20\x00\x77\x00\x65\x00\x72\x00\x6b\x00\x74\x00\x75\x00\x69\ +\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ +\x44\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x52\x00\x61\x00\ +\x6e\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x6e\x00\x69\x00\x65\x00\ +\x74\x00\x20\x00\x73\x00\x6e\x00\x69\x00\x6a\x00\x64\x00\x65\x00\ +\x6e\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\x10\x00\x42\x00\x65\x00\x77\x00\x65\x00\x72\ +\x00\x6b\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x45\x64\x69\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0e\x00\x47\x00\x65\x00\x76\x00\x26\x00\x75\x00\x6c\ +\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\x4f\x00\x70\x00\x70\x00\x65\x00\x72\x00\x76\x00\ +\x6c\x00\x61\x00\x6b\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\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\x4a\x00\x56\x00\x6f\x00\x6c\x00\x74\x00\x6f\x00\x6f\x00\ +\x69\x00\x74\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x6c\x00\ +\x75\x00\x69\x00\x74\x00\x20\x00\x64\x00\x65\x00\x20\x00\x68\x00\ +\x75\x00\x69\x00\x64\x00\x69\x00\x67\x00\x65\x00\x20\x00\x6c\x00\ +\x69\x00\x6a\x00\x6e\x00\x20\x00\x28\x00\x43\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x28\x46\x69\x6e\x69\x73\x68\x65\x73\x20\ +\x61\x6e\x64\x20\x63\x6c\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x63\ +\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\x20\x28\x43\x29\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x58\x00\ +\x45\x00\x69\x00\x6e\x00\x64\x00\x69\x00\x67\x00\x74\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x68\x00\x75\x00\x69\x00\x64\x00\x69\x00\ +\x67\x00\x65\x00\x20\x00\x74\x00\x65\x00\x6b\x00\x65\x00\x6e\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x62\x00\ +\x65\x00\x77\x00\x65\x00\x72\x00\x6b\x00\x69\x00\x6e\x00\x67\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\x18\x00\x54\x00\x65\x00\x6b\x00\x65\x00\x6e\ +\x00\x67\x00\x72\x00\x6f\x00\x6f\x00\x74\x00\x74\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\ +\x70\x00\x31\x00\x20\x00\x47\x00\x65\x00\x73\x00\x6c\x00\x6f\x00\ +\x74\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x63\x00\x68\x00\x65\x00\ +\x74\x00\x73\x00\x2d\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x67\x00\x65\x00\x76\x00\x6f\x00\x6e\x00\x64\x00\ +\x65\x00\x6e\x00\x3a\x00\x20\x00\x6d\x00\x61\x00\x61\x00\x6b\x00\ +\x20\x00\x65\x00\x72\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\ +\x76\x00\x6c\x00\x61\x00\x6b\x00\x20\x00\x76\x00\x61\x00\x6e\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\x52\x00\ +\x31\x00\x20\x00\x76\x00\x6c\x00\x61\x00\x6b\x00\x20\x00\x67\x00\ +\x65\x00\x76\x00\x6f\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x3a\x00\ +\x20\x00\x75\x00\x69\x00\x74\x00\x70\x00\x61\x00\x6b\x00\x6b\x00\ +\x65\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x64\x00\x72\x00\x61\x00\x64\x00\x65\x00\x6e\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\x72\x00\x31\ +\x00\x20\x00\x4e\x00\x69\x00\x65\x00\x74\x00\x2d\x00\x70\x00\x61\ +\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x73\ +\x00\x63\x00\x68\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x20\x00\x67\x00\x65\x00\x76\x00\x6f\x00\x6e\ +\x00\x64\x00\x65\x00\x6e\x00\x3a\x00\x20\x00\x44\x00\x72\x00\x61\ +\x00\x66\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x65\x00\x6e\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\x44\x00\x31\x00\x20\x00\x6f\x00\ +\x70\x00\x65\x00\x6e\x00\x20\x00\x64\x00\x72\x00\x61\x00\x61\x00\ +\x64\x00\x20\x00\x47\x00\x65\x00\x76\x00\x6f\x00\x6e\x00\x64\x00\ +\x65\x00\x6e\x00\x3a\x00\x20\x00\x73\x00\x6c\x00\x75\x00\x69\x00\ +\x74\x00\x65\x00\x6e\x00\x20\x00\x68\x00\x65\x00\x6d\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\x76\x00\x31\x00\x20\x00\x50\x00\x61\x00\x72\x00\ +\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x73\x00\x63\x00\ +\x68\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x67\x00\x65\x00\x76\x00\x6f\x00\x6e\x00\x64\x00\ +\x65\x00\x6e\x00\x3a\x00\x20\x00\x62\x00\x72\x00\x65\x00\x65\x00\ +\x6b\x00\x20\x00\x64\x00\x65\x00\x20\x00\x61\x00\x66\x00\x68\x00\ +\x61\x00\x6e\x00\x6b\x00\x65\x00\x6c\x00\x69\x00\x6a\x00\x6b\x00\ +\x68\x00\x65\x00\x64\x00\x65\x00\x6e\x00\x20\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x35\x46\x6f\x75\x6e\x64\x20\x31\x20\x70\x61\x72\ +\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\ +\x62\x72\x65\x61\x6b\x69\x6e\x67\x20\x69\x74\x73\x20\x64\x65\x70\ +\x65\x6e\x64\x65\x6e\x63\x69\x65\x73\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5c\x00\x31\x00\x20\x00\x53\ +\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x65\x00\x2d\x00\x67\x00\x65\ +\x00\x6c\x00\x69\x00\x6a\x00\x6b\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x20\x00\x67\x00\x65\x00\x76\x00\x6f\ +\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x3a\x00\x20\x00\x73\x00\x6f\ +\x00\x6c\x00\x69\x00\x64\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x6b\ +\x00\x65\x00\x6e\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\x42\x00\x32\x00\ +\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x65\x00\ +\x6e\x00\x20\x00\x67\x00\x65\x00\x76\x00\x6f\x00\x6e\x00\x64\x00\ +\x65\x00\x6e\x00\x3a\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\ +\x6d\x00\x65\x00\x6c\x00\x74\x00\x20\x00\x7a\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\x4a\x00\x32\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x67\x00\x65\ +\x00\x76\x00\x6f\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x3a\x00\x20\ +\x00\x7a\x00\x61\x00\x6c\x00\x20\x00\x7a\x00\x65\x00\x20\x00\x61\ +\x00\x66\x00\x74\x00\x72\x00\x65\x00\x6b\x00\x6b\x00\x65\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x46\x6f\x75\x6e\x64\x20\ +\x32\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x73\x75\x62\x74\x72\ +\x61\x63\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x47\x00\x65\ +\x00\x73\x00\x6c\x00\x6f\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x64\ +\x00\x72\x00\x61\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x67\x00\x65\ +\x00\x76\x00\x6f\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x3a\x00\x20\ +\x00\x6d\x00\x61\x00\x61\x00\x6b\x00\x20\x00\x76\x00\x6c\x00\x61\ +\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x46\x6f\x75\x6e\ +\x64\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\x69\x72\x65\x73\x3a\x20\ +\x6d\x61\x6b\x69\x6e\x67\x20\x66\x61\x63\x65\x73\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x70\x00\x47\x00\ +\x72\x00\x6f\x00\x65\x00\x70\x00\x65\x00\x6e\x00\x20\x00\x67\x00\ +\x65\x00\x76\x00\x6f\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x3a\x00\ +\x20\x00\x73\x00\x6c\x00\x75\x00\x69\x00\x74\x00\x65\x00\x6e\x00\ +\x20\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x67\x00\x65\x00\ +\x6f\x00\x70\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\ +\x62\x00\x69\x00\x6e\x00\x6e\x00\x65\x00\x6e\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\x52\x00\x47\x00\x65\x00\x76\x00\x6f\x00\x6e\x00\ +\x64\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x65\x00\x74\x00\ +\x20\x00\x63\x00\x75\x00\x72\x00\x76\x00\x65\x00\x6e\x00\x3a\x00\ +\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\x6d\x00\x65\x00\x6c\x00\ +\x74\x00\x65\x00\x6e\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\x41\ +\x00\x6c\x00\x6c\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x64\x00\x72\ +\x00\x61\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x67\x00\x65\x00\x76\ +\x00\x6f\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x3a\x00\x20\x00\x75\ +\x00\x69\x00\x74\x00\x70\x00\x61\x00\x6b\x00\x6b\x00\x65\x00\x6e\ +\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x68\x00\x75\x00\x6e\ +\x00\x20\x00\x72\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x6e\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\ +\x56\x00\x56\x00\x65\x00\x72\x00\x73\x00\x63\x00\x68\x00\x69\x00\ +\x6c\x00\x6c\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x72\x00\ +\x61\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x67\x00\x65\x00\ +\x76\x00\x6f\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x3a\x00\x20\x00\ +\x64\x00\x72\x00\x61\x00\x61\x00\x64\x00\x20\x00\x6d\x00\x61\x00\ +\x6b\x00\x65\x00\x6e\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\x54\x00\x56\x00\x65\x00\x72\x00\x73\x00\x63\x00\x68\x00\x69\ +\x00\x6c\x00\x6c\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x76\ +\x00\x6c\x00\x61\x00\x6b\x00\x6b\x00\x65\x00\x6e\x00\x20\x00\x67\ +\x00\x65\x00\x76\x00\x6f\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x3a\ +\x00\x20\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x73\x00\x20\ +\x00\x7a\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\x7a\x00\x56\x00\x65\x00\x72\x00\x73\x00\x63\x00\x68\ +\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\ +\x00\x6e\x00\x69\x00\x65\x00\x74\x00\x2d\x00\x76\x00\x65\x00\x72\ +\x00\x62\x00\x6f\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x72\ +\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x67\x00\x65\ +\x00\x76\x00\x6f\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x3a\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x75\x00\x6e\x00\x64\ +\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x65\x00\x6e\x00\x20\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x33\x46\x6f\x75\x6e\x64\x20\x73\x65\ +\x76\x65\x72\x61\x6c\x20\x6e\x6f\x6e\x2d\x63\x6f\x6e\x6e\x65\x63\ +\x74\x65\x64\x20\x65\x64\x67\x65\x73\x3a\x20\x6d\x61\x6b\x69\x6e\ +\x67\x20\x63\x6f\x6d\x70\x6f\x75\x6e\x64\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x84\x00\x56\x00\x65\x00\ +\x72\x00\x73\x00\x63\x00\x68\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\ +\x6e\x00\x64\x00\x65\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x74\x00\ +\x2d\x00\x62\x00\x65\x00\x68\x00\x61\x00\x6e\x00\x64\x00\x65\x00\ +\x6c\x00\x62\x00\x61\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x67\x00\ +\x65\x00\x76\x00\x6f\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x3a\x00\ +\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x75\x00\x6e\x00\ +\x64\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x65\x00\x6e\x00\x20\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x35\x46\x6f\x75\x6e\x64\x20\x73\ +\x65\x76\x65\x72\x61\x6c\x20\x6e\x6f\x6e\x2d\x74\x72\x65\x61\x74\ +\x61\x62\x6c\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x6d\x61\ +\x6b\x69\x6e\x67\x20\x63\x6f\x6d\x70\x6f\x75\x6e\x64\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa6\x00\x56\ +\x00\x65\x00\x72\x00\x73\x00\x63\x00\x68\x00\x69\x00\x6c\x00\x6c\ +\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x66\ +\x00\x20\x00\x6f\x00\x70\x00\x70\x00\x65\x00\x72\x00\x76\x00\x6c\ +\x00\x61\x00\x6b\x00\x6b\x00\x65\x00\x6e\x00\x20\x00\x67\x00\x65\ +\x00\x76\x00\x6f\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x3a\x00\x20\ +\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\ +\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x73\x00\x63\x00\x68\ +\x00\x65\x00\x20\x00\x6f\x00\x70\x00\x70\x00\x65\x00\x72\x00\x76\ +\x00\x6c\x00\x61\x00\x6b\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x65\ +\x00\x6e\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\x5a\x00\x56\x00\x65\x00\x72\x00\x73\x00\ +\x63\x00\x68\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x6e\x00\x64\x00\ +\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x65\x00\x6e\x00\x20\x00\x67\x00\x65\x00\x76\x00\x6f\x00\x6e\x00\ +\x64\x00\x65\x00\x6e\x00\x3a\x00\x20\x00\x76\x00\x65\x00\x72\x00\ +\x73\x00\x6d\x00\x65\x00\x6c\x00\x74\x00\x20\x00\x7a\x00\x65\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\x7c\x00\x56\ +\x00\x65\x00\x72\x00\x73\x00\x63\x00\x68\x00\x69\x00\x6c\x00\x6c\ +\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x67\x00\x65\ +\x00\x76\x00\x6f\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x3a\x00\x20\ +\x00\x64\x00\x65\x00\x7a\x00\x65\x00\x20\x00\x61\x00\x66\x00\x74\ +\x00\x72\x00\x65\x00\x6b\x00\x6b\x00\x65\x00\x6e\x00\x20\x00\x76\ +\x00\x61\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\x65\x00\x65\ +\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\xcc\x00\ +\x49\x00\x6e\x00\x64\x00\x69\x00\x65\x00\x6e\x00\x20\x00\x69\x00\ +\x6e\x00\x67\x00\x65\x00\x73\x00\x63\x00\x68\x00\x61\x00\x6b\x00\ +\x65\x00\x6c\x00\x64\x00\x2c\x00\x20\x00\x7a\x00\x61\x00\x6c\x00\ +\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x4f\x00\x43\x00\x43\x00\ +\x2d\x00\x73\x00\x74\x00\x69\x00\x6a\x00\x6c\x00\x20\x00\x76\x00\ +\x65\x00\x72\x00\x73\x00\x63\x00\x68\x00\x75\x00\x69\x00\x76\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x64\x00\ +\x65\x00\x6e\x00\x20\x00\x75\x00\x69\x00\x74\x00\x67\x00\x65\x00\ +\x76\x00\x6f\x00\x65\x00\x72\x00\x64\x00\x20\x00\x69\x00\x6e\x00\ +\x20\x00\x70\x00\x6c\x00\x61\x00\x61\x00\x74\x00\x73\x00\x20\x00\ +\x76\x00\x61\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6b\x00\ +\x6c\x00\x61\x00\x73\x00\x73\x00\x69\x00\x65\x00\x6b\x00\x65\x00\ +\x20\x00\x73\x00\x74\x00\x69\x00\x6a\x00\x6c\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\xcc\x00\x49\x00\x6e\x00\x64\x00\x69\x00\x65\x00\x6e\ +\x00\x20\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x73\x00\x63\x00\x68\ +\x00\x61\x00\x6b\x00\x65\x00\x6c\x00\x64\x00\x2c\x00\x20\x00\x7a\ +\x00\x61\x00\x6c\x00\x20\x00\x64\x00\x65\x00\x20\x00\x68\x00\x75\ +\x00\x69\x00\x64\x00\x69\x00\x67\x00\x65\x00\x20\x00\x6f\x00\x70\ +\x00\x64\x00\x72\x00\x61\x00\x63\x00\x68\x00\x74\x00\x20\x00\x6e\ +\x00\x69\x00\x65\x00\x74\x00\x20\x00\x62\x00\x65\x00\xeb\x00\x69\ +\x00\x6e\x00\x64\x00\x69\x00\x67\x00\x65\x00\x6e\x00\x20\x00\x74\ +\x00\x6f\x00\x74\x00\x64\x00\x61\x00\x74\x00\x20\x00\x75\x00\x20\ +\x00\x6f\x00\x70\x00\x6e\x00\x69\x00\x65\x00\x75\x00\x77\x00\x20\ +\x00\x6f\x00\x70\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x2d\x00\x74\x00\x6f\ +\x00\x65\x00\x74\x00\x73\x00\x20\x00\x64\x00\x72\x00\x75\x00\x6b\ +\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\xa2\x00\x49\x00\x6e\x00\x64\x00\x69\x00\x65\ +\x00\x6e\x00\x20\x00\x61\x00\x61\x00\x6e\x00\x67\x00\x65\x00\x76\ +\x00\x69\x00\x6e\x00\x6b\x00\x74\x00\x2c\x00\x20\x00\x7a\x00\x75\ +\x00\x6c\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x77\x00\x6f\ +\x00\x72\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x67\x00\x65\x00\x6b\ +\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x65\x00\x72\x00\x64\x00\x20\ +\x00\x69\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x61\x00\x74\ +\x00\x73\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x76\x00\x65\ +\x00\x72\x00\x70\x00\x6c\x00\x61\x00\x61\x00\x74\x00\x73\x00\x74\ +\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\x2e\x00\x47\x00\x65\x00\xef\x00\ +\x6e\x00\x73\x00\x74\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x65\x00\ +\x72\x00\x64\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x63\x00\x72\x00\ +\x6f\x00\x20\x00\x27\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\ +\x34\x00\x4c\x00\x61\x00\x61\x00\x74\x00\x73\x00\x74\x00\x65\x00\ +\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x20\x00\x69\x00\x73\x00\ +\x20\x00\x76\x00\x65\x00\x72\x00\x77\x00\x69\x00\x6a\x00\x64\x00\ +\x65\x00\x72\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x4c\ +\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x68\x61\x73\x20\x62\x65\ +\x65\x6e\x20\x72\x65\x6d\x6f\x76\x65\x64\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x00\x4c\x00\x69\x00\ +\x6a\x00\x6e\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\ +\x12\x00\x4c\x00\x69\x00\x6a\x00\x6e\x00\x6b\x00\x6c\x00\x65\x00\ +\x75\x00\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\x12\x00\x4c\x00\x69\x00\x6a\x00\x6e\x00\ +\x64\x00\x69\x00\x6b\x00\x74\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\x16\x00\x56\x00\ +\x65\x00\x72\x00\x70\x00\x6c\x00\x61\x00\x61\x00\x74\x00\x73\x00\ +\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4d\x6f\x76\ +\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x08\x00\x47\x00\x65\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\x1a\x00\x41\x00\x61\x00\x6e\x00\x74\x00\ +\x61\x00\x6c\x00\x20\x00\x7a\x00\x69\x00\x6a\x00\x64\x00\x65\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x4e\x75\x6d\x62\x65\ +\x72\x20\x6f\x66\x20\x73\x69\x64\x65\x73\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x56\x00\x65\x00\x72\ +\x00\x73\x00\x63\x00\x68\x00\x75\x00\x69\x00\x76\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\x64\x00\x56\x00\x65\x00\x72\x00\x73\x00\x63\x00\x68\x00\x75\ +\x00\x69\x00\x76\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x77\x00\x65\ +\x00\x72\x00\x6b\x00\x74\x00\x20\x00\x73\x00\x6c\x00\x65\x00\x63\ +\x00\x68\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x70\x00\x20\x00\xe9\ +\x00\xe9\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\ +\x00\x74\x00\x20\x00\x70\x00\x65\x00\x72\x00\x20\x00\x6b\x00\x65\ +\x00\x65\x00\x72\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\x16\x00\x4b\x00\x69\x00\x65\ +\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x5c\x00\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\ +\x65\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x6c\x00\x61\x00\x6b\x00\ +\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x20\x00\x68\x00\x65\x00\ +\x74\x00\x20\x00\x74\x00\x65\x00\x20\x00\x64\x00\x65\x00\x66\x00\ +\x69\x00\x6e\x00\x69\x00\xeb\x00\x72\x00\x65\x00\x6e\x00\x20\x00\ +\x74\x00\x65\x00\x6b\x00\x65\x00\x6e\x00\x76\x00\x6c\x00\x61\x00\ +\x6b\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\x20\x00\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x64\x00\ +\x69\x00\x61\x00\x66\x00\x72\x00\x61\x00\x67\x00\x6d\x00\x61\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\x20\x00\x4b\x00\x69\ +\x00\x65\x00\x73\x00\x20\x00\x62\x00\x61\x00\x73\x00\x69\x00\x73\ +\x00\x68\x00\x6f\x00\x65\x00\x6b\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\x4b\x00\x69\x00\x65\x00\x73\x00\ +\x20\x00\x62\x00\x61\x00\x73\x00\x69\x00\x73\x00\x70\x00\x75\x00\ +\x6e\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\x22\x00\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x6d\x00\x69\ +\x00\x64\x00\x64\x00\x65\x00\x6c\x00\x70\x00\x75\x00\x6e\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\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x61\x00\x66\x00\ +\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x3a\x00\x0a\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\x26\x00\x4b\x00\x69\x00\x65\x00\x73\x00\x20\ +\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x64\ +\x00\x70\x00\x75\x00\x6e\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\x24\x00\x4b\x00\x69\x00\x65\x00\x73\x00\x20\ +\x00\x65\x00\x65\x00\x72\x00\x73\x00\x74\x00\x65\x00\x20\x00\x70\ +\x00\x75\x00\x6e\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\x1c\x00\x4b\x00\x69\x00\x65\x00\x73\x00\x20\ +\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x74\x00\x69\x00\x65\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\ +\x60\x00\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x76\x00\x6f\x00\ +\x6c\x00\x67\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x70\x00\ +\x75\x00\x6e\x00\x74\x00\x2c\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x65\x00\x69\x00\x6e\x00\x64\x00\x69\x00\x67\x00\x20\x00\x28\x00\ +\x46\x00\x29\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x53\x00\x6c\x00\ +\x75\x00\x69\x00\x74\x00\x20\x00\x28\x00\x43\x00\x29\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\x28\x00\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x76\ +\x00\x6f\x00\x6c\x00\x67\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\ +\x00\x70\x00\x75\x00\x6e\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\x40\x00\x4b\x00\x69\x00\x65\x00\x73\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x74\x00\x65\x00\x67\x00\x65\x00\ +\x6e\x00\x6f\x00\x76\x00\x65\x00\x72\x00\x6c\x00\x69\x00\x67\x00\ +\x67\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x70\x00\x75\x00\ +\x6e\x00\x74\x00\x3a\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\x1a\x00\x4b\x00\x69\x00\x65\x00\x73\x00\x20\ +\x00\x73\x00\x74\x00\x72\x00\x61\x00\x61\x00\x6c\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\x24\x00\x4b\x00\x69\x00\x65\x00\x73\x00\ +\x20\x00\x72\x00\x6f\x00\x74\x00\x61\x00\x74\x00\x69\x00\x65\x00\ +\x68\x00\x6f\x00\x65\x00\x6b\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\x20\x00\x4b\x00\x69\x00\x65\ +\x00\x73\x00\x20\x00\x64\x00\x72\x00\x61\x00\x61\x00\x69\x00\x70\ +\x00\x75\x00\x6e\x00\x74\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\x26\x00\x4b\x00\x69\x00\x65\ +\x00\x73\x00\x20\x00\x73\x00\x63\x00\x68\x00\x61\x00\x61\x00\x6c\ +\x00\x66\x00\x61\x00\x63\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\x20\x00\x4b\x00\ +\x69\x00\x65\x00\x73\x00\x20\x00\x62\x00\x65\x00\x67\x00\x69\x00\ +\x6e\x00\x68\x00\x6f\x00\x65\x00\x6b\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\x20\x00\x4b\x00\x69\x00\x65\x00\ +\x73\x00\x20\x00\x73\x00\x74\x00\x61\x00\x72\x00\x74\x00\x70\x00\ +\x75\x00\x6e\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\x08\x00\x50\x00\x75\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\x53\x00\x74\ +\x00\x72\x00\x61\x00\x61\x00\x6c\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\x2a\x00\x53\x00\x74\x00\x72\x00\x61\ +\x00\x61\x00\x6c\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x63\x00\x69\x00\x72\x00\x6b\x00\x65\x00\x6c\ +\x00\x20\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\x52\x00\x50\x00\x75\ +\x00\x6e\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x6e\ +\x00\x20\x00\x68\x00\x65\x00\x74\x00\x20\x00\x68\x00\x75\x00\x69\ +\x00\x64\x00\x69\x00\x67\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x63\x00\x74\x00\x20\x00\x76\x00\x65\x00\x72\x00\x77\ +\x00\x69\x00\x6a\x00\x64\x00\x65\x00\x72\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x25\x52\x65\x6d\x6f\x76\x65\x20\x70\ +\x6f\x69\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x63\ +\x75\x72\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x44\x00\ +\x72\x00\x61\x00\x61\x00\x69\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x06\x52\x6f\x74\x61\x74\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x53\x00\x63\x00\ +\x68\x00\x61\x00\x6c\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x05\x53\x63\x61\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x53\x00\x65\x00\x6c\x00\x65\ +\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x20\x00\x76\x00\x6c\ +\x00\x61\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x65\ +\x6c\x65\x63\x74\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x53\x00\x65\x00\x6c\ +\x00\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x20\x00\x58\ +\x00\x59\x00\x2d\x00\x76\x00\x6c\x00\x61\x00\x6b\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x58\x59\x20\ +\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x22\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x65\x00\x72\x00\x20\x00\x58\x00\x59\x00\x2d\x00\ +\x76\x00\x6c\x00\x61\x00\x6b\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\x22\ +\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x65\ +\x00\x72\x00\x20\x00\x59\x00\x5a\x00\x20\x00\x76\x00\x6c\x00\x61\ +\x00\x6b\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\x46\x00\x53\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x20\x00\ +\x65\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x65\x00\x20\x00\x76\x00\ +\x65\x00\x72\x00\x70\x00\x6c\x00\x61\x00\x61\x00\x74\x00\x73\x00\ +\x65\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x4c\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\ +\x00\x65\x00\x65\x00\x72\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x6f\ +\x00\x6d\x00\x20\x00\x74\x00\x65\x00\x20\x00\x76\x00\x65\x00\x72\ +\x00\x73\x00\x63\x00\x68\x00\x75\x00\x69\x00\x76\x00\x65\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x53\x65\x6c\x65\x63\x74\ +\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x6f\x66\ +\x66\x73\x65\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x3e\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x65\x00\x72\x00\x20\x00\x65\x00\x65\x00\x6e\x00\ +\x20\x00\x74\x00\x65\x00\x20\x00\x64\x00\x72\x00\x61\x00\x61\x00\ +\x69\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x63\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x46\x00\x53\x00\x65\x00\x6c\x00\x65\ +\x00\x63\x00\x74\x00\x65\x00\x65\x00\x72\x00\x20\x00\x65\x00\x65\ +\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x65\x00\x20\x00\x73\ +\x00\x63\x00\x68\x00\x61\x00\x6c\x00\x65\x00\x6e\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\x68\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\ +\x00\x65\x00\x72\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x6f\x00\x6d\ +\x00\x20\x00\x74\x00\x65\x00\x20\x00\x74\x00\x72\x00\x69\x00\x6d\ +\x00\x6d\x00\x65\x00\x6e\x00\x20\x00\x2f\x00\x20\x00\x75\x00\x69\ +\x00\x74\x00\x20\x00\x74\x00\x65\x00\x20\x00\x62\x00\x72\x00\x65\ +\x00\x69\x00\x64\x00\x65\x00\x6e\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\x4c\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\ +\x00\x65\x00\x65\x00\x72\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x20\x00\x6f\ +\x00\x6d\x00\x20\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x70\x00\x77\ +\x00\x61\x00\x61\x00\x72\x00\x64\x00\x65\x00\x72\x00\x65\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x53\x65\x6c\x65\x63\x74\ +\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x75\x70\ +\x67\x72\x61\x64\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x68\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\ +\x00\x74\x00\x65\x00\x65\x00\x72\x00\x20\x00\x65\x00\x65\x00\x6e\ +\x00\x20\x00\x76\x00\x6c\x00\x61\x00\x6b\x00\x20\x00\x6c\x00\x6f\ +\x00\x6f\x00\x64\x00\x72\x00\x65\x00\x63\x00\x68\x00\x74\x00\x20\ +\x00\x6f\x00\x70\x00\x20\x00\x68\x00\x65\x00\x74\x00\x20\x00\x68\ +\x00\x75\x00\x69\x00\x64\x00\x69\x00\x67\x00\x65\x00\x20\x00\x61\ +\x00\x61\x00\x6e\x00\x7a\x00\x69\x00\x63\x00\x68\x00\x74\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\x26\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\ +\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\x00\x67\x00\x65\x00\x73\ +\x00\x6c\x00\x6f\x00\x74\x00\x65\x00\x6e\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\x12\x00\x53\x00\ +\x74\x00\x61\x00\x72\x00\x74\x00\x68\x00\x6f\x00\x65\x00\x6b\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\x44\x00\x69\x00\x74\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x74\x00\x79\x00\x70\x00\x65\ +\x00\x20\x00\x6b\x00\x61\x00\x6e\x00\x20\x00\x6e\x00\x69\x00\x65\ +\x00\x74\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x64\x00\x65\x00\x6e\ +\x00\x20\x00\x62\x00\x65\x00\x77\x00\x65\x00\x72\x00\x6b\x00\x74\ +\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\x42\x00\x43\x00\ +\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\ +\x69\x00\x65\x00\x2d\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x73\x00\ +\x20\x00\x69\x00\x6e\x00\x2f\x00\x75\x00\x69\x00\x74\x00\x73\x00\ +\x63\x00\x68\x00\x61\x00\x6b\x00\x65\x00\x6c\x00\x65\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x19\x54\x6f\x67\x67\x6c\x65\x73\ +\x20\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\x6f\ +\x64\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x08\x00\x54\x00\x72\x00\x69\x00\x6d\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x54\x72\x69\x6d\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x4e\x00\x4c\x00\x61\x00\x61\x00\x74\ +\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\x6f\x00\x6e\x00\x67\x00\x65\ +\x00\x64\x00\x61\x00\x61\x00\x6e\x00\x20\x00\x6d\x00\x61\x00\x6b\ +\x00\x65\x00\x6e\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\x10\x00\x41\ +\x00\x61\x00\x6e\x00\x7a\x00\x69\x00\x63\x00\x68\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\xa6\x00\x56\x00\x65\ +\x00\x65\x00\x67\x00\x74\x00\x20\x00\x64\x00\x65\x00\x20\x00\x62\ +\x00\x65\x00\x73\x00\x74\x00\x61\x00\x61\x00\x6e\x00\x64\x00\x65\ +\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x64\ +\x00\x65\x00\x7a\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6a\x00\x6e\ +\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x62\x00\x65\x00\x67\x00\x69\ +\x00\x6e\x00\x74\x00\x20\x00\x77\x00\x65\x00\x65\x00\x72\x00\x20\ +\x00\x76\x00\x61\x00\x6e\x00\x61\x00\x66\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x6c\x00\x61\x00\x61\x00\x74\x00\x73\x00\x74\x00\x65\ +\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x20\x00\x28\x00\x57\ +\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x57\x69\x70\x65\ +\x73\x20\x74\x68\x65\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x73\ +\x65\x67\x6d\x65\x6e\x74\x73\x20\x6f\x66\x20\x74\x68\x69\x73\x20\ +\x6c\x69\x6e\x65\x20\x61\x6e\x64\x20\x73\x74\x61\x72\x74\x73\x20\ +\x61\x67\x61\x69\x6e\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x6c\ +\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x28\x57\x29\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\x44\x00\ +\x72\x00\x61\x00\x61\x00\x64\x00\x20\x00\x69\x00\x73\x00\x20\x00\ +\x67\x00\x65\x00\x73\x00\x6c\x00\x6f\x00\x74\x00\x65\x00\x6e\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\x1e\ +\x00\x44\x00\x72\x00\x61\x00\x61\x00\x64\x00\x77\x00\x65\x00\x72\ +\x00\x6b\x00\x74\x00\x75\x00\x69\x00\x67\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\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\x44\x00\ +\x58\x00\x2d\x00\x63\x00\x6f\x00\xf6\x00\x72\x00\x64\x00\x69\x00\ +\x6e\x00\x61\x00\x61\x00\x74\x00\x20\x00\x76\x00\x61\x00\x6e\x00\ +\x20\x00\x68\x00\x65\x00\x74\x00\x20\x00\x76\x00\x6f\x00\x6c\x00\ +\x67\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x70\x00\x75\x00\ +\x6e\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\x44\x00\x59\x00\x2d\x00\x63\x00\x6f\x00\xf6\x00\x72\ +\x00\x64\x00\x69\x00\x6e\x00\x61\x00\x61\x00\x74\x00\x20\x00\x76\ +\x00\x61\x00\x6e\x00\x20\x00\x68\x00\x65\x00\x74\x00\x20\x00\x76\ +\x00\x6f\x00\x6c\x00\x67\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\ +\x00\x70\x00\x75\x00\x6e\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\x44\x00\x5a\x00\x2d\x00\x63\x00\ +\x6f\x00\xf6\x00\x72\x00\x64\x00\x69\x00\x6e\x00\x61\x00\x61\x00\ +\x74\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x68\x00\x65\x00\ +\x74\x00\x20\x00\x76\x00\x6f\x00\x6c\x00\x67\x00\x65\x00\x6e\x00\ +\x64\x00\x65\x00\x20\x00\x70\x00\x75\x00\x6e\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\ +\x22\x00\x61\x00\x63\x00\x74\x00\x69\x00\x65\x00\x76\x00\x65\x00\ +\x20\x00\x6f\x00\x70\x00\x64\x00\x72\x00\x61\x00\x63\x00\x68\x00\ +\x74\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\x28\x00\x6f\x00\x6e\ +\x00\x74\x00\x77\x00\x65\x00\x72\x00\x70\x00\x2d\x00\x6f\x00\x70\ +\x00\x64\x00\x72\x00\x61\x00\x63\x00\x68\x00\x74\x00\x62\x00\x61\ +\x00\x6c\x00\x6b\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\xcb\ \x3c\ \xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ @@ -18009,6553 +24288,24507 @@ qt_resource_data = "\ \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\xac\xed\ +\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\xa0\xc4\x00\x00\x00\x59\ +\x00\x00\xa1\x85\x00\x00\x00\x5a\x00\x00\xa2\x26\x00\x00\x05\xd9\ +\x00\x00\xa1\x45\x00\x00\x05\xda\x00\x00\xa1\x65\x00\x00\x05\xea\ +\x00\x00\xa2\x06\x00\x00\x07\x78\x00\x00\x6f\x00\x00\x00\x48\x83\ +\x00\x00\x03\x4f\x00\x00\x48\x83\x00\x00\x75\x34\x00\x00\x68\x34\ +\x00\x00\x69\x6b\x00\x04\xa6\x79\x00\x00\x78\x91\x00\x04\xbb\x04\ +\x00\x00\x0b\xf4\x00\x04\xbb\x04\x00\x00\x7c\xe4\x00\x05\x30\x45\ +\x00\x00\x0e\x53\x00\x05\x30\x45\x00\x00\x8e\xbd\x00\x05\x46\xc5\ +\x00\x00\x0e\x80\x00\x05\x46\xc5\x00\x00\x8f\x53\x00\x05\x56\x45\ +\x00\x00\x47\x0d\x00\x05\x56\x45\x00\x00\x8f\x7d\x00\x05\xac\xf4\ +\x00\x00\x19\xea\x00\x05\xb8\xfd\x00\x00\x9e\x6a\x00\x05\xcf\xc7\ +\x00\x00\x9f\x0c\x00\x05\xe0\x85\x00\x00\x23\xa7\x00\x06\xab\x8c\ +\x00\x00\x6a\xe1\x00\x10\x84\x49\x00\x00\x52\x79\x00\x12\x05\xba\ +\x00\x00\x9b\x02\x00\x16\xc6\xda\x00\x00\x83\x50\x00\x2a\xa6\x79\ +\x00\x00\x71\x92\x00\x2b\xc4\xaf\x00\x00\x72\x6c\x00\x2b\xe0\x65\ +\x00\x00\x72\x97\x00\x39\xdf\x33\x00\x00\x35\x28\x00\x3d\xa1\x19\ +\x00\x00\x76\x5e\x00\x3e\x93\x83\x00\x00\x36\x5e\x00\x48\x8f\x7c\ +\x00\x00\x26\x55\x00\x4b\x66\x35\x00\x00\x32\x4c\x00\x4b\x66\x37\ +\x00\x00\x32\x91\x00\x4b\x66\x39\x00\x00\x32\xd6\x00\x4b\x87\xd4\ +\x00\x00\x7c\x15\x00\x57\x60\x54\x00\x00\x97\x31\x00\x58\xfd\xf4\ +\x00\x00\x4a\x6c\x00\x59\x98\x25\x00\x00\x14\xec\x00\x59\x98\x25\ +\x00\x00\x98\x83\x00\x6a\x58\x9a\x00\x00\x91\x89\x00\x79\xef\xd4\ +\x00\x00\x6f\x38\x00\x7e\x7f\x0e\x00\x00\x66\x26\x00\x8a\x23\x95\ +\x00\x00\x29\xe5\x00\x8a\x23\x97\x00\x00\x2a\x2f\x00\x8a\x23\x99\ +\x00\x00\x2a\x79\x00\x91\xbc\xe9\x00\x00\x0e\xaf\x00\xa6\x37\x3f\ +\x00\x00\x28\xba\x00\xaa\x80\x25\x00\x00\x7b\x55\x00\xc6\xe3\x6e\ +\x00\x00\x25\x01\x00\xcb\xa8\x14\x00\x00\x6e\x16\x00\xfc\x00\xca\ +\x00\x00\x8a\x44\x01\x21\xd6\x39\x00\x00\x51\x68\x01\x22\xb4\xf9\ +\x00\x00\x15\x1b\x01\x2f\x8e\x7e\x00\x00\x5c\xae\x01\x48\xfe\xa3\ +\x00\x00\x36\xd4\x01\x53\xf3\xaa\x00\x00\x80\x48\x01\x56\x16\x4a\ +\x00\x00\x89\xc5\x01\x67\x0d\x8a\x00\x00\x85\x0d\x01\x69\x11\x7a\ +\x00\x00\x95\x4c\x01\x82\x39\x0a\x00\x00\x92\x25\x01\x8b\x68\x75\ +\x00\x00\x9e\x07\x01\xa1\x7f\x63\x00\x00\x1c\x67\x01\xc1\xd9\xde\ +\x00\x00\x54\xa2\x01\xd2\x8f\xd3\x00\x00\x4b\x1b\x01\xdf\x11\x43\ +\x00\x00\x05\xbe\x01\xe2\xf4\x5a\x00\x00\x9a\x97\x01\xfc\xae\xd3\ +\x00\x00\x6f\x79\x02\x05\xbe\x25\x00\x00\x7a\x0c\x02\x46\x58\x0a\ +\x00\x00\x94\xa6\x02\x65\xad\x62\x00\x00\xa2\xf0\x02\x6e\x07\xe2\ +\x00\x00\x4d\x67\x02\x76\x24\x13\x00\x00\x3a\xfd\x02\x7d\xe0\x55\ +\x00\x00\x4e\x01\x02\x94\x46\x1a\x00\x00\x91\xda\x02\xa7\x2c\x15\ +\x00\x00\x04\x54\x02\xaa\x36\x95\x00\x00\x71\x31\x02\xb1\xf0\xba\ +\x00\x00\x86\xda\x02\xbf\xaa\x8e\x00\x00\x39\x74\x02\xc0\x66\xf2\ +\x00\x00\x58\xc4\x02\xc8\x3f\xf5\x00\x00\x63\xf9\x02\xd9\xa4\xb9\ +\x00\x00\x69\x1e\x02\xdb\x1a\x94\x00\x00\x07\x61\x03\x01\x84\xc4\ +\x00\x00\x8b\x05\x03\x12\x97\x6a\x00\x00\x89\x04\x03\x1a\x14\x14\ +\x00\x00\x30\x06\x03\x1a\x16\x59\x00\x00\x4e\xa1\x03\x2f\x1a\x6a\ +\x00\x00\x73\x14\x03\x7e\xca\xb5\x00\x00\x42\x8a\x03\x88\x1f\xd4\ +\x00\x00\x43\x71\x03\x9e\x58\xa5\x00\x00\x00\x4a\x03\xb3\x9e\xfa\ +\x00\x00\x92\xbd\x03\xb5\xc8\x9a\x00\x00\x93\xfd\x03\xbd\xd4\xe4\ +\x00\x00\x73\xc1\x03\xc4\x3c\xf5\x00\x00\x76\x24\x03\xc5\xd5\x5e\ +\x00\x00\x09\x99\x03\xcb\x0d\xe5\x00\x00\x98\xac\x03\xdc\x0c\xd4\ +\x00\x00\x71\xee\x03\xf2\x70\x35\x00\x00\x2c\xd7\x03\xf2\xbd\x60\ +\x00\x00\x16\x6b\x03\xfb\x0f\x04\x00\x00\x2f\x9e\x04\x21\x23\x23\ +\x00\x00\x21\x1d\x04\x56\x06\x93\x00\x00\x2d\xc9\x04\x60\x7c\x15\ +\x00\x00\x97\x84\x04\x79\xef\x9a\x00\x00\x86\x4f\x04\x82\x77\xf4\ +\x00\x00\x4d\xb5\x04\x87\xf9\x9e\x00\x00\x8c\x1e\x04\x8c\xd6\xae\ +\x00\x00\x62\x30\x04\xa0\x8a\x25\x00\x00\x05\x8b\x04\xa0\x8a\x25\ +\x00\x00\x77\x8d\x04\xa4\x31\x5a\x00\x00\x8e\x4b\x04\xa8\xeb\x85\ +\x00\x00\x33\x1b\x04\xe1\x6e\xe3\x00\x00\x0a\x19\x04\xe4\x0f\x75\ +\x00\x00\x02\xed\x04\xeb\x41\xc3\x00\x00\x2d\x4c\x04\xef\xd9\xa8\ +\x00\x00\x49\xe6\x05\x03\x83\x95\x00\x00\x6b\x1f\x05\x05\xcb\x13\ +\x00\x00\x41\x5e\x05\x0f\xf2\x74\x00\x00\x90\xb2\x05\x1b\x10\x59\ +\x00\x00\x45\x18\x05\x2a\xe5\x97\x00\x00\x4b\xe1\x05\x44\x3b\x5f\ +\x00\x00\x6d\x1c\x05\x5c\xd9\xc4\x00\x00\x10\x00\x05\x5c\xd9\xc4\ +\x00\x00\x8f\xe4\x05\x63\xf6\x93\x00\x00\x4a\xad\x05\x65\xee\x65\ +\x00\x00\x7e\xd8\x05\x87\xb0\xc3\x00\x00\x97\x5a\x05\x96\xa8\xa5\ +\x00\x00\x13\x90\x05\x96\xa8\xa5\x00\x00\x98\x57\x05\xad\x4b\xc3\ +\x00\x00\x42\xe4\x05\xb9\x03\xc8\x00\x00\x1d\xd0\x05\xbd\x0c\xba\ +\x00\x00\x80\xff\x05\xbd\x8e\xde\x00\x00\x60\xa0\x05\xbe\x56\x93\ +\x00\x00\x49\x7a\x05\xc5\x50\x04\x00\x00\x0c\x27\x05\xe5\x8e\x2e\ +\x00\x00\x11\x72\x05\xfb\xdc\x83\x00\x00\x41\xbe\x06\x1e\xe6\xb5\ +\x00\x00\x9d\x4b\x06\x29\xee\xa9\x00\x00\x77\xb9\x06\x32\xe3\xe3\ +\x00\x00\x7c\x3e\x06\x57\x19\xf4\x00\x00\x00\x00\x06\x5a\xef\x15\ +\x00\x00\x71\x5d\x06\x5b\xd2\xb5\x00\x00\x3d\xf5\x06\x6c\x88\x8e\ +\x00\x00\x3f\x6f\x06\x74\x1d\x55\x00\x00\x54\x08\x06\x8b\x96\x44\ +\x00\x00\x0c\xe1\x06\x97\x58\xc9\x00\x00\x4f\x22\x06\xbc\x80\xa5\ +\x00\x00\x1d\x6d\x06\xc9\xb8\x05\x00\x00\x74\x53\x06\xe8\x05\x4e\ +\x00\x00\x06\xec\x06\xee\xaa\x57\x00\x00\x9c\x60\x06\xf0\xcb\x25\ +\x00\x00\x1b\x59\x06\xfa\xff\xc3\x00\x00\x42\x26\x06\xfc\x1a\x14\ +\x00\x00\x34\x31\x06\xfc\xa0\x8a\x00\x00\x90\xed\x07\x08\x90\xe5\ +\x00\x00\x2b\x56\x07\x0d\xb7\xf7\x00\x00\x38\xa5\x07\x0e\x86\x3e\ +\x00\x00\x1b\xbe\x07\x35\x68\x6e\x00\x00\x17\x7e\x07\x35\xe8\x9a\ +\x00\x00\x95\x8b\x07\x44\x41\x2a\x00\x00\x7f\xc3\x07\x4a\x1f\x63\ +\x00\x00\x02\x1a\x07\x4d\x73\x22\x00\x00\x8e\xe5\x07\x4e\xa6\xf2\ +\x00\x00\x7d\x3f\x07\x58\xcb\xe8\x00\x00\x8f\x1b\x07\x63\xfe\x0e\ +\x00\x00\x12\x6b\x07\x80\xc6\xb3\x00\x00\xa0\x8c\x07\x88\x72\x5a\ +\x00\x00\x75\x65\x07\xa3\xe4\x0e\x00\x00\x22\xb9\x07\xc1\xfc\x13\ +\x00\x00\x2e\x8e\x08\x27\xb4\xba\x00\x00\x93\xa2\x08\x32\xc4\xaa\ +\x00\x00\x96\x44\x08\x36\x74\x14\x00\x00\x24\xba\x08\x44\xb9\x83\ +\x00\x00\x34\xaa\x08\x49\xc9\x30\x00\x00\x16\xb1\x08\x61\x7c\xb3\ +\x00\x00\x1e\x03\x08\xa2\xca\x67\x00\x00\x4e\x53\x08\xa3\xe0\x33\ +\x00\x00\x78\xbd\x08\xb1\x15\x28\x00\x00\x2f\x35\x08\xb4\x04\x04\ +\x00\x00\x97\xc4\x08\xd0\x32\xf4\x00\x00\x7d\x12\x08\xd4\xcd\x69\ +\x00\x00\x7d\x6f\x08\xe1\x9b\xbe\x00\x00\x1a\x8b\x08\xe1\xc1\xfa\ +\x00\x00\x7f\x15\x08\xeb\x8d\x7a\x00\x00\xa0\x3b\x09\x20\xda\x24\ +\x00\x00\xa1\xa2\x09\x20\xda\xb4\x00\x00\xa2\x43\x09\x20\xda\xd4\ +\x00\x00\xa0\xe1\x09\x4d\x96\xd9\x00\x00\x25\x88\x09\x65\xda\x8a\ +\x00\x00\x82\xdd\x09\x68\x0d\x29\x00\x00\x8d\x26\x09\x71\x8d\x25\ +\x00\x00\x06\xa8\x09\x75\x23\x14\x00\x00\x72\xc2\x09\x76\xed\x34\ +\x00\x00\x65\x2a\x09\x86\xa6\x05\x00\x00\x23\xd2\x09\x8b\x23\xba\ +\x00\x00\x96\x93\x09\x9e\xfd\x7e\x00\x00\x65\x7e\x09\xb6\x2a\x63\ +\x00\x00\x33\x93\x09\xcd\x1c\x55\x00\x00\x98\xe4\x09\xd2\x21\xea\ +\x00\x00\x5d\xb5\x09\xe5\x23\x0e\x00\x00\x57\xbf\x09\xec\x2b\x45\ +\x00\x00\x0c\x97\x09\xef\x33\xa3\x00\x00\x18\x6f\x09\xf0\x1f\x6e\ +\x00\x00\x03\x84\x09\xfd\x45\x1a\x00\x00\x92\x6e\x0a\x09\xc1\x7a\ +\x00\x00\x94\xf5\x0a\x28\x9a\x65\x00\x00\x4c\x74\x0a\x28\x9a\x67\ +\x00\x00\x4c\xc5\x0a\x28\x9a\x69\x00\x00\x4d\x16\x0a\x2d\xbe\xe4\ +\x00\x00\x30\x71\x0a\x35\xa9\xfa\x00\x00\x87\x54\x0a\x3f\x27\x74\ +\x00\x00\x7a\x54\x0a\x3f\x6b\x05\x00\x00\x7a\x8d\x0a\x49\xa5\x4a\ +\x00\x00\x9d\x86\x0a\x60\xe0\x15\x00\x00\x26\x96\x0a\x60\xe0\x17\ +\x00\x00\x26\xf9\x0a\x60\xe0\x19\x00\x00\x27\x5c\x0a\x65\x9b\xea\ +\x00\x00\x90\x10\x0a\x78\x05\x80\x00\x00\x01\x53\x0a\x7f\x8f\x65\ +\x00\x00\x3c\x3e\x0a\x98\x86\x18\x00\x00\x2a\xc3\x0a\x99\x5c\xaa\ +\x00\x00\x96\xe3\x0a\xa8\x16\x95\x00\x00\x13\x51\x0a\xa9\x89\xec\ +\x00\x00\x43\xd6\x0a\xc8\x5c\x59\x00\x00\x10\x33\x0a\xd0\x50\xb8\ +\x00\x00\x71\xc1\x0a\xd0\xe6\xf5\x00\x00\x18\x2c\x0a\xd6\xf1\xfa\ +\x00\x00\x7c\x79\x0a\xeb\x91\x88\x00\x00\x64\x95\x0b\x07\x78\x8a\ +\x00\x00\x82\x34\x0b\x1b\xe0\x73\x00\x00\x4f\x88\x0b\x24\x9d\xb4\ +\x00\x00\x50\x7f\x0b\x24\xc5\xc9\x00\x00\x13\xc3\x0b\x26\x7e\x0e\ +\x00\x00\x79\x82\x0b\x2b\x50\xfa\x00\x00\x85\xb6\x0b\x2d\xb3\xf9\ +\x00\x00\x68\x84\x0b\x37\x73\x69\x00\x00\x9f\x2e\x0b\x40\x40\x3e\ +\x00\x00\x45\x7c\x0b\x43\xcd\x19\x00\x00\x44\x4a\x0b\x66\x28\xd2\ +\x00\x00\x64\x44\x0b\x88\xe0\x07\x00\x00\x0b\x10\x0b\x94\x44\xc5\ +\x00\x00\x30\xd8\x0b\xc2\x99\x6a\x00\x00\x81\x7b\x0b\xd3\x27\xae\ +\x00\x00\x04\x8e\x0b\xd4\x7e\x9e\x00\x00\x0b\x47\x0b\xf5\xee\x53\ +\x00\x00\x8f\xa5\x0c\x06\x50\x2e\x00\x00\x0d\x72\x0c\x08\x46\x23\ +\x00\x00\x7b\x0e\x0c\x19\xfa\x99\x00\x00\x7e\x09\x0c\x28\x9b\x45\ +\x00\x00\x72\x39\x0c\x31\x7e\x4a\x00\x00\x93\x02\x0c\x38\x4d\xe5\ +\x00\x00\x07\xaa\x0c\x3a\x16\xd0\x00\x00\x19\x56\x0c\x5a\xc0\xc8\ +\x00\x00\x75\xf2\x0c\x6e\x87\xf5\x00\x00\x22\x7c\x0c\x91\xa0\x7a\ +\x00\x00\x9c\xf4\x0c\x96\x90\x59\x00\x00\x44\xa7\x0c\xca\xdd\xfa\ +\x00\x00\x9b\x6a\x0c\xd6\xef\x12\x00\x00\x2e\x37\x0c\xde\x99\x49\ +\x00\x00\x68\xd0\x0c\xf0\xde\xaa\x00\x00\x84\x5b\x0d\x1c\xf6\xee\ +\x00\x00\x2c\x1b\x0d\x3a\x6c\xba\x00\x00\x93\x4c\x0d\x45\xe2\x6a\ +\x00\x00\x9a\x10\x0d\x59\xa1\x45\x00\x00\x7b\x85\x0d\x5a\xad\x33\ +\x00\x00\x74\xcf\x0d\x5e\xe7\x6e\x00\x00\x27\xbf\x0d\x64\xa5\xd9\ +\x00\x00\x5b\xd8\x0d\x6d\xf8\xf4\x00\x00\x08\x69\x0d\x76\xb5\x92\ +\x00\x00\x2c\x71\x0d\x9b\xec\xc9\x00\x00\x53\x9d\x0d\xa5\xd9\x94\ +\x00\x00\x2b\xbc\x0d\xa6\xda\xa4\x00\x00\x46\xa5\x0d\xc6\xc6\x2a\ +\x00\x00\x95\xe6\x0d\xf2\x39\xba\x00\x00\x88\x25\x0e\x2b\x04\x15\ +\x00\x00\x79\x43\x0e\x2c\xe4\x2a\x00\x00\x99\xa7\x0e\x4e\xcc\xc5\ +\x00\x00\x09\xd8\x0e\x6f\x9a\x1a\x00\x00\x9b\xec\x0e\x7b\x7a\x2c\ +\x00\x00\x31\xc4\x0e\x8f\x6a\x37\x00\x00\x36\x04\x0e\x91\x65\xf5\ +\x00\x00\x1a\x15\x0e\xca\xd7\x34\x00\x00\x1f\xf5\x0e\xcd\x1c\x55\ +\x00\x00\x99\x25\x0e\xcd\x1c\x65\x00\x00\x99\x66\x0e\xea\xe5\x03\ +\x00\x00\x70\x06\x0e\xed\xe1\xf9\x00\x00\x47\x4d\x0f\x07\x8d\xe3\ +\x00\x00\x70\x96\x0f\x17\x82\x4e\x00\x00\x00\xf5\x0f\x1f\x8d\xa5\ +\x00\x00\x79\x01\x0f\x4f\x75\x3a\x00\x00\xa2\xa7\x0f\x5f\xca\xd5\ +\x00\x00\x31\x45\x0f\x75\xb0\x54\x00\x00\x7a\xc6\x0f\x77\xc3\xb4\ +\x00\x00\x69\xa6\x0f\x89\x0b\xbe\x00\x00\x47\xad\x0f\x8f\xa8\xa7\ +\x00\x00\x19\x0f\x0f\x98\x0a\x39\x00\x00\x9e\x90\x0f\x9e\xec\xa0\ +\x00\x00\x12\xa2\x0f\xbf\x87\xa3\x00\x00\x8e\x01\x0f\xcd\xce\x95\ +\x00\x00\x35\x96\x0f\xdf\x21\x05\x00\x00\x24\x61\x0f\xf6\x06\x1e\ +\x00\x00\x20\x53\x0f\xf6\x29\x0a\x00\x00\x74\x85\x0f\xf7\x77\xaa\ +\x00\x00\x83\xd0\x0f\xfb\x5f\xae\x00\x00\x79\xca\x69\x00\x00\xa3\ +\x3b\x03\x00\x00\x00\x1e\x00\x4c\x00\xe4\x00\x67\x00\x67\x00\x20\ +\x00\x74\x00\x69\x00\x6c\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\x60\ +\x00\x4c\x00\xe4\x00\x67\x00\x67\x00\x65\x00\x72\x00\x20\x00\x74\ +\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x70\ +\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x20\x00\x69\x00\x20\x00\x65\ +\x00\x6e\x00\x20\x00\x62\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x74\ +\x00\x6c\x00\x69\x00\x67\x00\x20\x00\x74\x00\x72\x00\xe5\x00\x64\ +\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\x2a\x00\x4c\x00\xe4\x00\ +\x67\x00\x67\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\ +\x69\x00\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\x20\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\x72\x00\x4c\x00\xe4\x00\x67\x00\ +\x67\x00\x65\x00\x72\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x6c\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\ +\x65\x00\x72\x00\x61\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x74\x00\ +\x69\x00\x6c\x00\x6c\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x62\x00\ +\x65\x00\x66\x00\x69\x00\x6e\x00\x74\x00\x6c\x00\x69\x00\x67\x00\ +\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x30\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x28\x73\x29\ +\x20\x74\x6f\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\ +\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\ +\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x76\ +\x00\x41\x00\x70\x00\x70\x00\x6c\x00\x69\x00\x63\x00\x65\x00\x72\ +\x00\x61\x00\x72\x00\x20\x00\x6e\x00\x75\x00\x76\x00\x61\x00\x72\ +\x00\x61\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\x20\ +\x00\x6f\x00\x63\x00\x68\x00\x20\x00\x2d\x00\x66\x00\xe4\x00\x72\ +\x00\x67\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x76\ +\x00\x61\x00\x6c\x00\x64\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\ +\x41\x70\x70\x6c\x69\x65\x73\x20\x63\x75\x72\x72\x65\x6e\x74\x20\ +\x6c\x69\x6e\x65\x20\x77\x69\x64\x74\x68\x20\x61\x6e\x64\x20\x63\ +\x6f\x6c\x6f\x72\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x10\x44\x72\x61\ +\x66\x74\x5f\x41\x70\x70\x6c\x79\x53\x74\x79\x6c\x65\x01\x03\x00\ +\x00\x00\x2a\x00\x54\x00\x69\x00\x6c\x00\x6c\x00\xe4\x00\x6d\x00\ +\x70\x00\x61\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x75\x00\x65\x00\ +\x6c\x00\x6c\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\x14\x00\x43\x00\x69\x00\x72\x00\x6b\x00\x65\x00\ +\x6c\x00\x62\x00\xe5\x00\x67\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\x82\x00\x53\x00\x6b\x00\x61\ +\x00\x70\x00\x61\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x63\ +\x00\x69\x00\x72\x00\x6b\x00\x65\x00\x6c\x00\x62\x00\xe5\x00\x67\ +\x00\x65\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\ +\x00\x66\x00\xf6\x00\x72\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\ +\x00\x73\x00\x6e\x00\xe4\x00\x70\x00\x70\x00\x61\x00\x2c\x00\x20\ +\x00\x53\x00\x4b\x00\x49\x00\x46\x00\x54\x00\x20\x00\x66\x00\xf6\ +\x00\x72\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\x62\x00\x65\ +\x00\x67\x00\x72\x00\xe4\x00\x6e\x00\x73\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\ +\x20\x61\x72\x63\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ +\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ +\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x09\x44\x72\x61\x66\x74\ +\x5f\x41\x72\x63\x01\x03\x00\x00\x00\x10\x00\x42\x00\x2d\x00\x73\ +\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\x98\x00\x53\x00\x6b\x00\x61\x00\x70\x00\x61\x00\x72\ +\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x75\x00\x6c\x00\x74\ +\x00\x69\x00\x2d\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x73\ +\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\xf6\x00\x72\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\ +\x00\x73\x00\x6e\x00\xe4\x00\x70\x00\x70\x00\x61\x00\x2c\x00\x20\ +\x00\x53\x00\x4b\x00\x49\x00\x46\x00\x54\x00\x20\x00\x66\x00\xf6\ +\x00\x72\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\x62\x00\x65\ +\x00\x67\x00\x72\x00\xe4\x00\x6e\x00\x73\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x43\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ +\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\x70\x6f\x69\x6e\x74\x20\x62\ +\x2d\x73\x70\x6c\x69\x6e\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\ +\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\ +\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0d\x44\x72\ +\x61\x66\x74\x5f\x42\x53\x70\x6c\x69\x6e\x65\x01\x03\x00\x00\x00\ +\x0c\x00\x43\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\x8c\x00\x53\x00\x6b\x00\x61\x00\x70\x00\x61\x00\x72\ +\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x63\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\xf6\x00\x72\x00\x20\x00\x61\x00\x74\x00\x74\ +\x00\x20\x00\x73\x00\x6e\x00\xe4\x00\x70\x00\x70\x00\x61\x00\x2c\ +\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x66\x00\xf6\x00\x72\ +\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\x76\x00\xe4\x00\x6c\ +\x00\x6a\x00\x61\x00\x20\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x65\ +\x00\x6e\x00\x74\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3d\x43\x72\x65\x61\x74\x65\ +\x73\x20\x61\x20\x63\x69\x72\x63\x6c\x65\x2e\x20\x43\x54\x52\x4c\ +\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x41\x4c\x54\x20\x74\x6f\ +\x20\x73\x65\x6c\x65\x63\x74\x20\x74\x61\x6e\x67\x65\x6e\x74\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0c\x44\x72\x61\x66\ +\x74\x5f\x43\x69\x72\x63\x6c\x65\x01\x03\x00\x00\x00\x16\x00\x53\ +\x00\x74\x00\xe4\x00\x6e\x00\x67\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\x36\x00\x53\x00\x74\x00\xe4\x00\x6e\x00\x67\x00\x65\x00\x72\ +\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x6c\x00\x69\x00\x6e\ +\x00\x6a\x00\x65\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\x72\ +\x00\x69\x00\x74\x00\x61\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1b\x43\x6c\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x6c\x69\x6e\ +\x65\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\x77\x6e\x07\x00\x00\ +\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\x73\x65\x4c\x69\x6e\ +\x65\x01\x03\x00\x00\x00\x1a\x00\x54\x00\x61\x00\x20\x00\x62\x00\ +\x6f\x00\x72\x00\x74\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\x6c\ +\x00\x54\x00\x61\x00\x72\x00\x20\x00\x62\x00\x6f\x00\x72\x00\x74\ +\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\ +\x00\x74\x00\x20\x00\x66\x00\x72\x00\xe5\x00\x6e\x00\x20\x00\x65\ +\x00\x6e\x00\x20\x00\x62\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x74\ +\x00\x6c\x00\x69\x00\x67\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\xbe\x00\ +\x53\x00\x6b\x00\x61\x00\x70\x00\x61\x00\x72\x00\x20\x00\x65\x00\ +\x6e\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\ +\x69\x00\x6f\x00\x6e\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\ +\x4c\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\x61\x00\x74\x00\ +\x74\x00\x20\x00\x73\x00\x6e\x00\xe4\x00\x70\x00\x70\x00\x61\x00\ +\x2c\x00\x20\x00\x53\x00\x4b\x00\x49\x00\x46\x00\x54\x00\x20\x00\ +\x66\x00\xf6\x00\x72\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\ +\x62\x00\x65\x00\x67\x00\x72\x00\xe4\x00\x6e\x00\x73\x00\x61\x00\ +\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x66\x00\xf6\x00\ +\x72\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\x76\x00\xe4\x00\ +\x6c\x00\x6a\x00\x61\x00\x20\x00\x65\x00\x74\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\x69\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\x14\x00\x4e\ +\x00\x65\x00\x64\x00\x67\x00\x72\x00\x61\x00\x64\x00\x65\x00\x72\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x44\x6f\x77\x6e\ +\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\ +\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x8e\x00\ +\x46\x00\xf6\x00\x72\x00\xe4\x00\x6e\x00\x64\x00\x72\x00\x61\x00\ +\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6c\x00\ +\x64\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x6c\x00\ +\x20\x00\x65\x00\x6e\x00\x6b\x00\x6c\x00\x61\x00\x72\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x2c\x00\ +\x20\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x73\x00\ +\x75\x00\x62\x00\x74\x00\x72\x00\x61\x00\x68\x00\x65\x00\x72\x00\ +\x61\x00\x72\x00\x20\x00\x79\x00\x74\x00\x6f\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\x52\x00\x69\x00\x74\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\x5e\x00\x50\x00\ +\x6c\x00\x61\x00\x63\x00\x65\x00\x72\x00\x61\x00\x72\x00\x20\x00\ +\x64\x00\x65\x00\x74\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x64\x00\ +\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x65\x00\x74\x00\x20\x00\x70\x00\xe5\x00\x20\x00\x65\x00\x74\x00\ +\x74\x00\x20\x00\x72\x00\x69\x00\x74\x00\x6e\x00\x69\x00\x6e\x00\ +\x67\x00\x73\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\x10\x00\x52\x00\x65\x00\x64\ +\x00\x69\x00\x67\x00\x65\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x0a\x44\x72\x61\ +\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\x3a\x00\x52\x00\ +\x65\x00\x64\x00\x69\x00\x67\x00\x65\x00\x72\x00\x61\x00\x72\x00\ +\x20\x00\x64\x00\x65\x00\x74\x00\x20\x00\x61\x00\x6b\x00\x74\x00\ +\x69\x00\x76\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\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\x61\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\x4a\x00\x41\x00\x76\x00\x73\x00\x6c\x00\ +\x75\x00\x74\x00\x61\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\ +\x61\x00\x6e\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\x73\x00\ +\x74\x00\xe4\x00\x6e\x00\x67\x00\x61\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\x8a\x00\x53\x00\x6b\x00\x61\x00\x70\ +\x00\x61\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\xf6\x00\x72\x00\x20\x00\x61\ +\x00\x74\x00\x74\x00\x20\x00\x73\x00\x6e\x00\xe4\x00\x70\x00\x70\ +\x00\x61\x00\x2c\x00\x20\x00\x53\x00\x4b\x00\x49\x00\x46\x00\x54\ +\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\x61\x00\x74\x00\x74\ +\x00\x20\x00\x62\x00\x65\x00\x67\x00\x72\x00\xe4\x00\x6e\x00\x73\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\x20\x6c\x69\ +\x6e\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\ +\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\ +\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4c\ +\x69\x6e\x65\x01\x03\x00\x00\x00\x0a\x00\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\x0c\x00\x46\x00\x6c\x00\x79\x00\x74\x00\x74\ +\x00\x61\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\xd8\x00\x46\x00\x6c\x00\x79\x00\x74\x00\x74\x00\ +\x61\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x76\x00\x61\x00\ +\x6c\x00\x64\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x65\x00\x6c\x00\ +\x6c\x00\x61\x00\x6e\x00\x20\x00\x32\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\xf6\x00\x72\x00\x20\x00\ +\x61\x00\x74\x00\x74\x00\x20\x00\x73\x00\x6e\x00\xe4\x00\x70\x00\ +\x70\x00\x61\x00\x2c\x00\x20\x00\x53\x00\x4b\x00\x49\x00\x46\x00\ +\x54\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\x61\x00\x74\x00\ +\x74\x00\x20\x00\x62\x00\x65\x00\x67\x00\x72\x00\xe4\x00\x6e\x00\ +\x73\x00\x61\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\ +\x66\x00\xf6\x00\x72\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\ +\x6b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x72\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x5a\x4d\x6f\x76\x65\x73\x20\x74\x68\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x32\x20\x70\x6f\x69\x6e\ +\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\ +\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\ +\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\ +\x79\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4d\x6f\x76\x65\ +\x01\x03\x00\x00\x00\x0c\x00\x4f\x00\x66\x00\x66\x00\x73\x00\x65\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x4f\x66\x66\x73\ +\x65\x74\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x4f\x66\x66\ +\x73\x65\x74\x01\x03\x00\x00\x00\xd6\x00\x53\x00\x6b\x00\x61\x00\ +\x70\x00\x61\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\ +\x66\x00\x66\x00\x73\x00\x65\x00\x74\x00\x20\x00\x74\x00\x69\x00\ +\x6c\x00\x6c\x00\x20\x00\x64\x00\x65\x00\x74\x00\x20\x00\x61\x00\ +\x6b\x00\x74\x00\x69\x00\x76\x00\x61\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x74\x00\x2e\x00\x20\x00\ +\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x66\x00\xf6\x00\x72\x00\ +\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\x73\x00\x6e\x00\xe4\x00\ +\x70\x00\x70\x00\x61\x00\x2c\x00\x20\x00\x53\x00\x4b\x00\x49\x00\ +\x46\x00\x54\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\x61\x00\ +\x74\x00\x74\x00\x20\x00\x62\x00\x65\x00\x67\x00\x72\x00\xe4\x00\ +\x6e\x00\x73\x00\x61\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\ +\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\x61\x00\x74\x00\x74\x00\ +\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x72\x00\x61\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\x9c\x00\x53\x00\x6b\x00\x61\x00\x70\ +\x00\x61\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x72\x00\x65\ +\x00\x67\x00\x65\x00\x6c\x00\x62\x00\x75\x00\x6e\x00\x64\x00\x65\ +\x00\x6e\x00\x20\x00\x6d\x00\xe5\x00\x6e\x00\x67\x00\x68\x00\xf6\ +\x00\x72\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x2e\x00\x20\x00\x43\ +\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\ +\x00\x61\x00\x74\x00\x74\x00\x20\x00\x73\x00\x6e\x00\xe4\x00\x70\ +\x00\x70\x00\x61\x00\x2c\x00\x20\x00\x53\x00\x4b\x00\x49\x00\x46\ +\x00\x54\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\x61\x00\x74\ +\x00\x74\x00\x20\x00\x62\x00\x65\x00\x67\x00\x72\x00\xe4\x00\x6e\ +\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3b\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x20\x72\x65\x67\x75\x6c\x61\x72\x20\ +\x70\x6f\x6c\x79\x67\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\ +\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\ +\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0d\x44\x72\ +\x61\x66\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\x00\x00\ +\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\x62\x00\x53\x00\x6b\x00\x61\x00\x70\ +\x00\x61\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\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\xf6\x00\x72\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\x73\ +\x00\x6e\x00\xe4\x00\x70\x00\x70\x00\x61\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\x0c\x00\x52\x00\x6f\x00\x74\x00\x65\x00\x72\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x52\x6f\x74\x61\ +\x74\x65\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\ +\x61\x74\x65\x01\x03\x00\x00\x00\xb6\x00\x52\x00\x6f\x00\x74\x00\ +\x65\x00\x72\x00\x61\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x76\x00\x61\x00\x6c\x00\x64\x00\x61\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x6e\x00\x2e\x00\x20\x00\ +\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x66\x00\xf6\x00\x72\x00\ +\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\x73\x00\x6e\x00\xe4\x00\ +\x70\x00\x70\x00\x61\x00\x2c\x00\x20\x00\x53\x00\x4b\x00\x49\x00\ +\x46\x00\x54\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\x61\x00\ +\x74\x00\x74\x00\x20\x00\x62\x00\x65\x00\x67\x00\x72\x00\xe4\x00\ +\x6e\x00\x73\x00\x61\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\ +\x20\x00\x73\x00\x6b\x00\x61\x00\x70\x00\x61\x00\x72\x00\x20\x00\ +\x65\x00\x6e\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x6f\x74\x61\x74\x65\x73\ +\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\ +\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\ +\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x63\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0c\ +\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\x01\x03\x00\x00\ +\x00\x0a\x00\x53\x00\x6b\x00\x61\x00\x6c\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x07\x00\x00\x00\x0b\ +\x44\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\ +\xd4\x00\x53\x00\x6b\x00\x61\x00\x6c\x00\x61\x00\x72\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x64\x00\x61\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\ +\x6e\x00\x20\x00\x66\x00\x72\x00\xe5\x00\x6e\x00\x20\x00\x65\x00\ +\x6e\x00\x20\x00\x62\x00\x61\x00\x73\x00\x70\x00\x75\x00\x6e\x00\ +\x6b\x00\x74\x00\x2e\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\ +\x66\x00\xf6\x00\x72\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\ +\x73\x00\x6e\x00\xe4\x00\x70\x00\x70\x00\x61\x00\x2c\x00\x20\x00\ +\x53\x00\x4b\x00\x49\x00\x46\x00\x54\x00\x20\x00\x66\x00\xf6\x00\ +\x72\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\x62\x00\x65\x00\ +\x67\x00\x72\x00\xe4\x00\x6e\x00\x73\x00\x61\x00\x2c\x00\x20\x00\ +\x41\x00\x4c\x00\x54\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\ +\x61\x00\x74\x00\x74\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\ +\x65\x00\x72\x00\x61\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\ +\x14\x00\x56\x00\xe4\x00\x6c\x00\x6a\x00\x20\x00\x67\x00\x72\x00\ +\x75\x00\x70\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\x70\x00\x4d\x00\x61\x00\x72\x00\x6b\x00\ +\x65\x00\x72\x00\x61\x00\x72\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\ +\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x20\x00\x6d\x00\x65\x00\x64\x00\x20\x00\x73\x00\x61\x00\x6d\x00\ +\x6d\x00\x61\x00\x20\x00\x66\x00\xf6\x00\x72\x00\xe4\x00\x6c\x00\ +\x64\x00\x72\x00\x61\x00\x72\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\ +\x20\x00\x64\x00\x65\x00\x6e\x00\x6e\x00\x61\x00\x20\x00\x67\x00\ +\x72\x00\x75\x00\x70\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\x5c\x00\x56\x00\xe4\x00\x6c\x00\x6a\x00\x65\x00\x72\ +\x00\x20\x00\x65\x00\x74\x00\x74\x00\x20\x00\x61\x00\x72\x00\x62\ +\x00\x65\x00\x74\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x20\ +\x00\x66\x00\xf6\x00\x72\x00\x20\x00\x73\x00\x6b\x00\x61\x00\x70\ +\x00\x61\x00\x6e\x00\x64\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\xe4\x00\x6c\x00\x6a\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\x50\x00\x53\x00\x6b\x00\x61\x00\x70\x00\x61\x00\ +\x72\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x20\x00\x32\x00\ +\x44\x00\x20\x00\x76\x00\x79\x00\x65\x00\x72\x00\x20\x00\x66\x00\ +\xf6\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x65\x00\ +\x72\x00\x61\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\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\x14\x00\x32\x00\x44\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x6d\x00\x20\x00\x76\x00\x79\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\x52\x00\x53\x00\x6b\ +\x00\x61\x00\x70\x00\x61\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x20\ +\x00\x61\x00\x6e\x00\x6e\x00\x6f\x00\x74\x00\x65\x00\x72\x00\x69\ +\x00\x6e\x00\x67\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\ +\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\x61\x00\x74\x00\x74\ +\x00\x20\x00\x73\x00\x6e\x00\xe4\x00\x70\x00\x70\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x23\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x6e\x20\x61\x6e\x6e\x6f\x74\x61\x74\x69\x6f\x6e\x2e\x20\x43\ +\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x0a\ +\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\x01\x03\x00\x00\x00\x08\ +\x00\x54\x00\x65\x00\x78\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x54\x65\x78\x74\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\ +\x5f\x54\x65\x78\x74\x01\x03\x00\x00\x00\x2e\x00\x56\x00\xe4\x00\ +\x78\x00\x6c\x00\x61\x00\x20\x00\x6b\x00\x6f\x00\x6e\x00\x73\x00\ +\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x73\x00\x6c\x00\xe4\x00\x67\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\ +\x6e\x00\x56\x00\xe4\x00\x78\x00\x6c\x00\x61\x00\x72\x00\x20\x00\ +\x74\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x6b\x00\x6f\x00\x6e\x00\ +\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x73\x00\x6c\x00\xe4\x00\x67\x00\x65\x00\x20\x00\x66\x00\ +\xf6\x00\x72\x00\x20\x00\x65\x00\x66\x00\x74\x00\x65\x00\x72\x00\ +\x6b\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x2e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\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\x24\x00\ +\x56\x00\xe4\x00\x78\x00\x6c\x00\x61\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x74\x00\x73\x00\xe4\x00\x74\x00\x74\x00\x6c\x00\xe4\x00\ +\x67\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\x50\x00\x56\x00\xe4\x00\x78\x00\x6c\x00\x61\x00\x72\ +\x00\x20\x00\x46\x00\x6f\x00\x72\x00\x74\x00\x73\x00\xe4\x00\x74\ +\x00\x74\x00\x6c\x00\xe4\x00\x67\x00\x65\x00\x20\x00\x66\x00\xf6\ +\x00\x72\x00\x20\x00\x6e\x00\xe4\x00\x73\x00\x74\x00\x61\x00\x20\ +\x00\x6b\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x6f\ +\x00\x6e\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\x94\x00\x56\x00\ +\xe4\x00\x78\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x76\x00\x69\x00\ +\x73\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x6c\x00\xe4\x00\ +\x67\x00\x65\x00\x74\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x64\x00\x61\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\ +\x6e\x00\x20\x00\x6d\x00\x65\x00\x6c\x00\x6c\x00\x61\x00\x6e\x00\ +\x20\x00\x74\x00\x72\x00\xe5\x00\x64\x00\x61\x00\x72\x00\x20\x00\ +\x6f\x00\x63\x00\x68\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x74\x00\ +\x74\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x6a\x00\x65\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x56\x00\xe4\x00\x78\x00\x6c\x00\x61\x00\x20\x00\ +\x76\x00\x69\x00\x73\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x73\x00\ +\x6c\x00\xe4\x00\x67\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\x48\x00\x54\x00\x72\x00\x69\x00\ +\x6d\x00\x6d\x00\x61\x00\x72\x00\x20\x00\x65\x00\x6c\x00\x6c\x00\ +\x65\x00\x72\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x6c\x00\xe4\x00\ +\x6e\x00\x67\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\x00\x74\x00\ +\x20\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x65\x00\x72\x00\x61\x00\ +\x64\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x65\x00\x74\x00\x20\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\ +\x72\x00\x20\x00\x65\x00\x78\x00\x74\x00\x72\x00\x75\x00\x64\x00\ +\x65\x00\x72\x00\x61\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x73\x00\ +\x74\x00\x61\x00\x6b\x00\x61\x00\x20\x00\x79\x00\x74\x00\x6f\x00\ +\x72\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\ +\x73\x00\x6e\x00\xe4\x00\x70\x00\x70\x00\x65\x00\x72\x00\x2c\x00\ +\x20\x00\x53\x00\x4b\x00\x49\x00\x46\x00\x54\x00\x20\x00\x62\x00\ +\x65\x00\x67\x00\x72\x00\xe4\x00\x6e\x00\x73\x00\x61\x00\x72\x00\ +\x20\x00\x74\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x6e\x00\x75\x00\ +\x76\x00\x61\x00\x72\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x20\x00\ +\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\ +\x65\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x74\x00\x69\x00\ +\x6c\x00\x6c\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\x65\x00\x72\x00\x61\x00\ +\x72\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\x2a\x00\xc5\x00\x6e\x00\ +\x67\x00\x72\x00\x61\x00\x20\x00\x73\x00\x69\x00\x73\x00\x74\x00\ +\x61\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x65\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\x72\x00\xc5\x00\x6e\x00\x67\x00\ +\x72\x00\x61\x00\x72\x00\x20\x00\x64\x00\x65\x00\x74\x00\x20\x00\ +\x73\x00\x65\x00\x6e\x00\x61\x00\x73\x00\x74\x00\x20\x00\x72\x00\ +\x69\x00\x74\x00\x61\x00\x64\x00\x65\x00\x20\x00\x73\x00\x65\x00\ +\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x74\x00\x20\x00\ +\x70\x00\xe5\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x6c\x00\ +\x69\x00\x6e\x00\x6a\x00\x65\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\ +\x20\x00\x72\x00\x69\x00\x74\x00\x61\x00\x73\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\x00\x46\x00\xf6\x00\x72\x00\x65\x00\x6e\x00\x61\x00\ +\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6c\x00\ +\x64\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x6c\x00\ +\x20\x00\x65\x00\x74\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x2c\x00\x20\x00\x65\x00\x6c\x00\x6c\x00\ +\x65\x00\x72\x00\x20\x00\x6b\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\ +\x72\x00\x74\x00\x65\x00\x72\x00\x61\x00\x72\x00\x20\x00\x73\x00\ +\x74\x00\xe4\x00\x6e\x00\x67\x00\x64\x00\x61\x00\x20\x00\x6c\x00\ +\x69\x00\x6e\x00\x6a\x00\x65\x00\x72\x00\x20\x00\x74\x00\x69\x00\ +\x6c\x00\x6c\x00\x20\x00\x66\x00\x79\x00\x6c\x00\x6c\x00\x64\x00\ +\x61\x00\x20\x00\x79\x00\x74\x00\x6f\x00\x72\x00\x2c\x00\x20\x00\ +\x65\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x66\x00\xf6\x00\ +\x72\x00\x65\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x79\x00\x74\x00\ +\x6f\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\x14\x00\x55\x00\x70\x00\x70\x00\x67\x00\x72\x00\x61\x00\x64\ +\x00\x65\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ +\x55\x70\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0d\x44\x72\x61\x66\ +\x74\x5f\x55\x70\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x90\x00\ +\x53\x00\x6b\x00\x61\x00\x70\x00\x61\x00\x72\x00\x20\x00\x65\x00\ +\x6e\x00\x20\x00\x6d\x00\x75\x00\x6c\x00\x74\x00\x69\x00\x2d\x00\ +\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x73\x00\x20\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\xf6\x00\x72\x00\x20\x00\x61\x00\x74\x00\ +\x74\x00\x20\x00\x73\x00\x6e\x00\xe4\x00\x70\x00\x70\x00\x61\x00\ +\x2c\x00\x20\x00\x53\x00\x4b\x00\x49\x00\x46\x00\x54\x00\x20\x00\ +\x66\x00\xf6\x00\x72\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\ +\x62\x00\x65\x00\x67\x00\x72\x00\xe4\x00\x6e\x00\x73\x00\x61\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\x46\x00\x4b\x00\x6f\x00\x6e\x00\x76\ +\x00\x65\x00\x72\x00\x74\x00\x65\x00\x72\x00\x61\x00\x72\x00\x20\ +\x00\x6d\x00\x65\x00\x6c\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x74\ +\x00\x72\x00\xe5\x00\x64\x00\x20\x00\x6f\x00\x63\x00\x68\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\x22\x00\x54\x00\x72\x00\xe5\x00\x64\x00\ +\x20\x00\x74\x00\x69\x00\x6c\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\x36\x00\x41\x00\x6c\x00\x74\x00\x65\x00\ +\x72\x00\x6e\x00\x61\x00\x74\x00\x69\x00\x76\x00\x20\x00\x53\x00\ +\x56\x00\x47\x00\x20\x00\x4d\x00\xf6\x00\x6e\x00\x73\x00\x74\x00\ +\x65\x00\x72\x00\x70\x00\x6c\x00\x61\x00\x74\x00\x73\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\x6e\x00\x53\ +\x00\x6e\x00\xe4\x00\x70\x00\x70\x00\x20\x00\x61\x00\x6c\x00\x6c\ +\x00\x74\x00\x69\x00\x64\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x6c\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\ +\x00\x28\x00\x69\x00\x6e\x00\x61\x00\x6b\x00\x74\x00\x69\x00\x76\ +\x00\x65\x00\x72\x00\x61\x00\x20\x00\x73\x00\x6e\x00\xe4\x00\x70\ +\x00\x70\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x20\x00\x74\x00\x61\ +\x00\x6e\x00\x67\x00\x65\x00\x6e\x00\x74\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\xe4\x00\x6e\x00\x74\x00\x20\x00\x73\x00\x6e\x00\x65\ +\x00\x64\x00\x73\x00\x74\x00\x72\x00\x65\x00\x63\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\xe4\x00\x6e\x00\x74\x00\x20\x00\x73\x00\ +\x6e\x00\x65\x00\x64\x00\x73\x00\x74\x00\x72\x00\x65\x00\x63\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\xe4\x00\x6e\x00\x74\x00\x20\ +\x00\x73\x00\x6e\x00\x65\x00\x64\x00\x73\x00\x74\x00\x72\x00\x65\ +\x00\x63\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\x4b\x00\x72\x00\x79\x00\x73\x00\x73\x00\ +\x61\x00\x20\x00\x69\x00\x20\x00\x68\x00\xe4\x00\x72\x00\x20\x00\ +\x6f\x00\x6d\x00\x20\x00\x64\x00\x75\x00\x20\x00\x76\x00\x69\x00\ +\x6c\x00\x6c\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\x61\x00\ +\x72\x00\x65\x00\x6f\x00\x72\x00\x6e\x00\x61\x00\x20\x00\x28\x00\ +\x33\x00\x44\x00\x20\x00\x79\x00\x74\x00\x6f\x00\x72\x00\x6e\x00\ +\x61\x00\x29\x00\x20\x00\x73\x00\x6b\x00\x61\x00\x20\x00\x69\x00\ +\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x00\x61\x00\ +\x73\x00\x20\x00\x6f\x00\x63\x00\x6b\x00\x73\x00\xe5\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\x4d\x00\x61\x00\x72\x00\x6b\x00\x65\x00\x72\x00\x61\x00\x20\ +\x00\x68\x00\xe4\x00\x72\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x64\ +\x00\x75\x00\x20\x00\x76\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x61\ +\x00\x74\x00\x74\x00\x20\x00\x69\x00\x63\x00\x6b\x00\x65\x00\x2d\ +\x00\x6e\x00\x61\x00\x6d\x00\x6e\x00\x67\x00\x69\x00\x76\x00\x6e\ +\x00\x61\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x20\ +\x00\x28\x00\x62\x00\xf6\x00\x72\x00\x6a\x00\x61\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\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x65\x00\x72\x00\x61\x00\x73\x00\x20\x00\x6f\x00\x63\ +\x00\x6b\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\x43\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\x43\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\ +\x43\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\x48\x00\x46\x00\xe4\x00\x72\x00\ +\x67\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\xe4\x00\x72\x00\ +\x20\x00\x6d\x00\x61\x00\x70\x00\x70\x00\x61\x00\x64\x00\x20\x00\ +\x74\x00\x69\x00\x6c\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\ +\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\x22\x00\x46\x00\xe4\ +\x00\x72\x00\x67\x00\x6d\x00\x61\x00\x70\x00\x70\x00\x6e\x00\x69\ +\x00\x6e\x00\x67\x00\x73\x00\x20\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\x20\x00\x42\x00\x65\x00\x67\x00\x72\x00\xe4\x00\x6e\x00\x73\ +\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x73\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\x74\x00\x69\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\x22\x00\x4b\x00\x6f\x00\x6e\x00\x73\x00\ +\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x73\x00\x66\x00\xe4\x00\x72\x00\x67\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\x2c\x00\x4b\x00\ +\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x00\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\ +\x70\x00\x6e\x00\x61\x00\x6d\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\x53\x00\x6b\x00\x61\x00\x70\x00\x61\x00\x20\x00\x70\ +\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\ +\x00\x73\x00\x6b\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\x72\ +\x65\x61\x74\x65\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\ +\x44\x00\x58\x00\x46\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\ +\x61\x00\x74\x00\x20\x00\x61\x00\x6c\x00\x74\x00\x65\x00\x72\x00\ +\x6e\x00\x61\x00\x74\x00\x69\x00\x76\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\x18\x00\x53\x00\ +\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x66\x00\ +\xe4\x00\x72\x00\x67\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\x4e\x00\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\ +\x00\x72\x00\x64\x00\x68\x00\xf6\x00\x6a\x00\x64\x00\x20\x00\x66\ +\x00\xf6\x00\x72\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x65\ +\x00\x72\x00\x20\x00\x6f\x00\x63\x00\x68\x00\x20\x00\x64\x00\x69\ +\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\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\x26\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\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\x20\x00\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\ +\x00\x72\x00\x64\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\x61\ +\x00\x72\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x44\x65\ +\x66\x61\x75\x6c\x74\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x20\x73\ +\x68\x65\x65\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x53\x00\x74\ +\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x20\x00\x74\ +\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x6e\x00\x73\x00\x6e\x00\x69\ +\x00\x74\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\x65\ +\x66\x61\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x66\x6f\x6e\x74\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x22\x00\x53\x00\x74\x00\x61\x00\x6e\x00\ +\x64\x00\x61\x00\x72\x00\x64\x00\x20\x00\x74\x00\x65\x00\x78\x00\ +\x74\x00\x68\x00\xf6\x00\x6a\x00\x64\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\x26\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\x74\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\x2e\x00\x4d\x00\xe5\x00\ +\x74\x00\x74\x00\x20\x00\x26\x00\x20\x00\x6c\x00\x65\x00\x64\x00\ +\x61\x00\x72\x00\x65\x00\x20\x00\x50\x00\x69\x00\x6c\x00\x66\x00\ +\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\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\x3c\x00\x50\x00\x72\x00\x65\ +\x00\x63\x00\x69\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x6e\ +\x00\x69\x00\x76\x00\xe5\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\ +\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\ +\x00\x6e\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\ +\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x70\x72\x65\x63\x69\ +\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0e\x00\x50\x00\x75\x00\x6e\x00\x6b\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\x0e\x00\x50\x00\x75\x00\x6e\x00\x6b\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\x0e\x00\x50\x00\x75\ +\x00\x6e\x00\x6b\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\ +\x32\x00\x47\x00\x72\x00\xe4\x00\x6e\x00\x73\x00\x73\x00\x6e\x00\ +\x69\x00\x74\x00\x74\x00\x73\x00\x6c\x00\xe4\x00\x67\x00\x65\x00\ +\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\x73\x00\x6b\x00\x69\x00\ +\x73\x00\x73\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\x65\x00\x72\x00\x61\x00\x20\x00\x33\x00\ +\x44\x00\x2d\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\ +\x79\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6e\x00\xe4\x00\ +\x74\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\x30\x00\x46\x00\x79\x00\x6c\x00\x6c\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\ +\x73\x00\x6f\x00\x6d\x00\x20\x00\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\x36\ +\x00\x41\x00\x6c\x00\x6c\x00\x6d\x00\xe4\x00\x6e\x00\x6e\x00\x61\ +\x00\x20\x00\x73\x00\x6b\x00\x69\x00\x73\x00\x73\x00\x69\x00\x6e\ +\x00\x73\x00\x74\x00\xe4\x00\x6c\x00\x6c\x00\x6e\x00\x69\x00\x6e\ +\x00\x67\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x2c\x00\x41\ +\x00\x6c\x00\x6c\x00\x6d\x00\xe4\x00\x6e\x00\x6e\x00\x61\x00\x20\ +\x00\x69\x00\x6e\x00\x73\x00\x74\x00\xe4\x00\x6c\x00\x6c\x00\x6e\ +\x00\x69\x00\x6e\x00\x67\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\ +\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\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\x74\x00\x20\x00\x6b\x00\x6f\ +\x00\x70\x00\x69\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x73\ +\x00\x6c\x00\xe4\x00\x67\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\x1c\x00\x52\x00\x75\x00\x74\ +\x00\x6e\x00\xe4\x00\x74\x00\x73\x00\x61\x00\x76\x00\x73\x00\x74\ +\x00\xe5\x00\x6e\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\ +\x47\x72\x69\x64\x20\x73\x70\x61\x63\x69\x6e\x67\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x2c\x00\x47\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\ +\x00\x72\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x67\x00\x65\x00\x72\ +\x00\x20\x00\x69\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x63\x00\x6b\ +\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\x12\x00\x48\x00\xe4\x00\x72\ +\x00\x20\x00\x6b\x00\x61\x00\x6e\x00\x20\x00\x64\x00\x75\x00\x20\ +\x00\x61\x00\x6e\x00\x67\x00\x65\x00\x20\x00\x65\x00\x6e\x00\x20\ +\x00\x6b\x00\x61\x00\x74\x00\x61\x00\x6c\x00\x6f\x00\x67\x00\x20\ +\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\x69\x00\x6e\x00\x6e\x00\x65\ +\x00\x68\x00\xe5\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x53\ +\x00\x56\x00\x47\x00\x2d\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x72\ +\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\x69\x00\x6e\x00\x6e\ +\x00\x65\x00\x68\x00\xe5\x00\x6c\x00\x6c\x00\x65\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\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x72\x00\x20\x00\x73\ +\x00\x6f\x00\x6d\x00\x20\x00\x6b\x00\x61\x00\x6e\x00\x20\x00\x6c\ +\x00\xe4\x00\x67\x00\x67\x00\x61\x00\x73\x00\x20\x00\x74\x00\x69\ +\x00\x6c\x00\x6c\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\ +\x00\x61\x00\x72\x00\x64\x00\x20\x00\x74\x00\x76\x00\xe4\x00\x72\ +\x00\x73\x00\x6e\x00\x69\x00\x74\x00\x74\x00\x73\x00\x6d\x00\xf6\ +\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x65\x00\x6e\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\x72\x00\x4f\x00\x6d\x00\ +\x20\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x65\x00\x72\x00\x61\x00\ +\x74\x00\x2c\x00\x20\x00\x73\x00\xe5\x00\x20\x00\x6b\x00\x6f\x00\ +\x6d\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x65\x00\x74\x00\x74\x00\ +\x20\x00\x72\x00\x75\x00\x74\x00\x6e\x00\xe4\x00\x74\x00\x20\x00\ +\x61\x00\x74\x00\x74\x00\x20\x00\x73\x00\x79\x00\x6e\x00\x61\x00\ +\x73\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\ +\x72\x00\x69\x00\x74\x00\x6e\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\xf2\x00\x4f\x00\x6d\x00\x20\ +\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x65\x00\x72\x00\x61\x00\x74\ +\x00\x2c\x00\x20\x00\x73\x00\xe5\x00\x20\x00\x6b\x00\x6f\x00\x6d\ +\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x66\x00\x72\x00\x65\x00\x65\ +\x00\x63\x00\x61\x00\x64\x00\x20\x00\x20\x00\x61\x00\x74\x00\x74\ +\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x73\x00\xf6\x00\x6b\x00\x61\ +\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x65\x00\x6e\x00\x61\x00\x20\ +\x00\x73\x00\x61\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x66\x00\x61\ +\x00\x6c\x00\x6c\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x74\x00\x69\ +\x00\x6c\x00\x6c\x00\x20\x00\x74\x00\x72\x00\xe5\x00\x64\x00\x61\ +\x00\x72\x00\x2e\x00\x20\x00\x41\x00\x6b\x00\x74\x00\x61\x00\x20\ +\x00\x64\x00\x69\x00\x67\x00\x2c\x00\x20\x00\x64\x00\x65\x00\x74\ +\x00\x74\x00\x61\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\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\xbe\x00\x4f\x00\x6d\x00\x20\x00\x64\x00\x65\x00\x74\x00\ +\x74\x00\x61\x00\x20\x00\xe4\x00\x72\x00\x20\x00\x6d\x00\x61\x00\ +\x72\x00\x6b\x00\x65\x00\x72\x00\x61\x00\x74\x00\x2c\x00\x20\x00\ +\x73\x00\xe5\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\ +\x72\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x73\x00\x6f\x00\ +\x6d\x00\x20\x00\x69\x00\x6e\x00\x6e\x00\x65\x00\x68\x00\xe5\x00\ +\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x79\x00\x74\x00\x6f\x00\ +\x72\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\x65\x00\x78\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x00\x61\x00\x73\x00\ +\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\x33\x00\x44\x00\x2d\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\x16\x00\x4f\x00\x6d\x00\x20\x00\x64\x00\x65\x00\x6e\ +\x00\x6e\x00\x61\x00\x20\x00\xe4\x00\x72\x00\x20\x00\x69\x00\x6b\ +\x00\x72\x00\x79\x00\x73\x00\x73\x00\x61\x00\x64\x00\x20\x00\x73\ +\x00\xe5\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x72\ +\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x72\x00\x69\ +\x00\x6e\x00\x67\x00\x73\x00\x6c\x00\xe4\x00\x67\x00\x65\x00\x74\ +\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\x62\x00\x65\x00\x68\ +\x00\xe5\x00\x6c\x00\x6c\x00\x61\x00\x73\x00\x20\x00\xf6\x00\x76\ +\x00\x65\x00\x72\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x6d\x00\x61\ +\x00\x6e\x00\x64\x00\x6f\x00\x74\x00\x2c\x00\x20\x00\x61\x00\x6e\ +\x00\x6e\x00\x61\x00\x72\x00\x73\x00\x20\x00\x6b\x00\x6f\x00\x6d\ +\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x6d\ +\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x74\ +\x00\x74\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\x61\x00\x20\ +\x00\x69\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x2d\x00\x6b\ +\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\ +\x00\x73\x00\x6c\x00\xe4\x00\x67\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\xe2\x00\x4f\x00\x6d\x00\ +\x20\x00\x64\x00\x65\x00\x6e\x00\x6e\x00\x61\x00\x20\x00\xe4\x00\ +\x72\x00\x20\x00\x69\x00\x6b\x00\x72\x00\x79\x00\x73\x00\x73\x00\ +\x61\x00\x64\x00\x20\x00\x73\x00\xe5\x00\x20\x00\x6b\x00\x6f\x00\ +\x6d\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x74\x00\ +\x74\x00\x20\x00\x76\x00\x69\x00\x73\x00\x61\x00\x73\x00\x20\x00\ +\x73\x00\x6f\x00\x6d\x00\x20\x00\x66\x00\x79\x00\x6c\x00\x6c\x00\ +\x64\x00\x61\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\x41\x00\x6e\x00\x6e\x00\x61\x00\x72\x00\x73\x00\x20\x00\ +\x6b\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\x76\x00\x69\x00\ +\x73\x00\x61\x00\x73\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\ +\x65\x00\x6e\x00\x20\x00\x74\x00\x72\x00\xe5\x00\x64\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\x3c\x00\x4f\x00\x6d\x00\x20\x00\x64\x00\x65\x00\ +\x74\x00\x20\x00\x68\x00\xe4\x00\x72\x00\x20\x00\xe4\x00\x72\x00\ +\x20\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x65\x00\x72\x00\x61\x00\ +\x74\x00\x2c\x00\x20\x00\x73\x00\xe5\x00\x20\x00\x6b\x00\x6f\x00\ +\x6d\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x64\x00\x75\x00\x20\x00\ +\x61\x00\x6c\x00\x6c\x00\x74\x00\x69\x00\x64\x00\x20\x00\x61\x00\ +\x74\x00\x74\x00\x20\x00\x73\x00\x6e\x00\xe4\x00\x70\x00\x70\x00\ +\x61\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\ +\x65\x00\x66\x00\x69\x00\x6e\x00\x74\x00\x6c\x00\x69\x00\x67\x00\ +\x61\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x65\x00\x6d\x00\xe5\x00\ +\x6c\x00\x20\x00\x6d\x00\x65\x00\x64\x00\x61\x00\x6e\x00\x20\x00\ +\x64\x00\x75\x00\x20\x00\x72\x00\x69\x00\x74\x00\x61\x00\x72\x00\ +\x2e\x00\x20\x00\x4f\x00\x6d\x00\x20\x00\x69\x00\x6e\x00\x74\x00\ +\x65\x00\x2c\x00\x20\x00\x73\x00\xe5\x00\x20\x00\x6b\x00\x6f\x00\ +\x6d\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x64\x00\x75\x00\x20\x00\ +\x65\x00\x6e\x00\x64\x00\x61\x00\x73\x00\x74\x00\x20\x00\x61\x00\ +\x74\x00\x74\x00\x20\x00\x73\x00\x6e\x00\xe4\x00\x70\x00\x70\x00\ +\x61\x00\x20\x00\x6e\x00\xe4\x00\x72\x00\x20\x00\x64\x00\x75\x00\ +\x20\x00\x74\x00\x72\x00\x79\x00\x63\x00\x6b\x00\x65\x00\x72\x00\ +\x20\x00\x70\x00\xe5\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\x20\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\ +\x00\x65\x00\x72\x00\x61\x00\x20\x00\x2a\x00\x62\x00\x6c\x00\x6f\ +\x00\x63\x00\x6b\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\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\ +\x00\x65\x00\x72\x00\x61\x00\x20\x00\x4f\x00\x43\x00\x41\x00\x20\ +\x00\x61\x00\x72\x00\x65\x00\x6f\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\x24\x00\x49\x00\x6d\ +\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x00\x61\x00\x20\ +\x00\x6c\x00\x61\x00\x79\x00\x6f\x00\x75\x00\x74\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\x1c\ +\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\ +\x00\x61\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\x40\x00\x49\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x00\x61\x00\x20\x00\x74\ +\x00\x65\x00\x78\x00\x74\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x63\ +\x00\x68\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\ +\x00\x69\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\x26\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x65\x00\x72\x00\x61\x00\x2f\x00\x45\x00\x78\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0d\x49\x6d\x70\x6f\x72\x74\x2f\x45\x78\ +\x70\x6f\x72\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x49\x00\x6e\ +\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x20\x00\x70\x00\x72\x00\x65\ +\x00\x63\x00\x69\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x6e\ +\x00\x69\x00\x76\x00\xe5\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\x1e\ +\x00\x46\x00\xf6\x00\x72\x00\x65\x00\x6e\x00\x61\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\x2c\x00\x56\x00\ +\xe4\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x72\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\x22\x00\x48\ +\x00\x75\x00\x76\x00\x75\x00\x64\x00\x6c\x00\x69\x00\x6e\x00\x6a\ +\x00\x65\x00\x72\x00\x20\x00\x76\x00\x61\x00\x72\x00\x6a\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x4d\x61\x69\x6e\x20\x6c\ +\x69\x6e\x65\x73\x20\x65\x76\x65\x72\x79\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\xa6\x00\x48\x00\x75\x00\x76\x00\x75\x00\x64\x00\x6c\x00\x69\ +\x00\x6e\x00\x6a\x00\x65\x00\x72\x00\x20\x00\x6b\x00\x6f\x00\x6d\ +\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\ +\x00\x72\x00\x69\x00\x74\x00\x61\x00\x73\x00\x20\x00\x74\x00\x6a\ +\x00\x6f\x00\x63\x00\x6b\x00\x61\x00\x72\x00\x65\x00\x2e\x00\x20\ +\x00\x41\x00\x6e\x00\x67\x00\x65\x00\x20\x00\x68\x00\xe4\x00\x72\ +\x00\x20\x00\x68\x00\x75\x00\x72\x00\x20\x00\x6d\x00\xe5\x00\x6e\ +\x00\x67\x00\x61\x00\x20\x00\x72\x00\x75\x00\x74\x00\x6f\x00\x72\ +\x00\x20\x00\x6d\x00\x65\x00\x6c\x00\x6c\x00\x61\x00\x6e\x00\x20\ +\x00\x68\x00\x75\x00\x76\x00\x75\x00\x64\x00\x6c\x00\x69\x00\x6e\ +\x00\x6a\x00\x65\x00\x72\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\x00\x49\x00\x6e\x00\x67\x00\x65\x00\x74\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\x20\x00\x49\x00\x6e\x00\x67\x00\x65\x00\x6e\x00\x20\x00\ +\x28\x00\x73\x00\x6e\x00\x61\x00\x62\x00\x62\x00\x61\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\x01\x1c\x00\x45\x00\x66\x00\x74\x00\x65\x00\x72\x00\x20\x00\ +\x6b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x72\x00\x69\x00\x6e\x00\ +\x67\x00\x20\x00\x61\x00\x76\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x2c\x00\x20\x00\x73\x00\xe5\x00\x20\x00\ +\x62\x00\x6c\x00\x69\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x6e\x00\x6f\x00\ +\x72\x00\x6d\x00\x61\x00\x6c\x00\x74\x00\x20\x00\x6d\x00\x61\x00\ +\x72\x00\x6b\x00\x65\x00\x72\x00\x61\x00\x64\x00\x65\x00\x2e\x00\ +\x20\x00\x4f\x00\x6d\x00\x20\x00\x64\x00\x65\x00\x74\x00\x74\x00\ +\x61\x00\x20\x00\x61\x00\x6c\x00\x74\x00\x65\x00\x72\x00\x6e\x00\ +\x61\x00\x74\x00\x69\x00\x76\x00\x20\x00\xe4\x00\x72\x00\x20\x00\ +\x6d\x00\x61\x00\x72\x00\x6b\x00\x65\x00\x72\x00\x61\x00\x74\x00\ +\x2c\x00\x20\x00\x73\x00\xe5\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\ +\x6d\x00\x65\x00\x72\x00\x20\x00\x67\x00\x72\x00\x75\x00\x6e\x00\ +\x64\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\ +\x6e\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\x6d\x00\x61\x00\ +\x72\x00\x6b\x00\x65\x00\x72\x00\x61\x00\x73\x00\x20\x00\x69\x00\ +\x73\x00\x74\x00\xe4\x00\x6c\x00\x6c\x00\x65\x00\x74\x00\x2e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x7f\x4e\x6f\x72\x6d\x61\x6c\x6c\ +\x79\x2c\x20\x61\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\x6e\x67\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\x74\x68\x65\x20\x63\x6f\ +\x70\x69\x65\x73\x20\x67\x65\x74\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x2e\x20\x49\x66\x20\x74\x68\x69\x73\x20\x6f\x70\x74\x69\x6f\ +\x6e\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\ +\x65\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\ +\x69\x6c\x6c\x20\x62\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x69\x6e\x73\x74\x65\x61\x64\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\ +\x00\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\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\x38\x00\x4f\x00\x72\ +\x00\x69\x00\x67\x00\x69\x00\x6e\x00\x61\x00\x6c\x00\x20\x00\x66\ +\x00\xe4\x00\x72\x00\x67\x00\x20\x00\x6f\x00\x63\x00\x68\x00\x20\ +\x00\x6c\x00\x69\x00\x6e\x00\x6a\x00\x65\x00\x62\x00\x72\x00\x65\ +\x00\x64\x00\x64\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\x48\x00\xf6\x00\x67\x00\x65\x00\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x05\x52\x69\x67\x68\x74\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x2a\x00\x53\x00\x56\x00\x47\x00\x2d\x00\x66\x00\x6f\x00\ +\x72\x00\x6d\x00\x61\x00\x74\x00\x20\x00\x61\x00\x6c\x00\x74\x00\ +\x65\x00\x72\x00\x6e\x00\x61\x00\x74\x00\x69\x00\x76\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x12\x53\x56\x47\x20\x66\x6f\x72\x6d\x61\ +\x74\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x64\x00\x53\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x6e\x00\ +\x75\x00\x76\x00\x61\x00\x72\x00\x61\x00\x6e\x00\x64\x00\x65\x00\ +\x20\x00\x66\x00\xe4\x00\x72\x00\x67\x00\x20\x00\x6f\x00\x63\x00\ +\x68\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x6a\x00\x65\x00\x62\x00\ +\x72\x00\x65\x00\x64\x00\x64\x00\x20\x00\xf6\x00\x76\x00\x65\x00\ +\x72\x00\x20\x00\x73\x00\x65\x00\x73\x00\x73\x00\x69\x00\x6f\x00\ +\x6e\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\x40\x00\x56\x00\xe4\x00\x6c\x00\x6a\x00\ +\x20\x00\x67\x00\x72\x00\x75\x00\x6e\x00\x64\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x65\x00\x66\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\ +\x72\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\x18\x00\x53\x00\x6e\x00\x65\ +\x00\x64\x00\x73\x00\x74\x00\x72\x00\x65\x00\x63\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\x18\x00\x53\x00\x6e\x00\ +\x65\x00\x64\x00\x73\x00\x74\x00\x72\x00\x65\x00\x63\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\x18\x00\x73\x00\x6e\ +\x00\x65\x00\x64\x00\x73\x00\x74\x00\x72\x00\x65\x00\x63\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\x12\x00\x53\x00\ +\x6e\x00\xe4\x00\x70\x00\x70\x00\x66\x00\xe4\x00\x72\x00\x67\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x53\x6e\x61\x70\x20\x63\x6f\ +\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x53\x00\x6e\x00\ +\xe4\x00\x70\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\x16\x00\x53\x00\x6e\x00\xe4\x00\x70\x00\ +\x70\x00\x6f\x00\x6d\x00\x72\x00\xe5\x00\x64\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\x14\x00\x55\x00\x70\x00\x70\x00\ +\x67\x00\x69\x00\x66\x00\x74\x00\x73\x00\x76\x00\x79\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\x32\x00\x42\x00\x65\x00\x67\x00\x72\x00\ +\xe4\x00\x6e\x00\x73\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x73\x00\ +\x20\x00\x6c\x00\xe5\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x67\x00\ +\x65\x00\x6e\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1d\x54\x68\x65\x20\x43\x6f\x6e\x73\x74\x72\x61\x69\x6e\ +\x69\x6e\x67\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x20\x00\x41\x00\x6c\x00\x74\x00\x20\ +\x00\x6c\x00\xe5\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x65\ +\x00\x6e\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x54\x68\x65\x20\x61\x6c\x74\x20\x6d\x6f\x64\x69\x66\x69\ +\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x84\x00\x46\ +\x00\xe4\x00\x72\x00\x67\x00\x6d\x00\x61\x00\x70\x00\x70\x00\x6e\ +\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x20\x00\x66\x00\x69\x00\x6c\ +\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\xf6\x00\x76\x00\x65\ +\x00\x72\x00\x73\x00\xe4\x00\x74\x00\x74\x00\x6e\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x61\x00\x76\x00\x20\x00\x64\x00\x78\x00\x66\ +\x00\x20\x00\x66\x00\xe4\x00\x72\x00\x67\x00\x65\x00\x72\x00\x20\ +\x00\x74\x00\x69\x00\x6c\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\x7a\x00\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\ +\x61\x00\x72\x00\x64\x00\x6d\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\ +\x6e\x00\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x6e\x00\ +\x76\x00\xe4\x00\x6e\x00\x64\x00\x73\x00\x20\x00\x6e\x00\xe4\x00\ +\x72\x00\x20\x00\x64\x00\x75\x00\x20\x00\x73\x00\x6b\x00\x61\x00\ +\x70\x00\x61\x00\x72\x00\x20\x00\x65\x00\x74\x00\x74\x00\x20\x00\ +\x6e\x00\x79\x00\x74\x00\x74\x00\x20\x00\x72\x00\x69\x00\x74\x00\ +\x6e\x00\x69\x00\x6e\x00\x67\x00\x73\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\x92\x00\x41\ +\x00\x6e\x00\x74\x00\x61\x00\x6c\x00\x65\x00\x74\x00\x20\x00\x64\ +\x00\x65\x00\x63\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\x61\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\x74\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x72\x00\x20\ +\x00\x28\x00\x74\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x65\x00\x78\ +\x00\x65\x00\x6d\x00\x70\x00\x65\x00\x6c\x00\x20\x00\x33\x00\x20\ +\x00\x3d\x00\x20\x00\x30\x00\x2c\x00\x30\x00\x30\x00\x31\x00\x29\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x54\x68\x65\x20\x6e\x75\ +\x6d\x62\x65\x72\x20\x6f\x66\x20\x64\x65\x63\x69\x6d\x61\x6c\x73\ +\x20\x69\x6e\x20\x69\x6e\x74\x65\x72\x6e\x61\x6c\x20\x63\x6f\x6f\ +\x72\x64\x69\x6e\x61\x74\x65\x73\x20\x6f\x70\x65\x72\x61\x74\x69\ +\x6f\x6e\x73\x20\x28\x66\x6f\x72\x20\x65\x78\x2e\x20\x33\x20\x3d\ +\x20\x30\x2e\x30\x30\x31\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa4\x00\ +\x52\x00\x61\x00\x64\x00\x69\x00\x65\x00\x6e\x00\x20\x00\x66\x00\ +\xf6\x00\x72\x00\x20\x00\x73\x00\x6e\x00\xe4\x00\x70\x00\x70\x00\ +\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x73\x00\x70\x00\x65\x00\x63\x00\x69\x00\x61\x00\ +\x6c\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x65\x00\x72\x00\ +\x2e\x00\x20\x00\x53\x00\xe4\x00\x74\x00\x74\x00\x20\x00\x74\x00\ +\x69\x00\x6c\x00\x6c\x00\x20\x00\x30\x00\x20\x00\x66\x00\xf6\x00\ +\x72\x00\x20\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x6e\x00\x20\x00\ +\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x73\x00\x20\x00\ +\x28\x00\x6f\x00\xe4\x00\x6e\x00\x64\x00\x6c\x00\x69\x00\x67\x00\ +\x74\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\x24\x00\x53\x00\x6e\x00\xe4\x00\x70\x00\x70\x00\x20\x00\ +\x6c\x00\xe5\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x65\x00\ +\x6e\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x15\x54\x68\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\x64\x69\x66\x69\ +\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x41\ +\x00\x76\x00\x73\x00\x74\x00\xe5\x00\x6e\x00\x64\x00\x65\x00\x74\ +\x00\x20\x00\x6d\x00\x65\x00\x6c\x00\x6c\x00\x61\x00\x6e\x00\x20\ +\x00\x76\x00\x61\x00\x72\x00\x6a\x00\x65\x00\x20\x00\x72\x00\x75\ +\x00\x74\x00\x6e\x00\xe4\x00\x74\x00\x73\x00\x6c\x00\x69\x00\x6e\ +\x00\x6a\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\x02\x1c\x00\x44\x00\x65\x00\x74\x00\x74\ +\x00\x61\x00\x20\x00\xe4\x00\x72\x00\x20\x00\x64\x00\x65\x00\x74\ +\x00\x20\x00\x67\x00\x72\x00\xe4\x00\x6e\x00\x73\x00\x73\x00\x6e\ +\x00\x69\x00\x74\x00\x74\x00\x73\x00\x6c\x00\xe4\x00\x67\x00\x65\ +\x00\x20\x00\x69\x00\x20\x00\x76\x00\x69\x00\x6c\x00\x6b\x00\x65\ +\x00\x74\x00\x20\x00\x73\x00\x6b\x00\x69\x00\x73\x00\x73\x00\x6d\ +\x00\x6f\x00\x64\x00\x75\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x6b\ +\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x61\x00\x74\ +\x00\x74\x00\x20\x00\x61\x00\x72\x00\x62\x00\x65\x00\x74\x00\x61\ +\x00\x3a\x00\x20\x00\x56\x00\x65\x00\x72\x00\x6b\x00\x74\x00\x79\ +\x00\x67\x00\x73\x00\x66\x00\xe4\x00\x6c\x00\x74\x00\x20\x00\x6c\ +\x00\xe4\x00\x67\x00\x65\x00\x74\x00\x20\x00\x6b\x00\x6f\x00\x6d\ +\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\ +\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x72\x00\x61\x00\x20\ +\x00\x61\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x73\x00\x6b\x00\x69\ +\x00\x73\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\xe4\ +\x00\x6c\x00\x6c\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x61\x00\x72\ +\x00\x20\x00\x69\x00\x20\x00\x65\x00\x74\x00\x74\x00\x20\x00\x73\ +\x00\x65\x00\x70\x00\x61\x00\x72\x00\x61\x00\x74\x00\x20\x00\x76\ +\x00\x65\x00\x72\x00\x6b\x00\x74\x00\x79\x00\x67\x00\x73\x00\x66\ +\x00\xe4\x00\x6c\x00\x74\x00\x2c\x00\x20\x00\x6d\x00\x65\x00\x64\ +\x00\x61\x00\x6e\x00\x20\x00\x41\x00\x6b\x00\x74\x00\x69\x00\x76\ +\x00\x69\x00\x74\x00\x65\x00\x74\x00\x73\x00\x66\x00\xe4\x00\x6c\ +\x00\x74\x00\x73\x00\x20\x00\x6c\x00\xe4\x00\x67\x00\x65\x00\x74\ +\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x72\x00\x20\ +\x00\x61\x00\x74\x00\x74\x00\x20\x00\x61\x00\x6e\x00\x76\x00\xe4\ +\x00\x6e\x00\x64\x00\x61\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\ +\x00\x43\x00\x41\x00\x44\x00\x27\x00\x73\x00\x20\x00\x75\x00\x70\ +\x00\x70\x00\x67\x00\x69\x00\x66\x00\x74\x00\x73\x00\x76\x00\x79\ +\x00\x73\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x20\x00\x66\ +\x00\xf6\x00\x72\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x61\x00\x20\ +\x00\x73\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x61\x00\x6e\x00\x76\ +\x00\xe4\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x69\x00\x6e\x00\x74\ +\x00\x65\x00\x72\x00\x61\x00\x6b\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\xcf\x54\x68\ +\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x55\x49\x20\x6d\x6f\x64\ +\x65\x20\x69\x6e\x20\x77\x68\x69\x63\x68\x20\x74\x68\x65\x20\x44\ +\x72\x61\x66\x74\x20\x6d\x6f\x64\x75\x6c\x65\x20\x77\x69\x6c\x6c\ +\x20\x77\x6f\x72\x6b\x3a\x20\x54\x6f\x6f\x6c\x62\x61\x72\x20\x6d\ +\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x70\x6c\x61\x63\x65\x20\x61\ +\x6c\x6c\x20\x44\x72\x61\x66\x74\x20\x73\x65\x74\x74\x69\x6e\x67\ +\x73\x20\x69\x6e\x20\x61\x20\x73\x65\x70\x61\x72\x61\x74\x65\x20\ +\x74\x6f\x6f\x6c\x62\x61\x72\x2c\x20\x77\x68\x69\x6c\x65\x20\x74\ +\x61\x73\x6b\x62\x61\x72\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\ +\x20\x75\x73\x65\x20\x74\x68\x65\x20\x46\x72\x65\x65\x43\x41\x44\ +\x20\x54\x61\x73\x6b\x76\x69\x65\x77\x20\x73\x79\x73\x74\x65\x6d\ +\x20\x66\x6f\x72\x20\x61\x6c\x6c\x20\x69\x74\x73\x20\x75\x73\x65\ +\x72\x20\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x6f\x6e\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x86\x00\x44\x00\x65\x00\x74\x00\x74\x00\x61\x00\ +\x20\x00\xe4\x00\x72\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\ +\x64\x00\x61\x00\x72\x00\x64\x00\x66\x00\xe4\x00\x72\x00\x67\x00\ +\x65\x00\x6e\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x73\x00\x6f\x00\ +\x6d\x00\x20\x00\x72\x00\x69\x00\x74\x00\x61\x00\x74\x00\x73\x00\ +\x20\x00\x69\x00\x20\x00\x6b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\ +\x72\x00\x75\x00\x6b\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\ +\x6c\x00\xe4\x00\x67\x00\x65\x00\x74\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\xf0\x00\x44\x00\x65\x00\x74\ +\x00\x74\x00\x61\x00\x20\x00\xe4\x00\x72\x00\x20\x00\x6e\x00\x61\ +\x00\x6d\x00\x6e\x00\x65\x00\x74\x00\x20\x00\x70\x00\xe5\x00\x20\ +\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\ +\x00\x74\x00\x79\x00\x70\x00\x73\x00\x6e\x00\x69\x00\x74\x00\x74\ +\x00\x65\x00\x74\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\x61\ +\x00\x6c\x00\x6c\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\ +\x00\x6f\x00\x63\x00\x68\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\ +\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x72\x00\x2e\ +\x00\x0a\x00\x44\x00\x65\x00\x74\x00\x20\x00\x6b\x00\x61\x00\x6e\ +\x00\x20\x00\x76\x00\x61\x00\x72\x00\x61\x00\x20\x00\x65\x00\x74\ +\x00\x74\x00\x20\x00\x74\x00\x79\x00\x70\x00\x73\x00\x6e\x00\x69\ +\x00\x74\x00\x74\x00\x73\x00\x6e\x00\x61\x00\x6d\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\x0a\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\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x20\ +\x00\x66\x00\x61\x00\x6d\x00\x69\x00\x6c\x00\x6a\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\x48\x00\x65\x00\x6c\x00\x76\x00\x65\x00\x74\ +\x00\x69\x00\x63\x00\x61\x00\x2c\x00\x73\x00\x61\x00\x6e\x00\x73\ +\x00\x22\x00\x20\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\ +\x00\x65\x00\x74\x00\x74\x00\x20\x00\x6e\x00\x61\x00\x6d\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\x0a\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\x6c\x00\x44\ +\x00\x65\x00\x74\x00\x74\x00\x61\x00\x20\x00\xe4\x00\x72\x00\x20\ +\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\ +\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\x6e\x00\x61\x00\x6d\ +\x00\x6e\x00\x65\x00\x74\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\ +\x00\x6b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\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\x8e\x00\x44\x00\x65\x00\x74\x00\x74\x00\x61\x00\x20\ +\x00\xe4\x00\x72\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x76\ +\x00\x61\x00\x6c\x00\x64\x00\x61\x00\x20\x00\x6d\x00\x65\x00\x74\ +\x00\x6f\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x66\x00\xf6\x00\x72\ +\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x20\ +\x00\x61\x00\x76\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x66\x00\xe4\x00\x72\ +\x00\x67\x00\x65\x00\x72\x00\x20\x00\x74\x00\x69\x00\x6c\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\xd6\x00\x44\x00\x65\x00\ +\x74\x00\x74\x00\x61\x00\x20\x00\xe4\x00\x72\x00\x20\x00\x64\x00\ +\x65\x00\x6e\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x6f\x00\x64\x00\ +\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\xe4\x00\x72\x00\x20\x00\ +\x76\x00\x61\x00\x6c\x00\x64\x00\x20\x00\x66\x00\xf6\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\xf6\x00\x76\x00\ +\x65\x00\x72\x00\x73\x00\xe4\x00\x74\x00\x74\x00\x6e\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x61\x00\x76\x00\x20\x00\x44\x00\x58\x00\ +\x46\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x66\x00\xe4\x00\x72\x00\x67\x00\x20\x00\x74\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\ +\x44\x00\x2e\x00\x20\x00\x0a\x00\x4f\x00\x6d\x00\x20\x00\x66\x00\ +\xe4\x00\x72\x00\x67\x00\x6d\x00\x61\x00\x70\x00\x70\x00\x6e\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\xe4\x00\x72\x00\x20\x00\x76\x00\ +\x61\x00\x6c\x00\x74\x00\x20\x00\x73\x00\xe5\x00\x20\x00\x6d\x00\ +\xe5\x00\x73\x00\x74\x00\x65\x00\x20\x00\x64\x00\x75\x00\x20\x00\ +\x76\x00\xe4\x00\x6c\x00\x6a\x00\x61\x00\x20\x00\x65\x00\x6e\x00\ +\x20\x00\x66\x00\xe4\x00\x72\x00\x67\x00\x6d\x00\x61\x00\x70\x00\ +\x70\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\xe5\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\ +\x20\x00\x65\x00\x6e\x00\x20\x00\xf6\x00\x76\x00\x65\x00\x72\x00\ +\x73\x00\xe4\x00\x74\x00\x74\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\ +\x73\x00\x74\x00\x61\x00\x62\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\ +\x73\x00\x6f\x00\x6d\x00\x20\x00\x6b\x00\x6f\x00\x6e\x00\x76\x00\ +\x65\x00\x72\x00\x74\x00\x65\x00\x72\x00\x61\x00\x72\x00\x20\x00\ +\x66\x00\xe4\x00\x72\x00\x67\x00\x65\x00\x72\x00\x20\x00\x74\x00\ +\x69\x00\x6c\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\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\xe0\x00\x44\x00\x65\x00\x74\x00\x74\x00\x61\ +\x00\x20\x00\xe4\x00\x72\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\ +\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x65\ +\x00\x78\x00\x74\x00\x65\x00\x6e\x00\x73\x00\x20\x00\x70\x00\x6c\ +\x00\x61\x00\x63\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x20\ +\x00\x6e\x00\xe4\x00\x72\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\ +\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x72\x00\x6e\ +\x00\x61\x00\x20\x00\xe4\x00\x72\x00\x20\x00\x76\x00\x65\x00\x72\ +\x00\x74\x00\x69\x00\x6b\x00\x61\x00\x6c\x00\x61\x00\x2e\x00\x20\ +\x00\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\ +\x00\x20\x00\xe4\x00\x72\x00\x20\x00\x76\x00\xe4\x00\x6e\x00\x73\ +\x00\x74\x00\x65\x00\x72\x00\x2c\x00\x20\x00\x76\x00\x69\x00\x6c\ +\x00\x6b\x00\x65\x00\x74\x00\x20\x00\xe4\x00\x72\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\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\x00\x44\x00\x65\x00\x74\x00\x74\x00\x61\ +\x00\x20\x00\xe4\x00\x72\x00\x20\x00\x64\x00\x65\x00\x74\x00\x20\ +\x00\x76\x00\xe4\x00\x72\x00\x64\x00\x65\x00\x20\x00\x73\x00\x6f\ +\x00\x6d\x00\x20\x00\x61\x00\x6e\x00\x76\x00\xe4\x00\x6e\x00\x64\ +\x00\x73\x00\x20\x00\x61\x00\x76\x00\x20\x00\x66\x00\x75\x00\x6e\ +\x00\x6b\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x72\x00\x20\ +\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\x61\x00\x6e\x00\x76\x00\xe4\ +\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x20\ +\x00\x74\x00\x6f\x00\x6c\x00\x65\x00\x72\x00\x61\x00\x6e\x00\x73\ +\x00\x2e\x00\x20\x00\x56\x00\xe4\x00\x72\x00\x64\x00\x65\x00\x6e\ +\x00\x20\x00\x6d\x00\x65\x00\x64\x00\x20\x00\x73\x00\x6b\x00\x69\ +\x00\x6c\x00\x6c\x00\x6e\x00\x61\x00\x64\x00\x65\x00\x72\x00\x20\ +\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\ +\x00\x74\x00\x74\x00\x61\x00\x20\x00\x76\x00\xe4\x00\x72\x00\x64\ +\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x72\ +\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\x62\x00\x65\x00\x68\ +\x00\x61\x00\x6e\x00\x64\x00\x6c\x00\x61\x00\x73\x00\x20\x00\x73\ +\x00\x6f\x00\x6d\x00\x20\x00\x73\x00\x61\x00\x6d\x00\x6d\x00\x61\ +\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7b\x54\x68\x69\x73\ +\x20\x69\x73\x20\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\x75\x73\ +\x65\x64\x20\x62\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\ +\x74\x68\x61\x74\x20\x75\x73\x65\x20\x61\x20\x74\x6f\x6c\x65\x72\ +\x61\x6e\x63\x65\x2e\x0a\x56\x61\x6c\x75\x65\x73\x20\x77\x69\x74\ +\x68\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x63\x65\x73\x20\x62\x65\ +\x6c\x6f\x77\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x77\ +\x69\x6c\x6c\x20\x62\x65\x20\x74\x72\x65\x61\x74\x65\x64\x20\x61\ +\x73\x20\x73\x61\x6d\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\ +\x54\x00\x6f\x00\x6c\x00\x65\x00\x72\x00\x61\x00\x6e\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\x6f\x6c\x65\x72\x61\x6e\ +\x63\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x56\x00\x65\x00\x72\ +\x00\x6b\x00\x74\x00\x79\x00\x67\x00\x73\x00\x66\x00\xe4\x00\x6c\ +\x00\x74\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\x41\x00\x6e\x00\ +\x76\x00\xe4\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x74\x00\x61\x00\ +\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x66\x00\xe4\x00\x72\x00\ +\x67\x00\x20\x00\x6f\x00\x63\x00\x68\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x6a\x00\x65\x00\x62\x00\x72\x00\x65\x00\x64\x00\x64\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x55\x73\x65\x20\x64\x65\x66\ +\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\ +\x69\x6e\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\ +\x00\x41\x00\x6e\x00\x76\x00\xe4\x00\x6e\x00\x64\x00\x20\x00\x72\ +\x00\x75\x00\x74\x00\x6e\x00\xe4\x00\x74\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\x54\x00\x65\x00\x78\x00\x74\x00\x6f\x00\x72\ +\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x69\x00\x6e\ +\x00\x67\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\x76\x00\x65\ +\x00\x72\x00\x74\x00\x69\x00\x6b\x00\x61\x00\x6c\x00\x61\x00\x20\ +\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\ +\x00\x6e\x00\x65\x00\x72\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\x6a\x00\x56\x00\x69\ +\x00\x64\x00\x20\x00\x65\x00\x78\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\x6c\ +\x00\x20\x00\x44\x00\x58\x00\x46\x00\x2c\x00\x20\x00\x73\x00\xe5\ +\x00\x20\x00\x6f\x00\x6d\x00\x76\x00\x61\x00\x6e\x00\x64\x00\x6c\ +\x00\x61\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x74\x00\x69\ +\x00\x6c\x00\x6c\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\x44\x00\x65\ +\x00\x74\x00\x74\x00\x61\x00\x20\x00\x76\x00\xe4\x00\x72\x00\x64\ +\x00\x65\x00\x20\x00\xe4\x00\x72\x00\x20\x00\x64\x00\x65\x00\x6e\ +\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x61\x00\x6c\ +\x00\x61\x00\x20\x00\x6c\x00\xe4\x00\x6e\x00\x67\x00\x64\x00\x65\ +\x00\x6e\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\x76\x00\x61\ +\x00\x72\x00\x6a\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\x2e\x00\x20\x00\x4f\x00\x6d\ +\x00\x20\x00\x30\x00\x2c\x00\x20\x00\x73\x00\xe5\x00\x20\x00\x62\ +\x00\x65\x00\x68\x00\x61\x00\x6e\x00\x64\x00\x6c\x00\x61\x00\x73\ +\x00\x20\x00\x68\x00\x65\x00\x6c\x00\x61\x00\x20\x00\x73\x00\x70\ +\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x6f\ +\x00\x6d\x00\x20\x00\x65\x00\x74\x00\x74\x00\x20\x00\x72\x00\x61\ +\x00\x6b\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\x12\x00\x58\x00\x5a\x00\x20\x00\x28\x00\x46\ +\x00\x72\x00\x61\x00\x6d\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\x73\x00\x69\ +\x00\x64\x00\x61\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\ +\x59\x5a\x20\x28\x53\x69\x64\x65\x29\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x06\x00\x41\x00\x4c\x00\x54\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x03\x61\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xbc\x00\x4d\x00\x61\ +\x00\x72\x00\x6b\x00\x65\x00\x72\x00\x61\x00\x20\x00\x64\x00\x65\ +\x00\x74\x00\x74\x00\x61\x00\x20\x00\x61\x00\x6c\x00\x74\x00\x65\ +\x00\x72\x00\x6e\x00\x61\x00\x74\x00\x69\x00\x76\x00\x20\x00\x6f\ +\x00\x6d\x00\x20\x00\x64\x00\x75\x00\x20\x00\x76\x00\x69\x00\x6c\ +\x00\x6c\x00\x20\x00\x61\x00\x6e\x00\x76\x00\xe4\x00\x6e\x00\x64\ +\x00\x61\x00\x20\x00\x66\x00\xe4\x00\x72\x00\x67\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\x6e\x00\x20\x00\x66\x00\x72\x00\xe5\x00\x6e\ +\x00\x20\x00\x76\x00\x65\x00\x72\x00\x6b\x00\x74\x00\x79\x00\x67\ +\x00\x73\x00\x66\x00\xe4\x00\x6c\x00\x74\x00\x65\x00\x74\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\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\x38\x00\x4f\x00\x6d\x00\x20\x00\x64\x00\x65\x00\ +\x74\x00\x74\x00\x61\x00\x20\x00\xe4\x00\x72\x00\x20\x00\x6d\x00\ +\x61\x00\x72\x00\x6b\x00\x65\x00\x72\x00\x61\x00\x74\x00\x2c\x00\ +\x20\x00\x73\x00\xe5\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x6d\x00\ +\x65\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x20\x00\x66\x00\x72\x00\xe5\x00\x6e\x00\x20\x00\x73\x00\ +\x61\x00\x6d\x00\x6d\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x67\x00\ +\x65\x00\x72\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\x66\x00\ +\xf6\x00\x72\x00\x65\x00\x6e\x00\x61\x00\x73\x00\x20\x00\x74\x00\ +\x69\x00\x6c\x00\x6c\x00\x20\x00\x73\x00\x6b\x00\x69\x00\x73\x00\ +\x73\x00\x62\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x2c\x00\x20\x00\ +\x76\x00\x69\x00\x6c\x00\x6b\x00\x65\x00\x74\x00\x20\x00\x67\x00\ +\x65\x00\x72\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x62\x00\x62\x00\ +\x61\x00\x72\x00\x65\x00\x20\x00\x73\x00\x6b\x00\xe4\x00\x72\x00\ +\x6d\x00\x75\x00\x70\x00\x70\x00\x64\x00\x61\x00\x74\x00\x65\x00\ +\x72\x00\x69\x00\x6e\x00\x67\x00\x2c\x00\x20\x00\x6d\x00\x65\x00\ +\x6e\x00\x20\x00\x72\x00\x65\x00\x64\x00\x75\x00\x63\x00\x65\x00\ +\x72\x00\x61\x00\x72\x00\x20\x00\x72\x00\x65\x00\x64\x00\x69\x00\ +\x67\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x66\x00\ +\xf6\x00\x72\x00\x6d\x00\xe5\x00\x67\x00\x61\x00\x6e\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\x8c\x00\x6f\x00\x6d\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x6e\ +\x00\x61\x00\x20\x00\xe4\x00\x72\x00\x20\x00\x69\x00\x6b\x00\x72\ +\x00\x79\x00\x73\x00\x73\x00\x61\x00\x64\x00\x20\x00\x73\x00\xe5\ +\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x72\x00\x20\ +\x00\x70\x00\x61\x00\x70\x00\x70\x00\x65\x00\x72\x00\x73\x00\x72\ +\x00\x79\x00\x6d\x00\x64\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\x69\ +\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x00\x61\ +\x00\x73\x00\x20\x00\x6f\x00\x63\x00\x6b\x00\x73\x00\xe5\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\x84\x00\x4f\x00\x6d\ +\x00\x20\x00\x64\x00\x65\x00\x74\x00\x74\x00\x61\x00\x20\x00\x69\ +\x00\x6e\x00\x74\x00\x65\x00\x20\x00\xe4\x00\x72\x00\x20\x00\x69\ +\x00\x6b\x00\x72\x00\x79\x00\x73\x00\x73\x00\x61\x00\x64\x00\x2c\ +\x00\x20\x00\x73\x00\xe5\x00\x20\x00\x6b\x00\x6f\x00\x6d\x00\x6d\ +\x00\x65\x00\x72\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x65\ +\x00\x72\x00\x2f\x00\x6d\x00\x74\x00\x65\x00\x78\x00\x74\x00\x73\ +\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x69\x00\x6d\ +\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x00\x61\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x34\x69\x66\x20\x74\x68\x69\ +\x73\x20\x69\x73\x20\x75\x6e\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\ +\x74\x65\x78\x74\x73\x2f\x6d\x74\x65\x78\x74\x73\x20\x77\x6f\x6e\ +\x27\x74\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x04\x00\x70\x00\x78\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x02\x70\x78\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x53\ +\x00\x4b\x00\x49\x00\x46\x00\x54\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x73\x68\x69\x66\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\ +\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\ +\x66\x00\xe4\x00\x72\x00\x67\x00\x65\x00\x6e\x00\x20\x00\x66\x00\ +\xf6\x00\x72\x00\x20\x00\x6e\x00\x79\x00\x61\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\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\x3c\x00\x73\x00\x74\ +\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x66\x00\xe4\ +\x00\x72\x00\x67\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\x73\ +\x00\x6e\x00\xe4\x00\x70\x00\x70\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\x44\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\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\x6e\x00\x79\ +\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x53\x00\x26\x00\x74\x00\xe4\x00\ +\x6e\x00\x67\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\ +\xe4\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\x10\x00\x4b\x00\x26\x00\x6f\x00\x70\ +\x00\x69\x00\x65\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x26\x43\x6f\x70\x79\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0c\x00\x26\x00\x4b\x00\x6c\x00\x61\x00\ +\x72\x00\x74\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\x20\x00\x26\x00\x4f\x00\x43\x00\x43\x00\x2d\x00\x73\ +\x00\x74\x00\x69\x00\x6c\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\xc5\x00\x6e\x00\x26\x00\x67\x00\x72\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x26\x55\x6e\x64\x6f\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x26\x00\ +\x52\x00\x65\x00\x6e\x00\x73\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x05\x26\x57\x69\x70\x65\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x24\x00\x41\x00\x6b\x00\x74\x00\x69\ +\x00\x76\x00\x74\x00\x20\x00\x72\x00\x69\x00\x74\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\x60\x00\x41\x00\x6b\x00\x74\ +\x00\x69\x00\x76\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x20\x00\x6d\x00\xe5\x00\x73\x00\x74\x00\x65\ +\x00\x20\x00\x68\x00\x61\x00\x20\x00\x6d\x00\x65\x00\x72\x00\x20\ +\x00\xe4\x00\x6e\x00\x20\x00\x74\x00\x76\x00\xe5\x00\x20\x00\x70\ +\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x65\x00\x72\x00\x2f\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\x58\x00\x4c\x00\xe4\x00\x67\x00\x67\x00\ +\x20\x00\x74\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x70\x00\x75\x00\ +\x6e\x00\x6b\x00\x74\x00\x65\x00\x72\x00\x20\x00\x74\x00\x69\x00\ +\x6c\x00\x6c\x00\x20\x00\x64\x00\x65\x00\x74\x00\x20\x00\x61\x00\ +\x6b\x00\x74\x00\x75\x00\x65\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\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\xd6\x00\x70\x00\ +\x70\x00\x6e\x00\x69\x00\x6e\x00\x67\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\x10\x41\x70\x65\x72\x74\x75\x72\x65\x20\x61\x6e\ +\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x32\x00\x41\x00\x70\x00\x70\x00\x6c\x00\x69\x00\ +\x63\x00\x65\x00\x72\x00\x61\x00\x20\x00\x70\x00\xe5\x00\x20\x00\ +\x76\x00\x61\x00\x6c\x00\x64\x00\x61\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\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\x14\x00\x43\x00\x69\x00\x72\ +\x00\x6b\x00\x65\x00\x6c\x00\x62\x00\xe5\x00\x67\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\x54\x00\x4b\x00\x61\x00\ +\x6e\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x73\x00\ +\x6b\x00\x61\x00\x70\x00\x61\x00\x20\x00\x6f\x00\x66\x00\x66\x00\ +\x73\x00\x65\x00\x74\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\ +\x64\x00\x65\x00\x6e\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x74\x00\x79\x00\x70\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\x58\x00\x20\x00\x63\x00\x65\ +\x00\x6e\x00\x74\x00\x65\x00\x72\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\x14\x00\xc4\x00\x6e\x00\x64\ +\x00\x72\x00\x61\x00\x20\x00\x53\x00\x74\x00\x69\x00\x6c\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x68\x61\x6e\x67\x65\x20\x53\ +\x74\x79\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\xba\x00\x4d\x00\x61\x00\x72\x00\x6b\x00\x65\x00\x72\ +\x00\x61\x00\x20\x00\x64\x00\x65\x00\x74\x00\x74\x00\x61\x00\x20\ +\x00\x6f\x00\x6d\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x65\x00\x74\x00\x20\x00\x73\x00\x6b\x00\x61\x00\x20\ +\x00\x76\x00\x69\x00\x73\x00\x61\x00\x73\x00\x20\x00\x73\x00\x6f\ +\x00\x6d\x00\x20\x00\x66\x00\x79\x00\x6c\x00\x6c\x00\x74\x00\x2c\ +\x00\x20\x00\x61\x00\x6e\x00\x6e\x00\x61\x00\x72\x00\x73\x00\x20\ +\x00\x6b\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x64\ +\x00\x65\x00\x74\x00\x20\x00\x61\x00\x74\x00\x74\x00\x20\x00\x76\ +\x00\x69\x00\x73\x00\x61\x00\x73\x00\x20\x00\x73\x00\x6f\x00\x6d\ +\x00\x20\x00\x74\x00\x72\x00\xe5\x00\x64\x00\x6d\x00\x6f\x00\x64\ +\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\x28\x00\x69\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x5b\x43\x68\x65\x63\x6b\x20\x74\x68\ +\x69\x73\x20\x69\x66\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x73\x68\x6f\x75\x6c\x64\x20\x61\x70\x70\x65\x61\x72\x20\x61\ +\x73\x20\x66\x69\x6c\x6c\x65\x64\x2c\x20\x6f\x74\x68\x65\x72\x77\ +\x69\x73\x65\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\ +\x61\x72\x20\x61\x73\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\ +\x28\x69\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0c\x00\x43\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\x88\x00\ +\x52\x00\x65\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x76\x00\x61\x00\ +\x20\x00\x6b\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x69\x00\x6e\x00\ +\x61\x00\x74\x00\x65\x00\x72\x00\x20\x00\x74\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x73\x00\x69\x00\x73\x00\x74\x00\x61\x00\x20\x00\ +\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x65\x00\x6e\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\x61\x00\x20\x00\x20\x00\ +\x28\x00\x4d\x00\x45\x00\x4c\x00\x4c\x00\x41\x00\x4e\x00\x53\x00\ +\x4c\x00\x41\x00\x47\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x36\x43\x6f\x6f\x72\x64\x69\x6e\x61\x74\x65\x73\x20\x72\x65\x6c\ +\x61\x74\x69\x76\x65\x20\x74\x6f\x20\x6c\x61\x73\x74\x20\x70\x6f\ +\x69\x6e\x74\x20\x6f\x72\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x20\ +\x28\x53\x50\x41\x43\x45\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0e\x00\x4b\x00\x6f\x00\x70\x00\x69\x00\ +\x65\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x43\ +\x6f\x70\x79\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x20\x00\x53\x00\x6b\x00\x61\x00\x70\x00\x61\x00\x20\x00\ +\x43\x00\x69\x00\x72\x00\x6b\x00\x65\x00\x6c\x00\x62\x00\xe5\x00\ +\x67\x00\x65\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\x1a\x00\x53\x00\x6b\x00\x61\x00\x70\x00\ +\x61\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\x00\x53\x00\x6b\x00\x61\x00\ +\x70\x00\x61\x00\x20\x00\x43\x00\x69\x00\x72\x00\x6b\x00\x65\x00\ +\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x72\x65\x61\x74\ +\x65\x20\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x53\x00\x6b\x00\x61\x00\x70\ +\x00\x61\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\x1a\ +\x00\x53\x00\x6b\x00\x61\x00\x70\x00\x61\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\x1e\x00\x53\x00\x6b\x00\x61\x00\x70\x00\x61\x00\x20\x00\x72\ +\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\x10\x43\x72\x65\x61\x74\x65\ +\x20\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x53\x00\x6b\x00\x61\ +\x00\x70\x00\x61\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\x14\x00\x53\x00\x6b\x00\x61\x00\x70\x00\x61\x00\x20\x00\ +\x54\x00\x72\x00\xe5\x00\x64\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\x1c\x00\x52\x00\x61\ +\x00\x64\x00\x65\x00\x72\x00\x61\x00\x20\x00\x4d\x00\xe4\x00\x74\ +\x00\x6e\x00\x69\x00\x6e\x00\x67\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\x0e\x00\x44\x00\x69\x00\ +\x73\x00\x74\x00\x61\x00\x6e\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4e\x00\x50\x00\x72\x00\ +\x6f\x00\x6a\x00\x69\x00\x63\x00\x65\x00\x72\x00\x61\x00\x20\x00\ +\x69\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x70\x00\x75\x00\x6e\x00\ +\x6b\x00\x74\x00\x65\x00\x72\x00\x20\x00\x74\x00\x69\x00\x6c\x00\ +\x6c\x00\x20\x00\x65\x00\x74\x00\x74\x00\x20\x00\x72\x00\x69\x00\ +\x74\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\x3a\x00\ +\x4b\x00\x61\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\ +\x20\x00\x73\x00\x6b\x00\xe4\x00\x72\x00\x20\x00\x69\x00\x6e\x00\ +\x74\x00\x65\x00\x20\x00\x76\x00\x61\x00\x72\x00\x61\x00\x6e\x00\ +\x64\x00\x72\x00\x61\x00\x21\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x17\x45\x64\x67\x65\x73\x20\x64\x6f\x6e\x27\x74\x20\x69\ +\x6e\x74\x65\x72\x73\x65\x63\x74\x21\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x52\x00\x65\x00\x64\ +\x00\x69\x00\x67\x00\x65\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x46\x00\x26\x00\x79\x00\x6c\ +\x00\x6c\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\x0c\x00\x59\x00\x74\x00\x66\x00\xe4\x00\x72\x00\ +\x67\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\x58\x00\x41\x00\x76\x00\x73\x00\x6c\x00\x75\x00\ +\x74\x00\x61\x00\x72\x00\x20\x00\x6f\x00\x63\x00\x68\x00\x20\x00\ +\x73\x00\x74\x00\xe4\x00\x6e\x00\x67\x00\x65\x00\x72\x00\x20\x00\ +\x64\x00\x65\x00\x6e\x00\x20\x00\x70\x00\xe5\x00\x67\x00\xe5\x00\ +\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\ +\x6a\x00\x65\x00\x6e\x00\x20\x00\x28\x00\x43\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x28\x46\x69\x6e\x69\x73\x68\x65\x73\x20\ +\x61\x6e\x64\x20\x63\x6c\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x63\ +\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\x20\x28\x43\x29\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x80\x00\ +\x41\x00\x76\x00\x73\x00\x6c\x00\x75\x00\x74\x00\x61\x00\x72\x00\ +\x20\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x6b\x00\x74\x00\ +\x75\x00\x65\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x72\x00\x69\x00\ +\x74\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x6e\x00\x20\x00\ +\x65\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x72\x00\x65\x00\ +\x64\x00\x69\x00\x67\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x00\ +\x73\x00\x6f\x00\x70\x00\x65\x00\x72\x00\x61\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x65\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\x00\x54\ +\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x6e\x00\x73\x00\x74\x00\x6f\ +\x00\x72\x00\x6c\x00\x65\x00\x6b\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\x48\x00\x69\x00\ +\x74\x00\x74\x00\x61\x00\x64\x00\x65\x00\x20\x00\x31\x00\x20\x00\ +\x73\x00\x74\x00\xe4\x00\x6e\x00\x67\x00\x74\x00\x20\x00\x73\x00\ +\x6b\x00\x69\x00\x73\x00\x73\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x3a\x00\x20\x00\x67\x00\xf6\x00\x72\x00\x20\x00\ +\x65\x00\x6e\x00\x20\x00\x79\x00\x74\x00\x61\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\x48\x00\x48\x00\x69\x00\x74\x00\ +\x74\x00\x61\x00\x64\x00\x65\x00\x20\x00\x31\x00\x20\x00\x79\x00\ +\x74\x00\x61\x00\x3a\x00\x20\x00\x75\x00\x74\x00\x76\x00\x69\x00\ +\x6e\x00\x6e\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\x00\x73\x00\ +\x73\x00\x20\x00\x74\x00\x72\x00\xe5\x00\x64\x00\x61\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\x6e\x00\x48\ +\x00\x69\x00\x74\x00\x74\x00\x61\x00\x64\x00\x65\x00\x20\x00\x31\ +\x00\x20\x00\x69\x00\x63\x00\x6b\x00\x65\x00\x2d\x00\x70\x00\x61\ +\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x73\ +\x00\x6b\x00\x74\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x3a\x00\x20\x00\x67\x00\xf6\x00\x72\x00\x73\x00\x20\ +\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x69\x00\x6c\x00\x6c\x00\x20\ +\x00\x73\x00\x6b\x00\x69\x00\x73\x00\x73\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\x44\x00\x48\x00\x69\x00\x74\x00\x74\x00\x61\x00\ +\x64\x00\x65\x00\x20\x00\x31\x00\x20\x00\xf6\x00\x70\x00\x70\x00\ +\x65\x00\x6e\x00\x20\x00\x74\x00\x72\x00\xe5\x00\x64\x00\x3a\x00\ +\x20\x00\x73\x00\x74\x00\xe4\x00\x6e\x00\x67\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\ +\x6a\x00\x48\x00\x69\x00\x74\x00\x74\x00\x61\x00\x64\x00\x65\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\x73\x00\x6b\x00\x74\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\x73\x00\x73\x00\x20\x00\x62\x00\x65\x00\x72\x00\x6f\x00\ +\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x20\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x35\x46\x6f\x75\x6e\x64\x20\x31\x20\x70\x61\x72\ +\x61\x6d\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\ +\x62\x72\x65\x61\x6b\x69\x6e\x67\x20\x69\x74\x73\x20\x64\x65\x70\ +\x65\x6e\x64\x65\x6e\x63\x69\x65\x73\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x62\x00\x48\x00\x69\x00\x74\ +\x00\x74\x00\x61\x00\x64\x00\x65\x00\x20\x00\x31\x00\x20\x00\x73\ +\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\ +\x00\x72\x00\x62\x00\x61\x00\x72\x00\x74\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x3a\x00\x20\x00\x73\x00\x6f\ +\x00\x6c\x00\x69\x00\x64\x00\x69\x00\x66\x00\x69\x00\x65\x00\x72\ +\x00\x61\x00\x72\x00\x20\x00\x64\x00\x65\x00\x74\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\x00\x48\x00\x69\x00\x74\x00\x74\x00\x61\x00\x64\x00\ +\x65\x00\x20\x00\x32\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x3a\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x65\x00\ +\x6e\x00\x61\x00\x72\x00\x20\x00\x64\x00\x65\x00\x6d\x00\x20\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x46\x6f\x75\x6e\x64\x20\x32\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\ +\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x44\x00\x48\x00\x69\x00\x74\x00\x74\x00\x61\ +\x00\x64\x00\x65\x00\x20\x00\x32\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x3a\x00\x20\x00\x73\x00\x75\x00\x62\ +\x00\x74\x00\x72\x00\x61\x00\x68\x00\x65\x00\x72\x00\x61\x00\x72\ +\x00\x20\x00\x64\x00\x65\x00\x6d\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\x50\x00\x48\x00\x69\x00\x74\x00\x74\x00\x61\ +\x00\x64\x00\x65\x00\x20\x00\x73\x00\x74\x00\xe4\x00\x6e\x00\x67\ +\x00\x64\x00\x61\x00\x20\x00\x74\x00\x72\x00\xe5\x00\x64\x00\x61\ +\x00\x72\x00\x3a\x00\x20\x00\x67\x00\xf6\x00\x72\x00\x20\x00\x79\ +\x00\x74\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x76\x00\x20\x00\x64\ +\x00\x65\x00\x6d\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\ +\x6a\x00\x48\x00\x69\x00\x74\x00\x74\x00\x61\x00\x64\x00\x65\x00\ +\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\x00\x72\x00\ +\x3a\x00\x20\x00\x73\x00\x74\x00\xe4\x00\x6e\x00\x67\x00\x65\x00\ +\x72\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\xf6\x00\ +\x70\x00\x70\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x75\x00\x74\x00\ +\x69\x00\x20\x00\x64\x00\x65\x00\x6d\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\x62\x00\x48\x00\x69\x00\x74\x00\x74\x00\x61\x00\x64\x00\ +\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x20\x00\x73\x00\x6f\x00\x6d\x00\x20\x00\x69\x00\x6e\x00\x6e\x00\ +\x65\x00\x68\x00\xe5\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\x00\ +\x6b\x00\x75\x00\x72\x00\x76\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\ +\x66\x00\xf6\x00\x72\x00\x65\x00\x6e\x00\x61\x00\x72\x00\x20\x00\ +\x64\x00\x65\x00\x6d\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\x56\x00\x48\x00\x69\ +\x00\x74\x00\x74\x00\x61\x00\x64\x00\x65\x00\x20\x00\x62\x00\x61\ +\x00\x72\x00\x61\x00\x20\x00\x74\x00\x72\x00\xe5\x00\x64\x00\x61\ +\x00\x72\x00\x3a\x00\x20\x00\x75\x00\x74\x00\x76\x00\x69\x00\x6e\ +\x00\x6e\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\x00\x72\x00\x61\ +\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\x50\x00\x48\x00\x69\x00\x74\x00\x74\x00\x61\x00\ +\x64\x00\x65\x00\x20\x00\x66\x00\x6c\x00\x65\x00\x72\x00\x61\x00\ +\x20\x00\x6b\x00\x61\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x3a\x00\ +\x20\x00\x67\x00\xf6\x00\x72\x00\x20\x00\x74\x00\x72\x00\xe5\x00\ +\x64\x00\x61\x00\x72\x00\x20\x00\x61\x00\x76\x00\x20\x00\x64\x00\ +\x65\x00\x6d\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\x3c\ +\x00\x48\x00\x69\x00\x74\x00\x74\x00\x61\x00\x64\x00\x65\x00\x20\ +\x00\x66\x00\x6c\x00\x65\x00\x72\x00\x61\x00\x20\x00\x79\x00\x74\ +\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x61\ +\x00\x72\x00\x20\x00\x64\x00\x65\x00\x6d\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\x84\x00\x48\x00\x69\x00\x74\ +\x00\x74\x00\x61\x00\x64\x00\x65\x00\x20\x00\x66\x00\x6c\x00\x65\ +\x00\x72\x00\x61\x00\x20\x00\x69\x00\x63\x00\x6b\x00\x65\x00\x2d\ +\x00\x61\x00\x6e\x00\x73\x00\x6c\x00\x75\x00\x74\x00\x6e\x00\x61\ +\x00\x20\x00\x6b\x00\x61\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x3a\ +\x00\x20\x00\x67\x00\xf6\x00\x72\x00\x20\x00\x73\x00\x61\x00\x6d\ +\x00\x6d\x00\x61\x00\x6e\x00\x73\x00\x61\x00\x74\x00\x74\x00\x61\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\ +\x00\x61\x00\x76\x00\x20\x00\x64\x00\x65\x00\x6d\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\x90\x00\x48\x00\x69\x00\ +\x74\x00\x74\x00\x61\x00\x64\x00\x65\x00\x20\x00\x66\x00\x6c\x00\ +\x65\x00\x72\x00\x61\x00\x20\x00\x69\x00\x63\x00\x6b\x00\x65\x00\ +\x2d\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\x61\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x3a\x00\ +\x20\x00\x67\x00\xf6\x00\x72\x00\x20\x00\x73\x00\x61\x00\x6d\x00\ +\x6d\x00\x61\x00\x6e\x00\x73\x00\x61\x00\x74\x00\x74\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x61\x00\ +\x76\x00\x20\x00\x64\x00\x65\x00\x6d\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\x6e\x00\x48\x00\x69\x00\x74\ +\x00\x74\x00\x61\x00\x64\x00\x65\x00\x20\x00\x66\x00\x6c\x00\x65\ +\x00\x72\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x20\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x20\ +\x00\x79\x00\x74\x00\x6f\x00\x72\x00\x3a\x00\x20\x00\x67\x00\xf6\ +\x00\x72\x00\x20\x00\x65\x00\x6e\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\x79\x00\x74\x00\x61\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\x42\x00\x48\x00\x69\x00\ +\x74\x00\x74\x00\x61\x00\x64\x00\x65\x00\x20\x00\x66\x00\x6c\x00\ +\x65\x00\x72\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x3a\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x65\x00\ +\x6e\x00\x61\x00\x72\x00\x20\x00\x64\x00\x65\x00\x6d\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\ +\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x66\x75\ +\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6c\x00\x48\x00\x69\x00\x74\ +\x00\x74\x00\x61\x00\x64\x00\x65\x00\x20\x00\x66\x00\x6c\x00\x65\ +\x00\x72\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x3a\x00\x20\x00\x73\x00\x75\x00\x62\x00\x74\x00\x72\ +\x00\x61\x00\x68\x00\x65\x00\x72\x00\x61\x00\x72\x00\x20\x00\x64\ +\x00\x65\x00\x6d\x00\x20\x00\x66\x00\x72\x00\xe5\x00\x6e\x00\x20\ +\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x73\ +\x00\x74\x00\x61\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\xb0\x00\x4f\x00\x6d\x00\ +\x20\x00\x64\x00\x65\x00\x74\x00\x74\x00\x61\x00\x20\x00\xe4\x00\ +\x72\x00\x20\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x65\x00\x72\x00\ +\x61\x00\x74\x00\x20\x00\x73\x00\xe5\x00\x20\x00\x6b\x00\x6f\x00\ +\x6d\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x20\x00\ +\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x00\x20\x00\x69\x00\ +\x20\x00\x4f\x00\x43\x00\x43\x00\x2d\x00\x73\x00\x74\x00\x69\x00\ +\x6c\x00\x20\x00\x75\x00\x74\x00\x66\x00\xf6\x00\x72\x00\x61\x00\ +\x73\x00\x20\x00\x69\x00\x73\x00\x74\x00\xe4\x00\x6c\x00\x6c\x00\ +\x65\x00\x74\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\x6b\x00\ +\x6c\x00\x61\x00\x73\x00\x73\x00\x69\x00\x73\x00\x6b\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\xa2\x00\x4f\x00\x6d\x00\x20\x00\x6d\x00\x61\x00\x72\ +\x00\x6b\x00\x65\x00\x72\x00\x61\x00\x74\x00\x2c\x00\x20\x00\x73\ +\x00\xe5\x00\x20\x00\x61\x00\x76\x00\x73\x00\x6c\x00\x75\x00\x74\ +\x00\x61\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x20\ +\x00\x6b\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x6f\ +\x00\x74\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x72\x00\xe4\x00\x6e\ +\x00\x20\x00\x64\x00\x75\x00\x20\x00\x74\x00\x72\x00\x79\x00\x63\ +\x00\x6b\x00\x65\x00\x72\x00\x20\x00\x70\x00\xe5\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\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\x8a\x00\x4f\x00\x6d\ +\x00\x20\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x65\x00\x72\x00\x61\ +\x00\x64\x00\x2c\x00\x20\x00\x73\x00\xe5\x00\x20\x00\x6b\x00\x6f\ +\x00\x6d\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x74\ +\x00\x74\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x72\ +\x00\x61\x00\x73\x00\x20\x00\x69\x00\x73\x00\x74\x00\xe4\x00\x6c\ +\x00\x6c\x00\x65\x00\x74\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\ +\x00\x61\x00\x74\x00\x74\x00\x20\x00\x66\x00\x6c\x00\x79\x00\x74\ +\x00\x74\x00\x61\x00\x73\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\x61\x00\x20\x00\x70\x00\ +\x75\x00\x6e\x00\x6b\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x68\x00\ +\x61\x00\x72\x00\x20\x00\x74\x00\x61\x00\x67\x00\x69\x00\x74\x00\ +\x73\x00\x20\x00\x62\x00\x6f\x00\x72\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\x12\x00\x4c\x00\x69\x00\ +\x6e\x00\x6a\x00\x65\x00\x66\x00\xe4\x00\x72\x00\x67\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0a\x4c\x69\x6e\x65\x20\x43\x6f\x6c\x6f\ +\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x14\x00\x4c\x00\x69\x00\x6e\x00\x6a\x00\x65\x00\x62\x00\x72\x00\ +\x65\x00\x64\x00\x64\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\x46\x00\x6c\x00\x79\x00\ +\x74\x00\x74\x00\x61\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\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x41\x00\x6e\x00\ +\x74\x00\x61\x00\x6c\x00\x20\x00\x73\x00\x69\x00\x64\x00\x6f\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\x0c\x00\x4f\x00\x66\x00\x66\ +\x00\x73\x00\x65\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\ +\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x5e\x00\x4f\x00\x66\x00\x66\x00\x73\x00\x65\ +\x00\x74\x00\x20\x00\x66\x00\x75\x00\x6e\x00\x67\x00\x65\x00\x72\ +\x00\x61\x00\x72\x00\x20\x00\x65\x00\x6e\x00\x64\x00\x61\x00\x73\ +\x00\x74\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\xe5\x00\x74\x00\x20\x00\x67\x00\xe5\x00\x6e\x00\x67\x00\x65\ +\x00\x6e\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\x16\x00\x56\x00\xe4\x00\x6c\x00\x6a\ +\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\x5a\x00\x56\x00\xe4\x00\x6c\x00\x6a\x00\x20\x00\x65\x00\ +\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x79\x00\ +\x74\x00\x61\x00\x20\x00\x66\x00\xf6\x00\x72\x00\x20\x00\x61\x00\ +\x74\x00\x74\x00\x20\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\ +\x69\x00\x65\x00\x72\x00\x61\x00\x20\x00\x72\x00\x69\x00\x74\x00\ +\x70\x00\x6c\x00\x61\x00\x6e\x00\x65\x00\x74\x00\x0a\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\x28\x00\ +\x56\x00\xe4\x00\x6c\x00\x6a\x00\x20\x00\x76\x00\x69\x00\x6e\x00\ +\x6b\x00\x65\x00\x6c\x00\xf6\x00\x70\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\x20\ +\x00\x56\x00\xe4\x00\x6c\x00\x6a\x00\x20\x00\x62\x00\x61\x00\x73\ +\x00\x76\x00\x69\x00\x6e\x00\x6b\x00\x65\x00\x6c\x00\x3a\x00\x0a\ +\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\x1e\x00\x56\x00\xe4\x00\ +\x6c\x00\x6a\x00\x20\x00\x62\x00\x61\x00\x73\x00\x70\x00\x75\x00\ +\x6e\x00\x6b\x00\x74\x00\x3a\x00\x0a\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\x22\x00\x56\x00\xe4\x00\x6c\x00\x6a\x00\x20\x00\x63\ +\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x70\x00\x75\x00\x6e\ +\x00\x6b\x00\x74\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\x1c\x00\x56\x00\xe4\x00\x6c\x00\x6a\x00\x20\x00\x64\x00\ +\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x73\x00\x3a\x00\x0a\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\x20\x00\x56\x00\xe4\x00\x6c\x00\x6a\ +\x00\x20\x00\x73\x00\x6c\x00\x75\x00\x74\x00\x70\x00\x75\x00\x6e\ +\x00\x6b\x00\x74\x00\x3a\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x50\x69\x63\x6b\x20\x65\x6e\x64\x20\x70\x6f\x69\x6e\x74\ +\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x2a\x00\x56\x00\xe4\x00\x6c\x00\x6a\x00\x20\x00\x66\x00\xf6\ +\x00\x72\x00\x73\x00\x74\x00\x61\x00\x20\x00\x70\x00\x75\x00\x6e\ +\x00\x6b\x00\x74\x00\x65\x00\x6e\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\x2c\x00\x56\x00\xe4\x00\x6c\x00\x6a\ +\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x63\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\x0a\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\x66\x00\x56\x00\xe4\x00\x6c\x00\x6a\x00\x20\x00\x6e\x00\ +\xe4\x00\x73\x00\x74\x00\x61\x00\x20\x00\x70\x00\x75\x00\x6e\x00\ +\x6b\x00\x74\x00\x2c\x00\x20\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\ +\x72\x00\x20\x00\x61\x00\x76\x00\x73\x00\x6c\x00\x75\x00\x74\x00\ +\x61\x00\x28\x00\x46\x00\x29\x00\x20\x00\x65\x00\x6c\x00\x6c\x00\ +\x65\x00\x72\x00\x20\x00\x73\x00\x74\x00\xe4\x00\x6e\x00\x67\x00\ +\x28\x00\x43\x00\x29\x00\x3a\x00\x0a\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\xe4\ +\x00\x6c\x00\x6a\x00\x20\x00\x6e\x00\xe4\x00\x73\x00\x74\x00\x61\ +\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x3a\x00\x0a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\x6e\ +\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x56\x00\xe4\x00\ +\x6c\x00\x6a\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\x00\x0a\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\x18\x00\x56\x00\xe4\x00\x6c\x00\x6a\x00\x20\x00\x72\x00\x61\ +\x00\x64\x00\x69\x00\x65\x00\x3a\x00\x0a\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\xe4\x00\x6c\x00\x6a\x00\x20\x00\x72\x00\x6f\x00\ +\x74\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x76\x00\ +\x69\x00\x6e\x00\x6b\x00\x65\x00\x6c\x00\x3a\x00\x0a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x15\x50\x69\x63\x6b\x20\x72\x6f\x74\x61\ +\x74\x69\x6f\x6e\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x56\x00\xe4\ +\x00\x6c\x00\x6a\x00\x20\x00\x72\x00\x6f\x00\x74\x00\x61\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x63\x00\x65\x00\x6e\x00\x74\ +\x00\x72\x00\x75\x00\x6d\x00\x3a\x00\x0a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x16\x50\x69\x63\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\ +\x6e\x20\x63\x65\x6e\x74\x65\x72\x3a\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x56\x00\xe4\x00\x6c\ +\x00\x6a\x00\x20\x00\x73\x00\x6b\x00\x61\x00\x6c\x00\x66\x00\x61\ +\x00\x6b\x00\x74\x00\x6f\x00\x72\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\x24\x00\x56\x00\xe4\x00\x6c\x00\ +\x6a\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\x0a\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\xe4\x00\x6c\x00\ +\x6a\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\x0a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x12\x50\x69\x63\x6b\x20\x73\x74\x61\x72\x74\x20\ +\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0a\x00\x50\x00\x75\x00\x6e\x00\x6b\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x50\x6f\x69\x6e\x74\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\ +\x00\x52\x00\x61\x00\x64\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x52\x61\x64\x69\x75\x73\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x43\x00\x69\x00\x72\ +\x00\x6b\x00\x65\x00\x6c\x00\x72\x00\x61\x00\x64\x00\x69\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x61\x64\x69\x75\x73\ +\x20\x6f\x66\x20\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x54\x00\x54\x00\x61\x00\x20\ +\x00\x62\x00\x6f\x00\x72\x00\x74\x00\x20\x00\x70\x00\x75\x00\x6e\ +\x00\x6b\x00\x74\x00\x65\x00\x72\x00\x20\x00\x66\x00\x72\x00\xe5\ +\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x74\x00\x20\x00\x61\x00\x6b\ +\x00\x74\x00\x75\x00\x65\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x25\x52\x65\x6d\x6f\x76\x65\x20\x70\ +\x6f\x69\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x63\ +\x75\x72\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x52\x00\ +\x6f\x00\x74\x00\x65\x00\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x06\x52\x6f\x74\x61\x74\x65\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x53\x00\x6b\x00\x61\x00\ +\x6c\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x53\x63\x61\ +\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x12\x00\x56\x00\xe4\x00\x6c\x00\x6a\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\xe4\x00\x6c\ +\x00\x6a\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\xe4\x00\ +\x6c\x00\x6a\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\xe4\ +\x00\x6c\x00\x6a\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\x36\x00\x56\x00\ +\xe4\x00\x6c\x00\x6a\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\x61\x00\ +\x74\x00\x74\x00\x20\x00\x66\x00\x6c\x00\x79\x00\x74\x00\x74\x00\ +\x61\x00\x0a\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\x52\x00\x56\x00\xe4\x00\x6c\x00\x6a\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\x61\x00\x74\x00\x74\x00\x20\x00\x73\ +\x00\x6b\x00\x61\x00\x70\x00\x61\x00\x20\x00\x65\x00\x6e\x00\x20\ +\x00\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x00\x20\x00\x74\ +\x00\x69\x00\x6c\x00\x6c\x00\x0a\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\x36\x00\x56\x00\ +\xe4\x00\x6c\x00\x6a\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\x61\x00\ +\x74\x00\x74\x00\x20\x00\x72\x00\x6f\x00\x74\x00\x65\x00\x72\x00\ +\x61\x00\x0a\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\x34\x00\x56\x00\xe4\x00\x6c\x00\x6a\ +\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\x61\x00\x74\x00\x74\x00\x20\ +\x00\x73\x00\x6b\x00\x61\x00\x6c\x00\x61\x00\x0a\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\x48\ +\x00\x56\x00\xe4\x00\x6c\x00\x6a\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\x61\x00\x74\x00\x74\x00\x20\x00\x74\x00\x72\x00\x69\x00\x6d\ +\x00\x6d\x00\x61\x00\x2f\x00\x66\x00\xf6\x00\x72\x00\x6c\x00\xe4\ +\x00\x6e\x00\x67\x00\x61\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\x3e\x00\x56\x00\xe4\x00\x6c\x00\x6a\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\x61\x00\x74\x00\x74\x00\x20\x00\x75\x00\x70\x00\x70\ +\x00\x67\x00\x72\x00\x61\x00\x64\x00\x65\x00\x72\x00\x61\x00\x0a\ +\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\x4c\x00\x56\x00\xe4\x00\x6c\x00\x6a\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\xe4\x00\x74\x00\x74\x00\x20\ +\x00\x74\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x6e\x00\x75\x00\x76\ +\x00\x61\x00\x72\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x76\ +\x00\x79\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\x26\x00\x53\x00\x70\x00\x6c\ +\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x68\x00\x61\x00\x72\x00\x20\ +\x00\x73\x00\x74\x00\xe4\x00\x6e\x00\x67\x00\x74\x00\x73\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\x46\x00\x44\x00\x65\ +\x00\x6e\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x74\x00\x79\x00\x70\x00\x20\x00\x6b\x00\x61\ +\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x72\ +\x00\x65\x00\x64\x00\x69\x00\x67\x00\x65\x00\x72\x00\x61\x00\x73\ +\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\x30\x00\x56\x00\ +\xe4\x00\x78\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x6b\x00\x6f\x00\ +\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x73\x00\x6c\x00\xe4\x00\x67\x00\x65\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\x44\x00\xc5\x00\x6e\x00\x67\x00\x72\x00\x61\ +\x00\x20\x00\x64\x00\x65\x00\x74\x00\x20\x00\x73\x00\x69\x00\x73\ +\x00\x74\x00\x61\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\x00\x65\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\x04\x00\x56\x00\x79\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\x52\x00\x65\x00\x6e\x00\x73\x00\x61\x00\x72\ +\x00\x20\x00\x62\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x74\x00\x6c\ +\x00\x69\x00\x67\x00\x61\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x61\x00\x76\x00\x20\x00\x64\ +\x00\x65\x00\x6e\x00\x6e\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\ +\x00\x6a\x00\x65\x00\x20\x00\x6f\x00\x63\x00\x68\x00\x20\x00\x62\ +\x00\xf6\x00\x72\x00\x6a\x00\x61\x00\x72\x00\x20\x00\x6f\x00\x6d\ +\x00\x20\x00\x66\x00\x72\x00\xe5\x00\x6e\x00\x20\x00\x64\x00\x65\ +\x00\x6e\x00\x20\x00\x73\x00\x69\x00\x73\x00\x74\x00\x61\x00\x20\ +\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x65\x00\x6e\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\ +\x22\x00\x54\x00\x72\x00\xe5\x00\x64\x00\x20\x00\x68\x00\x61\x00\ +\x72\x00\x20\x00\x73\x00\x74\x00\xe4\x00\x6e\x00\x67\x00\x74\x00\ +\x73\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\x00\x4e\x00\xe4\x00\x73\x00\x74\x00\ +\x61\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x73\x00\ +\x20\x00\x58\x00\x20\x00\x6b\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\ +\x69\x00\x6e\x00\x61\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\x30\x00\x4e\x00\xe4\x00\x73\x00\x74\ +\x00\x61\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x73\ +\x00\x20\x00\x59\x00\x20\x00\x6b\x00\x6f\x00\x6f\x00\x72\x00\x64\ +\x00\x69\x00\x6e\x00\x61\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\x30\x00\x4e\x00\xe4\x00\x73\x00\ +\x74\x00\x61\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\ +\x73\x00\x20\x00\x5a\x00\x20\x00\x6b\x00\x6f\x00\x6f\x00\x72\x00\ +\x64\x00\x69\x00\x6e\x00\x61\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\x20\x00\x41\x00\ +\x6b\x00\x74\x00\x69\x00\x76\x00\x74\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\x20\x00\x52\x00\x69\x00\x74\x00\x20\x00\x6b\ +\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x6c\ +\x00\xe5\x00\x64\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\ +\x64\x72\x61\x66\x74\x20\x43\x6f\x6d\x6d\x61\x6e\x64\x20\x42\x61\ +\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x00\x00\xaa\x81\ +\x3c\ +\xb8\x64\x18\xca\xef\x9c\x95\xcd\x21\x1c\xbf\x60\xa1\xbd\xdd\x42\ +\x00\x00\x09\x98\x00\x00\x00\x58\x00\x00\x9e\x3a\x00\x00\x00\x59\ +\x00\x00\x9f\x01\x00\x00\x00\x5a\x00\x00\x9f\xa8\x00\x00\x05\xd9\ +\x00\x00\x9e\xc1\x00\x00\x05\xda\x00\x00\x9e\xe1\x00\x00\x05\xea\ +\x00\x00\x9f\x88\x00\x00\x07\x78\x00\x00\x6b\x1a\x00\x00\x48\x83\ +\x00\x00\x03\x13\x00\x00\x48\x83\x00\x00\x71\x6a\x00\x00\x68\x34\ +\x00\x00\x66\x0f\x00\x04\xa6\x79\x00\x00\x74\x8d\x00\x04\xbb\x04\ +\x00\x00\x0b\x30\x00\x04\xbb\x04\x00\x00\x78\xe4\x00\x05\x30\x45\ +\x00\x00\x0d\x95\x00\x05\x30\x45\x00\x00\x8a\xf5\x00\x05\x46\xc5\ +\x00\x00\x0d\xc4\x00\x05\x46\xc5\x00\x00\x8b\x97\x00\x05\x56\x45\ +\x00\x00\x45\x03\x00\x05\x56\x45\x00\x00\x8b\xc7\x00\x05\xac\xf4\ +\x00\x00\x18\xfc\x00\x05\xb8\xfd\x00\x00\x9b\xd8\x00\x05\xcf\xc7\ +\x00\x00\x9c\x84\x00\x05\xe0\x85\x00\x00\x22\xc9\x00\x06\xab\x8c\ +\x00\x00\x67\x67\x00\x10\x84\x49\x00\x00\x50\x2f\x00\x12\x05\xba\ +\x00\x00\x98\x26\x00\x16\xc6\xda\x00\x00\x7f\x7a\x00\x2a\xa6\x79\ +\x00\x00\x6d\xb8\x00\x2b\xc4\xaf\x00\x00\x6e\x9c\x00\x2b\xe0\x65\ +\x00\x00\x6e\xcb\x00\x39\xdf\x33\x00\x00\x33\xe4\x00\x3d\xa1\x19\ +\x00\x00\x72\x7e\x00\x3e\x93\x83\x00\x00\x35\x14\x00\x48\x8f\x7c\ +\x00\x00\x25\x79\x00\x4b\x66\x35\x00\x00\x31\x44\x00\x4b\x66\x37\ +\x00\x00\x31\x89\x00\x4b\x66\x39\x00\x00\x31\xce\x00\x4b\x87\xd4\ +\x00\x00\x78\x25\x00\x57\x60\x54\x00\x00\x94\x29\x00\x58\xfd\xf4\ +\x00\x00\x48\x2a\x00\x59\x98\x25\x00\x00\x14\x16\x00\x59\x98\x25\ +\x00\x00\x95\x73\x00\x6a\x58\x9a\x00\x00\x8d\xc9\x00\x79\xef\xd4\ +\x00\x00\x6b\x52\x00\x7e\x7f\x0e\x00\x00\x62\xc2\x00\x8a\x23\x95\ +\x00\x00\x28\xff\x00\x8a\x23\x97\x00\x00\x29\x45\x00\x8a\x23\x99\ +\x00\x00\x29\x8b\x00\x91\xbc\xe9\x00\x00\x0d\xf9\x00\xa6\x37\x3f\ +\x00\x00\x27\xe2\x00\xaa\x80\x25\x00\x00\x77\x63\x00\xc6\xe3\x6e\ +\x00\x00\x24\x15\x00\xcb\xa8\x14\x00\x00\x6a\x5c\x00\xfc\x00\xca\ +\x00\x00\x86\xa4\x01\x21\xd6\x39\x00\x00\x4f\x38\x01\x22\xb4\xf9\ +\x00\x00\x14\x4b\x01\x2f\x8e\x7e\x00\x00\x59\x84\x01\x48\xfe\xa3\ +\x00\x00\x35\x96\x01\x53\xf3\xaa\x00\x00\x7c\x32\x01\x56\x16\x4a\ +\x00\x00\x86\x13\x01\x67\x0d\x8a\x00\x00\x81\x53\x01\x69\x11\x7a\ +\x00\x00\x92\x00\x01\x82\x39\x0a\x00\x00\x8e\x71\x01\x8b\x68\x75\ +\x00\x00\x9b\x6d\x01\xa1\x7f\x63\x00\x00\x1b\xab\x01\xc1\xd9\xde\ +\x00\x00\x52\x4c\x01\xd2\x8f\xd3\x00\x00\x48\xc3\x01\xdf\x11\x43\ +\x00\x00\x05\x5c\x01\xe2\xf4\x5a\x00\x00\x97\xb5\x01\xfc\xae\xd3\ +\x00\x00\x6b\x93\x02\x05\xbe\x25\x00\x00\x76\x0c\x02\x46\x58\x0a\ +\x00\x00\x91\x42\x02\x65\xad\x62\x00\x00\xa0\x78\x02\x6e\x07\xe2\ +\x00\x00\x4b\x35\x02\x76\x24\x13\x00\x00\x39\xa3\x02\x7d\xe0\x55\ +\x00\x00\x4b\xe1\x02\x94\x46\x1a\x00\x00\x8e\x1e\x02\xa7\x2c\x15\ +\x00\x00\x03\xf0\x02\xaa\x36\x95\x00\x00\x6d\x55\x02\xb1\xf0\xba\ +\x00\x00\x83\x24\x02\xbf\xaa\x8e\x00\x00\x38\x2e\x02\xc0\x66\xf2\ +\x00\x00\x55\xce\x02\xc8\x3f\xf5\x00\x00\x60\x7b\x02\xd9\xa4\xb9\ +\x00\x00\x65\xbe\x02\xdb\x1a\x94\x00\x00\x06\xf9\x03\x01\x84\xc4\ +\x00\x00\x87\x63\x03\x12\x97\x6a\x00\x00\x85\x34\x03\x1a\x14\x14\ +\x00\x00\x2f\x00\x03\x1a\x16\x59\x00\x00\x4c\x99\x03\x2f\x1a\x6a\ +\x00\x00\x6f\x52\x03\x7e\xca\xb5\x00\x00\x40\x7c\x03\x88\x1f\xd4\ +\x00\x00\x41\x4d\x03\x9e\x58\xa5\x00\x00\x00\x42\x03\xb3\x9e\xfa\ +\x00\x00\x8f\x31\x03\xb5\xc8\x9a\x00\x00\x90\x91\x03\xbd\xd4\xe4\ +\x00\x00\x70\x07\x03\xc4\x3c\xf5\x00\x00\x72\x3e\x03\xc5\xd5\x5e\ +\x00\x00\x09\x0f\x03\xcb\x0d\xe5\x00\x00\x95\xa2\x03\xdc\x0c\xd4\ +\x00\x00\x6e\x16\x03\xf2\x70\x35\x00\x00\x2b\xe3\x03\xf2\xbd\x60\ +\x00\x00\x15\x9f\x03\xfb\x0f\x04\x00\x00\x2e\x8c\x04\x21\x23\x23\ +\x00\x00\x20\x53\x04\x56\x06\x93\x00\x00\x2c\xdb\x04\x60\x7c\x15\ +\x00\x00\x94\x80\x04\x79\xef\x9a\x00\x00\x82\x9b\x04\x82\x77\xf4\ +\x00\x00\x4b\x8b\x04\x87\xf9\x9e\x00\x00\x88\x60\x04\x8c\xd6\xae\ +\x00\x00\x5e\xbc\x04\xa0\x8a\x25\x00\x00\x05\x2d\x04\xa0\x8a\x25\ +\x00\x00\x73\x9d\x04\xa4\x31\x5a\x00\x00\x8a\x83\x04\xa8\xeb\x85\ +\x00\x00\x32\x13\x04\xe1\x6e\xe3\x00\x00\x09\x89\x04\xe4\x0f\x75\ +\x00\x00\x02\xad\x04\xeb\x41\xc3\x00\x00\x2c\x58\x04\xef\xd9\xa8\ +\x00\x00\x47\xa4\x05\x03\x83\x95\x00\x00\x67\xa5\x05\x05\xcb\x13\ +\x00\x00\x3f\x66\x05\x0f\xf2\x74\x00\x00\x8c\xde\x05\x1b\x10\x59\ +\x00\x00\x42\xf6\x05\x2a\xe5\x97\x00\x00\x49\xa7\x05\x44\x3b\x5f\ +\x00\x00\x69\x80\x05\x5c\xd9\xc4\x00\x00\x0f\x54\x05\x5c\xd9\xc4\ +\x00\x00\x8c\x30\x05\x63\xf6\x93\x00\x00\x48\x6b\x05\x65\xee\x65\ +\x00\x00\x7a\xae\x05\x87\xb0\xc3\x00\x00\x94\x52\x05\x96\xa8\xa5\ +\x00\x00\x12\xba\x05\x96\xa8\xa5\x00\x00\x95\x45\x05\xad\x4b\xc3\ +\x00\x00\x40\xce\x05\xb9\x03\xc8\x00\x00\x1d\x26\x05\xbd\x0c\xba\ +\x00\x00\x7c\xed\x05\xbd\x8e\xde\x00\x00\x5d\x3e\x05\xbe\x56\x93\ +\x00\x00\x47\x4c\x05\xc5\x50\x04\x00\x00\x0b\x5d\x05\xe5\x8e\x2e\ +\x00\x00\x10\x9e\x05\xfb\xdc\x83\x00\x00\x3f\xc0\x06\x1e\xe6\xb5\ +\x00\x00\x9a\xa9\x06\x29\xee\xa9\x00\x00\x73\xc5\x06\x32\xe3\xe3\ +\x00\x00\x78\x4e\x06\x57\x19\xf4\x00\x00\x00\x00\x06\x5a\xef\x15\ +\x00\x00\x6d\x85\x06\x5b\xd2\xb5\x00\x00\x3c\x57\x06\x6c\x88\x8e\ +\x00\x00\x3d\xbb\x06\x74\x1d\x55\x00\x00\x51\xba\x06\x8b\x96\x44\ +\x00\x00\x0c\x13\x06\x97\x58\xc9\x00\x00\x4d\x14\x06\xbc\x80\xa5\ +\x00\x00\x1c\xbb\x06\xc9\xb8\x05\x00\x00\x70\x7b\x06\xe8\x05\x4e\ +\x00\x00\x06\x86\x06\xee\xaa\x57\x00\x00\x99\xa8\x06\xf0\xcb\x25\ +\x00\x00\x1a\x7b\x06\xfa\xff\xc3\x00\x00\x40\x24\x06\xfc\x1a\x14\ +\x00\x00\x33\x0b\x06\xfc\xa0\x8a\x00\x00\x8d\x23\x07\x08\x90\xe5\ +\x00\x00\x2a\x56\x07\x0d\xb7\xf7\x00\x00\x37\x61\x07\x0e\x86\x3e\ +\x00\x00\x1a\xf0\x07\x35\x68\x6e\x00\x00\x16\xbc\x07\x35\xe8\x9a\ +\x00\x00\x92\x4d\x07\x44\x41\x2a\x00\x00\x7b\x9b\x07\x4a\x1f\x63\ +\x00\x00\x01\xd6\x07\x4d\x73\x22\x00\x00\x8b\x1f\x07\x4e\xa6\xf2\ +\x00\x00\x79\x41\x07\x58\xcb\xe8\x00\x00\x8b\x59\x07\x63\xfe\x0e\ +\x00\x00\x11\x79\x07\x80\xc6\xb3\x00\x00\x9e\x02\x07\x88\x72\x5a\ +\x00\x00\x71\x8d\x07\xa3\xe4\x0e\x00\x00\x21\xd5\x07\xc1\xfc\x13\ +\x00\x00\x2d\x88\x08\x27\xb4\xba\x00\x00\x90\x34\x08\x32\xc4\xaa\ +\x00\x00\x93\x0e\x08\x36\x74\x14\x00\x00\x23\xce\x08\x44\xb9\x83\ +\x00\x00\x33\x70\x08\x49\xc9\x30\x00\x00\x15\xeb\x08\x61\x7c\xb3\ +\x00\x00\x1d\x59\x08\xa2\xca\x67\x00\x00\x4c\x3f\x08\xa3\xe0\x33\ +\x00\x00\x74\xb9\x08\xb1\x15\x28\x00\x00\x2e\x21\x08\xb4\x04\x04\ +\x00\x00\x94\xc4\x08\xd0\x32\xf4\x00\x00\x79\x0c\x08\xd4\xcd\x69\ +\x00\x00\x79\x7f\x08\xe1\x9b\xbe\x00\x00\x19\xad\x08\xe1\xc1\xfa\ +\x00\x00\x7a\xed\x08\xeb\x8d\x7a\x00\x00\x9d\xaf\x09\x20\xda\x24\ +\x00\x00\x9f\x1e\x09\x20\xda\xb4\x00\x00\x9f\xc5\x09\x20\xda\xd4\ +\x00\x00\x9e\x57\x09\x4d\x96\xd9\x00\x00\x24\xa8\x09\x65\xda\x8a\ +\x00\x00\x7f\x03\x09\x68\x0d\x29\x00\x00\x89\x6e\x09\x71\x8d\x25\ +\x00\x00\x06\x3c\x09\x75\x23\x14\x00\x00\x6e\xf8\x09\x76\xed\x34\ +\x00\x00\x61\xb8\x09\x86\xa6\x05\x00\x00\x22\xf4\x09\x8b\x23\xba\ +\x00\x00\x93\x73\x09\x9e\xfd\x7e\x00\x00\x62\x10\x09\xb6\x2a\x63\ +\x00\x00\x32\x6d\x09\xcd\x1c\x55\x00\x00\x95\xea\x09\xd2\x21\xea\ +\x00\x00\x5a\x71\x09\xe5\x23\x0e\x00\x00\x54\xcf\x09\xec\x2b\x45\ +\x00\x00\x0b\xc9\x09\xef\x33\xa3\x00\x00\x17\x8f\x09\xf0\x1f\x6e\ +\x00\x00\x03\x3a\x09\xfd\x45\x1a\x00\x00\x8e\xd2\x0a\x09\xc1\x7a\ +\x00\x00\x91\x9f\x0a\x28\x9a\x65\x00\x00\x4a\x48\x0a\x28\x9a\x67\ +\x00\x00\x4a\x97\x0a\x28\x9a\x69\x00\x00\x4a\xe6\x0a\x2d\xbe\xe4\ +\x00\x00\x2f\x67\x0a\x35\xa9\xfa\x00\x00\x83\xb8\x0a\x3f\x27\x74\ +\x00\x00\x76\x5c\x0a\x3f\x6b\x05\x00\x00\x76\x99\x0a\x49\xa5\x4a\ +\x00\x00\x9a\xe4\x0a\x60\xe0\x15\x00\x00\x25\xba\x0a\x60\xe0\x17\ +\x00\x00\x26\x1d\x0a\x60\xe0\x19\x00\x00\x26\x80\x0a\x65\x9b\xea\ +\x00\x00\x8c\x5a\x0a\x78\x05\x80\x00\x00\x01\x2b\x0a\x7f\x8f\x65\ +\x00\x00\x3a\xd0\x0a\x98\x86\x18\x00\x00\x29\xd1\x0a\x99\x5c\xaa\ +\x00\x00\x93\xcd\x0a\xa8\x16\x95\x00\x00\x12\x77\x0a\xa9\x89\xec\ +\x00\x00\x41\xa4\x0a\xc8\x5c\x59\x00\x00\x0f\x85\x0a\xd0\x50\xb8\ +\x00\x00\x6d\xe7\x0a\xd0\xe6\xf5\x00\x00\x17\x3e\x0a\xd6\xf1\xfa\ +\x00\x00\x78\x89\x0a\xeb\x91\x88\x00\x00\x61\x1d\x0b\x07\x78\x8a\ +\x00\x00\x7e\x3c\x0b\x1b\xe0\x73\x00\x00\x4d\x84\x0b\x24\x9d\xb4\ +\x00\x00\x4e\x73\x0b\x24\xc5\xc9\x00\x00\x12\xef\x0b\x26\x7e\x0e\ +\x00\x00\x75\x7a\x0b\x2b\x50\xfa\x00\x00\x81\xfe\x0b\x2d\xb3\xf9\ +\x00\x00\x65\x1c\x0b\x37\x73\x69\x00\x00\x9c\xb0\x0b\x40\x40\x3e\ +\x00\x00\x43\x60\x0b\x43\xcd\x19\x00\x00\x42\x1e\x0b\x66\x28\xd2\ +\x00\x00\x60\xcc\x0b\x88\xe0\x07\x00\x00\x0a\x6e\x0b\x94\x44\xc5\ +\x00\x00\x2f\xd4\x0b\xc2\x99\x6a\x00\x00\x7d\x71\x0b\xd3\x27\xae\ +\x00\x00\x04\x2a\x0b\xd4\x7e\x9e\x00\x00\x0a\xa1\x0b\xf5\xee\x53\ +\x00\x00\x8b\xf1\x0c\x06\x50\x2e\x00\x00\x0c\x96\x0c\x08\x46\x23\ +\x00\x00\x77\x1c\x0c\x19\xfa\x99\x00\x00\x7a\x0d\x0c\x28\x9b\x45\ +\x00\x00\x6e\x65\x0c\x31\x7e\x4a\x00\x00\x8f\x84\x0c\x38\x4d\xe5\ +\x00\x00\x07\x40\x0c\x3a\x16\xd0\x00\x00\x18\x78\x0c\x5a\xc0\xc8\ +\x00\x00\x72\x0c\x0c\x6e\x87\xf5\x00\x00\x21\x96\x0c\x91\xa0\x7a\ +\x00\x00\x9a\x4c\x0c\x96\x90\x59\x00\x00\x42\x87\x0c\xca\xdd\xfa\ +\x00\x00\x98\x98\x0c\xd6\xef\x12\x00\x00\x2d\x33\x0c\xde\x99\x49\ +\x00\x00\x65\x68\x0c\xf0\xde\xaa\x00\x00\x80\x87\x0d\x1c\xf6\xee\ +\x00\x00\x2b\x2d\x0d\x3a\x6c\xba\x00\x00\x8f\xde\x0d\x45\xe2\x6a\ +\x00\x00\x97\x4c\x0d\x59\xa1\x45\x00\x00\x77\x99\x0d\x5a\xad\x33\ +\x00\x00\x70\xfd\x0d\x5e\xe7\x6e\x00\x00\x26\xe3\x0d\x64\xa5\xd9\ +\x00\x00\x58\xb8\x0d\x6d\xf8\xf4\x00\x00\x07\xeb\x0d\x76\xb5\x92\ +\x00\x00\x2b\x7d\x0d\x9b\xec\xc9\x00\x00\x51\x53\x0d\xa5\xd9\x94\ +\x00\x00\x2a\xc8\x0d\xa6\xda\xa4\x00\x00\x44\x89\x0d\xc6\xc6\x2a\ +\x00\x00\x92\xaa\x0d\xf2\x39\xba\x00\x00\x84\x75\x0e\x2b\x04\x15\ +\x00\x00\x75\x3b\x0e\x2c\xe4\x2a\x00\x00\x96\xdd\x0e\x4e\xcc\xc5\ +\x00\x00\x09\x4e\x0e\x6f\x9a\x1a\x00\x00\x99\x32\x0e\x7b\x7a\x2c\ +\x00\x00\x30\xc4\x0e\x8f\x6a\x37\x00\x00\x34\xb6\x0e\x91\x65\xf5\ +\x00\x00\x19\x29\x0e\xca\xd7\x34\x00\x00\x1f\x0f\x0e\xcd\x1c\x55\ +\x00\x00\x96\x3b\x0e\xcd\x1c\x65\x00\x00\x96\x8c\x0e\xea\xe5\x03\ +\x00\x00\x6c\x1c\x0e\xed\xe1\xf9\x00\x00\x45\x45\x0f\x07\x8d\xe3\ +\x00\x00\x6c\xb6\x0f\x17\x82\x4e\x00\x00\x00\xd7\x0f\x1f\x8d\xa5\ +\x00\x00\x74\xf3\x0f\x4f\x75\x3a\x00\x00\xa0\x2f\x0f\x5f\xca\xd5\ +\x00\x00\x30\x41\x0f\x75\xb0\x54\x00\x00\x76\xda\x0f\x77\xc3\xb4\ +\x00\x00\x66\x4a\x0f\x89\x0b\xbe\x00\x00\x45\xa7\x0f\x8f\xa8\xa7\ +\x00\x00\x18\x25\x0f\x98\x0a\x39\x00\x00\x9c\x02\x0f\x9e\xec\xa0\ +\x00\x00\x11\xb0\x0f\xbf\x87\xa3\x00\x00\x8a\x39\x0f\xcd\xce\x95\ +\x00\x00\x34\x44\x0f\xdf\x21\x05\x00\x00\x23\x79\x0f\xf6\x06\x1e\ +\x00\x00\x1f\x77\x0f\xf6\x29\x0a\x00\x00\x70\xad\x0f\xf7\x77\xaa\ +\x00\x00\x7f\xf8\x0f\xfb\x5f\xae\x00\x00\x75\xc6\x69\x00\x00\xa0\ +\xcf\x03\x00\x00\x00\x16\x00\x44\x00\x6f\x00\x64\x00\x61\x00\x6a\ +\x00\x20\x00\x74\x00\x6f\x01\x0d\x00\x6b\x00\x75\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\x4a\x00\x44\x00\x6f\x00\x64\x00\x61\ +\x00\x6a\x00\x65\x00\x20\x00\x76\x00\x72\x00\x68\x00\x20\x00\x6e\ +\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x6f\x00\x6a\ +\x00\x65\x01\x07\x00\x75\x00\x20\x01\x7e\x00\x69\x00\x63\x00\x75\ +\x00\x2f\x00\x6b\x00\x72\x00\x69\x00\x76\x00\x75\x00\x6c\x00\x6a\ +\x00\x75\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\x20\x00\x44\x00\ +\x6f\x00\x64\x00\x61\x00\x6a\x00\x20\x00\x75\x00\x20\x00\x67\x00\ +\x72\x00\x75\x00\x70\x00\x75\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\ +\x56\x00\x44\x00\x6f\x00\x64\x00\x61\x00\x6a\x00\x65\x00\x20\x00\ +\x6f\x00\x64\x00\x61\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x28\x00\ +\x65\x00\x29\x00\x20\x00\x75\x00\x20\x00\x70\x00\x6f\x00\x73\x00\ +\x74\x00\x6f\x00\x6a\x00\x65\x01\x07\x00\x75\x00\x20\x00\x67\x00\ +\x72\x00\x75\x00\x70\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x30\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x28\x73\x29\x20\x74\x6f\x20\ +\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x67\x72\x6f\x75\ +\x70\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x54\ +\x6f\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x7a\x00\x50\x00\x72\ +\x00\x69\x00\x6d\x00\x6a\x00\x65\x00\x6e\x00\x6a\x00\x75\x00\x6a\ +\x00\x65\x00\x20\x00\x74\x00\x72\x00\x65\x00\x6e\x00\x75\x00\x74\ +\x00\x6e\x00\x75\x00\x20\x01\x61\x00\x69\x00\x72\x00\x69\x00\x6e\ +\x00\x75\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x6a\x00\x65\ +\x00\x20\x00\x69\x00\x20\x00\x62\x00\x6f\x00\x6a\x00\x75\x00\x20\ +\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x72\ +\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x00\x50\x00\x72\x00\x69\x00\x6d\x00\x69\x00\x6a\x00\ +\x65\x00\x6e\x00\x69\x00\x20\x00\x74\x00\x72\x00\x65\x00\x6e\x00\ +\x75\x00\x74\x00\x6e\x00\x69\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\x4c\x00\x75\x00\x6b\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\x72\x63\x07\x00\x00\x00\ +\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\x01\x03\x00\x00\x00\x68\ +\x00\x53\x00\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\x20\x00\x6c\ +\x00\x75\x00\x6b\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\ +\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x75\x00\x68\x00\x76\x00\x61\ +\x00\x74\x00\x69\x00\x74\x00\x69\x00\x2c\x00\x20\x00\x53\x00\x48\ +\x00\x49\x00\x46\x00\x54\x00\x20\x00\x64\x00\x61\x00\x20\x00\x62\ +\x00\x69\x00\x20\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x6e\x00\x69\ +\x01\x0d\x00\x69\x00\x6c\x00\x69\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\x73\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\x9e\ +\x00\x53\x00\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\x20\x00\x6b\ +\x00\x72\x00\x69\x00\x76\x00\x75\x00\x6c\x00\x6a\x00\x75\x00\x20\ +\x00\x73\x00\x61\x00\x20\x00\x76\x00\x69\x01\x61\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x01\x0d\x00\x61\x00\x6b\x00\x61\x00\x2e\x00\x20\ +\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x7a\x00\x61\x00\x20\ +\x00\x75\x00\x68\x00\x76\x00\x61\x00\x74\x00\x69\x00\x74\x00\x69\ +\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\ +\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x6e\ +\x00\x69\x01\x0d\x00\x69\x00\x74\x00\x69\x00\x20\x00\x70\x00\x6f\ +\x00\x6d\x00\x69\x00\x63\x00\x61\x00\x6e\x00\x6a\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\x08\x00\x4b\x00\x72\x00\x75\x00\x67\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x06\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x0c\ +\x44\x72\x61\x66\x74\x5f\x43\x69\x72\x63\x6c\x65\x01\x03\x00\x00\ +\x00\x82\x00\x53\x00\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\x20\ +\x00\x6b\x00\x72\x00\x75\x00\x67\x00\x2e\x00\x20\x00\x20\x00\x43\ +\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x75\ +\x00\x68\x00\x76\x00\x61\x00\x74\x00\x69\x00\x74\x00\x69\x00\x2c\ +\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x7a\x00\x61\x00\x20\ +\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x69\x00\x72\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x61\x00\x20\x00\x6e\ +\x00\x61\x00\x20\x00\x74\x00\x61\x00\x6e\x00\x67\x00\x65\x00\x6e\ +\x00\x74\x00\x69\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\x5a\x00\x61\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x69\ +\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x6a\x00\x75\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x43\x6c\x6f\x73\x65\x20\x4c\x69\ +\x6e\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\ +\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x34\x00\x5a\x00\x61\ +\x00\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\x20\x00\x73\x00\x65\ +\x00\x20\x00\x6e\x00\x61\x00\x63\x00\x72\x00\x74\x00\x61\x00\x6e\ +\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x6a\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\x18\x00\ +\x55\x00\x6b\x00\x6c\x00\x6f\x00\x6e\x00\x69\x00\x20\x00\x74\x00\ +\x6f\x01\x0d\x00\x6b\x00\x75\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\x58\x00\x55\x00\x6b\x00\x6c\x00\x61\x00\x6e\ +\x00\x6a\x00\x61\x00\x20\x00\x74\x00\x6f\x01\x0d\x00\x6b\x00\x75\ +\x00\x20\x00\x69\x00\x7a\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x74\ +\x00\x6f\x00\x6a\x00\x65\x01\x07\x00\x65\x00\x20\x01\x7e\x00\x69\ +\x00\x63\x00\x65\x00\x20\x00\x69\x00\x6c\x00\x69\x00\x20\x00\x6b\ +\x00\x72\x00\x69\x00\x76\x00\x75\x00\x6c\x00\x6a\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\ +\xb2\x00\x53\x00\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\x20\x00\ +\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x7a\x00\x69\x00\x6a\x00\ +\x75\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\ +\x7a\x00\x61\x00\x20\x00\x75\x00\x68\x00\x76\x00\x61\x00\x74\x00\ +\x69\x00\x74\x00\x69\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\ +\x46\x00\x54\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x6f\x00\x67\x00\ +\x72\x00\x61\x00\x6e\x00\x69\x01\x0d\x00\x61\x00\x76\x00\x61\x00\ +\x6e\x00\x6a\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x6d\x00\x61\x00\ +\x6b\x00\x61\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\ +\x7a\x00\x61\x00\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x69\x00\ +\x72\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x61\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\ +\x7a\x00\x69\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x09\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\x0f\x44\ +\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x01\x03\ +\x00\x00\x00\x0e\x00\x52\x00\x61\x00\x7a\x00\x62\x00\x69\x00\x74\ +\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x44\x6f\x77\x6e\ +\x67\x72\x61\x64\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\ +\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x7c\x00\ +\x52\x00\x61\x00\x7a\x00\x62\x00\x69\x00\x6a\x00\x61\x00\x20\x00\ +\x6f\x00\x64\x00\x61\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\ +\x20\x00\x75\x00\x20\x00\x6a\x00\x65\x00\x64\x00\x6e\x00\x6f\x00\ +\x73\x00\x74\x00\x61\x00\x76\x00\x6e\x00\x69\x00\x6a\x00\x65\x00\ +\x2c\x00\x20\x00\x69\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\x64\x00\ +\x75\x00\x7a\x00\x69\x00\x6d\x00\x61\x00\x20\x00\x70\x00\x6f\x00\ +\x76\x00\x72\x01\x61\x00\x69\x00\x6e\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x45\x45\x78\x70\x6c\x6f\x64\x65\x73\x20\x74\x68\ +\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x69\x6e\x74\x6f\x20\x73\x69\x6d\x70\x6c\x65\x72\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\x6f\x72\x20\x73\x75\x62\x74\ +\x72\x61\x63\x74\x20\x66\x61\x63\x65\x73\x07\x00\x00\x00\x0f\x44\ +\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x01\x03\ +\x00\x00\x00\x0a\x00\x43\x00\x72\x00\x74\x00\x65\x01\x7e\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\x40\x00\x53\x00\x74\x00\x61\x00\x76\x00\ +\x6c\x00\x6a\x00\x61\x00\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\ +\x72\x00\x61\x00\x6e\x00\x69\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x6c\x00\ +\x69\x00\x73\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\x0a\x00\x55\x00\x72\x00\x65\x00\x64\x00\x69\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\ +\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\ +\x00\x00\x36\x00\x55\x00\x72\x00\x65\x01\x11\x00\x69\x00\x76\x00\ +\x61\x00\x6e\x00\x6a\x00\x65\x00\x20\x00\x61\x00\x6b\x00\x74\x00\ +\x69\x00\x76\x00\x6e\x00\x6f\x00\x67\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\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\ +\x5a\x00\x61\x00\x76\x00\x72\x01\x61\x00\x69\x00\x20\x00\x6c\x00\ +\x69\x00\x6e\x00\x69\x00\x6a\x00\x75\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0b\x46\x69\x6e\x69\x73\x68\x20\x6c\x69\x6e\x65\x07\x00\ +\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\x69\x73\x68\x4c\ +\x69\x6e\x65\x01\x03\x00\x00\x00\x3c\x00\x5a\x00\x61\x00\x76\x00\ +\x72\x01\x61\x00\x61\x00\x76\x00\x61\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x69\x00\x6a\x00\x61\x00\x20\x00\x62\x00\x65\x00\x7a\x00\ +\x20\x00\x7a\x00\x61\x00\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\ +\x6e\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x46\ +\x69\x6e\x69\x73\x68\x65\x73\x20\x61\x20\x6c\x69\x6e\x65\x20\x77\ +\x69\x74\x68\x6f\x75\x74\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\ +\x74\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\x69\ +\x73\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\xa8\x00\x53\x00\x74\ +\x00\x76\x00\x61\x00\x72\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\ +\x00\x69\x00\x6a\x00\x75\x00\x20\x00\x70\x00\x6f\x00\x6d\x00\x6f\ +\x01\x07\x00\x75\x00\x20\x00\x64\x00\x76\x00\x69\x00\x6a\x00\x65\ +\x00\x20\x00\x74\x00\x6f\x01\x0d\x00\x6b\x00\x65\x00\x2e\x00\x20\ +\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x7a\x00\x61\x00\x20\ +\x00\x75\x00\x68\x00\x76\x00\x61\x00\x74\x00\x69\x00\x74\x00\x69\ +\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\ +\x00\x7a\x00\x61\x00\x20\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x6e\ +\x00\x69\x01\x0d\x00\x69\x00\x74\x00\x69\x00\x20\x00\x70\x00\x6f\ +\x00\x73\x00\x74\x00\x61\x00\x76\x00\x6c\x00\x6a\x00\x61\x00\x6e\ +\x00\x6a\x00\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\x0c\x00\x4c\x00\x69\x00\ +\x6e\x00\x69\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\ +\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x12\x00\x50\x00\x6f\x00\x6d\ +\x00\x69\x00\x63\x00\x61\x00\x6e\x00\x6a\x00\x65\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\x0a\x44\ +\x72\x61\x66\x74\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\x00\xe2\x00\ +\x50\x00\x72\x00\x65\x00\x6d\x00\x6a\x00\x65\x01\x61\x00\x74\x00\ +\x61\x00\x6e\x00\x6a\x00\x65\x00\x20\x00\x6f\x00\x64\x00\x61\x00\ +\x62\x00\x72\x00\x61\x00\x6e\x00\x69\x00\x68\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x61\x00\x74\x00\x61\x00\x20\x00\ +\x69\x00\x7a\x00\x6d\x00\x65\x01\x11\x00\x75\x00\x20\x00\x32\x00\ +\x20\x00\x74\x00\x6f\x01\x0d\x00\x6b\x00\x65\x00\x2e\x00\x20\x00\ +\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x7a\x00\x61\x00\x20\x00\ +\x75\x00\x68\x00\x76\x00\x61\x00\x74\x00\x69\x00\x74\x00\x69\x00\ +\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\ +\x7a\x00\x61\x00\x20\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x6e\x00\ +\x69\x01\x0d\x00\x69\x00\x74\x00\x69\x00\x20\x00\x70\x00\x6f\x00\ +\x6d\x00\x69\x00\x63\x00\x61\x00\x6e\x00\x6a\x00\x65\x00\x2c\x00\ +\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x7a\x00\x61\x00\x20\x00\ +\x6b\x00\x6f\x00\x70\x00\x69\x00\x72\x00\x61\x00\x6e\x00\x6a\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\x0a\x00\x50\x00\x6f\x00\x6d\ +\x00\x61\x00\x6b\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\xb0\x00\x50\x00\x6f\x00\ +\x6d\x00\x69\x01\x0d\x00\x65\x00\x20\x00\x61\x00\x6b\x00\x74\x00\ +\x69\x00\x76\x00\x6e\x00\x69\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\x7a\x00\x61\x00\x20\x00\x75\x00\x68\x00\x76\x00\ +\x61\x00\x74\x00\x69\x00\x74\x00\x69\x00\x2c\x00\x20\x00\x53\x00\ +\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x7a\x00\x61\x00\x20\x00\ +\x6f\x00\x67\x00\x72\x00\x61\x00\x6e\x00\x69\x01\x0d\x00\x69\x00\ +\x74\x00\x69\x00\x20\x00\x70\x00\x6f\x00\x6d\x00\x69\x00\x63\x00\ +\x61\x00\x6e\x00\x6a\x00\x65\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\ +\x54\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\ +\x69\x00\x72\x00\x61\x00\x6e\x00\x6a\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\x7e\x00\x53\x00\x74\x00\x76\x00\x61\x00\x72\x00\x61\ +\x00\x20\x00\x50\x00\x6f\x00\x6c\x00\x69\x00\x67\x00\x6f\x00\x6e\ +\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x7a\ +\x00\x61\x00\x20\x00\x75\x00\x68\x00\x76\x00\x61\x00\x74\x00\x69\ +\x00\x74\x00\x69\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\ +\x00\x54\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x6f\x00\x67\x00\x72\ +\x00\x61\x00\x6e\x00\x69\x01\x0d\x00\x69\x00\x74\x00\x69\x00\x20\ +\x00\x70\x00\x6f\x00\x6d\x00\x69\x00\x63\x00\x61\x00\x6e\x00\x6a\ +\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\x69\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\x7a\x00\x53\x00\x74\x00\x76\x00\x61\x00\x72\ +\x00\x61\x00\x20\x00\x70\x00\x72\x00\x61\x00\x76\x00\x6f\x00\x6b\ +\x00\x75\x00\x74\x00\x6e\x00\x69\x00\x6b\x00\x20\x00\x70\x00\x6f\ +\x00\x6d\x00\x6f\x01\x07\x00\x75\x00\x20\x00\x32\x00\x20\x00\x6e\ +\x00\x61\x00\x73\x00\x75\x00\x70\x00\x72\x00\x6f\x00\x74\x00\x6e\ +\x00\x61\x00\x20\x00\x76\x00\x72\x00\x68\x00\x61\x00\x2e\x00\x20\ +\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x7a\x00\x61\x00\x20\ +\x00\x75\x00\x68\x00\x76\x00\x61\x00\x74\x00\x69\x00\x74\x00\x69\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x29\x43\x72\x65\x61\x74\x65\ +\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\x20\x72\x65\x63\x74\ +\x61\x6e\x67\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\ +\x6e\x61\x70\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x52\x65\ +\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x16\x00\x50\x00\ +\x72\x00\x61\x00\x76\x00\x6f\x00\x6b\x00\x75\x00\x74\x00\x6e\x00\ +\x69\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x52\x65\x63\ +\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\ +\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x0e\ +\x00\x52\x00\x6f\x00\x74\x00\x69\x00\x72\x00\x61\x00\x6a\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\xb4\x00\x52\x00\x6f\x00\x74\x00\x69\x00\x72\x00\ +\x61\x00\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x72\x00\x61\x00\ +\x6e\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x65\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ +\x20\x00\x7a\x00\x61\x00\x20\x00\x75\x00\x68\x00\x76\x00\x61\x00\ +\x74\x00\x69\x00\x74\x00\x69\x00\x2c\x00\x20\x00\x53\x00\x48\x00\ +\x49\x00\x46\x00\x54\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x6f\x00\ +\x67\x00\x72\x00\x61\x00\x6e\x00\x69\x01\x0d\x00\x69\x00\x74\x00\ +\x69\x00\x20\x00\x70\x00\x6f\x00\x6d\x00\x69\x00\x63\x00\x61\x00\ +\x6e\x00\x6a\x00\x65\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\ +\x20\x00\x7a\x00\x61\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\ +\x72\x00\x61\x00\x6e\x00\x6a\x00\x65\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\x10\x00\x53\x00\x6b\ +\x00\x61\x00\x6c\x00\x69\x00\x72\x00\x61\x00\x6a\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\ +\xd8\x00\x53\x00\x6b\x00\x61\x00\x6c\x00\x69\x00\x72\x00\x61\x00\ +\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x72\x00\x61\x00\x6e\x00\ +\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x65\x00\x20\x00\x69\x00\x7a\x00\x20\x00\x6f\x00\x73\x00\x6e\x00\ +\x6f\x00\x76\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x6f\x01\x0d\x00\ +\x6b\x00\x65\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ +\x20\x00\x7a\x00\x61\x00\x20\x00\x75\x00\x68\x00\x76\x00\x61\x00\ +\x74\x00\x69\x00\x74\x00\x69\x00\x2c\x00\x20\x00\x53\x00\x48\x00\ +\x49\x00\x46\x00\x54\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x6f\x00\ +\x67\x00\x72\x00\x61\x00\x6e\x00\x69\x01\x0d\x00\x69\x00\x74\x00\ +\x69\x00\x20\x00\x70\x00\x6f\x00\x6d\x00\x69\x00\x63\x00\x61\x00\ +\x6e\x00\x6a\x00\x65\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\ +\x20\x00\x7a\x00\x61\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\ +\x72\x00\x61\x00\x6e\x00\x6a\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\x1a\x00\x4f\x00\x64\x00\x61\x00\x62\x00\x65\x00\ +\x72\x00\x69\x00\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\x75\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x65\x6c\x65\x63\x74\x20\ +\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\ +\x53\x65\x6c\x65\x63\x74\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\ +\x74\x00\x4f\x00\x64\x00\x61\x00\x62\x00\x69\x00\x72\x00\x65\x00\ +\x20\x00\x73\x00\x76\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x73\x00\x20\x00\x69\x00\ +\x73\x00\x74\x00\x69\x00\x6d\x00\x20\x00\x72\x00\x6f\x00\x64\x00\ +\x69\x00\x74\x00\x65\x00\x6c\x00\x6a\x00\x69\x00\x6d\x00\x61\x00\ +\x20\x00\x6b\x00\x6f\x00\x6a\x00\x65\x00\x20\x00\x69\x00\x6d\x00\ +\x61\x00\x20\x00\x6f\x00\x76\x00\x61\x00\x20\x00\x67\x00\x72\x00\ +\x75\x00\x70\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x53\ +\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\x61\x6d\x65\ +\x20\x70\x61\x72\x65\x6e\x74\x73\x20\x61\x73\x20\x74\x68\x69\x73\ +\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\ +\x5f\x53\x65\x6c\x65\x63\x74\x47\x72\x6f\x75\x70\x01\x03\x00\x00\ +\x00\x30\x00\x4f\x00\x64\x00\x61\x00\x62\x00\x65\x00\x72\x00\x69\ +\x00\x74\x00\x65\x00\x20\x00\x72\x00\x61\x00\x76\x00\x6e\x00\x69\ +\x00\x6e\x00\x75\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x72\x00\x61\ +\x00\x64\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\x20\x00\x4f\x00\x64\x00\x61\x00\x62\x00\x65\x00\x72\ +\x00\x69\x00\x74\x00\x65\x00\x52\x00\x61\x00\x76\x00\x6e\x00\x69\ +\x00\x6e\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x65\ +\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x11\x44\x72\ +\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x01\ +\x03\x00\x00\x00\x46\x00\x53\x00\x74\x00\x76\x00\x61\x00\x72\x00\ +\x61\x00\x20\x00\x32\x00\x44\x00\x20\x00\x70\x00\x6f\x00\x67\x00\ +\x6c\x00\x65\x00\x64\x00\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\ +\x72\x00\x61\x00\x6e\x00\x69\x00\x68\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x61\x00\x74\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2a\x43\x72\x65\x61\x74\x65\x73\x20\x53\x68\x61\ +\x70\x65\x20\x32\x44\x20\x76\x69\x65\x77\x73\x20\x6f\x66\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\ +\x00\x00\x00\x11\x44\x72\x61\x66\x74\x5f\x53\x68\x61\x70\x65\x32\ +\x44\x56\x69\x65\x77\x01\x03\x00\x00\x00\x20\x00\x32\x00\x44\x00\ +\x20\x00\x70\x00\x72\x00\x69\x00\x6b\x00\x61\x00\x7a\x00\x20\x00\ +\x6f\x00\x62\x00\x6c\x00\x69\x00\x6b\x00\x61\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\x53\ +\x00\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\x20\x00\x6b\x00\x6f\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x72\x00\x2e\x00\x20\ +\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x7a\x00\x61\x00\x20\ +\x00\x75\x00\x68\x00\x76\x00\x61\x00\x74\x00\x69\x00\x74\x00\x69\ +\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\x3c\x00\ +\x55\x00\x6b\x00\x6c\x00\x6a\x00\x75\x01\x0d\x00\x69\x00\x2f\x00\ +\x49\x00\x73\x00\x6b\x00\x6c\x00\x6a\x00\x75\x01\x0d\x00\x69\x00\ +\x20\x00\x6d\x00\x6f\x00\x64\x00\x20\x00\x69\x00\x7a\x00\x67\x00\ +\x72\x00\x61\x00\x64\x00\x6e\x00\x6a\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\x6e\x00\x55\x00\x6b\x00\x6c\x00\x6a\x00\x75\x01\x0d\x00\ +\x75\x00\x6a\x00\x65\x00\x2f\x00\x69\x00\x73\x00\x6b\x00\x6c\x00\ +\x6a\x00\x75\x01\x0d\x00\x75\x00\x6a\x00\x65\x00\x20\x00\x6d\x00\ +\x6f\x00\x64\x00\x20\x00\x69\x00\x7a\x00\x67\x00\x72\x00\x61\x00\ +\x64\x00\x6e\x00\x6a\x00\x65\x00\x20\x00\x7a\x00\x61\x00\x20\x00\ +\x73\x00\x6c\x00\x6a\x00\x65\x00\x64\x00\x65\x01\x07\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\ +\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\ +\x34\x00\x55\x00\x6b\x00\x6c\x00\x6a\x00\x75\x01\x0d\x00\x69\x00\ +\x20\x00\x6e\x00\x61\x01\x0d\x00\x69\x00\x6e\x00\x20\x00\x6e\x00\ +\x61\x00\x73\x00\x74\x00\x61\x00\x76\x00\x6c\x00\x6a\x00\x61\x00\ +\x6e\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x62\x00\x55\x00\x6b\x00\x6c\x00\x6a\x00\x75\ +\x01\x0d\x00\x75\x00\x6a\x00\x65\x00\x20\x00\x6e\x00\x61\x01\x0d\ +\x00\x69\x00\x6e\x00\x20\x00\x6e\x00\x61\x00\x73\x00\x74\x00\x61\ +\x00\x76\x00\x6c\x00\x6a\x00\x61\x00\x6e\x00\x6a\x00\x61\x00\x20\ +\x00\x7a\x00\x61\x00\x20\x00\x73\x00\x6c\x00\x6a\x00\x65\x00\x64\ +\x00\x65\x01\x07\x00\x65\x00\x20\x00\x6e\x00\x61\x00\x72\x00\x65\ +\x00\x64\x00\x62\x00\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x2c\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\x20\x43\x6f\ +\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\x65\x20\x66\x6f\x72\x20\ +\x6e\x65\x78\x74\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x2e\x07\x00\ +\x00\x00\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\ +\x6f\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\ +\x9e\x00\x5a\x00\x61\x00\x6d\x00\x6a\x00\x65\x00\x6e\x00\x6a\x00\ +\x75\x00\x6a\x00\x65\x00\x20\x00\x6e\x00\x61\x01\x0d\x00\x69\x00\ +\x6e\x00\x20\x00\x70\x00\x72\x00\x69\x00\x6b\x00\x61\x00\x7a\x00\ +\x61\x00\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x72\x00\x61\x00\ +\x6e\x00\x69\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x61\x00\x74\x00\x61\x00\x20\x00\x69\x00\x7a\x00\x6d\x00\ +\x65\x01\x11\x00\x75\x00\x20\x00\x22\x00\x53\x00\x61\x00\x6d\x00\ +\x6f\x00\x20\x01\x7e\x00\x69\x00\x63\x00\x65\x00\x22\x00\x20\x00\ +\x69\x00\x20\x00\x22\x00\x52\x00\x61\x00\x76\x00\x6e\x00\x65\x00\ +\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x6a\x00\x65\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\ +\x2c\x00\x50\x00\x72\x00\x6f\x00\x6d\x00\x6a\x00\x65\x00\x6e\x00\ +\x69\x00\x20\x00\x6e\x00\x61\x01\x0d\x00\x69\x00\x6e\x00\x20\x00\ +\x70\x00\x72\x00\x69\x00\x6b\x00\x61\x00\x7a\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\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\x0c\x00\ +\x53\x00\x6b\x00\x72\x00\x61\x01\x07\x00\x75\x00\x6a\x00\x65\x00\ +\x20\x00\x69\x00\x6c\x00\x69\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x64\x00\x75\x01\x7e\x00\x75\x00\x6a\x00\x65\x00\x20\x00\x6f\x00\ +\x64\x00\x61\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x69\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x69\x00\ +\x6c\x00\x69\x00\x20\x00\x69\x00\x7a\x00\x76\x00\x6c\x00\x61\x01\ +\x0d\x00\x69\x00\x20\x00\x70\x00\x6f\x00\x76\x00\x72\x01\x61\x00\ +\x69\x00\x6e\x00\x65\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\ +\x4c\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x6f\x00\x67\x00\x72\x00\ +\x61\x00\x6e\x00\x69\x01\x0d\x00\x69\x00\x74\x00\x69\x00\x2c\x00\ +\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x6f\x00\ +\x67\x00\x72\x00\x61\x00\x6e\x00\x69\x01\x0d\x00\x61\x00\x76\x00\ +\x61\x00\x20\x00\x69\x00\x7a\x00\x76\x00\x6c\x00\x61\x01\x0d\x00\ +\x65\x00\x6e\x00\x6a\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x20\x00\ +\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x69\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\x69\x00\x72\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x89\x54\x72\x69\x6d\x73\x20\x6f\x72\x20\x65\x78\ +\x74\x65\x6e\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x6f\x72\x20\x65\x78\ +\x74\x72\x75\x64\x65\x73\x20\x73\x69\x6e\x67\x6c\x65\x20\x66\x61\ +\x63\x65\x73\x2e\x20\x43\x54\x52\x4c\x20\x73\x6e\x61\x70\x73\x2c\ +\x20\x53\x48\x49\x46\x54\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\ +\x73\x20\x74\x6f\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x73\x65\x67\ +\x6d\x65\x6e\x74\x20\x6f\x72\x20\x74\x6f\x20\x6e\x6f\x72\x6d\x61\ +\x6c\x2c\x20\x41\x4c\x54\x20\x69\x6e\x76\x65\x72\x74\x73\x07\x00\ +\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x54\x72\x69\x6d\x65\x78\x01\ +\x03\x00\x00\x00\x34\x00\x50\x00\x6f\x00\x6e\x00\x69\x01\x61\x00\ +\x74\x00\x69\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x6c\x00\x6a\x00\ +\x65\x00\x64\x00\x6e\x00\x6a\x00\x69\x00\x20\x00\x73\x00\x65\x00\ +\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x11\x55\x6e\x64\x6f\x20\x6c\x61\x73\x74\x20\x73\x65\x67\ +\x6d\x65\x6e\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x55\ +\x6e\x64\x6f\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x84\x00\x50\x00\ +\x6f\x00\x6e\x00\x69\x01\x61\x00\x74\x00\x61\x00\x76\x00\x61\x00\ +\x20\x00\x70\x00\x6f\x00\x73\x00\x6c\x00\x6a\x00\x65\x00\x64\x00\ +\x6e\x00\x6a\x00\x69\x00\x20\x00\x6e\x00\x61\x00\x63\x00\x72\x00\ +\x74\x00\x61\x00\x6e\x00\x69\x00\x20\x00\x73\x00\x65\x00\x67\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\ +\x69\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x6a\x00\x65\x00\x20\x00\ +\x6b\x00\x6f\x00\x6a\x00\x61\x00\x20\x00\x73\x00\x65\x00\x20\x00\ +\x70\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x76\x00\x6c\x00\x6a\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\xc4\x00\x53\x00\x70\x00\x61\x00\ +\x6a\x00\x61\x00\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x72\x00\ +\x61\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x75\x00\x20\x00\x6a\x00\ +\x65\x00\x64\x00\x61\x00\x6e\x00\x2c\x00\x20\x00\x69\x00\x6c\x00\ +\x69\x00\x20\x00\x70\x00\x72\x00\x65\x00\x74\x00\x76\x00\x61\x00\ +\x72\x00\x61\x00\x20\x00\x7a\x00\x61\x00\x74\x00\x76\x00\x6f\x00\ +\x72\x00\x65\x00\x6e\x00\x75\x00\x20\x01\x7e\x00\x69\x00\x63\x00\ +\x75\x00\x20\x00\x75\x00\x20\x00\x70\x00\x6f\x00\x76\x00\x72\x01\ +\x61\x00\x69\x00\x6e\x00\x75\x00\x2c\x00\x20\x00\x69\x00\x6c\x00\ +\x69\x00\x20\x00\x75\x00\x6a\x00\x65\x00\x64\x00\x69\x00\x6e\x00\ +\x69\x00\x6e\x00\x6a\x00\x75\x00\x6a\x00\x65\x00\x20\x00\x70\x00\ +\x6f\x00\x76\x00\x72\x01\x61\x00\x69\x00\x6e\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x5d\x4a\x6f\x69\x6e\x73\x20\x74\x68\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x69\x6e\x74\x6f\x20\x6f\x6e\x65\x2c\x20\x6f\x72\x20\x63\ +\x6f\x6e\x76\x65\x72\x74\x73\x20\x63\x6c\x6f\x73\x65\x64\x20\x77\ +\x69\x72\x65\x73\x20\x74\x6f\x20\x66\x69\x6c\x6c\x65\x64\x20\x66\ +\x61\x63\x65\x73\x2c\x20\x6f\x72\x20\x75\x6e\x69\x74\x65\x20\x66\ +\x61\x63\x65\x73\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x55\ +\x70\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x16\x00\x4e\x00\x61\ +\x00\x64\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x64\x00\x6e\x00\x6a\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x55\x70\x67\x72\ +\x61\x64\x65\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x55\x70\ +\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x96\x00\x53\x00\x74\x00\ +\x76\x00\x61\x00\x72\x00\x61\x00\x20\x01\x7e\x00\x69\x00\x63\x00\ +\x75\x00\x20\x00\x73\x00\x61\x00\x20\x00\x76\x00\x69\x01\x61\x00\ +\x65\x00\x20\x00\x74\x00\x6f\x01\x0d\x00\x61\x00\x6b\x00\x61\x00\ +\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x7a\x00\ +\x61\x00\x20\x00\x75\x00\x68\x00\x76\x00\x61\x00\x74\x00\x69\x00\ +\x74\x00\x69\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\ +\x54\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\x67\x00\x72\x00\ +\x61\x00\x6e\x00\x69\x01\x0d\x00\x69\x00\x74\x00\x69\x00\x20\x00\ +\x70\x00\x6f\x00\x6d\x00\x69\x00\x63\x00\x61\x00\x6e\x00\x6a\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\x01\ +\x7d\x00\x69\x00\x63\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x57\x69\x72\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\ +\x57\x69\x72\x65\x01\x03\x00\x00\x00\x3c\x00\x49\x00\x7a\x00\x6d\ +\x00\x6a\x00\x65\x00\x6e\x00\x61\x00\x20\x00\x69\x00\x7a\x00\x6d\ +\x00\x65\x01\x11\x00\x75\x00\x20\x01\x7e\x00\x69\x00\x63\x00\x65\ +\x00\x20\x00\x69\x00\x20\x00\x6b\x00\x72\x00\x69\x00\x76\x00\x75\ +\x00\x6c\x00\x6a\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\x01\ +\x7d\x00\x69\x00\x63\x00\x61\x00\x20\x00\x75\x00\x20\x00\x6b\x00\ +\x72\x00\x69\x00\x76\x00\x75\x00\x6c\x00\x6a\x00\x75\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\x42\x00\x41\x00\x6c\x00\ +\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\x74\x00\x69\x00\x76\x00\ +\x6e\x00\x61\x00\x20\x00\x6c\x00\x6f\x00\x6b\x00\x61\x00\x63\x00\ +\x69\x00\x6a\x00\x61\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\ +\x75\x00\x7a\x00\x6f\x00\x72\x00\x61\x00\x6b\x00\x61\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\x72\x00\x55\ +\x00\x76\x00\x69\x00\x6a\x00\x65\x00\x6b\x00\x20\x00\x68\x00\x76\ +\x00\x61\x00\x74\x00\x61\x00\x6a\x00\x20\x00\x7a\x00\x61\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x20\ +\x00\x28\x00\x6f\x00\x6e\x00\x65\x00\x6d\x00\x6f\x00\x67\x00\x75\ +\x01\x07\x00\x69\x00\x74\x00\x69\x00\x20\x00\x70\x00\x72\x00\x65\ +\x01\x0d\x00\x61\x00\x63\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x68\ +\x00\x76\x00\x61\x00\x74\x00\x61\x00\x6e\x00\x6a\x00\x65\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\x62\x00\x72\x00\x6e\x00\x75\x00\x74\x00\x61\x00\x20\ +\x00\x6b\x00\x6f\x00\x73\x00\x61\x00\x20\x00\x63\x00\x72\x00\x74\ +\x00\x61\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ +\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x35\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x26\x00\x4f\x00\x62\x00\x72\x00\x6e\x00\x75\x00\x74\x00\ +\x61\x00\x20\x00\x6b\x00\x6f\x00\x73\x00\x61\x00\x20\x00\x63\x00\ +\x72\x00\x74\x00\x61\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x37\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x26\x00\x4f\x00\x62\x00\x72\x00\x6e\x00\x75\ +\x00\x74\x00\x61\x00\x20\x00\x6b\x00\x6f\x00\x73\x00\x61\x00\x20\ +\x00\x63\x00\x72\x00\x74\x00\x61\x00\x20\x00\x39\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\ +\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x8e\x00\x4f\x00\x7a\x00\x6e\x00\ +\x61\x01\x0d\x00\x69\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x76\x00\ +\x6f\x00\x20\x00\x61\x00\x6b\x00\x6f\x00\x20\x01\x7e\x00\x65\x00\ +\x6c\x00\x69\x00\x74\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x64\x00\ +\x72\x00\x75\x01\x0d\x00\x6a\x00\x61\x00\x20\x00\x28\x00\x33\x00\ +\x44\x00\x20\x00\x70\x00\x6f\x00\x76\x00\x72\x01\x61\x00\x69\x00\ +\x6e\x00\x65\x00\x29\x00\x20\x00\x64\x00\x61\x00\x20\x00\x73\x00\ +\x65\x00\x20\x00\x74\x00\x61\x00\x6b\x00\x6f\x01\x11\x00\x65\x00\ +\x72\x00\x20\x00\x75\x01\x0d\x00\x69\x00\x74\x00\x61\x00\x76\x00\ +\x61\x00\x6a\x00\x75\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\x98\x00\x4f\x00\x7a\x00\x6e\x00\x61\ +\x01\x0d\x00\x69\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x76\x00\x6f\ +\x00\x20\x00\x61\x00\x6b\x00\x6f\x00\x20\x01\x7e\x00\x65\x00\x6c\ +\x00\x69\x00\x74\x00\x65\x00\x20\x00\x64\x00\x61\x00\x20\x00\x6e\ +\x00\x65\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x6f\x00\x76\x00\x61\ +\x00\x6e\x00\x69\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x6b\x00\x6f\ +\x00\x76\x00\x69\x00\x20\x00\x28\x00\x70\x00\x6f\x01\x0d\x00\x65\ +\x00\x76\x01\x61\x00\x69\x00\x20\x00\x73\x00\x20\x00\x2a\x00\x29\ +\x00\x20\x00\x73\x00\x65\x00\x20\x00\x6d\x00\x6f\x00\x67\x00\x75\ +\x00\x20\x00\x75\x01\x0d\x00\x69\x00\x74\x00\x61\x00\x74\x00\x69\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x53\x43\x68\x65\x63\x6b\x20\ +\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\ +\x20\x74\x68\x65\x20\x6e\x6f\x6e\x2d\x6e\x61\x6d\x65\x64\x20\x62\ +\x6c\x6f\x63\x6b\x73\x20\x28\x62\x65\x67\x69\x6e\x6e\x69\x6e\x67\ +\x20\x77\x69\x74\x68\x20\x61\x20\x2a\x29\x20\x74\x6f\x20\x62\x65\ +\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0c\x00\x4b\x00\x72\x00\x75\x00\x67\x00\x20\x00\ +\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x69\x72\x63\x6c\ +\x65\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x4b\x00\x72\x00\ +\x75\x00\x67\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x08\x43\x69\x72\x63\x6c\x65\x20\x37\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0c\x00\x4b\x00\x72\x00\x75\x00\x67\x00\x20\x00\x39\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x39\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x3a\x00\x42\x00\x6f\x00\x6a\x00\x61\x00\ +\x20\x00\x6d\x00\x61\x00\x70\x00\x69\x00\x72\x00\x61\x00\x6e\x00\ +\x61\x00\x20\x00\x75\x00\x20\x01\x61\x00\x69\x00\x72\x00\x69\x00\ +\x6e\x00\x75\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x6a\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\x2e\x00\x44\x00\x61\ +\x00\x74\x00\x6f\x00\x74\x00\x65\x00\x6b\x00\x61\x00\x20\x00\x6d\ +\x00\x61\x00\x70\x00\x69\x00\x72\x00\x61\x00\x6e\x00\x6a\x00\x61\ +\x00\x20\x00\x62\x00\x6f\x00\x6a\x00\x61\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\x26\x00\x52\ +\x00\x61\x00\x64\x00\x20\x00\x73\x00\x61\x00\x20\x00\x6f\x00\x67\ +\x00\x72\x00\x61\x00\x6e\x00\x69\x01\x0d\x00\x65\x00\x6e\x00\x6a\ +\x00\x65\x00\x6d\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\x12\x00\x49\x00\x7a\x00\x67\x00\x72\x00\x61\x00\x64\x00\ +\x6e\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\ +\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x22\x00\x42\x00\x6f\x00\x6a\x00\x61\x00\x20\x00\x6b\x00\ +\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x63\x00\ +\x69\x00\x6a\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\x2c\x00\x49\x00\x6d\x00\x65\x00\ +\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\x65\x00\x20\x00\x6b\x00\ +\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x63\x00\ +\x69\x00\x6a\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\x38\x00\x4e\ +\x00\x61\x00\x70\x00\x72\x00\x61\x00\x76\x00\x69\x00\x20\x00\x70\ +\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x61\x00\x72\ +\x00\x73\x00\x6b\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\ +\x14\x00\x44\x00\x58\x00\x46\x00\x20\x00\x6f\x00\x70\x00\x63\x00\ +\x69\x00\x6a\x00\x65\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\x16\x00\x5a\x00\x61\x00\x64\x00\ +\x61\x00\x6e\x00\x61\x00\x20\x00\x62\x00\x6f\x00\x6a\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x44\x65\x66\x61\x75\x6c\x74\ +\x20\x63\x6f\x6c\x6f\x72\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\x00\x5a\ +\x00\x61\x00\x64\x00\x61\x00\x6e\x00\x61\x00\x20\x00\x76\x00\x69\ +\x00\x73\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x74\x00\x65\x00\x6b\ +\x00\x73\x00\x74\x00\x61\x00\x20\x00\x69\x00\x20\x00\x64\x00\x69\ +\x00\x6d\x00\x65\x00\x6e\x00\x7a\x00\x69\x00\x6a\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x27\x44\x65\x66\x61\x75\x6c\x74\x20\ +\x68\x65\x69\x67\x68\x74\x20\x66\x6f\x72\x20\x74\x65\x78\x74\x73\ +\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x28\x00\x5a\x00\x61\x00\x64\x00\x61\x00\ +\x6e\x00\x61\x00\x20\x01\x61\x00\x69\x00\x72\x00\x69\x00\x6e\x00\ +\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x6a\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\x2c\x00\x5a\x00\x61\x00\x64\x00\x61\x00\x6e\x00\x69\x00\x20\ +\x00\x70\x00\x72\x00\x65\x00\x64\x00\x6c\x00\x6f\x01\x7e\x00\x61\ +\x00\x6b\x00\x20\x00\x6c\x00\x69\x00\x73\x00\x74\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x16\x44\x65\x66\x61\x75\x6c\x74\x20\ +\x74\x65\x6d\x70\x6c\x61\x74\x65\x20\x73\x68\x65\x65\x74\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x24\x00\x5a\x00\x61\x00\x64\x00\x61\x00\x6e\ +\x00\x69\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x74\ +\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x11\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x78\x74\ +\x20\x66\x6f\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x5a\x00\ +\x61\x00\x64\x00\x61\x00\x6e\x00\x61\x00\x20\x00\x76\x00\x69\x00\ +\x73\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x74\x00\x65\x00\x6b\x00\ +\x73\x00\x74\x00\x61\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\x26\x00\x5a\x00\x61\x00\x64\ +\x00\x61\x00\x6e\x00\x61\x00\x20\x00\x72\x00\x61\x00\x76\x00\x6e\ +\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x72\x00\x61\x00\x64\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x44\x65\x66\x61\x75\x6c\ +\x74\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x32\x00\x53\x00\x74\x00\x69\x00\x6c\x00\ +\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x7a\x00\x69\x00\ +\x6a\x00\x61\x00\x20\x00\x69\x00\x20\x00\x73\x00\x74\x00\x72\x00\ +\x69\x00\x6a\x00\x65\x00\x6c\x00\x65\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\x4e\x00\x69\x00\x76\ +\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x65\x00\x63\x00\x69\x00\x7a\ +\x00\x6e\x00\x6f\x00\x73\x00\x74\x00\x69\x00\x20\x00\x64\x00\x69\ +\x00\x6d\x00\x65\x00\x6e\x00\x7a\x00\x69\x00\x6a\x00\x61\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1a\x44\x69\x6d\x65\x6e\x73\x69\x6f\ +\x6e\x73\x20\x70\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\x65\x76\ +\x65\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x54\x00\x6f\x01\x0d\ +\x00\x6b\x00\x61\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x44\x6f\x74\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\ +\x54\x00\x6f\x01\x0d\x00\x6b\x00\x61\x00\x20\x00\x37\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\x37\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0e\x00\x54\x00\x6f\x01\x0d\x00\x6b\x00\x61\x00\x20\ +\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\ +\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x4e\x00\x61\x01\x0d\x00\ +\x69\x00\x6e\x00\x20\x00\x72\x00\x61\x00\x64\x00\x61\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\x49\x00\x7a\x00\x76\x00\x6f\x00\x7a\x00\x20\x00\ +\x33\x00\x44\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x61\x00\x74\x00\x61\x00\x20\x00\x6b\x00\x61\x00\x6f\x00\x20\x00\ +\x70\x00\x6f\x00\x6c\x00\x79\x00\x66\x00\x61\x00\x63\x00\x65\x00\ +\x20\x00\x6d\x00\x72\x00\x65\x01\x7e\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x24\x45\x78\x70\x6f\x72\x74\x20\x33\x44\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x61\x73\x20\x70\x6f\x6c\x79\x66\x61\ +\x63\x65\x20\x6d\x65\x73\x68\x65\x73\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x1c\x00\x49\x00\x73\x00\x70\x00\x75\x00\x6e\x00\x69\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x46\x69\x6c\x6c\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x20\x62\x79\x20\x64\x65\x66\x61\x75\x6c\x74\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x2c\x00\x47\x00\x6c\x00\x61\x00\x76\x00\x6e\ +\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x76\ +\x00\x6b\x00\x65\x00\x20\x00\x6e\x00\x61\x00\x63\x00\x72\x00\x74\ +\x00\x61\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\x00\x47\x00\x6c\x00\x61\ +\x00\x76\x00\x6e\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x74\ +\x00\x61\x00\x76\x00\x6b\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\ +\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\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\x6c\x00\x6f\ +\x00\x62\x00\x61\x00\x6c\x00\x6e\x00\x69\x00\x20\x00\x6e\x00\x61\ +\x01\x0d\x00\x69\x00\x6e\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\ +\x00\x72\x00\x61\x00\x6e\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x47\x6c\x6f\x62\x61\x6c\x20\x63\x6f\x70\x79\x20\ +\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x56\x00\x65\ +\x00\x6c\x00\x69\x01\x0d\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x72\ +\x00\x65\x01\x61\x00\x65\x00\x74\x00\x6b\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\x38\x00\x47\x00\x72\x00\x75\ +\x00\x70\x00\x69\x00\x72\x00\x61\x00\x6e\x00\x6a\x00\x65\x00\x20\ +\x00\x73\x00\x6c\x00\x6f\x00\x6a\x00\x65\x00\x76\x00\x61\x00\x20\ +\x00\x75\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x6b\x00\x6f\x00\x76\ +\x00\x65\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\x0c\x00\x4f\x00\x76\ +\x00\x64\x00\x6a\x00\x65\x00\x20\x00\x6d\x00\x6f\x01\x7e\x00\x65\ +\x00\x74\x00\x65\x00\x20\x00\x6e\x00\x61\x00\x76\x00\x65\x00\x73\ +\x00\x74\x00\x69\x00\x20\x00\x64\x00\x69\x00\x72\x00\x65\x00\x6b\ +\x00\x74\x00\x6f\x00\x72\x00\x69\x00\x6a\x00\x20\x00\x6b\x00\x6f\ +\x00\x6a\x00\x69\x00\x20\x00\x73\x00\x61\x00\x64\x00\x72\x01\x7e\ +\x00\x69\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x64\x00\x61\ +\x00\x74\x00\x6f\x00\x74\x00\x65\x00\x6b\x00\x61\x00\x20\x00\x6b\ +\x00\x6f\x00\x6a\x00\x65\x00\x20\x00\x73\x00\x61\x00\x64\x00\x72\ +\x01\x7e\x00\x65\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\x63\x00\x69\x00\x6a\x00\x65\x00\x20\ +\x00\x6b\x00\x6f\x00\x6a\x00\x69\x00\x20\x00\x73\x00\x65\x00\x20\ +\x00\x6d\x00\x6f\x00\x67\x00\x75\x00\x20\x00\x64\x00\x6f\x00\x64\ +\x00\x61\x00\x74\x00\x69\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\ +\x00\x64\x00\x61\x00\x72\x00\x64\x00\x6e\x00\x6f\x00\x6d\x00\x20\ +\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x75\x00\x7a\ +\x00\x6f\x00\x72\x00\x6b\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x8d\x48\x65\x72\x65\x20\x79\x6f\x75\x20\x63\x61\x6e\x20\x73\ +\x70\x65\x63\x69\x66\x79\x20\x61\x20\x64\x69\x72\x65\x63\x74\x6f\ +\x72\x79\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x53\x56\ +\x47\x20\x66\x69\x6c\x65\x73\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\ +\x6e\x67\x20\x3c\x70\x61\x74\x74\x65\x72\x6e\x3e\x20\x64\x65\x66\ +\x69\x6e\x69\x74\x69\x6f\x6e\x73\x20\x74\x68\x61\x74\x20\x63\x61\ +\x6e\x20\x62\x65\x20\x61\x64\x64\x65\x64\x20\x74\x6f\x20\x74\x68\ +\x65\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x20\x44\x72\x61\x66\x74\ +\x20\x68\x61\x74\x63\x68\x20\x70\x61\x74\x74\x65\x72\x6e\x73\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x70\x00\x41\x00\x6b\x00\x6f\x00\x20\x00\ +\x6a\x00\x65\x00\x20\x00\x6f\x00\x7a\x00\x6e\x00\x61\x01\x0d\x00\ +\x65\x00\x6e\x00\x6f\x00\x2c\x00\x20\x00\x72\x00\x65\x01\x61\x00\ +\x65\x00\x74\x00\x6b\x00\x61\x00\x20\x01\x07\x00\x65\x00\x20\x00\ +\x73\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x6a\x00\x61\x00\x76\x00\ +\x69\x00\x74\x00\x69\x00\x20\x00\x70\x00\x72\x00\x69\x00\x6c\x00\ +\x69\x00\x6b\x00\x6f\x00\x6d\x00\x20\x00\x63\x00\x72\x00\x74\x00\ +\x61\x00\x6e\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2b\x49\x66\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x20\x67\ +\x72\x69\x64\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\ +\x77\x68\x65\x6e\x20\x64\x72\x61\x77\x69\x6e\x67\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\xde\x00\x41\x00\x6b\x00\x6f\x00\x20\x00\x6a\x00\x65\ +\x00\x20\x00\x6f\x00\x7a\x00\x6e\x00\x61\x01\x0d\x00\x65\x00\x6e\ +\x00\x6f\x00\x2c\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\ +\x00\x41\x00\x44\x00\x20\x01\x07\x00\x65\x00\x20\x00\x70\x00\x6f\ +\x00\x6b\x00\x75\x01\x61\x00\x61\x00\x74\x00\x69\x00\x20\x00\x73\ +\x00\x70\x00\x6f\x00\x6a\x00\x69\x00\x74\x00\x69\x00\x20\x00\x73\ +\x00\x70\x00\x6f\x00\x6a\x00\x65\x00\x6e\x00\x65\x00\x20\x00\x6c\ +\x00\x69\x00\x6e\x00\x69\x00\x6a\x00\x65\x00\x20\x00\x75\x00\x20\ +\x01\x7e\x00\x69\x00\x63\x00\x65\x00\x2e\x00\x20\x00\x50\x00\x61\ +\x00\x7a\x00\x69\x00\x74\x00\x65\x00\x2c\x00\x20\x00\x6f\x00\x76\ +\x00\x6f\x00\x20\x00\x6d\x00\x6f\x01\x7e\x00\x65\x00\x20\x00\x70\ +\x00\x6f\x00\x74\x00\x72\x00\x61\x00\x6a\x00\x61\x00\x74\x00\x69\ +\x00\x20\x00\x6e\x00\x65\x00\x6b\x00\x6f\x00\x20\x00\x76\x00\x72\ +\x00\x69\x00\x6a\x00\x65\x00\x6d\x00\x65\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\xaa\x00\x41\x00\x6b\x00\x6f\x00\ +\x20\x00\x6a\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x20\x00\x6f\x00\ +\x7a\x00\x6e\x00\x61\x01\x0d\x00\x65\x00\x6e\x00\x6f\x00\x2c\x00\ +\x20\x00\x73\x00\x76\x00\x69\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x69\x00\x20\x00\x6b\x00\x6f\x00\x6a\x00\ +\x69\x00\x20\x00\x73\x00\x61\x00\x64\x00\x72\x01\x7e\x00\x65\x00\ +\x20\x00\x70\x00\x6c\x00\x6f\x00\x68\x00\x65\x00\x20\x01\x07\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x20\x00\x69\x00\x7a\x00\x76\x00\ +\x65\x00\x73\x00\x74\x00\x69\x00\x20\x00\x6b\x00\x61\x00\x6f\x00\ +\x20\x00\x33\x00\x44\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x6d\x00\x72\x00\x65\x01\ +\x7e\x00\x65\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\xe6\x00\x41\x00\x6b\x00\x6f\x00\x20\x00\x6a\ +\x00\x65\x00\x20\x00\x6f\x00\x76\x00\x6f\x00\x20\x00\x75\x00\x6b\ +\x00\x6c\x00\x6a\x00\x75\x01\x0d\x00\x65\x00\x6e\x00\x6f\x00\x2c\ +\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x72\x00\x61\x00\x6e\ +\x00\x6a\x00\x65\x00\x20\x01\x07\x00\x65\x00\x20\x00\x73\x00\x65\ +\x00\x20\x00\x70\x00\x72\x00\x69\x00\x6d\x00\x6a\x00\x65\x00\x6e\ +\x00\x69\x00\x74\x00\x69\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x73\ +\x00\x76\x00\x65\x00\x20\x00\x6e\x00\x61\x00\x72\x00\x65\x00\x64\ +\x00\x62\x00\x65\x00\x2c\x00\x20\x00\x69\x00\x6e\x00\x61\x01\x0d\ +\x00\x65\x00\x20\x01\x07\x00\x65\x00\x20\x00\x73\x00\x65\x00\x20\ +\x00\x6e\x00\x61\x00\x72\x00\x65\x00\x64\x00\x62\x00\x65\x00\x20\ +\x00\x75\x00\x76\x00\x69\x00\x6a\x00\x65\x00\x6b\x00\x20\x00\x70\ +\x00\x6f\x00\x6b\x00\x72\x00\x65\x00\x6e\x00\x75\x00\x74\x00\x69\ +\x00\x20\x00\x62\x00\x65\x00\x7a\x00\x20\x00\x6b\x00\x6f\x00\x70\ +\x00\x69\x00\x72\x00\x61\x00\x6e\x00\x6a\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x6f\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\ +\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x63\x6f\x70\x79\x20\x6d\ +\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x6b\x65\x70\x74\ +\x20\x61\x63\x72\x6f\x73\x73\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x2c\ +\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x63\x6f\x6d\x6d\x61\ +\x6e\x64\x73\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\ +\x73\x74\x61\x72\x74\x20\x69\x6e\x20\x6e\x6f\x2d\x63\x6f\x70\x79\ +\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xcc\x00\x41\x00\ +\x6b\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x6f\x00\x76\x00\ +\x6f\x00\x20\x00\x75\x00\x6b\x00\x6c\x00\x6a\x00\x75\x01\x0d\x00\ +\x65\x00\x6e\x00\x6f\x00\x2c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x69\x00\x20\x01\x07\x00\x65\x00\x20\x00\ +\x73\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x6a\x00\x61\x00\x76\x00\ +\x69\x00\x74\x00\x69\x00\x20\x00\x6b\x00\x61\x00\x6f\x00\x20\x00\ +\x69\x00\x73\x00\x70\x00\x75\x00\x6e\x00\x6a\x00\x65\x00\x6e\x00\ +\x69\x00\x2e\x00\x20\x00\x55\x00\x20\x00\x73\x00\x75\x00\x70\x00\ +\x72\x00\x6f\x00\x74\x00\x6e\x00\x6f\x00\x6d\x00\x20\x01\x07\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x6a\x00\ +\x61\x00\x76\x00\x69\x00\x74\x00\x69\x00\x20\x00\x6b\x00\x61\x00\ +\x6f\x00\x20\x00\x6e\x00\x65\x00\x69\x00\x73\x00\x70\x00\x75\x00\ +\x6e\x00\x6a\x00\x65\x00\x6e\x00\x69\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\ +\xf8\x00\x41\x00\x6b\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\x20\x00\ +\x6f\x00\x76\x00\x6f\x00\x20\x00\x75\x00\x6b\x00\x6c\x00\x6a\x00\ +\x75\x01\x0d\x00\x65\x00\x6e\x00\x6f\x00\x2c\x00\x20\x00\x75\x00\ +\x76\x00\x69\x00\x6a\x00\x65\x00\x6b\x00\x20\x01\x07\x00\x65\x00\ +\x74\x00\x65\x00\x20\x00\x73\x00\x65\x00\x20\x00\x68\x00\x76\x00\ +\x61\x00\x74\x00\x61\x00\x74\x00\x69\x00\x20\x00\x7a\x00\x61\x00\ +\x20\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x6f\x00\x6a\x00\x65\x01\ +\x07\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x6b\x00\x20\x00\x63\x00\ +\x72\x00\x74\x00\x61\x00\x74\x00\x65\x00\x2e\x00\x20\x00\x41\x00\ +\x6b\x00\x6f\x00\x20\x00\x6e\x00\x65\x00\x2c\x00\x20\x00\x68\x00\ +\x76\x00\x61\x00\x74\x00\x61\x00\x74\x00\x20\x01\x07\x00\x65\x00\ +\x74\x00\x65\x00\x20\x00\x73\x00\x61\x00\x6d\x00\x6f\x00\x20\x00\ +\x6b\x00\x61\x00\x64\x00\x61\x00\x20\x00\x70\x00\x72\x00\x69\x00\ +\x74\x00\x69\x00\x73\x00\x6e\x00\x65\x00\x74\x00\x65\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\x1a\x00\x55\x00\x76\ +\x00\x6f\x00\x7a\x00\x20\x00\x2a\x00\x62\x00\x6c\x00\x6f\x00\x6b\ +\x00\x6f\x00\x76\x00\x61\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\x22\x00\x55\x00\x76\x00\x6f\x00\x7a\x00\x20\ +\x00\x4f\x00\x43\x00\x41\x00\x20\x00\x70\x00\x6f\x00\x64\x00\x72\ +\x00\x75\x01\x0d\x00\x6a\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\x18\x00\x55\x00\x76\x00\x65\ +\x00\x7a\x00\x69\x00\x20\x00\x69\x00\x7a\x00\x67\x00\x6c\x00\x65\ +\x00\x64\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\x14\x00\x55\x00\x76\x00\x65\x00\x7a\x00\x69\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\x32\x00\x55\x00\x76\x00\x6f\x00\x7a\x00\x20\x00\x74\ +\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x6f\x00\x76\x00\x61\x00\x20\ +\x00\x69\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x7a\ +\x00\x69\x00\x6a\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\x18\x00\x55\x00\x76\x00\x6f\x00\x7a\x00\x20\x00\x2f\x00\ +\x20\x00\x49\x00\x7a\x00\x76\x00\x6f\x00\x7a\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\x69\x00\x20\x00\x6e\x00\x69\x00\x76\ +\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x65\x00\x63\x00\x69\x00\x7a\ +\x00\x6e\x00\x6f\x00\x73\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x18\x49\x6e\x74\x65\x72\x6e\x61\x6c\x20\x70\x72\x65\ +\x63\x69\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x2a\x00\x50\x00\x72\x00\x69\x00\x64\x00\x72\x00\x75\ +\x01\x7e\x00\x69\x00\x74\x00\x65\x00\x20\x00\x67\x00\x65\x00\x6f\ +\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x6a\x00\x75\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0d\x4a\x6f\x69\x6e\x20\x67\x65\x6f\ +\x6d\x65\x74\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x4c\x00\ +\x69\x00\x6a\x00\x65\x00\x76\x00\x6f\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\x28\x00\x47\x00\x6c\ +\x00\x61\x00\x76\x00\x6e\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\ +\x00\x69\x00\x6a\x00\x65\x00\x20\x00\x73\x00\x76\x00\x61\x00\x6b\ +\x00\x69\x00\x68\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x4d\x61\ +\x69\x6e\x20\x6c\x69\x6e\x65\x73\x20\x65\x76\x65\x72\x79\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\xa6\x00\x47\x00\x6c\x00\x61\x00\x76\x00\x6e\ +\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x6a\x00\x65\ +\x00\x20\x01\x07\x00\x65\x00\x20\x00\x62\x00\x69\x00\x74\x00\x69\ +\x00\x20\x00\x64\x00\x65\x00\x62\x00\x6c\x00\x6a\x00\x65\x00\x20\ +\x00\x63\x00\x72\x00\x74\x00\x61\x00\x6e\x00\x65\x00\x2e\x00\x20\ +\x00\x4f\x00\x76\x00\x64\x00\x6a\x00\x65\x00\x20\x00\x70\x00\x6f\ +\x00\x73\x00\x74\x00\x61\x00\x76\x00\x69\x00\x74\x00\x69\x00\x20\ +\x00\x6b\x00\x6f\x00\x6c\x00\x69\x00\x6b\x00\x6f\x00\x20\x00\x6b\ +\x00\x76\x00\x61\x00\x64\x00\x72\x00\x61\x00\x74\x00\x61\x00\x20\ +\x00\x6a\x00\x65\x00\x20\x00\x6d\x00\x65\x01\x11\x00\x75\x00\x20\ +\x00\x6e\x00\x6a\x00\x69\x00\x6d\x00\x61\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\x36\x00\ +\x4d\x00\x61\x00\x6b\x00\x73\x00\x69\x00\x6d\x00\x61\x00\x6c\x00\ +\x6e\x00\x69\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\x00\x20\x00\x6b\x00\x72\x00\x69\x00\x76\x00\x75\x00\ +\x6c\x00\x6a\x00\x65\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\x00\x50\x00\x72\x00\x61\x00\ +\x7a\x00\x6e\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\ +\x6f\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x4e\x00\x69\x00\ +\x6a\x00\x65\x00\x64\x00\x61\x00\x6e\x00\x20\x00\x28\x00\x6e\x00\ +\x61\x00\x6a\x00\x62\x00\x72\x01\x7e\x00\x69\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\xf4\x00\x4e\x00\ +\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x6e\x00\x6f\x00\x2c\x00\ +\x20\x00\x6e\x00\x61\x00\x6b\x00\x6f\x00\x6e\x00\x20\x00\x6b\x00\ +\x6f\x00\x70\x00\x69\x00\x72\x00\x61\x00\x6e\x00\x6a\x00\x61\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x61\x00\x74\x00\ +\x61\x00\x2c\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x6a\x00\ +\x61\x00\x20\x00\x73\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x6b\x00\x74\x00\x69\x00\x72\x00\x61\x00\x2e\x00\x20\x00\ +\x41\x00\x6b\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x6f\x00\ +\x76\x00\x61\x00\x20\x00\x6f\x00\x70\x00\x63\x00\x69\x00\x6a\x00\ +\x61\x00\x20\x00\x75\x00\x6b\x00\x6c\x00\x6a\x00\x75\x01\x0d\x00\ +\x65\x00\x6e\x00\x61\x00\x2c\x00\x20\x00\x6f\x00\x73\x00\x6e\x00\ +\x6f\x00\x76\x00\x6e\x00\x69\x00\x20\x01\x07\x00\x65\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x20\x00\ +\x62\x00\x69\x00\x74\x00\x69\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x6b\x00\x74\x00\x69\x00\x72\x00\x61\x00\x6e\x00\x69\x00\ +\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\x14\x00\x4f\x00\x43\x00\x41\x00\x20\x00\x6f\x00\x70\x00\x63\ +\x00\x69\x00\x6a\x00\x65\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\x38\x00\x49\x00\x7a\x00\x76\ +\x00\x6f\x00\x72\x00\x6e\x00\x61\x00\x20\x00\x62\x00\x6f\x00\x6a\ +\x00\x61\x00\x20\x00\x69\x00\x20\x01\x61\x00\x69\x00\x72\x00\x69\ +\x00\x6e\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x6a\ +\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\x44\x00\x65\x00\x73\x00\x6e\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x52\x69\x67\x68\x74\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x14\x00\x53\x00\x56\x00\x47\x00\x20\x00\x6f\x00\x70\x00\x63\x00\ +\x69\x00\x6a\x00\x65\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\x82\x00\x53\x00\x70\x00\x72\x00\ +\x65\x00\x6d\x00\x69\x00\x20\x00\x74\x00\x72\x00\x65\x00\x6e\x00\ +\x75\x00\x74\x00\x6e\x00\x75\x00\x20\x00\x62\x00\x6f\x00\x6a\x00\ +\x75\x00\x20\x00\x69\x00\x20\x01\x61\x00\x69\x00\x72\x00\x69\x00\ +\x6e\x00\x75\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x6a\x00\ +\x65\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x73\x00\x76\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\ +\x20\x00\x75\x00\x20\x00\x6f\x00\x76\x00\x6f\x00\x6a\x00\x20\x00\ +\x73\x00\x65\x00\x73\x00\x69\x00\x6a\x00\x69\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x30\x53\x61\x76\x65\x20\x63\x75\x72\x72\x65\x6e\ +\x74\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\ +\x77\x69\x64\x74\x68\x20\x61\x63\x72\x6f\x73\x73\x20\x73\x65\x73\ +\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4e\x00\x4f\x00\ +\x64\x00\x61\x00\x62\x00\x65\x00\x72\x00\x69\x00\x74\x00\x65\x00\ +\x20\x00\x62\x00\x61\x00\x7a\x00\x75\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x61\x00\x74\x00\x61\x00\x20\x00\x6e\x00\ +\x61\x00\x6b\x00\x6f\x00\x6e\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\ +\x69\x00\x72\x00\x61\x00\x6e\x00\x6a\x00\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\x16\x00\x4b\ +\x00\x6f\x00\x73\x00\x61\x00\x20\x00\x63\x00\x72\x00\x74\x00\x61\ +\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\ +\x61\x73\x68\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x4b\x00\ +\x6f\x00\x73\x00\x61\x00\x20\x00\x63\x00\x72\x00\x74\x00\x61\x00\ +\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\ +\x73\x68\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x4b\x00\x6f\ +\x00\x73\x00\x61\x00\x20\x00\x63\x00\x72\x00\x74\x00\x61\x00\x20\ +\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\ +\x68\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x42\x00\x6f\x00\ +\x6a\x00\x61\x00\x20\x00\x68\x00\x76\x00\x61\x00\x74\x00\x69\x01\ +\x61\x00\x74\x00\x61\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\ +\x1c\x00\x52\x00\x61\x00\x64\x00\x20\x00\x73\x00\x20\x00\x72\x00\ +\x65\x01\x61\x00\x65\x00\x74\x00\x6b\x00\x6f\x00\x6d\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\x22\x00\x56\x00\x65\x00\x6c\x00\x69\x01\ +\x0d\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x68\x00\x76\x00\x61\x00\ +\x74\x00\x61\x00\x6e\x00\x6a\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\x20\x00\x50\x00\x72\x00\x65\x00\x67\x00\x6c\x00\ +\x65\x00\x64\x00\x20\x00\x7a\x00\x61\x00\x64\x00\x61\x00\x74\x00\ +\x61\x00\x6b\x00\x61\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\x2c\x00\ +\x54\x00\x69\x00\x70\x00\x6b\x00\x61\x00\x20\x00\x7a\x00\x61\x00\ +\x20\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x6e\x00\x69\x01\x0d\x00\ +\x61\x00\x76\x00\x61\x00\x6e\x00\x6a\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x1d\x54\x68\x65\x20\x43\x6f\x6e\x73\x74\x72\x61\ +\x69\x6e\x69\x6e\x67\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\ +\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x4d\x00\x6f\x00\x64\ +\x00\x69\x00\x66\x00\x69\x00\x6b\x00\x61\x00\x74\x00\x6f\x00\x72\ +\x00\x20\x00\x74\x00\x69\x00\x70\x00\x6b\x00\x65\x00\x20\x00\x41\ +\x00\x4c\x00\x54\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\x7c\x00\x44\x00\x61\x00\x74\ +\x00\x6f\x00\x74\x00\x65\x00\x6b\x00\x61\x00\x20\x00\x6d\x00\x61\ +\x00\x70\x00\x69\x00\x72\x00\x61\x00\x6e\x00\x6a\x00\x61\x00\x20\ +\x00\x62\x00\x6f\x00\x6a\x00\x61\x00\x20\x00\x7a\x00\x61\x00\x20\ +\x00\x70\x00\x72\x00\x65\x00\x76\x00\x6f\x01\x11\x00\x65\x00\x6e\ +\x00\x6a\x00\x65\x00\x20\x00\x64\x00\x78\x00\x66\x00\x20\x00\x62\ +\x00\x6f\x00\x6a\x00\x61\x00\x20\x00\x75\x00\x20\x01\x61\x00\x69\ +\x00\x72\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\ +\x00\x69\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x41\ +\x54\x68\x65\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\ +\x67\x20\x66\x69\x6c\x65\x20\x66\x6f\x72\x20\x74\x72\x61\x6e\x73\ +\x6c\x61\x74\x69\x6e\x67\x20\x64\x78\x66\x20\x63\x6f\x6c\x6f\x72\ +\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x56\x00\x5a\x00\x61\x00\x64\x00\ +\x61\x00\x6e\x00\x69\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\x00\ +\x6c\x00\x6f\x01\x7e\x00\x61\x00\x6b\x00\x20\x00\x70\x00\x72\x00\ +\x69\x00\x20\x00\x73\x00\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\ +\x6e\x00\x6a\x00\x75\x00\x20\x00\x6e\x00\x6f\x00\x76\x00\x6f\x00\ +\x67\x00\x20\x00\x63\x00\x72\x00\x74\x00\x65\x01\x7e\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x3d\x54\x68\x65\x20\x64\x65\x66\ +\x61\x75\x6c\x74\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x20\x74\x6f\ +\x20\x75\x73\x65\x20\x77\x68\x65\x6e\x20\x63\x72\x65\x61\x74\x69\ +\x6e\x67\x20\x61\x20\x6e\x65\x77\x20\x64\x72\x61\x77\x69\x6e\x67\ +\x20\x73\x68\x65\x65\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x78\x00\x42\ +\x00\x72\x00\x6f\x00\x6a\x00\x20\x00\x64\x00\x65\x00\x63\x00\x69\ +\x00\x6d\x00\x61\x00\x6c\x00\x61\x00\x20\x00\x75\x00\x20\x00\x69\ +\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x6f\x00\x6d\x00\x20\ +\x00\x6b\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x69\x00\x6e\x00\x61\ +\x00\x74\x00\x6e\x00\x6f\x00\x6d\x00\x20\x00\x73\x00\x75\x00\x73\ +\x00\x74\x00\x61\x00\x76\x00\x75\x00\x20\x00\x28\x00\x6e\x00\x70\ +\x00\x72\x00\x2e\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\x52\x00\x61\x00\x64\x00\x69\x00\x6a\x00\ +\x75\x00\x73\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x68\x00\x76\x00\ +\x61\x00\x74\x00\x61\x00\x6e\x00\x6a\x00\x65\x00\x20\x00\x6e\x00\ +\x61\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x65\x00\x62\x00\x6e\x00\ +\x65\x00\x20\x00\x74\x00\x6f\x01\x0d\x00\x6b\x00\x65\x00\x2e\x00\ +\x20\x00\x50\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x76\x00\x69\x00\ +\x74\x00\x65\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x30\x00\x20\x00\ +\x7a\x00\x61\x00\x20\x00\x69\x00\x73\x00\x6b\x00\x6c\x00\x6a\x00\ +\x75\x01\x0d\x00\x69\x00\x76\x00\x61\x00\x6e\x00\x6a\x00\x65\x00\ +\x20\x00\x28\x00\x62\x00\x65\x00\x73\x00\x6b\x00\x6f\x00\x6e\x00\ +\x61\x01\x0d\x00\x6e\x00\x6f\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\x20\x00\x54\x00\x69\x00\x70\x00\ +\x6b\x00\x61\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x72\x00\x65\x01\ +\x61\x00\x65\x00\x74\x00\x6b\x00\x75\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x15\x54\x68\x65\x20\x73\x6e\x61\x70\x20\x6d\x6f\x64\x69\ +\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\ +\x00\x52\x00\x61\x00\x7a\x00\x6d\x00\x61\x00\x6b\x00\x20\x00\x69\ +\x00\x7a\x00\x6d\x00\x65\x01\x11\x00\x75\x00\x20\x00\x6c\x00\x69\ +\x00\x6e\x00\x69\x00\x6a\x00\x61\x00\x20\x00\x6e\x00\x61\x00\x20\ +\x00\x72\x00\x65\x01\x61\x00\x65\x00\x74\x00\x6b\x00\x69\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x22\x54\x68\x65\x20\x73\x70\x61\x63\ +\x69\x6e\x67\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x65\x61\x63\x68\ +\x20\x67\x72\x69\x64\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x01\x82\x00\x4f\x00\x76\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\x20\ +\x00\x6e\x00\x61\x01\x0d\x00\x69\x00\x6e\x00\x20\x00\x6e\x00\x61\ +\x00\x20\x00\x6b\x00\x6f\x00\x6a\x00\x69\x00\x20\x01\x07\x00\x65\ +\x00\x20\x00\x72\x00\x61\x00\x64\x00\x69\x00\x74\x00\x69\x00\x20\ +\x00\x73\x00\x75\x01\x0d\x00\x65\x00\x6c\x00\x6a\x00\x65\x00\x3a\ +\x00\x20\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\x00\x72\ +\x00\x20\x00\x6e\x00\x61\x01\x0d\x00\x69\x00\x6e\x00\x20\x01\x07\ +\x00\x65\x00\x20\x00\x73\x00\x65\x00\x20\x00\x73\x00\x76\x00\x65\ +\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x70\ +\x00\x6f\x00\x73\x00\x74\x00\x61\x00\x76\x00\x6b\x00\x65\x00\x20\ +\x00\x73\x00\x74\x00\x61\x00\x76\x00\x69\x00\x74\x00\x69\x00\x20\ +\x00\x75\x00\x20\x00\x6f\x00\x64\x00\x76\x00\x6f\x00\x6a\x00\x65\ +\x00\x6e\x00\x6f\x00\x6a\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x74\ +\x00\x6e\x00\x6f\x00\x6a\x00\x20\x00\x74\x00\x72\x00\x61\x00\x63\ +\x00\x69\x00\x2c\x00\x20\x00\x64\x00\x6f\x00\x6b\x00\x20\x00\x54\ +\x00\x61\x00\x73\x00\x6b\x00\x62\x00\x61\x00\x72\x00\x20\x00\x6e\ +\x00\x61\x01\x0d\x00\x69\x00\x6e\x00\x20\x00\x6b\x00\x6f\x00\x72\ +\x00\x69\x00\x73\x00\x74\x00\x69\x00\x74\x00\x69\x00\x20\x00\x73\ +\x00\x75\x00\x73\x00\x74\x00\x61\x00\x76\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\x7a\ +\x00\x61\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x61\ +\x00\x6b\x00\x63\x00\x69\x00\x6a\x00\x75\x00\x20\x00\x73\x00\x20\ +\x00\x6b\x00\x6f\x00\x72\x00\x69\x00\x73\x00\x6e\x00\x69\x00\x6b\ +\x00\x6f\x00\x6d\x08\x00\x00\x00\x00\x06\x00\x00\x00\xcf\x54\x68\ +\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x55\x49\x20\x6d\x6f\x64\ +\x65\x20\x69\x6e\x20\x77\x68\x69\x63\x68\x20\x74\x68\x65\x20\x44\ +\x72\x61\x66\x74\x20\x6d\x6f\x64\x75\x6c\x65\x20\x77\x69\x6c\x6c\ +\x20\x77\x6f\x72\x6b\x3a\x20\x54\x6f\x6f\x6c\x62\x61\x72\x20\x6d\ +\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x70\x6c\x61\x63\x65\x20\x61\ +\x6c\x6c\x20\x44\x72\x61\x66\x74\x20\x73\x65\x74\x74\x69\x6e\x67\ +\x73\x20\x69\x6e\x20\x61\x20\x73\x65\x70\x61\x72\x61\x74\x65\x20\ +\x74\x6f\x6f\x6c\x62\x61\x72\x2c\x20\x77\x68\x69\x6c\x65\x20\x74\ +\x61\x73\x6b\x62\x61\x72\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\ +\x20\x75\x73\x65\x20\x74\x68\x65\x20\x46\x72\x65\x65\x43\x41\x44\ +\x20\x54\x61\x73\x6b\x76\x69\x65\x77\x20\x73\x79\x73\x74\x65\x6d\ +\x20\x66\x6f\x72\x20\x61\x6c\x6c\x20\x69\x74\x73\x20\x75\x73\x65\ +\x72\x20\x69\x6e\x74\x65\x72\x61\x63\x74\x69\x6f\x6e\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x80\x00\x4f\x00\x76\x00\x6f\x00\x20\x00\x6a\x00\ +\x65\x00\x20\x00\x7a\x00\x61\x00\x64\x00\x61\x00\x6e\x00\x61\x00\ +\x20\x00\x62\x00\x6f\x00\x6a\x00\x61\x00\x20\x00\x7a\x00\x61\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\ +\x20\x00\x6b\x00\x6f\x00\x6a\x00\x69\x00\x20\x00\x73\x00\x65\x00\ +\x20\x00\x69\x00\x7a\x00\x72\x00\x61\x01\x11\x00\x75\x00\x6a\x00\ +\x75\x00\x20\x00\x75\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\ +\x20\x00\x69\x00\x7a\x00\x67\x00\x72\x00\x61\x00\x64\x00\x6e\x00\ +\x6a\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\xc6\x00\x4f\x00\x76\x00\x6f\x00\x20\x00\x6a\x00\x65\ +\x00\x20\x00\x7a\x00\x61\x00\x64\x00\x61\x00\x6e\x00\x69\x00\x20\ +\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x7a\x00\x61\x00\x20\ +\x00\x73\x00\x76\x00\x65\x00\x20\x00\x74\x00\x65\x00\x6b\x00\x73\ +\x00\x74\x00\x6f\x00\x76\x00\x65\x00\x20\x00\x6e\x00\x61\x00\x63\ +\x00\x72\x00\x74\x00\x61\x00\x20\x00\x69\x00\x20\x00\x64\x00\x69\ +\x00\x6d\x00\x65\x00\x6e\x00\x7a\x00\x69\x00\x6a\x00\x65\x00\x2e\ +\x00\x0a\x00\x54\x00\x6f\x00\x20\x00\x6d\x00\x6f\x01\x7e\x00\x65\ +\x00\x20\x00\x62\x00\x69\x00\x74\x00\x69\x00\x20\x00\x66\x00\x6f\ +\x00\x6e\x00\x74\x00\x20\x00\x6b\x00\x61\x00\x6f\x00\x20\x01\x61\ +\x00\x74\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x22\x00\x41\ +\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x22\x00\x2c\x00\x20\x00\x73\ +\x00\x74\x00\x69\x00\x6c\x00\x20\x00\x6b\x00\x61\x00\x6f\x00\x20\ +\x01\x61\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x75\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\x00\x69\ +\x00\x6c\x00\x69\x00\x20\x00\x22\x00\x6d\x00\x6f\x00\x6e\x00\x6f\ +\x00\x22\x00\x2c\x00\x20\x00\x69\x00\x6c\x00\x69\x00\x20\x00\x73\ +\x00\x6b\x00\x75\x00\x70\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x6b\ +\x00\x61\x00\x6f\x00\x20\x01\x61\x00\x74\x00\x6f\x00\x20\x00\x73\ +\x00\x75\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\x69\x00\x6c\x00\x69\x00\x20\x00\x69\ +\x00\x6d\x00\x65\x00\x20\x00\x73\x00\x61\x00\x20\x00\x73\x00\x74\ +\x00\x69\x00\x6c\x00\x6f\x00\x6d\x00\x2c\x00\x0a\x00\x6b\x00\x61\ +\x00\x6f\x00\x20\x01\x61\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x75\ +\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\x62\x00\x4f\ +\x00\x76\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x7a\x00\x61\ +\x00\x64\x00\x61\x00\x6e\x00\x69\x00\x20\x00\x6e\x00\x61\x00\x7a\ +\x00\x69\x00\x76\x00\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\x65\ +\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x69\x00\x7a\x00\x67\x00\x72\ +\x00\x61\x00\x64\x00\x6e\x00\x6a\x00\x75\x00\x20\x00\x67\x00\x65\ +\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x6a\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x54\x68\x69\x73\x20\x69\ +\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x67\x72\ +\x6f\x75\x70\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\x63\x6f\x6e\ +\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x67\x65\x6f\x6d\x65\x74\ +\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x74\x00\x4f\x00\x76\x00\x6f\ +\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x6f\ +\x00\x64\x00\x61\x00\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x65\ +\x00\x61\x00\x6e\x00\x61\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x75\ +\x00\x76\x00\x6f\x00\x7a\x00\x20\x00\x62\x00\x6f\x00\x6a\x00\x65\ +\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x61\x00\x20\x00\x75\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\xb8\x00\x54\x00\x6f\x00\x20\x00\x6a\x00\ +\x65\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x6f\x00\x64\x00\x61\x00\ +\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\x72\x00\x61\x00\x6e\x00\ +\x61\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x75\x00\x76\x00\x6f\x00\ +\x7a\x00\x20\x00\x69\x00\x6c\x00\x69\x00\x20\x00\x70\x00\x72\x00\ +\x65\x00\x76\x00\x6f\x01\x11\x00\x65\x00\x6e\x00\x6a\x00\x65\x00\ +\x20\x00\x62\x00\x6f\x00\x6a\x00\x65\x00\x20\x00\x44\x00\x58\x00\ +\x46\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x61\x00\ +\x74\x00\x61\x00\x20\x00\x75\x00\x20\x00\x46\x00\x72\x00\x65\x00\ +\x65\x00\x43\x00\x41\x00\x44\x00\x2e\x00\x0a\x00\x41\x00\x6b\x00\ +\x6f\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x70\x00\ +\x69\x00\x72\x00\x61\x00\x6e\x00\x6a\x00\x65\x00\x20\x00\x62\x00\ +\x6f\x00\x6a\x00\x61\x00\x20\x00\x6f\x00\x64\x00\x61\x00\x62\x00\ +\x72\x00\x61\x00\x6e\x00\x6f\x00\x2c\x00\x20\x00\x6d\x00\x6f\x00\ +\x72\x00\x61\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x64\x00\x61\x00\ +\x62\x00\x72\x00\x61\x00\x74\x00\x69\x00\x20\x00\x64\x00\x61\x00\ +\x74\x00\x6f\x00\x74\x00\x65\x00\x6b\x00\x75\x00\x20\x00\x7a\x00\ +\x61\x00\x20\x00\x6d\x00\x61\x00\x70\x00\x69\x00\x72\x00\x61\x00\ +\x6e\x00\x6a\x00\x65\x00\x20\x00\x62\x00\x6f\x00\x6a\x00\x61\x00\ +\x20\x00\x6b\x00\x6f\x00\x6a\x00\x61\x00\x20\x00\x73\x00\x61\x00\ +\x64\x00\x72\x01\x7e\x00\x69\x00\x20\x00\x74\x00\x61\x00\x62\x00\ +\x6c\x00\x69\x00\x63\x00\x75\x00\x20\x00\x70\x00\x72\x00\x69\x00\ +\x6a\x00\x65\x00\x76\x00\x6f\x00\x64\x00\x61\x00\x20\x00\x6b\x00\ +\x6f\x00\x6a\x00\x61\x00\x20\x01\x07\x00\x65\x00\x20\x00\x70\x00\ +\x72\x00\x65\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x69\x00\x74\x00\ +\x69\x00\x20\x00\x62\x00\x6f\x00\x6a\x00\x65\x00\x20\x00\x75\x00\ +\x20\x01\x61\x00\x69\x00\x72\x00\x69\x00\x6e\x00\x65\x00\x20\x00\ +\x6c\x00\x69\x00\x6e\x00\x69\x00\x6a\x00\x61\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\xce\x00\x4f\x00\x76\x00\x6f\x00\x20\x00\x6a\x00\x65\ +\x00\x20\x00\x6f\x00\x72\x00\x69\x00\x6a\x00\x65\x00\x6e\x00\x74\ +\x00\x61\x00\x63\x00\x69\x00\x6a\x00\x61\x00\x20\x00\x74\x00\x65\ +\x00\x6b\x00\x73\x00\x74\x00\x6f\x00\x76\x00\x61\x00\x20\x00\x6e\ +\x00\x61\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x7a\ +\x00\x69\x00\x6a\x00\x61\x00\x6d\x00\x61\x00\x20\x00\x6b\x00\x61\ +\x00\x64\x00\x61\x00\x20\x00\x73\x00\x75\x00\x20\x00\x6f\x00\x6e\ +\x00\x65\x00\x20\x00\x6f\x00\x6b\x00\x6f\x00\x6d\x00\x69\x00\x74\ +\x00\x65\x00\x2e\x00\x20\x00\x5a\x00\x61\x00\x64\x00\x61\x00\x6e\ +\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6a\ +\x00\x65\x00\x76\x00\x6f\x00\x2c\x00\x20\x01\x61\x00\x74\x00\x6f\ +\x00\x20\x00\x6a\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\x12\x00\x56\x00\x72\x00\x69\x00\x6a\x00\x65\x00\x64\x00\x6e\ +\x00\x6f\x00\x73\x00\x74\x00\x20\x00\x6b\x00\x6f\x00\x6a\x00\x75\ +\x00\x20\x00\x6b\x00\x6f\x00\x72\x00\x69\x00\x73\x00\x74\x00\x65\ +\x00\x20\x00\x66\x00\x75\x00\x6e\x00\x6b\x00\x63\x00\x69\x00\x6a\ +\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x6a\x00\x65\x00\x20\x00\x73\ +\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x72\x00\x69\x00\x73\x00\x74\ +\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x6c\x00\x65\x00\x72\x00\x61\ +\x00\x6e\x00\x63\x00\x69\x00\x6a\x00\x65\x00\x2e\x00\x0a\x00\x56\ +\x00\x72\x00\x69\x00\x6a\x00\x65\x00\x64\x00\x6e\x00\x6f\x00\x73\ +\x00\x74\x00\x69\x00\x20\x00\x73\x00\x20\x00\x72\x00\x61\x00\x7a\ +\x00\x6c\x00\x69\x00\x6b\x00\x61\x00\x6d\x00\x61\x00\x20\x00\x69\ +\x00\x73\x00\x70\x00\x6f\x00\x64\x00\x20\x00\x74\x00\x65\x00\x20\ +\x00\x76\x00\x72\x00\x69\x00\x6a\x00\x65\x00\x64\x00\x6e\x00\x6f\ +\x00\x73\x00\x74\x00\x69\x00\x20\x01\x07\x00\x65\x00\x20\x00\x62\ +\x00\x69\x00\x74\x00\x69\x00\x20\x00\x74\x00\x72\x00\x65\x00\x74\ +\x00\x69\x00\x72\x00\x61\x00\x6e\x00\x65\x00\x20\x00\x6b\x00\x61\ +\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\x64\x00\x6e\x00\x61\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\ +\x16\x00\x54\x00\x6f\x00\x6c\x00\x65\x00\x72\x00\x61\x00\x6e\x00\ +\x63\x00\x69\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x09\x54\x6f\x6c\x65\x72\x61\x6e\x63\x65\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x18\x00\x41\x00\x6c\x00\x61\x00\x74\x00\x6e\x00\x61\x00\x20\ +\x00\x74\x00\x72\x00\x61\x00\x6b\x00\x61\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\x4a\x00\x4b\x00\x6f\x00\x72\x00\x69\x00\x73\x00\x74\x00\ +\x69\x00\x74\x00\x65\x00\x20\x00\x7a\x00\x61\x00\x64\x00\x61\x00\ +\x6e\x00\x75\x00\x20\x00\x62\x00\x6f\x00\x6a\x00\x75\x00\x20\x00\ +\x69\x00\x20\x01\x61\x00\x69\x00\x72\x00\x69\x00\x6e\x00\x75\x00\ +\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x6a\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\x1e\x00\x4b\ +\x00\x6f\x00\x72\x00\x69\x00\x73\x00\x74\x00\x69\x00\x20\x00\x72\ +\x00\x65\x01\x61\x00\x65\x00\x74\x00\x6b\x00\x75\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x08\x55\x73\x65\x20\x67\x72\x69\x64\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x5c\x00\x4f\x00\x72\x00\x69\x00\x6a\x00\x65\ +\x00\x6e\x00\x74\x00\x61\x00\x63\x00\x69\x00\x6a\x00\x61\x00\x20\ +\x00\x74\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x61\x00\x20\x00\x6e\ +\x00\x61\x00\x20\x00\x76\x00\x65\x00\x72\x00\x74\x00\x69\x00\x6b\ +\x00\x61\x00\x6c\x00\x6e\x00\x69\x00\x6d\x00\x20\x00\x64\x00\x69\ +\x00\x6d\x00\x65\x00\x6e\x00\x7a\x00\x69\x00\x6a\x00\x61\x00\x6d\ +\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\x66\x00\x50\x00\x72\x00\x69\x00\x6c\ +\x00\x69\x00\x6b\x00\x6f\x00\x6d\x00\x20\x00\x69\x00\x7a\x00\x76\ +\x00\x6f\x00\x7a\x00\x61\x00\x20\x00\x6b\x00\x72\x00\x69\x00\x76\ +\x00\x75\x00\x6c\x00\x6a\x00\x61\x00\x20\x00\x75\x00\x20\x00\x44\ +\x00\x58\x00\x46\x00\x2c\x00\x20\x00\x6f\x00\x6e\x00\x69\x00\x20\ +\x00\x73\x00\x75\x00\x20\x00\x70\x00\x72\x00\x65\x00\x74\x00\x76\ +\x00\x6f\x00\x72\x00\x65\x00\x6e\x00\x69\x00\x20\x00\x75\x00\x20\ +\x00\x70\x00\x6f\x00\x6c\x00\x69\x00\x6c\x00\x69\x00\x6e\x00\x69\ +\x00\x6a\x00\x65\x00\x2e\x00\x20\x00\x4f\x00\x76\x00\x6f\x00\x20\ +\x00\x6a\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x73\x00\x69\ +\x00\x6d\x00\x61\x00\x6c\x00\x6e\x00\x61\x00\x20\x00\x64\x00\x75\ +\x00\x6c\x00\x6a\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x73\x00\x76\ +\x00\x61\x00\x6b\x00\x65\x00\x20\x00\x6f\x00\x64\x00\x20\x00\x70\ +\x00\x6f\x00\x6c\x00\x69\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x6a\ +\x00\x61\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\ +\x00\x61\x00\x74\x00\x61\x00\x2e\x00\x20\x00\x41\x00\x6b\x00\x6f\ +\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x30\x00\x2c\x00\x20\x00\x63\ +\x00\x69\x00\x6a\x00\x65\x00\x6c\x00\x61\x00\x20\x01\x07\x00\x65\ +\x00\x20\x00\x73\x00\x65\x00\x20\x00\x6b\x00\x72\x00\x69\x00\x76\ +\x00\x75\x00\x6c\x00\x6a\x00\x61\x00\x20\x00\x74\x00\x72\x00\x65\ +\x00\x74\x00\x69\x00\x72\x00\x61\x00\x20\x00\x6b\x00\x61\x00\x6f\ +\x00\x20\x00\x72\x00\x61\x00\x76\x00\x6e\x00\x69\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\x47\x00\x6f\x00\x72\ +\x00\x65\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x58\x59\ +\x20\x28\x54\x6f\x70\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x58\ +\x00\x5a\x00\x20\x00\x28\x00\x4e\x00\x61\x00\x70\x00\x72\x00\x69\ +\x00\x6a\x00\x65\x00\x64\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0a\x58\x5a\x20\x28\x46\x72\x6f\x6e\x74\x29\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x16\x00\x59\x00\x5a\x00\x20\x00\x28\x00\x53\x00\x74\ +\x00\x72\x00\x61\x00\x6e\x00\x61\x00\x29\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x59\x5a\x20\x28\x53\x69\x64\x65\x29\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x06\x00\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\x9e\ +\x00\x4f\x00\x7a\x00\x6e\x00\x61\x01\x0d\x00\x69\x00\x74\x00\x65\ +\x00\x20\x00\x6f\x00\x76\x00\x6f\x00\x20\x00\x61\x00\x6b\x00\x6f\ +\x00\x20\x01\x7e\x00\x65\x00\x6c\x00\x69\x00\x74\x00\x65\x00\x20\ +\x00\x6b\x00\x6f\x00\x72\x00\x69\x00\x73\x00\x74\x00\x69\x00\x74\ +\x00\x69\x00\x20\x00\x62\x00\x6f\x00\x6a\x00\x75\x00\x2f\x01\x61\ +\x00\x69\x00\x72\x00\x69\x00\x6e\x00\x75\x00\x20\x00\x6c\x00\x69\ +\x00\x6e\x00\x69\x00\x6a\x00\x65\x00\x20\x00\x69\x00\x7a\x00\x20\ +\x00\x61\x00\x6c\x00\x61\x00\x74\x00\x6e\x00\x65\x00\x20\x00\x74\ +\x00\x72\x00\x61\x00\x6b\x00\x65\x00\x20\x00\x6b\x00\x61\x00\x6f\ +\x00\x20\x00\x7a\x00\x61\x00\x64\x00\x61\x00\x6e\x00\x75\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\x16\x00\x61\x00\x6b\x00\ +\x6f\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x6f\x00\x76\x00\x6f\x00\ +\x20\x00\x75\x00\x6b\x00\x6c\x00\x6a\x00\x75\x01\x0d\x00\x65\x00\ +\x6e\x00\x6f\x00\x2c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x69\x00\x20\x00\x69\x00\x7a\x00\x20\x00\x69\x00\ +\x73\x00\x74\x00\x6f\x00\x67\x00\x20\x00\x73\x00\x6c\x00\x6f\x00\ +\x6a\x00\x61\x00\x20\x01\x07\x00\x65\x00\x20\x00\x73\x00\x65\x00\ +\x20\x00\x75\x00\x6a\x00\x65\x00\x64\x00\x69\x00\x6e\x00\x69\x00\ +\x74\x00\x69\x00\x20\x00\x75\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\ +\x6b\x00\x6f\x00\x76\x00\x65\x00\x2c\x00\x20\x00\x70\x00\x61\x00\ +\x20\x01\x07\x00\x65\x00\x20\x00\x6f\x00\x6b\x00\x72\x00\x65\x00\ +\x74\x00\x61\x00\x6e\x00\x6a\x00\x65\x00\x20\x00\x7a\x00\x61\x00\ +\x73\x00\x6c\x00\x6f\x00\x6e\x00\x61\x00\x20\x00\x62\x00\x69\x00\ +\x74\x00\x69\x00\x20\x00\x62\x00\x72\x01\x7e\x00\x65\x00\x2c\x00\ +\x20\x00\x61\x00\x6c\x00\x69\x00\x20\x01\x07\x00\x65\x00\x20\x00\ +\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x69\x00\x20\x00\x74\x00\x65\x01\x7e\x00\x65\x00\x20\x00\ +\x75\x00\x72\x00\x65\x01\x11\x00\x69\x00\x76\x00\x61\x00\x74\x00\ +\x69\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\x6e\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\x6f\ +\x00\x76\x00\x6f\x00\x20\x00\x6f\x00\x7a\x00\x6e\x00\x61\x01\x0d\ +\x00\x65\x00\x6e\x00\x6f\x00\x2c\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x20\x00\x6c\x00\x69\x00\x73\ +\x00\x74\x00\x61\x00\x20\x01\x07\x00\x65\x00\x20\x00\x74\x00\x61\ +\x00\x6b\x00\x6f\x01\x11\x00\x65\x00\x72\x00\x20\x00\x62\x00\x69\ +\x00\x74\x00\x69\x00\x20\x00\x75\x01\x0d\x00\x69\x00\x74\x00\x61\ +\x00\x6e\x00\x69\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\x58\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\x20\ +\x00\x6f\x00\x7a\x00\x6e\x00\x61\x01\x0d\x00\x65\x00\x6e\x00\x6f\ +\x00\x2c\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x2f\x00\x6d\ +\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\x00\x6e\x00\x65\x01\x07\ +\x00\x65\x00\x20\x00\x62\x00\x69\x00\x74\x00\x69\x00\x20\x00\x75\ +\x01\x0d\x00\x69\x00\x74\x00\x61\x00\x6e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x34\x69\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x75\ +\x6e\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x65\x78\x74\x73\x2f\ +\x6d\x74\x65\x78\x74\x73\x20\x77\x6f\x6e\x27\x74\x20\x62\x65\x20\ +\x69\x6d\x70\x6f\x72\x74\x65\x64\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\ +\x00\x70\x00\x78\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x70\x78\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0a\x00\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\x36\x00\x7a\x00\x61\x00\x64\x00\ +\x61\x00\x6e\x00\x61\x00\x20\x00\x62\x00\x6f\x00\x6a\x00\x61\x00\ +\x20\x00\x7a\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x76\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\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\x46\x00\x49\x00\x6e\x00\x69\x00\x63\x00\x69\x00\x6a\x00\x61\ +\x00\x6c\x00\x6e\x00\x61\x00\x20\x00\x62\x00\x6f\x00\x6a\x00\x61\ +\x00\x20\x00\x73\x00\x69\x00\x6d\x00\x62\x00\x6f\x00\x6c\x00\x61\ +\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x75\x00\x68\x00\x76\x00\x61\ +\x00\x74\x00\x69\x00\x74\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x22\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\ +\x6c\x6f\x72\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x20\x73\x79\x6d\ +\x62\x6f\x6c\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\x00\x7a\x00\x61\ +\x00\x64\x00\x61\x00\x6e\x00\x61\x00\x20\x01\x61\x00\x69\x00\x72\ +\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\ +\x00\x6a\x00\x65\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x6e\x00\x6f\ +\x00\x76\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x25\x74\x68\ +\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\ +\x64\x74\x68\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x26\x00\x5a\x00\ +\x61\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x69\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\x10\x00\x26\x00\x4e\x00\ +\x61\x00\x73\x00\x74\x00\x61\x00\x76\x00\x69\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\x00\x26\ +\x00\x4b\x00\x6f\x00\x70\x00\x69\x00\x72\x00\x61\x00\x6a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x05\x26\x43\x6f\x70\x79\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x26\x00\ +\x5a\x00\x61\x00\x76\x00\x72\x01\x61\x00\x69\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x07\x26\x46\x69\x6e\x69\x73\x68\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\x70\x00\x6f\ +\x00\x6d\x00\x61\x00\x6b\x00\x20\x00\x75\x00\x20\x00\x26\x00\x4f\ +\x00\x43\x00\x43\x00\x2d\x00\x73\x00\x74\x00\x69\x00\x6c\x00\x75\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x26\x4f\x43\x43\x2d\x73\ +\x74\x79\x6c\x65\x20\x6f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x26\x00\x52\x00\ +\x65\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x76\x00\x61\x00\x6e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x52\x65\x6c\x61\x74\x69\ +\x76\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x10\x00\x26\x00\x50\x00\x6f\x00\x6e\x00\x69\x01\x61\x00\x74\ +\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x55\x6e\x64\ +\x6f\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0e\x00\x26\x00\x4f\x00\x62\x00\x72\x00\x69\x01\x61\x00\x69\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x57\x69\x70\x65\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x41\ +\x00\x6b\x00\x74\x00\x69\x00\x76\x00\x6e\x00\x61\x00\x20\x00\x6e\ +\x00\x61\x00\x72\x00\x65\x00\x64\x00\x62\x00\x75\x00\x20\x00\x6e\ +\x00\x61\x00\x63\x00\x72\x00\x74\x00\x61\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\x00\x41\x00\x6b\x00\x74\x00\x69\ +\x00\x76\x00\x6e\x00\x69\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x20\x00\x6d\x00\x6f\x00\x72\x00\x61\x00\x20\ +\x00\x69\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x20\x00\x76\x00\x69\ +\x01\x61\x00\x65\x00\x20\x00\x6f\x00\x64\x00\x20\x00\x64\x00\x76\ +\x00\x69\x00\x6a\x00\x65\x00\x20\x00\x74\x00\x6f\x01\x0d\x00\x6b\ +\x00\x65\x00\x2f\x01\x0d\x00\x76\x00\x6f\x00\x72\x00\x61\x00\x20\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x33\x41\x63\x74\x69\x76\x65\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x6d\x75\x73\x74\x20\x68\x61\x76\ +\x65\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\x74\x77\x6f\x20\ +\x70\x6f\x69\x6e\x74\x73\x2f\x6e\x6f\x64\x65\x73\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\x44\x00\ +\x6f\x00\x64\x00\x61\x00\x6a\x00\x20\x00\x74\x00\x6f\x01\x0d\x00\ +\x6b\x00\x65\x00\x20\x00\x74\x00\x72\x00\x65\x00\x6e\x00\x75\x00\ +\x74\x00\x6e\x00\x6f\x00\x6d\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\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\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x41\x70\x65\x72\x74\ +\x75\x72\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x26\x00\x4b\x00\x75\x00\x74\x00\x20\x00\x6f\x00\x74\x00\ +\x76\x00\x6f\x00\x72\x00\x61\x00\x20\x00\x62\x00\x6c\x00\x65\x00\ +\x6e\x00\x64\x00\x65\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\x3a\x00\x50\x00\x72\x00\x69\x00\x6d\x00\x69\x00\x6a\x00\ +\x65\x00\x6e\x00\x69\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\ +\x64\x00\x61\x00\x62\x00\x72\x00\x61\x00\x6e\x00\x65\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\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\x4c\x00\x75\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\ +\x41\x72\x63\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x46\x00\x4e\x00\x65\x00\x20\x00\x6d\x00\x6f\x00\x67\x00\ +\x75\x00\x20\x00\x70\x00\x6f\x00\x6d\x00\x61\x00\x6b\x00\x6e\x00\ +\x75\x00\x74\x00\x69\x00\x20\x00\x6f\x00\x76\x00\x61\x00\x6a\x00\ +\x20\x00\x74\x00\x69\x00\x70\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\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\x10\x00\x43\x00\x65\x00\x6e\x00\x74\x00\x61\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\x1a\x00\x50\x00\x72\x00\x6f\x00\x6d\x00\x6a\x00\x65\ +\x00\x6e\x00\x69\x00\x20\x00\x73\x00\x74\x00\x69\x00\x6c\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x68\x61\x6e\x67\x65\x20\x53\ +\x74\x79\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\xaa\x00\x4f\x00\x7a\x00\x6e\x00\x61\x01\x0d\x00\x69\ +\x00\x20\x00\x61\x00\x6b\x00\x6f\x00\x20\x00\x62\x00\x69\x00\x20\ +\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x20\x00\x74\x00\x72\x00\x65\x00\x62\x00\x61\x00\x6f\ +\x00\x20\x00\x70\x00\x6f\x00\x6a\x00\x61\x00\x76\x00\x69\x00\x74\ +\x00\x69\x00\x20\x00\x6b\x00\x61\x00\x6f\x00\x20\x00\x70\x00\x75\ +\x00\x6e\x00\x2c\x00\x20\x00\x69\x00\x6e\x00\x61\x01\x0d\x00\x65\ +\x00\x20\x01\x07\x00\x65\x00\x20\x00\x73\x00\x65\x00\x20\x00\x70\ +\x00\x6f\x00\x6a\x00\x61\x00\x76\x00\x69\x00\x74\x00\x69\x00\x20\ +\x00\x6b\x00\x61\x00\x6f\x00\x20\x00\x6f\x01\x7e\x00\x69\x01\x0d\ +\x00\x65\x00\x6e\x00\x6a\x00\x65\x00\x28\x00\x69\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x5b\x43\x68\x65\x63\x6b\x20\x74\x68\ +\x69\x73\x20\x69\x66\x20\x74\x68\x65\x20\x6f\x62\x6a\x65\x63\x74\ +\x20\x73\x68\x6f\x75\x6c\x64\x20\x61\x70\x70\x65\x61\x72\x20\x61\ +\x73\x20\x66\x69\x6c\x6c\x65\x64\x2c\x20\x6f\x74\x68\x65\x72\x77\ +\x69\x73\x65\x20\x69\x74\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\ +\x61\x72\x20\x61\x73\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\ +\x28\x69\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x08\x00\x4b\x00\x72\x00\x75\x00\x67\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x06\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x78\x00\x4b\x00\x6f\x00\ +\x6f\x00\x72\x00\x64\x00\x69\x00\x6e\x00\x61\x00\x74\x00\x65\x00\ +\x20\x00\x75\x00\x20\x00\x6f\x00\x64\x00\x6e\x00\x6f\x00\x73\x00\ +\x75\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x7a\x00\x61\x00\x64\x00\ +\x6e\x00\x6a\x00\x75\x00\x20\x00\x74\x00\x6f\x01\x0d\x00\x6b\x00\ +\x75\x00\x20\x00\x69\x00\x6c\x00\x69\x00\x20\x00\x61\x00\x70\x00\ +\x73\x00\x6f\x00\x6c\x00\x75\x00\x74\x00\x6e\x00\x75\x00\x20\x00\ +\x28\x00\x70\x00\x72\x00\x6f\x00\x73\x00\x74\x00\x6f\x00\x72\x00\ +\x61\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x36\x43\x6f\x6f\ +\x72\x64\x69\x6e\x61\x74\x65\x73\x20\x72\x65\x6c\x61\x74\x69\x76\ +\x65\x20\x74\x6f\x20\x6c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\ +\x6f\x72\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x20\x28\x53\x50\x41\ +\x43\x45\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0e\x00\x4b\x00\x6f\x00\x70\x00\x69\x00\x72\x00\x61\x00\ +\x6a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x43\x6f\x70\x79\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\ +\x4b\x00\x72\x00\x65\x00\x69\x00\x72\x00\x61\x00\x6a\x00\x20\x00\ +\x6c\x00\x75\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x43\ +\x72\x65\x61\x74\x65\x20\x41\x72\x63\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x4b\x00\x72\x00\x65\x00\ +\x69\x00\x72\x00\x61\x00\x6a\x00\x20\x00\x42\x00\x2d\x00\x73\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\x00\x4b\x00\x72\x00\x65\x00\x69\x00\x72\x00\x61\x00\x6a\x00\ +\x20\x00\x6b\x00\x72\x00\x75\x00\x67\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0d\x43\x72\x65\x61\x74\x65\x20\x43\x69\x72\x63\x6c\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\ +\x00\x4b\x00\x72\x00\x65\x00\x69\x00\x72\x00\x61\x00\x6a\x00\x20\ +\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x7a\x00\x69\x00\x6a\ +\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\x65\x61\ +\x74\x65\x20\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x4b\x00\x72\ +\x00\x65\x00\x69\x00\x72\x00\x61\x00\x6a\x00\x20\x00\x70\x00\x6f\ +\x00\x6c\x00\x69\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\x26\x00\x4b\x00\x72\x00\x65\x00\x69\x00\x72\x00\x61\x00\x6a\ +\x00\x20\x00\x70\x00\x72\x00\x61\x00\x76\x00\x6f\x00\x6b\x00\x75\ +\x00\x74\x00\x6e\x00\x69\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x43\x72\x65\x61\x74\x65\x20\x52\x65\x63\x74\x61\x6e\x67\ +\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x18\x00\x53\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x69\x00\x20\ +\x00\x74\x00\x65\x00\x6b\x00\x73\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0b\x43\x72\x65\x61\x74\x65\x20\x54\x65\x78\x74\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\ +\x4b\x00\x72\x00\x65\x00\x69\x00\x72\x00\x61\x00\x6a\x00\x20\x00\ +\x6c\x00\x69\x00\x6e\x00\x69\x00\x6a\x00\x75\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\x16\ +\x00\x42\x00\x72\x00\x69\x01\x61\x00\x69\x00\x20\x00\x6d\x00\x6a\ +\x00\x65\x00\x72\x00\x75\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\x00\x55\x00\x64\x00\x61\x00\ +\x6c\x00\x6a\x00\x65\x00\x6e\x00\x6f\x00\x73\x00\x74\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\x65\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4a\x00\ +\x4e\x00\x65\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x6a\x00\x65\x00\ +\x63\x00\x69\x00\x72\x00\x61\x00\x6a\x00\x20\x00\x74\x00\x6f\x01\ +\x0d\x00\x6b\x00\x65\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x63\x00\ +\x72\x00\x74\x00\x61\x01\x0d\x00\x75\x00\x20\x00\x72\x00\x61\x00\ +\x76\x00\x6e\x00\x69\x00\x6e\x00\x75\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x28\x44\x6f\x20\x6e\x6f\x74\x20\x70\x72\x6f\x6a\x65\x63\ +\x74\x20\x70\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\x61\x20\x64\x72\ +\x61\x77\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x44\x00\x72\x00\ +\x61\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\ +\x72\x61\x66\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x16\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\ +\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x20\x74\x6f\x6f\x6c\x73\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\ +\x52\x00\x75\x00\x62\x00\x6f\x00\x76\x00\x69\x00\x20\x00\x73\x00\ +\x65\x00\x20\x00\x6e\x00\x65\x00\x20\x00\x73\x00\x69\x00\x6a\x00\ +\x65\x00\x6b\x00\x75\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\x0a\x00\x55\x00\x72\x00\x65\ +\x00\x64\x00\x69\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\ +\x69\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x14\x00\x49\x00\x26\x00\x73\x00\x70\x00\x75\x00\x6e\x00\x6a\ +\x00\x65\x00\x6e\x00\x6f\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\x00\x42\x00\x6f\x00\x6a\x00\x61\x00\ +\x20\x00\x70\x00\x6f\x00\x76\x00\x72\x01\x61\x00\x69\x00\x6e\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x46\x61\x63\x65\x20\ +\x43\x6f\x6c\x6f\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x4c\x00\x5a\x00\x61\x00\x76\x00\x72\x01\x61\x00\ +\x61\x00\x76\x00\x61\x00\x20\x00\x69\x00\x20\x00\x7a\x00\x61\x00\ +\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\x20\x00\x74\x00\x72\x00\ +\x65\x00\x6e\x00\x75\x00\x74\x00\x6e\x00\x75\x00\x20\x00\x6c\x00\ +\x69\x00\x6e\x00\x69\x00\x6a\x00\x75\x00\x20\x00\x28\x00\x43\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x46\x69\x6e\x69\x73\ +\x68\x65\x73\x20\x61\x6e\x64\x20\x63\x6c\x6f\x73\x65\x73\x20\x74\ +\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\x20\ +\x28\x43\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x52\x00\x5a\x00\x61\x00\x76\x00\x72\x01\x61\x00\x61\x00\ +\x76\x00\x61\x00\x20\x00\x74\x00\x72\x00\x65\x00\x6e\x00\x75\x00\ +\x74\x00\x6e\x00\x69\x00\x20\x00\x63\x00\x72\x00\x74\x00\x65\x01\ +\x7e\x00\x20\x00\x69\x00\x6c\x00\x69\x00\x20\x00\x6f\x00\x70\x00\ +\x65\x00\x72\x00\x61\x00\x63\x00\x69\x00\x6a\x00\x75\x00\x20\x00\ +\x28\x00\x46\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x46\ +\x69\x6e\x69\x73\x68\x65\x73\x20\x74\x68\x65\x20\x63\x75\x72\x72\ +\x65\x6e\x74\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x6f\x72\x20\x65\ +\x64\x69\x74\x69\x6e\x67\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\ +\x20\x28\x46\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x1c\x00\x56\x00\x65\x00\x6c\x00\x69\x01\x0d\x00\x69\ +\x00\x6e\x00\x61\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x46\x6f\x6e\x74\x20\x53\ +\x69\x7a\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x60\x00\x50\x00\x72\x00\x6f\x00\x6e\x00\x61\x01\x11\x00\ +\x65\x00\x6e\x00\x61\x00\x20\x00\x31\x00\x20\x00\x7a\x00\x61\x00\ +\x74\x00\x76\x00\x6f\x00\x72\x00\x65\x00\x6e\x00\x61\x00\x20\x00\ +\x73\x00\x6b\x00\x69\x00\x63\x00\x61\x00\x3a\x00\x20\x00\x73\x00\ +\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\x6e\x00\x6a\x00\x65\x00\ +\x20\x00\x70\x00\x6f\x00\x76\x00\x72\x01\x61\x00\x69\x00\x6e\x00\ +\x65\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\ +\x5a\x00\x50\x00\x72\x00\x6f\x00\x6e\x00\x61\x01\x11\x00\x65\x00\ +\x6e\x00\x61\x00\x20\x00\x31\x00\x20\x00\x70\x00\x6f\x00\x76\x00\ +\x72\x01\x61\x00\x69\x00\x6e\x00\x61\x00\x3a\x00\x20\x00\x69\x00\ +\x7a\x00\x76\x00\x6c\x00\x61\x01\x0d\x00\x65\x00\x6e\x00\x6a\x00\ +\x65\x00\x20\x00\x6e\x00\x6a\x00\x65\x00\x6e\x00\x69\x00\x68\x00\ +\x20\x01\x7e\x00\x69\x00\x63\x00\x61\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\x72\x00\x50\x00\x72\x00\x6f\x00\x6e\ +\x00\x61\x01\x11\x00\x65\x00\x6e\x00\x20\x00\x31\x00\x20\x00\x6e\ +\x00\x65\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\ +\x00\x61\x00\x72\x00\x73\x00\x6b\x00\x69\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x3a\x00\x20\x00\x70\x00\x72\ +\x00\x69\x00\x6c\x00\x61\x00\x67\x00\x6f\x01\x11\x00\x61\x00\x76\ +\x00\x61\x00\x6d\x00\x20\x00\x67\x00\x61\x00\x20\x00\x6e\x00\x61\ +\x00\x63\x00\x72\x00\x74\x00\x75\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\x4c\x00\x50\x00\x72\x00\x6f\x00\x6e\x00\x61\x01\x11\x00\ +\x65\x00\x6e\x00\x61\x00\x20\x00\x31\x00\x20\x00\x6f\x00\x74\x00\ +\x76\x00\x6f\x00\x72\x00\x65\x00\x6e\x00\x61\x00\x20\x01\x7e\x00\ +\x69\x00\x63\x00\x61\x00\x3a\x00\x20\x00\x7a\x00\x61\x00\x74\x00\ +\x76\x00\x61\x00\x72\x00\x61\x00\x6e\x00\x6a\x00\x65\x00\x20\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x46\x6f\x75\x6e\x64\x20\x31\ +\x20\x6f\x70\x65\x6e\x20\x77\x69\x72\x65\x3a\x20\x63\x6c\x6f\x73\ +\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x7c\x00\x50\x00\x72\x00\x6f\x00\x6e\x00\ +\x61\x01\x11\x00\x65\x00\x6e\x00\x20\x00\x31\x00\x20\x00\x70\x00\ +\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x61\x00\x72\x00\ +\x73\x00\x6b\x00\x69\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x3a\x00\x20\x00\x72\x00\x61\x00\x7a\x00\x62\x00\ +\x69\x00\x6a\x00\x61\x00\x6e\x00\x6a\x00\x65\x00\x20\x00\x6e\x00\ +\x6a\x00\x65\x00\x67\x00\x6f\x00\x76\x00\x69\x00\x68\x00\x20\x00\ +\x6f\x00\x76\x00\x69\x00\x73\x00\x6e\x00\x6f\x00\x73\x00\x74\x00\ +\x69\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\x80\x00\x50\x00\x72\x00\x6f\x00\x6e\x00\x61\x01\x11\x00\x65\ +\x00\x6e\x00\x20\x00\x31\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x20\x00\x6b\x00\x6f\x00\x6a\x00\x69\x00\x20\ +\x00\x73\x00\x65\x00\x20\x00\x6d\x00\x6f\x01\x7e\x00\x65\x00\x20\ +\x00\x70\x00\x72\x00\x65\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x69\ +\x00\x74\x00\x69\x00\x20\x00\x75\x00\x20\x00\x74\x00\x69\x00\x6a\ +\x00\x65\x00\x6c\x00\x6f\x00\x3a\x00\x20\x00\x70\x00\x72\x00\x65\ +\x00\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x20\x00\x67\ +\x00\x61\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\x50\x00\x72\x00\x6f\x00\ +\x6e\x00\x61\x01\x11\x00\x65\x00\x6e\x00\x61\x00\x20\x00\x32\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x61\x00\x74\x00\ +\x61\x00\x3a\x00\x20\x00\x73\x00\x70\x00\x61\x00\x6a\x00\x61\x00\ +\x6d\x00\x20\x00\x69\x00\x68\x00\x20\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1d\x46\x6f\x75\x6e\x64\x20\x32\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x42\ +\x00\x50\x00\x72\x00\x6f\x00\x6e\x00\x61\x01\x11\x00\x65\x00\x6e\ +\x00\x61\x00\x20\x00\x32\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x61\x00\x3a\x00\x20\x00\x6f\x00\x64\x00\x75\ +\x00\x7a\x00\x69\x00\x6d\x00\x61\x00\x6d\x00\x20\x00\x69\x00\x68\ +\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\x54\x00\x50\ +\x00\x72\x00\x6f\x00\x6e\x00\x61\x01\x11\x00\x65\x00\x6e\x00\x65\ +\x00\x20\x00\x7a\x00\x61\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x65\ +\x00\x6e\x00\x65\x00\x20\x01\x7e\x00\x69\x00\x63\x00\x65\x00\x3a\ +\x00\x20\x00\x69\x00\x7a\x00\x72\x00\x61\x00\x64\x00\x61\x00\x20\ +\x00\x70\x00\x6f\x00\x76\x00\x72\x01\x61\x00\x69\x00\x6e\x00\x65\ +\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\x84\x00\x50\x00\ +\x72\x00\x6f\x00\x6e\x00\x61\x01\x11\x00\x65\x00\x6e\x00\x61\x00\ +\x20\x00\x73\x00\x6b\x00\x75\x00\x70\x00\x69\x00\x6e\x00\x65\x00\ +\x3a\x00\x20\x00\x7a\x00\x61\x00\x74\x00\x76\x00\x61\x00\x72\x00\ +\x61\x00\x6e\x00\x6a\x00\x65\x00\x20\x00\x73\x00\x76\x00\x69\x00\ +\x68\x00\x20\x00\x6f\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x65\x00\ +\x6e\x00\x69\x00\x68\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x61\x00\x74\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x75\x00\ +\x74\x00\x61\x00\x72\x00\x20\x00\x6e\x00\x6a\x00\x69\x00\x68\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\x64\x00\x50\x00\x72\x00\x6f\x00\ +\x6e\x00\x61\x01\x11\x00\x65\x00\x6e\x00\x69\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x20\x00\x6b\x00\ +\x6f\x00\x6a\x00\x69\x00\x20\x00\x73\x00\x61\x00\x64\x00\x72\x01\ +\x7e\x00\x65\x00\x20\x00\x6b\x00\x72\x00\x69\x00\x76\x00\x75\x00\ +\x6c\x00\x6a\x00\x65\x00\x3a\x00\x20\x00\x73\x00\x70\x00\x61\x00\ +\x6a\x00\x61\x00\x6d\x00\x20\x00\x69\x00\x68\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x2d\x46\x6f\x75\x6e\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\ +\x63\x75\x72\x76\x65\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\ +\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x5a\x00\x50\x00\x72\x00\x6f\x00\x6e\x00\x61\x01\x11\ +\x00\x65\x00\x6e\x00\x65\x00\x20\x00\x73\x00\x61\x00\x6d\x00\x6f\ +\x00\x20\x01\x7e\x00\x69\x00\x63\x00\x65\x00\x3a\x00\x20\x00\x76\ +\x00\x61\x01\x11\x00\x65\x00\x6e\x00\x6a\x00\x65\x00\x20\x00\x6e\ +\x00\x6a\x00\x69\x00\x68\x00\x6f\x00\x76\x00\x69\x00\x68\x00\x20\ +\x00\x72\x00\x75\x00\x62\x00\x6f\x00\x76\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\ +\x4e\x00\x50\x00\x72\x00\x6f\x00\x6e\x00\x61\x01\x11\x00\x65\x00\ +\x6e\x00\x6f\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x6e\x00\x65\x00\ +\x6b\x00\x6f\x00\x6c\x00\x69\x00\x6b\x00\x6f\x00\x20\x00\x72\x00\ +\x75\x00\x62\x00\x6f\x00\x76\x00\x61\x00\x3a\x00\x20\x00\x6f\x01\ +\x7e\x00\x69\x01\x0d\x00\x69\x00\x20\x00\x69\x00\x68\x00\x20\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x21\x46\x6f\x75\x6e\x64\x20\x73\ +\x65\x76\x65\x72\x61\x6c\x20\x65\x64\x67\x65\x73\x3a\x20\x77\x69\ +\x72\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x56\x00\x50\x00\x72\x00\x6f\ +\x00\x6e\x00\x61\x01\x11\x00\x65\x00\x6e\x00\x6f\x00\x20\x00\x6a\ +\x00\x65\x00\x20\x00\x6e\x00\x65\x00\x6b\x00\x6f\x00\x6c\x00\x69\ +\x00\x6b\x00\x6f\x00\x20\x00\x70\x00\x6f\x00\x76\x00\x72\x01\x61\ +\x00\x69\x00\x6e\x00\x61\x00\x3a\x00\x20\x00\x63\x00\x69\x00\x6a\ +\x00\x65\x00\x70\x00\x61\x00\x6d\x00\x20\x00\x69\x00\x68\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\x70\x00\x50\ +\x00\x72\x00\x6f\x00\x6e\x00\x61\x01\x11\x00\x65\x00\x6e\x00\x6f\ +\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x6e\x00\x65\x00\x6b\x00\x6f\ +\x00\x6c\x00\x69\x00\x6b\x00\x6f\x00\x20\x00\x6e\x00\x65\x00\x2d\ +\x00\x70\x00\x6f\x00\x76\x00\x65\x00\x7a\x00\x61\x00\x6e\x00\x69\ +\x00\x68\x00\x20\x00\x72\x00\x75\x00\x62\x00\x6f\x00\x76\x00\x61\ +\x00\x3a\x00\x20\x00\x69\x00\x7a\x00\x72\x00\x61\x00\x64\x00\x61\ +\x00\x20\x00\x73\x00\x70\x00\x6f\x00\x6a\x00\x61\x00\x20\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x33\x46\x6f\x75\x6e\x64\x20\x73\x65\ +\x76\x65\x72\x61\x6c\x20\x6e\x6f\x6e\x2d\x63\x6f\x6e\x6e\x65\x63\ +\x74\x65\x64\x20\x65\x64\x67\x65\x73\x3a\x20\x6d\x61\x6b\x69\x6e\ +\x67\x20\x63\x6f\x6d\x70\x6f\x75\x6e\x64\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x70\x00\x50\x00\x72\x00\ +\x6f\x00\x6e\x00\x61\x01\x11\x00\x65\x00\x6e\x00\x6f\x00\x20\x00\ +\x6a\x00\x65\x00\x20\x00\x6e\x00\x65\x00\x6b\x00\x6f\x00\x6c\x00\ +\x69\x00\x6b\x00\x6f\x00\x20\x00\x6e\x00\x65\x00\x7a\x00\x61\x00\ +\x76\x00\x69\x00\x73\x00\x6e\x00\x69\x00\x68\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x61\x00\x74\x00\x61\x00\x3a\x00\ +\x20\x00\x69\x00\x7a\x00\x72\x00\x61\x00\x64\x00\x61\x00\x20\x00\ +\x73\x00\x70\x00\x6f\x00\x6a\x00\x61\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\x8c\x00\x50\x00\x72\x00\x6f\ +\x00\x6e\x00\x61\x01\x11\x00\x65\x00\x6e\x00\x6f\x00\x20\x00\x6a\ +\x00\x65\x00\x20\x00\x6e\x00\x65\x00\x6b\x00\x6f\x00\x6c\x00\x69\ +\x00\x6b\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x61\x00\x74\x00\x61\x00\x20\x00\x69\x00\x6c\x00\x69\x00\x20\ +\x00\x70\x00\x6c\x00\x6f\x00\x68\x00\x61\x00\x3a\x00\x20\x00\x73\ +\x00\x74\x00\x76\x00\x61\x00\x72\x00\x61\x00\x6e\x00\x6a\x00\x65\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\ +\x00\x61\x00\x72\x00\x73\x00\x6b\x00\x65\x00\x20\x00\x70\x00\x6c\ +\x00\x6f\x00\x68\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x39\ +\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x6f\x72\x20\x66\x61\x63\x65\x73\x3a\x20\ +\x6d\x61\x6b\x69\x6e\x67\x20\x61\x20\x70\x61\x72\x61\x6d\x65\x74\ +\x72\x69\x63\x20\x66\x61\x63\x65\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x54\x00\x50\x00\x72\x00\x6f\x00\ +\x6e\x00\x61\x01\x11\x00\x65\x00\x6e\x00\x6f\x00\x20\x00\x6a\x00\ +\x65\x00\x20\x00\x6e\x00\x65\x00\x6b\x00\x6f\x00\x6c\x00\x69\x00\ +\x6b\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x61\x00\x74\x00\x61\x00\x3a\x00\x20\x00\x73\x00\x70\x00\x61\x00\ +\x6a\x00\x61\x00\x6d\x00\x20\x00\x69\x00\x68\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\ +\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x66\x75\ +\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x6a\x00\x50\x00\x72\x00\x6f\ +\x00\x6e\x00\x61\x01\x11\x00\x65\x00\x6e\x00\x6f\x00\x20\x00\x6a\ +\x00\x65\x00\x20\x00\x6e\x00\x65\x00\x6b\x00\x6f\x00\x6c\x00\x69\ +\x00\x6b\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x61\x00\x74\x00\x61\x00\x3a\x00\x20\x00\x6f\x00\x64\x00\x75\ +\x00\x7a\x00\x69\x00\x6d\x00\x61\x00\x6d\x00\x20\x00\x69\x00\x68\ +\x00\x20\x00\x6f\x00\x64\x00\x20\x00\x70\x00\x72\x00\x76\x00\x6f\ +\x00\x67\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\x94\x00\x41\x00\x6b\x00\x6f\x00\ +\x20\x00\x6a\x00\x65\x00\x20\x00\x6f\x00\x7a\x00\x6e\x00\x61\x01\ +\x0d\x00\x65\x00\x6e\x00\x6f\x00\x2c\x00\x20\x00\x70\x00\x6f\x00\ +\x6d\x00\x61\x00\x6b\x00\x20\x00\x75\x00\x20\x00\x4f\x00\x43\x00\ +\x43\x00\x20\x00\x73\x00\x74\x00\x69\x00\x6c\x00\x75\x00\x20\x00\ +\x69\x00\x7a\x00\x76\x00\x72\x01\x61\x00\x69\x00\x74\x00\x69\x00\ +\x20\x01\x07\x00\x65\x00\x20\x00\x73\x00\x65\x00\x20\x00\x75\x00\ +\x6d\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\x00\x6b\x00\ +\x6c\x00\x61\x00\x73\x00\x69\x01\x0d\x00\x6e\x00\x6f\x00\x67\x00\ +\x20\x00\x70\x00\x6f\x00\x6d\x00\x61\x00\x6b\x00\x61\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\xa8\x00\x41\x00\x6b\x00\x6f\x00\x20\x00\x6a\ +\x00\x65\x00\x20\x00\x6f\x00\x7a\x00\x6e\x00\x61\x01\x0d\x00\x65\ +\x00\x6e\x00\x6f\x00\x2c\x00\x20\x00\x6e\x00\x61\x00\x72\x00\x65\ +\x00\x64\x00\x62\x00\x61\x00\x20\x00\x6e\x00\x65\x01\x07\x00\x65\ +\x00\x20\x00\x7a\x00\x61\x00\x76\x00\x72\x01\x61\x00\x69\x00\x74\ +\x00\x69\x00\x20\x00\x73\x00\x76\x00\x65\x00\x20\x00\x64\x00\x6f\ +\x00\x6b\x00\x20\x00\x73\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x6e\ +\x00\x6f\x00\x76\x00\x6e\x00\x6f\x00\x20\x00\x6e\x00\x65\x00\x20\ +\x00\x70\x00\x72\x00\x69\x00\x74\x00\x69\x00\x73\x00\x6e\x00\x65\ +\x00\x74\x00\x65\x00\x20\x00\x67\x00\x75\x00\x6d\x00\x62\x00\x20\ +\x00\x6e\x00\x61\x00\x72\x00\x65\x00\x64\x00\x62\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x4c\x49\x66\x20\x63\x68\x65\x63\x6b\ +\x65\x64\x2c\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x77\x69\x6c\x6c\ +\x20\x6e\x6f\x74\x20\x66\x69\x6e\x69\x73\x68\x20\x75\x6e\x74\x69\ +\x6c\x20\x79\x6f\x75\x20\x70\x72\x65\x73\x73\x20\x74\x68\x65\x20\ +\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x62\x75\x74\x74\x6f\x6e\x20\x61\ +\x67\x61\x69\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x7a\x00\x41\x00\x6b\x00\x6f\x00\x20\x00\x6a\x00\x65\ +\x00\x20\x00\x6f\x00\x7a\x00\x6e\x00\x61\x01\x0d\x00\x65\x00\x6e\ +\x00\x6f\x00\x2c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x69\x00\x20\x01\x07\x00\x65\x00\x20\x00\x73\x00\x65\ +\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x72\x00\x61\x00\x74\ +\x00\x69\x00\x20\x00\x75\x00\x6d\x00\x6a\x00\x65\x00\x73\x00\x74\ +\x00\x6f\x00\x20\x00\x70\x00\x6f\x00\x6d\x00\x69\x00\x63\x00\x61\ +\x00\x6e\x00\x6a\x00\x61\x00\x20\x00\x28\x00\x43\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x37\x49\x66\x20\x63\x68\x65\x63\x6b\ +\x65\x64\x2c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\ +\x20\x62\x65\x20\x63\x6f\x70\x69\x65\x64\x20\x69\x6e\x73\x74\x65\ +\x61\x64\x20\x6f\x66\x20\x6d\x6f\x76\x65\x64\x20\x28\x43\x29\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\ +\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\x50\x00\x6f\x00\x73\x00\ +\x6c\x00\x6a\x00\x65\x00\x64\x00\x6e\x00\x6a\x00\x61\x00\x20\x00\ +\x74\x00\x6f\x01\x0d\x00\x6b\x00\x61\x00\x20\x00\x6a\x00\x65\x00\ +\x20\x00\x75\x00\x6b\x00\x6c\x00\x6f\x00\x6e\x00\x6a\x00\x65\x00\ +\x6e\x00\x61\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\x0c\x00\x4c\x00\x69\x00\ +\x6e\x00\x69\x00\x6a\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x16\x00\x42\x00\x6f\x00\x6a\x00\x61\x00\x20\x00\ +\x6c\x00\x69\x00\x6e\x00\x69\x00\x6a\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\x1a\x01\ +\x60\x00\x69\x00\x72\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x6c\x00\ +\x69\x00\x6e\x00\x69\x00\x6a\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\x12\x00\x50\x00\ +\x6f\x00\x6d\x00\x69\x00\x63\x00\x61\x00\x6e\x00\x6a\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4d\x6f\x76\x65\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x50\x00\ +\x72\x00\x61\x00\x7a\x00\x6e\x00\x6f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x16\x00\x42\x00\x72\x00\x6f\x00\x6a\x00\ +\x20\x00\x73\x00\x74\x00\x72\x00\x61\x00\x6e\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\x0a\x00\x50\x00\x6f\x00\x6d\x00\x61\x00\x6b\ +\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\x40\ +\x00\x50\x00\x6f\x00\x6d\x00\x61\x00\x6b\x00\x20\x00\x72\x00\x61\ +\x00\x64\x00\x69\x00\x20\x00\x73\x00\x61\x00\x6d\x00\x6f\x00\x20\ +\x00\x7a\x00\x61\x00\x20\x00\x6a\x00\x65\x00\x64\x00\x61\x00\x6e\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\ +\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\x20\x00\x4f\x00\x64\x00\x61\x00\x62\x00\x65\x00\x72\ +\x00\x69\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x50\x69\ +\x63\x6b\x20\x4f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x64\x00\x4f\x00\x64\x00\x61\x00\ +\x62\x00\x65\x00\x72\x00\x69\x00\x74\x00\x65\x00\x20\x00\x70\x00\ +\x6f\x00\x76\x00\x72\x01\x61\x00\x69\x00\x6e\x00\x75\x00\x20\x00\ +\x7a\x00\x61\x00\x20\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\ +\x69\x00\x72\x00\x61\x00\x6e\x00\x6a\x00\x65\x00\x20\x00\x72\x00\ +\x61\x00\x76\x00\x6e\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x63\x00\ +\x72\x00\x74\x00\x61\x00\x6e\x00\x6a\x00\x61\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x28\x50\x69\x63\x6b\x20\x61\x20\x66\x61\ +\x63\x65\x20\x74\x6f\x20\x64\x65\x66\x69\x6e\x65\x20\x74\x68\x65\ +\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\ +\x4f\x00\x64\x00\x61\x00\x62\x00\x65\x00\x72\x00\x69\x00\x20\x00\ +\x6f\x00\x74\x00\x76\x00\x6f\x00\x72\x00\x20\x00\x62\x00\x6c\x00\ +\x65\x00\x6e\x00\x64\x00\x65\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\x28\x00\x4f\x00\x64\x00\x61\x00\x62\x00\x65\x00\x72\ +\x00\x69\x00\x74\x00\x65\x00\x20\x00\x62\x00\x61\x00\x7a\x00\x75\ +\x00\x20\x00\x6b\x00\x75\x00\x74\x00\x61\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\x36\x00\x4f\x00\x64\x00\x61\x00\x62\x00\ +\x65\x00\x72\x00\x69\x00\x74\x00\x65\x00\x20\x00\x69\x00\x73\x00\ +\x68\x00\x6f\x00\x64\x00\x69\x01\x61\x00\x6e\x00\x75\x00\x20\x00\ +\x74\x00\x6f\x01\x0d\x00\x6b\x00\x75\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\x32\x00\x4f\x00\x64\x00\x61\x00\x62\ +\x00\x65\x00\x72\x00\x69\x00\x74\x00\x65\x00\x20\x00\x73\x00\x72\ +\x00\x65\x00\x64\x00\x69\x01\x61\x00\x74\x00\x65\x00\x20\x00\x74\ +\x00\x6f\x01\x0d\x00\x6b\x00\x65\x00\x20\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x13\x50\x69\x63\x6b\x20\x63\x65\x6e\x74\x65\x72\x20\ +\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x2a\x00\x4f\x00\x64\x00\x61\x00\x62\x00\ +\x65\x00\x72\x00\x69\x00\x74\x00\x65\x00\x20\x00\x75\x00\x64\x00\ +\x61\x00\x6c\x00\x6a\x00\x65\x00\x6e\x00\x6f\x00\x73\x00\x74\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\x30\x00\x4f\x00\x64\x00\x61\ +\x00\x62\x00\x65\x00\x72\x00\x69\x00\x74\x00\x65\x00\x20\x00\x7a\ +\x00\x61\x00\x76\x00\x72\x01\x61\x00\x6e\x00\x75\x00\x20\x00\x74\ +\x00\x6f\x01\x0d\x00\x6b\x00\x75\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\x00\x4f\x00\x64\x00\x61\x00\x62\x00\x65\x00\x72\ +\x00\x69\x00\x74\x00\x65\x00\x20\x00\x70\x00\x72\x00\x76\x00\x75\ +\x00\x20\x00\x74\x00\x6f\x01\x0d\x00\x6b\x00\x75\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\x4f\x00\x64\x00\x61\ +\x00\x62\x00\x65\x00\x72\x00\x69\x00\x74\x00\x65\x00\x20\x00\x6d\ +\x00\x6a\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\x00\x74\x00\x6f\ +\x01\x0d\x00\x6b\x00\x65\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\x6e\x00\x4f\x00\x64\x00\x61\x00\x62\x00\ +\x65\x00\x72\x00\x69\x00\x74\x00\x65\x00\x20\x00\x73\x00\x6c\x00\ +\x6a\x00\x65\x00\x64\x00\x65\x01\x07\x00\x75\x00\x20\x00\x74\x00\ +\x6f\x01\x0d\x00\x6b\x00\x75\x00\x2c\x00\x20\x00\x69\x00\x6c\x00\ +\x69\x00\x20\x00\x28\x00\x66\x00\x29\x00\x5a\x00\x61\x00\x76\x00\ +\x72\x01\x61\x00\x69\x00\x20\x00\x69\x00\x6c\x00\x69\x00\x20\x00\ +\x28\x00\x43\x00\x29\x00\x5a\x00\x61\x00\x74\x00\x76\x00\x6f\x00\ +\x72\x00\x69\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\x32\x00\x4f\x00\x64\x00\x61\x00\x62\ +\x00\x65\x00\x72\x00\x69\x00\x74\x00\x65\x00\x20\x00\x73\x00\x6c\ +\x00\x6a\x00\x65\x00\x64\x00\x65\x01\x07\x00\x75\x00\x20\x00\x74\ +\x00\x6f\x01\x0d\x00\x6b\x00\x75\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\x32\x00\x4f\x00\x64\x00\x61\x00\x62\x00\x65\x00\ +\x72\x00\x69\x00\x74\x00\x65\x00\x20\x00\x73\x00\x75\x00\x70\x00\ +\x72\x00\x6f\x00\x74\x00\x6e\x00\x75\x00\x20\x00\x74\x00\x6f\x01\ +\x0d\x00\x6b\x00\x75\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\x26\x00\x4f\x00\x64\x00\x61\x00\x62\x00\x65\ +\x00\x72\x00\x69\x00\x74\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x6c\ +\x00\x75\x00\x6d\x00\x6a\x00\x65\x00\x72\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\x00\x4f\x00\x64\x00\x61\x00\x62\x00\x65\x00\x72\x00\ +\x69\x00\x74\x00\x65\x00\x20\x00\x6b\x00\x75\x00\x74\x00\x20\x00\ +\x72\x00\x6f\x00\x74\x00\x61\x00\x63\x00\x69\x00\x6a\x00\x65\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\x34\ +\x00\x4f\x00\x64\x00\x61\x00\x62\x00\x65\x00\x72\x00\x69\x00\x74\ +\x00\x65\x00\x20\x00\x63\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x72\ +\x00\x20\x00\x72\x00\x6f\x00\x74\x00\x61\x00\x63\x00\x69\x00\x6a\ +\x00\x65\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\x38\x00\x4f\x00\x64\x00\x72\x00\x65\x00\x64\x00\x69\ +\x00\x74\x00\x65\x00\x20\x00\x66\x00\x61\x00\x6b\x00\x74\x00\x6f\ +\x00\x72\x00\x20\x00\x73\x00\x6b\x00\x61\x00\x6c\x00\x69\x00\x72\ +\x00\x61\x00\x6e\x00\x6a\x00\x61\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\x00\x4f\x00\x64\x00\x61\x00\ +\x62\x00\x65\x00\x72\x00\x69\x00\x74\x00\x65\x00\x20\x00\x70\x00\ +\x6f\x01\x0d\x00\x65\x00\x74\x00\x61\x00\x6b\x00\x20\x00\x6b\x00\ +\x75\x00\x74\x00\x61\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\x00\x4f\x00\x64\x00\x61\x00\x62\x00\x65\x00\x72\x00\ +\x69\x00\x74\x00\x65\x00\x20\x00\x70\x00\x6f\x01\x0d\x00\x65\x00\ +\x74\x00\x6e\x00\x75\x00\x20\x00\x74\x00\x6f\x01\x0d\x00\x6b\x00\ +\x75\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\ +\x54\x00\x6f\x01\x0d\x00\x6b\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x05\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x52\x00\x61\x00\x64\x00\x69\ +\x00\x6a\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\x1a\x00\x52\x00\x61\x00\x64\x00\x69\x00\x6a\ +\x00\x75\x00\x73\x00\x20\x00\x6b\x00\x72\x00\x75\x00\x67\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\x42\x00\x55\x00\x6b\x00\x6c\ +\x00\x6f\x00\x6e\x00\x69\x00\x20\x00\x74\x00\x6f\x01\x0d\x00\x6b\ +\x00\x65\x00\x20\x00\x69\x00\x7a\x00\x20\x00\x74\x00\x72\x00\x65\ +\x00\x6e\x00\x75\x00\x74\x00\x6e\x00\x6f\x00\x67\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x25\x52\x65\x6d\x6f\x76\x65\x20\x70\x6f\x69\ +\x6e\x74\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x63\x75\x72\ +\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x52\x00\x6f\x00\ +\x74\x00\x69\x00\x72\x00\x61\x00\x6a\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\x10\x00\x53\x00\x6b\x00\x61\x00\ +\x6c\x00\x69\x00\x72\x00\x61\x00\x6a\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\x22\x00\x4f\x00\x64\x00\x61\x00\x62\ +\x00\x65\x00\x72\x00\x69\x00\x74\x00\x65\x00\x20\x00\x72\x00\x61\ +\x00\x76\x00\x6e\x00\x69\x00\x6e\x00\x75\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0c\x53\x65\x6c\x65\x63\x74\x20\x50\x6c\x61\x6e\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\ +\x00\x4f\x00\x64\x00\x61\x00\x62\x00\x65\x00\x72\x00\x69\x00\x74\ +\x00\x65\x00\x20\x00\x58\x00\x59\x00\x20\x00\x72\x00\x61\x00\x76\ +\x00\x6e\x00\x69\x00\x6e\x00\x75\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\ +\x28\x00\x4f\x00\x64\x00\x61\x00\x62\x00\x65\x00\x72\x00\x69\x00\ +\x74\x00\x65\x00\x20\x00\x58\x00\x5a\x00\x20\x00\x72\x00\x61\x00\ +\x76\x00\x6e\x00\x69\x00\x6e\x00\x75\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\x28\x00\x4f\x00\x64\x00\x61\x00\x62\x00\x65\x00\x72\x00\x69\ +\x00\x74\x00\x65\x00\x20\x00\x59\x00\x5a\x00\x20\x00\x72\x00\x61\ +\x00\x76\x00\x6e\x00\x69\x00\x6e\x00\x75\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\x3c\x00\x4f\x00\x64\x00\x61\x00\x62\x00\x65\x00\x72\x00\ +\x69\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x70\x00\x6f\x00\ +\x6d\x00\x69\x00\x63\x00\x61\x00\x6e\x00\x6a\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\x34\x00\x4f\x00\x64\x00\x61\x00\x62\x00\x65\x00\x72\x00\x69\ +\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x20\x00\x7a\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x6d\ +\x00\x61\x00\x6b\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\x3c\x00\x4f\x00\x64\x00\ +\x61\x00\x62\x00\x65\x00\x72\x00\x69\x00\x74\x00\x65\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x7a\x00\ +\x61\x00\x20\x00\x72\x00\x6f\x00\x74\x00\x69\x00\x72\x00\x61\x00\ +\x6e\x00\x6a\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\x3e\x00\x4f\x00\x64\ +\x00\x61\x00\x62\x00\x65\x00\x72\x00\x69\x00\x74\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x7a\ +\x00\x61\x00\x20\x00\x73\x00\x6b\x00\x61\x00\x6c\x00\x69\x00\x72\ +\x00\x61\x00\x6e\x00\x6a\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\x60\x00\x4f\ +\x00\x64\x00\x61\x00\x62\x00\x65\x00\x72\x00\x69\x00\x74\x00\x65\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\ +\x00\x7a\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x64\x00\x72\x00\x65\ +\x00\x7a\x00\x69\x00\x76\x00\x61\x00\x6e\x00\x6a\x00\x65\x00\x20\ +\x00\x2f\x00\x20\x00\x70\x00\x72\x00\x6f\x01\x61\x00\x69\x00\x72\ +\x00\x69\x00\x76\x00\x61\x00\x6e\x00\x6a\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\x40\x00\x4f\x00\x64\x00\x61\x00\x62\ +\x00\x65\x00\x72\x00\x69\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x7a\x00\x61\x00\x20\ +\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x67\x00\x72\x00\x61\x00\x64\ +\x00\x6e\x00\x6a\x00\x75\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\x5c\x00\x4f\ +\x00\x64\x00\x61\x00\x62\x00\x65\x00\x72\x00\x69\x00\x74\x00\x65\ +\x00\x20\x00\x72\x00\x61\x00\x76\x00\x6e\x00\x69\x00\x6e\x00\x69\ +\x00\x20\x00\x6f\x00\x6b\x00\x6f\x00\x6d\x00\x69\x00\x74\x00\x6f\ +\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x74\x00\x72\x00\x65\x00\x6e\ +\x00\x75\x00\x74\x00\x6e\x00\x6f\x00\x6d\x00\x20\x00\x70\x00\x72\ +\x00\x69\x00\x6b\x00\x61\x00\x7a\x00\x75\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2e\x53\x65\x6c\x65\x63\x74\x20\x70\x6c\x61\x6e\x65\ +\x20\x70\x65\x72\x70\x65\x6e\x64\x69\x63\x75\x6c\x61\x72\x20\x74\ +\x6f\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x76\x69\ +\x65\x77\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x2c\x00\x4b\x00\x72\x00\x69\x00\x76\x00\x75\x00\x6c\x00\x6a\ +\x00\x61\x00\x20\x00\x6a\x00\x65\x00\x20\x00\x7a\x00\x61\x00\x74\ +\x00\x76\x00\x6f\x00\x72\x00\x65\x00\x6e\x00\x61\x00\x20\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x17\x53\x70\x6c\x69\x6e\x65\x20\x68\ +\x61\x73\x20\x62\x65\x65\x6e\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\ +\x50\x00\x6f\x01\x0d\x00\x65\x00\x74\x00\x6e\x00\x69\x00\x20\x00\ +\x6b\x00\x75\x00\x74\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\x4f\x00\x76\x00\x61\ +\x00\x6a\x00\x20\x00\x74\x00\x69\x00\x70\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x61\x00\x20\x00\x6e\x00\x69\ +\x00\x6a\x00\x65\x00\x20\x00\x6d\x00\x6f\x00\x67\x00\x75\x01\x07\ +\x00\x65\x00\x20\x00\x75\x00\x72\x00\x65\x01\x11\x00\x69\x00\x76\ +\x00\x61\x00\x74\x00\x69\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\x38\x00\x55\x00\x6b\x00\x6c\x00\x6a\x00\x75\x01\x0d\x00\ +\x75\x00\x6a\x00\x65\x00\x20\x00\x67\x00\x72\x00\x61\x00\x64\x00\ +\x69\x00\x74\x00\x65\x00\x6c\x00\x6a\x00\x73\x00\x6b\x00\x69\x00\ +\x20\x00\x6e\x00\x61\x01\x0d\x00\x69\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x19\x54\x6f\x67\x67\x6c\x65\x73\x20\x43\x6f\x6e\ +\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x65\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x53\ +\x00\x6b\x00\x72\x00\x61\x00\x74\x00\x69\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\x00\x50\x00\x6f\x00\x6e\x00\x69\ +\x01\x61\x00\x74\x00\x69\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x6c\ +\x00\x6a\x00\x65\x00\x64\x00\x6e\x00\x6a\x00\x69\x00\x20\x00\x73\ +\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x28\ +\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x2b\x00\x20\x00\x5a\ +\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x55\x6e\x64\x6f\ +\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x73\x65\x67\x6d\x65\x6e\ +\x74\x20\x28\x43\x54\x52\x4c\x2b\x5a\x29\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x50\x00\x72\x00\x65\ +\x00\x67\x00\x6c\x00\x65\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x56\x69\x65\x77\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x94\x00\x42\x00\x72\x00\x69\x01\x61\x00\x65\ +\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x6c\x00\x6a\x00\x65\x00\x64\ +\x00\x6e\x00\x6a\x00\x69\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x76\x00\x65\ +\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x69\x00\x6a\x00\x65\x00\x20\ +\x00\x69\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x6f\x00\x76\x00\x6e\ +\x00\x6f\x00\x20\x00\x70\x00\x6f\x01\x0d\x00\x69\x00\x6e\x00\x6a\ +\x00\x65\x00\x20\x00\x6f\x00\x64\x00\x20\x00\x7a\x00\x61\x00\x64\ +\x00\x6e\x00\x6a\x00\x65\x00\x20\x00\x74\x00\x6f\x01\x0d\x00\x6b\ +\x00\x65\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\x01\x7d\x00\x69\x00\x63\x00\x61\x00\x20\x00\ +\x6a\x00\x65\x00\x20\x00\x7a\x00\x61\x00\x74\x00\x76\x00\x6f\x00\ +\x72\x00\x65\x00\x6e\x00\x61\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\x65\x00\x20\x00\x73\x00\x6c\x00\x6a\x00\x65\x00\ +\x64\x00\x65\x01\x07\x00\x65\x00\x20\x00\x74\x00\x6f\x01\x0d\x00\ +\x6b\x00\x65\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\x65\x00\x20\x00\x73\ +\x00\x6c\x00\x6a\x00\x65\x00\x64\x00\x65\x01\x07\x00\x65\x00\x20\ +\x00\x74\x00\x6f\x01\x0d\x00\x6b\x00\x65\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\x65\x00\x20\x00\x73\x00\x6c\x00\x6a\x00\x65\x00\x64\x00\ +\x65\x01\x07\x00\x65\x00\x20\x00\x74\x00\x6f\x01\x0d\x00\x6b\x00\ +\x65\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\x00\x61\x00\x6b\x00\x74\x00\x69\x00\x76\x00\ +\x6e\x00\x61\x00\x20\x00\x6e\x00\x61\x00\x72\x00\x65\x00\x64\x00\ +\x62\x00\x61\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\x2c\x00\x54\ +\x00\x72\x00\x61\x00\x6b\x00\x61\x00\x20\x00\x6e\x00\x61\x00\x63\ +\x00\x72\x00\x74\x00\x6e\x00\x69\x00\x68\x00\x20\x00\x6e\x00\x61\ +\x00\x72\x00\x65\x00\x64\x00\x62\x00\x69\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x11\x64\x72\x61\x66\x74\x20\x43\x6f\x6d\x6d\x61\x6e\ +\x64\x20\x42\x61\x72\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ \ -\x00\x00\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\x8d\ -\x00\ -\x00\x37\x4a\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\xca\x91\x64\x92\xf0\xeb\xcf\ -\x4a\x96\xe3\x6b\xee\x4d\x5a\x3a\x9d\xe9\x4c\x63\x49\xde\x5d\xad\ -\xbf\x5d\x7d\x2b\xcb\xee\xab\x51\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\xc6\x34\x1b\x74\x08\x83\xda\x3b\xc8\xf5\ -\x42\x2c\x65\xfb\x5d\x4c\x4f\x4f\x2f\x28\x0e\x79\x1f\xfe\x87\xfd\ -\x0e\x51\x0a\x6e\x96\x17\x02\xf7\x94\xeb\x24\x83\x60\xf4\x90\xfa\ -\x7d\xa2\x90\xb9\x3e\x6b\x7c\xfd\x61\x2e\x1b\x88\xe1\x88\x9c\x35\ -\x66\x0a\xd1\xca\x90\x3b\x10\x7c\x40\x84\x1a\xdb\x3b\xfa\x84\x47\ -\x44\x89\xb1\xe9\x44\xae\x20\x9e\x32\xbf\x90\x3b\x6a\xb7\x5c\x67\ -\x64\x2f\xc6\xfa\x62\x6c\x2f\xc0\x04\x15\xb4\x8f\x4e\x8e\x5c\x27\ -\xf9\x99\x34\x07\x84\xf6\x03\xd5\x3e\xde\x7f\xe9\x3a\xf6\xb7\x91\ -\xe9\xa4\x42\x5d\x27\x55\x5e\x67\xc9\x90\x32\x9f\x0f\xaf\xa8\x0a\ -\x89\x35\x46\x2a\x01\xc6\xb7\x3f\x44\x03\x2e\x94\xf3\x76\xa4\xff\ -\xb9\x8e\x6d\xad\xca\x0b\xf1\x98\xc7\x99\x67\xbe\xbf\xe1\xa3\x8f\ -\xa6\xc9\x8a\x2b\xe9\x93\x03\xec\x81\xa0\x86\xb5\x9e\xc5\x51\x97\ -\x88\xf6\xb1\xeb\xd8\x5f\x89\xed\x79\x0d\x15\x11\x11\x16\x7d\xca\ -\x4a\x12\x5e\xce\x94\x40\x15\x89\x32\x37\xe6\x9f\xe4\x3b\xc1\xe3\ -\x01\xd8\x3c\x79\x96\xf6\x7a\x6f\xdf\x2a\xa8\xa8\x57\x99\xaf\x72\ -\xee\xba\xf8\xf7\x12\xf5\xb8\x88\xb0\x42\x7c\xa0\x00\x69\x32\xef\ -\xb3\xaa\x49\xf3\x3d\x37\xd7\x79\x53\xfd\x57\xa7\x6d\xb6\x17\xa7\ -\x3a\xb2\x5e\x54\xe6\xce\x9a\x79\xbc\xaf\xce\x63\x81\x99\xcc\x98\ -\x4b\x9d\x09\xf3\xe7\x93\x09\x6c\x2d\x28\xb0\x30\xab\x2a\x52\x3e\ -\xe2\x2e\x09\x53\x98\x28\x32\x52\xa6\x61\xef\xfa\x20\xaf\xb3\x8a\ -\x16\x18\x58\x18\x50\x0a\x30\x24\xd5\x38\x24\x25\xac\x4c\xb5\x11\ -\x99\xd8\x07\xab\xf2\x53\x29\xda\x3d\x67\x1a\x26\x57\x7d\x11\xa4\ -\x77\xce\xa3\x2e\xcf\x01\xbf\xaf\x3b\x06\xd0\xe1\xe9\x8e\x2e\x74\ -\xcc\x9c\x16\xe7\xe1\x15\x1d\xd4\xcf\xec\x2a\xa0\x12\xc1\x9f\x0a\ -\x08\x82\x34\x17\x70\x1f\x79\x01\xe7\x92\xf8\x3a\x44\x10\x35\x13\ -\x87\x81\x08\x2e\x94\xc0\x4c\x86\xd8\x5c\xea\x18\xe2\xdd\x9f\x90\ -\xb7\x90\xc7\x43\x3d\x92\x29\x8e\x2e\x05\x21\xe7\xaf\x2f\x9a\x68\ -\xe7\x43\xcf\xb6\x47\x78\x30\xd0\x37\x80\x0e\x2b\x78\x17\x01\xe0\ -\x50\x14\x4b\x65\x5b\x10\x2e\x8d\xed\xd1\x90\x40\x13\x53\x98\x32\ -\x7d\x8d\x33\xd5\x9c\x21\x85\xbb\xd0\xad\x02\x08\xdf\x21\x0d\x43\ -\x3d\x10\x56\x0c\x6b\x87\x4c\x0c\x09\x29\x23\x26\xf3\xca\xe6\xce\ -\xc2\x0f\xac\xe2\x39\x2f\x16\x82\x30\xf5\x81\xf9\x64\x54\x72\xdf\ -\x74\xbc\x2e\x2a\x5c\x3f\xbf\xb7\x4c\x2f\x2c\x80\x2b\x5f\x12\x75\ -\xd6\x68\x95\x94\x78\xd6\x70\x7f\xd4\xb3\xd0\xf3\x56\x9d\x8a\xd6\ -\xf6\x05\xab\x60\xbe\xb2\x4f\xdc\x77\xd2\x25\x75\x61\x6d\x25\x20\ -\x2f\x12\x5b\x13\x08\xfe\xc3\x19\x41\x4f\x7a\x58\x2a\x22\xd5\xd3\ -\xba\xa7\x35\x4d\xab\x53\x56\xbb\x96\x1d\xdf\x00\x89\x3e\xe9\xe1\ -\x38\x4c\x31\x8d\x99\x9f\x21\xe9\xee\x0c\xfb\x2c\x28\xa4\x4b\x1c\ -\xde\x2f\xab\xce\x27\x21\x0b\xb9\x22\x1f\x72\x77\x68\x92\x20\x58\ -\x11\x34\xc0\x02\x6b\xca\x46\x3d\x9b\xa2\xca\xeb\xfb\xf6\x4d\xea\ -\xdc\x10\xe5\x05\x64\x2d\x43\xe6\xae\x27\xae\x93\x2c\xef\x19\x1b\ -\xc8\x77\x2f\xcc\x04\xec\xa4\x02\x2e\xe8\x6f\x9d\x83\xc3\x2a\x43\ -\x58\x66\xf9\x0d\xf5\xc5\xf5\xc9\x8a\x2b\xef\x27\x3c\x42\x9d\x81\ -\xc6\x16\xea\x90\x7e\x04\xd9\xf8\x0e\xd6\xdf\x0e\xac\x4a\x75\xcb\ -\xaf\x84\x76\x58\x7d\xaf\xf7\x67\x4e\x2e\xc2\x23\x1a\xc5\x51\x87\ -\xfe\x26\xe5\x39\x42\x53\x09\x36\x49\xb9\x70\xdc\x2a\x14\x0e\x93\ -\x5e\x5b\x34\xec\x1d\x9f\x9c\x9c\xec\xef\x1d\x15\xaa\x88\x6c\x92\ -\x65\xb1\x8b\xad\x10\x33\x69\xc2\x8f\x80\x30\x44\x46\x29\x19\x90\ -\xe6\x89\x48\x1d\xf6\x40\x04\x76\x35\x7b\x18\x23\x2c\x48\xb2\x4e\ -\x6b\x6e\x0d\x39\x81\x32\x34\xe0\xe1\xd8\x8c\x6c\x22\x43\x34\x7e\ -\xe1\x30\x26\x13\xba\x91\xf8\x05\x85\x84\xf5\x55\x80\x78\x0f\x11\ -\xec\x99\xff\xba\x37\xbd\x15\xc9\xe4\xb1\x83\x08\xe0\x14\x2d\xa3\ -\x8b\x99\x11\xc3\x80\x03\x0f\x48\x4c\x31\x32\x4d\xa8\xf9\x08\x4b\ -\x20\x0c\x60\x37\xd6\xae\x49\x6f\x6f\xae\xce\x02\x8c\xd1\xf5\xcb\ -\xff\xd1\x56\x96\x7f\x70\x94\x75\x78\x1a\x01\xf7\x93\x06\xdc\x71\ -\x82\x2a\xb0\xfb\xe5\x53\xd4\x8a\x09\xea\xbc\xc2\x5c\xef\x20\x41\ -\x5d\x82\xda\x73\xc3\xa5\x45\x25\x49\x69\x93\x3c\xdb\x37\x33\x4d\ -\x01\xd7\x5e\x32\x4d\x1d\xb4\x66\xe7\xa9\xd6\xf6\x12\xd4\x55\x40\ -\xea\x8a\x88\x5e\xa9\x6c\x01\x26\x3d\xa5\x4e\x58\x3d\x3f\x2c\x47\ -\xe4\xad\x79\x09\x50\x1e\xe3\xb8\x2e\x8e\x4f\x16\x8f\xe3\xac\x44\ -\x0e\x88\x77\x53\x5b\x22\xeb\x8e\xf9\x8b\xf4\x4c\x70\x51\xbd\x24\ -\x25\x75\x72\xcc\x8c\x40\x5d\xc5\xea\x9c\x20\x9d\xc8\xfc\x43\x43\ -\xce\xfe\x52\xa8\x4b\x6c\xc5\x4c\xfc\xd5\xf1\x34\x77\x1b\x22\xd1\ -\xa8\xcb\x00\x9f\xc2\x7a\x20\x6b\x76\xb0\x96\x84\xd2\xe2\xf0\xd5\ -\xba\x1f\x71\x5b\x8f\xdb\xfd\x8d\xe0\x76\xce\x9e\xd5\x82\xb8\x9d\ -\xa0\x76\x80\xe1\x76\xa4\xf7\xf4\x48\x5a\x1d\x25\xdb\x28\x39\xec\ -\x02\xaf\xe3\x1b\xc4\x6f\xe2\xd9\xad\x41\x36\x51\xf7\x08\xda\x7a\ -\xd0\x1e\x6e\x04\xb4\x73\xca\xbd\x59\xa0\x35\xc2\x2d\x6e\x7b\x66\ -\xab\x70\x88\x99\x32\x8c\x9f\x71\xf6\x5c\x4b\xf0\x51\x37\xe4\xde\ -\x8d\x44\x4f\xba\xa4\x4f\x99\xd9\x23\x1c\x52\xa8\x21\x30\x7a\xf6\ -\x54\x17\x25\xdb\xc3\xf2\xb3\xc4\x92\x6d\x61\x59\x2a\x2c\x52\x8d\ -\x8f\x78\xae\xc3\xf3\x8b\x8d\xe0\xf9\xe8\x76\x93\x70\x9a\x78\x7b\ -\x82\x47\x06\xd9\x12\xe4\xe8\xbc\x48\x44\x96\x8d\x7f\x72\x20\xa7\ -\x7e\xc2\x53\xcd\x43\x40\x6f\xcc\x93\x07\xe6\x11\x0b\x83\x79\x7d\ -\xa7\x4f\xa1\x36\xc4\x63\x64\xf6\x4f\xc5\x2e\xea\x82\xbb\x22\x7c\ -\x63\xbb\x75\x75\x2d\x25\x14\xd6\x92\x86\x63\x44\x7c\x6a\x36\xcf\ -\x37\x11\x0f\xe6\x65\x5c\x3a\x05\x63\xf3\x16\x23\xa3\xaf\x95\x7f\ -\x34\xba\x1f\xe3\xa2\x3e\x2e\x8e\x36\x12\x17\x2f\x57\x8f\x0b\xfd\ -\x86\x28\x8d\x87\x9e\x20\xc4\xc3\x7e\x02\x7d\x78\xe2\x3a\x87\x6b\ -\xf8\xeb\x8d\x78\xca\x3c\xea\x13\xf8\x99\x06\x8d\x01\xd7\x90\x0a\ -\xbd\xab\xf4\x86\x0c\xb1\x20\xbb\x49\x84\x79\x58\xbf\x1c\xba\xd1\ -\xef\x93\x86\x01\xd4\x57\xcd\xe6\x1a\xbb\x3e\xd3\x91\xfe\x37\x98\ -\x84\xd2\x53\x01\x5b\x81\xb7\x76\x45\xa6\xf0\x11\xdf\x75\xf8\x3e\ -\xde\x04\xbe\xd7\x42\x77\x25\xeb\x63\x00\x77\x0a\xe2\xdc\xdb\xcd\ -\x1e\x50\xf1\x2c\xeb\x27\x9b\xac\xc9\x36\xe6\x81\x6f\xb6\x41\xcd\ -\x80\x4d\x20\x39\x39\x30\x82\x0e\x2e\x26\x66\x81\xd2\x54\x23\x8a\ -\x88\x9c\xf2\xc6\x62\x23\xfb\x22\xa0\xed\x61\x62\xbb\xd8\x59\x90\ -\x95\x1b\xb7\xd2\xb9\x97\xeb\x25\x4f\xbe\x74\xbe\xbf\xbb\xbd\x93\ -\x2f\x56\x53\xae\x40\xfd\xd3\xcf\xc0\xa4\x33\x2a\xd4\x44\x0f\xf7\ -\x34\xcc\x1c\x52\x7b\xe7\xa7\x61\xcc\x26\x85\xa8\x24\xfc\x8e\x69\ -\x2e\x24\xfc\xaa\xf5\x30\x1a\x38\x83\x39\x30\x52\x9a\x04\x01\x97\ -\xb6\xbf\xaa\xd3\xd3\xf7\x13\x89\xae\x63\x1a\x97\x4e\x3a\x7a\x1f\ -\xfb\x3d\xd0\x91\xe9\x49\x67\xea\xd6\xf9\xe1\xec\x9d\xf3\xfd\xb5\ -\xb6\xce\x61\x98\xf1\xd1\x12\xbe\x5e\xf5\xe4\xd1\x3a\xdb\x53\x0b\ -\x9f\x3d\xd2\x69\x6b\xfa\x61\xa3\x3f\xff\x7c\x8f\xfc\xd5\x7f\x3c\ -\xdf\xf3\x78\xbe\xe7\xb6\xad\xba\xbf\xb4\xe5\x60\x39\xda\xf2\xf9\ -\xfc\xf5\xed\xd3\x96\xe3\x07\x47\x5b\x4e\x1e\x14\x6d\x59\x62\x17\ -\xe2\x70\xf5\x35\x68\xc6\x6e\x33\x16\x04\xca\xa1\x27\x50\x1d\x99\ -\x02\xac\x6e\x63\x79\x23\xfb\x0b\x96\x5e\x69\xd0\x1b\x13\xb6\x52\ -\x81\x71\x0f\x5b\x65\xf7\x73\x09\xda\x76\x2e\x2b\x70\x4f\x7d\xbc\ -\x98\x7a\x29\xf3\x9c\x96\xbb\xea\x28\x67\xc6\x36\xbf\x5b\x19\x05\ -\xae\x59\xcd\x5b\x4b\x30\xcc\x22\xb9\xb4\xbc\x72\xbf\xc2\x2b\x53\ -\x4a\x79\x58\xa1\x94\x05\x36\x59\x36\xa5\xc0\x21\x33\x27\xe5\x3c\ -\x99\x73\xa3\x4d\x4e\xe9\xea\x6a\x93\xcd\x59\xe3\xb8\x81\x92\x34\ -\x71\xd6\xd8\xdb\x6b\x38\x7a\xe4\x80\x8e\x22\x3c\xe8\xc5\xcc\xd3\ -\x8e\x6a\xff\xf7\xc5\x5c\x5f\x0a\x1e\x7d\xa2\x11\xe9\xf0\x58\x78\ -\xc0\x83\x4a\xa3\xf4\x37\x40\xb1\x54\x3c\x4a\x34\x4a\x63\x49\xbe\ -\x25\xb1\x32\xf7\x9d\x50\xee\x44\x4c\xf6\x69\x90\x7e\x1e\x23\x45\ -\x98\x2f\xdb\xf6\xb3\x20\x78\x1a\xb6\x61\x27\x71\x15\xf6\x61\xca\ -\x20\xc1\xd1\x02\x92\xef\x84\x9a\x81\x76\x9c\xe9\x30\x0e\x28\xeb\ -\x9d\x6d\x48\xe9\x78\x4e\xad\x31\x55\x8b\xa7\x59\xa5\xa5\x25\x96\ -\xcb\xf5\xcd\xb2\xc7\x1a\xeb\xfd\x33\xe9\xdc\x8a\x29\x69\x8e\xaf\ -\xb7\x25\xeb\xdd\x8e\x31\xb6\xe8\x99\x62\xcc\xa4\x77\x7d\x63\x8a\ -\x0d\xe6\xeb\x35\x41\xa4\x89\x01\x69\xa2\xc5\xe3\x8c\x11\x13\x03\ -\xfa\xda\x75\x62\xda\xde\xf9\x1f\xf8\xa7\x2a\x7c\ -\x00\x00\x0e\x86\ -\x00\ -\x00\x94\xbb\x78\x9c\xed\x1d\xfd\x73\xda\xb8\xf2\xf7\xfc\x15\x9a\ -\xfc\xd0\xe9\x9b\xc9\x85\x90\xe6\xa3\x69\x09\x37\xfd\x6e\x67\x7a\ -\x77\xbd\x92\xf6\xde\xbd\x5f\x6e\x84\x2d\x40\xaf\xc6\xa2\x92\x08\ -\xe1\xe6\xfd\xf1\x6f\x57\x92\xc1\x36\xc6\x04\x04\x98\x5c\xe9\x74\ -\x26\x58\xb2\x57\xab\xd5\x7e\x69\x77\x2d\x37\x7e\xbe\xeb\x47\xe4\ -\x96\x49\xc5\x45\x7c\x7d\x58\x3f\x3e\x39\x24\x2c\x0e\x44\xc8\xe3\ -\xee\xf5\xe1\x97\x9b\xb7\x3f\x3d\x3d\xfc\xb9\x79\xd0\x18\xf2\xe9\ -\x4d\x67\x70\x53\xf3\x80\x34\x82\x88\x2a\xd5\x7c\x37\xe4\xcf\x9e\ -\xbd\xe6\x34\x12\x5d\xf8\x1b\x75\x5b\x4c\x6b\x78\x58\xbd\x96\xb4\ -\xa3\x1b\x35\x7b\x13\xdc\x3d\xe2\x61\x97\x69\x62\xae\xaf\x0f\x7f\ -\xff\xc3\x5c\x1e\x92\x98\xf6\xd9\xf5\x61\x29\x10\x1c\x8c\x34\x06\ -\x52\x0c\x98\xd4\x63\xf7\x44\x97\x89\x3e\xd3\x72\x6c\x3a\x49\x43\ -\xb2\x40\x9b\x5f\xa4\x71\xd7\x3c\x69\xd4\xee\xdc\xc5\x18\x2f\xc6\ -\xee\x02\x50\xd0\xbd\xe6\xf9\x15\x34\xd9\x9f\xb6\xb9\xc7\x78\xb7\ -\xa7\x9b\x17\xa7\x57\x8d\x9a\xfb\x6d\x60\xd6\x12\xa0\x8d\x5a\x32\ -\x78\x11\x26\x23\x1e\x87\x62\x74\xc3\x75\xc4\x1c\x32\x4a\x4b\x40\ -\xbe\xf9\x8e\xc5\x4c\xd2\x88\x28\x37\x99\x46\xcd\x75\xcc\x82\x8c\ -\xe8\x58\x0c\xa7\xc4\xf9\xfa\x52\xdc\x7d\x34\x4d\x0e\x62\x6e\x48\ -\x35\xa0\x01\x00\x3a\x74\x13\x88\x87\xfd\x36\x93\xcd\x8b\x46\xcd\ -\xfd\xb2\xe8\xa7\x47\x98\x01\xd1\xa7\xb2\xcb\xe3\x1c\x84\xab\x52\ -\x08\x5c\xb3\xfe\x94\x92\xe9\xc5\x7c\x27\xc5\x70\x00\x38\x27\xcb\ -\xd9\x4d\xae\xed\xed\x33\x83\xeb\x29\xb1\x0a\xe8\x65\x16\x9d\xb4\ -\x0a\xa8\x36\x8b\x54\x29\xed\xdc\x68\xc0\xb8\x9a\x07\x34\xb2\xad\ -\x7f\x9d\x4e\x07\x9e\xce\xa8\x00\xd0\xfb\x19\x40\x3d\x21\xf9\xdf\ -\x22\xd6\x13\x50\xf5\xab\x09\xac\x3c\xb4\x59\x22\x7d\xa4\x6d\x16\ -\x25\xa0\x22\xbc\xc8\x3e\x5f\x40\x26\x76\xa7\x33\x37\x4c\x48\x65\ -\x49\xc4\x63\xcd\x64\x87\x06\x8c\xf4\x45\xc8\x72\x84\x2a\xa6\x96\ -\x6d\xb4\x98\xa5\x50\xaf\x65\x71\x5f\x30\x15\x23\xad\x9f\x24\xeb\ -\xbc\x12\xfd\xb6\x48\xaf\x3b\x76\x0c\xa0\x23\xc0\x8e\xb6\xb8\xfb\ -\xeb\xac\x7c\x82\x42\x44\x37\x7c\x50\x3c\xc7\x9b\x1e\x57\x04\xfe\ -\xeb\x1e\x23\x5f\x3e\x98\x29\xc2\x8c\xc9\xa8\xc7\x83\x9e\x69\xb4\ -\x44\x80\xf6\x61\xc4\xc8\x88\x47\x11\x19\x09\xf9\xed\x19\xb9\x01\ -\xa8\x6d\x2a\xed\x13\xa6\x7d\x10\x21\x91\x68\x94\xf0\x56\x22\x91\ -\x08\x8f\xc2\xd5\x80\x4a\xaa\x19\xd1\xf6\xc1\x23\x1c\x03\x40\x6a\ -\xaa\xbe\x65\xe1\x0c\x15\x33\x23\xbf\x95\x8c\xbd\x7a\xf1\x9a\xdc\ -\xc0\x1d\xb7\x9c\x8d\x88\x1a\x2b\xa0\x18\xe9\x08\x69\x46\xe1\x5a\ -\xe1\xbd\xd2\xae\x10\x0d\x34\xe8\xcd\x7b\x2f\xcf\x0c\x95\x90\xa0\ -\x6f\x62\xd4\x75\x44\xe9\x10\x70\xbf\x3e\x3c\xc9\x91\x2c\x70\xb0\ -\xbf\xf0\x5f\x0c\x27\x04\x3e\x63\x7d\xa2\xba\xb7\x78\x28\x18\xa8\ -\x96\xe8\xf8\x7b\x8f\x96\xe3\xab\xfb\xb0\xfc\x94\x1f\xec\xea\x14\ -\xd1\x71\xde\x70\xb5\xfc\x78\x7e\x08\xb8\xd5\xf6\xc1\x60\xa1\xec\ -\x35\x6a\x56\x0d\x4d\x74\x54\xa6\xdb\x5b\x63\x9d\xfa\x29\xac\xd3\ -\x55\xf5\x15\xeb\xd0\x61\x04\xa0\x45\x24\x0a\x57\x70\xe3\x8a\x0a\ -\xc6\x7d\x39\xd4\x5a\xc4\x05\xba\x0a\xfa\xda\xb6\x6f\x65\x65\x85\ -\x5a\x21\x4c\x4f\xd2\xe8\x82\x18\x54\x83\x68\xff\x17\xdc\x88\xbc\ -\x19\x2b\xe3\x99\xdc\xb8\x06\x5c\x5e\x08\xb1\x2d\xc7\xa5\x92\x85\ -\xe8\xec\xe0\x9f\x6c\x47\x17\xb4\x55\x8c\x5d\xf6\x47\xb6\xb3\x1d\ -\x0d\x19\xf6\x99\xbf\x59\x86\x9e\x19\x64\xed\xea\xca\xb1\xc3\x6e\ -\x6a\x2b\x6f\xee\x2b\x12\xa0\x05\xf6\x70\xae\x00\xb5\x62\x3a\xd8\ -\x75\xe9\x59\xa4\x1d\x96\x97\x1f\x85\xb3\x56\x63\xf0\x25\xa2\xbd\ -\x00\x65\xd0\x77\xb4\x40\x02\xfd\x78\x42\xb4\xaa\xd7\xfc\x4a\xc4\ -\xf0\x6b\x68\xdc\xb1\x9d\x17\xa6\x27\xeb\xf1\x9c\x67\x85\xca\x19\ -\x24\xd2\x66\x70\x2f\x09\x25\x1d\xc5\xce\xe1\xe5\x48\x95\x14\x89\ -\xd0\xf1\x3d\xde\x8e\xdc\x9d\x9d\xcd\x17\xbc\xfa\xe9\x79\x89\xe8\ -\x9d\x9e\x9f\x57\x66\xbd\xa6\xb4\xfa\xf1\x84\x70\x01\x7f\x2e\x74\ -\x05\x23\x0e\xde\x11\x46\x61\x2a\x90\xc1\xd6\x80\xc7\x45\xdb\x56\ -\x05\xed\xed\x69\xd8\xa2\x78\x66\xf7\x35\x63\x93\x09\xae\xcf\x15\ -\xbc\xa5\xc0\xe7\xb9\x91\x5d\xc0\xe6\x34\x13\xba\x59\x0a\xea\x12\ -\x2c\x9f\x5a\xb4\x07\xca\xea\x1b\xde\x5f\x3d\xf1\xdc\x5f\x9d\x78\ -\x99\x36\xca\x8d\xd2\xde\xc9\x48\xd0\xb9\x8f\x3d\x63\x64\x32\x41\ -\x34\x5a\x30\x47\xde\xe1\x4c\x92\x6f\x6c\xbc\x95\xb8\x0a\x0c\x18\ -\x24\x08\xec\x2a\xeb\xfb\x05\x37\x54\x8f\xe3\x60\x55\xc5\x56\x02\ -\x2d\xa3\xea\x46\xa7\x91\xd7\xd4\x57\x10\x23\x8c\xe0\x03\xff\xe6\ -\xb5\x48\xcb\x34\x2f\x90\x15\xb8\x9b\xc1\xcd\xe8\x76\xe4\xb8\x87\ -\x81\x09\x68\xfe\xae\x9f\x3d\x7b\x3f\x81\xd8\xa8\x99\xc6\xa5\x59\ -\x55\xf1\xbf\xd9\x7b\x1e\xeb\xf9\xac\x8a\x77\xe4\xc8\x69\xb3\x2a\ -\x67\xd9\xfc\xca\xa4\xd7\xe5\x56\x4e\x4f\x32\x69\x96\x29\x5a\x79\ -\x80\x73\x54\x96\x25\xdd\x5a\x7d\x99\xd3\xba\xcf\xb6\x7c\x57\x35\ -\xee\x85\x9f\xc6\x55\x6e\x6e\x6b\xd0\xb4\xc1\x50\x4a\x60\xd9\x0f\ -\x71\xc8\xee\x8a\xdd\x97\xfa\x56\xdc\x17\x98\x0d\xce\x6a\xaf\xc1\ -\x6d\xeb\x5e\x83\x4f\x1b\xd6\xac\xc1\xcb\x65\x6f\xaf\xc1\xd7\xae\ -\xc1\x57\xcd\x4c\xbc\x88\xf4\xce\x2a\xf0\x4b\x3f\x05\x4e\xed\xd4\ -\xb6\xa2\xbf\xb7\xb3\xfd\x84\xd9\x18\x41\xdf\xab\xef\xbd\xfa\xde\ -\xa5\xac\x6a\x3d\xcd\x45\xab\xd4\x81\xf8\x6d\xfb\x5d\xb8\xd6\x54\ -\xdd\x98\x47\x2a\xd0\x66\x1f\x79\xcc\xde\x84\x5c\xcf\x68\x33\x0c\ -\x19\x31\xe8\xf0\xc9\x0e\x15\x05\xb4\xa7\xb3\x35\xf1\xb5\x4c\xe0\ -\x3a\x29\x0e\x5b\x5d\xe3\xdd\x8f\xe4\x5b\x89\x3d\xa4\x67\x66\x26\ -\x6d\x57\x78\x37\x75\x60\xd5\x92\x78\x76\x7f\x41\x9c\x1a\xe2\x1e\ -\x0b\xbe\x15\x1a\x62\xec\xf0\x8a\x07\x1b\x08\xc0\xb6\xc8\xbe\x1d\ -\x02\x18\x92\x11\x8d\x35\xd1\x62\x52\x4a\x64\x12\x07\xb5\x54\xac\ -\x58\x8a\xbe\xe9\x70\xc5\x48\x84\xaa\x84\xe5\x37\xc1\xcd\x2d\x7a\ -\x0b\x38\x58\xf3\xee\x72\x44\x34\x0e\x53\xb1\x6b\x1a\x48\xa1\x14\ -\x51\x4c\x61\xf1\xa7\x47\xec\x7a\x99\xac\x26\x20\x25\x62\x76\xc7\ -\x77\xd6\xd4\x57\xcd\xe6\x97\x9b\x60\x73\x9f\x10\xed\x87\x8e\xe3\ -\x72\x45\x0c\x38\x16\x1e\x01\x3b\x0d\xc6\xa9\xe2\xb9\x36\x03\x27\ -\x74\xa0\x13\x8e\x02\x2f\xb7\x0f\xac\x76\x44\x04\x70\xbb\x1c\x71\ -\xc5\x92\x26\x65\xef\xa7\xd1\x88\x8e\x81\xf3\x34\x95\x58\xea\x48\ -\x62\xf1\xd3\x04\xe2\x26\x44\xe1\x5d\x24\xda\x34\x22\x6b\x18\xc3\ -\x51\x20\x37\x4c\x1b\xe8\xd7\x04\x45\x0e\x80\xcd\xcf\xcd\xda\x8c\ -\xc1\xb8\xbf\xc3\x95\x80\x55\xcb\x4f\xfd\xe9\x46\x04\xc8\x23\x67\ -\xff\xab\x90\x7d\x1a\x45\xe3\x23\x02\x84\x64\xd2\xb0\x21\xa6\x3a\ -\x5c\xce\xf0\xc8\x19\x8b\x01\x67\x8a\x20\x72\x8a\x45\xd0\xce\xc2\ -\x63\x92\x88\x9e\x18\x18\xdf\x27\x2d\x81\xf8\x4c\x9b\x82\x64\x25\ -\x39\xff\x44\x10\x93\xa7\x41\xae\x94\x66\x34\xf4\xc8\xf2\x97\xd8\ -\x16\x33\x48\x16\x81\xcc\xe4\xb6\x63\x4c\x0c\x16\x2f\x01\x89\xdf\ -\x92\xf4\xeb\x5e\x26\x8a\x64\xe2\x7c\x23\x22\xf1\x74\xbd\x36\xc5\ -\xb8\x50\x69\xeb\x80\x41\x6a\x70\xa7\xc0\x59\x50\x3a\x25\x2f\xae\ -\xa2\x05\xab\x5b\xa0\xd5\x08\x49\x2c\x74\xea\xf9\xb6\x0d\x70\x0f\ -\xcc\x33\x71\x34\x86\x07\x58\x4c\x00\x75\xf0\x73\xa0\xe9\xd5\xcd\ -\xe7\x8f\x1b\x11\x8a\x17\x59\xbc\x13\x74\x1f\x87\x5c\xd1\x76\x34\ -\x8d\xba\x63\xc0\xe6\x5f\x0f\xd9\x04\xd9\x05\x6a\xed\x70\xb8\x7d\ -\xed\x41\xdf\xf2\x1d\xee\x3e\xe8\xbb\xee\xa0\x6f\xdd\x33\x40\x2a\ -\x69\xc8\x87\x6a\x52\x69\x6a\x74\x01\xc8\xa4\x1a\xb0\x80\x83\x27\ -\x38\x10\x40\x48\x75\x8c\x6f\x22\x61\xf3\x89\xad\xe3\x11\x04\x44\ -\x55\xd3\x38\x60\xe4\x31\x8f\x3b\x3c\x06\xbc\x3d\x04\x75\x41\x6e\ -\x51\xd2\xb8\x5b\x45\x38\x67\x41\x85\xd4\x02\x56\x57\xc3\x4e\x87\ -\xe7\x23\xc5\x6e\x0e\x83\xbb\xed\x98\x7d\xa0\xde\x67\x4b\xbc\x07\ -\xaa\x7d\x36\xfd\x26\xc8\x12\x31\xcb\x25\xec\xbd\xc7\x0b\x5f\x45\ -\xf6\x7e\x22\x97\xc6\x68\x83\x09\x27\x22\x08\x86\x92\xd0\x2e\x45\ -\xd7\x35\xe5\xd8\xea\x1e\x98\x4d\x89\x41\x15\x1a\x1b\xc7\x97\xc7\ -\x21\x0f\x28\x3a\xb9\x36\x33\x41\x44\x87\x30\x98\x95\x47\x0c\x63\ -\x51\x21\x00\xbd\xe3\xfd\x61\xff\x21\x5b\x6d\x98\xc2\x8f\x64\xb2\ -\xf7\x06\x7b\x3e\xa5\x37\x91\xa5\xf5\xd8\x20\xff\x62\x85\x2b\x2f\ -\xcc\x68\x99\xdb\xcc\x84\xff\x79\xc8\x24\x48\x7b\xda\x9c\x6f\x42\ -\xd4\xe7\x20\xb2\x83\x46\xba\xbc\x08\xc1\x69\xab\xe2\x7c\xee\xd5\ -\xd5\xd5\xea\x19\xdd\xb2\x32\xe5\xb3\xed\x24\x8a\xad\x1a\x7b\x63\ -\x17\xe6\x81\xea\xb2\x0d\x3b\x00\x9b\x09\x81\x79\x14\x9d\x15\xd9\ -\xff\x4c\xe0\x0a\x64\x9a\xd9\x8c\x48\x07\x2e\x41\xd4\xa7\xb9\x91\ -\x63\xf2\x5b\x12\x46\x36\x61\xaf\x71\xfe\x89\x11\x07\x2c\xe5\x32\ -\xb9\xd1\x25\x54\xc2\x5b\x1c\x6b\xf2\x5e\xcd\xd8\x3f\x61\xb3\x04\ -\xab\x23\x29\xf6\xa1\xde\xf9\x6c\xee\x7b\x44\x83\xef\x2b\xcf\x78\ -\x26\x01\x3a\xb0\x83\x88\xc6\xbb\x79\x46\x43\xf9\x0c\x97\x60\x45\ -\xc7\xf6\x7f\x7c\xda\x55\x5e\xf4\x2b\x52\xf9\x55\x14\x2f\xe0\x76\ -\x4a\x64\xfe\xfd\x27\x79\x7c\x23\x06\x85\xa1\x86\x2d\x61\xf0\x1f\ -\xf2\xf8\xad\x04\xd9\xaa\x10\x87\x3f\x01\x87\x16\x38\x7a\x5e\x28\ -\x54\xad\x92\xea\x9b\x49\xdf\x7a\x14\xd8\x80\xe9\x9d\x98\x5c\x4a\ -\xba\x92\x87\x19\xfb\x69\x62\xe3\x2e\x96\xbe\x09\xfb\xf9\x45\x31\ -\x33\xe8\x43\xde\x39\x5b\xfc\x77\x53\xef\xad\x3d\xd2\x5d\x1e\x78\ -\xdd\x6f\x9c\xd7\x1e\xe9\x5e\x50\x9a\x31\xbf\xa8\x01\x45\xd9\x1d\ -\x17\x56\x81\xf3\xf1\x5a\x0c\xdb\x11\x9b\xb7\x4f\x0d\x4d\x6f\xb2\ -\x5b\xf5\x7a\xe1\x9d\x25\x93\x24\x6d\xa6\x47\x0c\xd4\x15\xa3\x41\ -\xcf\x6a\x32\x2c\x66\x5a\xef\x3b\xb7\x16\xf1\x66\xfd\xf8\x24\xfb\ -\xaf\x51\x73\x3d\x9b\x56\x34\xad\x64\x45\xff\x31\xfa\xe6\x1e\x32\ -\xb0\x60\x6b\x59\x12\xb0\xe1\xb1\x61\x02\x45\xd8\x2d\x5b\xa2\x2a\ -\x74\x7b\x91\x1a\x8f\xa8\x39\xce\xce\x4e\x2e\xc9\x6b\xdb\x23\x1d\ -\x60\x2b\x0d\x16\x51\x1e\x93\x16\xa6\xb3\x3a\x63\x02\xdb\x63\x46\ -\x7a\x62\x44\xfa\x34\x1e\x13\xf5\x7d\x48\x25\x53\x13\x71\xe9\x27\ -\x60\x3c\xb2\xde\x25\x71\x9f\xfa\xc9\x56\xe2\x3e\x28\x1b\x6f\xec\ -\x1a\x3f\x50\xc9\xd8\xb4\xeb\xe9\xf9\x82\xfa\x82\x72\x8e\xb9\x32\ -\xf8\x01\x0f\xc2\x8b\x31\xa9\x2a\x81\x1b\xb1\x94\x94\x44\x20\x8c\ -\x85\xaf\x1c\x54\x2c\x8b\xe5\x76\xc8\x45\x4d\x5b\xe0\x0a\xdc\xd7\ -\xdd\xb8\x28\x77\x37\xea\x17\x97\x97\x97\xa7\xf5\x73\x1f\xa7\x63\ -\x79\x73\x39\x8d\x5e\x87\xb0\x20\x7d\x1a\x99\xc3\x10\x79\xb2\x4c\ -\x81\x10\x32\xe4\x31\xd5\x0c\x0b\xcb\x98\x34\xce\x9c\x22\x8f\x31\ -\xb8\xce\xee\x8e\xc9\x13\x72\x4d\x4e\xc0\xfc\xd5\x3d\x52\xdf\x25\ -\xea\xe2\x62\x2b\xda\x62\xc2\x8b\x0f\x56\x5b\x2c\xeb\xb7\x97\xdb\ -\x99\xbd\xdf\xbe\x76\xbf\x7d\x55\x7d\xf9\x9a\xf7\x59\x6c\x2a\xee\ -\x1f\x80\xc6\x2c\xdf\x9c\x94\xe6\x99\x9e\x6e\x26\xcb\xb4\x15\xf5\ -\x11\xf2\xfe\xa7\x07\xaf\x41\x36\xed\x6f\x2c\x51\x55\x5a\x24\x40\ -\x0b\x2a\xbc\xe6\xca\xcf\x8d\x88\xc0\x68\xc5\xc1\x46\x23\xee\xe5\ -\xba\xb6\x5c\xf4\xf7\xba\xd6\x47\xd7\xae\x12\x60\xf8\x01\xdc\xba\ -\xe9\x5b\x92\x46\x39\xe2\x4b\x66\x21\xe6\x23\x3b\xc3\x38\xb0\x0e\ -\x9c\xee\x51\x6d\xde\x3d\xa3\x44\x27\x22\x72\x7c\xf0\x15\xef\x76\ -\x45\x54\x21\xef\x74\x60\xa7\x08\xed\xb8\x39\x8c\x60\xbf\x68\x92\ -\xb2\x16\x60\xb2\xc5\xd4\x92\x99\xca\x2a\xaa\x88\x02\xc4\x3c\xf6\ -\x8c\x25\xa5\x82\xb5\x55\x18\x3e\xee\x02\x3b\x68\x96\x27\x91\x8b\ -\xcb\x80\xcb\x5a\x5f\x53\xc4\xa6\x24\x2e\x04\xa3\x9c\x6f\x3f\x2e\ -\xa4\xa7\x2a\x6f\x6f\x8b\x8a\x6c\xd1\x85\x9f\x29\x5a\x35\xfc\x94\ -\x24\x82\xf1\x0e\x62\x75\x41\x75\x46\xa9\xfc\xe8\xd4\xbd\x51\xda\ -\xb6\x51\x5a\x90\xb4\xfb\x27\x98\xa5\x84\xff\xed\x78\xa6\x3c\x0f\ -\x45\x41\x99\x17\x8d\xc3\xc9\x3e\x67\x23\x11\xfa\x93\xe3\xd3\x0a\ -\x22\xf4\x38\xbd\x44\xd0\xf7\xaa\xb8\x70\x5b\xe0\xf9\x1d\x82\x55\ -\xd3\x61\x19\x5d\xdc\x01\x8c\xaa\xd3\xc4\xe5\x61\xc6\xbd\x26\x5e\ -\x8b\x26\x5e\x78\x2a\x89\x4f\xce\x71\xf6\x4c\x12\xe4\x28\xf3\xec\ -\xe4\x4b\x30\xf6\x7b\x33\x45\xfa\xee\xf8\xe0\x03\xe0\x4b\x63\x74\ -\xa7\x69\xea\x49\x35\x0c\x7a\xe8\x57\x3f\xfa\x3e\x14\xfa\xf9\x0b\ -\xc9\x69\x64\x7f\x62\x65\x46\x32\x90\xd2\xe3\x28\x7f\xab\xa2\xb1\ -\x4a\xee\x74\x2d\x4c\xf2\x8e\xfd\x79\x00\xf8\xd8\x5f\x7d\x11\x8b\ -\xe4\x36\x44\x92\x74\x68\x9f\x47\xe3\xa2\x71\x8f\xde\xb3\xe8\x96\ -\xe1\xb7\x93\x8e\xa6\xc0\xed\x43\x06\x55\xb3\x5f\xa0\x16\x99\x83\ -\x82\xe7\x9f\xbd\x14\x51\x68\xaf\x37\xf2\x2a\x25\x8e\xb1\x3a\x60\ -\x1a\xf1\x6e\x0c\xab\x31\x03\x1d\x84\x1c\xe5\xeb\x05\xf6\x7f\x46\ -\x1e\xfe\xdf\xe4\xf2\x46\x52\x0e\xac\xd3\x9d\xb6\x7c\x7d\xc5\x30\ -\x66\x0e\x68\x30\xbd\x3c\x0e\x4b\x1a\x15\xab\xb1\xf6\x26\xa5\xd0\ -\xa4\xd4\xfd\x4c\x4a\x7d\xd5\x33\x40\xa7\x36\xa5\x3f\x88\xf0\x33\ -\x52\xaa\xc7\x58\x85\x86\x65\xc1\x44\xf6\x96\x65\x2d\x96\xe5\x2d\ -\x8f\xd8\xab\x9e\x10\xa0\x63\x67\x8c\x4b\x07\xfa\x02\xdb\xb7\xc8\ -\xbf\xe7\xf1\xb2\xfe\xfd\x93\x93\x72\x02\x79\xd1\x67\xf9\x3c\x62\ -\x98\xe7\x7e\x77\xb6\x91\x29\x19\x0c\x30\x4c\x84\x45\x39\xd4\x9c\ -\x7f\xef\x2a\x08\x97\x14\x10\x3f\xa5\x69\xb1\xda\x2b\xcd\x39\x4a\ -\x73\x89\xf3\xb2\x0a\x94\xa6\x7f\x72\xeb\x11\xed\x0f\x9e\x93\x8f\ -\x8c\x86\xa0\xd0\xa8\x94\x62\x64\xdd\x89\x5d\x2c\x94\x5f\x5b\x99\ -\x3c\xef\xdb\x6f\x1a\xed\x2a\x57\xfa\x95\x68\xbf\x16\x9a\x9c\x57\ -\x57\x21\x8e\xc3\x5f\x56\x3b\xfc\x55\x75\xc3\xbf\xe2\x32\x80\x9d\ -\x41\x85\xf4\x77\x18\x54\xb8\x04\x0e\x83\x0a\x57\xa1\x05\xaa\xa5\ -\x57\xe5\x22\x58\x04\x2a\x5c\x03\x8b\x40\x85\x4b\xf0\x92\x06\xdf\ -\x54\xd5\xcb\x30\x45\xa2\xc2\xa5\x98\x22\xe1\xb5\x1c\x95\xbb\x2a\ -\x9e\xe9\x9b\xfa\x82\x1a\xdb\xb9\xde\xca\x57\x66\x3f\x1f\x9d\x8a\ -\xdd\xd8\xf8\x61\x6a\x27\xb5\x8b\xee\xca\xba\xbe\x20\x97\x9a\x26\ -\x96\x0b\x9a\x78\x57\x42\x09\x17\xd9\x32\xce\xbe\xee\xc1\x86\x27\ -\x4d\x24\x2a\x19\x49\xbe\xbd\x7d\x4c\x92\x6d\x32\x40\x8d\x58\x47\ -\x1f\xb9\x0f\x39\xbb\x41\x3e\xb4\x7e\xc3\x93\x1e\xe3\x90\x4a\x9f\ -\xc3\xe8\x96\xf3\xc2\x32\x0b\xf8\x4f\x74\xc5\x3e\x02\xa1\xc9\xe3\ -\x34\x6d\x2b\x7c\x75\xef\xf3\xbc\xcc\xe7\x03\xd1\x40\x9e\xea\x67\ -\xd5\xef\xe5\xbd\x88\x4c\x49\x2e\xec\xac\x5b\x5f\xdf\x11\x60\x34\ -\xbc\x04\x19\x12\xc1\xc6\x35\xcf\x82\x38\x53\xf9\xa1\xe5\xfb\x38\ -\xd3\x56\xe3\x4c\x0b\xaa\xd6\x1f\x74\x9c\xe9\x3d\xbe\xb9\x82\x27\ -\x37\x62\xba\x44\xb9\xd7\x59\x28\x98\x1a\xc9\x02\x2d\xe4\x18\x4f\ -\x7f\xd1\xee\xd3\x70\x28\x24\x48\x17\x95\x6e\x7c\x14\xe9\xe7\x03\ -\x2b\x39\x8f\xba\xfa\x39\x06\xad\xf0\xdc\xb6\x69\x45\x54\x92\x87\ -\x09\x43\x16\x62\x04\x0b\x4d\x52\xa2\x32\x5d\x0e\x07\x6e\x03\x73\ -\xe5\xa0\x6c\xe7\x1c\x6c\x37\x18\xb2\xc0\xae\xda\x27\x3f\x9d\x9c\ -\xed\xcc\xc0\x9a\xde\x97\xba\x29\x75\x87\xd3\xdf\x93\x84\x98\x7d\ -\x21\xee\xfa\xf0\xe2\x90\xf4\xa9\xec\xf2\xf8\xfa\xb0\x5e\x3f\xc4\ -\x12\xb2\xc6\x80\xdf\xf5\xe9\x20\xa9\x81\x6b\x7e\xff\x64\xae\xdf\ -\x4a\xd1\xff\x05\x9c\x95\x96\x18\x4a\xac\x99\xca\xdd\x05\xcf\x05\ -\x43\xa5\x45\xdf\x8e\xa8\x0c\x26\xe9\x16\x8b\xa5\x11\xd7\xa6\x91\ -\xd6\x94\xa4\x02\xfd\x4c\xbb\xb9\x05\x34\x3b\x8b\x43\xd5\xfc\xfd\ -\x0f\xf3\x1c\xa8\x3a\xd7\x70\x60\xa5\x09\x43\x5f\x08\xa1\x86\x00\ -\x5e\x73\x1a\x89\xee\x71\x0f\x85\xcb\x74\x18\x02\xe4\xc7\x2d\x47\ -\x24\xf5\x85\xe1\x62\x44\x3e\x0d\x55\x2f\xe9\x9f\x87\x8c\x45\x56\ -\xf9\x61\x92\x53\x60\x85\xd8\xcc\xd2\x6e\x1e\x4a\x08\x6d\x6d\x68\ -\xb9\xea\x9c\x62\x02\x4d\x3a\xb7\x82\xca\xa2\xf5\x9a\x5d\xd4\xed\ -\xa0\xe5\x0e\x1c\x28\x26\xd1\xb4\x77\x4b\x34\xb2\xbb\x9d\x39\xc8\ -\x4c\x7a\xb7\x82\x4c\x52\x55\x50\x8c\xcc\xb4\x77\x2b\xc8\x64\x8a\ -\xcd\x8a\x31\xca\xdd\xe2\x8f\x56\xb6\x01\x21\x35\x24\x53\x46\x91\ -\x2a\xa3\x72\xc1\xf6\xc6\xcc\x96\x1c\xdb\x59\x4c\xae\xed\xa8\x0a\ -\x10\x00\xd8\x05\x67\x58\x60\x22\x3d\x76\xe3\xa2\x77\xd2\x8d\x69\ -\xd4\x0c\x22\x7c\x97\x35\x7c\x8c\x87\x38\xe0\x0e\xc6\xb6\x9a\x3b\ -\xc0\x05\x60\xfc\x36\x0d\x2b\xf7\x56\x39\x7e\x57\xdc\xdd\x62\x41\ -\x46\x42\x37\xc1\x0c\xbe\x89\xf1\xbc\xe5\x29\x4c\x6c\xb6\x14\xc1\ -\x53\x5f\x9d\x45\xc2\xdf\x44\x8f\x07\xe8\x6a\x9a\xe9\x65\xd2\x1e\ -\x8d\xbb\x66\xfd\x04\x06\xb8\x4b\xae\xc7\xcd\x27\x97\x70\x3d\x4e\ -\xec\x19\x3e\x3e\x0b\x29\x64\x78\x54\xb5\xf1\x8c\xf3\xe0\x9e\x9c\ -\x5d\xe6\xc0\x9d\x15\x81\xb3\x3f\x95\x5b\x9b\x0c\x6d\xb7\x4a\xea\ -\xc9\xeb\xcb\x9b\x25\xf2\xe5\xd5\x3a\x69\x7c\x7e\x59\xdf\x1a\x8d\ -\xcf\xd6\x47\xe3\x8b\xcd\xd2\xf8\x2c\x4b\xe3\xd3\xcb\x73\x2f\x1a\ -\x9f\x9f\xe4\xc0\x5d\xee\x20\x8d\x93\x43\x29\x37\x4c\xd9\xb3\x75\ -\x52\xf6\xec\xe4\x3c\x0b\xee\x69\xa1\x30\x54\xac\x21\x92\x53\x4b\ -\x36\x4b\xd9\xf3\xa7\x59\x41\xbe\xf0\xa2\x6c\xfd\x22\xa7\xca\x2f\ -\xae\x76\x97\xb2\x1b\xd6\x06\x4f\xf2\xa4\x28\x14\xdf\x7b\x5b\xb5\ -\xab\x3c\xb8\xa7\xcb\x51\x36\x7d\x09\xfd\x8d\xda\x90\x37\x0f\xfe\ -\x0f\x44\xe6\x40\x56\ -\x00\x00\x07\xb5\ -\x00\ -\x00\x1a\x6e\x78\x9c\xed\x58\x5d\x6f\xe3\xb8\x15\x7d\xcf\xaf\x50\ -\x35\x2f\x1b\xd4\x92\xf8\x25\x8a\xf4\xc4\x59\x14\x1b\x4c\xb1\xc0\ -\x02\x05\x76\x66\xb0\xe8\xd3\x80\x96\x68\x5b\x8d\x2c\x19\x94\x1c\ -\xdb\xf9\xf5\xbd\xd4\xb7\x62\x25\x3b\x3b\x5d\xf4\xa1\x53\x3b\x89\ -\xad\x7b\x2f\x2f\xc9\xcb\xc3\xc3\xc3\xdc\xfd\x78\xde\x67\xce\x93\ -\x36\x65\x5a\xe4\x2b\x17\xfb\xc8\x75\x74\x1e\x17\x49\x9a\x6f\x57\ -\xee\xe7\x4f\x1f\x3c\xe1\x3a\x65\xa5\xf2\x44\x65\x45\xae\x57\x6e\ -\x5e\xb8\x3f\xde\xdf\xdc\xfd\xc5\xf3\x9c\x9f\x8c\x56\x95\x4e\x9c\ -\x53\x5a\xed\x9c\x9f\xf3\xc7\x32\x56\x07\xed\xfc\xb0\xab\xaa\xc3\ -\x32\x08\x4e\xa7\x93\x9f\xb6\x46\xbf\x30\xdb\xe0\xd6\xf1\xbc\xfb\ -\x9b\x9b\xbb\xf2\x69\x7b\xe3\x38\x0e\xf4\x9b\x97\xcb\x24\x5e\xb9\ -\x6d\x83\xc3\xd1\x64\x75\x60\x12\x07\x3a\xd3\x7b\x9d\x57\x65\x80\ -\x7d\x1c\xb8\x43\x78\x3c\x84\xc7\xb6\xf7\xf4\x49\xc7\xc5\x7e\x5f\ -\xe4\x65\xdd\x32\x2f\xdf\x8d\x82\x4d\xb2\xe9\xa3\xed\x68\x4e\xb4\ -\x0e\xc2\x52\xca\x00\x91\x80\x10\x0f\x22\xbc\xf2\x92\x57\xea\xec\ -\x4d\x9b\xc2\x18\xe7\x9a\x12\x84\x50\x00\xbe\x21\xf2\xeb\xa2\x96\ -\xe7\x0c\x4a\xf1\xea\x60\x6a\xef\xb8\x77\x28\xff\x01\x7e\xfb\x06\ -\x9d\xc1\x2f\x8b\xa3\x89\xf5\x06\x5a\x6a\x3f\xd7\x55\xf0\xf0\xe9\ -\xa1\x77\x7a\xc8\x4f\xaa\x64\x94\xa6\xab\xfe\xa4\xdf\xc9\x92\xe4\ -\x6a\xaf\xcb\x83\x8a\x75\x19\x74\xf6\xba\xfd\x29\x4d\xaa\xdd\xca\ -\xe5\xec\x70\xae\x9f\x77\x3a\xdd\xee\xaa\x91\x21\x4d\x56\x2e\xcc\ -\x30\x14\x04\xd7\xcf\xdd\x18\x96\x3d\x92\x90\x4f\x49\x13\xda\x26\ -\x1e\xbb\x98\xf0\xb1\x63\x64\xc4\xd1\xb4\x75\x52\xc4\x76\x48\x2b\ -\xf7\xc1\xa8\x4d\xf5\xa5\xfe\xeb\x77\x95\xec\x13\x15\xc7\xea\x70\ -\xac\xbe\xe8\x73\xa5\xf3\x26\x23\xcc\x65\x34\xb1\xda\x6d\x9b\xf9\ -\x93\x49\x8d\x40\x8e\xa7\x09\xf5\xf9\x50\x98\xca\xdb\xa4\x99\x6e\ -\xba\x0f\xf6\x3a\x49\x55\x90\xa8\x4a\x05\xff\x2c\x4c\xfa\x18\x7c\ -\x30\x5a\xff\xf4\xb7\x87\x20\x8d\x01\x6b\xc1\xc7\x47\x5d\xc5\x3b\ -\x6d\xfc\x43\xbe\x9d\x4d\x75\x4e\x0e\xb0\x7a\x2c\x9c\x75\x5e\x3a\ -\xe7\x3d\x78\xef\x12\xbd\x29\x6d\x54\x53\x54\xfb\x04\x55\xa5\xb5\ -\x0f\xbc\x80\x0c\xad\xcc\xdf\x8d\x4a\x52\xd8\x0f\x4d\xdc\x28\x63\ -\x5c\x64\x99\x8e\x61\x65\x54\x76\x52\x97\xd2\xed\x03\x20\xd5\xb4\ -\x29\xa7\x4c\xb6\x49\x21\x6d\x59\x15\x87\x2e\x16\xea\x5f\x5d\x32\ -\x98\xb5\x35\x7a\x90\xb1\x30\xcb\x77\xa8\x7e\xbd\xaf\x4d\x05\x20\ -\x24\xad\x2e\x4b\xfc\xde\x1d\xda\x14\x9b\x4d\xa9\xa1\x63\x34\xb2\ -\xd5\xa8\x80\x16\x9c\x86\xd8\x75\x82\xff\xac\x37\x34\xd7\x1b\x9e\ -\xef\x8d\xf6\xbd\xdd\x05\xd3\x69\xbf\x5d\xc6\xab\x2a\x51\x1a\x45\ -\x7f\xa8\x4a\x58\x2a\xfa\x8d\x55\x82\xbe\xe4\x1f\xac\x12\x97\x9b\ -\xcd\x57\xf4\x36\x57\x25\x4a\x05\xfe\xc6\x2a\xfd\x1e\xd8\x6a\xfa\ -\x5a\xee\x8c\x06\xba\x7d\x37\x53\xcf\xb7\xca\x2d\xe8\x90\x06\xaf\ -\x5c\x89\x60\x73\x8a\x28\xec\x8d\x17\x30\x62\x2c\x91\x3f\x36\x9e\ -\x09\x18\x09\x8f\x7c\x89\x38\x19\x42\xc9\x4c\xe8\xb6\xed\xe9\x73\ -\x9e\x56\x40\xd6\xc7\x52\x9b\x8f\x96\xf0\xfe\x91\x7f\x2e\xf5\x55\ -\xd4\x27\xa3\xf2\x12\xd8\x75\xbf\x72\xf7\xaa\x32\xe9\xf9\x07\x0f\ -\x2f\x10\xbc\xf1\x82\x00\x53\xfb\x34\xe4\x0b\x74\x3b\x94\xb1\x2f\ -\xcd\x01\xb8\xe5\x00\xb5\x81\xf3\xa8\xcb\xd9\x93\x5a\x75\xb1\x14\ -\x3c\x0d\xa5\x89\x7b\x55\xde\xa7\xc3\x97\x33\x20\xc5\x59\x3a\x94\ -\xc0\x1f\x3c\x1b\x71\x69\x22\x30\x6c\x17\xf8\x40\xb3\x31\xcf\x96\ -\xa8\xdf\x48\xd3\x8e\xc0\x03\x62\xdb\xa6\xc0\x87\x75\x1c\xc1\x3e\ -\xad\x5f\xd3\x36\xb0\x64\xa3\xb9\x01\x33\x0d\x90\xbd\xb3\x45\x53\ -\xd9\x9f\x09\x97\x9a\xa4\xc6\x7d\x4f\xbb\x80\x9d\x3e\xac\x6c\x7c\ -\xb6\xcb\x8d\xa8\xcf\xa9\x1c\x1a\xc5\x50\x20\xcc\x08\xf3\x19\xe3\ -\x43\xec\x66\x36\x76\x33\x1b\x6b\xc0\x28\xc1\x86\x38\x66\x5f\x05\ -\x10\x9f\x51\x14\x31\x29\x17\xf0\x95\x72\x14\xe2\x90\x6b\x2f\xb2\ -\x4f\x04\x91\x08\x53\xed\x89\x05\xf2\x01\xaf\x4c\x20\xc0\x11\x8f\ -\x98\x1f\x31\x21\x16\x98\x30\xe6\x13\x41\xf8\xed\x57\xa2\xb5\x29\ -\xfc\x5d\x60\xcf\x88\xfa\x5b\x0f\x31\x7b\x6a\x25\x4f\xa9\x3e\x0d\ -\x07\xc9\x5a\xf5\xf8\x3e\xa8\xad\xae\x29\x04\xea\xbd\xa9\x5f\xad\ -\x63\x5d\x98\x44\x9b\xce\xc5\xeb\xd7\xc4\xd5\xb2\x4c\xa3\x0b\x6f\ -\x5e\xa0\x08\xb2\xf6\x7e\x34\xef\x2f\x77\x2a\x29\x4e\x2b\x97\xbc\ -\x74\x3e\x17\xc5\xbe\xd6\x08\x8c\xf6\x9b\x75\x00\x0e\xac\x56\x24\ -\x6d\x5d\x09\xbf\x76\x42\x6f\x1e\x25\x21\x78\xb1\xc0\x57\xde\xa3\ -\x31\x50\x3f\x2f\x53\x17\x0d\x73\xda\x52\xca\xbb\x81\x95\xbb\xe2\ -\xb4\x35\xb6\x34\x95\x39\xea\x97\x0d\x41\x79\x1c\xad\xe2\xf4\x8e\ -\x4d\xe9\x5b\x9d\x33\x8a\xb0\x6d\xbd\xf5\xba\x38\xcf\x27\x38\xa5\ -\x39\x4c\xd5\x6b\x95\x13\x26\xe2\xaa\x20\x6d\x44\xa7\xa5\xa2\x50\ -\xbc\x12\x71\x1e\xce\x8b\x97\x2e\xbb\x14\xf2\x15\xdf\x5e\x9d\xd3\ -\x7d\xfa\xac\x13\x7b\x00\xb4\x58\xd9\xeb\x4a\x59\x15\x33\xe0\xa2\ -\xb3\xc0\x56\xe6\x9d\xc8\x00\x19\xbc\xfc\xf5\xe1\x43\x7f\x12\xc5\ -\xf1\xf2\xb7\xc2\x3c\x0e\x87\x88\x0d\x50\x6b\x10\x56\x2b\xb7\x3f\ -\x1d\xad\x74\x89\x97\x76\x2f\xa8\xea\x3e\xdd\xc3\x6a\x5b\xcd\xfb\ -\x57\x90\x9e\x80\xd0\xde\x31\x09\xb6\x4c\x38\x24\x6d\xd2\x1a\xdd\ -\x68\xda\xd9\x6b\x40\x12\xef\x53\xdb\x28\xf8\x58\xa5\x59\xf6\xb3\ -\xed\x64\x74\x62\xb6\x49\xd3\x2a\xd3\xf7\x75\x9f\xcd\xd7\x6e\x16\ -\x41\x3b\x8d\xee\xc8\x1b\xcd\xf2\x2e\xe8\xca\x50\x3f\x6d\x87\xf2\ -\xd4\xc0\xb9\x82\x55\xa6\xd6\x3a\x5b\xb9\xbf\x58\xa7\x73\xe5\xdd\ -\x9a\xe2\x78\xd8\x17\x89\x6e\x9b\x77\x65\xdd\x8e\x99\x6c\x0c\xc5\ -\x37\xa5\xe7\xae\xd8\xeb\xe0\x52\x8b\xce\x87\x16\x94\x65\xf0\x8b\ -\x5a\x07\xb5\x1a\x6e\x05\x68\x52\x2b\xe3\x4e\x7d\xce\x65\x6c\x14\ -\x28\xf5\x09\x8b\x04\x30\xd2\xab\x71\x97\x57\xe2\xaa\x2b\xa6\x03\ -\x0e\xa3\x3c\x12\x9c\xd6\x27\xe2\xf0\xe4\xc1\xa1\xeb\xe3\x30\xc4\ -\x96\x01\x29\xf3\x05\x97\x9c\xdc\x0e\x2a\xca\xc0\x21\x70\xa5\x6b\ -\xa6\xc2\x0f\xa6\x9f\x2d\x73\xb8\x5f\x82\xb8\x31\xc5\xa3\x5e\x02\ -\x4f\x01\x5f\xa3\xf6\xb1\xd9\x55\x4b\x12\xf9\x11\x11\x56\x1e\xf0\ -\xce\x61\x8f\x0f\x98\xcd\x12\x56\x20\x4f\xc6\xc6\x7f\x15\x69\x3e\ -\xb5\x02\x92\xb4\xc9\x60\x87\x54\x4b\xd6\xd9\x06\x15\xd5\x1a\x12\ -\x05\x94\x65\x8c\xba\x8c\x47\x53\x5b\x1b\x6d\x05\xaa\x74\xaf\xcc\ -\xa3\x36\x8d\xff\x29\x2d\xd3\x75\x9a\xd9\x14\xf5\xd7\x4c\xbf\x4f\ -\xd2\xf2\x00\x28\x80\xcb\x97\x1d\xc6\xfb\x02\x6e\x1d\x9b\xac\x38\ -\xf5\x7e\x58\x66\xf8\xf0\xd6\x2a\x7e\xdc\xd6\xe3\x5b\xaa\x18\x56\ -\xf9\x98\xc1\x55\xfa\x85\x6c\xb3\x85\xa3\x82\x23\x4f\x8c\x1c\x1d\ -\xc1\x08\xea\x87\x14\xd1\x91\xa7\x23\x16\x1c\x4a\x5f\x20\x22\xc7\ -\x3e\x7b\xfe\x09\x49\x7c\x49\x25\x1f\x99\x81\x4e\x22\x01\x67\x5d\ -\x48\xe8\x38\x7a\x6e\xed\x85\xe4\x98\x53\x42\x60\xe1\x19\x90\x36\ -\x61\x20\x85\xe0\xc6\x29\x98\x90\x21\x8e\x22\x30\x87\x44\xb0\x08\ -\x51\x62\xc1\x71\x3b\x16\xb6\x07\x55\xed\x46\x00\x98\xea\x22\x65\ -\x62\xf7\x4f\x41\x47\xe8\x73\x11\x31\xfc\x9d\x60\xc3\xd6\x14\xb0\ -\x41\xbc\xf1\x72\xf6\xa5\xb5\x27\x28\x85\x1d\x2a\xec\x7b\x36\x00\ -\x56\x9e\xc2\xa6\x8f\xe0\x3d\x1b\x60\x6a\xc4\xbc\x91\xc1\x5c\xe6\ -\x03\xec\x11\xe3\xc0\xfd\x9e\x72\xfb\x5e\xf4\x9d\x38\xca\xe9\xc3\ -\x17\xfd\x37\x07\x39\x18\xde\x1e\xe5\x5d\x03\xf4\x46\xd8\x38\xea\ -\xf9\x4d\xbc\x82\xb0\x92\x94\x91\x88\x2d\x08\x28\xaf\x50\x50\x19\ -\x2e\x3c\x30\xda\xfb\x81\x8c\xc0\xc8\x41\xcf\x23\x0a\x1a\x0c\x09\ -\xb0\x4a\xbc\xc0\x38\x22\x20\x47\x84\x98\x40\xf7\x9b\xb8\xcb\x9a\ -\xeb\x7b\xda\x94\xbb\x64\x48\x42\x06\x7b\xe5\xbb\xc0\x67\xc7\x5d\ -\x73\xcc\x05\xfa\x37\x04\xd2\x98\xa3\x2e\x0e\x12\x1a\x88\x4a\xbc\ -\xa0\x2e\x6e\xc1\x4c\xf1\x94\xb9\x42\x84\x40\x3e\xe3\xd1\x0d\xf0\ -\x35\xe6\x42\x04\x81\xf8\xb7\xcc\x15\x86\x21\x8f\x24\x69\x98\x0b\ -\x90\x40\x59\xcd\x5c\x0c\xa3\x08\x2e\x17\xff\x05\xe6\x9a\xc3\xc6\ -\xf7\xc9\x5c\xff\xe7\xad\xdf\xe3\x2d\x19\xc1\x8f\x98\xf2\x56\x84\ -\xa4\x84\xcb\xc5\x88\xb8\x24\x11\x3e\x03\xdd\xc5\xde\x42\xee\xab\ -\xe0\x7c\x47\x74\xc4\x01\x90\xf6\x61\x04\x9c\xfa\xd1\x1c\x33\x90\ -\x89\x4f\x3a\x2f\x92\x64\x0c\x60\xb8\xb4\x4d\x01\x8c\x89\x8f\x24\ -\x0f\x31\x1c\xff\xed\x0b\x8b\x97\x58\x5e\x1f\xab\xea\x7f\x09\xca\ -\x35\x5e\x30\xc2\x18\x36\x2f\x62\x70\x7c\xc0\x32\x20\x21\x1d\x4f\ -\x20\xa0\x37\x16\xb2\x05\xf0\x5c\x48\x64\xe4\x30\xa0\xfe\x28\xb2\ -\xb2\xd9\x41\x0b\x11\x01\xae\x30\x76\xb8\x5d\x4a\xca\x71\x6d\xf4\ -\x3a\x6b\x08\xb4\x44\xac\x98\xea\xd2\x30\xf0\xb5\x69\x9e\x1d\xe8\ -\x2f\x24\x3e\x13\x94\x8d\x52\x11\xc7\x6b\x5a\x09\x30\x36\x8d\x68\ -\xdb\x35\x6f\x9f\x79\x97\x84\x3b\x1e\x0c\x26\x44\x24\x1a\x77\x0b\ -\x19\x38\xf5\x31\x08\xc1\x17\xf0\xec\x79\x3c\x12\x63\x75\x38\xfa\ -\x07\x4f\x0e\x6b\x5b\x15\xc6\x83\x6b\xf7\x93\xaa\x8e\x46\xdb\x9b\ -\xeb\xf0\x4f\xc6\x6d\x73\xd7\x82\x8f\x3b\x7b\x37\xbc\xbf\xf9\x37\ -\x96\xc8\x9e\xfb\ -\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\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\xb1\xeb\ +\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\xa5\x84\x00\x00\x00\x59\ +\x00\x00\xa6\x57\x00\x00\x00\x5a\x00\x00\xa7\x0a\x00\x00\x05\xd9\ +\x00\x00\xa6\x17\x00\x00\x05\xda\x00\x00\xa6\x37\x00\x00\x05\xea\ +\x00\x00\xa6\xea\x00\x00\x07\x78\x00\x00\x70\x5a\x00\x00\x48\x83\ +\x00\x00\x03\x6d\x00\x00\x48\x83\x00\x00\x76\xd4\x00\x00\x68\x34\ +\x00\x00\x6a\xc3\x00\x04\xa6\x79\x00\x00\x7a\x31\x00\x04\xbb\x04\ +\x00\x00\x0c\x38\x00\x04\xbb\x04\x00\x00\x7e\x9c\x00\x05\x30\x45\ +\x00\x00\x0e\xa3\x00\x05\x30\x45\x00\x00\x91\x59\x00\x05\x46\xc5\ +\x00\x00\x0e\xd0\x00\x05\x46\xc5\x00\x00\x91\xf7\x00\x05\x56\x45\ +\x00\x00\x48\x55\x00\x05\x56\x45\x00\x00\x92\x2b\x00\x05\xac\xf4\ +\x00\x00\x1a\x8a\x00\x05\xb8\xfd\x00\x00\xa2\xfa\x00\x05\xcf\xc7\ +\x00\x00\xa3\xac\x00\x05\xe0\x85\x00\x00\x24\x49\x00\x06\xab\x8c\ +\x00\x00\x6c\x5d\x00\x10\x84\x49\x00\x00\x53\xd1\x00\x12\x05\xba\ +\x00\x00\x9e\xec\x00\x16\xc6\xda\x00\x00\x85\x8e\x00\x2a\xa6\x79\ +\x00\x00\x73\x0c\x00\x2b\xc4\xaf\x00\x00\x73\xee\x00\x2b\xe0\x65\ +\x00\x00\x74\x23\x00\x39\xdf\x33\x00\x00\x35\xc2\x00\x3d\xa1\x19\ +\x00\x00\x78\x10\x00\x3e\x93\x83\x00\x00\x36\xf6\x00\x48\x8f\x7c\ +\x00\x00\x26\xd3\x00\x4b\x66\x35\x00\x00\x32\xe0\x00\x4b\x66\x37\ +\x00\x00\x33\x25\x00\x4b\x66\x39\x00\x00\x33\x6a\x00\x4b\x87\xd4\ +\x00\x00\x7d\xcf\x00\x57\x60\x54\x00\x00\x9a\xf3\x00\x58\xfd\xf4\ +\x00\x00\x4b\xb6\x00\x59\x98\x25\x00\x00\x15\x34\x00\x59\x98\x25\ +\x00\x00\x9c\x3f\x00\x6a\x58\x9a\x00\x00\x94\x77\x00\x79\xef\xd4\ +\x00\x00\x70\x92\x00\x7e\x7f\x0e\x00\x00\x67\x38\x00\x8a\x23\x95\ +\x00\x00\x2a\x67\x00\x8a\x23\x97\x00\x00\x2a\xaf\x00\x8a\x23\x99\ +\x00\x00\x2a\xf7\x00\x91\xbc\xe9\x00\x00\x0f\x09\x00\xa6\x37\x3f\ +\x00\x00\x29\x12\x00\xaa\x80\x25\x00\x00\x7d\x0d\x00\xc6\xe3\x6e\ +\x00\x00\x25\x9d\x00\xcb\xa8\x14\x00\x00\x6f\x7a\x00\xfc\x00\xca\ +\x00\x00\x8c\xee\x01\x21\xd6\x39\x00\x00\x52\xae\x01\x22\xb4\xf9\ +\x00\x00\x15\x6b\x01\x2f\x8e\x7e\x00\x00\x5d\xd8\x01\x48\xfe\xa3\ +\x00\x00\x37\x70\x01\x53\xf3\xaa\x00\x00\x82\x4a\x01\x56\x16\x4a\ +\x00\x00\x8c\x6b\x01\x67\x0d\x8a\x00\x00\x87\x77\x01\x69\x11\x7a\ +\x00\x00\x98\xc0\x01\x82\x39\x0a\x00\x00\x95\x1d\x01\x8b\x68\x75\ +\x00\x00\xa2\x8d\x01\xa1\x7f\x63\x00\x00\x1d\x29\x01\xc1\xd9\xde\ +\x00\x00\x55\xf6\x01\xd2\x8f\xd3\x00\x00\x4c\x75\x01\xdf\x11\x43\ +\x00\x00\x05\xc2\x01\xe2\xf4\x5a\x00\x00\x9e\x7f\x01\xfc\xae\xd3\ +\x00\x00\x70\xd3\x02\x05\xbe\x25\x00\x00\x7b\xb0\x02\x46\x58\x0a\ +\x00\x00\x97\xe8\x02\x65\xad\x62\x00\x00\xa7\xe4\x02\x6e\x07\xe2\ +\x00\x00\x4e\xc3\x02\x76\x24\x13\x00\x00\x3b\xdd\x02\x7d\xe0\x55\ +\x00\x00\x4f\x67\x02\x94\x46\x1a\x00\x00\x94\xca\x02\xa7\x2c\x15\ +\x00\x00\x04\x6c\x02\xaa\x36\x95\x00\x00\x72\xa3\x02\xb1\xf0\xba\ +\x00\x00\x89\x6a\x02\xbf\xaa\x8e\x00\x00\x3a\x2a\x02\xc0\x66\xf2\ +\x00\x00\x59\xbc\x02\xc8\x3f\xf5\x00\x00\x65\x0f\x02\xd9\xa4\xb9\ +\x00\x00\x6a\x74\x02\xdb\x1a\x94\x00\x00\x07\x83\x03\x01\x84\xc4\ +\x00\x00\x8d\xc1\x03\x12\x97\x6a\x00\x00\x8b\xa6\x03\x1a\x14\x14\ +\x00\x00\x30\x8e\x03\x1a\x16\x59\x00\x00\x50\x01\x03\x2f\x1a\x6a\ +\x00\x00\x74\xa2\x03\x7e\xca\xb5\x00\x00\x43\xb6\x03\x88\x1f\xd4\ +\x00\x00\x44\xad\x03\x9e\x58\xa5\x00\x00\x00\x4c\x03\xb3\x9e\xfa\ +\x00\x00\x95\xd3\x03\xb5\xc8\x9a\x00\x00\x97\x33\x03\xbd\xd4\xe4\ +\x00\x00\x75\x5f\x03\xc4\x3c\xf5\x00\x00\x77\xd2\x03\xc5\xd5\x5e\ +\x00\x00\x09\xb9\x03\xcb\x0d\xe5\x00\x00\x9c\x70\x03\xdc\x0c\xd4\ +\x00\x00\x73\x6e\x03\xf2\x70\x35\x00\x00\x2d\x5d\x03\xf2\xbd\x60\ +\x00\x00\x16\xc9\x03\xfb\x0f\x04\x00\x00\x30\x26\x04\x21\x23\x23\ +\x00\x00\x21\xb3\x04\x56\x06\x93\x00\x00\x2e\x53\x04\x60\x7c\x15\ +\x00\x00\x9b\x48\x04\x79\xef\x9a\x00\x00\x88\xbf\x04\x82\x77\xf4\ +\x00\x00\x4f\x1d\x04\x87\xf9\x9e\x00\x00\x8e\xc8\x04\x8c\xd6\xae\ +\x00\x00\x63\x46\x04\xa0\x8a\x25\x00\x00\x05\x91\x04\xa0\x8a\x25\ +\x00\x00\x79\x3b\x04\xa4\x31\x5a\x00\x00\x90\xe9\x04\xa8\xeb\x85\ +\x00\x00\x33\xaf\x04\xe1\x6e\xe3\x00\x00\x0a\x41\x04\xe4\x0f\x75\ +\x00\x00\x03\x05\x04\xeb\x41\xc3\x00\x00\x2d\xd6\x04\xef\xd9\xa8\ +\x00\x00\x4b\x20\x05\x03\x83\x95\x00\x00\x6c\x9b\x05\x05\xcb\x13\ +\x00\x00\x42\x7c\x05\x0f\xf2\x74\x00\x00\x93\x8c\x05\x1b\x10\x59\ +\x00\x00\x46\x66\x05\x2a\xe5\x97\x00\x00\x4d\x59\x05\x44\x3b\x5f\ +\x00\x00\x6e\x86\x05\x5c\xd9\xc4\x00\x00\x10\x68\x05\x5c\xd9\xc4\ +\x00\x00\x92\x9c\x05\x63\xf6\x93\x00\x00\x4b\xf9\x05\x65\xee\x65\ +\x00\x00\x80\x9a\x05\x87\xb0\xc3\x00\x00\x9b\x1c\x05\x96\xa8\xa5\ +\x00\x00\x13\xca\x05\x96\xa8\xa5\x00\x00\x9c\x13\x05\xad\x4b\xc3\ +\x00\x00\x44\x14\x05\xb9\x03\xc8\x00\x00\x1e\xb4\x05\xbd\x0c\xba\ +\x00\x00\x83\x21\x05\xbd\x8e\xde\x00\x00\x61\x9a\x05\xbe\x56\x93\ +\x00\x00\x4a\xa4\x05\xc5\x50\x04\x00\x00\x0c\x6f\x05\xe5\x8e\x2e\ +\x00\x00\x11\xb8\x05\xfb\xdc\x83\x00\x00\x42\xe2\x06\x1e\xe6\xb5\ +\x00\x00\xa1\xbb\x06\x29\xee\xa9\x00\x00\x79\x65\x06\x32\xe3\xe3\ +\x00\x00\x7d\xf8\x06\x57\x19\xf4\x00\x00\x00\x00\x06\x5a\xef\x15\ +\x00\x00\x72\xd7\x06\x5b\xd2\xb5\x00\x00\x3e\xc9\x06\x6c\x88\x8e\ +\x00\x00\x40\x69\x06\x74\x1d\x55\x00\x00\x55\x5e\x06\x8b\x96\x44\ +\x00\x00\x0d\x27\x06\x97\x58\xc9\x00\x00\x50\x8a\x06\xbc\x80\xa5\ +\x00\x00\x1e\x45\x06\xc9\xb8\x05\x00\x00\x75\xe5\x06\xe8\x05\x4e\ +\x00\x00\x07\x08\x06\xee\xaa\x57\x00\x00\xa0\x90\x06\xf0\xcb\x25\ +\x00\x00\x1c\x0f\x06\xfa\xff\xc3\x00\x00\x43\x52\x06\xfc\x1a\x14\ +\x00\x00\x34\xbb\x06\xfc\xa0\x8a\x00\x00\x93\xcb\x07\x08\x90\xe5\ +\x00\x00\x2b\xd6\x07\x0d\xb7\xf7\x00\x00\x39\x77\x07\x0e\x86\x3e\ +\x00\x00\x1c\x78\x07\x35\x68\x6e\x00\x00\x17\xe2\x07\x35\xe8\x9a\ +\x00\x00\x99\x0b\x07\x44\x41\x2a\x00\x00\x81\xad\x07\x4a\x1f\x63\ +\x00\x00\x02\x28\x07\x4d\x73\x22\x00\x00\x91\x81\x07\x4e\xa6\xf2\ +\x00\x00\x7e\xfd\x07\x58\xcb\xe8\x00\x00\x91\xbb\x07\x63\xfe\x0e\ +\x00\x00\x12\xa5\x07\x80\xc6\xb3\x00\x00\xa5\x4c\x07\x88\x72\x5a\ +\x00\x00\x77\x05\x07\xa3\xe4\x0e\x00\x00\x23\x53\x07\xc1\xfc\x13\ +\x00\x00\x2f\x16\x08\x27\xb4\xba\x00\x00\x96\xd6\x08\x32\xc4\xaa\ +\x00\x00\x99\xd8\x08\x36\x74\x14\x00\x00\x25\x56\x08\x44\xb9\x83\ +\x00\x00\x35\x3a\x08\x49\xc9\x30\x00\x00\x17\x13\x08\x61\x7c\xb3\ +\x00\x00\x1e\xe7\x08\xa2\xca\x67\x00\x00\x4f\xb7\x08\xa3\xe0\x33\ +\x00\x00\x7a\x5f\x08\xb1\x15\x28\x00\x00\x2f\xb9\x08\xb4\x04\x04\ +\x00\x00\x9b\x88\x08\xd0\x32\xf4\x00\x00\x7e\xce\x08\xd4\xcd\x69\ +\x00\x00\x7f\x41\x08\xe1\x9b\xbe\x00\x00\x1b\x37\x08\xe1\xc1\xfa\ +\x00\x00\x80\xd5\x08\xeb\x8d\x7a\x00\x00\xa4\xe5\x09\x20\xda\x24\ +\x00\x00\xa6\x74\x09\x20\xda\xb4\x00\x00\xa7\x27\x09\x20\xda\xd4\ +\x00\x00\xa5\xa1\x09\x4d\x96\xd9\x00\x00\x26\x1a\x09\x65\xda\x8a\ +\x00\x00\x85\x0d\x09\x68\x0d\x29\x00\x00\x8f\xd6\x09\x71\x8d\x25\ +\x00\x00\x06\xbc\x09\x75\x23\x14\x00\x00\x74\x4c\x09\x76\xed\x34\ +\x00\x00\x66\x40\x09\x86\xa6\x05\x00\x00\x24\x76\x09\x8b\x23\xba\ +\x00\x00\x9a\x41\x09\x9e\xfd\x7e\x00\x00\x66\x9a\x09\xb6\x2a\x63\ +\x00\x00\x34\x1d\x09\xcd\x1c\x55\x00\x00\x9c\xb4\x09\xd2\x21\xea\ +\x00\x00\x5e\xe9\x09\xe5\x23\x0e\x00\x00\x58\x95\x09\xec\x2b\x45\ +\x00\x00\x0c\xdd\x09\xef\x33\xa3\x00\x00\x19\x03\x09\xf0\x1f\x6e\ +\x00\x00\x03\xa2\x09\xfd\x45\x1a\x00\x00\x95\x76\x0a\x09\xc1\x7a\ +\x00\x00\x98\x47\x0a\x28\x9a\x65\x00\x00\x4d\xee\x0a\x28\x9a\x67\ +\x00\x00\x4e\x35\x0a\x28\x9a\x69\x00\x00\x4e\x7c\x0a\x2d\xbe\xe4\ +\x00\x00\x30\xf7\x0a\x35\xa9\xfa\x00\x00\x89\xf2\x0a\x3f\x27\x74\ +\x00\x00\x7b\xfa\x0a\x3f\x6b\x05\x00\x00\x7c\x3b\x0a\x49\xa5\x4a\ +\x00\x00\xa1\xf6\x0a\x60\xe0\x15\x00\x00\x27\x14\x0a\x60\xe0\x17\ +\x00\x00\x27\x67\x0a\x60\xe0\x19\x00\x00\x27\xba\x0a\x65\x9b\xea\ +\x00\x00\x92\xce\x0a\x78\x05\x80\x00\x00\x01\x61\x0a\x7f\x8f\x65\ +\x00\x00\x3d\x02\x0a\x98\x86\x18\x00\x00\x2b\x3f\x0a\x99\x5c\xaa\ +\x00\x00\x9a\x9b\x0a\xa8\x16\x95\x00\x00\x13\x8d\x0a\xa9\x89\xec\ +\x00\x00\x45\x1e\x0a\xc8\x5c\x59\x00\x00\x10\xa1\x0a\xd0\x50\xb8\ +\x00\x00\x73\x3d\x0a\xd0\xe6\xf5\x00\x00\x18\xb4\x0a\xd6\xf1\xfa\ +\x00\x00\x7e\x33\x0a\xeb\x91\x88\x00\x00\x65\xa1\x0b\x07\x78\x8a\ +\x00\x00\x84\x6c\x0b\x1b\xe0\x73\x00\x00\x50\xf8\x0b\x24\x9d\xb4\ +\x00\x00\x51\xd1\x0b\x24\xc5\xc9\x00\x00\x13\xfd\x0b\x26\x7e\x0e\ +\x00\x00\x7b\x1c\x0b\x2b\x50\xfa\x00\x00\x88\x18\x0b\x2d\xb3\xf9\ +\x00\x00\x69\xd8\x0b\x37\x73\x69\x00\x00\xa3\xd8\x0b\x40\x40\x3e\ +\x00\x00\x46\xc8\x0b\x43\xcd\x19\x00\x00\x45\x98\x0b\x66\x28\xd2\ +\x00\x00\x65\x5a\x0b\x88\xe0\x07\x00\x00\x0b\x54\x0b\x94\x44\xc5\ +\x00\x00\x31\x5e\x0b\xc2\x99\x6a\x00\x00\x83\xa9\x0b\xd3\x27\xae\ +\x00\x00\x04\xa6\x0b\xd4\x7e\x9e\x00\x00\x0b\x8f\x0b\xf5\xee\x53\ +\x00\x00\x92\x51\x0c\x06\x50\x2e\x00\x00\x0d\xc0\x0c\x08\x46\x23\ +\x00\x00\x7c\xc6\x0c\x19\xfa\x99\x00\x00\x7f\xd9\x0c\x28\x9b\x45\ +\x00\x00\x73\xbb\x0c\x31\x7e\x4a\x00\x00\x96\x28\x0c\x38\x4d\xe5\ +\x00\x00\x07\xd0\x0c\x3a\x16\xd0\x00\x00\x19\xf4\x0c\x5a\xc0\xc8\ +\x00\x00\x77\x96\x0c\x6e\x87\xf5\x00\x00\x23\x10\x0c\x91\xa0\x7a\ +\x00\x00\xa1\x58\x0c\x96\x90\x59\x00\x00\x45\xfb\x0c\xca\xdd\xfa\ +\x00\x00\x9f\x68\x0c\xd6\xef\x12\x00\x00\x2e\xbd\x0c\xde\x99\x49\ +\x00\x00\x6a\x24\x0c\xf0\xde\xaa\x00\x00\x86\xbb\x0d\x1c\xf6\xee\ +\x00\x00\x2c\x9f\x0d\x3a\x6c\xba\x00\x00\x96\x7a\x0d\x45\xe2\x6a\ +\x00\x00\x9e\x0a\x0d\x59\xa1\x45\x00\x00\x7d\x3d\x0d\x5a\xad\x33\ +\x00\x00\x76\x61\x0d\x5e\xe7\x6e\x00\x00\x28\x0d\x0d\x64\xa5\xd9\ +\x00\x00\x5c\xee\x0d\x6d\xf8\xf4\x00\x00\x08\x83\x0d\x76\xb5\x92\ +\x00\x00\x2c\xf5\x0d\x9b\xec\xc9\x00\x00\x54\xed\x0d\xa5\xd9\x94\ +\x00\x00\x2c\x46\x0d\xa6\xda\xa4\x00\x00\x47\xed\x0d\xc6\xc6\x2a\ +\x00\x00\x99\x66\x0d\xf2\x39\xba\x00\x00\x8a\xcb\x0e\x2b\x04\x15\ +\x00\x00\x7a\xdb\x0e\x2c\xe4\x2a\x00\x00\x9d\x95\x0e\x4e\xcc\xc5\ +\x00\x00\x09\xf8\x0e\x6f\x9a\x1a\x00\x00\xa0\x08\x0e\x7b\x7a\x2c\ +\x00\x00\x32\x60\x0e\x8f\x6a\x37\x00\x00\x36\x9e\x0e\x91\x65\xf5\ +\x00\x00\x1a\xb5\x0e\xca\xd7\x34\x00\x00\x20\xa3\x0e\xcd\x1c\x55\ +\x00\x00\x9d\x01\x0e\xcd\x1c\x65\x00\x00\x9d\x4e\x0e\xea\xe5\x03\ +\x00\x00\x71\x62\x0e\xed\xe1\xf9\x00\x00\x48\x93\x0f\x07\x8d\xe3\ +\x00\x00\x72\x00\x0f\x17\x82\x4e\x00\x00\x00\xfd\x0f\x1f\x8d\xa5\ +\x00\x00\x7a\x97\x0f\x4f\x75\x3a\x00\x00\xa7\x9d\x0f\x5f\xca\xd5\ +\x00\x00\x31\xd1\x0f\x75\xb0\x54\x00\x00\x7c\x76\x0f\x77\xc3\xb4\ +\x00\x00\x6a\xfe\x0f\x89\x0b\xbe\x00\x00\x48\xf5\x0f\x8f\xa8\xa7\ +\x00\x00\x19\xa7\x0f\x98\x0a\x39\x00\x00\xa3\x20\x0f\x9e\xec\xa0\ +\x00\x00\x12\xdc\x0f\xbf\x87\xa3\x00\x00\x90\x9f\x0f\xcd\xce\x95\ +\x00\x00\x36\x34\x0f\xdf\x21\x05\x00\x00\x25\x01\x0f\xf6\x06\x1e\ +\x00\x00\x21\x19\x0f\xf6\x29\x0a\x00\x00\x76\x17\x0f\xf7\x77\xaa\ +\x00\x00\x86\x0c\x0f\xfb\x5f\xae\x00\x00\x7b\x66\x69\x00\x00\xa8\ +\x39\x03\x00\x00\x00\x20\x00\x50\x00\x75\x00\x6e\x00\x6b\x00\x74\ +\x00\x20\x00\x68\x00\x69\x00\x6e\x00\x7a\x00\x75\x00\x66\x00\xfc\ +\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x66\x00\x46\x00\xfc\x00\x67\x00\x74\x00\x20\x00\x65\x00\x69\ +\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x50\x00\x75\x00\x6e\x00\x6b\ +\x00\x74\x00\x20\x00\x7a\x00\x75\x00\x20\x00\x65\x00\x69\x00\x6e\ +\x00\x65\x00\x72\x00\x20\x00\x76\x00\x6f\x00\x72\x00\x68\x00\x61\ +\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x4c\ +\x00\x69\x00\x6e\x00\x69\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\x30\x00\x5a\x00\x75\x00\x72\x00\x20\x00\x47\x00\x72\x00\ +\x75\x00\x70\x00\x70\x00\x65\x00\x20\x00\x68\x00\x69\x00\x6e\x00\ +\x7a\x00\x75\x00\x66\x00\xfc\x00\x67\x00\x65\x00\x6e\x00\x2e\x00\ +\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x72\x00\x46\x00\xfc\x00\x67\x00\x74\x00\ +\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x61\x00\x75\x00\x73\x00\ +\x67\x00\x65\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x74\x00\x65\x00\ +\x6e\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x65\x00\x20\x00\x7a\x00\x75\x00\x20\x00\x65\x00\x69\x00\x6e\x00\ +\x65\x00\x72\x00\x20\x00\x76\x00\x6f\x00\x72\x00\x68\x00\x61\x00\ +\x6e\x00\x64\x00\x65\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x47\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\x80\x00\x41\ +\x00\x6b\x00\x74\x00\x75\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x20\ +\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\x65\x00\x6e\x00\x62\x00\x72\ +\x00\x65\x00\x69\x00\x74\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x64\ +\x00\x20\x00\x46\x00\x61\x00\x72\x00\x62\x00\x65\x00\x20\x00\x61\ +\x00\x75\x00\x66\x00\x20\x00\x61\x00\x75\x00\x73\x00\x67\x00\x65\ +\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x74\x00\x65\x00\x20\x00\x4f\ +\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x61\ +\x00\x6e\x00\x77\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\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\x30\x00\x41\x00\x6b\x00\ +\x74\x00\x75\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\ +\x53\x00\x74\x00\x79\x00\x6c\x00\x65\x00\x20\x00\x61\x00\x6e\x00\ +\x77\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\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\x14\x00\x4b\x00\x72\x00\x65\x00\x69\x00\x73\x00\x62\x00\ +\x6f\x00\x67\x00\x65\x00\x6e\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\x7c\x00\x45\x00\x72\x00\x7a\x00\x65\ +\x00\x75\x00\x67\x00\x74\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x65\ +\x00\x6e\x00\x20\x00\x42\x00\x6f\x00\x67\x00\x65\x00\x6e\x00\x2e\ +\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x7a\x00\x75\ +\x00\x6d\x00\x20\x00\x45\x00\x69\x00\x6e\x00\x72\x00\x61\x00\x73\ +\x00\x74\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\ +\x00\x46\x00\x54\x00\x20\x00\x7a\x00\x75\x00\x6d\x00\x20\x00\x42\ +\x00\x65\x00\x73\x00\x63\x00\x68\x00\x72\x00\xe4\x00\x6e\x00\x6b\ +\x00\x65\x00\x6e\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\x0a\x00\x4b\x00\x72\x00\x65\x00\x69\x00\ +\x73\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\x9c\x00\x45\x00\x72\x00\x7a\x00\x65\ +\x00\x75\x00\x67\x00\x74\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x65\ +\x00\x6e\x00\x20\x00\x4b\x00\x72\x00\x65\x00\x69\x00\x73\x00\x2e\ +\x00\x20\x00\x53\x00\x54\x00\x52\x00\x47\x00\x20\x00\x7a\x00\x75\ +\x00\x6d\x00\x20\x00\x45\x00\x69\x00\x6e\x00\x72\x00\x61\x00\x73\ +\x00\x74\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\ +\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x62\x00\x65\x00\x72\x00\xfc\ +\x00\x68\x00\x72\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x4f\ +\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x61\ +\x00\x75\x00\x73\x00\x7a\x00\x75\x00\x77\x00\xe4\x00\x68\x00\x6c\ +\x00\x65\x00\x6e\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\x1e\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x73\ +\x00\x63\x00\x68\x00\x6c\x00\x69\x00\x65\x00\xdf\x00\x65\x00\x6e\ +\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\x3c\x00\x53\ +\x00\x63\x00\x68\x00\x6c\x00\x69\x00\x65\x00\xdf\x00\x74\x00\x20\ +\x00\x64\x00\x69\x00\x65\x00\x20\x00\x67\x00\x65\x00\x7a\x00\x65\ +\x00\x69\x00\x63\x00\x68\x00\x6e\x00\x65\x00\x74\x00\x65\x00\x20\ +\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\x65\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\x1e\x00\x50\x00\x75\x00\x6e\x00\ +\x6b\x00\x74\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x66\x00\x65\x00\ +\x72\x00\x6e\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\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\xc4\x00\x45\x00\x72\x00\x73\x00\ +\x74\x00\x65\x00\x6c\x00\x6c\x00\x74\x00\x20\x00\x65\x00\x69\x00\ +\x6e\x00\x65\x00\x20\x00\x44\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\ +\x73\x00\x69\x00\x6f\x00\x6e\x00\x2e\x00\x20\x00\x43\x00\x54\x00\ +\x52\x00\x4c\x00\x20\x00\x7a\x00\x75\x00\x6d\x00\x20\x00\x45\x00\ +\x69\x00\x6e\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\x00\x6e\x00\ +\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\ +\x7a\x00\x75\x00\x6d\x00\x20\x00\x42\x00\x65\x00\x73\x00\x63\x00\ +\x68\x00\x72\x00\xe4\x00\x6e\x00\x6b\x00\x65\x00\x6e\x00\x2c\x00\ +\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x75\x00\x6d\x00\x20\x00\ +\x65\x00\x69\x00\x6e\x00\x20\x00\x53\x00\x65\x00\x67\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x20\x00\x61\x00\x75\x00\x73\x00\x7a\x00\ +\x75\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x65\x00\x6e\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\ +\x41\x00\x62\x00\x6d\x00\x65\x00\x73\x00\x73\x00\x75\x00\x6e\x00\ +\x67\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\x1c\x00\x68\ +\x00\x65\x00\x72\x00\x75\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x73\ +\x00\x74\x00\x75\x00\x66\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x09\x44\x6f\x77\x6e\x67\x72\x61\x64\x65\x07\x00\x00\ +\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x6f\x77\x6e\x67\x72\x61\x64\ +\x65\x01\x03\x00\x00\x00\xaa\x00\x53\x00\x70\x00\x72\x00\x65\x00\ +\x6e\x00\x67\x00\x74\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\ +\x6d\x00\x61\x00\x72\x00\x6b\x00\x69\x00\x65\x00\x72\x00\x74\x00\ +\x65\x00\x6e\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x65\x00\x69\x00\ +\x6e\x00\x66\x00\x61\x00\x63\x00\x68\x00\x65\x00\x72\x00\x65\x00\ +\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\ +\x20\x00\x61\x00\x75\x00\x66\x00\x20\x00\x6f\x00\x64\x00\x65\x00\ +\x72\x00\x20\x00\x73\x00\x75\x00\x62\x00\x74\x00\x72\x00\x61\x00\ +\x68\x00\x69\x00\x65\x00\x72\x00\x74\x00\x20\x00\x4f\x00\x62\x00\ +\x65\x00\x72\x00\x66\x00\x6c\x00\xe4\x00\x63\x00\x68\x00\x65\x00\ +\x6e\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\x12\x00\x5a\x00\x65\x00\x69\ +\x00\x63\x00\x68\x00\x6e\x00\x75\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\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\x14\x00\x42\ +\x00\x65\x00\x61\x00\x72\x00\x62\x00\x65\x00\x69\x00\x74\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\ +\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\ +\x03\x00\x00\x00\x38\x00\x42\x00\x65\x00\x61\x00\x72\x00\x62\x00\ +\x65\x00\x69\x00\x74\x00\x65\x00\x74\x00\x20\x00\x64\x00\x61\x00\ +\x73\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x69\x00\x76\x00\x65\x00\ +\x20\x00\x4f\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\x4c\x00\x69\x00\x6e\x00\x69\x00\x65\x00\x20\x00\ +\x62\x00\x65\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\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\x52\x00\x42\x00\ +\x65\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x74\x00\x20\x00\x65\x00\ +\x69\x00\x6e\x00\x65\x00\x20\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\ +\x65\x00\x2c\x00\x20\x00\x6f\x00\x68\x00\x6e\x00\x65\x00\x20\x00\ +\x73\x00\x69\x00\x65\x00\x20\x00\x7a\x00\x75\x00\x20\x00\x73\x00\ +\x63\x00\x68\x00\x6c\x00\x69\x00\x65\x00\xdf\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\x8c\x00\x45\x00\x72\x00\x7a\x00\x65\x00\x75\ +\x00\x67\x00\x74\x00\x20\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\x65\ +\x00\x20\x00\x61\x00\x75\x00\x73\x00\x20\x00\x32\x00\x20\x00\x50\ +\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x65\x00\x6e\x00\x2e\x00\x20\ +\x00\x53\x00\x54\x00\x52\x00\x47\x00\x20\x00\x7a\x00\x75\x00\x6d\ +\x00\x20\x00\x45\x00\x69\x00\x6e\x00\x72\x00\x61\x00\x73\x00\x74\ +\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\ +\x00\x54\x00\x20\x00\x7a\x00\x75\x00\x6d\x00\x20\x00\x42\x00\x65\ +\x00\x73\x00\x63\x00\x68\x00\x72\x00\xe4\x00\x6e\x00\x6b\x00\x65\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\x20\x6c\x69\ +\x6e\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\ +\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\ +\x72\x61\x69\x6e\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4c\ +\x69\x6e\x65\x01\x03\x00\x00\x00\x0a\x00\x4c\x00\x69\x00\x6e\x00\ +\x69\x00\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\x16\x00\x56\x00\x65\x00\x72\x00\x73\x00\x63\ +\x00\x68\x00\x69\x00\x65\x00\x62\x00\x65\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x4d\x6f\x76\x65\x07\x00\x00\x00\x0a\x44\ +\x72\x61\x66\x74\x5f\x4d\x6f\x76\x65\x01\x03\x00\x00\x00\xe6\x00\ +\x56\x00\x65\x00\x72\x00\x73\x00\x63\x00\x68\x00\x69\x00\x65\x00\ +\x62\x00\x74\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x61\x00\ +\x75\x00\x73\x00\x67\x00\x65\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\ +\x74\x00\x65\x00\x6e\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x65\x00\x20\x00\x7a\x00\x77\x00\x69\x00\x73\x00\ +\x63\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x32\x00\x20\x00\x50\x00\ +\x75\x00\x6e\x00\x6b\x00\x74\x00\x65\x00\x6e\x00\x2e\x00\x20\x00\ +\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x7a\x00\x75\x00\x6d\x00\ +\x20\x00\x45\x00\x69\x00\x6e\x00\x72\x00\x61\x00\x73\x00\x74\x00\ +\x65\x00\x6e\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\ +\x54\x00\x20\x00\x7a\x00\x75\x00\x6d\x00\x20\x00\x42\x00\x65\x00\ +\x73\x00\x63\x00\x68\x00\x72\x00\xe4\x00\x6e\x00\x6b\x00\x65\x00\ +\x6e\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x7a\x00\ +\x75\x00\x6d\x00\x20\x00\x4b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\ +\x72\x00\x65\x00\x6e\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\x56\ +\x00\x65\x00\x72\x00\x73\x00\x65\x00\x74\x00\x7a\x00\x65\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\xae\x00\x56\x00\x65\x00\x72\x00\x73\x00\ +\x65\x00\x74\x00\x7a\x00\x74\x00\x20\x00\x64\x00\x61\x00\x73\x00\ +\x20\x00\x61\x00\x6b\x00\x74\x00\x69\x00\x76\x00\x65\x00\x20\x00\ +\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x2c\x00\x20\x00\ +\x53\x00\x54\x00\x52\x00\x47\x00\x20\x00\x7a\x00\x75\x00\x6d\x00\ +\x20\x00\x45\x00\x69\x00\x6e\x00\x72\x00\x61\x00\x73\x00\x74\x00\ +\x65\x00\x6e\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\ +\x54\x00\x20\x00\x7a\x00\x75\x00\x6d\x00\x20\x00\x42\x00\x65\x00\ +\x73\x00\x63\x00\x68\x00\x72\x00\xe4\x00\x6e\x00\x6b\x00\x65\x00\ +\x6e\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x7a\x00\ +\x75\x00\x6d\x00\x20\x00\x4b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\ +\x72\x00\x65\x00\x6e\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\x45\ +\x00\x72\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x74\x00\x20\ +\x00\x65\x00\x69\x00\x6e\x00\x20\x00\x72\x00\x65\x00\x67\x00\x65\ +\x00\x6c\x00\x6d\x00\xe4\x00\xdf\x00\x69\x00\x67\x00\x65\x00\x73\ +\x00\x20\x00\x50\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\ +\x00\x2e\x00\x20\x00\x53\x00\x54\x00\x52\x00\x47\x00\x20\x00\x3d\ +\x00\x20\x00\x61\x00\x6e\x00\x66\x00\x61\x00\x73\x00\x73\x00\x65\ +\x00\x6e\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\ +\x00\x20\x00\x3d\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x73\x00\x63\ +\x00\x68\x00\x72\x00\xe4\x00\x6e\x00\x6b\x00\x65\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\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\x64\x00\x45\x00\x72\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\ +\x00\x74\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x32\ +\x00\x2d\x00\x50\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x2d\x00\x52\ +\x00\x65\x00\x63\x00\x68\x00\x74\x00\x65\x00\x63\x00\x6b\x00\x2e\ +\x00\x20\x00\x45\x00\x69\x00\x6e\x00\x72\x00\x61\x00\x73\x00\x74\ +\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x69\x00\x74\x00\x20\x00\x53\ +\x00\x54\x00\x52\x00\x47\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\x52\x00\x65\x00\x63\x00\x68\x00\x74\x00\x65\x00\ +\x63\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x52\x65\x63\ +\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\ +\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x0c\ +\x00\x44\x00\x72\x00\x65\x00\x68\x00\x65\x00\x6e\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\xc4\x00\x44\x00\x72\x00\x65\x00\x68\x00\x74\x00\x20\x00\ +\x64\x00\x69\x00\x65\x00\x20\x00\x61\x00\x75\x00\x73\x00\x67\x00\ +\x65\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x74\x00\x65\x00\x6e\x00\ +\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\ +\x2e\x00\x20\x00\x53\x00\x54\x00\x52\x00\x47\x00\x20\x00\x7a\x00\ +\x75\x00\x6d\x00\x20\x00\x45\x00\x69\x00\x6e\x00\x72\x00\x61\x00\ +\x73\x00\x74\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x53\x00\x48\x00\ +\x49\x00\x46\x00\x54\x00\x20\x00\x7a\x00\x75\x00\x6d\x00\x20\x00\ +\x42\x00\x65\x00\x73\x00\x63\x00\x68\x00\x72\x00\xe4\x00\x6e\x00\ +\x6b\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\ +\x20\x00\x65\x00\x72\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\ +\x74\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x4b\x00\ +\x6f\x00\x70\x00\x69\x00\x65\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\x12\x00\x53\x00\x6b\x00\x61\ +\x00\x6c\x00\x69\x00\x65\x00\x72\x00\x65\x00\x6e\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\ +\xe2\x00\x53\x00\x6b\x00\x61\x00\x6c\x00\x69\x00\x65\x00\x72\x00\ +\x74\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x6d\x00\x61\x00\ +\x72\x00\x6b\x00\x69\x00\x65\x00\x72\x00\x74\x00\x65\x00\x6e\x00\ +\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\ +\x20\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x65\x00\x69\x00\x6e\x00\ +\x65\x00\x6d\x00\x20\x00\x42\x00\x61\x00\x73\x00\x69\x00\x73\x00\ +\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x2e\x00\x20\x00\x53\x00\ +\x54\x00\x52\x00\x47\x00\x20\x00\x7a\x00\x75\x00\x6d\x00\x20\x00\ +\x45\x00\x69\x00\x6e\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\x00\ +\x6e\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\ +\x20\x00\x7a\x00\x75\x00\x6d\x00\x20\x00\x42\x00\x65\x00\x73\x00\ +\x63\x00\x68\x00\x72\x00\xe4\x00\x6e\x00\x6b\x00\x65\x00\x6e\x00\ +\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x7a\x00\x75\x00\ +\x6d\x00\x20\x00\x4b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x72\x00\ +\x65\x00\x6e\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\ +\x57\x00\xe4\x00\x68\x00\x6c\x00\x65\x00\x20\x00\x47\x00\x72\x00\ +\x75\x00\x70\x00\x70\x00\x65\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\x72\x00\x57\x00\xe4\x00\x68\x00\ +\x6c\x00\x74\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\ +\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x20\x00\ +\x6d\x00\x69\x00\x74\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x62\x00\x65\x00\x6e\x00\x20\x00\x45\x00\ +\x6c\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x20\x00\x77\x00\x69\x00\ +\x65\x00\x20\x00\x64\x00\x69\x00\x65\x00\x73\x00\x65\x00\x20\x00\ +\x47\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\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\x80\x00\x4d\x00\x61\x00\x72\x00\x6b\ +\x00\x69\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x53\x00\x69\ +\x00\x65\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x42\ +\x00\x65\x00\x61\x00\x72\x00\x62\x00\x65\x00\x69\x00\x74\x00\x75\ +\x00\x6e\x00\x67\x00\x73\x00\x65\x00\x62\x00\x65\x00\x6e\x00\x65\ +\x00\x20\x00\x66\x00\xfc\x00\x72\x00\x20\x00\x64\x00\x69\x00\x65\ +\x00\x20\x00\x47\x00\x65\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\ +\x00\x69\x00\x65\x00\x65\x00\x72\x00\x73\x00\x74\x00\x65\x00\x6c\ +\x00\x6c\x00\x75\x00\x6e\x00\x67\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\x00\x45\x00\x62\x00\x65\ +\x00\x6e\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x69\ +\x00\x65\x00\x72\x00\x65\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\x54\x00\x45\x00\x72\x00\x7a\ +\x00\x65\x00\x75\x00\x67\x00\x74\x00\x20\x00\x65\x00\x69\x00\x6e\ +\x00\x65\x00\x20\x00\x41\x00\x6e\x00\x6d\x00\x65\x00\x72\x00\x6b\ +\x00\x75\x00\x6e\x00\x67\x00\x2e\x00\x20\x00\x53\x00\x54\x00\x52\ +\x00\x47\x00\x20\x00\x7a\x00\x75\x00\x6d\x00\x20\x00\x45\x00\x69\ +\x00\x6e\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x23\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x6e\x20\x61\x6e\x6e\x6f\x74\x61\x74\x69\x6f\x6e\x2e\x20\x43\ +\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x07\x00\x00\x00\x0a\ +\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\x01\x03\x00\x00\x00\x08\ +\x00\x54\x00\x65\x00\x78\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x04\x54\x65\x78\x74\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\ +\x5f\x54\x65\x78\x74\x01\x03\x00\x00\x00\x3a\x00\x4b\x00\x6f\x00\ +\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x73\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x73\x00\ +\x20\x00\x75\x00\x6d\x00\x73\x00\x63\x00\x68\x00\x61\x00\x6c\x00\ +\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x17\x54\ +\x6f\x67\x67\x6c\x65\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x69\x6f\ +\x6e\x20\x4d\x6f\x64\x65\x07\x00\x00\x00\x1c\x44\x72\x61\x66\x74\ +\x5f\x54\x6f\x67\x67\x6c\x65\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\ +\x69\x6f\x6e\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x78\x00\x53\x00\ +\x63\x00\x68\x00\x61\x00\x6c\x00\x74\x00\x65\x00\x74\x00\x20\x00\ +\x64\x00\x65\x00\x6e\x00\x20\x00\x4b\x00\x6f\x00\x6e\x00\x73\x00\ +\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x73\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x73\x00\x20\x00\x66\x00\ +\xfc\x00\x72\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x6e\x00\ +\xe4\x00\x63\x00\x68\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x20\x00\ +\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x20\x00\ +\x75\x00\x6d\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\xaa\x00\ +\x57\x00\x65\x00\x63\x00\x68\x00\x73\x00\x65\x00\x6c\x00\x74\x00\ +\x20\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x41\x00\x6e\x00\x7a\x00\ +\x65\x00\x69\x00\x67\x00\x65\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\ +\x73\x00\x20\x00\x64\x00\x65\x00\x72\x00\x20\x00\x61\x00\x75\x00\ +\x73\x00\x67\x00\x65\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x74\x00\ +\x65\x00\x6e\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x65\x00\x20\x00\x7a\x00\x77\x00\x69\x00\x73\x00\x63\x00\ +\x68\x00\x65\x00\x6e\x00\x20\x00\x44\x00\x72\x00\x61\x00\x68\x00\ +\x74\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x6c\x00\x6c\x00\x20\x00\ +\x75\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\x30\x00\x41\x00\x6e\x00\ +\x7a\x00\x65\x00\x69\x00\x67\x00\x65\x00\x2d\x00\x4d\x00\x6f\x00\ +\x64\x00\x75\x00\x73\x00\x20\x00\x75\x00\x6d\x00\x73\x00\x63\x00\ +\x68\x00\x61\x00\x6c\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x13\x54\x6f\x67\x67\x6c\x65\x20\x64\x69\x73\x70\ +\x6c\x61\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x17\x44\x72\x61\ +\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x44\x69\x73\x70\x6c\x61\x79\ +\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\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\x42\x00\x4c\x00\x65\x00\x74\x00\ +\x7a\x00\x74\x00\x65\x00\x73\x00\x20\x00\x53\x00\x65\x00\x67\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x72\x00\xfc\x00\x63\x00\ +\x6b\x00\x67\x00\xe4\x00\x6e\x00\x67\x00\x69\x00\x67\x00\x20\x00\ +\x6d\x00\x61\x00\x63\x00\x68\x00\x65\x00\x6e\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\x42\x00\ +\x4c\x00\x65\x00\x74\x00\x7a\x00\x74\x00\x65\x00\x73\x00\x20\x00\ +\x53\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\ +\x72\x00\xfc\x00\x63\x00\x6b\x00\x67\x00\xe4\x00\x6e\x00\x67\x00\ +\x69\x00\x67\x00\x20\x00\x6d\x00\x61\x00\x63\x00\x68\x00\x65\x00\ +\x6e\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\xde\x00\x56\x00\x65\x00\x72\x00\ +\x62\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x74\x00\x20\x00\x64\x00\ +\x69\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x72\x00\x6b\x00\x69\x00\ +\x65\x00\x72\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x4f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x7a\x00\x75\x00\ +\x20\x00\x45\x00\x69\x00\x6e\x00\x65\x00\x6d\x00\x2c\x00\x20\x00\ +\x6b\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x69\x00\ +\x65\x00\x72\x00\x74\x00\x20\x00\x44\x00\x72\x00\xe4\x00\x68\x00\ +\x74\x00\x65\x00\x20\x00\x7a\x00\x75\x00\x20\x00\x61\x00\x62\x00\ +\x67\x00\x65\x00\x72\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x74\x00\ +\x65\x00\x6e\x00\x20\x00\x4b\x00\x61\x00\x6e\x00\x74\x00\x65\x00\ +\x6e\x00\x20\x00\x6f\x00\x64\x00\x65\x00\x72\x00\x20\x00\x76\x00\ +\x65\x00\x72\x00\x62\x00\x69\x00\x6e\x00\x64\x00\x65\x00\x74\x00\ +\x20\x00\x4f\x00\x62\x00\x65\x00\x72\x00\x66\x00\x6c\x00\xe4\x00\ +\x63\x00\x68\x00\x65\x00\x6e\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\x1a\x00\x41\x00\x6b\x00\x74\x00\x75\x00\x61\ +\x00\x6c\x00\x69\x00\x73\x00\x69\x00\x65\x00\x72\x00\x65\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x55\x70\x67\x72\x61\x64\ +\x65\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x55\x70\x67\x72\ +\x61\x64\x65\x01\x03\x00\x00\x00\x98\x00\x45\x00\x72\x00\x73\x00\ +\x74\x00\x65\x00\x6c\x00\x6c\x00\x74\x00\x20\x00\x65\x00\x69\x00\ +\x6e\x00\x65\x00\x20\x00\x4d\x00\x65\x00\x68\x00\x72\x00\x70\x00\ +\x75\x00\x6e\x00\x6b\x00\x74\x00\x2d\x00\x4c\x00\x69\x00\x6e\x00\ +\x69\x00\x65\x00\x6e\x00\x7a\x00\x75\x00\x67\x00\x2e\x00\x20\x00\ +\x53\x00\x54\x00\x52\x00\x47\x00\x20\x00\x7a\x00\x75\x00\x6d\x00\ +\x20\x00\x45\x00\x69\x00\x6e\x00\x72\x00\x61\x00\x73\x00\x74\x00\ +\x65\x00\x6e\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\ +\x54\x00\x20\x00\x7a\x00\x75\x00\x6d\x00\x20\x00\x42\x00\x65\x00\ +\x73\x00\x63\x00\x68\x00\x72\x00\xe4\x00\x6e\x00\x6b\x00\x65\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\x0a\x00\ +\x44\x00\x72\x00\x61\x00\x68\x00\x74\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\x2c\x00\x41\x00\x6c\x00\x74\x00\x65\x00\x72\x00\x6e\x00\ +\x61\x00\x74\x00\x69\x00\x76\x00\x65\x00\x20\x00\x53\x00\x56\x00\ +\x47\x00\x2d\x00\x4d\x00\x75\x00\x73\x00\x74\x00\x65\x00\x72\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\x94\x00\x41\x00\x6b\x00\x74\x00\x69\x00\x76\x00\x69\x00\ +\x65\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x53\x00\x69\x00\x65\x00\ +\x20\x00\x64\x00\x69\x00\x65\x00\x73\x00\x2c\x00\x20\x00\x66\x00\ +\x61\x00\x6c\x00\x6c\x00\x73\x00\x20\x00\x53\x00\x69\x00\x65\x00\ +\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x33\x00\x44\x00\x2d\x00\ +\x46\x00\x6c\x00\xe4\x00\x63\x00\x68\x00\x65\x00\x6e\x00\x20\x00\ +\x65\x00\x62\x00\x65\x00\x6e\x00\x66\x00\x61\x00\x6c\x00\x6c\x00\ +\x73\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x69\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\xf6\x00\x63\x00\x68\x00\ +\x74\x00\x65\x00\x6e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x3f\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x79\ +\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x61\x72\x65\x61\ +\x73\x20\x28\x33\x44\x20\x66\x61\x63\x65\x73\x29\x20\x74\x6f\x20\ +\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x20\x74\x6f\x6f\x2e\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\xd0\x00\x41\x00\x6b\x00\x74\x00\x69\ +\x00\x76\x00\x69\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x53\ +\x00\x69\x00\x65\x00\x20\x00\x64\x00\x69\x00\x65\x00\x73\x00\x65\ +\x00\x20\x00\x4f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2c\ +\x00\x20\x00\x77\x00\x65\x00\x6e\x00\x6e\x00\x20\x00\x53\x00\x69\ +\x00\x65\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\x00\x74\x00\x20\ +\x00\x62\x00\x65\x00\x6e\x00\x61\x00\x6e\x00\x6e\x00\x74\x00\x65\ +\x00\x20\x00\x42\x00\x6c\x00\xf6\x00\x63\x00\x6b\x00\x65\x00\x20\ +\x00\x28\x00\x62\x00\x65\x00\x67\x00\x69\x00\x6e\x00\x6e\x00\x65\ +\x00\x6e\x00\x64\x00\x20\x00\x6d\x00\x69\x00\x74\x00\x20\x00\x61\ +\x00\x20\x00\x2a\x00\x29\x00\x20\x00\x61\x00\x75\x00\x63\x00\x68\ +\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x69\ +\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\xf6\x00\x63\ +\x00\x68\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x53\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\ +\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x6e\x6f\x6e\ +\x2d\x6e\x61\x6d\x65\x64\x20\x62\x6c\x6f\x63\x6b\x73\x20\x28\x62\ +\x65\x67\x69\x6e\x6e\x69\x6e\x67\x20\x77\x69\x74\x68\x20\x61\x20\ +\x2a\x29\x20\x74\x6f\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\ +\x64\x20\x74\x6f\x6f\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x4b\x00\ +\x72\x00\x65\x00\x69\x00\x73\x00\x20\x00\x35\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x43\x69\x72\x63\x6c\x65\x20\x35\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0e\x00\x4b\x00\x72\x00\x65\x00\x69\x00\x73\x00\ +\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x43\x69\x72\ +\x63\x6c\x65\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x4b\x00\ +\x72\x00\x65\x00\x69\x00\x73\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\x4c\x00\x46\x00\x61\x00\x72\x00\x62\x00\x65\x00\ +\x20\x00\x77\x00\x69\x00\x72\x00\x64\x00\x20\x00\x64\x00\x65\x00\ +\x72\x00\x20\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\x65\x00\x6e\x00\ +\x73\x00\x74\x00\xe4\x00\x72\x00\x6b\x00\x65\x00\x20\x00\x7a\x00\ +\x75\x00\x67\x00\x65\x00\x6f\x00\x72\x00\x64\x00\x6e\x00\x65\x00\ +\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x43\x6f\x6c\x6f\x72\ +\x20\x6d\x61\x70\x70\x65\x64\x20\x74\x6f\x20\x6c\x69\x6e\x65\x77\ +\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x44\x00\x61\ +\x00\x74\x00\x65\x00\x69\x00\x20\x00\x7a\x00\x75\x00\x72\x00\x20\ +\x00\x46\x00\x61\x00\x72\x00\x62\x00\x7a\x00\x75\x00\x6f\x00\x72\ +\x00\x64\x00\x75\x00\x6e\x00\x67\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\x74\x00\x69\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\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x73\x00\x66\x00\x61\x00\x72\x00\x62\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\x30\x00\x4b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\ +\x75\x00\x6b\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x67\x00\ +\x72\x00\x75\x00\x70\x00\x70\x00\x65\x00\x6e\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\x26\x00\x44\x00\x58\x00\x46\x00\ +\x2d\x00\x46\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x20\x00\ +\x4f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x6e\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\x1a\x00\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\ +\x72\x00\x64\x00\x66\x00\x61\x00\x72\x00\x62\x00\x65\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\x00\x53\x00\x74\ +\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x68\x00\xf6\ +\x00\x68\x00\x65\x00\x20\x00\x66\x00\xfc\x00\x72\x00\x20\x00\x54\ +\x00\x65\x00\x78\x00\x74\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x64\ +\x00\x20\x00\x42\x00\x65\x00\x6d\x00\x61\x00\xdf\x00\x75\x00\x6e\ +\x00\x67\x00\x65\x00\x6e\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\x2a\x00\ +\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\ +\x2d\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\x65\x00\x6e\x00\x62\x00\ +\x72\x00\x65\x00\x69\x00\x74\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\x20\x00\x53\x00\x74\ +\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x20\x00\x56\ +\x00\x6f\x00\x72\x00\x6c\x00\x61\x00\x67\x00\x65\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\x2d\x00\x53\x00\x63\x00\x68\x00\x72\x00\x69\ +\x00\x66\x00\x74\x00\x61\x00\x72\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x11\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x78\x74\ +\x20\x66\x6f\x6e\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x53\x00\ +\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x2d\x00\ +\x54\x00\x65\x00\x78\x00\x74\x00\x68\x00\xf6\x00\x68\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x13\x44\x65\x66\x61\x75\x6c\x74\ +\x20\x74\x65\x78\x74\x20\x68\x65\x69\x67\x68\x74\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x2c\x00\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\ +\x00\x72\x00\x64\x00\x2d\x00\x41\x00\x72\x00\x62\x00\x65\x00\x69\ +\x00\x74\x00\x73\x00\x73\x00\x65\x00\x62\x00\x65\x00\x6e\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x44\x65\x66\x61\x75\x6c\ +\x74\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x3e\x00\x41\x00\x62\x00\x6d\x00\x65\x00\ +\x73\x00\x73\x00\x75\x00\x6e\x00\x67\x00\x73\x00\x20\x00\x26\x00\ +\x20\x00\x46\x00\xfc\x00\x68\x00\x72\x00\x75\x00\x6e\x00\x67\x00\ +\x73\x00\x70\x00\x66\x00\x65\x00\x69\x00\x6c\x00\x2d\x00\x53\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\x0e\x00\x50\x00\x75\x00\x6e\x00\x6b\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\x0e\x00\x50\x00\x75\x00\ +\x6e\x00\x6b\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\x0e\ +\x00\x50\x00\x75\x00\x6e\x00\x6b\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\ +\x36\x00\x46\x00\xfc\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x4f\x00\ +\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x73\x00\ +\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x6d\x00\ +\xe4\x00\xdf\x00\x69\x00\x67\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\x40\ +\x00\x47\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x65\x00\x6c\x00\x6c\ +\x00\x65\x00\x20\x00\x45\x00\x6e\x00\x74\x00\x77\x00\x75\x00\x72\ +\x00\x66\x00\x73\x00\x2d\x00\x45\x00\x69\x00\x6e\x00\x73\x00\x74\ +\x00\x65\x00\x6c\x00\x6c\x00\x75\x00\x6e\x00\x67\x00\x65\x00\x6e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x30\x00\x41\x00\x6c\x00\x6c\x00\x67\ +\x00\x65\x00\x6d\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x45\ +\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x75\ +\x00\x6e\x00\x67\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\ +\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x47\x00\x6c\x00\x6f\ +\x00\x62\x00\x61\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x4b\x00\x6f\ +\x00\x70\x00\x69\x00\x65\x00\x72\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\x1a\x00\x52\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\ +\x00\x61\x00\x62\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\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\x48\x00\x48\x00\x69\x00\x65\x00\x72\x00\x20\ +\x00\x6b\x00\xf6\x00\x6e\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x53\ +\x00\x69\x00\x65\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x20\x00\x56\ +\x00\x65\x00\x72\x00\x7a\x00\x65\x00\x69\x00\x63\x00\x68\x00\x6e\ +\x00\x69\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x65\x00\x62\ +\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x64\x00\x61\x00\x73\x00\x20\ +\x00\x53\x00\x56\x00\x47\x00\x2d\x00\x44\x00\x61\x00\x74\x00\x65\ +\x00\x69\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x69\x00\x74\x00\x20\ +\x00\x3c\x00\x70\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x6e\ +\x00\x3e\x00\x2d\x00\x44\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x65\ +\x00\x6e\x00\x74\x00\x68\x00\xe4\x00\x6c\x00\x74\x00\x2e\x00\x20\ +\x00\x44\x00\x69\x00\x65\x00\x73\x00\x65\x00\x20\x00\x77\x00\x65\ +\x00\x72\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x7a\x00\x75\x00\x20\ +\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x53\x00\x74\x00\x61\x00\x6e\ +\x00\x64\x00\x61\x00\x72\x00\x64\x00\x2d\x00\x45\x00\x6e\x00\x74\ +\x00\x77\x00\x75\x00\x72\x00\x66\x00\x73\x00\x2d\x00\x53\x00\x63\ +\x00\x68\x00\x72\x00\x61\x00\x66\x00\x66\x00\x69\x00\x65\x00\x72\ +\x00\x75\x00\x6e\x00\x67\x00\x73\x00\x6d\x00\x75\x00\x73\x00\x74\ +\x00\x65\x00\x72\x00\x6e\x00\x20\x00\x68\x00\x69\x00\x6e\x00\x7a\ +\x00\x75\x00\x67\x00\x65\x00\x66\x00\xfc\x00\x67\x00\x74\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\x01\x1c\ +\x00\x46\x00\x61\x00\x6c\x00\x6c\x00\x73\x00\x20\x00\x61\x00\x6b\ +\x00\x74\x00\x69\x00\x76\x00\x69\x00\x65\x00\x72\x00\x74\x00\x2c\ +\x00\x20\x00\x77\x00\x65\x00\x72\x00\x64\x00\x65\x00\x6e\x00\x20\ +\x00\x7a\x00\x75\x00\x73\x00\x61\x00\x6d\x00\x6d\x00\x65\x00\x6e\ +\x00\x74\x00\x72\x00\x65\x00\x66\x00\x66\x00\x65\x00\x6e\x00\x64\ +\x00\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\ +\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x73\x00\x20\x00\x4c\x00\x69\ +\x00\x6e\x00\x69\x00\x65\x00\x6e\x00\x7a\x00\xfc\x00\x67\x00\x65\ +\x00\x20\x00\x28\x00\x57\x00\x69\x00\x72\x00\x65\x00\x73\x00\x29\ +\x00\x20\x00\x7a\x00\x75\x00\x73\x00\x61\x00\x6d\x00\x6d\x00\x65\ +\x00\x6e\x00\x67\x00\x65\x00\x66\x00\x61\x00\x73\x00\x73\x00\x74\ +\x00\x2e\x00\x20\x00\x41\x00\x63\x00\x68\x00\x74\x00\x75\x00\x6e\ +\x00\x67\x00\x2c\x00\x20\x00\x64\x00\x69\x00\x65\x00\x73\x00\x20\ +\x00\x6b\x00\x61\x00\x6e\x00\x6e\x00\x20\x00\x65\x00\x69\x00\x6e\ +\x00\x69\x00\x67\x00\x65\x00\x20\x00\x5a\x00\x65\x00\x69\x00\x74\ +\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x41\x00\x6e\x00\x73\x00\x70\ +\x00\x72\x00\x75\x00\x63\x00\x68\x00\x20\x00\x6e\x00\x65\x00\x68\ +\x00\x6d\x00\x65\x00\x6e\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\x26\x00\x57\x00\x65\x00\x6e\x00\x6e\ +\x00\x20\x00\x64\x00\x69\x00\x65\x00\x73\x00\x65\x00\x73\x00\x20\ +\x00\x4b\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x6f\x00\x6c\x00\x6c\ +\x00\x6b\x00\xe4\x00\x73\x00\x74\x00\x63\x00\x68\x00\x65\x00\x6e\ +\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x69\x00\x76\x00\x69\x00\x65\ +\x00\x72\x00\x74\x00\x20\x00\x69\x00\x73\x00\x74\x00\x2c\x00\x20\ +\x00\x77\x00\x69\x00\x72\x00\x64\x00\x20\x00\x64\x00\x65\x00\x72\ +\x00\x20\x00\x4b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x72\x00\x6d\ +\x00\x6f\x00\x64\x00\x75\x00\x73\x00\x20\x00\xfc\x00\x62\x00\x65\ +\x00\x72\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x42\x00\x65\ +\x00\x66\x00\x65\x00\x68\x00\x6c\x00\x20\x00\x68\x00\x69\x00\x6e\ +\x00\x61\x00\x75\x00\x73\x00\x20\x00\x67\x00\x65\x00\x68\x00\x61\ +\x00\x6c\x00\x74\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x73\x00\x6f\ +\x00\x6e\x00\x73\x00\x74\x00\x20\x00\x62\x00\x65\x00\x67\x00\x69\ +\x00\x6e\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x42\x00\x65\x00\x66\ +\x00\x65\x00\x68\x00\x6c\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x6d\ +\x00\x65\x00\x72\x00\x20\x00\x69\x00\x6d\x00\x20\x00\x4e\x00\x69\ +\x00\x63\x00\x68\x00\x74\x00\x2d\x00\x4b\x00\x6f\x00\x70\x00\x69\ +\x00\x65\x00\x72\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\x01\x08\x00\ +\x57\x00\x65\x00\x6e\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x65\x00\ +\x73\x00\x65\x00\x73\x00\x20\x00\x4b\x00\x6f\x00\x6e\x00\x74\x00\ +\x72\x00\x6f\x00\x6c\x00\x6c\x00\x6b\x00\xe4\x00\x73\x00\x74\x00\ +\x63\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x6b\x00\x74\x00\ +\x69\x00\x76\x00\x69\x00\x65\x00\x72\x00\x74\x00\x20\x00\x69\x00\ +\x73\x00\x74\x00\x2c\x00\x20\x00\x65\x00\x72\x00\x73\x00\x63\x00\ +\x68\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x64\x00\ +\x69\x00\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x65\x00\x20\x00\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\ +\x61\x00\x72\x00\x64\x00\x66\x00\xfc\x00\x6c\x00\x6c\x00\x75\x00\ +\x6e\x00\x67\x00\x2e\x00\x20\x00\x41\x00\x6e\x00\x64\x00\x65\x00\ +\x72\x00\x6e\x00\x66\x00\x61\x00\x6c\x00\x6c\x00\x73\x00\x20\x00\ +\x77\x00\x65\x00\x72\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x53\x00\ +\x69\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x73\x00\x20\x00\x44\x00\ +\x72\x00\x61\x00\x68\x00\x74\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\ +\x6c\x00\x6c\x00\x20\x00\x61\x00\x6e\x00\x67\x00\x65\x00\x7a\x00\ +\x65\x00\x69\x00\x67\x00\x74\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\x60\x00\ +\x57\x00\x65\x00\x6e\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x65\x00\ +\x73\x00\x65\x00\x73\x00\x20\x00\x4b\x00\x6f\x00\x6e\x00\x74\x00\ +\x72\x00\x6f\x00\x6c\x00\x6c\x00\x6b\x00\xe4\x00\x73\x00\x74\x00\ +\x63\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x6b\x00\x74\x00\ +\x69\x00\x76\x00\x69\x00\x65\x00\x72\x00\x74\x00\x20\x00\x69\x00\ +\x73\x00\x74\x00\x2c\x00\x20\x00\x77\x00\x65\x00\x72\x00\x64\x00\ +\x65\x00\x6e\x00\x20\x00\x53\x00\x69\x00\x65\x00\x20\x00\x69\x00\ +\x6d\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x7a\x00\x75\x00\x20\x00\ +\x76\x00\x6f\x00\x72\x00\x68\x00\x61\x00\x6e\x00\x64\x00\x65\x00\ +\x6e\x00\x65\x00\x6e\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x77\x00\xe4\x00\x68\x00\ +\x72\x00\x65\x00\x6e\x00\x64\x00\x20\x00\x64\x00\x65\x00\x73\x00\ +\x20\x00\x5a\x00\x65\x00\x69\x00\x63\x00\x68\x00\x6e\x00\x65\x00\ +\x6e\x00\x73\x00\x20\x00\x73\x00\x70\x00\x72\x00\x69\x00\x6e\x00\ +\x67\x00\x65\x00\x6e\x00\x2e\x00\x20\x00\x57\x00\x65\x00\x6e\x00\ +\x6e\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\x00\x74\x00\x2c\x00\ +\x20\x00\x77\x00\x65\x00\x72\x00\x64\x00\x65\x00\x6e\x00\x20\x00\ +\x53\x00\x69\x00\x65\x00\x20\x00\x6e\x00\x75\x00\x72\x00\x20\x00\ +\x73\x00\x70\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x6e\x00\ +\x2c\x00\x20\x00\x77\x00\x65\x00\x6e\x00\x6e\x00\x20\x00\x53\x00\ +\x69\x00\x65\x00\x20\x00\x53\x00\x54\x00\x52\x00\x47\x00\x20\x00\ +\x64\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x65\x00\x6e\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\x26\x00\x2a\x00\x62\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x73\ +\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x69\ +\x00\x65\x00\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\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\x2e\x00\x49\x00\x6d\x00\x70\x00\x6f\ +\x00\x72\x00\x74\x00\x69\x00\x65\x00\x72\x00\x74\x00\x20\x00\x4f\ +\x00\x43\x00\x41\x00\x20\x00\x42\x00\x65\x00\x72\x00\x65\x00\x69\ +\x00\x63\x00\x68\x00\x65\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\x24\x00\x49\x00\x6d\x00\x70\x00\x6f\ +\x00\x72\x00\x74\x00\x69\x00\x65\x00\x72\x00\x65\x00\x20\x00\x4c\ +\x00\x61\x00\x79\x00\x6f\x00\x75\x00\x74\x00\x73\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\x20\x00\x49\x00\x6d\ +\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x69\x00\x65\x00\x72\x00\x65\ +\x00\x20\x00\x53\x00\x74\x00\x79\x00\x6c\x00\x65\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\x4c\x00\x49\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x69\x00\x65\x00\x72\x00\x65\x00\x6e\ +\x00\x20\x00\x76\x00\x6f\x00\x6e\x00\x20\x00\x54\x00\x65\x00\x78\ +\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x20\ +\x00\x44\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\ +\x00\x6e\x00\x65\x00\x6e\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\x32\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x69\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x2f\x00\x20\x00\ +\x45\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x69\x00\x65\x00\ +\x72\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x47\ +\x00\x65\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x65\ +\x00\x20\x00\x76\x00\x65\x00\x72\x00\x65\x00\x69\x00\x6e\x00\x65\ +\x00\x6e\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\x2d\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\x08\x00\x4b\x00\x65\x00\ +\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x6f\x6e\ +\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x4b\x00\x65\x00\x69\x00\ +\x6e\x00\x20\x00\x28\x00\x73\x00\x63\x00\x68\x00\x6e\x00\x65\x00\ +\x6c\x00\x6c\x00\x73\x00\x74\x00\x65\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\x38\x00\x45\x00\x69\x00\x6e\ +\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x75\x00\x6e\x00\x67\ +\x00\x65\x00\x6e\x00\x20\x00\x66\x00\xfc\x00\x72\x00\x20\x00\x4f\ +\x00\x43\x00\x41\x00\x20\x00\x46\x00\x6f\x00\x72\x00\x6d\x00\x61\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4f\x43\x41\x20\ +\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x48\x00\x55\x00\x72\x00\x73\x00\x70\x00\x72\ +\x00\xfc\x00\x6e\x00\x67\x00\x6c\x00\x69\x00\x63\x00\x68\x00\x65\ +\x00\x20\x00\x46\x00\x61\x00\x72\x00\x62\x00\x65\x00\x20\x00\x75\ +\x00\x6e\x00\x64\x00\x20\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\x65\ +\x00\x6e\x00\x73\x00\x74\x00\xe4\x00\x72\x00\x6b\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1c\x4f\x72\x69\x67\x69\x6e\x61\x6c\ +\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\ +\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x52\x00\x65\ +\x00\x63\x00\x68\x00\x74\x00\x73\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\x38\x00\ +\x45\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\ +\x75\x00\x6e\x00\x67\x00\x65\x00\x6e\x00\x20\x00\x66\x00\xfc\x00\ +\x72\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x46\x00\x6f\x00\ +\x72\x00\x6d\x00\x61\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x12\x53\x56\x47\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\ +\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x82\x00\x53\x00\x70\x00\ +\x65\x00\x69\x00\x63\x00\x68\x00\x65\x00\x72\x00\x6e\x00\x20\x00\ +\x64\x00\x65\x00\x72\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x75\x00\ +\x65\x00\x6c\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x46\x00\x61\x00\ +\x72\x00\x62\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\ +\x4c\x00\x69\x00\x6e\x00\x69\x00\x65\x00\x6e\x00\x62\x00\x72\x00\ +\x65\x00\x69\x00\x74\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\x00\ +\x61\x00\x6c\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x53\x00\x69\x00\ +\x74\x00\x7a\x00\x75\x00\x6e\x00\x67\x00\x65\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x30\x53\x61\x76\x65\x20\x63\x75\x72\x72\ +\x65\x6e\x74\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\ +\x6e\x65\x77\x69\x64\x74\x68\x20\x61\x63\x72\x6f\x73\x73\x20\x73\ +\x65\x73\x73\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\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\x1e\x00\x46\x00\x61\x00\x72\x00\ +\x62\x00\x65\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x72\x00\x61\x00\ +\x73\x00\x74\x00\x65\x00\x6e\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\x66\x00\x44\ +\x00\x69\x00\x65\x00\x20\x00\x44\x00\x61\x00\x74\x00\x65\x00\x69\ +\x00\x20\x00\x7a\x00\x75\x00\x72\x00\x20\x00\x5a\x00\x75\x00\x6f\ +\x00\x72\x00\x64\x00\x6e\x00\x75\x00\x6e\x00\x67\x00\x20\x00\x76\ +\x00\x6f\x00\x6e\x00\x20\x00\x46\x00\x61\x00\x72\x00\x62\x00\x65\ +\x00\x6e\x00\x20\x00\x7a\x00\x75\x00\x20\x00\x4c\x00\x69\x00\x6e\ +\x00\x69\x00\x65\x00\x6e\x00\x73\x00\x74\x00\xe4\x00\x72\x00\x6b\ +\x00\x65\x00\x6e\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\x6e\x00\x44\x00\x69\x00\x65\x00\x20\x00\ +\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\ +\x76\x00\x6f\x00\x72\x00\x6c\x00\x61\x00\x67\x00\x65\x00\x20\x00\ +\x7a\x00\x75\x00\x6d\x00\x20\x00\x45\x00\x72\x00\x73\x00\x74\x00\ +\x65\x00\x6c\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x69\x00\ +\x6e\x00\x65\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x75\x00\x65\x00\ +\x6e\x00\x20\x00\x5a\x00\x65\x00\x69\x00\x63\x00\x68\x00\x6e\x00\ +\x75\x00\x6e\x00\x67\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\xa4\x00\x44\x00\x69\x00\x65\x00\x20\x00\x41\x00\x6e\ +\x00\x7a\x00\x61\x00\x68\x00\x6c\x00\x20\x00\x64\x00\x65\x00\x72\ +\x00\x20\x00\x44\x00\x65\x00\x7a\x00\x69\x00\x6d\x00\x61\x00\x6c\ +\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x6e\x00\x20\ +\x00\x69\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\ +\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x4b\x00\x6f\x00\x6f\x00\x72\ +\x00\x64\x00\x69\x00\x6e\x00\x61\x00\x74\x00\x65\x00\x6e\x00\x20\ +\x00\x4f\x00\x70\x00\x65\x00\x72\x00\x61\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x28\x00\x7a\x00\x2e\x00\x42\ +\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\xa8\x00\x44\x00\x69\x00\ +\x65\x00\x73\x00\x20\x00\x69\x00\x73\x00\x74\x00\x20\x00\x64\x00\ +\x69\x00\x65\x00\x20\x00\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\ +\x61\x00\x72\x00\x64\x00\x66\x00\x61\x00\x72\x00\x62\x00\x65\x00\ +\x20\x00\x66\x00\xfc\x00\x72\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x65\x00\x2c\x00\x20\x00\x64\x00\x69\x00\ +\x65\x00\x20\x00\x69\x00\x6d\x00\x20\x00\x4b\x00\x6f\x00\x6e\x00\ +\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x73\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x73\x00\x20\x00\ +\x67\x00\x65\x00\x7a\x00\x65\x00\x69\x00\x63\x00\x68\x00\x6e\x00\ +\x65\x00\x74\x00\x20\x00\x77\x00\x65\x00\x72\x00\x64\x00\x65\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\x0e\x00\x44\x00\x69\x00\x65\x00\x73\x00\x20\x00\x69\x00\x73\ +\x00\x74\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x53\x00\x74\ +\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x2d\x00\x53\ +\x00\x63\x00\x68\x00\x72\x00\x69\x00\x66\x00\x74\x00\x61\x00\x72\ +\x00\x74\x00\x20\x00\x66\x00\xfc\x00\x72\x00\x20\x00\x61\x00\x6c\ +\x00\x6c\x00\x65\x00\x20\x00\x54\x00\x65\x00\x78\x00\x74\x00\x65\ +\x00\x6e\x00\x74\x00\x77\x00\xfc\x00\x72\x00\x66\x00\x65\x00\x20\ +\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x44\x00\x69\x00\x6d\x00\x65\ +\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x2e\ +\x00\x20\x00\x45\x00\x73\x00\x20\x00\x6b\x00\x61\x00\x6e\x00\x6e\ +\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x53\x00\x63\ +\x00\x68\x00\x72\x00\x69\x00\x66\x00\x74\x00\x61\x00\x72\x00\x74\ +\x00\x20\x00\x77\x00\x69\x00\x65\x00\x20\x00\x22\x00\x41\x00\x72\ +\x00\x69\x00\x61\x00\x6c\x00\x22\x00\x2c\x00\x20\x00\x65\x00\x69\ +\x00\x6e\x00\x20\x00\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\ +\x00\x72\x00\x64\x00\x2d\x00\x53\x00\x74\x00\x69\x00\x6c\x00\x20\ +\x00\x77\x00\x69\x00\x65\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\x6f\x00\x64\x00\x65\x00\x72\ +\x00\x20\x00\x22\x00\x6d\x00\x6f\x00\x6e\x00\x6f\x00\x22\x00\x2c\ +\x00\x20\x00\x6f\x00\x64\x00\x65\x00\x72\x00\x20\x00\x65\x00\x69\ +\x00\x6e\x00\x65\x00\x20\x00\x46\x00\x61\x00\x6d\x00\x69\x00\x6c\ +\x00\x69\x00\x65\x00\x20\x00\x77\x00\x69\x00\x65\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\x6f\x00\x64\x00\x65\x00\x72\x00\x20\x00\x65\x00\x69\x00\x6e\ +\x00\x65\x00\x6e\x00\x20\x00\x4e\x00\x61\x00\x6d\x00\x65\x00\x6e\ +\x00\x20\x00\x6d\x00\x69\x00\x74\x00\x20\x00\x65\x00\x69\x00\x6e\ +\x00\x65\x00\x6d\x00\x20\x00\x53\x00\x74\x00\x69\x00\x6c\x00\x20\ +\x00\x77\x00\x69\x00\x65\x00\x20\x00\x22\x00\x20\x00\x41\x00\x72\ +\x00\x69\x00\x61\x00\x6c\x00\x3a\x00\x20\x00\x42\x00\x6f\x00\x6c\ +\x00\x64\x00\x20\x00\x22\x00\x20\x00\x73\x00\x65\x00\x69\x00\x6e\ +\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\x80\x00\x44\x00\x69\x00\x65\x00\x73\x00\x20\x00\x69\ +\x00\x73\x00\x74\x00\x20\x00\x64\x00\x65\x00\x72\x00\x20\x00\x53\ +\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x2d\ +\x00\x47\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\x00\x6e\x00\x6e\ +\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x66\x00\xfc\x00\x72\x00\x20\ +\x00\x64\x00\x69\x00\x65\x00\x20\x00\x4b\x00\x6f\x00\x6e\x00\x73\ +\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x00\x73\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\ +\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x38\x54\x68\ +\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\ +\x74\x20\x67\x72\x6f\x75\x70\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\ +\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x67\x65\ +\x6f\x6d\x65\x74\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x98\x00\x44\ +\x00\x61\x00\x73\x00\x20\x00\x69\x00\x73\x00\x74\x00\x20\x00\x64\ +\x00\x69\x00\x65\x00\x20\x00\x61\x00\x75\x00\x73\x00\x67\x00\x65\ +\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x74\x00\x20\x00\x4d\x00\x65\ +\x00\x74\x00\x68\x00\x6f\x00\x64\x00\x65\x00\x2c\x00\x20\x00\x53\ +\x00\x56\x00\x47\x00\x2d\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\x00\x65\x00\x66\x00\x61\x00\x72\x00\x62\x00\x65\x00\x6e\ +\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\ +\x00\x43\x00\x41\x00\x44\x00\x20\x00\x7a\x00\x75\x00\x20\x00\x69\ +\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x69\x00\x65\x00\x72\ +\x00\x65\x00\x6e\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\x9c\x00\ +\x44\x00\x61\x00\x73\x00\x20\x00\x69\x00\x73\x00\x74\x00\x20\x00\ +\x64\x00\x69\x00\x65\x00\x20\x00\x67\x00\x65\x00\x77\x00\xe4\x00\ +\x68\x00\x6c\x00\x74\x00\x65\x00\x20\x00\x4d\x00\x65\x00\x74\x00\ +\x68\x00\x6f\x00\x64\x00\x65\x00\x2c\x00\x20\x00\x75\x00\x6d\x00\ +\x20\x00\x44\x00\x58\x00\x46\x00\x2d\x00\x4f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x66\x00\x61\x00\x72\x00\x62\x00\x65\x00\ +\x6e\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x46\x00\x72\x00\x65\x00\ +\x65\x00\x43\x00\x41\x00\x44\x00\x20\x00\x7a\x00\x75\x00\x20\x00\ +\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x69\x00\x65\x00\ +\x72\x00\x65\x00\x6e\x00\x2e\x00\x20\x00\x0a\x00\x46\x00\x61\x00\ +\x6c\x00\x6c\x00\x73\x00\x20\x00\x46\x00\x61\x00\x72\x00\x62\x00\ +\x7a\x00\x75\x00\x6f\x00\x72\x00\x64\x00\x6e\x00\x75\x00\x6e\x00\ +\x67\x00\x20\x00\x61\x00\x75\x00\x73\x00\x67\x00\x65\x00\x77\x00\ +\xe4\x00\x68\x00\x6c\x00\x74\x00\x20\x00\x69\x00\x73\x00\x74\x00\ +\x2c\x00\x20\x00\x6d\x00\xfc\x00\x73\x00\x73\x00\x65\x00\x6e\x00\ +\x20\x00\x53\x00\x69\x00\x65\x00\x20\x00\x65\x00\x69\x00\x6e\x00\ +\x65\x00\x20\x00\x44\x00\x61\x00\x74\x00\x65\x00\x69\x00\x20\x00\ +\x6d\x00\x69\x00\x74\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x65\x00\ +\x72\x00\x20\x00\x4c\x00\x6f\x00\x6f\x00\x6b\x00\x2d\x00\x75\x00\ +\x70\x00\x2d\x00\x54\x00\x61\x00\x62\x00\x65\x00\x6c\x00\x6c\x00\ +\x65\x00\x20\x00\x6c\x00\x61\x00\x64\x00\x65\x00\x6e\x00\x2c\x00\ +\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x46\x00\x61\x00\x72\x00\ +\x62\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x4c\x00\ +\x69\x00\x6e\x00\x69\x00\x65\x00\x6e\x00\x73\x00\x74\x00\xe4\x00\ +\x72\x00\x6b\x00\x65\x00\x6e\x00\x20\x00\x77\x00\x61\x00\x6e\x00\ +\x64\x00\x65\x00\x6c\x00\x74\x00\x2e\x00\x0a\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\xe3\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\ +\x20\x6d\x65\x74\x68\x6f\x64\x20\x63\x68\x6f\x6f\x73\x65\x64\x20\ +\x66\x6f\x72\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\x6f\x72\ +\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x44\x58\x46\ +\x20\x6f\x62\x6a\x65\x63\x74\x20\x63\x6f\x6c\x6f\x72\x20\x69\x6e\ +\x74\x6f\x20\x46\x72\x65\x65\x43\x41\x44\x2e\x20\x0a\x49\x66\x20\ +\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x69\x73\ +\x20\x63\x68\x6f\x6f\x73\x65\x64\x2c\x20\x79\x6f\x75\x20\x6d\x75\ +\x73\x74\x20\x63\x68\x6f\x6f\x73\x65\x20\x61\x20\x63\x6f\x6c\x6f\ +\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x63\ +\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x61\x20\x74\x72\x61\x6e\ +\x73\x6c\x61\x74\x69\x6f\x6e\x20\x74\x61\x62\x6c\x65\x20\x74\x68\ +\x61\x74\x20\x77\x69\x6c\x6c\x20\x63\x6f\x6e\x76\x65\x72\x74\x20\ +\x63\x6f\x6c\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\x65\ +\x77\x69\x64\x74\x68\x73\x2e\x0a\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xfc\ +\x00\x54\x00\x68\x00\x69\x00\x73\x00\x20\x00\x69\x00\x73\x00\x20\ +\x00\x74\x00\x68\x00\x65\x00\x20\x00\x6f\x00\x72\x00\x69\x00\x65\ +\x00\x6e\x00\x74\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\ +\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x64\ +\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\ +\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x73\x00\x20\x00\x77\ +\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x74\x00\x68\x00\x6f\x00\x73\ +\x00\x65\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\ +\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x61\x00\x72\x00\x65\ +\x00\x20\x00\x76\x00\x65\x00\x72\x00\x74\x00\x69\x00\x63\x00\x61\ +\x00\x6c\x00\x2e\x00\x20\x00\x44\x00\x65\x00\x66\x00\x61\x00\x75\ +\x00\x6c\x00\x74\x00\x20\x00\x69\x00\x73\x00\x20\x00\x6c\x00\x65\ +\x00\x66\x00\x74\x00\x2c\x00\x20\x00\x77\x00\x68\x00\x69\x00\x63\ +\x00\x68\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\ +\x00\x20\x00\x49\x00\x53\x00\x4f\x00\x20\x00\x73\x00\x74\x00\x61\ +\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\x00\x2e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x7e\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\ +\x65\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\x6f\x66\ +\x20\x74\x68\x65\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x20\x74\ +\x65\x78\x74\x73\x20\x77\x68\x65\x6e\x20\x74\x68\x6f\x73\x65\x20\ +\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x61\x72\x65\x20\x76\ +\x65\x72\x74\x69\x63\x61\x6c\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\ +\x20\x69\x73\x20\x6c\x65\x66\x74\x2c\x20\x77\x68\x69\x63\x68\x20\ +\x69\x73\x20\x74\x68\x65\x20\x49\x53\x4f\x20\x73\x74\x61\x6e\x64\ +\x61\x72\x64\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x1c\x00\x44\x00\x69\ +\x00\x65\x00\x73\x00\x65\x00\x72\x00\x20\x00\x57\x00\x65\x00\x72\ +\x00\x74\x00\x20\x00\x77\x00\x69\x00\x72\x00\x64\x00\x20\x00\x76\ +\x00\x6f\x00\x6e\x00\x20\x00\x46\x00\x75\x00\x6e\x00\x6b\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x65\ +\x00\x72\x00\x77\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x74\x00\x2c\ +\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x54\x00\x6f\x00\x6c\ +\x00\x65\x00\x72\x00\x61\x00\x6e\x00\x7a\x00\x65\x00\x6e\x00\x20\ +\x00\x62\x00\x65\x00\x6e\x00\x75\x00\x74\x00\x7a\x00\x65\x00\x6e\ +\x00\x2e\x00\x0a\x00\x57\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\ +\x00\x6d\x00\x69\x00\x74\x00\x20\x00\x44\x00\x69\x00\x66\x00\x66\ +\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x7a\x00\x65\x00\x6e\x00\x20\ +\x00\x75\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x68\x00\x61\x00\x6c\ +\x00\x62\x00\x20\x00\x64\x00\x69\x00\x65\x00\x73\x00\x65\x00\x6e\ +\x00\x20\x00\x57\x00\x65\x00\x72\x00\x74\x00\x65\x00\x73\x00\x20\ +\x00\x77\x00\x65\x00\x72\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x61\ +\x00\x6c\x00\x73\x00\x20\x00\x67\x00\x6c\x00\x65\x00\x69\x00\x63\ +\x00\x68\x00\x20\x00\x62\x00\x65\x00\x68\x00\x61\x00\x6e\x00\x64\ +\x00\x65\x00\x6c\x00\x74\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x7b\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x76\x61\ +\x6c\x75\x65\x20\x75\x73\x65\x64\x20\x62\x79\x20\x66\x75\x6e\x63\ +\x74\x69\x6f\x6e\x73\x20\x74\x68\x61\x74\x20\x75\x73\x65\x20\x61\ +\x20\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x2e\x0a\x56\x61\x6c\x75\ +\x65\x73\x20\x77\x69\x74\x68\x20\x64\x69\x66\x66\x65\x72\x65\x6e\ +\x63\x65\x73\x20\x62\x65\x6c\x6f\x77\x20\x74\x68\x69\x73\x20\x76\ +\x61\x6c\x75\x65\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x74\x72\x65\ +\x61\x74\x65\x64\x20\x61\x73\x20\x73\x61\x6d\x65\x2e\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x10\x00\x54\x00\x6f\x00\x6c\x00\x65\x00\x72\x00\ +\x61\x00\x6e\x00\x7a\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\x4e\x00\x42\x00\x65\x00\x6e\x00\x75\x00\ +\x74\x00\x7a\x00\x65\x00\x20\x00\x53\x00\x74\x00\x61\x00\x6e\x00\ +\x64\x00\x61\x00\x72\x00\x64\x00\x20\x00\x46\x00\x61\x00\x72\x00\ +\x62\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x4c\x00\ +\x69\x00\x6e\x00\x69\x00\x65\x00\x6e\x00\x73\x00\x74\x00\xe4\x00\ +\x72\x00\x6b\x00\x65\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\x20\x00\x52\x00\x61\x00\x73\x00\x74\x00\x65\ +\x00\x72\x00\x20\x00\x76\x00\x65\x00\x72\x00\x77\x00\x65\x00\x6e\ +\x00\x64\x00\x65\x00\x6e\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\xac\x00\x57\ +\x00\x65\x00\x6e\x00\x6e\x00\x20\x00\x53\x00\x70\x00\x6c\x00\x69\ +\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x44\ +\x00\x58\x00\x46\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x69\x00\x65\x00\x72\x00\x74\x00\x20\x00\x77\x00\x65\ +\x00\x72\x00\x64\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x77\x00\x65\ +\x00\x72\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x73\x00\x69\x00\x65\ +\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x50\x00\x6f\x00\x6c\x00\x79\ +\x00\x67\x00\x6f\x00\x6e\x00\x7a\x00\xfc\x00\x67\x00\x65\x00\x20\ +\x00\x75\x00\x6d\x00\x67\x00\x65\x00\x77\x00\x61\x00\x6e\x00\x64\ +\x00\x65\x00\x6c\x00\x74\x00\x2e\x00\x20\x00\x44\x00\x69\x00\x65\ +\x00\x73\x00\x65\x00\x72\x00\x20\x00\x57\x00\x65\x00\x72\x00\x74\ +\x00\x20\x00\x69\x00\x73\x00\x74\x00\x20\x00\x64\x00\x69\x00\x65\ +\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x61\x00\x6c\ +\x00\x65\x00\x20\x00\x4c\x00\xe4\x00\x6e\x00\x67\x00\x65\x00\x20\ +\x00\x65\x00\x69\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x53\x00\x65\ +\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x64\ +\x00\x65\x00\x73\x00\x20\x00\x50\x00\x6f\x00\x6c\x00\x79\x00\x67\ +\x00\x6f\x00\x6e\x00\x7a\x00\x75\x00\x67\x00\x65\x00\x73\x00\x2e\ +\x00\x20\x00\x46\x00\x61\x00\x6c\x00\x6c\x00\x73\x00\x20\x00\x30\ +\x00\x2c\x00\x20\x00\x77\x00\x69\x00\x72\x00\x64\x00\x20\x00\x64\ +\x00\x69\x00\x65\x00\x20\x00\x67\x00\x61\x00\x6e\x00\x7a\x00\x65\ +\x00\x20\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x2d\ +\x00\x4b\x00\x75\x00\x72\x00\x76\x00\x65\x00\x20\x00\x61\x00\x6c\ +\x00\x73\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x20\x00\x47\x00\x65\ +\x00\x72\x00\x61\x00\x64\x00\x65\x00\x6e\x00\x73\x00\x74\x00\xfc\ +\x00\x63\x00\x6b\x00\x20\x00\x62\x00\x65\x00\x68\x00\x61\x00\x6e\ +\x00\x64\x00\x65\x00\x6c\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\x6f\x00\x62\x00\x65\x00\x6e\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\x76\x00\x6f\x00\x72\x00\x6e\x00\x65\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\x00\x53\x00\x65\x00\x69\x00\x74\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\x41\x00\x6c\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x03\x61\x6c\x74\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\xe0\x00\x41\x00\x6b\x00\x74\x00\x69\x00\x76\x00\x69\ +\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x53\x00\x69\x00\x65\ +\x00\x20\x00\x64\x00\x69\x00\x65\x00\x73\x00\x65\x00\x20\x00\x4f\ +\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2c\x00\x20\x00\x77\ +\x00\x65\x00\x6e\x00\x6e\x00\x20\x00\x53\x00\x69\x00\x65\x00\x20\ +\x00\x64\x00\x69\x00\x65\x00\x20\x00\x46\x00\x61\x00\x72\x00\x62\ +\x00\x65\x00\x2f\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\x65\x00\x6e\ +\x00\x62\x00\x72\x00\x65\x00\x69\x00\x74\x00\x65\x00\x20\x00\x61\ +\x00\x75\x00\x73\x00\x20\x00\x64\x00\x65\x00\x72\x00\x20\x00\x53\ +\x00\x79\x00\x6d\x00\x62\x00\x6f\x00\x6c\x00\x6c\x00\x65\x00\x69\ +\x00\x73\x00\x74\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x73\x00\x20\ +\x00\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\ +\x00\x20\x00\x76\x00\x65\x00\x72\x00\x77\x00\x65\x00\x6e\x00\x64\ +\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\xf6\x00\x63\x00\x68\x00\x74\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4d\x63\x68\ +\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\x79\x6f\x75\x20\ +\x77\x61\x6e\x74\x20\x74\x6f\x20\x75\x73\x65\x20\x74\x68\x65\x20\ +\x63\x6f\x6c\x6f\x72\x2f\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\ +\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x74\x6f\x6f\x6c\x62\x61\x72\ +\x20\x61\x73\x20\x64\x65\x66\x61\x75\x6c\x74\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x08\x00\x53\x00\x74\x00\x72\x00\x67\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\x86\x00\x46\x00\x61\ +\x00\x6c\x00\x6c\x00\x73\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x69\ +\x00\x76\x00\x69\x00\x65\x00\x72\x00\x74\x00\x2c\x00\x20\x00\x77\ +\x00\x65\x00\x72\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x50\x00\x61\ +\x00\x70\x00\x69\x00\x65\x00\x72\x00\x62\x00\x65\x00\x72\x00\x65\ +\x00\x69\x00\x63\x00\x68\x00\x73\x00\x2d\x00\x4f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x65\x00\x62\x00\x65\ +\x00\x6e\x00\x66\x00\x61\x00\x6c\x00\x6c\x00\x73\x00\x20\x00\x69\ +\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x69\x00\x65\x00\x72\ +\x00\x74\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\x7a\ +\x00\x57\x00\x65\x00\x6e\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x65\ +\x00\x73\x00\x20\x00\x64\x00\x65\x00\x61\x00\x6b\x00\x74\x00\x69\ +\x00\x76\x00\x69\x00\x65\x00\x72\x00\x74\x00\x20\x00\x69\x00\x73\ +\x00\x74\x00\x2c\x00\x20\x00\x77\x00\x69\x00\x72\x00\x64\x00\x20\ +\x00\x74\x00\x65\x00\x78\x00\x74\x00\x73\x00\x2f\x00\x6d\x00\x74\ +\x00\x65\x00\x78\x00\x74\x00\x73\x00\x20\x00\x6e\x00\x69\x00\x63\ +\x00\x68\x00\x74\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x69\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\ +\x62\x00\x65\x00\x20\x00\x66\x00\xfc\x00\x72\x00\x20\x00\x6e\x00\ +\x65\x00\x75\x00\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x4a\x00\x44\x00\x69\x00\x65\x00\x20\ +\x00\x53\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\ +\x00\x66\x00\x61\x00\x72\x00\x62\x00\x65\x00\x20\x00\x66\x00\xfc\ +\x00\x72\x00\x20\x00\x45\x00\x69\x00\x6e\x00\x72\x00\x61\x00\x73\ +\x00\x74\x00\x20\x00\x53\x00\x79\x00\x6d\x00\x62\x00\x6f\x00\x6c\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x74\x68\x65\x20\ +\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\x66\x6f\ +\x72\x20\x73\x6e\x61\x70\x20\x73\x79\x6d\x62\x6f\x6c\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x4c\x00\x53\x00\x74\x00\x61\x00\x6e\x00\x64\ +\x00\x61\x00\x72\x00\x64\x00\x2d\x00\x4c\x00\x69\x00\x6e\x00\x69\ +\x00\x65\x00\x6e\x00\x62\x00\x72\x00\x65\x00\x69\x00\x74\x00\x65\ +\x00\x20\x00\x66\x00\xfc\x00\x72\x00\x20\x00\x6e\x00\x65\x00\x75\ +\x00\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\ +\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x14\x00\x53\x00\x26\x00\x63\x00\ +\x68\x00\x6c\x00\x69\x00\x65\x00\xdf\x00\x65\x00\x6e\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\ +\x43\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x26\x43\x6f\x6e\x74\x69\x6e\ +\x75\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x12\x00\x26\x00\x4b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x72\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x43\ +\x6f\x70\x79\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x10\x00\x26\x00\x42\x00\x65\x00\x65\x00\x6e\x00\x64\x00\ +\x65\x00\x6e\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\x16\x00\x26\x00\x52\x00\xfc\x00\x63\x00\x6b\x00\x67\ +\x00\xe4\x00\x6e\x00\x67\x00\x69\x00\x67\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\x28\x00\x41\x00\x6b\x00\x74\x00\x69\x00\x76\x00\x65\x00\x72\ +\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x2d\x00\x42\ +\x00\x65\x00\x66\x00\x65\x00\x68\x00\x6c\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\x70\x00\x41\x00\x6b\x00\x74\x00\x69\ +\x00\x76\x00\x65\x00\x73\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x20\x00\x6d\x00\x75\x00\x73\x00\x73\x00\x20\ +\x00\x6d\x00\x65\x00\x68\x00\x72\x00\x20\x00\x61\x00\x6c\x00\x73\ +\x00\x20\x00\x7a\x00\x77\x00\x65\x00\x69\x00\x20\x00\x50\x00\x75\ +\x00\x6e\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x2f\x00\x20\x00\x4b\ +\x00\x6e\x00\x6f\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x68\x00\x61\ +\x00\x62\x00\x65\x00\x6e\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\x4c\x00\x50\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\ +\x65\x00\x20\x00\x7a\x00\x75\x00\x20\x00\x6d\x00\x6f\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x61\x00\x6e\x00\x65\x00\x6d\x00\x20\x00\ +\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x68\x00\ +\x69\x00\x6e\x00\x7a\x00\x75\x00\x66\x00\xfc\x00\x67\x00\x65\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x00\x41\x00\x75\x00\x66\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x6b\x00\x74\x00\x69\x00\x65\x00\ +\x72\x00\x74\x00\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x77\x00\x65\x00\ +\x6e\x00\x64\x00\x65\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\x14\x00\x4b\x00\x72\x00\x65\ +\x00\x69\x00\x73\x00\x62\x00\x6f\x00\x67\x00\x65\x00\x6e\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\x58\x00\x44\x00\x69\x00\ +\x65\x00\x73\x00\x65\x00\x72\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x74\x00\x79\x00\x70\x00\x20\x00\x6b\x00\ +\x61\x00\x6e\x00\x6e\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\x00\ +\x74\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\x65\x00\x74\x00\ +\x7a\x00\x74\x00\x20\x00\x77\x00\x65\x00\x72\x00\x64\x00\x65\x00\ +\x6e\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\x1a\x00\x4d\x00\x69\ +\x00\x74\x00\x74\x00\x65\x00\x6c\x00\x70\x00\x75\x00\x6e\x00\x6b\ +\x00\x74\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\ +\x0a\x00\x4b\x00\x72\x00\x65\x00\x69\x00\x73\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\x00\x4b\x00\x6f\x00\ +\x6f\x00\x72\x00\x64\x00\x69\x00\x6e\x00\x61\x00\x74\x00\x65\x00\ +\x6e\x00\x20\x00\x72\x00\x65\x00\x6c\x00\x61\x00\x74\x00\x69\x00\ +\x76\x00\x20\x00\x7a\x00\x75\x00\x6d\x00\x20\x00\x6c\x00\x65\x00\ +\x74\x00\x7a\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x50\x00\x75\x00\ +\x6e\x00\x6b\x00\x74\x00\x20\x00\x6f\x00\x64\x00\x65\x00\x72\x00\ +\x20\x00\x61\x00\x62\x00\x73\x00\x6f\x00\x6c\x00\x75\x00\x74\x00\ +\x20\x00\x28\x00\x4c\x00\x65\x00\x65\x00\x72\x00\x74\x00\x61\x00\ +\x73\x00\x74\x00\x65\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\x10\x00\x4b\x00\x6f\x00\x70\x00\x69\x00\ +\x65\x00\x72\x00\x65\x00\x6e\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\x22\x00\x50\x00\x6f\ +\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x20\x00\x65\x00\x72\ +\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\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\x1c\ +\x00\x54\x00\x65\x00\x78\x00\x74\x00\x20\x00\x65\x00\x72\x00\x73\ +\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x6e\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\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\x0e\x00\x41\x00\x62\x00\x73\x00\x74\x00\x61\x00\x6e\x00\ +\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\ +\x6e\x63\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x50\x00\x50\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x20\x00\ +\x6e\x00\x69\x00\x63\x00\x68\x00\x74\x00\x20\x00\x61\x00\x75\x00\ +\x66\x00\x20\x00\x5a\x00\x65\x00\x69\x00\x63\x00\x68\x00\x65\x00\ +\x6e\x00\x65\x00\x62\x00\x65\x00\x6e\x00\x65\x00\x20\x00\x70\x00\ +\x72\x00\x6f\x00\x6a\x00\x69\x00\x7a\x00\x69\x00\x65\x00\x72\x00\ +\x65\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\x38\x00\x4b\x00\x61\x00\x6e\x00\ +\x74\x00\x65\x00\x6e\x00\x20\x00\xfc\x00\x62\x00\x65\x00\x72\x00\ +\x73\x00\x63\x00\x68\x00\x6e\x00\x65\x00\x69\x00\x64\x00\x65\x00\ +\x6e\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\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\x14\x00\x42\x00\x65\x00\x61\x00\x72\x00\x62\x00\x65\x00\x69\ +\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x45\x64\x69\x74\x07\x00\x00\x00\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\x20\x00\x4f\x00\x62\x00\x65\x00\x72\x00\x66\x00\x6c\x00\ +\xe4\x00\x63\x00\x68\x00\x65\x00\x6e\x00\x66\x00\x61\x00\x72\x00\ +\x62\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\x56\x00\x42\x00\x65\x00\x65\x00\x6e\x00\ +\x64\x00\x65\x00\x74\x00\x20\x00\x75\x00\x6e\x00\x64\x00\x20\x00\ +\x73\x00\x63\x00\x68\x00\x6c\x00\x69\x00\x65\x00\xdf\x00\x74\x00\ +\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x61\x00\x6b\x00\x74\x00\ +\x75\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x4c\x00\x69\x00\ +\x6e\x00\x69\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\x72\x00\ +\x4d\x00\x6f\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x6e\x00\ +\x65\x00\x6e\x00\x20\x00\x5a\x00\x65\x00\x69\x00\x63\x00\x68\x00\ +\x6e\x00\x75\x00\x6e\x00\x67\x00\x73\x00\x2d\x00\x20\x00\x6f\x00\ +\x64\x00\x65\x00\x72\x00\x20\x00\x45\x00\x64\x00\x69\x00\x74\x00\ +\x69\x00\x65\x00\x72\x00\x2d\x00\x4f\x00\x70\x00\x65\x00\x72\x00\ +\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x28\x00\x46\x00\ +\x29\x00\x20\x00\x62\x00\x65\x00\x65\x00\x6e\x00\x64\x00\x65\x00\ +\x6e\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\x18\ +\x00\x53\x00\x63\x00\x68\x00\x72\x00\x69\x00\x66\x00\x74\x00\x67\ +\x00\x72\x00\xf6\x00\xdf\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\x8a\x00\x31\x00\x20\x00\ +\x67\x00\x65\x00\x73\x00\x63\x00\x68\x00\x6c\x00\x6f\x00\x73\x00\ +\x73\x00\x65\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x53\x00\x6b\x00\ +\x69\x00\x7a\x00\x7a\x00\x65\x00\x6e\x00\x2d\x00\x4f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x67\x00\x65\x00\x66\x00\ +\x75\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x3a\x00\x20\x00\x65\x00\ +\x72\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\ +\x65\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x46\x00\x6c\x00\xe4\x00\ +\x63\x00\x68\x00\x65\x00\x20\x00\x64\x00\x61\x00\x72\x00\x61\x00\ +\x75\x00\x73\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\x60\x00\x31\x00\x20\x00\x46\x00\x6c\x00\xe4\x00\x63\x00\ +\x68\x00\x65\x00\x20\x00\x67\x00\x65\x00\x66\x00\x75\x00\x6e\x00\ +\x64\x00\x65\x00\x6e\x00\x3a\x00\x20\x00\x73\x00\x65\x00\x69\x00\ +\x6e\x00\x65\x00\x20\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\x65\x00\ +\x6e\x00\x7a\x00\xfc\x00\x67\x00\x65\x00\x20\x00\x65\x00\x78\x00\ +\x74\x00\x72\x00\x61\x00\x68\x00\x69\x00\x65\x00\x72\x00\x65\x00\ +\x6e\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\x8e\ +\x00\x31\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\x00\x74\x00\x2d\ +\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\ +\x00\x69\x00\x73\x00\x63\x00\x68\x00\x65\x00\x73\x00\x20\x00\x4f\ +\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x67\x00\x65\ +\x00\x66\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x3a\x00\x20\ +\x00\x65\x00\x72\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x65\ +\x00\x20\x00\x45\x00\x6e\x00\x74\x00\x77\x00\x75\x00\x72\x00\x66\ +\x00\x73\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\ +\x00\x64\x00\x61\x00\x72\x00\x61\x00\x75\x00\x73\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\x50\x00\x31\x00\x20\x00\x6f\x00\x66\x00\ +\x66\x00\x65\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x4c\x00\x69\x00\ +\x6e\x00\x69\x00\x65\x00\x6e\x00\x7a\x00\x75\x00\x67\x00\x20\x00\ +\x67\x00\x65\x00\x66\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\ +\x3a\x00\x20\x00\x73\x00\x63\x00\x68\x00\x6c\x00\x69\x00\x65\x00\ +\xdf\x00\x65\x00\x6e\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\x74\x00\ +\x31\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\ +\x74\x00\x72\x00\x69\x00\x73\x00\x63\x00\x68\x00\x65\x00\x73\x00\ +\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\ +\x67\x00\x65\x00\x66\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\ +\x3a\x00\x20\x00\x6c\x00\xf6\x00\x73\x00\x65\x00\x20\x00\x41\x00\ +\x62\x00\x68\x00\xe4\x00\x6e\x00\x67\x00\x69\x00\x67\x00\x6b\x00\ +\x65\x00\x69\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x75\x00\ +\x66\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\x4a\x00\x32\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\ +\x6b\x00\x74\x00\x65\x00\x20\x00\x67\x00\x65\x00\x66\x00\x75\x00\ +\x6e\x00\x64\x00\x65\x00\x6e\x00\x3a\x00\x20\x00\x77\x00\x65\x00\ +\x72\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x65\x00\x72\x00\ +\x65\x00\x69\x00\x6e\x00\x69\x00\x67\x00\x74\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\x42\x00\x32\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\ +\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x67\x00\x65\x00\x66\x00\x75\ +\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x3a\x00\x20\x00\x73\x00\x75\ +\x00\x62\x00\x74\x00\x72\x00\x61\x00\x68\x00\x69\x00\x65\x00\x72\ +\x00\x65\x00\x6e\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\x74\x00\x47\x00\x65\x00\x73\x00\x63\x00\x68\x00\x6c\x00\x6f\ +\x00\x73\x00\x73\x00\x65\x00\x6e\x00\x65\x00\x20\x00\x4c\x00\x69\ +\x00\x6e\x00\x69\x00\x65\x00\x6e\x00\x7a\x00\xfc\x00\x67\x00\x65\ +\x00\x20\x00\x67\x00\x65\x00\x66\x00\x75\x00\x6e\x00\x64\x00\x65\ +\x00\x6e\x00\x3a\x00\x20\x00\x65\x00\x72\x00\x73\x00\x74\x00\x65\ +\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x46\x00\x6c\x00\xe4\x00\x63\ +\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x64\x00\x61\x00\x72\x00\x61\ +\x00\x75\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\ +\x74\x00\x47\x00\x72\x00\x75\x00\x70\x00\x70\x00\x65\x00\x6e\x00\ +\x20\x00\x67\x00\x65\x00\x66\x00\x75\x00\x6e\x00\x64\x00\x65\x00\ +\x6e\x00\x3a\x00\x20\x00\x6a\x00\x65\x00\x64\x00\x65\x00\x73\x00\ +\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\ +\x69\x00\x6e\x00\x6e\x00\x65\x00\x72\x00\x68\x00\x61\x00\x6c\x00\ +\x62\x00\x20\x00\x77\x00\x69\x00\x72\x00\x64\x00\x20\x00\x67\x00\ +\x65\x00\x73\x00\x63\x00\x68\x00\x6c\x00\x6f\x00\x73\x00\x73\x00\ +\x65\x00\x6e\x00\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\x64\x00\x4e\ +\x00\x75\x00\x72\x00\x20\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\x65\ +\x00\x6e\x00\x7a\x00\xfc\x00\x67\x00\x65\x00\x20\x00\x67\x00\x65\ +\x00\x66\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x3a\x00\x20\ +\x00\x65\x00\x78\x00\x74\x00\x72\x00\x61\x00\x68\x00\x69\x00\x65\ +\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x69\x00\x68\x00\x72\x00\x65\ +\x00\x20\x00\x4b\x00\x61\x00\x6e\x00\x74\x00\x65\x00\x6e\x00\x0a\ +\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\x70\x00\x4d\x00\x65\x00\x68\x00\x72\x00\x65\x00\ +\x72\x00\x65\x00\x20\x00\x4b\x00\x61\x00\x6e\x00\x74\x00\x65\x00\ +\x6e\x00\x20\x00\x67\x00\x65\x00\x66\x00\x75\x00\x6e\x00\x64\x00\ +\x65\x00\x6e\x00\x3a\x00\x20\x00\x65\x00\x72\x00\x73\x00\x74\x00\ +\x65\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x65\x00\x69\x00\x6e\x00\ +\x65\x00\x20\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\x65\x00\x6e\x00\ +\x7a\x00\x75\x00\x67\x00\x20\x00\x64\x00\x61\x00\x72\x00\x61\x00\ +\x75\x00\x73\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\x4a\ +\x00\x4d\x00\x65\x00\x68\x00\x72\x00\x65\x00\x72\x00\x65\x00\x20\ +\x00\x46\x00\x6c\x00\xe4\x00\x63\x00\x68\x00\x65\x00\x6e\x00\x20\ +\x00\x67\x00\x65\x00\x66\x00\x75\x00\x6e\x00\x64\x00\x65\x00\x6e\ +\x00\x3a\x00\x20\x00\x61\x00\x75\x00\x66\x00\x62\x00\x72\x00\x65\ +\x00\x63\x00\x68\x00\x65\x00\x6e\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\x8c\x00\x4d\x00\x65\x00\x68\x00\x72\ +\x00\x65\x00\x72\x00\x65\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\ +\x00\x74\x00\x2d\x00\x76\x00\x65\x00\x72\x00\x62\x00\x75\x00\x6e\ +\x00\x64\x00\x65\x00\x6e\x00\x65\x00\x20\x00\x4b\x00\x61\x00\x6e\ +\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x67\x00\x65\x00\x66\x00\x75\ +\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x3a\x00\x20\x00\x65\x00\x72\ +\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x65\ +\x00\x69\x00\x6e\x00\x20\x00\x56\x00\x65\x00\x72\x00\x62\x00\x75\ +\x00\x6e\x00\x64\x00\x2d\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\ +\x00\x74\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\ +\x8c\x00\x4d\x00\x65\x00\x68\x00\x72\x00\x65\x00\x72\x00\x65\x00\ +\x20\x00\x6e\x00\x69\x00\x63\x00\x68\x00\x74\x00\x20\x00\x62\x00\ +\x65\x00\x68\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x6c\x00\x65\x00\ +\x62\x00\x61\x00\x72\x00\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x67\x00\x65\x00\x66\x00\ +\x75\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x3a\x00\x20\x00\x65\x00\ +\x72\x00\x73\x00\x74\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\ +\x56\x00\x65\x00\x72\x00\x62\x00\x75\x00\x6e\x00\x64\x00\x2d\x00\ +\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x0a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x35\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\ +\x65\x72\x61\x6c\x20\x6e\x6f\x6e\x2d\x74\x72\x65\x61\x74\x61\x62\ +\x6c\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x6d\x61\x6b\x69\ +\x6e\x67\x20\x63\x6f\x6d\x70\x6f\x75\x6e\x64\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x72\x00\x46\x00\x6f\ +\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x73\x00\x65\x00\x76\x00\x65\ +\x00\x72\x00\x61\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x63\x00\x74\x00\x73\x00\x20\x00\x6f\x00\x72\x00\x20\x00\x66\ +\x00\x61\x00\x63\x00\x65\x00\x73\x00\x3a\x00\x20\x00\x6d\x00\x61\ +\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x61\x00\x20\x00\x70\ +\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\ +\x00\x63\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x0a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x39\x46\x6f\x75\x6e\x64\x20\x73\x65\ +\x76\x65\x72\x61\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x6f\x72\ +\x20\x66\x61\x63\x65\x73\x3a\x20\x6d\x61\x6b\x69\x6e\x67\x20\x61\ +\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\x63\x20\x66\x61\x63\x65\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x46\x00\x46\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x20\x00\x73\x00\ +\x65\x00\x76\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x3a\x00\x20\x00\ +\x66\x00\x75\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x74\x00\ +\x68\x00\x65\x00\x6d\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x23\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\x6c\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\ +\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x7e\x00\x4d\x00\x65\x00\x68\x00\x72\x00\x65\x00\x72\ +\x00\x65\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\ +\x00\x65\x00\x20\x00\x67\x00\x65\x00\x66\x00\x75\x00\x6e\x00\x64\ +\x00\x65\x00\x6e\x00\x3a\x00\x20\x00\x64\x00\x69\x00\x65\x00\x73\ +\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6d\x00\x20\x00\x65\x00\x72\ +\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x4f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x73\x00\x75\x00\x62\x00\x74\ +\x00\x72\x00\x61\x00\x68\x00\x69\x00\x65\x00\x72\x00\x65\x00\x6e\ +\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\xa8\x00\x46\ +\x00\x61\x00\x6c\x00\x6c\x00\x73\x00\x20\x00\x61\x00\x6b\x00\x74\ +\x00\x69\x00\x76\x00\x69\x00\x65\x00\x72\x00\x74\x00\x2c\x00\x20\ +\x00\x77\x00\x69\x00\x72\x00\x64\x00\x20\x00\x42\x00\x65\x00\x66\ +\x00\x65\x00\x68\x00\x6c\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\ +\x00\x74\x00\x20\x00\x62\x00\x65\x00\x65\x00\x6e\x00\x64\x00\x65\ +\x00\x74\x00\x20\x00\x62\x00\x69\x00\x73\x00\x20\x00\x53\x00\x69\ +\x00\x65\x00\x20\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x42\x00\x65\ +\x00\x66\x00\x65\x00\x68\x00\x6c\x00\x73\x00\x6b\x00\x6e\x00\x6f\ +\x00\x70\x00\x66\x00\x20\x00\x6e\x00\x6f\x00\x63\x00\x68\x00\x6d\ +\x00\x61\x00\x6c\x00\x73\x00\x20\x00\x64\x00\x72\x00\xfc\x00\x63\ +\x00\x68\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\x46\x00\x61\ +\x00\x6c\x00\x6c\x00\x73\x00\x20\x00\x67\x00\x65\x00\x73\x00\x65\ +\x00\x74\x00\x7a\x00\x74\x00\x2c\x00\x20\x00\x4f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x77\x00\x65\x00\x72\ +\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\ +\x00\x65\x00\x72\x00\x74\x00\x20\x00\x61\x00\x6e\x00\x73\x00\x74\ +\x00\x61\x00\x74\x00\x74\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\ +\x00\x63\x00\x68\x00\x6f\x00\x62\x00\x65\x00\x6e\x00\x20\x00\x28\ +\x00\x43\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x49\x66\ +\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x63\x6f\x70\x69\x65\x64\ +\x20\x69\x6e\x73\x74\x65\x61\x64\x20\x6f\x66\x20\x6d\x6f\x76\x65\ +\x64\x20\x28\x43\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x20\x00\x49\x00\x6e\x00\x73\x00\x74\x00\x61\x00\ +\x6c\x00\x6c\x00\x65\x00\x64\x00\x20\x00\x4d\x00\x61\x00\x63\x00\ +\x72\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x49\ +\x6e\x73\x74\x61\x6c\x6c\x65\x64\x20\x4d\x61\x63\x72\x6f\x73\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\x00\ +\x4c\x00\x65\x00\x74\x00\x7a\x00\x74\x00\x65\x00\x72\x00\x20\x00\ +\x50\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x20\x00\x77\x00\x75\x00\ +\x72\x00\x64\x00\x65\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x66\x00\ +\x65\x00\x72\x00\x6e\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x1c\x4c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x68\x61\ +\x73\x20\x62\x65\x65\x6e\x20\x72\x65\x6d\x6f\x76\x65\x64\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\ +\x4c\x00\x69\x00\x6e\x00\x69\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\x16\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\ +\x65\x00\x6e\x00\x66\x00\x61\x00\x72\x00\x62\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\ +\x18\x00\x4c\x00\x69\x00\x6e\x00\x69\x00\x65\x00\x6e\x00\x62\x00\ +\x72\x00\x65\x00\x69\x00\x74\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\x16\x00\x56\x00\ +\x65\x00\x72\x00\x73\x00\x63\x00\x68\x00\x69\x00\x65\x00\x62\x00\ +\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4d\x6f\x76\ +\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x08\x00\x4b\x00\x65\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x04\x4e\x6f\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x22\x00\x41\x00\x6e\x00\x7a\x00\x61\x00\ +\x68\x00\x6c\x00\x20\x00\x64\x00\x65\x00\x72\x00\x20\x00\x53\x00\ +\x65\x00\x69\x00\x74\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x4e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x73\x69\x64\ +\x65\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x12\x00\x56\x00\x65\x00\x72\x00\x73\x00\x65\x00\x74\x00\x7a\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x4f\x66\ +\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x7a\x00\x56\x00\x65\x00\x72\x00\x73\x00\x65\x00\x74\ +\x00\x7a\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x75\x00\x6e\x00\x6b\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x69\x00\x65\x00\x72\x00\x74\ +\x00\x20\x00\x6e\x00\x75\x00\x72\x00\x20\x00\x61\x00\x75\x00\x66\ +\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x20\x00\x4f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x7a\x00\x75\x00\x20\x00\x65\ +\x00\x69\x00\x6e\x00\x65\x00\x6d\x00\x20\x00\x5a\x00\x65\x00\x69\ +\x00\x74\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\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\x1a\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\ +\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x65\x00\x6e\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\ +\x6a\x00\x5a\x00\x75\x00\x6d\x00\x20\x00\x44\x00\x65\x00\x66\x00\ +\x69\x00\x6e\x00\x69\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x20\x00\ +\x64\x00\x65\x00\x72\x00\x20\x00\x41\x00\x72\x00\x62\x00\x65\x00\ +\x69\x00\x74\x00\x73\x00\x65\x00\x62\x00\x65\x00\x6e\x00\x65\x00\ +\x20\x00\x4f\x00\x62\x00\x65\x00\x72\x00\x66\x00\x6c\x00\xe4\x00\ +\x63\x00\x68\x00\x65\x00\x20\x00\x61\x00\x75\x00\x73\x00\x77\x00\ +\xe4\x00\x68\x00\x6c\x00\x65\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\x2a\x00\x57\x00\ +\xe4\x00\x68\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x53\x00\x69\x00\ +\x65\x00\x20\x00\x41\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\ +\x00\x42\x00\x61\x00\x73\x00\x69\x00\x73\x00\x77\x00\x69\x00\x6e\ +\x00\x6b\x00\x65\x00\x6c\x00\x20\x00\x77\x00\xe4\x00\x68\x00\x6c\ +\x00\x65\x00\x6e\x00\x3a\x00\x0a\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\x61\x00\x73\x00\x69\x00\x73\x00\x70\x00\ +\x75\x00\x6e\x00\x6b\x00\x74\x00\x20\x00\x61\x00\x75\x00\x73\x00\ +\x77\x00\xe4\x00\x68\x00\x6c\x00\x65\x00\x6e\x00\x3a\x00\x20\x00\ +\x0a\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\x30\x00\x4d\x00\x69\ +\x00\x74\x00\x74\x00\x65\x00\x6c\x00\x70\x00\x75\x00\x6e\x00\x6b\ +\x00\x74\x00\x20\x00\x61\x00\x75\x00\x73\x00\x77\x00\xe4\x00\x68\ +\x00\x6c\x00\x65\x00\x6e\x00\x3a\x00\x20\x00\x0a\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\x2c\x00\x45\x00\x6e\x00\x74\x00\ +\x66\x00\x65\x00\x72\x00\x6e\x00\x65\x00\x6e\x00\x20\x00\x61\x00\ +\x75\x00\x73\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x65\x00\x6e\x00\ +\x3a\x00\x20\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x50\ +\x69\x63\x6b\x20\x64\x69\x73\x74\x61\x6e\x63\x65\x3a\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x45\ +\x00\x6e\x00\x64\x00\x70\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x20\ +\x00\x61\x00\x75\x00\x73\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x65\ +\x00\x6e\x00\x3a\x00\x0a\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\x30\ +\x00\x45\x00\x72\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x50\ +\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x20\x00\x61\x00\x75\x00\x73\ +\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x65\x00\x6e\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\x45\x00\x69\ +\x00\x6e\x00\x62\x00\x61\x00\x75\x00\x70\x00\x75\x00\x6e\x00\x6b\ +\x00\x74\x00\x20\x00\x61\x00\x75\x00\x73\x00\x77\x00\xe4\x00\x68\ +\x00\x6c\x00\x65\x00\x6e\x00\x3a\x00\x0a\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\x00\x4e\x00\xe4\x00\x63\x00\ +\x68\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x50\x00\x75\x00\ +\x6e\x00\x6b\x00\x74\x00\x20\x00\x61\x00\x75\x00\x73\x00\x77\x00\ +\xe4\x00\x68\x00\x6c\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\x42\x00\ +\x65\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x28\x00\ +\x46\x00\x29\x00\x20\x00\x6f\x00\x64\x00\x65\x00\x72\x00\x20\x00\ +\x53\x00\x28\x00\x63\x00\x29\x00\x68\x00\x6c\x00\x69\x00\x65\x00\ +\xdf\x00\x65\x00\x6e\x00\x20\x00\x3a\x00\x0a\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\x34\x00\x4e\ +\x00\xe4\x00\x63\x00\x68\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x20\ +\x00\x50\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x20\x00\x61\x00\x75\ +\x00\x73\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x65\x00\x6e\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\x4a\x00\x47\x00\ +\x65\x00\x67\x00\x65\x00\x6e\x00\xfc\x00\x62\x00\x65\x00\x72\x00\ +\x6c\x00\x69\x00\x65\x00\x67\x00\x65\x00\x6e\x00\x64\x00\x65\x00\ +\x6e\x00\x20\x00\x50\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x20\x00\ +\x61\x00\x75\x00\x73\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x65\x00\ +\x6e\x00\x3a\x00\x20\x00\x0a\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\x24\x00\x52\x00\x61\x00\x64\x00\x69\x00\x75\ +\x00\x73\x00\x20\x00\x61\x00\x75\x00\x73\x00\x77\x00\xe4\x00\x68\ +\x00\x6c\x00\x65\x00\x6e\x00\x3a\x00\x0a\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\x44\x00\x72\x00\x65\x00\x68\x00\x77\x00\x69\x00\x6e\x00\ +\x6b\x00\x65\x00\x6c\x00\x20\x00\x61\x00\x75\x00\x73\x00\x77\x00\ +\xe4\x00\x68\x00\x6c\x00\x65\x00\x6e\x00\x3a\x00\x0a\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\x42\x00\x52\x00\x6f\ +\x00\x74\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x6d\ +\x00\x69\x00\x74\x00\x74\x00\x65\x00\x6c\x00\x70\x00\x75\x00\x6e\ +\x00\x6b\x00\x74\x00\x20\x00\x61\x00\x75\x00\x73\x00\x77\x00\xe4\ +\x00\x68\x00\x6c\x00\x65\x00\x6e\x00\x3a\x00\x20\x00\x0a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x16\x50\x69\x63\x6b\x20\x72\x6f\x74\ +\x61\x74\x69\x6f\x6e\x20\x63\x65\x6e\x74\x65\x72\x3a\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3c\x00\x53\ +\x00\x6b\x00\x61\x00\x6c\x00\x69\x00\x65\x00\x72\x00\x75\x00\x6e\ +\x00\x67\x00\x73\x00\x66\x00\x61\x00\x6b\x00\x74\x00\x6f\x00\x72\ +\x00\x20\x00\x61\x00\x75\x00\x73\x00\x77\x00\xe4\x00\x68\x00\x6c\ +\x00\x65\x00\x6e\x00\x3a\x00\x20\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\x00\x53\x00\x74\x00\x61\x00\x72\x00\ +\x74\x00\x77\x00\x69\x00\x6e\x00\x6b\x00\x65\x00\x6c\x00\x20\x00\ +\x61\x00\x75\x00\x73\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x65\x00\ +\x6e\x00\x3a\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\ +\x69\x63\x6b\x20\x73\x74\x61\x72\x74\x20\x61\x6e\x67\x6c\x65\x3a\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x2c\x00\x53\x00\x74\x00\x61\x00\x72\x00\x74\x00\x70\x00\x75\x00\ +\x6e\x00\x6b\x00\x74\x00\x20\x00\x61\x00\x75\x00\x73\x00\x77\x00\ +\xe4\x00\x68\x00\x6c\x00\x65\x00\x6e\x00\x3a\x00\x0a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x12\x50\x69\x63\x6b\x20\x73\x74\x61\x72\ +\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x50\x00\x75\x00\x6e\x00\ +\x6b\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x50\x6f\x69\ +\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\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\x16\x00\x4b\ +\x00\x72\x00\x65\x00\x69\x00\x73\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\x4c\x00\x50\ +\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x65\x00\x20\x00\x76\x00\x6f\ +\x00\x6e\x00\x20\x00\x6d\x00\x6f\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x00\x61\x00\x6e\x00\x65\x00\x6d\x00\x20\x00\x4f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x66\ +\x00\x65\x00\x72\x00\x6e\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x25\x52\x65\x6d\x6f\x76\x65\x20\x70\x6f\x69\x6e\x74\ +\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\ +\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0c\x00\x44\x00\x72\x00\x65\x00\ +\x68\x00\x65\x00\x6e\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\x12\x00\x53\x00\x6b\x00\x61\x00\x6c\x00\x69\x00\ +\x65\x00\x72\x00\x65\x00\x6e\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\x1e\x00\x45\x00\x62\x00\x65\x00\x6e\x00\x65\ +\x00\x20\x00\x61\x00\x75\x00\x73\x00\x77\x00\xe4\x00\x68\x00\x6c\ +\x00\x65\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x65\ +\x6c\x65\x63\x74\x20\x50\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\x58\x00\x59\x00\x2d\ +\x00\x45\x00\x62\x00\x65\x00\x6e\x00\x65\x00\x20\x00\x61\x00\x75\ +\x00\x73\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x65\x00\x6e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x58\ +\x59\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x24\x00\x58\x00\x59\x00\x2d\x00\x45\x00\ +\x62\x00\x65\x00\x6e\x00\x65\x00\x20\x00\x61\x00\x75\x00\x73\x00\ +\x77\x00\xe4\x00\x68\x00\x6c\x00\x65\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\x1e\x00\x59\x00\x5a\x00\x2d\x00\x45\x00\x62\x00\x65\ +\x00\x6e\x00\x65\x00\x20\x00\x77\x00\xe4\x00\x68\x00\x6c\x00\x65\ +\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\x42\x00\x45\x00\x69\x00\ +\x6e\x00\x20\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\ +\x20\x00\x7a\x00\x75\x00\x6d\x00\x20\x00\x42\x00\x65\x00\x77\x00\ +\x65\x00\x67\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x75\x00\x73\x00\ +\x77\x00\xe4\x00\x68\x00\x6c\x00\x65\x00\x6e\x00\x0a\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\x40\ +\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x7a\ +\x00\x75\x00\x6d\x00\x20\x00\x56\x00\x65\x00\x72\x00\x73\x00\x65\ +\x00\x74\x00\x7a\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x61\x00\x72\ +\x00\x6b\x00\x69\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x0a\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x53\x65\x6c\x65\x63\x74\ +\x20\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x6f\x66\ +\x66\x73\x65\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x38\x00\x4f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x20\x00\x7a\x00\x75\x00\x6d\x00\x20\x00\x44\x00\x72\x00\ +\x65\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x75\x00\x73\x00\ +\x77\x00\xe4\x00\x68\x00\x6c\x00\x65\x00\x6e\x00\x0a\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\x00\x45\x00\x69\x00\x6e\x00\x20\x00\x4f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x7a\x00\x75\x00\x6d\x00\x20\ +\x00\x53\x00\x6b\x00\x61\x00\x6c\x00\x69\x00\x65\x00\x72\x00\x65\ +\x00\x6e\x00\x20\x00\x61\x00\x75\x00\x73\x00\x77\x00\xe4\x00\x68\ +\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x0a\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\x57\ +\x00\xe4\x00\x68\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x53\x00\x69\ +\x00\x65\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x20\x00\x4f\x00\x62\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x7a\x00\x75\x00\x6d\ +\x00\x20\x00\x42\x00\x65\x00\x73\x00\x63\x00\x68\x00\x6e\x00\x65\ +\x00\x69\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x2f\x00\x20\x00\x45\ +\x00\x72\x00\x77\x00\x65\x00\x69\x00\x74\x00\x65\x00\x72\x00\x6e\ +\x00\x20\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\x52\x00\x57\ +\x00\xe4\x00\x68\x00\x6c\x00\x65\x00\x6e\x00\x20\x00\x53\x00\x69\ +\x00\x65\x00\x20\x00\x65\x00\x69\x00\x6e\x00\x20\x00\x4f\x00\x62\ +\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x20\x00\x7a\x00\x75\x00\x6d\ +\x00\x20\x00\x41\x00\x6b\x00\x74\x00\x75\x00\x61\x00\x6c\x00\x69\ +\x00\x73\x00\x69\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x20\x00\x0a\ +\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\x80\x00\x57\x00\xe4\x00\x68\x00\x6c\x00\x65\ +\x00\x6e\x00\x20\x00\x53\x00\x69\x00\x65\x00\x20\x00\x65\x00\x69\ +\x00\x6e\x00\x65\x00\x20\x00\x45\x00\x62\x00\x65\x00\x6e\x00\x65\ +\x00\x20\x00\x73\x00\x65\x00\x6e\x00\x6b\x00\x72\x00\x65\x00\x63\ +\x00\x68\x00\x74\x00\x20\x00\x7a\x00\x75\x00\x72\x00\x20\x00\x6d\ +\x00\x6f\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x6e\x00\x65\ +\x00\x6e\x00\x20\x00\x42\x00\x6c\x00\x69\x00\x63\x00\x6b\x00\x72\ +\x00\x69\x00\x63\x00\x68\x00\x74\x00\x75\x00\x6e\x00\x67\x00\x20\ +\x00\x61\x00\x75\x00\x73\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\x32\x00\x53\ +\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x77\x00\x75\ +\x00\x72\x00\x64\x00\x65\x00\x20\x00\x67\x00\x65\x00\x73\x00\x63\ +\x00\x68\x00\x6c\x00\x6f\x00\x73\x00\x73\x00\x65\x00\x6e\x00\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\x5c\x00\x44\x00\x69\ +\x00\x65\x00\x73\x00\x65\x00\x72\x00\x20\x00\x4f\x00\x62\x00\x6a\ +\x00\x65\x00\x6b\x00\x74\x00\x74\x00\x79\x00\x70\x00\x20\x00\x6b\ +\x00\x61\x00\x6e\x00\x6e\x00\x20\x00\x6e\x00\x69\x00\x63\x00\x68\ +\x00\x74\x00\x20\x00\x62\x00\x65\x00\x61\x00\x72\x00\x62\x00\x65\ +\x00\x69\x00\x74\x00\x65\x00\x74\x00\x20\x00\x77\x00\x65\x00\x72\ +\x00\x64\x00\x65\x00\x6e\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x21\x54\x68\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\ +\x70\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x65\x64\x69\x74\x61\x62\ +\x6c\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x3a\x00\x4b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\ +\x75\x00\x6b\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x6d\x00\ +\x6f\x00\x64\x00\x75\x00\x73\x00\x20\x00\x75\x00\x6d\x00\x73\x00\ +\x63\x00\x68\x00\x61\x00\x6c\x00\x74\x00\x65\x00\x6e\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x19\x54\x6f\x67\x67\x6c\x65\x73\x20\x43\ +\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\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\x54\x00\x4c\x00\x65\x00\x74\x00\x7a\x00\x74\ +\x00\x65\x00\x73\x00\x20\x00\x53\x00\x65\x00\x67\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\x00\x20\x00\x72\x00\xfc\x00\x63\x00\x6b\x00\x67\ +\x00\xe4\x00\x6e\x00\x67\x00\x69\x00\x67\x00\x20\x00\x6d\x00\x61\ +\x00\x63\x00\x68\x00\x65\x00\x6e\x00\x20\x00\x28\x00\x53\x00\x74\ +\x00\x72\x00\x67\x00\x2b\x00\x5a\x00\x29\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1e\x55\x6e\x64\x6f\x20\x74\x68\x65\x20\x6c\x61\x73\ +\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x28\x43\x54\x52\x4c\x2b\ +\x5a\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0e\x00\x41\x00\x6e\x00\x73\x00\x69\x00\x63\x00\x68\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\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\x38\x00\x4c\x00\x69\x00\ +\x6e\x00\x69\x00\x65\x00\x6e\x00\x7a\x00\x75\x00\x67\x00\x20\x00\ +\x77\x00\x75\x00\x72\x00\x64\x00\x65\x00\x20\x00\x67\x00\x65\x00\ +\x73\x00\x63\x00\x68\x00\x6c\x00\x6f\x00\x73\x00\x73\x00\x65\x00\ +\x6e\x00\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\x42\x00\x58\x00\x2d\x00\x4b\x00\x6f\x00\ +\x6f\x00\x72\x00\x64\x00\x69\x00\x6e\x00\x61\x00\x74\x00\x65\x00\ +\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x6e\x00\xe4\x00\x63\x00\ +\x68\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x50\x00\x75\x00\ +\x6e\x00\x6b\x00\x74\x00\x65\x00\x73\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\x42\x00\x59\x00\x2d\x00\x4b\ +\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x69\x00\x6e\x00\x61\x00\x74\ +\x00\x65\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x6e\x00\xe4\ +\x00\x63\x00\x68\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x20\x00\x50\ +\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x65\x00\x73\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\x42\x00\x5a\x00\ +\x2d\x00\x4b\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x69\x00\x6e\x00\ +\x61\x00\x74\x00\x65\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\ +\x6e\x00\xe4\x00\x63\x00\x68\x00\x73\x00\x74\x00\x65\x00\x6e\x00\ +\x20\x00\x50\x00\x75\x00\x6e\x00\x6b\x00\x74\x00\x65\x00\x73\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\x65\x00\ +\x72\x00\x20\x00\x42\x00\x65\x00\x66\x00\x65\x00\x68\x00\x6c\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\x00\x45\x00\x6e\x00\x74\ +\x00\x77\x00\x75\x00\x72\x00\x66\x00\x20\x00\x42\x00\x65\x00\x66\ +\x00\x65\x00\x68\x00\x6c\x00\x73\x00\x6c\x00\x65\x00\x69\x00\x73\ +\x00\x74\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\xb3\x13\ +\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\xa6\x9e\x00\x00\x00\x59\ +\x00\x00\xa7\x6f\x00\x00\x00\x5a\x00\x00\xa8\x20\x00\x00\x05\xd9\ +\x00\x00\xa7\x2f\x00\x00\x05\xda\x00\x00\xa7\x4f\x00\x00\x05\xea\ +\x00\x00\xa8\x00\x00\x00\x07\x78\x00\x00\x71\xe6\x00\x00\x48\x83\ +\x00\x00\x03\x55\x00\x00\x48\x83\x00\x00\x78\xb2\x00\x00\x68\x34\ +\x00\x00\x6c\x57\x00\x04\xa6\x79\x00\x00\x7c\x05\x00\x04\xbb\x04\ +\x00\x00\x0b\xfa\x00\x04\xbb\x04\x00\x00\x80\x70\x00\x05\x30\x45\ +\x00\x00\x0e\x37\x00\x05\x30\x45\x00\x00\x92\x8d\x00\x05\x46\xc5\ +\x00\x00\x0e\x64\x00\x05\x46\xc5\x00\x00\x93\x37\x00\x05\x56\x45\ +\x00\x00\x48\x7d\x00\x05\x56\x45\x00\x00\x93\x5f\x00\x05\xac\xf4\ +\x00\x00\x19\xe2\x00\x05\xb8\xfd\x00\x00\xa4\x2c\x00\x05\xcf\xc7\ +\x00\x00\xa4\xd0\x00\x05\xe0\x85\x00\x00\x23\xdf\x00\x06\xab\x8c\ +\x00\x00\x6d\xe5\x00\x10\x84\x49\x00\x00\x54\x57\x00\x12\x05\xba\ +\x00\x00\xa0\x64\x00\x16\xc6\xda\x00\x00\x87\x08\x00\x2a\xa6\x79\ +\x00\x00\x74\xe8\x00\x2b\xc4\xaf\x00\x00\x75\xc6\x00\x2b\xe0\x65\ +\x00\x00\x75\xf7\x00\x39\xdf\x33\x00\x00\x36\xae\x00\x3d\xa1\x19\ +\x00\x00\x79\xd8\x00\x3e\x93\x83\x00\x00\x37\xd4\x00\x48\x8f\x7c\ +\x00\x00\x26\x87\x00\x4b\x66\x35\x00\x00\x33\xc4\x00\x4b\x66\x37\ +\x00\x00\x34\x09\x00\x4b\x66\x39\x00\x00\x34\x4e\x00\x4b\x87\xd4\ +\x00\x00\x7f\x8f\x00\x57\x60\x54\x00\x00\x9c\x2d\x00\x58\xfd\xf4\ +\x00\x00\x4b\xd6\x00\x59\x98\x25\x00\x00\x14\xbc\x00\x59\x98\x25\ +\x00\x00\x9d\x89\x00\x6a\x58\x9a\x00\x00\x95\xa5\x00\x79\xef\xd4\ +\x00\x00\x72\x1e\x00\x7e\x7f\x0e\x00\x00\x68\xbc\x00\x8a\x23\x95\ +\x00\x00\x2a\x57\x00\x8a\x23\x97\x00\x00\x2a\xa3\x00\x8a\x23\x99\ +\x00\x00\x2a\xef\x00\x91\xbc\xe9\x00\x00\x0e\x91\x00\xa6\x37\x3f\ +\x00\x00\x29\x04\x00\xaa\x80\x25\x00\x00\x7e\xcd\x00\xc6\xe3\x6e\ +\x00\x00\x25\x3f\x00\xcb\xa8\x14\x00\x00\x71\x04\x00\xfc\x00\xca\ +\x00\x00\x8e\x12\x01\x21\xd6\x39\x00\x00\x53\x2e\x01\x22\xb4\xf9\ +\x00\x00\x14\xef\x01\x2f\x8e\x7e\x00\x00\x5e\xc6\x01\x48\xfe\xa3\ +\x00\x00\x38\x4e\x01\x53\xf3\xaa\x00\x00\x83\xf2\x01\x56\x16\x4a\ +\x00\x00\x8d\x8f\x01\x67\x0d\x8a\x00\x00\x88\xe1\x01\x69\x11\x7a\ +\x00\x00\x99\xee\x01\x82\x39\x0a\x00\x00\x96\x43\x01\x8b\x68\x75\ +\x00\x00\xa3\xb9\x01\xa1\x7f\x63\x00\x00\x1c\x7f\x01\xc1\xd9\xde\ +\x00\x00\x56\x7c\x01\xd2\x8f\xd3\x00\x00\x4c\x8d\x01\xdf\x11\x43\ +\x00\x00\x05\xb6\x01\xe2\xf4\x5a\x00\x00\x9f\xed\x01\xfc\xae\xd3\ +\x00\x00\x72\x5f\x02\x05\xbe\x25\x00\x00\x7d\x76\x02\x46\x58\x0a\ +\x00\x00\x99\x22\x02\x65\xad\x62\x00\x00\xa8\xf8\x02\x6e\x07\xe2\ +\x00\x00\x4e\xd9\x02\x76\x24\x13\x00\x00\x3c\x59\x02\x7d\xe0\x55\ +\x00\x00\x4f\x7f\x02\x94\x46\x1a\x00\x00\x95\xec\x02\xa7\x2c\x15\ +\x00\x00\x04\x36\x02\xaa\x36\x95\x00\x00\x74\x83\x02\xb1\xf0\xba\ +\x00\x00\x8a\xce\x02\xbf\xaa\x8e\x00\x00\x3a\xda\x02\xc0\x66\xf2\ +\x00\x00\x5a\x60\x02\xc8\x3f\xf5\x00\x00\x66\x97\x02\xd9\xa4\xb9\ +\x00\x00\x6c\x04\x02\xdb\x1a\x94\x00\x00\x07\x85\x03\x01\x84\xc4\ +\x00\x00\x8e\xd9\x03\x12\x97\x6a\x00\x00\x8c\xca\x03\x1a\x14\x14\ +\x00\x00\x31\x06\x03\x1a\x16\x59\x00\x00\x50\x19\x03\x2f\x1a\x6a\ +\x00\x00\x76\x88\x03\x7e\xca\xb5\x00\x00\x43\xe0\x03\x88\x1f\xd4\ +\x00\x00\x44\xcf\x03\x9e\x58\xa5\x00\x00\x00\x44\x03\xb3\x9e\xfa\ +\x00\x00\x96\xf5\x03\xb5\xc8\x9a\x00\x00\x98\x6b\x03\xbd\xd4\xe4\ +\x00\x00\x77\x3d\x03\xc4\x3c\xf5\x00\x00\x79\x96\x03\xc5\xd5\x5e\ +\x00\x00\x09\xa5\x03\xcb\x0d\xe5\x00\x00\x9d\xb6\x03\xdc\x0c\xd4\ +\x00\x00\x75\x44\x03\xf2\x70\x35\x00\x00\x2d\x5b\x03\xf2\xbd\x60\ +\x00\x00\x16\x47\x03\xfb\x0f\x04\x00\x00\x30\x7e\x04\x21\x23\x23\ +\x00\x00\x21\x6d\x04\x56\x06\x93\x00\x00\x2e\x61\x04\x60\x7c\x15\ +\x00\x00\x9c\x80\x04\x79\xef\x9a\x00\x00\x8a\x29\x04\x82\x77\xf4\ +\x00\x00\x4f\x35\x04\x87\xf9\x9e\x00\x00\x8f\xe0\x04\x8c\xd6\xae\ +\x00\x00\x64\xbe\x04\xa0\x8a\x25\x00\x00\x05\x73\x04\xa0\x8a\x25\ +\x00\x00\x7b\x03\x04\xa4\x31\x5a\x00\x00\x92\x17\x04\xa8\xeb\x85\ +\x00\x00\x34\x93\x04\xe1\x6e\xe3\x00\x00\x0a\x15\x04\xe4\x0f\x75\ +\x00\x00\x02\xf3\x04\xeb\x41\xc3\x00\x00\x2d\xe2\x04\xef\xd9\xa8\ +\x00\x00\x4b\x42\x05\x03\x83\x95\x00\x00\x6e\x23\x05\x05\xcb\x13\ +\x00\x00\x42\xaa\x05\x0f\xf2\x74\x00\x00\x94\xbc\x05\x1b\x10\x59\ +\x00\x00\x46\x78\x05\x2a\xe5\x97\x00\x00\x4d\x6f\x05\x44\x3b\x5f\ +\x00\x00\x70\x0e\x05\x5c\xd9\xc4\x00\x00\x0f\xda\x05\x5c\xd9\xc4\ +\x00\x00\x93\xd2\x05\x63\xf6\x93\x00\x00\x4c\x1b\x05\x65\xee\x65\ +\x00\x00\x82\x4a\x05\x87\xb0\xc3\x00\x00\x9c\x56\x05\x96\xa8\xa5\ +\x00\x00\x13\x56\x05\x96\xa8\xa5\x00\x00\x9d\x5f\x05\xad\x4b\xc3\ +\x00\x00\x44\x48\x05\xb9\x03\xc8\x00\x00\x1e\x2a\x05\xbd\x0c\xba\ +\x00\x00\x84\x9f\x05\xbd\x8e\xde\x00\x00\x63\x12\x05\xbe\x56\x93\ +\x00\x00\x4a\xd0\x05\xc5\x50\x04\x00\x00\x0c\x29\x05\xe5\x8e\x2e\ +\x00\x00\x11\x44\x05\xfb\xdc\x83\x00\x00\x43\x0c\x06\x1e\xe6\xb5\ +\x00\x00\xa2\xfd\x06\x29\xee\xa9\x00\x00\x7b\x3f\x06\x32\xe3\xe3\ +\x00\x00\x7f\xb8\x06\x57\x19\xf4\x00\x00\x00\x00\x06\x5a\xef\x15\ +\x00\x00\x74\xb1\x06\x5b\xd2\xb5\x00\x00\x3f\x49\x06\x6c\x88\x8e\ +\x00\x00\x40\xdb\x06\x74\x1d\x55\x00\x00\x55\xe4\x06\x8b\x96\x44\ +\x00\x00\x0c\xd7\x06\x97\x58\xc9\x00\x00\x50\xa2\x06\xbc\x80\xa5\ +\x00\x00\x1d\xb5\x06\xc9\xb8\x05\x00\x00\x77\xb5\x06\xe8\x05\x4e\ +\x00\x00\x06\xfc\x06\xee\xaa\x57\x00\x00\xa1\xf2\x06\xf0\xcb\x25\ +\x00\x00\x1b\x65\x06\xfa\xff\xc3\x00\x00\x43\x72\x06\xfc\x1a\x14\ +\x00\x00\x35\x9f\x06\xfc\xa0\x8a\x00\x00\x94\xff\x07\x08\x90\xe5\ +\x00\x00\x2b\xc4\x07\x0d\xb7\xf7\x00\x00\x3a\x27\x07\x0e\x86\x3e\ +\x00\x00\x1b\xce\x07\x35\x68\x6e\x00\x00\x17\x5c\x07\x35\xe8\x9a\ +\x00\x00\x9a\x35\x07\x44\x41\x2a\x00\x00\x83\x5f\x07\x4a\x1f\x63\ +\x00\x00\x02\x0c\x07\x4d\x73\x22\x00\x00\x92\xb5\x07\x4e\xa6\xf2\ +\x00\x00\x80\xc9\x07\x58\xcb\xe8\x00\x00\x92\xf5\x07\x63\xfe\x0e\ +\x00\x00\x12\x23\x07\x80\xc6\xb3\x00\x00\xa6\x66\x07\x88\x72\x5a\ +\x00\x00\x78\xd7\x07\xa3\xe4\x0e\x00\x00\x22\xe7\x07\xc1\xfc\x13\ +\x00\x00\x2f\x3a\x08\x27\xb4\xba\x00\x00\x97\xfc\x08\x32\xc4\xaa\ +\x00\x00\x9b\x08\x08\x36\x74\x14\x00\x00\x24\xf8\x08\x44\xb9\x83\ +\x00\x00\x36\x20\x08\x49\xc9\x30\x00\x00\x16\x91\x08\x61\x7c\xb3\ +\x00\x00\x1e\x77\x08\xa2\xca\x67\x00\x00\x4f\xcf\x08\xa3\xe0\x33\ +\x00\x00\x7c\x2b\x08\xb1\x15\x28\x00\x00\x30\x01\x08\xb4\x04\x04\ +\x00\x00\x9c\xde\x08\xd0\x32\xf4\x00\x00\x80\x9a\x08\xd4\xcd\x69\ +\x00\x00\x81\x07\x08\xe1\x9b\xbe\x00\x00\x1a\x91\x08\xe1\xc1\xfa\ +\x00\x00\x82\x8d\x08\xeb\x8d\x7a\x00\x00\xa6\x05\x09\x20\xda\x24\ +\x00\x00\xa7\x8c\x09\x20\xda\xb4\x00\x00\xa8\x3d\x09\x20\xda\xd4\ +\x00\x00\xa6\xbb\x09\x4d\x96\xd9\x00\x00\x25\xce\x09\x65\xda\x8a\ +\x00\x00\x86\x83\x09\x68\x0d\x29\x00\x00\x90\xf4\x09\x71\x8d\x25\ +\x00\x00\x06\xb6\x09\x75\x23\x14\x00\x00\x76\x20\x09\x76\xed\x34\ +\x00\x00\x67\xd4\x09\x86\xa6\x05\x00\x00\x24\x12\x09\x8b\x23\xba\ +\x00\x00\x9b\x6b\x09\x9e\xfd\x7e\x00\x00\x68\x1e\x09\xb6\x2a\x63\ +\x00\x00\x35\x01\x09\xcd\x1c\x55\x00\x00\x9d\xfe\x09\xd2\x21\xea\ +\x00\x00\x5f\xe1\x09\xe5\x23\x0e\x00\x00\x59\x1b\x09\xec\x2b\x45\ +\x00\x00\x0c\x8b\x09\xef\x33\xa3\x00\x00\x18\x67\x09\xf0\x1f\x6e\ +\x00\x00\x03\x7e\x09\xfd\x45\x1a\x00\x00\x96\x98\x0a\x09\xc1\x7a\ +\x00\x00\x99\x87\x0a\x28\x9a\x65\x00\x00\x4e\x04\x0a\x28\x9a\x67\ +\x00\x00\x4e\x4b\x0a\x28\x9a\x69\x00\x00\x4e\x92\x0a\x2d\xbe\xe4\ +\x00\x00\x31\x87\x0a\x35\xa9\xfa\x00\x00\x8b\x54\x0a\x3f\x27\x74\ +\x00\x00\x7d\xc0\x0a\x3f\x6b\x05\x00\x00\x7d\xfb\x0a\x49\xa5\x4a\ +\x00\x00\xa3\x38\x0a\x60\xe0\x15\x00\x00\x26\xc8\x0a\x60\xe0\x17\ +\x00\x00\x27\x27\x0a\x60\xe0\x19\x00\x00\x27\x86\x0a\x65\x9b\xea\ +\x00\x00\x94\x0c\x0a\x78\x05\x80\x00\x00\x01\x3d\x0a\x7f\x8f\x65\ +\x00\x00\x3d\x7e\x0a\x98\x86\x18\x00\x00\x2b\x3b\x0a\x99\x5c\xaa\ +\x00\x00\x9b\xcd\x0a\xa8\x16\x95\x00\x00\x13\x15\x0a\xa9\x89\xec\ +\x00\x00\x45\x30\x0a\xc8\x5c\x59\x00\x00\x10\x1b\x0a\xd0\x50\xb8\ +\x00\x00\x75\x15\x0a\xd0\xe6\xf5\x00\x00\x18\x14\x0a\xd6\xf1\xfa\ +\x00\x00\x7f\xf3\x0a\xeb\x91\x88\x00\x00\x67\x2d\x0b\x07\x78\x8a\ +\x00\x00\x85\xe2\x0b\x1b\xe0\x73\x00\x00\x51\x10\x0b\x24\x9d\xb4\ +\x00\x00\x52\x29\x0b\x24\xc5\xc9\x00\x00\x13\x87\x0b\x26\x7e\x0e\ +\x00\x00\x7c\xe8\x0b\x2b\x50\xfa\x00\x00\x89\x82\x0b\x2d\xb3\xf9\ +\x00\x00\x6b\x5c\x0b\x37\x73\x69\x00\x00\xa4\xf8\x0b\x40\x40\x3e\ +\x00\x00\x46\xda\x0b\x43\xcd\x19\x00\x00\x45\xae\x0b\x66\x28\xd2\ +\x00\x00\x66\xe6\x0b\x88\xe0\x07\x00\x00\x0b\x0a\x0b\x94\x44\xc5\ +\x00\x00\x32\x0a\x0b\xc2\x99\x6a\x00\x00\x85\x21\x0b\xd3\x27\xae\ +\x00\x00\x04\x70\x0b\xd4\x7e\x9e\x00\x00\x0b\x3f\x0b\xf5\xee\x53\ +\x00\x00\x93\x8b\x0c\x06\x50\x2e\x00\x00\x0d\x5a\x0c\x08\x46\x23\ +\x00\x00\x7e\x86\x0c\x19\xfa\x99\x00\x00\x81\x91\x0c\x28\x9b\x45\ +\x00\x00\x75\x91\x0c\x31\x7e\x4a\x00\x00\x97\x46\x0c\x38\x4d\xe5\ +\x00\x00\x07\xd0\x0c\x3a\x16\xd0\x00\x00\x19\x58\x0c\x5a\xc0\xc8\ +\x00\x00\x79\x64\x0c\x6e\x87\xf5\x00\x00\x22\xae\x0c\x91\xa0\x7a\ +\x00\x00\xa2\x9c\x0c\x96\x90\x59\x00\x00\x46\x09\x0c\xca\xdd\xfa\ +\x00\x00\xa0\xde\x0c\xd6\xef\x12\x00\x00\x2e\xd3\x0c\xde\x99\x49\ +\x00\x00\x6b\xb0\x0c\xf0\xde\xaa\x00\x00\x88\x1b\x0d\x1c\xf6\xee\ +\x00\x00\x2c\x93\x0d\x3a\x6c\xba\x00\x00\x97\x9c\x0d\x45\xe2\x6a\ +\x00\x00\x9f\x66\x0d\x59\xa1\x45\x00\x00\x7f\x01\x0d\x5a\xad\x33\ +\x00\x00\x78\x39\x0d\x5e\xe7\x6e\x00\x00\x27\xe5\x0d\x64\xa5\xd9\ +\x00\x00\x5d\xbe\x0d\x6d\xf8\xf4\x00\x00\x08\x83\x0d\x76\xb5\x92\ +\x00\x00\x2c\xe9\x0d\x9b\xec\xc9\x00\x00\x55\x73\x0d\xa5\xd9\x94\ +\x00\x00\x2c\x3a\x0d\xa6\xda\xa4\x00\x00\x47\xff\x0d\xc6\xc6\x2a\ +\x00\x00\x9a\x9e\x0d\xf2\x39\xba\x00\x00\x8c\x0f\x0e\x2b\x04\x15\ +\x00\x00\x7c\xa7\x0e\x2c\xe4\x2a\x00\x00\x9e\xf1\x0e\x4e\xcc\xc5\ +\x00\x00\x09\xda\x0e\x6f\x9a\x1a\x00\x00\xa1\x76\x0e\x7b\x7a\x2c\ +\x00\x00\x33\x2e\x0e\x8f\x6a\x37\x00\x00\x37\x7e\x0e\x91\x65\xf5\ +\x00\x00\x1a\x0f\x0e\xca\xd7\x34\x00\x00\x20\x33\x0e\xcd\x1c\x55\ +\x00\x00\x9e\x4f\x0e\xcd\x1c\x65\x00\x00\x9e\xa0\x0e\xea\xe5\x03\ +\x00\x00\x73\x08\x0e\xed\xe1\xf9\x00\x00\x48\xc1\x0f\x07\x8d\xe3\ +\x00\x00\x73\xc8\x0f\x17\x82\x4e\x00\x00\x00\xeb\x0f\x1f\x8d\xa5\ +\x00\x00\x7c\x63\x0f\x4f\x75\x3a\x00\x00\xa8\xb1\x0f\x5f\xca\xd5\ +\x00\x00\x32\x8f\x0f\x75\xb0\x54\x00\x00\x7e\x36\x0f\x77\xc3\xb4\ +\x00\x00\x6c\x92\x0f\x89\x0b\xbe\x00\x00\x49\x21\x0f\x8f\xa8\xa7\ +\x00\x00\x19\x0b\x0f\x98\x0a\x39\x00\x00\xa4\x52\x0f\x9e\xec\xa0\ +\x00\x00\x12\x5c\x0f\xbf\x87\xa3\x00\x00\x91\xcd\x0f\xcd\xce\x95\ +\x00\x00\x37\x14\x0f\xdf\x21\x05\x00\x00\x24\x9f\x0f\xf6\x06\x1e\ +\x00\x00\x20\x9d\x0f\xf6\x29\x0a\x00\x00\x77\xe7\x0f\xf7\x77\xaa\ +\x00\x00\x87\x84\x0f\xfb\x5f\xae\x00\x00\x7d\x32\x69\x00\x00\xa9\ +\x61\x03\x00\x00\x00\x18\x00\x41\x00\xf1\x00\x61\x00\x64\x00\x69\ +\x00\x72\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x6f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x09\x41\x64\x64\x20\x50\x6f\x69\x6e\ +\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x50\ +\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x5c\x00\x41\x00\x67\x00\x72\ +\x00\x65\x00\x67\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x70\ +\x00\x75\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x20\x00\x75\ +\x00\x6e\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x6d\x00\x62\x00\x72\ +\x00\x65\x00\x2f\x00\x62\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\ +\x00\x65\x00\x20\x00\x65\x00\x78\x00\x69\x00\x73\x00\x74\x00\x65\ +\x00\x6e\x00\x74\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\x7a\x00\x41\x00\x67\x00\x72\x00\x65\x00\x67\x00\x61\x00\ +\x20\x00\x65\x00\x6c\x00\x28\x00\x6c\x00\x6f\x00\x73\x00\x29\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x28\x00\ +\x73\x00\x29\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x28\x00\ +\x73\x00\x29\x00\x20\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\ +\x67\x00\x72\x00\x75\x00\x70\x00\x6f\x00\x20\x00\x65\x00\x78\x00\ +\x69\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x74\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\x8a\x00\x41\x00\x70\x00\x6c\x00\x69\x00\x63\x00\x61\x00\x20\ +\x00\x65\x00\x6c\x00\x20\x00\x61\x00\x6e\x00\x63\x00\x68\x00\x6f\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\xed\x00\x6e\x00\x65\ +\x00\x61\x00\x20\x00\x79\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\ +\x00\x72\x00\x20\x00\x61\x00\x63\x00\x74\x00\x75\x00\x61\x00\x6c\ +\x00\x65\x00\x73\x00\x20\x00\x61\x00\x20\x00\x6c\x00\x6f\x00\x73\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\ +\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\ +\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x38\x41\x70\x70\x6c\x69\x65\x73\x20\x63\x75\ +\x72\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\x20\x77\x69\x64\x74\x68\ +\x20\x61\x6e\x64\x20\x63\x6f\x6c\x6f\x72\x20\x74\x6f\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\ +\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x70\x70\x6c\x79\x53\x74\ +\x79\x6c\x65\x01\x03\x00\x00\x00\x2a\x00\x41\x00\x70\x00\x6c\x00\ +\x69\x00\x63\x00\x61\x00\x72\x00\x20\x00\x45\x00\x73\x00\x74\x00\ +\x69\x00\x6c\x00\x6f\x00\x20\x00\x41\x00\x63\x00\x74\x00\x75\x00\ +\x61\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\x08\x00\x41\x00\x72\x00\ +\x63\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x03\x41\x72\x63\ +\x07\x00\x00\x00\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\x01\x03\ +\x00\x00\x00\x6a\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\ +\x00\x6e\x00\x20\x00\x61\x00\x72\x00\x63\x00\x6f\x00\x2e\x00\x20\ +\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x61\x00\x72\ +\x00\x61\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x7a\x00\x61\x00\x72\ +\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\ +\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x72\x00\x65\x00\x73\ +\x00\x74\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x69\x00\x72\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\x9e\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\ +\x00\x75\x00\x6e\x00\x61\x00\x20\x00\x42\x00\x2d\x00\x73\x00\x70\ +\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x6d\ +\x00\xfa\x00\x6c\x00\x74\x00\x69\x00\x70\x00\x6c\x00\x65\x00\x73\ +\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\ +\x00\x61\x00\x72\x00\x61\x00\x20\x00\x61\x00\x6a\x00\x75\x00\x73\ +\x00\x74\x00\x61\x00\x72\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\ +\x00\x46\x00\x54\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\ +\x00\x72\x00\x65\x00\x73\x00\x74\x00\x72\x00\x69\x00\x6e\x00\x67\ +\x00\x69\x00\x72\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\x1c\x00\x43\x00\x69\x00\x72\x00\ +\x63\x00\x75\x00\x6e\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\ +\x63\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\ +\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\ +\x43\x69\x72\x63\x6c\x65\x01\x03\x00\x00\x00\xa2\x00\x43\x00\x72\ +\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x61\x00\x20\x00\x63\ +\x00\x69\x00\x72\x00\x63\x00\x75\x00\x6e\x00\x66\x00\x65\x00\x72\ +\x00\x65\x00\x6e\x00\x63\x00\x69\x00\x61\x00\x2e\x00\x20\x00\x43\ +\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\ +\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x7a\x00\x61\x00\x72\x00\x2c\ +\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x70\x00\x61\x00\x72\ +\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\ +\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x74\x00\x61\ +\x00\x6e\x00\x67\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x73\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\x18\x00\x43\x00\x65\ +\x00\x72\x00\x72\x00\x61\x00\x72\x00\x20\x00\x6c\x00\xed\x00\x6e\ +\x00\x65\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\x4a\x00\x43\x00\x69\x00\x65\x00\x72\x00\x72\x00\x61\x00\x20\ +\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\xed\x00\x6e\x00\x65\x00\x61\ +\x00\x20\x00\x71\x00\x75\x00\x65\x00\x20\x00\x73\x00\x65\x00\x20\ +\x00\x65\x00\x73\x00\x74\x00\xe1\x00\x20\x00\x64\x00\x69\x00\x62\ +\x00\x75\x00\x6a\x00\x61\x00\x6e\x00\x64\x00\x6f\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\x00\x45\x00\x6c\x00\ +\x69\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x70\x00\ +\x75\x00\x6e\x00\x74\x00\x6f\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\x51\x00\x75\x00\x69\x00\x74\x00\x61\ +\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\ +\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\ +\x00\x61\x00\x6c\x00\x61\x00\x6d\x00\x62\x00\x72\x00\x65\x00\x20\ +\x00\x6f\x00\x20\x00\x62\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\ +\x00\x65\x00\x20\x00\x65\x00\x78\x00\x69\x00\x73\x00\x74\x00\x65\ +\x00\x6e\x00\x74\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\xb0\x00\x43\x00\x72\x00\x65\x00\ +\x61\x00\x20\x00\x75\x00\x6e\x00\x61\x00\x20\x00\x63\x00\x6f\x00\ +\x74\x00\x61\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ +\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x7a\x00\x61\x00\x72\x00\x2c\x00\x20\x00\x53\x00\x48\x00\ +\x49\x00\x46\x00\x54\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\ +\x20\x00\x72\x00\x65\x00\x73\x00\x74\x00\x72\x00\x69\x00\x6e\x00\ +\x67\x00\x69\x00\x72\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\ +\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\ +\x72\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x67\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x4e\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x64\x69\x6d\ +\x65\x6e\x73\x69\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\ +\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\ +\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\ +\x20\x73\x65\x6c\x65\x63\x74\x20\x61\x20\x73\x65\x67\x6d\x65\x6e\ +\x74\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\ +\x6e\x73\x69\x6f\x6e\x01\x03\x00\x00\x00\x08\x00\x43\x00\x6f\x00\ +\x74\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x44\x69\x6d\ +\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\ +\x5f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x01\x03\x00\x00\x00\x0e\ +\x00\x52\x00\x65\x00\x64\x00\x75\x00\x63\x00\x69\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\x8c\x00\x64\x00\x65\x00\ +\x73\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x6e\x00\x65\x00\ +\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\ +\x6f\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x69\x00\ +\x6d\x00\x70\x00\x6c\x00\x65\x00\x73\x00\x2c\x00\x20\x00\x6f\x00\ +\x20\x00\x72\x00\x65\x00\x73\x00\x74\x00\x61\x00\x20\x00\x63\x00\ +\x61\x00\x72\x00\x61\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\x0c\ +\x00\x44\x00\x69\x00\x62\x00\x75\x00\x6a\x00\x6f\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\x6c\x00\x50\x00\x6f\x00\x6e\x00\x65\x00\x72\x00\ +\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\ +\x6f\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x75\x00\x6e\x00\ +\x61\x00\x20\x00\x68\x00\x6f\x00\x6a\x00\x61\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x44\x00\x69\x00\x62\x00\x75\x00\x6a\x00\x6f\x00\ +\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x50\x75\x74\x73\x20\ +\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x20\x6f\x6e\x20\x61\x20\x44\x72\x61\x77\x69\x6e\ +\x67\x20\x73\x68\x65\x65\x74\x2e\x07\x00\x00\x00\x0d\x44\x72\x61\ +\x66\x74\x5f\x44\x72\x61\x77\x69\x6e\x67\x01\x03\x00\x00\x00\x0c\ +\x00\x45\x00\x64\x00\x69\x00\x74\x00\x61\x00\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x0a\x44\ +\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\x2c\x00\ +\x45\x00\x64\x00\x69\x00\x74\x00\x61\x00\x20\x00\x65\x00\x6c\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\ +\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x6f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x17\x45\x64\x69\x74\x73\x20\x74\x68\x65\x20\x61\ +\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\ +\x0a\x44\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\x00\x00\ +\x1c\x00\x54\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\ +\x72\x00\x20\x00\x6c\x00\xed\x00\x6e\x00\x65\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x0b\x46\x69\x6e\x69\x73\x68\x20\x6c\x69\ +\x6e\x65\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\ +\x69\x73\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x3c\x00\x54\x00\ +\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x75\x00\ +\x6e\x00\x61\x00\x20\x00\x6c\x00\xed\x00\x6e\x00\x65\x00\x61\x00\ +\x20\x00\x73\x00\x69\x00\x6e\x00\x20\x00\x63\x00\x65\x00\x72\x00\ +\x72\x00\x61\x00\x72\x00\x6c\x00\x61\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x22\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x61\x20\x6c\x69\ +\x6e\x65\x20\x77\x69\x74\x68\x6f\x75\x74\x20\x63\x6c\x6f\x73\x69\ +\x6e\x67\x20\x69\x74\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\ +\x46\x69\x6e\x69\x73\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x86\ +\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x61\ +\x00\x20\x00\x6c\x00\xed\x00\x6e\x00\x65\x00\x61\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x32\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\ +\x00\x6f\x00\x73\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x66\x00\x6f\ +\x00\x72\x00\x7a\x00\x61\x00\x72\x00\x2c\x00\x20\x00\x53\x00\x48\ +\x00\x49\x00\x46\x00\x54\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\ +\x00\x20\x00\x72\x00\x65\x00\x73\x00\x74\x00\x72\x00\x69\x00\x6e\ +\x00\x67\x00\x69\x00\x72\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\ +\xed\x00\x6e\x00\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\ +\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x0a\x00\x4d\x00\x6f\x00\x76\ +\x00\x65\x00\x72\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\xd0\x00\x4d\x00\x75\x00\x65\x00\x76\x00\ +\x65\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\ +\x64\x00\x6f\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x72\x00\ +\x65\x00\x20\x00\x32\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\ +\x6f\x00\x73\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ +\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x7a\x00\x61\x00\x72\x00\x2c\x00\x20\x00\x53\x00\x48\x00\ +\x49\x00\x46\x00\x54\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\ +\x20\x00\x72\x00\x65\x00\x73\x00\x74\x00\x72\x00\x69\x00\x6e\x00\ +\x67\x00\x69\x00\x72\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\ +\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x63\x00\x6f\x00\ +\x70\x00\x69\x00\x61\x00\x72\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\x1a\ +\x00\x45\x00\x71\x00\x75\x00\x69\x00\x64\x00\x69\x00\x73\x00\x74\ +\x00\x61\x00\x6e\x00\x63\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\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\ +\xc0\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\ +\x61\x00\x20\x00\x65\x00\x71\x00\x75\x00\x69\x00\x64\x00\x69\x00\ +\x73\x00\x74\x00\x61\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x61\x00\ +\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\ +\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x6f\x00\x2e\x00\ +\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x61\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x7a\x00\x61\x00\ +\x72\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\ +\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x72\x00\x65\x00\ +\x73\x00\x74\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x69\x00\x72\x00\ +\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x61\x00\ +\x72\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\x82\x00\x43\x00\x72\x00\x65\ +\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x70\x00\x6f\x00\x6c\ +\x00\xed\x00\x67\x00\x6f\x00\x6e\x00\x6f\x00\x20\x00\x72\x00\x65\ +\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x72\x00\x2e\x00\x20\x00\x43\ +\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\ +\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x7a\x00\x61\x00\x72\x00\x2c\ +\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x70\ +\x00\x61\x00\x72\x00\x61\x00\x20\x00\x72\x00\x65\x00\x73\x00\x74\ +\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x69\x00\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x3b\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\ +\x72\x65\x67\x75\x6c\x61\x72\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x2e\ +\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\ +\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\ +\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x50\x6f\x6c\x79\ +\x67\x6f\x6e\x01\x03\x00\x00\x00\x10\x00\x50\x00\x6f\x00\x6c\x00\ +\xed\x00\x67\x00\x6f\x00\x6e\x00\x6f\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x07\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\x00\x0d\x44\ +\x72\x61\x66\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\x00\ +\x00\x6c\x00\x43\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\ +\x00\x20\x00\x72\x00\x65\x00\x63\x00\x74\x00\xe1\x00\x6e\x00\x67\ +\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\x61\x00\x64\x00\x6f\ +\x00\x20\x00\x70\x00\x6f\x00\x72\x00\x20\x00\x32\x00\x20\x00\x70\ +\x00\x75\x00\x6e\x00\x74\x00\x6f\x00\x73\x00\x2e\x00\x20\x00\x43\ +\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\ +\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x7a\x00\x61\x00\x72\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x29\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x20\x32\x2d\x70\x6f\x69\x6e\x74\x20\x72\x65\x63\x74\x61\x6e\ +\x67\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\ +\x70\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x52\x65\x63\x74\ +\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x14\x00\x52\x00\x65\x00\ +\x63\x00\x74\x00\xe1\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x6f\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x09\x52\x65\x63\x74\x61\x6e\x67\ +\x6c\x65\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x52\x65\x63\ +\x74\x61\x6e\x67\x6c\x65\x01\x03\x00\x00\x00\x0a\x00\x47\x00\x69\ +\x00\x72\x00\x61\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\xc2\x00\x47\x00\ +\x69\x00\x72\x00\x61\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\ +\x6e\x00\x61\x00\x64\x00\x6f\x00\x73\x00\x2e\x00\x20\x00\x43\x00\ +\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\ +\x20\x00\x66\x00\x6f\x00\x72\x00\x7a\x00\x61\x00\x72\x00\x2c\x00\ +\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x70\x00\ +\x61\x00\x72\x00\x61\x00\x20\x00\x72\x00\x65\x00\x73\x00\x74\x00\ +\x72\x00\x69\x00\x6e\x00\x67\x00\x69\x00\x72\x00\x2c\x00\x20\x00\ +\x41\x00\x4c\x00\x54\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\ +\x20\x00\x63\x00\x72\x00\x65\x00\x61\x00\x72\x00\x20\x00\x75\x00\ +\x6e\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x6f\x74\x61\x74\x65\x73\ +\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\ +\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\ +\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x63\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0c\ +\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\x01\x03\x00\x00\ +\x00\x0e\x00\x45\x00\x73\x00\x63\x00\x61\x00\x6c\x00\x61\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\xdc\x00\x45\x00\x73\x00\x63\x00\x61\x00\x6c\x00\ +\x61\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\ +\x64\x00\x6f\x00\x73\x00\x20\x00\x64\x00\x65\x00\x73\x00\x64\x00\ +\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x70\x00\x75\x00\x6e\x00\ +\x74\x00\x6f\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x2e\x00\ +\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x61\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x7a\x00\x61\x00\ +\x72\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\ +\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x72\x00\x65\x00\ +\x73\x00\x74\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x69\x00\x72\x00\ +\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x61\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5c\x53\x63\x61\x6c\x65\ +\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\x61\x20\x62\x61\ +\x73\x65\x20\x70\x6f\x69\x6e\x74\x2e\x20\x43\x54\x52\x4c\x20\x74\ +\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\ +\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\ +\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0b\x44\x72\x61\x66\ +\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x18\x00\x53\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x20\x00\x67\x00\x72\x00\ +\x6f\x00\x75\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x53\ +\x65\x6c\x65\x63\x74\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x11\ +\x44\x72\x61\x66\x74\x5f\x53\x65\x6c\x65\x63\x74\x47\x72\x6f\x75\ +\x70\x01\x03\x00\x00\x00\x6e\x00\x53\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\ +\x77\x00\x69\x00\x74\x00\x68\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x73\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x61\x00\x73\x00\ +\x20\x00\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x67\x00\x72\x00\ +\x6f\x00\x75\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\x37\x53\ +\x65\x6c\x65\x63\x74\x73\x20\x61\x6c\x6c\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\x61\x6d\x65\ +\x20\x70\x61\x72\x65\x6e\x74\x73\x20\x61\x73\x20\x74\x68\x69\x73\ +\x20\x67\x72\x6f\x75\x70\x07\x00\x00\x00\x11\x44\x72\x61\x66\x74\ +\x5f\x53\x65\x6c\x65\x63\x74\x47\x72\x6f\x75\x70\x01\x03\x00\x00\ +\x00\x66\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\ +\x00\x6f\x00\x6e\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x70\ +\x00\x6c\x00\x61\x00\x6e\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x74\x00\x72\x00\x61\x00\x62\x00\x61\x00\x6a\x00\x6f\x00\x20\ +\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x63\x00\x72\x00\x65\ +\x00\x61\x00\x72\x00\x20\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\ +\x00\x74\x00\x72\x00\xed\x00\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\x22\x00\x53\x00\x65\x00\x6c\ +\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\ +\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x6f\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\x00\x43\ +\x00\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x61\x00\x20\ +\x00\x61\x00\x6e\x00\x6f\x00\x74\x00\x61\x00\x63\x00\x69\x00\xf3\ +\x00\x6e\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\ +\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x66\x00\x6f\x00\x72\ +\x00\x7a\x00\x61\x00\x72\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\x78\x00\x74\ +\x00\x6f\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\x3a\x00\x43\x00\x6f\x00\x6e\x00\x6d\x00\x75\x00\ +\x74\x00\x61\x00\x72\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x6f\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\ +\x74\x00\x72\x00\x75\x00\x63\x00\x63\x00\x69\x00\xf3\x00\x6e\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\x74\x00\x43\x00\x6f\x00\x6e\x00\x6d\x00\ +\x75\x00\x74\x00\x61\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x6d\x00\ +\x6f\x00\x64\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\ +\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x63\x00\ +\x69\x00\xf3\x00\x6e\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\ +\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x70\x00\x72\x00\xf3\x00\ +\x78\x00\x69\x00\x6d\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x6f\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\xc4\x00\x49\x00\x6e\x00\x74\x00\x65\x00\x72\x00\ +\x63\x00\x61\x00\x6d\x00\x62\x00\x69\x00\x61\x00\x20\x00\x65\x00\ +\x6c\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x6f\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x65\x00\x78\x00\x68\x00\x69\x00\x62\x00\x69\x00\ +\x72\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\ +\x64\x00\x6f\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x72\x00\ +\x65\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x6c\x00\x6f\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x6d\x00\ +\x62\x00\x72\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x64\x00\x20\x00\ +\x6c\x00\xed\x00\x6e\x00\x65\x00\x61\x00\x73\x00\x20\x00\x70\x00\ +\x6c\x00\x61\x00\x6e\x00\x61\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\x36\x00\x41\x00\x6c\x00\ +\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x6d\x00\ +\x6f\x00\x64\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x65\x00\ +\x78\x00\x68\x00\x69\x00\x62\x00\x69\x00\x63\x00\x69\x00\xf3\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x13\x54\x6f\x67\x67\x6c\ +\x65\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x6d\x6f\x64\x65\x07\x00\ +\x00\x00\x17\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x44\ +\x69\x73\x70\x6c\x61\x79\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x26\ +\x00\x52\x00\x65\x00\x63\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x72\ +\x00\x20\x00\x6f\x00\x20\x00\x65\x00\x78\x00\x74\x00\x65\x00\x6e\ +\x00\x64\x00\x65\x00\x72\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\x36\x00\x44\x00\x65\x00\x73\x00\ +\x68\x00\x61\x00\x63\x00\x65\x00\x72\x00\x20\x00\x65\x00\x6c\x00\ +\x20\x00\xfa\x00\x6c\x00\x74\x00\x69\x00\x6d\x00\x6f\x00\x20\x00\ +\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\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\x78\x00\x44\x00\x65\x00\x73\x00\x68\x00\x61\x00\x63\x00\ +\x65\x00\x20\x00\x65\x00\x6c\x00\x20\x00\xfa\x00\x6c\x00\x74\x00\ +\x69\x00\x6d\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x6c\x00\x61\x00\x20\x00\x6c\x00\xed\x00\x6e\x00\x65\x00\x61\x00\ +\x20\x00\x71\x00\x75\x00\x65\x00\x20\x00\x73\x00\x65\x00\x20\x00\ +\x65\x00\x73\x00\x74\x00\xe1\x00\x20\x00\x64\x00\x69\x00\x62\x00\ +\x75\x00\x6a\x00\x61\x00\x6e\x00\x64\x00\x6f\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\xc2\x00\x4a\x00\x75\x00\x6e\x00\x74\x00\x61\x00\x20\x00\ +\x6c\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\ +\x73\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x75\x00\x6e\x00\x6f\x00\ +\x2c\x00\x20\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\ +\x69\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x6c\x00\x6f\x00\ +\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x72\x00\ +\x6e\x00\x6f\x00\x73\x00\x20\x00\x63\x00\x65\x00\x72\x00\x72\x00\ +\x61\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x20\x00\ +\x63\x00\x61\x00\x72\x00\x61\x00\x71\x00\x73\x00\x2c\x00\x20\x00\ +\x6f\x00\x20\x00\x75\x00\x6e\x00\x65\x00\x20\x00\x63\x00\x61\x00\ +\x72\x00\x61\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\x10\x00\x41\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x00\x61\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\x9a\x00\x43\x00\ +\x72\x00\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x63\x00\ +\x6f\x00\x6e\x00\x74\x00\x6f\x00\x72\x00\x6e\x00\x6f\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x6d\x00\xfa\x00\x6c\x00\x74\x00\x69\x00\ +\x70\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x70\x00\x75\x00\x6e\x00\ +\x74\x00\x6f\x00\x73\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\ +\x4c\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x66\x00\ +\x6f\x00\x72\x00\x7a\x00\x61\x00\x72\x00\x2c\x00\x20\x00\x53\x00\ +\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x70\x00\x61\x00\x72\x00\ +\x61\x00\x20\x00\x72\x00\x65\x00\x73\x00\x74\x00\x72\x00\x69\x00\ +\x6e\x00\x67\x00\x69\x00\x72\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\x10\x00\x43\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\ +\x72\x00\x6e\x00\x6f\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\x43\x00\x6f\x00\x6e\x00\x76\ +\x00\x65\x00\x72\x00\x73\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x65\ +\x00\x6e\x00\x74\x00\x72\x00\x65\x00\x20\x00\x61\x00\x6c\x00\x61\ +\x00\x6d\x00\x62\x00\x72\x00\x65\x00\x20\x00\x79\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\x22\x00\x41\x00\x6c\x00\x61\x00\x6d\x00\x62\x00\ +\x72\x00\x65\x00\x20\x00\x61\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\x22\x00\x42\ +\x00\x61\x00\x72\x00\x72\x00\x61\x00\x20\x00\x69\x00\x6e\x00\x76\ +\x00\x65\x00\x72\x00\x74\x00\x69\x00\x64\x00\x61\x00\x20\x00\x35\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\ +\x61\x73\x68\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x42\x00\ +\x61\x00\x72\x00\x72\x00\x61\x00\x20\x00\x69\x00\x6e\x00\x76\x00\ +\x65\x00\x72\x00\x74\x00\x69\x00\x64\x00\x61\x00\x20\x00\x37\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\ +\x73\x68\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x42\x00\x61\ +\x00\x72\x00\x72\x00\x61\x00\x20\x00\x69\x00\x6e\x00\x76\x00\x65\ +\x00\x72\x00\x74\x00\x69\x00\x64\x00\x61\x00\x20\x00\x39\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0b\x42\x61\x63\x6b\x73\x6c\x61\x73\ +\x68\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xae\x00\x53\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\xe9\x00\ +\x20\x00\x65\x00\x73\x00\x74\x00\x61\x00\x20\x00\x6f\x00\x70\x00\ +\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x73\x00\x69\x00\x20\x00\ +\x75\x00\x73\x00\x74\x00\x65\x00\x64\x00\x20\x00\x64\x00\x65\x00\ +\x73\x00\x65\x00\x61\x00\x20\x00\x71\x00\x75\x00\x65\x00\x20\x00\ +\x6c\x00\x61\x00\x73\x00\x20\x00\xe1\x00\x72\x00\x65\x00\x61\x00\ +\x73\x00\x20\x00\x28\x00\x63\x00\x61\x00\x72\x00\x61\x00\x73\x00\ +\x20\x00\x33\x00\x44\x00\x29\x00\x20\x00\x74\x00\x61\x00\x6d\x00\ +\x62\x00\x69\x00\xe9\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x61\x00\ +\x6e\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x61\x00\x64\x00\x61\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\xce\x00\x4d\x00\x61\x00\x72\ +\x00\x71\x00\x75\x00\x65\x00\x20\x00\x65\x00\x73\x00\x74\x00\x61\ +\x00\x20\x00\x6f\x00\x70\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\ +\x00\x73\x00\x69\x00\x20\x00\x64\x00\x65\x00\x73\x00\x65\x00\x61\ +\x00\x20\x00\x71\x00\x75\x00\x65\x00\x20\x00\x6c\x00\x6f\x00\x73\ +\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x71\x00\x75\x00\x65\x00\x73\ +\x00\x20\x00\x73\x00\x69\x00\x6e\x00\x20\x00\x6e\x00\x6f\x00\x6d\ +\x00\x62\x00\x72\x00\x65\x00\x20\x00\x28\x00\x71\x00\x75\x00\x65\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x69\x00\x65\x00\x6e\x00\x7a\ +\x00\x61\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x20\x00\x75\ +\x00\x6e\x00\x20\x00\x2a\x00\x29\x00\x20\x00\x73\x00\x65\x00\x61\ +\x00\x6e\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\ +\x00\x61\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x74\x00\x61\x00\x6d\ +\x00\x62\x00\x69\x00\xe9\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x53\x43\x68\x65\x63\x6b\x20\x74\x68\x69\x73\x20\x69\x66\x20\ +\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x68\x65\x20\x6e\x6f\x6e\ +\x2d\x6e\x61\x6d\x65\x64\x20\x62\x6c\x6f\x63\x6b\x73\x20\x28\x62\ +\x65\x67\x69\x6e\x6e\x69\x6e\x67\x20\x77\x69\x74\x68\x20\x61\x20\ +\x2a\x29\x20\x74\x6f\x20\x62\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\ +\x64\x20\x74\x6f\x6f\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x43\x00\ +\xed\x00\x72\x00\x63\x00\x75\x00\x6c\x00\x6f\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\x12\x00\x43\x00\xed\x00\x72\x00\ +\x63\x00\x75\x00\x6c\x00\x6f\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\x12\x00\x43\x00\xed\x00\x72\x00\x63\x00\x75\x00\ +\x6c\x00\x6f\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\ +\x3e\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x61\x00\ +\x73\x00\x69\x00\x67\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x20\x00\ +\x61\x00\x20\x00\x61\x00\x6e\x00\x63\x00\x68\x00\x6f\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x6c\x00\xed\x00\x6e\x00\x65\x00\x61\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\x32\x00\x41\x00\x72\x00\x63\ +\x00\x68\x00\x69\x00\x76\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x6d\x00\x61\x00\x70\x00\x65\x00\x6f\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\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\x43\x00\x6f\x00\x6e\x00\ +\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x63\x00\x69\x00\xf3\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x2e\x00\ +\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x6c\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\ +\x74\x00\x75\x00\x63\x00\x63\x00\x69\x00\xf3\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\ +\x3e\x00\x4e\x00\x6f\x00\x6d\x00\x62\x00\x72\x00\x65\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\x6f\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\ +\x74\x00\x72\x00\x75\x00\x63\x00\x63\x00\x69\x00\xf3\x00\x6e\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\x34\x00\x43\x00\x72\x00\x65\x00\x61\ +\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\ +\x00\x73\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\xe9\ +\x00\x74\x00\x72\x00\x69\x00\x63\x00\x6f\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\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\x2e\x00\x4f\x00\x70\x00\x63\x00\x69\x00\ +\x6f\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x6f\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\x28\x00\x43\x00\x6f\x00\x6c\x00\ +\x6f\x00\x72\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\x00\x65\x00\ +\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x64\x00\ +\x6f\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\x6e\ +\x00\x41\x00\x6c\x00\x74\x00\x75\x00\x72\x00\x61\x00\x20\x00\x70\ +\x00\x72\x00\x65\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\ +\x00\x69\x00\x6e\x00\x61\x00\x64\x00\x61\x00\x20\x00\x70\x00\x61\ +\x00\x72\x00\x61\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x74\ +\x00\x65\x00\x78\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x79\x00\x20\ +\x00\x6c\x00\x61\x00\x73\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\ +\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x73\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\x3a\x00\x41\x00\x6e\x00\x63\x00\x68\x00\ +\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\xed\x00\x6e\x00\ +\x65\x00\x61\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\x00\x65\x00\ +\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x64\x00\ +\x6f\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\x40\x00\x48\x00\x6f\x00\x6a\x00\x61\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x74\x00\x69\ +\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\ +\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\ +\x00\x64\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x44\x65\ +\x66\x61\x75\x6c\x74\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x20\x73\ +\x68\x65\x65\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x46\x00\x75\ +\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x70\x00\x72\x00\x65\ +\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\ +\x00\x61\x00\x64\x00\x61\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\ +\x00\x74\x00\x65\x00\x78\x00\x74\x00\x6f\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\x74\x00\x75\x00\x72\x00\x61\x00\x20\x00\x70\x00\x72\x00\ +\x65\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\ +\x6e\x00\x61\x00\x64\x00\x61\x00\x20\x00\x64\x00\x65\x00\x6c\x00\ +\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x6f\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\x3e\ +\x00\x50\x00\x6c\x00\x61\x00\x6e\x00\x6f\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x74\x00\x72\x00\x61\x00\x62\x00\x61\x00\x6a\x00\x6f\ +\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\x00\x65\x00\x74\x00\x65\ +\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x64\x00\x6f\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\x4e\x00\x45\x00\x73\x00\x74\x00\x69\x00\x6c\x00\ +\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\x00\x69\x00\x6d\x00\ +\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x73\x00\ +\x20\x00\x79\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x61\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x66\x00\x6c\x00\x65\x00\x63\x00\ +\x68\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x44\x69\x6d\ +\x65\x6e\x73\x69\x6f\x6e\x73\x20\x26\x20\x4c\x65\x61\x64\x65\x72\ +\x20\x61\x72\x72\x6f\x77\x20\x73\x74\x79\x6c\x65\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x4a\x00\x4e\x00\x69\x00\x76\x00\x65\x00\x6c\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x70\x00\x72\x00\x65\x00\x63\x00\x69\ +\x00\x73\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x6c\x00\x61\x00\x73\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\ +\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1a\x44\x69\x6d\x65\x6e\x73\x69\x6f\ +\x6e\x73\x20\x70\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\x65\x76\ +\x65\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x50\x00\x75\x00\x6e\ +\x00\x74\x00\x6f\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x05\x44\x6f\x74\x20\x35\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\ +\x50\x00\x75\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x37\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\x37\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0e\x00\x50\x00\x75\x00\x6e\x00\x74\x00\x6f\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\x38\x00\x52\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\ +\x6e\x00\x61\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x74\x00\x6f\x00\x73\x00\x20\x00\x70\x00\x6f\x00\x72\x00\x20\x00\ +\x64\x00\x65\x00\x66\x00\x65\x00\x63\x00\x74\x00\x6f\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\x46\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\ +\x00\x67\x00\x75\x00\x72\x00\x61\x00\x63\x00\x69\x00\xf3\x00\x6e\ +\x00\x20\x00\x67\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x43\x00\x72\x00\x6f\x00\x71\ +\x00\x75\x00\x69\x00\x7a\x00\x61\x00\x64\x00\x6f\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\x00\x4f\x00\x70\x00\x63\x00\x69\x00\x6f\x00\x6e\ +\x00\x65\x00\x73\x00\x20\x00\x67\x00\x65\x00\x6e\x00\x65\x00\x72\ +\x00\x61\x00\x6c\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\ +\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x4d\x00\x6f\x00\x64\ +\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x70\ +\x00\x69\x00\x61\x00\x20\x00\x67\x00\x6c\x00\x6f\x00\x62\x00\x61\ +\x00\x6c\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\ +\x00\x53\x00\x69\x00\x20\x00\x65\x00\x73\x00\x74\x00\xe1\x00\x20\ +\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\ +\x00\x6e\x00\x61\x00\x64\x00\x61\x00\x2c\x00\x20\x00\x46\x00\x72\ +\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x20\x00\x69\x00\x6e\ +\x00\x74\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x72\x00\xe1\x00\x20\ +\x00\x75\x00\x6e\x00\x69\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x69\ +\x00\x6e\x00\x63\x00\x69\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x65\ +\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x6c\x00\x61\ +\x00\x6d\x00\x62\x00\x72\x00\x65\x00\x73\x00\x2e\x00\x20\x00\x45\ +\x00\x73\x00\x70\x00\x65\x00\x72\x00\x65\x00\x2c\x00\x20\x00\x65\ +\x00\x73\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x75\x00\x65\x00\x64\ +\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x72\x00\x20\ +\x00\x75\x00\x6e\x00\x20\x00\x74\x00\x69\x00\x65\x00\x6d\x00\x70\ +\x00\x6f\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\x2a\x00\x53\x00\x69\x00\x20\x00\x65\x00\x73\x00\x74\ +\x00\x6f\x00\x20\x00\x65\x00\x73\x00\x74\x00\xe1\x00\x20\x00\x6d\ +\x00\x61\x00\x72\x00\x63\x00\x61\x00\x64\x00\x6f\x00\x2c\x00\x20\ +\x00\x65\x00\x6c\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x6f\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x61\ +\x00\x72\x00\x20\x00\x73\x00\x65\x00\x20\x00\x70\x00\x72\x00\x65\ +\x00\x73\x00\x65\x00\x72\x00\x76\x00\x61\x00\x72\x00\xe1\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x61\x00\x20\ +\x00\x6f\x00\x74\x00\x72\x00\x6f\x00\x3b\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x6f\x00\x74\x00\x72\x00\x6f\x00\x20\x00\x6d\x00\x61\ +\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x2c\x00\x20\x00\x6c\x00\x6f\ +\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x61\x00\x6e\x00\x64\ +\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x69\x00\x65\x00\x6d\x00\x70\ +\x00\x72\x00\x65\x00\x20\x00\x65\x00\x6d\x00\x70\x00\x65\x00\x7a\ +\x00\x61\x00\x72\x00\xe1\x00\x6e\x00\x20\x00\x65\x00\x6e\x00\x20\ +\x00\x65\x00\x6c\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x6f\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x22\x00\x73\x00\x69\x00\x6e\x00\x2d\ +\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x61\x00\x72\x00\x22\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x6f\x49\x66\x20\x74\x68\x69\x73\x20\ +\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x63\x6f\x70\x79\ +\x20\x6d\x6f\x64\x65\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x6b\x65\ +\x70\x74\x20\x61\x63\x72\x6f\x73\x73\x20\x63\x6f\x6d\x6d\x61\x6e\ +\x64\x2c\x20\x6f\x74\x68\x65\x72\x77\x69\x73\x65\x20\x63\x6f\x6d\ +\x6d\x61\x6e\x64\x73\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\ +\x73\x20\x73\x74\x61\x72\x74\x20\x69\x6e\x20\x6e\x6f\x2d\x63\x6f\ +\x70\x79\x20\x6d\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xfa\x00\ +\x53\x00\x69\x00\x20\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\x00\ +\x65\x00\x73\x00\x74\x00\xe1\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\ +\x6f\x00\x2c\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x61\x00\ +\x70\x00\x61\x00\x72\x00\x65\x00\x63\x00\x65\x00\x72\x00\xe1\x00\ +\x6e\x00\x20\x00\x72\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x6e\x00\ +\x61\x00\x64\x00\x6f\x00\x73\x00\x2c\x00\x20\x00\x70\x00\x6f\x00\ +\x72\x00\x20\x00\x64\x00\x65\x00\x66\x00\x65\x00\x63\x00\x74\x00\ +\x6f\x00\x3b\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x74\x00\ +\x72\x00\x61\x00\x20\x00\x6d\x00\x61\x00\x6e\x00\x65\x00\x72\x00\ +\x61\x00\x2c\x00\x20\x00\x61\x00\x70\x00\x61\x00\x72\x00\x65\x00\ +\x63\x00\x65\x00\x72\x00\xe1\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\ +\x6d\x00\x6f\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x6c\x00\ +\x6f\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x61\x00\x6c\x00\ +\x61\x00\x6d\x00\x62\x00\x72\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\ +\x1c\x00\x53\x00\x69\x00\x20\x00\x65\x00\x73\x00\x74\x00\x6f\x00\ +\x20\x00\x65\x00\x73\x00\x74\x00\xe1\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\ +\x64\x00\x6f\x00\x2c\x00\x20\x00\x75\x00\x73\x00\x74\x00\x65\x00\ +\x64\x00\x20\x00\x73\x00\x69\x00\x65\x00\x6d\x00\x70\x00\x72\x00\ +\x65\x00\x20\x00\x61\x00\x6a\x00\x75\x00\x73\x00\x74\x00\x61\x00\ +\x72\x00\xe1\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\ +\x61\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\ +\x6f\x00\x73\x00\x20\x00\x65\x00\x78\x00\x69\x00\x73\x00\x74\x00\ +\x65\x00\x6e\x00\x74\x00\x65\x00\x73\x00\x20\x00\x6d\x00\x69\x00\ +\x65\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x73\x00\x20\x00\x64\x00\ +\x69\x00\x62\x00\x75\x00\x6a\x00\x65\x00\x2e\x00\x20\x00\x53\x00\ +\x69\x00\x20\x00\x6e\x00\x6f\x00\x2c\x00\x20\x00\x75\x00\x73\x00\ +\x74\x00\x65\x00\x64\x00\x20\x00\x61\x00\x6a\x00\x75\x00\x73\x00\ +\x74\x00\x61\x00\x72\x00\xe1\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\ +\x6f\x00\x20\x00\x63\x00\x75\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\ +\x20\x00\x70\x00\x72\x00\x65\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\ +\x65\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\x61\x00\x72\ +\x00\x20\x00\x2a\x00\x62\x00\x6c\x00\x6f\x00\x71\x00\x75\x00\x65\ +\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\x24\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\ +\x00\x72\x00\x20\x00\x61\x00\x72\x00\x65\x00\x61\x00\x73\x00\x20\ +\x00\x4f\x00\x43\x00\x41\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x49\x6d\x70\x6f\x72\x74\x20\x4f\x43\x41\x20\x61\x72\x65\x61\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x49\x00\x6d\x00\x70\x00\x6f\ +\x00\x72\x00\x74\x00\x61\x00\x72\x00\x20\x00\x70\x00\x72\x00\x65\ +\x00\x73\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x63\x00\x69\x00\x6f\ +\x00\x6e\x00\x65\x00\x73\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\x2a\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x61\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x65\x00\x73\x00\x74\x00\x69\x00\x6c\x00\x6f\ +\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\x3a\x00\x49\ +\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x72\x00\x20\ +\x00\x74\x00\x65\x00\x78\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x79\ +\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\ +\x00\x6f\x00\x6e\x00\x65\x00\x73\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\x22\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x61\x00\x72\x00\x2f\x00\x45\x00\x78\x00\x70\x00\x6f\x00\ +\x72\x00\x74\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0d\x49\x6d\x70\x6f\x72\x74\x2f\x45\x78\x70\x6f\x72\x74\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x34\x00\x4e\x00\x69\x00\x76\x00\x65\x00\x6c\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x70\x00\x72\x00\x65\x00\x63\ +\x00\x69\x00\x73\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x69\x00\x6e\ +\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x18\x49\x6e\x74\x65\x72\x6e\x61\x6c\x20\x70\x72\x65\ +\x63\x69\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x1c\x00\x55\x00\x6e\x00\x69\x00\x72\x00\x20\x00\x67\ +\x00\x65\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\x00\xed\x00\x61\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4a\x6f\x69\x6e\x20\x67\ +\x65\x6f\x6d\x65\x74\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\ +\x49\x00\x7a\x00\x71\x00\x75\x00\x69\x00\x65\x00\x72\x00\x64\x00\ +\x61\x00\x20\x00\x28\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\ +\x20\x00\x49\x00\x53\x00\x4f\x00\x29\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x13\x4c\x65\x66\x74\x20\x28\x49\x53\x4f\x20\x73\x74\x61\ +\x6e\x64\x61\x72\x64\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x4d\ +\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\ +\x00\x73\x00\x20\x00\x65\x00\x76\x00\x65\x00\x72\x00\x79\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x10\x4d\x61\x69\x6e\x20\x6c\x69\x6e\ +\x65\x73\x20\x65\x76\x65\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xa2\ +\x00\x4d\x00\x61\x00\x69\x00\x6e\x00\x6c\x00\x69\x00\x6e\x00\x65\ +\x00\x73\x00\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\ +\x00\x65\x00\x20\x00\x64\x00\x72\x00\x61\x00\x77\x00\x6e\x00\x20\ +\x00\x74\x00\x68\x00\x69\x00\x63\x00\x6b\x00\x65\x00\x72\x00\x2e\ +\x00\x20\x00\x53\x00\x70\x00\x65\x00\x63\x00\x69\x00\x66\x00\x79\ +\x00\x20\x00\x68\x00\x65\x00\x72\x00\x65\x00\x20\x00\x68\x00\x6f\ +\x00\x77\x00\x20\x00\x6d\x00\x61\x00\x6e\x00\x79\x00\x20\x00\x73\ +\x00\x71\x00\x75\x00\x61\x00\x72\x00\x65\x00\x73\x00\x20\x00\x62\ +\x00\x65\x00\x74\x00\x77\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x6d\ +\x00\x61\x00\x69\x00\x6e\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x73\ +\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x51\x4d\x61\x69\x6e\ +\x6c\x69\x6e\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x64\x72\ +\x61\x77\x6e\x20\x74\x68\x69\x63\x6b\x65\x72\x2e\x20\x53\x70\x65\ +\x63\x69\x66\x79\x20\x68\x65\x72\x65\x20\x68\x6f\x77\x20\x6d\x61\ +\x6e\x79\x20\x73\x71\x75\x61\x72\x65\x73\x20\x62\x65\x74\x77\x65\ +\x65\x6e\x20\x6d\x61\x69\x6e\x6c\x69\x6e\x65\x73\x2e\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x3a\x00\x4d\x00\xe1\x00\x78\x00\x69\x00\x6d\x00\ +\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x73\x00\x65\x00\x67\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x65\x00\ +\x6e\x00\x20\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4d\x61\x78\x20\x53\x70\x6c\ +\x69\x6e\x65\x20\x53\x65\x67\x6d\x65\x6e\x74\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0e\x00\x4e\x00\x69\x00\x6e\x00\x67\x00\x75\x00\x6e\x00\ +\x6f\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\x20\x00\x4e\x00\x69\x00\x6e\x00\x67\x00\ +\x75\x00\x6e\x00\x6f\x00\x20\x00\x28\x00\x72\x00\xe1\x00\x70\x00\ +\x69\x00\x64\x00\x6f\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\x2e\x00\x4f\x00\x70\x00\x63\x00\x69\x00\x6f\ +\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x66\ +\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x6f\x00\x20\x00\x4f\ +\x00\x43\x00\x41\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4f\x43\ +\x41\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\x6f\x6e\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x46\x00\x43\x00\x6f\x00\x6c\x00\x6f\ +\x00\x72\x00\x20\x00\x79\x00\x20\x00\x61\x00\x6e\x00\x63\x00\x68\ +\x00\x75\x00\x72\x00\x61\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\ +\x00\xed\x00\x6e\x00\x65\x00\x61\x00\x20\x00\x6f\x00\x72\x00\x69\ +\x00\x67\x00\x69\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x73\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x1c\x4f\x72\x69\x67\x69\x6e\x61\x6c\ +\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\ +\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x44\x00\x65\ +\x00\x72\x00\x65\x00\x63\x00\x68\x00\x61\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x05\x52\x69\x67\x68\x74\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x2e\x00\x4f\x00\x70\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\ +\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x6d\x00\x61\x00\x74\x00\x6f\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\x80\x00\x50\x00\x72\x00\x65\x00\x73\x00\x65\x00\x72\x00\ +\x76\x00\x61\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\ +\x72\x00\x20\x00\x79\x00\x20\x00\x61\x00\x6e\x00\x63\x00\x68\x00\ +\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\xed\x00\x6e\x00\ +\x65\x00\x61\x00\x20\x00\x70\x00\x72\x00\x65\x00\x73\x00\x65\x00\ +\x6e\x00\x74\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x75\x00\x6e\x00\x61\x00\x20\x00\x73\x00\x65\x00\x73\x00\x73\x00\ +\x69\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\x20\x00\x6f\x00\x74\x00\ +\x72\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x30\x53\x61\x76\ +\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x63\x6f\x6c\x6f\x72\x20\ +\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x20\x61\x63\ +\x72\x6f\x73\x73\x20\x73\x65\x73\x73\x69\x6f\x6e\x73\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x42\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\x20\x00\x61\x00\ +\x66\x00\x74\x00\x65\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x70\x00\ +\x79\x00\x69\x00\x6e\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x21\x53\x65\x6c\x65\x63\x74\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x20\x61\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\ +\x6e\x67\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x42\x00\x61\x00\x72\ +\x00\x72\x00\x61\x00\x20\x00\x35\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x07\x53\x6c\x61\x73\x68\x20\x35\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x0e\x00\x42\x00\x61\x00\x72\x00\x72\x00\x61\x00\x20\x00\x37\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x07\x53\x6c\x61\x73\x68\x20\x37\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x42\x00\x61\x00\x72\x00\x72\ +\x00\x61\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\ +\x53\x6c\x61\x73\x68\x20\x39\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\ +\x41\x00\x6a\x00\x75\x00\x73\x00\x74\x00\x61\x00\x72\x00\x20\x00\ +\x65\x00\x6c\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\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\xa6\x00\x45\x00\x6c\x00\x20\x00\x61\x00\x72\ +\x00\x63\x00\x68\x00\x69\x00\x76\x00\x6f\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x61\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x61\x00\x63\ +\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\x73\x00\x20\x00\x70\ +\x00\x61\x00\x72\x00\x61\x00\x20\x00\x74\x00\x72\x00\x61\x00\x64\ +\x00\x75\x00\x63\x00\x69\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x6c\ +\x00\x6f\x00\x72\x00\x65\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x20\ +\x00\x64\x00\x78\x00\x66\x00\x20\x00\x61\x00\x20\x00\x67\x00\x72\ +\x00\x6f\x00\x73\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x6c\x00\xed\x00\x6e\x00\x65\x00\x61\x00\x73\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\x96\x00\ +\x4c\x00\x61\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x74\x00\ +\x69\x00\x6c\x00\x6c\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x72\x00\ +\x20\x00\x64\x00\x65\x00\x66\x00\x65\x00\x63\x00\x74\x00\x6f\x00\ +\x20\x00\x61\x00\x20\x00\x75\x00\x74\x00\x69\x00\x6c\x00\x69\x00\ +\x7a\x00\x61\x00\x72\x00\x20\x00\x63\x00\x75\x00\x61\x00\x6e\x00\ +\x64\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x20\x00\x63\x00\x72\x00\ +\x65\x00\x61\x00\x20\x00\x75\x00\x6e\x00\x61\x00\x20\x00\x6e\x00\ +\x75\x00\x65\x00\x76\x00\x61\x00\x20\x00\x68\x00\x6f\x00\x6a\x00\ +\x61\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\x00\x69\x00\x62\x00\ +\x75\x00\x6a\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3d\x54\ +\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x6d\x70\x6c\ +\x61\x74\x65\x20\x74\x6f\x20\x75\x73\x65\x20\x77\x68\x65\x6e\x20\ +\x63\x72\x65\x61\x74\x69\x6e\x67\x20\x61\x20\x6e\x65\x77\x20\x64\ +\x72\x61\x77\x69\x6e\x67\x20\x73\x68\x65\x65\x74\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\xaa\x00\x45\x00\x6c\x00\x20\x00\x6e\x00\xfa\x00\x6d\ +\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\ +\x00\x65\x00\x63\x00\x69\x00\x6d\x00\x61\x00\x6c\x00\x65\x00\x73\ +\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x6c\x00\x61\x00\x73\x00\x20\ +\x00\x6f\x00\x70\x00\x65\x00\x72\x00\x61\x00\x63\x00\x69\x00\x6f\ +\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x65\x00\x6e\x00\x61\x00\x64\ +\x00\x61\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\ +\x00\x6e\x00\x61\x00\x73\x00\x20\x00\x28\x00\x70\x00\x6f\x00\x72\ +\x00\x20\x00\x65\x00\x6a\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\ +\xc6\x00\x45\x00\x73\x00\x74\x00\x65\x00\x20\x00\x65\x00\x73\x00\ +\x20\x00\x65\x00\x6c\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\ +\x72\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\x00\x65\x00\x74\x00\ +\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\ +\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x71\x00\x75\x00\ +\x65\x00\x20\x00\x65\x00\x73\x00\x74\x00\xe1\x00\x6e\x00\x20\x00\ +\x73\x00\x69\x00\x65\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x64\x00\ +\x69\x00\x62\x00\x75\x00\x6a\x00\x61\x00\x64\x00\x6f\x00\x73\x00\ +\x20\x00\x65\x00\x6e\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x6d\x00\ +\x6f\x00\x64\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\ +\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x63\x00\ +\x69\x00\xf3\x00\x6e\x00\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\x3a\x00\x45\x00\x73\x00\x74\x00\x65\x00\x20\ +\x00\x65\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x6e\x00\x6f\ +\x00\x6d\x00\x62\x00\x72\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x6c\x00\x61\x00\x20\x00\x66\x00\x75\x00\x65\x00\x6e\x00\x74\ +\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x65\ +\x00\x66\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x61\ +\x00\x72\x00\x61\x00\x20\x00\x74\x00\x6f\x00\x64\x00\x6f\x00\x73\ +\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x74\x00\x65\x00\x78\ +\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x79\x00\x20\x00\x61\x00\x63\ +\x00\x6f\x00\x74\x00\x61\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x65\ +\x00\x73\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x43\x00\x72\ +\x00\x6f\x00\x71\x00\x75\x00\x69\x00\x7a\x00\x61\x00\x64\x00\x6f\ +\x00\x2e\x00\x20\x00\x50\x00\x75\x00\x65\x00\x64\x00\x65\x00\x20\ +\x00\x73\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6e\ +\x00\x6f\x00\x6d\x00\x62\x00\x72\x00\x65\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x66\x00\x75\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x6f\x00\x20\x00\x22\x00\x41\x00\x72\ +\x00\x69\x00\x61\x00\x6c\x00\x22\x00\x2c\x00\x20\x00\x75\x00\x6e\ +\x00\x20\x00\x65\x00\x73\x00\x74\x00\x69\x00\x6c\x00\x6f\x00\x20\ +\x00\x70\x00\x72\x00\x65\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\ +\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x6f\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\x6f\x00\x20\x00\x22\x00\x6d\ +\x00\x6f\x00\x6e\x00\x6f\x00\x22\x00\x2c\x00\x20\x00\x6f\x00\x20\ +\x00\x75\x00\x6e\x00\x61\x00\x20\x00\x66\x00\x61\x00\x6d\x00\x69\ +\x00\x6c\x00\x69\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6f\ +\x00\x20\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x2c\ +\x00\x20\x00\x48\x00\x65\x00\x6c\x00\x76\x00\x65\x00\x74\x00\x69\ +\x00\x63\x00\x61\x00\x2c\x00\x20\x00\x73\x00\x61\x00\x6e\x00\x73\ +\x00\x20\x00\x22\x00\x6f\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6e\ +\x00\x6f\x00\x6d\x00\x62\x00\x72\x00\x65\x00\x20\x00\x63\x00\x6f\ +\x00\x6e\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x65\x00\x73\x00\x74\ +\x00\x69\x00\x6c\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6f\ +\x00\x20\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x3a\ +\x00\x4e\x00\x65\x00\x67\x00\x72\x00\x69\x00\x74\x00\x61\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\x9e\x00\x45\x00\x73\x00\x74\x00\x65\x00\x20\x00\x65\ +\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x6e\x00\x6f\x00\x6d\ +\x00\x62\x00\x72\x00\x65\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\ +\x00\x67\x00\x72\x00\x75\x00\x70\x00\x6f\x00\x20\x00\x70\x00\x72\ +\x00\x65\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\ +\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x72\ +\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x67\x00\x65\x00\x6f\ +\x00\x6d\x00\x65\x00\x74\x00\x72\x00\xed\x00\x61\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6e\ +\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x63\x00\x69\x00\xf3\ +\x00\x6e\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\xa2\x00\x45\x00\x73\ +\x00\x74\x00\x65\x00\x20\x00\x65\x00\x73\x00\x20\x00\x65\x00\x6c\ +\x00\x20\x00\x6d\x00\xe9\x00\x74\x00\x6f\x00\x64\x00\x6f\x00\x20\ +\x00\x65\x00\x73\x00\x63\x00\x6f\x00\x67\x00\x69\x00\x64\x00\x6f\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x6c\x00\x61\ +\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\ +\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x65\ +\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\ +\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x61\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\x1c\x00\x45\x00\x73\x00\x74\x00\x65\x00\ +\x20\x00\x65\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x6d\x00\ +\xe9\x00\x74\x00\x6f\x00\x64\x00\x6f\x00\x20\x00\x65\x00\x6c\x00\ +\x65\x00\x67\x00\x69\x00\x64\x00\x6f\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x69\x00\x6d\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x63\x00\x69\x00\xf3\x00\ +\x6e\x00\x20\x00\x6f\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x74\x00\ +\x72\x00\x61\x00\x64\x00\x75\x00\x63\x00\x63\x00\x69\x00\xf3\x00\ +\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\ +\x72\x00\x20\x00\x44\x00\x58\x00\x46\x00\x20\x00\x65\x00\x6e\x00\ +\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\ +\x2e\x00\x20\x00\x53\x00\x69\x00\x20\x00\x6c\x00\x61\x00\x20\x00\ +\x61\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x61\x00\x63\x00\x69\x00\ +\xf3\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\ +\x6c\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x73\x00\x20\x00\x65\x00\ +\x6c\x00\x65\x00\x67\x00\x69\x00\x64\x00\x6f\x00\x2c\x00\x20\x00\ +\x64\x00\x65\x00\x62\x00\x65\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\ +\x20\x00\x75\x00\x6e\x00\x20\x00\x61\x00\x72\x00\x63\x00\x68\x00\ +\x69\x00\x76\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x61\x00\ +\x73\x00\x69\x00\x67\x00\x6e\x00\x61\x00\x63\x00\x69\x00\xf3\x00\ +\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\ +\x6f\x00\x72\x00\x65\x00\x73\x00\x20\x00\x71\x00\x75\x00\x65\x00\ +\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x65\x00\x6e\x00\ +\x65\x00\x20\x00\x75\x00\x6e\x00\x61\x00\x20\x00\x74\x00\x61\x00\ +\x62\x00\x6c\x00\x61\x00\x20\x00\x64\x00\x65\x00\x20\x00\x74\x00\ +\x72\x00\x61\x00\x64\x00\x75\x00\x63\x00\x63\x00\x69\x00\xf3\x00\ +\x6e\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x63\x00\ +\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x69\x00\x72\x00\ +\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\ +\x6f\x00\x72\x00\x65\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x20\x00\ +\x67\x00\x72\x00\x6f\x00\x73\x00\x6f\x00\x72\x00\x65\x00\x73\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\ +\x61\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\xe3\x54\x68\x69\ +\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\ +\x63\x68\x6f\x6f\x73\x65\x64\x20\x66\x6f\x72\x20\x69\x6d\x70\x6f\ +\x72\x74\x69\x6e\x67\x20\x6f\x72\x20\x74\x72\x61\x6e\x73\x6c\x61\ +\x74\x69\x6e\x67\x20\x44\x58\x46\x20\x6f\x62\x6a\x65\x63\x74\x20\ +\x63\x6f\x6c\x6f\x72\x20\x69\x6e\x74\x6f\x20\x46\x72\x65\x65\x43\ +\x41\x44\x2e\x20\x0a\x49\x66\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\ +\x70\x70\x69\x6e\x67\x20\x69\x73\x20\x63\x68\x6f\x6f\x73\x65\x64\ +\x2c\x20\x79\x6f\x75\x20\x6d\x75\x73\x74\x20\x63\x68\x6f\x6f\x73\ +\x65\x20\x61\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\ +\x67\x20\x66\x69\x6c\x65\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\ +\x67\x20\x61\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6f\x6e\x20\ +\x74\x61\x62\x6c\x65\x20\x74\x68\x61\x74\x20\x77\x69\x6c\x6c\x20\ +\x63\x6f\x6e\x76\x65\x72\x74\x20\x63\x6f\x6c\x6f\x72\x73\x20\x69\ +\x6e\x74\x6f\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\x73\x2e\x0a\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\xfc\x00\x54\x00\x68\x00\x69\x00\x73\ +\x00\x20\x00\x69\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\ +\x00\x6f\x00\x72\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\ +\x00\x68\x00\x65\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\ +\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x74\x00\x65\x00\x78\ +\x00\x74\x00\x73\x00\x20\x00\x77\x00\x68\x00\x65\x00\x6e\x00\x20\ +\x00\x74\x00\x68\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x64\x00\x69\ +\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x73\ +\x00\x20\x00\x61\x00\x72\x00\x65\x00\x20\x00\x76\x00\x65\x00\x72\ +\x00\x74\x00\x69\x00\x63\x00\x61\x00\x6c\x00\x2e\x00\x20\x00\x44\ +\x00\x65\x00\x66\x00\x61\x00\x75\x00\x6c\x00\x74\x00\x20\x00\x69\ +\x00\x73\x00\x20\x00\x6c\x00\x65\x00\x66\x00\x74\x00\x2c\x00\x20\ +\x00\x77\x00\x68\x00\x69\x00\x63\x00\x68\x00\x20\x00\x69\x00\x73\ +\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\x49\x00\x53\x00\x4f\ +\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\ +\x00\x64\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7e\x54\x68\ +\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6f\x72\x69\x65\x6e\x74\ +\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x64\x69\x6d\ +\x65\x6e\x73\x69\x6f\x6e\x20\x74\x65\x78\x74\x73\x20\x77\x68\x65\ +\x6e\x20\x74\x68\x6f\x73\x65\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\ +\x6e\x73\x20\x61\x72\x65\x20\x76\x65\x72\x74\x69\x63\x61\x6c\x2e\ +\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x69\x73\x20\x6c\x65\x66\x74\ +\x2c\x20\x77\x68\x69\x63\x68\x20\x69\x73\x20\x74\x68\x65\x20\x49\ +\x53\x4f\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x2e\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x01\x2c\x00\x45\x00\x73\x00\x74\x00\x65\x00\x20\x00\x65\ +\x00\x73\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x76\x00\x61\x00\x6c\ +\x00\x6f\x00\x72\x00\x20\x00\x75\x00\x74\x00\x69\x00\x6c\x00\x69\ +\x00\x7a\x00\x61\x00\x64\x00\x6f\x00\x20\x00\x70\x00\x6f\x00\x72\ +\x00\x20\x00\x66\x00\x75\x00\x6e\x00\x63\x00\x69\x00\x6f\x00\x6e\ +\x00\x65\x00\x73\x00\x20\x00\x71\x00\x75\x00\x65\x00\x20\x00\x75\ +\x00\x74\x00\x69\x00\x6c\x00\x69\x00\x7a\x00\x61\x00\x6e\x00\x20\ +\x00\x75\x00\x6e\x00\x61\x00\x20\x00\x74\x00\x6f\x00\x6c\x00\x65\ +\x00\x72\x00\x61\x00\x6e\x00\x63\x00\x69\x00\x61\x00\x2e\x00\x20\ +\x00\x56\x00\x61\x00\x6c\x00\x6f\x00\x72\x00\x65\x00\x73\x00\x20\ +\x00\x63\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x66\x00\x65\ +\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x69\x00\x61\x00\x73\x00\x20\ +\x00\x70\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x65\x00\x62\x00\x61\ +\x00\x6a\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x65\x00\x73\ +\x00\x74\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x6f\x00\x72\ +\x00\x20\x00\x73\x00\x65\x00\x20\x00\x74\x00\x72\x00\x61\x00\x74\ +\x00\x61\x00\x72\x00\xe1\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x6c\x00\x61\x00\x20\x00\x6d\x00\x69\x00\x73\x00\x6d\x00\x61\ +\x00\x20\x00\x6d\x00\x61\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x2e\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7b\x54\x68\x69\x73\x20\x69\ +\x73\x20\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\x75\x73\x65\x64\ +\x20\x62\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\x74\x68\ +\x61\x74\x20\x75\x73\x65\x20\x61\x20\x74\x6f\x6c\x65\x72\x61\x6e\ +\x63\x65\x2e\x0a\x56\x61\x6c\x75\x65\x73\x20\x77\x69\x74\x68\x20\ +\x64\x69\x66\x66\x65\x72\x65\x6e\x63\x65\x73\x20\x62\x65\x6c\x6f\ +\x77\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x77\x69\x6c\ +\x6c\x20\x62\x65\x20\x74\x72\x65\x61\x74\x65\x64\x20\x61\x73\x20\ +\x73\x61\x6d\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x54\x00\ +\x6f\x00\x6c\x00\x65\x00\x72\x00\x61\x00\x6e\x00\x63\x00\x69\x00\ +\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\x6f\x6c\x65\x72\ +\x61\x6e\x63\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\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\x56\x00\x55\x00\x73\x00\x61\x00\x72\x00\x20\x00\x63\x00\ +\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x79\x00\x20\x00\x67\x00\ +\x72\x00\x6f\x00\x73\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x6c\x00\xed\x00\x6e\x00\x65\x00\x61\x00\x20\x00\x70\x00\ +\x72\x00\x65\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\ +\x69\x00\x6e\x00\x61\x00\x64\x00\x6f\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\xac\x00\x41\x00\x6c\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6f\ +\x00\x72\x00\x74\x00\x61\x00\x72\x00\x20\x00\x74\x00\x69\x00\x72\ +\x00\x61\x00\x73\x00\x20\x00\x61\x00\x20\x00\x44\x00\x58\x00\x46\ +\x00\x2c\x00\x20\x00\x6c\x00\x61\x00\x73\x00\x20\x00\x74\x00\x69\ +\x00\x72\x00\x61\x00\x73\x00\x20\x00\x73\x00\x65\x00\x72\x00\xe1\ +\x00\x6e\x00\x20\x00\x74\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x66\ +\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x64\x00\x61\x00\x73\x00\x20\ +\x00\x65\x00\x6e\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x69\x00\x6c\ +\x00\xed\x00\x6e\x00\x65\x00\x61\x00\x73\x00\x2e\x00\x20\x00\x45\ +\x00\x73\x00\x74\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x6f\ +\x00\x72\x00\x20\x00\x65\x00\x73\x00\x20\x00\x6c\x00\x61\x00\x20\ +\x00\x6c\x00\x6f\x00\x6e\x00\x67\x00\x69\x00\x74\x00\x75\x00\x64\ +\x00\x20\x00\x6d\x00\xe1\x00\x78\x00\x69\x00\x6d\x00\x61\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x63\x00\x61\x00\x64\x00\x61\x00\x20\ +\x00\x75\x00\x6e\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\ +\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x6c\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x69\x00\x6c\ +\x00\xed\x00\x6e\x00\x65\x00\x61\x00\x2e\x00\x20\x00\x53\x00\x69\ +\x00\x20\x00\x65\x00\x73\x00\x20\x00\x30\x00\x2c\x00\x20\x00\x65\ +\x00\x6e\x00\x74\x00\x6f\x00\x6e\x00\x63\x00\x65\x00\x73\x00\x20\ +\x00\x74\x00\x6f\x00\x64\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x20\ +\x00\x74\x00\x69\x00\x72\x00\x61\x00\x20\x00\x73\x00\x65\x00\x20\ +\x00\x74\x00\x72\x00\x61\x00\x74\x00\x61\x00\x72\x00\xe1\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x6f\x00\x20\x00\x75\x00\x6e\x00\x20\ +\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\ +\x00\x20\x00\x72\x00\x65\x00\x63\x00\x74\x00\x6f\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\x1a\x00\x58\x00\x59\x00\x20\x00\x28\x00\x53\x00\x75\x00\x70\ +\x00\x65\x00\x72\x00\x69\x00\x6f\x00\x72\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\x00\x46\ +\x00\x72\x00\x6f\x00\x6e\x00\x74\x00\x61\x00\x6c\x00\x29\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0a\x58\x5a\x20\x28\x46\x72\x6f\x6e\ +\x74\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\x59\x00\x5a\x00\x20\ +\x00\x28\x00\x4c\x00\x61\x00\x74\x00\x65\x00\x72\x00\x61\x00\x6c\ +\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\xd4\x00\x53\x00\x65\x00\x6c\x00\x65\ +\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x65\ +\x00\x73\x00\x74\x00\x61\x00\x20\x00\x6f\x00\x70\x00\x63\x00\x69\ +\x00\xf3\x00\x6e\x00\x20\x00\x73\x00\x69\x00\x20\x00\x64\x00\x65\ +\x00\x73\x00\x65\x00\x61\x00\x20\x00\x75\x00\x74\x00\x69\x00\x6c\ +\x00\x69\x00\x7a\x00\x61\x00\x72\x00\x20\x00\x65\x00\x6c\x00\x20\ +\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x2f\x00\x61\x00\x6e\ +\x00\x63\x00\x68\x00\x75\x00\x72\x00\x61\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x6c\x00\xed\x00\x6e\x00\x65\x00\x61\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x62\x00\x61\x00\x72\ +\x00\x72\x00\x61\x00\x20\x00\x64\x00\x65\x00\x20\x00\x68\x00\x65\ +\x00\x72\x00\x72\x00\x61\x00\x6d\x00\x69\x00\x65\x00\x6e\x00\x74\ +\x00\x61\x00\x73\x00\x20\x00\x70\x00\x6f\x00\x72\x00\x20\x00\x64\ +\x00\x65\x00\x66\x00\x65\x00\x63\x00\x74\x00\x6f\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\x88\x00\x73\x00\x69\x00\x20\x00\x65\x00\x73\x00\x74\ +\x00\x61\x00\x20\x00\x6d\x00\x61\x00\x72\x00\x63\x00\x61\x00\x64\ +\x00\x61\x00\x2c\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x64\ +\x00\x65\x00\x6c\x00\x20\x00\x65\x00\x73\x00\x70\x00\x61\x00\x63\ +\x00\x69\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x70\x00\x65\x00\x6c\ +\x00\x20\x00\x73\x00\x65\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\ +\x00\x72\x00\x74\x00\x61\x00\x72\x00\xe1\x00\x6e\x00\x20\x00\x74\ +\x00\x61\x00\x6d\x00\x62\x00\x69\x00\xe9\x00\x6e\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\x00\x53\x00\x69\x00\x20\ +\x00\x65\x00\x73\x00\x74\x00\x6f\x00\x20\x00\x6e\x00\x6f\x00\x20\ +\x00\x65\x00\x73\x00\x74\x00\xe1\x00\x20\x00\x73\x00\x65\x00\x6c\ +\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\ +\x00\x6f\x00\x2c\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x73\ +\x00\x2f\x00\x6d\x00\x74\x00\x65\x00\x78\x00\x74\x00\x73\x00\x20\ +\x00\x6e\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x72\x00\xe1\x00\x6e\ +\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\ +\x00\x64\x00\x6f\x00\x73\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\x56\x00\x65\x00\x6c\x00\x20\x00\x63\x00\x6f\x00\ +\x6c\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x72\x00\x65\x00\x64\x00\ +\x65\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\ +\x64\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\ +\x6e\x00\x75\x00\x65\x00\x76\x00\x6f\x00\x73\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\x6c\x00\x65\ +\x00\x6c\x00\x20\x00\x63\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\ +\x00\x70\x00\x72\x00\x65\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\ +\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x20\x00\x70\ +\x00\x61\x00\x72\x00\x61\x00\x20\x00\x73\x00\xed\x00\x6d\x00\x62\ +\x00\x6f\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x61\x00\x6a\x00\x75\x00\x73\x00\x74\x00\x65\x00\x20\x00\x72\ +\x00\xe1\x00\x70\x00\x69\x00\x64\x00\x6f\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\x47\ +\x00\x72\x00\x6f\x00\x73\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x61\x00\x20\x00\x70\ +\x00\x72\x00\x65\x00\x64\x00\x65\x00\x74\x00\x65\x00\x72\x00\x6d\ +\x00\x69\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x20\x00\x70\x00\x61\ +\x00\x72\x00\x61\x00\x20\x00\x6e\x00\x75\x00\x65\x00\x76\x00\x6f\ +\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\ +\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x25\x74\x68\x65\x20\ +\x64\x65\x66\x61\x75\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\ +\x68\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x26\x00\x43\x00\x65\x00\ +\x72\x00\x72\x00\x61\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\x43\x00\x6f\x00\x6e\x00\ +\x74\x00\x69\x00\x6e\x00\x75\x00\x61\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\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\x43\x00\x6f\x00\x70\x00\x69\x00\x61\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\x12\x00\x26\x00\x52\x00\x65\x00\x6c\x00\ +\x61\x00\x74\x00\x69\x00\x76\x00\x6f\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\x00\x44\ +\x00\x65\x00\x73\x00\x68\x00\x61\x00\x63\x00\x65\x00\x72\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\x3a\x00\x41\x00\x63\x00\x74\x00\x69\x00\x76\ +\x00\x61\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x61\x00\x6e\ +\x00\x64\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x72\ +\x00\x6f\x00\x71\x00\x75\x00\x69\x00\x7a\x00\x61\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\x68\x00\x45\ +\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\ +\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x6f\x00\x20\ +\x00\x64\x00\x65\x00\x62\x00\x65\x00\x20\x00\x74\x00\x65\x00\x6e\ +\x00\x65\x00\x72\x00\x20\x00\x6d\x00\xe1\x00\x73\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x70\x00\x75\ +\x00\x6e\x00\x74\x00\x6f\x00\x73\x00\x2f\x00\x6e\x00\x6f\x00\x64\ +\x00\x6f\x00\x73\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\x3e\x00\x41\x00\x67\x00\x72\x00\x65\x00\x67\x00\x61\x00\ +\x72\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x6f\x00\x73\x00\ +\x20\x00\x61\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x74\x00\x6f\x00\x20\x00\x61\x00\x63\x00\x74\x00\x75\x00\x61\x00\ +\x6c\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\x28\x00\xc1\x00\ +\x6e\x00\x67\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x61\x00\x70\x00\x65\x00\x72\x00\x74\x00\x75\x00\x72\x00\ +\x61\x00\x3a\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x41\ +\x70\x65\x72\x74\x75\x72\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\ +\x41\x00\x70\x00\x6c\x00\x69\x00\x63\x00\x61\x00\x72\x00\x20\x00\ +\x61\x00\x20\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\ +\x64\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x00\x41\x00\x72\x00\x63\x00\x6f\ +\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\x54\x00\x4e\x00\ +\x6f\x00\x20\x00\x73\x00\x65\x00\x20\x00\x70\x00\x75\x00\x65\x00\ +\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x65\x00\ +\x6e\x00\x73\x00\x61\x00\x72\x00\x20\x00\x65\x00\x73\x00\x74\x00\ +\x65\x00\x20\x00\x74\x00\x69\x00\x70\x00\x6f\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\ +\x20\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\x43\x00\x65\x00\x6e\ +\x00\x74\x00\x72\x00\x6f\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\x00\x43\x00\x61\ +\x00\x6d\x00\x62\x00\x69\x00\x61\x00\x72\x00\x20\x00\x65\x00\x73\ +\x00\x74\x00\x69\x00\x6c\x00\x6f\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\x1c\x00\x43\x00\x69\x00\x72\x00\ +\x63\x00\x75\x00\x6e\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\x00\ +\x63\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x43\ +\x69\x72\x63\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x76\x00\x43\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\ +\x65\x00\x6e\x00\x61\x00\x64\x00\x61\x00\x73\x00\x20\x00\x72\x00\ +\x65\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x76\x00\x61\x00\x73\x00\ +\x20\x00\x61\x00\x6c\x00\x20\x00\xfa\x00\x6c\x00\x74\x00\x69\x00\ +\x6d\x00\x6f\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x6f\x00\ +\x20\x00\x6f\x00\x20\x00\x61\x00\x62\x00\x73\x00\x6f\x00\x6c\x00\ +\x75\x00\x74\x00\x61\x00\x73\x00\x20\x00\x28\x00\x45\x00\x53\x00\ +\x50\x00\x41\x00\x43\x00\x49\x00\x4f\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\x72\ +\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x6f\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\x12\x00\x44\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\ +\x63\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\ +\x69\x73\x74\x61\x6e\x63\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x4c\x00\x4e\x00\x6f\x00\x20\x00\x70\x00\ +\x72\x00\x6f\x00\x79\x00\x65\x00\x63\x00\x74\x00\x61\x00\x72\x00\ +\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x6f\x00\x73\x00\x20\x00\ +\x61\x00\x6c\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x6f\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x64\x00\x69\x00\x62\x00\x75\x00\ +\x6a\x00\x6f\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\x4c\x00\xa1\x00\x4c\x00\x61\x00\ +\x73\x00\x20\x00\x61\x00\x72\x00\x69\x00\x73\x00\x74\x00\x61\x00\ +\x73\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x20\x00\ +\x70\x00\x75\x00\x65\x00\x64\x00\x65\x00\x6e\x00\x20\x00\x69\x00\ +\x6e\x00\x74\x00\x65\x00\x72\x00\x73\x00\x65\x00\x63\x00\x61\x00\ +\x72\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\x0c\x00\x45\x00\x64\x00\x69\x00\x74\x00\x61\ +\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\ +\x07\x00\x00\x00\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\x00\ +\x43\x00\x6f\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x63\x00\x61\x00\x72\x00\x61\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\x48\x00\x54\x00\ +\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x79\x00\ +\x20\x00\x63\x00\x69\x00\x65\x00\x72\x00\x72\x00\x61\x00\x20\x00\ +\x6c\x00\x61\x00\x20\x00\x6c\x00\xed\x00\x6e\x00\x65\x00\x61\x00\ +\x20\x00\x61\x00\x63\x00\x74\x00\x75\x00\x61\x00\x6c\x00\x20\x00\ +\x28\x00\x43\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x28\x46\ +\x69\x6e\x69\x73\x68\x65\x73\x20\x61\x6e\x64\x20\x63\x6c\x6f\x73\ +\x65\x73\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\ +\x69\x6e\x65\x20\x28\x43\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x6a\x00\x46\x00\x69\x00\x6e\x00\x69\x00\ +\x73\x00\x68\x00\x65\x00\x73\x00\x20\x00\x74\x00\x68\x00\x65\x00\ +\x20\x00\x63\x00\x75\x00\x72\x00\x72\x00\x65\x00\x6e\x00\x74\x00\ +\x20\x00\x64\x00\x72\x00\x61\x00\x77\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x64\x00\x69\x00\x74\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x72\x00\ +\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x28\x00\x46\x00\ +\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x35\x46\x69\x6e\x69\x73\ +\x68\x65\x73\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\ +\x64\x72\x61\x77\x69\x6e\x67\x20\x6f\x72\x20\x65\x64\x69\x74\x69\ +\x6e\x67\x20\x6f\x70\x65\x72\x61\x74\x69\x6f\x6e\x20\x28\x46\x29\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\ +\x00\x54\x00\x61\x00\x6d\x00\x61\x00\xf1\x00\x6f\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x66\x00\x75\x00\x65\x00\x6e\x00\x74\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\x84\x00\x45\x00\x6e\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\ +\x72\x00\x61\x00\x64\x00\x6f\x00\x20\x00\x31\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\ +\x6c\x00\x20\x00\x74\x00\x69\x00\x70\x00\x6f\x00\x20\x00\x63\x00\ +\x72\x00\x6f\x00\x71\x00\x75\x00\x69\x00\x73\x00\x20\x00\x63\x00\ +\x65\x00\x72\x00\x72\x00\x61\x00\x64\x00\x6f\x00\x3a\x00\x20\x00\ +\x68\x00\x61\x00\x63\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6e\x00\ +\x61\x00\x20\x00\x63\x00\x61\x00\x72\x00\x61\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x65\x00\x6c\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\x56\x00\x45\x00\x6e\x00\x63\x00\x6f\x00\x6e\x00\ +\x74\x00\x72\x00\x61\x00\x64\x00\x61\x00\x20\x00\x31\x00\x20\x00\ +\x63\x00\x61\x00\x72\x00\x61\x00\x3a\x00\x20\x00\x65\x00\x78\x00\ +\x74\x00\x72\x00\x61\x00\x79\x00\x65\x00\x6e\x00\x64\x00\x6f\x00\ +\x20\x00\x73\x00\x75\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x61\x00\ +\x6d\x00\x62\x00\x72\x00\x65\x00\x73\x00\x20\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x23\x46\x6f\x75\x6e\x64\x20\x31\x20\x66\x61\x63\ +\x65\x3a\x20\x65\x78\x74\x72\x61\x63\x74\x69\x6e\x67\x20\x69\x74\ +\x73\x20\x77\x69\x72\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x64\x00\x45\x00\x6e\x00\x63\x00\x6f\ +\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x64\x00\x6f\x00\x73\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\ +\x00\x6e\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\ +\x00\xe9\x00\x74\x00\x72\x00\x69\x00\x63\x00\x6f\x00\x73\x00\x20\ +\x00\x31\x00\x3a\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x79\x00\xe9\ +\x00\x63\x00\x74\x00\x65\x00\x6c\x00\x6f\x00\x73\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\x4a\x00\x45\x00\x6e\x00\x63\x00\x6f\x00\x6e\x00\ +\x74\x00\x72\x00\x61\x00\x64\x00\x6f\x00\x20\x00\x31\x00\x20\x00\ +\x63\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x61\x00\x62\x00\ +\x69\x00\x65\x00\x72\x00\x74\x00\x6f\x00\x3a\x00\x20\x00\x63\x00\ +\x69\x00\x65\x00\x72\x00\x72\x00\x65\x00\x6c\x00\x6f\x00\x20\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1e\x46\x6f\x75\x6e\x64\x20\x31\ +\x20\x6f\x70\x65\x6e\x20\x77\x69\x72\x65\x3a\x20\x63\x6c\x6f\x73\ +\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x72\x00\x45\x00\x6e\x00\x63\x00\x6f\x00\ +\x6e\x00\x74\x00\x72\x00\x61\x00\x64\x00\x6f\x00\x20\x00\x75\x00\ +\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\ +\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\xe9\x00\x74\x00\ +\x72\x00\x69\x00\x63\x00\x6f\x00\x3a\x00\x20\x00\x72\x00\x6f\x00\ +\x6d\x00\x70\x00\x65\x00\x72\x00\x20\x00\x73\x00\x75\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\x61\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x35\x46\x6f\x75\x6e\x64\x20\x31\x20\x70\x61\x72\x61\x6d\ +\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x62\x72\ +\x65\x61\x6b\x69\x6e\x67\x20\x69\x74\x73\x20\x64\x65\x70\x65\x6e\ +\x64\x65\x6e\x63\x69\x65\x73\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x5a\x00\x46\x00\x6f\x00\x75\x00\x6e\ +\x00\x64\x00\x20\x00\x31\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\ +\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x62\x00\x6c\ +\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\ +\x00\x3a\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\x00\x64\x00\x69\ +\x00\x66\x00\x79\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x69\x00\x74\ +\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2d\x46\x6f\x75\x6e\ +\x64\x20\x31\x20\x73\x6f\x6c\x69\x64\x69\x66\x69\x63\x61\x62\x6c\ +\x65\x20\x6f\x62\x6a\x65\x63\x74\x3a\x20\x73\x6f\x6c\x69\x64\x69\ +\x66\x79\x69\x6e\x67\x20\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x4e\x00\x45\x00\x6e\x00\x63\x00\ +\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x64\x00\x6f\x00\x73\x00\ +\x20\x00\x32\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x6f\x00\x73\x00\x3a\x00\x20\x00\x46\x00\x75\x00\x73\x00\x69\x00\ +\x6f\x00\x6e\x00\x65\x00\x6e\x00\x73\x00\x65\x00\x20\x00\x61\x00\ +\x6d\x00\x62\x00\x6f\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\x40\x00\x45\ +\x00\x6e\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x64\ +\x00\x6f\x00\x73\x00\x20\x00\x32\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x3a\x00\x20\x00\x52\x00\x65\ +\x00\x73\x00\x74\x00\x61\x00\x72\x00\x6c\x00\x6f\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\x5c\x00\x45\x00\x6e\x00\x63\ +\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x64\x00\x6f\x00\x73\ +\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x6d\x00\x62\x00\x72\x00\x65\ +\x00\x73\x00\x20\x00\x63\x00\x65\x00\x72\x00\x72\x00\x61\x00\x64\ +\x00\x6f\x00\x73\x00\x3a\x00\x20\x00\x68\x00\x61\x00\x63\x00\x69\ +\x00\x65\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x63\x00\x61\x00\x72\ +\x00\x61\x00\x73\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\ +\x7e\x00\x45\x00\x6e\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\ +\x61\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x67\x00\x72\x00\x75\x00\ +\x70\x00\x6f\x00\x73\x00\x3a\x00\x20\x00\x63\x00\x65\x00\x72\x00\ +\x72\x00\x61\x00\x72\x00\x20\x00\x63\x00\x61\x00\x64\x00\x61\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\ +\x61\x00\x62\x00\x69\x00\x65\x00\x72\x00\x74\x00\x6f\x00\x20\x00\ +\x64\x00\x65\x00\x6e\x00\x74\x00\x72\x00\x6f\x00\x20\x00\x64\x00\ +\x65\x00\x6c\x00\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\x6f\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\x00\x45\x00\x6e\x00\x63\x00\x6f\ +\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x64\x00\x61\x00\x73\x00\x20\ +\x00\x73\x00\xf3\x00\x6c\x00\x6f\x00\x20\x00\x61\x00\x6c\x00\x61\ +\x00\x6d\x00\x62\x00\x72\x00\x65\x00\x73\x00\x3a\x00\x20\x00\x65\ +\x00\x78\x00\x74\x00\x72\x00\x61\x00\x79\x00\x65\x00\x6e\x00\x64\ +\x00\x6f\x00\x20\x00\x73\x00\x75\x00\x73\x00\x20\x00\x61\x00\x72\ +\x00\x69\x00\x73\x00\x74\x00\x61\x00\x73\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\x6a\x00\ +\x45\x00\x6e\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\ +\x64\x00\x61\x00\x73\x00\x20\x00\x76\x00\x61\x00\x72\x00\x69\x00\ +\x61\x00\x73\x00\x20\x00\x61\x00\x72\x00\x69\x00\x73\x00\x74\x00\ +\x61\x00\x73\x00\x3a\x00\x20\x00\x43\x00\x6f\x00\x6e\x00\x76\x00\ +\x69\x00\x65\x00\x72\x00\x74\x00\x61\x00\x6c\x00\x61\x00\x73\x00\ +\x20\x00\x65\x00\x6e\x00\x20\x00\x61\x00\x6c\x00\x61\x00\x6d\x00\ +\x62\x00\x72\x00\x65\x00\x73\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\x48\x00\x45\x00\x6e\x00\x63\x00\x6f\x00\x6e\x00\x74\ +\x00\x72\x00\x61\x00\x64\x00\x61\x00\x73\x00\x20\x00\x76\x00\x61\ +\x00\x72\x00\x69\x00\x61\x00\x73\x00\x20\x00\x63\x00\x61\x00\x72\ +\x00\x61\x00\x73\x00\x3a\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\ +\x00\x69\x00\x72\x00\x6c\x00\x61\x00\x73\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\x6e\x00\x45\x00\x6e\x00\x63\ +\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x64\x00\x61\x00\x73\ +\x00\x20\x00\x76\x00\x61\x00\x72\x00\x69\x00\x61\x00\x73\x00\x20\ +\x00\x61\x00\x72\x00\x69\x00\x73\x00\x74\x00\x61\x00\x73\x00\x20\ +\x00\x6e\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x65\x00\x63\ +\x00\x74\x00\x61\x00\x64\x00\x61\x00\x73\x00\x3a\x00\x20\x00\x43\ +\x00\x6f\x00\x6d\x00\x62\x00\x69\x00\x6e\x00\xe1\x00\x6e\x00\x64\ +\x00\x6f\x00\x6c\x00\x61\x00\x73\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\x6c\x00\x45\x00\x6e\x00\x63\x00\x6f\x00\x6e\x00\ +\x74\x00\x72\x00\x61\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x76\x00\ +\x61\x00\x72\x00\x69\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\ +\x20\x00\x74\x00\x72\x00\x61\x00\x74\x00\x61\x00\x62\x00\x6c\x00\ +\x65\x00\x73\x00\x3a\x00\x20\x00\x43\x00\x6f\x00\x6d\x00\x62\x00\ +\x69\x00\x6e\x00\xe1\x00\x6e\x00\x64\x00\x6f\x00\x6c\x00\x6f\x00\ +\x73\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\x72\x00\x45\x00\x6e\x00\x63\x00\x6f\ +\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x64\x00\x6f\x00\x73\x00\x20\ +\x00\x76\x00\x61\x00\x72\x00\x69\x00\x6f\x00\x73\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x3a\x00\x20\ +\x00\x72\x00\x65\x00\x73\x00\x74\x00\x61\x00\x72\x00\x6c\x00\x6f\ +\x00\x73\x00\x20\x00\x72\x00\x65\x00\x73\x00\x70\x00\x65\x00\x63\ +\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x6c\x00\x20\x00\x70\x00\x72\ +\x00\x69\x00\x6d\x00\x65\x00\x72\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x3b\x46\x6f\x75\x6e\x64\x20\x73\x65\x76\x65\x72\x61\ +\x6c\x20\x6f\x62\x6a\x65\x63\x74\x73\x3a\x20\x73\x75\x62\x74\x72\ +\x61\x63\x74\x69\x6e\x67\x20\x74\x68\x65\x6d\x20\x66\x72\x6f\x6d\ +\x20\x74\x68\x65\x20\x66\x69\x72\x73\x74\x20\x6f\x6e\x65\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\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\xae\x00\x53\x00\x69\x00\x20\x00\x65\x00\x73\ +\x00\x74\x00\xe1\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\ +\x00\x61\x00\x64\x00\x6f\x00\x2c\x00\x20\x00\x65\x00\x6c\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x20\ +\x00\x6e\x00\x6f\x00\x20\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\ +\x00\x6e\x00\x61\x00\x72\x00\xe1\x00\x20\x00\x68\x00\x61\x00\x73\ +\x00\x74\x00\x61\x00\x20\x00\x71\x00\x75\x00\x65\x00\x20\x00\x76\ +\x00\x75\x00\x65\x00\x6c\x00\x76\x00\x61\x00\x20\x00\x61\x00\x20\ +\x00\x70\x00\x75\x00\x6c\x00\x73\x00\x61\x00\x72\x00\x20\x00\x65\ +\x00\x6c\x00\x20\x00\x62\x00\x6f\x00\x74\x00\xf3\x00\x6e\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x61\x00\x6e\ +\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4c\x49\x66\ +\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x63\x6f\x6d\x6d\x61\x6e\ +\x64\x20\x77\x69\x6c\x6c\x20\x6e\x6f\x74\x20\x66\x69\x6e\x69\x73\ +\x68\x20\x75\x6e\x74\x69\x6c\x20\x79\x6f\x75\x20\x70\x72\x65\x73\ +\x73\x20\x74\x68\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x62\x75\ +\x74\x74\x6f\x6e\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x88\x00\x53\x00\x69\x00\x20\ +\x00\x65\x00\x73\x00\x74\x00\xe1\x00\x20\x00\x61\x00\x63\x00\x74\ +\x00\x69\x00\x76\x00\x61\x00\x64\x00\x61\x00\x2c\x00\x20\x00\x6c\ +\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\ +\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\x72\x00\xe1\x00\x6e\ +\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x61\x00\x64\x00\x6f\ +\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x6c\x00\x75\x00\x67\ +\x00\x61\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6d\x00\x6f\ +\x00\x76\x00\x69\x00\x64\x00\x6f\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\x40\x00\x53\x00\ +\x65\x00\x20\x00\x68\x00\x61\x00\x20\x00\x65\x00\x6c\x00\x69\x00\ +\x6d\x00\x69\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x20\x00\x65\x00\ +\x6c\x00\x20\x00\xfa\x00\x6c\x00\x74\x00\x69\x00\x6d\x00\x6f\x00\ +\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x6f\x00\x0a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1c\x4c\x61\x73\x74\x20\x70\x6f\x69\x6e\ +\x74\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x72\x65\x6d\x6f\x76\ +\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0a\x00\x4c\x00\xed\x00\x6e\x00\x65\x00\x61\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1c\x00\x43\x00\x6f\x00\ +\x6c\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\ +\xed\x00\x6e\x00\x65\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0a\x4c\x69\x6e\x65\x20\x43\x6f\x6c\x6f\x72\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x47\x00\x72\x00\ +\x6f\x00\x73\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x6c\x00\xed\x00\x6e\x00\x65\x00\x61\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\x4d\x00\ +\x6f\x00\x76\x00\x65\x00\x72\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\x0e\x00\x4e\x00\x69\x00\x6e\x00\x67\x00\x75\x00\ +\x6e\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4e\x6f\x6e\ +\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x1e\x00\x4e\x00\xfa\x00\x6d\x00\x65\x00\x72\x00\x6f\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x64\x00\x6f\x00\x73\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\x1a\x00\x45\x00\x71\x00\x75\x00\x69\ +\x00\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x69\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x4f\x66\x66\x73\ +\x65\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x6c\x00\x45\x00\x71\x00\x75\x00\x69\x00\x64\x00\x69\x00\x73\ +\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x69\x00\x61\x00\x20\x00\x73\ +\x00\x6f\x00\x6c\x00\x6f\x00\x20\x00\x66\x00\x75\x00\x6e\x00\x63\ +\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6e\ +\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x61\ +\x00\x64\x00\x61\x00\x20\x00\x76\x00\x65\x00\x7a\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\x1e\x00\x44\x00\x65\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x61\ +\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\ +\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\x44\x00\x65\x00\x73\x00\x69\x00\x67\x00\ +\x6e\x00\x61\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x61\x00\x20\x00\ +\x63\x00\x61\x00\x72\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\ +\x61\x00\x20\x00\x64\x00\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\ +\x72\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x70\x00\x6c\x00\x61\x00\ +\x6e\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\x00\x69\x00\ +\x62\x00\x75\x00\x6a\x00\x6f\x00\x0a\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\x45\x00\x6c\x00\ +\x69\x00\x6a\x00\x61\x00\x20\x00\x61\x00\x70\x00\x65\x00\x72\x00\ +\x74\x00\x75\x00\x72\x00\x61\x00\x3a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x50\x69\x63\x6b\x20\x61\x70\x65\x72\x74\x75\x72\x65\ +\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x2c\x00\x44\x00\x65\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x61\ +\x00\x72\x00\x20\x00\xe1\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x6f\ +\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x3a\x00\x0a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\x6b\x20\x62\x61\x73\ +\x65\x20\x61\x6e\x67\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x44\x00\x65\x00\x73\x00\ +\x69\x00\x67\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x70\x00\x75\x00\ +\x6e\x00\x74\x00\x6f\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\ +\x3a\x00\x0a\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\x30\x00\x44\ +\x00\x65\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x61\x00\x72\x00\x20\ +\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x63\x00\x65\ +\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x6c\x00\x3a\x00\x0a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x13\x50\x69\x63\x6b\x20\x63\x65\x6e\ +\x74\x65\x72\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x44\x00\x65\x00\ +\x73\x00\x69\x00\x67\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x64\x00\ +\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x69\x00\x61\x00\ +\x3a\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x50\x69\x63\ +\x6b\x20\x64\x69\x73\x74\x61\x6e\x63\x65\x3a\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\x00\x44\x00\x65\ +\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x70\ +\x00\x75\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x66\x00\x69\x00\x6e\ +\x00\x61\x00\x6c\x00\x3a\x00\x0a\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\x34\x00\x44\x00\x65\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x61\ +\x00\x72\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x70\x00\x72\x00\x69\ +\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\ +\x00\x6f\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\x40\x00\x44\x00\x65\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x61\ +\x00\x72\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x69\ +\x00\x7a\x00\x61\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x6f\x00\x3a\ +\x00\x0a\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\ +\x74\x00\x64\x00\x65\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x61\x00\ +\x72\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x73\x00\x69\x00\x67\x00\ +\x75\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x70\x00\ +\x75\x00\x6e\x00\x74\x00\x6f\x00\x2c\x00\x20\x00\x6f\x00\x20\x00\ +\x28\x00\x46\x00\x29\x00\x20\x00\x74\x00\x65\x00\x72\x00\x6d\x00\ +\x69\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x6f\x00\x20\x00\x28\x00\ +\x43\x00\x29\x00\x20\x00\x63\x00\x65\x00\x72\x00\x72\x00\x61\x00\ +\x72\x00\x3a\x00\x0a\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\x3a\x00\x44\x00\x65\x00\x73\x00\x69\ +\x00\x67\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x65\x00\x6c\x00\x20\ +\x00\x73\x00\x69\x00\x67\x00\x75\x00\x69\x00\x65\x00\x6e\x00\x74\ +\x00\x65\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x6f\x00\x3a\ +\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\x6b\ +\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x38\x00\x44\x00\ +\x65\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x61\x00\x72\x00\x20\x00\ +\x70\x00\x75\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x65\x00\x6e\x00\x66\x00\x72\x00\x65\x00\x6e\x00\x74\x00\ +\x65\x00\x3a\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x50\ +\x69\x63\x6b\x20\x6f\x70\x70\x6f\x73\x69\x74\x65\x20\x70\x6f\x69\ +\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x20\x00\x44\x00\x65\x00\x73\x00\x69\x00\x67\x00\x6e\ +\x00\x61\x00\x72\x00\x20\x00\x72\x00\x61\x00\x64\x00\x69\x00\x6f\ +\x00\x3a\x00\x0a\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\x3a\x00\x44\x00\x65\x00\ +\x73\x00\x69\x00\x67\x00\x6e\x00\x61\x00\x72\x00\x20\x00\xe1\x00\ +\x6e\x00\x67\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x72\x00\x6f\x00\x74\x00\x61\x00\x63\x00\x69\x00\xf3\x00\ +\x6e\x00\x3a\x00\x0a\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\x3a\x00\x44\x00\x65\x00\x73\x00\x69\x00\x67\x00\x6e\ +\x00\x61\x00\x72\x00\x20\x00\x63\x00\x65\x00\x6e\x00\x74\x00\x72\ +\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x72\x00\x6f\x00\x74\ +\x00\x61\x00\x63\x00\x69\x00\xf3\x00\x6e\x00\x3a\x00\x0a\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x16\x50\x69\x63\x6b\x20\x72\x6f\x74\ +\x61\x74\x69\x6f\x6e\x20\x63\x65\x6e\x74\x65\x72\x3a\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\x00\x44\ +\x00\x65\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x61\x00\x72\x00\x20\ +\x00\x66\x00\x61\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x65\x00\x73\x00\x63\x00\x61\x00\x6c\x00\x61\ +\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\ +\x36\x00\x44\x00\x65\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x61\x00\ +\x72\x00\x20\x00\xe1\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x6f\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x69\x00\x63\x00\ +\x69\x00\x6f\x00\x3a\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x12\x50\x69\x63\x6b\x20\x73\x74\x61\x72\x74\x20\x61\x6e\x67\x6c\ +\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x34\x00\x44\x00\x65\x00\x73\x00\x69\x00\x67\x00\x6e\x00\ +\x61\x00\x72\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x6f\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x69\x00\x63\x00\ +\x69\x00\x6f\x00\x3a\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x12\x50\x69\x63\x6b\x20\x73\x74\x61\x72\x74\x20\x70\x6f\x69\x6e\ +\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x0a\x00\x50\x00\x75\x00\x6e\x00\x74\x00\x6f\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\x52\x00\x61\ +\x00\x64\x00\x69\x00\x6f\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\x34\x00\x72\x00\x61\x00\x64\x00\x69\x00\x6f\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x63\ +\x00\x69\x00\x72\x00\x63\x00\x75\x00\x6e\x00\x66\x00\x65\x00\x72\ +\x00\x65\x00\x6e\x00\x63\x00\x69\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\x42\x00\x45\x00\x6c\x00\x69\x00\x6d\x00\x69\x00\x6e\ +\x00\x61\x00\x72\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x6f\ +\x00\x73\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x63\x00\x74\ +\x00\x75\x00\x61\x00\x6c\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\x47\x00\x69\x00\x72\x00\x61\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\x0e\x00\ +\x45\x00\x73\x00\x63\x00\x61\x00\x6c\x00\x61\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\x22\x00\x53\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\ +\x00\x72\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x6f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x65\x6c\x65\x63\x74\x20\x50\ +\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x28\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\ +\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x70\x00\x6c\ +\x00\x61\x00\x6e\x00\x6f\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\x28\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x70\x00\ +\x6c\x00\x61\x00\x6e\x00\x6f\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\x28\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\ +\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x70\ +\x00\x6c\x00\x61\x00\x6e\x00\x6f\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\x42\x00\x53\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x20\x00\ +\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x6f\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x6d\x00\ +\x6f\x00\x76\x00\x65\x00\x72\x00\x0a\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\x52\x00\x53\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\ +\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\ +\x00\x20\x00\x65\x00\x71\x00\x75\x00\x69\x00\x64\x00\x69\x00\x73\ +\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x69\x00\x61\x00\x0a\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\x42\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\x00\ +\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x75\x00\x6e\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x67\x00\x69\x00\x72\x00\ +\x61\x00\x72\x00\x0a\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\x46\x00\x53\x00\x65\x00\x6c\ +\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\ +\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\ +\x00\x65\x00\x73\x00\x63\x00\x61\x00\x6c\x00\x61\x00\x72\x00\x0a\ +\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\x5e\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x63\ +\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x75\x00\x6e\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\ +\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x72\x00\x65\x00\x63\ +\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x72\x00\x20\x00\x2f\x00\x20\ +\x00\x65\x00\x78\x00\x74\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\ +\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\x46\x00\x53\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\ +\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\ +\x00\x61\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x72\ +\x00\x0a\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\x62\x00\x53\x00\x65\x00\x6c\x00\x65\ +\x00\x63\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x20\ +\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x6f\x00\x20\x00\x70\x00\x65\ +\x00\x72\x00\x70\x00\x65\x00\x6e\x00\x64\x00\x69\x00\x63\x00\x75\ +\x00\x6c\x00\x61\x00\x72\x00\x20\x00\x61\x00\x20\x00\x6c\x00\x61\ +\x00\x20\x00\x76\x00\x69\x00\x73\x00\x74\x00\x61\x00\x20\x00\x61\ +\x00\x63\x00\x74\x00\x75\x00\x61\x00\x6c\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x2e\x53\x65\x6c\x65\x63\x74\x20\x70\x6c\x61\x6e\x65\ +\x20\x70\x65\x72\x70\x65\x6e\x64\x69\x63\x75\x6c\x61\x72\x20\x74\ +\x6f\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x76\x69\ +\x65\x77\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x30\x00\x53\x00\x65\x00\x20\x00\x68\x00\x61\x00\x20\x00\x63\ +\x00\x65\x00\x72\x00\x72\x00\x61\x00\x64\x00\x6f\x00\x20\x00\x6c\ +\x00\x61\x00\x20\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\ +\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\x46\x00\x45\ +\x00\x73\x00\x74\x00\x65\x00\x20\x00\x74\x00\x69\x00\x70\x00\x6f\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x74\x00\x6f\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x65\x00\x73\ +\x00\x20\x00\x65\x00\x64\x00\x69\x00\x74\x00\x61\x00\x62\x00\x6c\ +\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x21\x54\x68\ +\x69\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x20\x69\ +\x73\x20\x6e\x6f\x74\x20\x65\x64\x69\x74\x61\x62\x6c\x65\x0a\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x40\x00\ +\x43\x00\x6f\x00\x6e\x00\x6d\x00\x75\x00\x74\x00\x61\x00\x72\x00\ +\x20\x00\x65\x00\x6c\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x6f\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\ +\x74\x00\x72\x00\x75\x00\x63\x00\x63\x00\x69\x00\xf3\x00\x6e\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\x46\x00\x44\x00\x65\x00\x73\x00\x68\ +\x00\x61\x00\x63\x00\x65\x00\x20\x00\x65\x00\x6c\x00\x20\x00\xfa\ +\x00\x6c\x00\x74\x00\x69\x00\x6d\x00\x6f\x00\x20\x00\x73\x00\x65\ +\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\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\x56\x00\x69\x00\x73\x00\x74\x00\x61\ +\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\x32\x00\x53\x00\x65\x00\ +\x20\x00\x68\x00\x61\x00\x20\x00\x63\x00\x65\x00\x72\x00\x72\x00\ +\x61\x00\x64\x00\x6f\x00\x20\x00\x65\x00\x6c\x00\x20\x00\x61\x00\ +\x6c\x00\x61\x00\x6d\x00\x62\x00\x72\x00\x65\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\ +\x40\x00\x43\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x65\x00\x6e\x00\ +\x61\x00\x64\x00\x61\x00\x20\x00\x58\x00\x20\x00\x64\x00\x65\x00\ +\x6c\x00\x20\x00\x73\x00\x69\x00\x67\x00\x75\x00\x69\x00\x65\x00\ +\x6e\x00\x74\x00\x65\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\ +\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x58\x20\x63\x6f\x6f\ +\x72\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\x20\ +\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x04\x00\x58\x00\x59\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x02\x58\x59\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x04\x00\x58\x00\x5a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x02\x58\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x02\x00\x59\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x01\x59\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x40\x00\x43\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x65\x00\x6e\ +\x00\x61\x00\x64\x00\x61\x00\x20\x00\x59\x00\x20\x00\x64\x00\x65\ +\x00\x6c\x00\x20\x00\x73\x00\x69\x00\x67\x00\x75\x00\x69\x00\x65\ +\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\ +\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\x59\x20\x63\x6f\ +\x6f\x72\x64\x69\x6e\x61\x74\x65\x20\x6f\x66\x20\x6e\x65\x78\x74\ +\x20\x70\x6f\x69\x6e\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x04\x00\x59\x00\x5a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x02\x59\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x02\x00\x5a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x01\x5a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x40\x00\x43\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x65\x00\ +\x6e\x00\x61\x00\x64\x00\x61\x00\x20\x00\x5a\x00\x20\x00\x64\x00\ +\x65\x00\x6c\x00\x20\x00\x73\x00\x69\x00\x67\x00\x75\x00\x69\x00\ +\x65\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x70\x00\x75\x00\x6e\x00\ +\x74\x00\x6f\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\x43\x00\x6f\x00\x6d\x00\x61\x00\ +\x6e\x00\x64\x00\x6f\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\ +\x76\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\x3e\x00\x42\ +\x00\x61\x00\x72\x00\x72\x00\x61\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x73\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x72\x00\x6f\x00\x71\ +\x00\x75\x00\x69\x00\x7a\x00\x61\x00\x64\x00\x6f\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\xb9\x55\ +\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\xac\xf8\x00\x00\x00\x59\ +\x00\x00\xad\xc5\x00\x00\x00\x5a\x00\x00\xae\x72\x00\x00\x05\xd9\ +\x00\x00\xad\x85\x00\x00\x05\xda\x00\x00\xad\xa5\x00\x00\x05\xea\ +\x00\x00\xae\x52\x00\x00\x07\x78\x00\x00\x76\x8a\x00\x00\x48\x83\ +\x00\x00\x03\x69\x00\x00\x48\x83\x00\x00\x7d\x4e\x00\x00\x68\x34\ +\x00\x00\x70\xad\x00\x04\xa6\x79\x00\x00\x80\x81\x00\x04\xbb\x04\ +\x00\x00\x0c\x32\x00\x04\xbb\x04\x00\x00\x85\x32\x00\x05\x30\x45\ +\x00\x00\x0e\x95\x00\x05\x30\x45\x00\x00\x97\xf1\x00\x05\x46\xc5\ +\x00\x00\x0e\xc2\x00\x05\x46\xc5\x00\x00\x98\xa1\x00\x05\x56\x45\ +\x00\x00\x4a\xe7\x00\x05\x56\x45\x00\x00\x98\xcf\x00\x05\xac\xf4\ +\x00\x00\x1a\xda\x00\x05\xb8\xfd\x00\x00\xaa\x6e\x00\x05\xcf\xc7\ +\x00\x00\xab\x18\x00\x05\xe0\x85\x00\x00\x24\xd1\x00\x06\xab\x8c\ +\x00\x00\x72\x35\x00\x10\x84\x49\x00\x00\x57\xed\x00\x12\x05\xba\ +\x00\x00\xa6\x62\x00\x16\xc6\xda\x00\x00\x8b\x9e\x00\x2a\xa6\x79\ +\x00\x00\x79\x8e\x00\x2b\xc4\xaf\x00\x00\x7a\x76\x00\x2b\xe0\x65\ +\x00\x00\x7a\xa5\x00\x39\xdf\x33\x00\x00\x38\x00\x00\x3d\xa1\x19\ +\x00\x00\x7e\x96\x00\x3e\x93\x83\x00\x00\x39\x3e\x00\x48\x8f\x7c\ +\x00\x00\x27\xbd\x00\x4b\x66\x35\x00\x00\x34\xfe\x00\x4b\x66\x37\ +\x00\x00\x35\x43\x00\x4b\x66\x39\x00\x00\x35\x88\x00\x4b\x87\xd4\ +\x00\x00\x84\x5b\x00\x57\x60\x54\x00\x00\xa2\x0d\x00\x58\xfd\xf4\ +\x00\x00\x4e\x78\x00\x59\x98\x25\x00\x00\x15\x2c\x00\x59\x98\x25\ +\x00\x00\xa3\x61\x00\x6a\x58\x9a\x00\x00\x9b\x19\x00\x79\xef\xd4\ +\x00\x00\x76\xc2\x00\x7e\x7f\x0e\x00\x00\x6c\xda\x00\x8a\x23\x95\ +\x00\x00\x2b\xb5\x00\x8a\x23\x97\x00\x00\x2b\xff\x00\x8a\x23\x99\ +\x00\x00\x2c\x49\x00\x91\xbc\xe9\x00\x00\x0e\xf5\x00\xa6\x37\x3f\ +\x00\x00\x2a\x60\x00\xaa\x80\x25\x00\x00\x83\x87\x00\xc6\xe3\x6e\ +\x00\x00\x26\x37\x00\xcb\xa8\x14\x00\x00\x75\x8c\x00\xfc\x00\xca\ +\x00\x00\x93\x46\x01\x21\xd6\x39\x00\x00\x56\xc2\x01\x22\xb4\xf9\ +\x00\x00\x15\x5f\x01\x2f\x8e\x7e\x00\x00\x62\xb8\x01\x48\xfe\xa3\ +\x00\x00\x39\xcc\x01\x53\xf3\xaa\x00\x00\x88\x9a\x01\x56\x16\x4a\ +\x00\x00\x92\xc5\x01\x67\x0d\x8a\x00\x00\x8d\x85\x01\x69\x11\x7a\ +\x00\x00\x9f\xa0\x01\x82\x39\x0a\x00\x00\x9b\xd5\x01\x8b\x68\x75\ +\x00\x00\xa9\xed\x01\xa1\x7f\x63\x00\x00\x1d\x8b\x01\xc1\xd9\xde\ +\x00\x00\x5a\x58\x01\xd2\x8f\xd3\x00\x00\x4f\x27\x01\xdf\x11\x43\ +\x00\x00\x05\xd0\x01\xe2\xf4\x5a\x00\x00\xa5\xe1\x01\xfc\xae\xd3\ +\x00\x00\x76\xff\x02\x05\xbe\x25\x00\x00\x82\x12\x02\x46\x58\x0a\ +\x00\x00\x9e\xd8\x02\x65\xad\x62\x00\x00\xaf\x4a\x02\x6e\x07\xe2\ +\x00\x00\x51\xdd\x02\x76\x24\x13\x00\x00\x3e\x1d\x02\x7d\xe0\x55\ +\x00\x00\x52\x9d\x02\x94\x46\x1a\x00\x00\x9b\x72\x02\xa7\x2c\x15\ +\x00\x00\x04\x60\x02\xaa\x36\x95\x00\x00\x79\x29\x02\xb1\xf0\xba\ +\x00\x00\x8f\x76\x02\xbf\xaa\x8e\x00\x00\x3c\x74\x02\xc0\x66\xf2\ +\x00\x00\x5e\xa4\x02\xc8\x3f\xf5\x00\x00\x6a\x79\x02\xd9\xa4\xb9\ +\x00\x00\x70\x60\x02\xdb\x1a\x94\x00\x00\x07\x71\x03\x01\x84\xc4\ +\x00\x00\x94\x13\x03\x12\x97\x6a\x00\x00\x91\xea\x03\x1a\x14\x14\ +\x00\x00\x32\x60\x03\x1a\x16\x59\x00\x00\x53\x4d\x03\x2f\x1a\x6a\ +\x00\x00\x7b\x20\x03\x7e\xca\xb5\x00\x00\x45\xd0\x03\x88\x1f\xd4\ +\x00\x00\x46\xb9\x03\x9e\x58\xa5\x00\x00\x00\x4c\x03\xb3\x9e\xfa\ +\x00\x00\x9c\x8f\x03\xb5\xc8\x9a\x00\x00\x9e\x21\x03\xbd\xd4\xe4\ +\x00\x00\x7b\xd5\x03\xc4\x3c\xf5\x00\x00\x7e\x4a\x03\xc5\xd5\x5e\ +\x00\x00\x09\xc3\x03\xcb\x0d\xe5\x00\x00\xa3\x8e\x03\xdc\x0c\xd4\ +\x00\x00\x79\xee\x03\xf2\x70\x35\x00\x00\x2e\xd1\x03\xf2\xbd\x60\ +\x00\x00\x16\xdb\x03\xfb\x0f\x04\x00\x00\x31\xe0\x04\x21\x23\x23\ +\x00\x00\x22\x3b\x04\x56\x06\x93\x00\x00\x2f\xdb\x04\x60\x7c\x15\ +\x00\x00\xa2\x60\x04\x79\xef\x9a\x00\x00\x8e\xc5\x04\x82\x77\xf4\ +\x00\x00\x52\x41\x04\x87\xf9\x9e\x00\x00\x95\x16\x04\x8c\xd6\xae\ +\x00\x00\x68\x98\x04\xa0\x8a\x25\x00\x00\x05\x9d\x04\xa0\x8a\x25\ +\x00\x00\x7f\x97\x04\xa4\x31\x5a\x00\x00\x97\x7b\x04\xa8\xeb\x85\ +\x00\x00\x35\xcd\x04\xe1\x6e\xe3\x00\x00\x0a\x3b\x04\xe4\x0f\x75\ +\x00\x00\x02\xff\x04\xeb\x41\xc3\x00\x00\x2f\x54\x04\xef\xd9\xa8\ +\x00\x00\x4d\xd8\x05\x03\x83\x95\x00\x00\x72\x73\x05\x05\xcb\x13\ +\x00\x00\x44\x86\x05\x0f\xf2\x74\x00\x00\x9a\x28\x05\x1b\x10\x59\ +\x00\x00\x48\x7a\x05\x2a\xe5\x97\x00\x00\x50\x29\x05\x44\x3b\x5f\ +\x00\x00\x74\x86\x05\x5c\xd9\xc4\x00\x00\x10\x44\x05\x5c\xd9\xc4\ +\x00\x00\x99\x3e\x05\x63\xf6\x93\x00\x00\x4e\xb9\x05\x65\xee\x65\ +\x00\x00\x87\x04\x05\x87\xb0\xc3\x00\x00\xa2\x36\x05\x96\xa8\xa5\ +\x00\x00\x13\xb0\x05\x96\xa8\xa5\x00\x00\xa3\x33\x05\xad\x4b\xc3\ +\x00\x00\x46\x2c\x05\xb9\x03\xc8\x00\x00\x1f\x06\x05\xbd\x0c\xba\ +\x00\x00\x89\x49\x05\xbd\x8e\xde\x00\x00\x67\x0e\x05\xbe\x56\x93\ +\x00\x00\x4d\x6a\x05\xc5\x50\x04\x00\x00\x0c\x61\x05\xe5\x8e\x2e\ +\x00\x00\x11\x84\x05\xfb\xdc\x83\x00\x00\x44\xee\x06\x1e\xe6\xb5\ +\x00\x00\xa9\x25\x06\x29\xee\xa9\x00\x00\x7f\xc3\x06\x32\xe3\xe3\ +\x00\x00\x84\x84\x06\x57\x19\xf4\x00\x00\x00\x00\x06\x5a\xef\x15\ +\x00\x00\x79\x57\x06\x5b\xd2\xb5\x00\x00\x41\x33\x06\x6c\x88\x8e\ +\x00\x00\x42\xb1\x06\x74\x1d\x55\x00\x00\x59\xb0\x06\x8b\x96\x44\ +\x00\x00\x0d\x0f\x06\x97\x58\xc9\x00\x00\x53\xfa\x06\xbc\x80\xa5\ +\x00\x00\x1e\x91\x06\xc9\xb8\x05\x00\x00\x7c\x55\x06\xe8\x05\x4e\ +\x00\x00\x07\x02\x06\xee\xaa\x57\x00\x00\xa8\x00\x06\xf0\xcb\x25\ +\x00\x00\x1c\x55\x06\xfa\xff\xc3\x00\x00\x45\x5c\x06\xfc\x1a\x14\ +\x00\x00\x37\x07\x06\xfc\xa0\x8a\x00\x00\x9a\x6d\x07\x08\x90\xe5\ +\x00\x00\x2d\x26\x07\x0d\xb7\xf7\x00\x00\x3b\x9b\x07\x0e\x86\x3e\ +\x00\x00\x1c\xc6\x07\x35\x68\x6e\x00\x00\x18\x16\x07\x35\xe8\x9a\ +\x00\x00\x9f\xef\x07\x44\x41\x2a\x00\x00\x88\x07\x07\x4a\x1f\x63\ +\x00\x00\x02\x06\x07\x4d\x73\x22\x00\x00\x98\x19\x07\x4e\xa6\xf2\ +\x00\x00\x85\x8b\x07\x58\xcb\xe8\x00\x00\x98\x5d\x07\x63\xfe\x0e\ +\x00\x00\x12\x69\x07\x80\xc6\xb3\x00\x00\xac\xb0\x07\x88\x72\x5a\ +\x00\x00\x7d\x71\x07\xa3\xe4\x0e\x00\x00\x23\xcb\x07\xc1\xfc\x13\ +\x00\x00\x30\xac\x08\x27\xb4\xba\x00\x00\x9d\xaa\x08\x32\xc4\xaa\ +\x00\x00\xa0\xd2\x08\x36\x74\x14\x00\x00\x25\xee\x08\x44\xb9\x83\ +\x00\x00\x37\x8a\x08\x49\xc9\x30\x00\x00\x17\x39\x08\x61\x7c\xb3\ +\x00\x00\x1f\x39\x08\xa2\xca\x67\x00\x00\x52\xff\x08\xa3\xe0\x33\ +\x00\x00\x80\xa9\x08\xb1\x15\x28\x00\x00\x31\x63\x08\xb4\x04\x04\ +\x00\x00\xa2\xa8\x08\xd0\x32\xf4\x00\x00\x85\x5c\x08\xd4\xcd\x69\ +\x00\x00\x85\xcd\x08\xe1\x9b\xbe\x00\x00\x1b\x87\x08\xe1\xc1\xfa\ +\x00\x00\x87\x47\x08\xeb\x8d\x7a\x00\x00\xac\x53\x09\x20\xda\x24\ +\x00\x00\xad\xe2\x09\x20\xda\xb4\x00\x00\xae\x8f\x09\x20\xda\xd4\ +\x00\x00\xad\x15\x09\x4d\x96\xd9\x00\x00\x26\xde\x09\x65\xda\x8a\ +\x00\x00\x8b\x2b\x09\x68\x0d\x29\x00\x00\x96\x3e\x09\x71\x8d\x25\ +\x00\x00\x06\xb6\x09\x75\x23\x14\x00\x00\x7a\xd4\x09\x76\xed\x34\ +\x00\x00\x6b\xd6\x09\x86\xa6\x05\x00\x00\x25\x02\x09\x8b\x23\xba\ +\x00\x00\xa1\x3f\x09\x9e\xfd\x7e\x00\x00\x6c\x32\x09\xb6\x2a\x63\ +\x00\x00\x36\x3f\x09\xcd\x1c\x55\x00\x00\xa3\xf2\x09\xd2\x21\xea\ +\x00\x00\x63\xbd\x09\xe5\x23\x0e\x00\x00\x5d\x81\x09\xec\x2b\x45\ +\x00\x00\x0c\xbd\x09\xef\x33\xa3\x00\x00\x19\x25\x09\xf0\x1f\x6e\ +\x00\x00\x03\x90\x09\xfd\x45\x1a\x00\x00\x9c\x38\x0a\x09\xc1\x7a\ +\x00\x00\x9f\x3b\x0a\x28\x9a\x65\x00\x00\x50\xd8\x0a\x28\x9a\x67\ +\x00\x00\x51\x2f\x0a\x28\x9a\x69\x00\x00\x51\x86\x0a\x2d\xbe\xe4\ +\x00\x00\x32\xe1\x0a\x35\xa9\xfa\x00\x00\x90\x24\x0a\x3f\x27\x74\ +\x00\x00\x82\x60\x0a\x3f\x6b\x05\x00\x00\x82\xa1\x0a\x49\xa5\x4a\ +\x00\x00\xa9\x68\x0a\x60\xe0\x15\x00\x00\x27\xfe\x0a\x60\xe0\x17\ +\x00\x00\x28\x69\x0a\x60\xe0\x19\x00\x00\x28\xd4\x0a\x65\x9b\xea\ +\x00\x00\x99\x6e\x0a\x78\x05\x80\x00\x00\x01\x53\x0a\x7f\x8f\x65\ +\x00\x00\x3f\x80\x0a\x98\x86\x18\x00\x00\x2c\x93\x0a\x99\x5c\xaa\ +\x00\x00\xa1\xa5\x0a\xa8\x16\x95\x00\x00\x13\x71\x0a\xa9\x89\xec\ +\x00\x00\x47\x2a\x0a\xc8\x5c\x59\x00\x00\x10\x7b\x0a\xd0\x50\xb8\ +\x00\x00\x79\xbb\x0a\xd0\xe6\xf5\x00\x00\x18\xd6\x0a\xd6\xf1\xfa\ +\x00\x00\x84\xc1\x0a\xeb\x91\x88\x00\x00\x6b\x1b\x0b\x07\x78\x8a\ +\x00\x00\x8a\x86\x0b\x1b\xe0\x73\x00\x00\x54\x7a\x0b\x24\x9d\xb4\ +\x00\x00\x55\xab\x0b\x24\xc5\xc9\x00\x00\x13\xe5\x0b\x26\x7e\x0e\ +\x00\x00\x81\x82\x0b\x2b\x50\xfa\x00\x00\x8e\x28\x0b\x2d\xb3\xf9\ +\x00\x00\x6f\xc2\x0b\x37\x73\x69\x00\x00\xab\x3c\x0b\x40\x40\x3e\ +\x00\x00\x48\xf6\x0b\x43\xcd\x19\x00\x00\x47\xaa\x0b\x66\x28\xd2\ +\x00\x00\x6a\xc6\x0b\x88\xe0\x07\x00\x00\x0b\x3e\x0b\x94\x44\xc5\ +\x00\x00\x33\x5c\x0b\xc2\x99\x6a\x00\x00\x89\xc7\x0b\xd3\x27\xae\ +\x00\x00\x04\x9a\x0b\xd4\x7e\x9e\x00\x00\x0b\x73\x0b\xf5\xee\x53\ +\x00\x00\x98\xf7\x0c\x06\x50\x2e\x00\x00\x0d\x96\x0c\x08\x46\x23\ +\x00\x00\x83\x38\x0c\x19\xfa\x99\x00\x00\x86\x5f\x0c\x28\x9b\x45\ +\x00\x00\x7a\x43\x0c\x31\x7e\x4a\x00\x00\x9c\xe8\x0c\x38\x4d\xe5\ +\x00\x00\x07\xc4\x0c\x3a\x16\xd0\x00\x00\x1a\x32\x0c\x5a\xc0\xc8\ +\x00\x00\x7e\x18\x0c\x6e\x87\xf5\x00\x00\x23\x84\x0c\x91\xa0\x7a\ +\x00\x00\xa8\xc6\x0c\x96\x90\x59\x00\x00\x48\x11\x0c\xca\xdd\xfa\ +\x00\x00\xa6\xee\x0c\xd6\xef\x12\x00\x00\x30\x49\x0c\xde\x99\x49\ +\x00\x00\x70\x12\x0c\xf0\xde\xaa\x00\x00\x8c\xc9\x0d\x1c\xf6\xee\ +\x00\x00\x2e\x09\x0d\x3a\x6c\xba\x00\x00\x9d\x46\x0d\x45\xe2\x6a\ +\x00\x00\xa5\x6c\x0d\x59\xa1\x45\x00\x00\x83\xb9\x0d\x5a\xad\x33\ +\x00\x00\x7c\xd9\x0d\x5e\xe7\x6e\x00\x00\x29\x3f\x0d\x64\xa5\xd9\ +\x00\x00\x61\xd0\x0d\x6d\xf8\xf4\x00\x00\x08\x87\x0d\x76\xb5\x92\ +\x00\x00\x2e\x5f\x0d\x9b\xec\xc9\x00\x00\x59\x1d\x0d\xa5\xd9\x94\ +\x00\x00\x2d\xa6\x0d\xa6\xda\xa4\x00\x00\x4a\x63\x0d\xc6\xc6\x2a\ +\x00\x00\xa0\x5e\x0d\xf2\x39\xba\x00\x00\x91\x07\x0e\x2b\x04\x15\ +\x00\x00\x81\x3d\x0e\x2c\xe4\x2a\x00\x00\xa4\xf7\x0e\x4e\xcc\xc5\ +\x00\x00\x09\xf8\x0e\x6f\x9a\x1a\x00\x00\xa7\x7c\x0e\x7b\x7a\x2c\ +\x00\x00\x34\x78\x0e\x8f\x6a\x37\x00\x00\x38\xd2\x0e\x91\x65\xf5\ +\x00\x00\x1b\x07\x0e\xca\xd7\x34\x00\x00\x21\x1d\x0e\xcd\x1c\x55\ +\x00\x00\xa4\x49\x0e\xcd\x1c\x65\x00\x00\xa4\xa0\x0e\xea\xe5\x03\ +\x00\x00\x77\xae\x0e\xed\xe1\xf9\x00\x00\x4b\x27\x0f\x07\x8d\xe3\ +\x00\x00\x78\x6a\x0f\x17\x82\x4e\x00\x00\x00\xf7\x0f\x1f\x8d\xa5\ +\x00\x00\x80\xe5\x0f\x4f\x75\x3a\x00\x00\xae\xff\x0f\x5f\xca\xd5\ +\x00\x00\x33\xd7\x0f\x75\xb0\x54\x00\x00\x82\xde\x0f\x77\xc3\xb4\ +\x00\x00\x70\xe8\x0f\x89\x0b\xbe\x00\x00\x4b\x8d\x0f\x8f\xa8\xa7\ +\x00\x00\x19\xcd\x0f\x98\x0a\x39\x00\x00\xaa\x9a\x0f\x9e\xec\xa0\ +\x00\x00\x12\xa2\x0f\xbf\x87\xa3\x00\x00\x97\x2f\x0f\xcd\xce\x95\ +\x00\x00\x38\x68\x0f\xdf\x21\x05\x00\x00\x25\x8f\x0f\xf6\x06\x1e\ +\x00\x00\x21\x85\x0f\xf6\x29\x0a\x00\x00\x7c\x89\x0f\xf7\x77\xaa\ +\x00\x00\x8c\x22\x0f\xfb\x5f\xae\x00\x00\x81\xc8\x69\x00\x00\xaf\ +\xa3\x03\x00\x00\x00\x20\x00\x41\x00\x6a\x00\x6f\x00\x75\x00\x74\ +\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x70\x00\x6f\ +\x00\x69\x00\x6e\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\x60\x00\x41\x00\x6a\x00\x6f\x00\x75\x00\x74\x00\x65\x00\x20\ +\x00\x75\x00\x6e\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\ +\x00\x20\x00\xe0\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x66\x00\x69\ +\x00\x6c\x00\x61\x00\x69\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x75\ +\x00\x20\x00\x62\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\ +\x00\x20\x00\x65\x00\x78\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\ +\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\x28\x00\x41\x00\ +\x6a\x00\x6f\x00\x75\x00\x74\x00\x65\x00\x72\x00\x20\x00\x61\x00\ +\x75\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x65\x00\ +\x2e\x00\x2e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x41\ +\x64\x64\x20\x74\x6f\x20\x67\x72\x6f\x75\x70\x2e\x2e\x2e\x07\x00\ +\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x64\x64\x54\x6f\x47\x72\ +\x6f\x75\x70\x01\x03\x00\x00\x00\x5e\x00\x41\x00\x6a\x00\x6f\x00\ +\x75\x00\x74\x00\x65\x00\x20\x00\x6c\x00\x27\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\x20\x00\ +\xe0\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x67\x00\x72\x00\x6f\x00\ +\x75\x00\x70\x00\x65\x00\x20\x00\x65\x00\x78\x00\x69\x00\x73\x00\ +\x74\x00\x61\x00\x6e\x00\x74\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\x9c\x00\x41\x00\x70\ +\x00\x70\x00\x6c\x00\x69\x00\x71\x00\x75\x00\x65\x00\x72\x00\x20\ +\x00\x6c\x00\x27\x00\xe9\x00\x70\x00\x61\x00\x69\x00\x73\x00\x73\ +\x00\x65\x00\x75\x00\x72\x00\x20\x00\x65\x00\x74\x00\x20\x00\x6c\ +\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x75\x00\x6c\x00\x65\x00\x75\ +\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x67\ +\x00\x6e\x00\x65\x00\x20\x00\x61\x00\x63\x00\x74\x00\x75\x00\x65\ +\x00\x6c\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x61\x00\x75\x00\x78\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\ +\x00\x73\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x6e\x00\xe9\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\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\x32\x00\x41\x00\x70\x00\x70\x00\x6c\x00\x69\x00\ +\x71\x00\x75\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x65\x00\x20\x00\ +\x73\x00\x74\x00\x79\x00\x6c\x00\x65\x00\x20\x00\x61\x00\x63\x00\ +\x74\x00\x75\x00\x65\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\ +\x41\x00\x72\x00\x63\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\x82\x00\x43\x00\x72\x00\xe9\x00\x65\x00\x20\ +\x00\x75\x00\x6e\x00\x20\x00\x61\x00\x72\x00\x63\x00\x2e\x00\x20\ +\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x6f\x00\x75\ +\x00\x72\x00\x20\x00\x61\x00\x63\x00\x63\x00\x72\x00\x6f\x00\x63\ +\x00\x68\x00\x65\x00\x72\x00\x20\x00\x61\x00\x75\x00\x78\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x2c\x00\x20\ +\x00\x4d\x00\x41\x00\x4a\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\ +\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x69\ +\x00\x6e\x00\x64\x00\x72\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\x9e\ +\x00\x43\x00\x72\x00\xe9\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x65\ +\x00\x20\x00\x42\x00\x2d\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\ +\x00\x65\x00\x20\x00\xe0\x00\x20\x00\x70\x00\x6c\x00\x75\x00\x73\ +\x00\x69\x00\x65\x00\x75\x00\x72\x00\x73\x00\x20\x00\x70\x00\x6f\ +\x00\x69\x00\x6e\x00\x74\x00\x73\x00\x2e\x00\x20\x00\x43\x00\x54\ +\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\x00\x20\ +\x00\x61\x00\x63\x00\x63\x00\x72\x00\x6f\x00\x63\x00\x68\x00\x65\ +\x00\x72\x00\x2c\x00\x20\x00\x4d\x00\x61\x00\x6a\x00\x20\x00\x70\ +\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\ +\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x64\x00\x72\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\x43\x00\x65\x00\x72\x00\x63\x00\x6c\x00\x65\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\x88\x00\x43\x00\x72\x00\xe9\x00\x65\x00\x20\ +\x00\x75\x00\x6e\x00\x20\x00\x63\x00\x65\x00\x72\x00\x63\x00\x6c\ +\x00\x65\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\ +\x00\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x61\x00\x63\x00\x63\ +\x00\x72\x00\x6f\x00\x63\x00\x68\x00\x65\x00\x72\x00\x20\x00\x61\ +\x00\x75\x00\x78\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\ +\x00\x73\x00\x2c\x00\x20\x00\x4d\x00\x41\x00\x4a\x00\x20\x00\x70\ +\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\ +\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x64\x00\x72\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x3d\x43\x72\x65\x61\x74\x65\x73\x20\ +\x61\x20\x63\x69\x72\x63\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\ +\x6f\x20\x73\x6e\x61\x70\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x73\ +\x65\x6c\x65\x63\x74\x20\x74\x61\x6e\x67\x65\x6e\x74\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\ +\x43\x69\x72\x63\x6c\x65\x01\x03\x00\x00\x00\x1e\x00\x46\x00\x65\ +\x00\x72\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x61\x00\x20\ +\x00\x6c\x00\x69\x00\x67\x00\x6e\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\x30\x00\x46\x00\x65\x00\x72\x00\x6d\ +\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\x69\ +\x00\x67\x00\x6e\x00\x65\x00\x20\x00\x61\x00\x63\x00\x74\x00\x75\ +\x00\x65\x00\x6c\x00\x6c\x00\x65\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\x24\x00\x53\x00\x75\x00\x70\x00\x70\x00\ +\x72\x00\x69\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6e\x00\ +\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\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\x70\x00\x53\x00\x75\x00\x70\ +\x00\x70\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x20\x00\x75\x00\x6e\ +\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x64\ +\x00\x27\x00\x75\x00\x6e\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x61\ +\x00\x69\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x75\x00\x20\x00\x64\ +\x00\x27\x00\x75\x00\x6e\x00\x65\x00\x20\x00\x62\x00\x73\x00\x70\ +\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x65\x00\x78\x00\x69\ +\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x74\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\xca\x00\x43\x00\ +\x72\x00\xe9\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x65\x00\x20\x00\ +\x63\x00\x6f\x00\x74\x00\x65\x00\x2e\x00\x20\x00\x43\x00\x54\x00\ +\x52\x00\x4c\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\ +\x61\x00\x63\x00\x63\x00\x72\x00\x6f\x00\x63\x00\x68\x00\x65\x00\ +\x72\x00\x20\x00\x61\x00\x75\x00\x78\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x73\x00\x2c\x00\x20\x00\x4d\x00\x41\x00\ +\x4a\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x63\x00\ +\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x64\x00\ +\x72\x00\x65\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\ +\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\ +\x72\x00\x20\x00\x75\x00\x6e\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\x08\x00\x43\x00\x6f\x00\x74\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x44\x69\x6d\x65\x6e\ +\x73\x69\x6f\x6e\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\ +\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x01\x03\x00\x00\x00\x16\x00\x52\ +\x00\xe9\x00\x74\x00\x72\x00\x6f\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\ +\x9a\x00\xc9\x00\x63\x00\x6c\x00\x61\x00\x74\x00\x65\x00\x20\x00\ +\x6c\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x74\x00\x73\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\x73\x00\x20\x00\ +\x65\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x73\x00\x20\x00\x70\x00\x6c\x00\x75\x00\x73\x00\x20\x00\x73\x00\ +\x69\x00\x6d\x00\x70\x00\x6c\x00\x65\x00\x73\x00\x2c\x00\x20\x00\ +\x6f\x00\x75\x00\x20\x00\x73\x00\x6f\x00\x75\x00\x73\x00\x74\x00\ +\x72\x00\x61\x00\x69\x00\x74\x00\x20\x00\x6c\x00\x65\x00\x73\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\x0c\x00\x44\x00\x65\x00\x73\x00\x73\x00\x69\x00\x6e\ +\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\x70\x00\x50\x00\x6c\x00\x61\x00\ +\x63\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\x73\x00\xe9\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\ +\xe9\x00\x73\x00\x20\x00\x73\x00\x75\x00\x72\x00\x20\x00\x75\x00\ +\x6e\x00\x65\x00\x20\x00\x66\x00\x65\x00\x75\x00\x69\x00\x6c\x00\ +\x6c\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\x00\x65\x00\ +\x73\x00\x73\x00\x69\x00\x6e\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2d\x50\x75\x74\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x6f\x6e\x20\ +\x61\x20\x44\x72\x61\x77\x69\x6e\x67\x20\x73\x68\x65\x65\x74\x2e\ +\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x44\x72\x61\x77\x69\ +\x6e\x67\x01\x03\x00\x00\x00\x0c\x00\xc9\x00\x64\x00\x69\x00\x74\ +\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\ +\x69\x74\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x45\x64\x69\ +\x74\x01\x03\x00\x00\x00\x26\x00\xc9\x00\x64\x00\x69\x00\x74\x00\ +\x65\x00\x20\x00\x6c\x00\x27\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x74\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x66\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x17\x45\x64\x69\x74\x73\x20\x74\x68\x65\ +\x20\x61\x63\x74\x69\x76\x65\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\ +\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\ +\x00\x00\x22\x00\x54\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\ +\x65\x00\x72\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\x69\x00\ +\x67\x00\x6e\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\x40\x00\x54\x00\x65\x00\x72\x00\x6d\x00\x69\x00\ +\x6e\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\ +\x69\x00\x67\x00\x6e\x00\x65\x00\x20\x00\x73\x00\x61\x00\x6e\x00\ +\x73\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x66\x00\x65\x00\x72\x00\ +\x6d\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x46\ +\x69\x6e\x69\x73\x68\x65\x73\x20\x61\x20\x6c\x69\x6e\x65\x20\x77\ +\x69\x74\x68\x6f\x75\x74\x20\x63\x6c\x6f\x73\x69\x6e\x67\x20\x69\ +\x74\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x46\x69\x6e\x69\ +\x73\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\xa8\x00\x43\x00\x72\ +\x00\xe9\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x65\x00\x20\x00\x6c\ +\x00\x69\x00\x67\x00\x6e\x00\x65\x00\x20\x00\x70\x00\x61\x00\x72\ +\x00\x20\x00\x64\x00\x65\x00\x75\x00\x78\x00\x20\x00\x70\x00\x6f\ +\x00\x69\x00\x6e\x00\x74\x00\x73\x00\x2e\x00\x20\x00\x43\x00\x54\ +\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\x00\x20\ +\x00\x61\x00\x63\x00\x63\x00\x72\x00\x6f\x00\x63\x00\x68\x00\x65\ +\x00\x72\x00\x20\x00\x61\x00\x75\x00\x78\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x2c\x00\x20\x00\x4d\x00\x61\ +\x00\x6a\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x63\ +\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x64\ +\x00\x72\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\ +\x67\x00\x6e\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\x10\x00\x44\x00\xe9\x00\x70\x00\x6c\ +\x00\x61\x00\x63\x00\x65\x00\x72\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\x00\x44\x00\xe9\x00\ +\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x72\x00\x20\x00\x6c\x00\ +\x65\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x73\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\x73\x00\x20\x00\x65\x00\ +\x6e\x00\x74\x00\x72\x00\x65\x00\x20\x00\x32\x00\x20\x00\x70\x00\ +\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\x00\x2e\x00\x20\x00\x43\x00\ +\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\x00\ +\x20\x00\x61\x00\x63\x00\x63\x00\x72\x00\x6f\x00\x63\x00\x68\x00\ +\x65\x00\x72\x00\x2c\x00\x20\x00\x4d\x00\x41\x00\x4a\x00\x20\x00\ +\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\ +\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x64\x00\x72\x00\x65\x00\ +\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x70\x00\x6f\x00\ +\x75\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x65\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5a\x4d\x6f\x76\x65\x73\ +\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x32\x20\ +\x70\x6f\x69\x6e\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\ +\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\ +\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\ +\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\ +\x4d\x6f\x76\x65\x01\x03\x00\x00\x00\x10\x00\x44\x00\xe9\x00\x63\ +\x00\x61\x00\x6c\x00\x61\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\x00\x00\x0c\x44\ +\x72\x61\x66\x74\x5f\x4f\x66\x66\x73\x65\x74\x01\x03\x00\x00\x00\ +\xa0\x00\x44\x00\xe9\x00\x63\x00\x61\x00\x6c\x00\x65\x00\x20\x00\ +\x6c\x00\x27\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x20\x00\ +\x61\x00\x63\x00\x74\x00\x69\x00\x66\x00\x2e\x00\x20\x00\x43\x00\ +\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\x00\ +\x20\x00\x61\x00\x63\x00\x63\x00\x72\x00\x6f\x00\x63\x00\x68\x00\ +\x65\x00\x72\x00\x2c\x00\x20\x00\x4d\x00\x61\x00\x6a\x00\x20\x00\ +\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\ +\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x64\x00\x72\x00\x65\x00\ +\x2c\x00\x20\x00\x41\x00\x6c\x00\x74\x00\x20\x00\x70\x00\x6f\x00\ +\x75\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x65\x00\ +\x72\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\x00\x43\x00\x72\x00\xe9\ +\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x70\x00\x6f\x00\x6c\ +\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x72\x00\xe9\ +\x00\x67\x00\x75\x00\x6c\x00\x69\x00\x65\x00\x72\x00\x2e\x00\x20\ +\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x6f\x00\x75\ +\x00\x72\x00\x20\x00\x61\x00\x63\x00\x63\x00\x72\x00\x6f\x00\x63\ +\x00\x68\x00\x65\x00\x72\x00\x2c\x00\x20\x00\x4d\x00\x61\x00\x6a\ +\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x63\x00\x6f\ +\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x64\x00\x72\ +\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\x10\x00\ +\x50\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x65\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\x82\x00\x43\x00\x72\x00\xe9\x00\x65\ +\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x72\x00\x65\x00\x63\x00\x74\ +\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x70\x00\x61\ +\x00\x72\x00\x20\x00\x64\x00\x65\x00\x75\x00\x78\x00\x20\x00\x70\ +\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\x00\x2e\x00\x20\x00\x43\ +\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\ +\x00\x20\x00\x61\x00\x63\x00\x63\x00\x72\x00\x6f\x00\x63\x00\x68\ +\x00\x65\x00\x72\x00\x20\x00\x61\x00\x75\x00\x78\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\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\x63\x00\x74\x00\ +\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\ +\x0f\x44\x72\x61\x66\x74\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\ +\x01\x03\x00\x00\x00\x0e\x00\x50\x00\x69\x00\x76\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\xd4\x00\x46\x00\x61\x00\ +\x69\x00\x72\x00\x65\x00\x20\x00\x70\x00\x69\x00\x76\x00\x6f\x00\ +\x74\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\x73\x00\ +\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x6e\x00\xe9\x00\x73\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\ +\x4c\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x61\x00\ +\x63\x00\x63\x00\x72\x00\x6f\x00\x63\x00\x68\x00\x65\x00\x72\x00\ +\x2c\x00\x20\x00\x4d\x00\x41\x00\x4a\x00\x20\x00\x70\x00\x6f\x00\ +\x75\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\ +\x61\x00\x69\x00\x6e\x00\x64\x00\x72\x00\x65\x00\x2c\x00\x20\x00\ +\x41\x00\x4c\x00\x54\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\x00\ +\x20\x00\x63\x00\x72\x00\xe9\x00\x65\x00\x72\x00\x20\x00\x75\x00\ +\x6e\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x6f\x74\x61\x74\x65\x73\ +\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\ +\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\ +\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x63\x72\x65\ +\x61\x74\x65\x73\x20\x61\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0c\ +\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\x01\x03\x00\x00\ +\x00\x0e\x00\xc9\x00\x63\x00\x68\x00\x65\x00\x6c\x00\x6c\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x53\x63\x61\x6c\x65\x07\ +\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\ +\x03\x00\x00\x01\x00\x00\x43\x00\x68\x00\x61\x00\x6e\x00\x67\x00\ +\x65\x00\x20\x00\x6c\x00\x27\x00\xe9\x00\x63\x00\x68\x00\x65\x00\ +\x6c\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\x73\x00\ +\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x6e\x00\xe9\x00\x73\x00\x20\x00\xe0\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x74\x00\x69\x00\x72\x00\x20\x00\x64\x00\x27\x00\x75\x00\ +\x6e\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x2e\x00\ +\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x6f\x00\ +\x75\x00\x72\x00\x20\x00\x61\x00\x63\x00\x63\x00\x72\x00\x6f\x00\ +\x63\x00\x68\x00\x65\x00\x72\x00\x2c\x00\x20\x00\x4d\x00\x41\x00\ +\x4a\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x63\x00\ +\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x64\x00\ +\x72\x00\x65\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\ +\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x70\x00\ +\x69\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5c\x53\ +\x63\x61\x6c\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\ +\x61\x20\x62\x61\x73\x65\x20\x70\x6f\x69\x6e\x74\x2e\x20\x43\x54\ +\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\ +\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\ +\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0b\ +\x44\x72\x61\x66\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\ +\x2c\x00\x53\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x6e\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x65\x00\ +\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x65\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\x80\x00\ +\x53\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x75\x00\x73\x00\ +\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x74\x00\x73\x00\x20\x00\x61\x00\x76\x00\x65\x00\x63\x00\ +\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x6d\x00\xea\x00\x6d\x00\ +\x65\x00\x73\x00\x20\x00\x70\x00\x61\x00\x72\x00\x65\x00\x6e\x00\ +\x74\x00\x73\x00\x20\x00\x71\x00\x75\x00\x65\x00\x20\x00\x63\x00\ +\x65\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x65\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\x6e\x00\x43\x00\x68\ +\x00\x6f\x00\x69\x00\x73\x00\x69\x00\x72\x00\x20\x00\x75\x00\x6e\ +\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x74\x00\x72\x00\x61\x00\x76\x00\x61\x00\x69\x00\x6c\ +\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x6c\x00\x61\ +\x00\x20\x00\x63\x00\x72\x00\xe9\x00\x61\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x64\x00\x27\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x74\x00\x73\x00\x20\x00\x32\x00\x44\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\x00\x50\x00\x6c\ +\x00\x61\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\x74\x00\x72\ +\x00\x61\x00\x76\x00\x61\x00\x69\x00\x6c\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\x58\x00\x43\x00\x72\x00\ +\xe9\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x65\x00\x20\x00\x70\x00\ +\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x20\x00\x32\x00\x44\x00\x20\x00\x64\x00\x27\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\x73\x00\xe9\x00\ +\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\ +\xe9\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x32\x00\x50\x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x32\x00\x44\x00\x20\x00\ +\x64\x00\x27\x00\x75\x00\x6e\x00\x65\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x6d\x00\x65\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\x66\x00\x43\x00\x72\x00\xe9\x00\x65\ +\x00\x20\x00\x75\x00\x6e\x00\x65\x00\x20\x00\x61\x00\x6e\x00\x6e\ +\x00\x6f\x00\x74\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2e\ +\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x6f\ +\x00\x75\x00\x72\x00\x20\x00\x61\x00\x63\x00\x63\x00\x72\x00\x6f\ +\x00\x63\x00\x68\x00\x65\x00\x72\x00\x20\x00\x61\x00\x75\x00\x78\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\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\x78\x00\x74\x00\x65\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\x38\x00\x42\x00\ +\x61\x00\x73\x00\x63\x00\x75\x00\x6c\x00\x65\x00\x20\x00\x65\x00\ +\x6e\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\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\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\x6e\x00\x42\x00\ +\x61\x00\x73\x00\x63\x00\x75\x00\x6c\x00\x65\x00\x20\x00\x65\x00\ +\x6e\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\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\x70\x00\x6f\x00\x75\x00\x72\x00\ +\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x70\x00\x72\x00\x6f\x00\ +\x63\x00\x68\x00\x61\x00\x69\x00\x6e\x00\x73\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\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\x30\x00\x42\x00\x61\x00\ +\x73\x00\x63\x00\x75\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x65\x00\ +\x6e\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x63\x00\ +\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\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\x6c\x00\x42\x00\x61\ +\x00\x73\x00\x63\x00\x75\x00\x6c\x00\x65\x00\x20\x00\x6c\x00\x65\ +\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x43\x00\x6f\ +\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x20\x00\x70\x00\x6f\ +\x00\x75\x00\x72\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x70\ +\x00\x72\x00\x6f\x00\x63\x00\x68\x00\x61\x00\x69\x00\x6e\x00\x65\ +\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\ +\x00\x64\x00\x65\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\ +\x94\x00\x42\x00\x61\x00\x73\x00\x63\x00\x75\x00\x6c\x00\x65\x00\ +\x20\x00\x6c\x00\x65\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\ +\x20\x00\x64\x00\x27\x00\x61\x00\x66\x00\x66\x00\x69\x00\x63\x00\ +\x68\x00\x61\x00\x67\x00\x65\x00\x20\x00\x64\x00\x65\x00\x73\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\ +\x73\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x6e\x00\xe9\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x74\x00\ +\x72\x00\x65\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x61\x00\x69\x00\ +\x72\x00\x65\x00\x20\x00\x6f\x00\x75\x00\x20\x00\x6f\x00\x6d\x00\ +\x62\x00\x72\x00\xe9\x08\x00\x00\x00\x00\x06\x00\x00\x00\x46\x53\ +\x77\x61\x70\x73\x20\x64\x69\x73\x70\x6c\x61\x79\x20\x6d\x6f\x64\ +\x65\x20\x6f\x66\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x77\x69\ +\x72\x65\x66\x72\x61\x6d\x65\x20\x61\x6e\x64\x20\x66\x6c\x61\x74\ +\x6c\x69\x6e\x65\x73\x07\x00\x00\x00\x17\x44\x72\x61\x66\x74\x5f\ +\x54\x6f\x67\x67\x6c\x65\x44\x69\x73\x70\x6c\x61\x79\x4d\x6f\x64\ +\x65\x01\x03\x00\x00\x00\x36\x00\x42\x00\x61\x00\x73\x00\x63\x00\ +\x75\x00\x6c\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x6d\x00\ +\x6f\x00\x64\x00\x65\x00\x20\x00\x64\x00\x27\x00\x61\x00\x66\x00\ +\x66\x00\x69\x00\x63\x00\x68\x00\x61\x00\x67\x00\x65\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\x3a\x00\ +\x41\x00\x6a\x00\x75\x00\x73\x00\x74\x00\x65\x00\x20\x00\x6f\x00\ +\x75\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x6c\x00\x6f\x00\x6e\x00\ +\x67\x00\x65\x00\x20\x00\x6c\x00\x27\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x74\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\x2c\x00\x20\x00\ +\x6f\x00\x75\x00\x20\x00\x65\x00\x78\x00\x74\x00\x72\x00\x75\x00\ +\x64\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x66\x00\ +\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x73\x00\x69\x00\x6d\x00\ +\x70\x00\x6c\x00\x65\x00\x73\x00\x2e\x00\x20\x00\x43\x00\x54\x00\ +\x52\x00\x4c\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\ +\x65\x00\x20\x00\x6c\x00\x27\x00\x61\x00\x63\x00\x63\x00\x72\x00\ +\x6f\x00\x63\x00\x68\x00\x61\x00\x67\x00\x65\x00\x2c\x00\x20\x00\ +\x4d\x00\x61\x00\x6a\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\ +\x72\x00\x61\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x61\x00\x75\x00\ +\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x20\x00\x63\x00\x6f\x00\x75\x00\x72\x00\x61\x00\x6e\x00\x74\x00\ +\x20\x00\x6f\x00\x75\x00\x20\x00\xe0\x00\x20\x00\x6c\x00\x61\x00\ +\x20\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\x65\x00\ +\x2c\x00\x20\x00\x41\x00\x6c\x00\x74\x00\x20\x00\x69\x00\x6e\x00\ +\x76\x00\x65\x00\x72\x00\x73\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x89\x54\x72\x69\x6d\x73\x20\x6f\x72\x20\x65\x78\x74\x65\ +\x6e\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\ +\x20\x6f\x62\x6a\x65\x63\x74\x2c\x20\x6f\x72\x20\x65\x78\x74\x72\ +\x75\x64\x65\x73\x20\x73\x69\x6e\x67\x6c\x65\x20\x66\x61\x63\x65\ +\x73\x2e\x20\x43\x54\x52\x4c\x20\x73\x6e\x61\x70\x73\x2c\x20\x53\ +\x48\x49\x46\x54\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x73\x20\ +\x74\x6f\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x73\x65\x67\x6d\x65\ +\x6e\x74\x20\x6f\x72\x20\x74\x6f\x20\x6e\x6f\x72\x6d\x61\x6c\x2c\ +\x20\x41\x4c\x54\x20\x69\x6e\x76\x65\x72\x74\x73\x07\x00\x00\x00\ +\x0c\x44\x72\x61\x66\x74\x5f\x54\x72\x69\x6d\x65\x78\x01\x03\x00\ +\x00\x00\x34\x00\x41\x00\x6e\x00\x6e\x00\x75\x00\x6c\x00\x65\x00\ +\x72\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x65\x00\x72\x00\ +\x6e\x00\x69\x00\x65\x00\x72\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\x5e\x00\x41\x00\x6e\x00\ +\x6e\x00\x75\x00\x6c\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x65\x00\ +\x20\x00\x64\x00\x65\x00\x72\x00\x6e\x00\x69\x00\x65\x00\x72\x00\ +\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\ +\x69\x00\x67\x00\x6e\x00\x65\x00\x20\x00\x61\x00\x63\x00\x74\x00\ +\x75\x00\x65\x00\x6c\x00\x6c\x00\x65\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\ +\xca\x00\x4a\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x6c\x00\ +\x65\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x73\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\x73\x00\x20\x00\x65\x00\ +\x6e\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x73\x00\x65\x00\x75\x00\ +\x6c\x00\x2c\x00\x20\x00\x6f\x00\x75\x00\x20\x00\x63\x00\x6f\x00\ +\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x69\x00\x74\x00\x20\x00\ +\x6c\x00\x65\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\ +\x65\x00\x73\x00\x20\x00\x66\x00\x65\x00\x72\x00\x6d\x00\xe9\x00\ +\x65\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x61\x00\ +\x63\x00\x65\x00\x73\x00\x2c\x00\x20\x00\x6f\x00\x75\x00\x20\x00\ +\x75\x00\x6e\x00\x69\x00\x74\x00\x20\x00\x64\x00\x65\x00\x73\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\x1e\x00\x4d\x00\x65\x00\x74\ +\x00\x74\x00\x72\x00\x65\x00\x20\x00\xe0\x00\x20\x00\x6e\x00\x69\ +\x00\x76\x00\x65\x00\x61\x00\x75\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\ +\xa8\x00\x43\x00\x72\x00\xe9\x00\x65\x00\x20\x00\x75\x00\x6e\x00\ +\x65\x00\x20\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\x65\x00\x20\x00\ +\x66\x00\x69\x00\x6c\x00\x61\x00\x69\x00\x72\x00\x65\x00\x20\x00\ +\xe0\x00\x20\x00\x70\x00\x6c\x00\x75\x00\x73\x00\x69\x00\x65\x00\ +\x75\x00\x72\x00\x73\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\ +\x74\x00\x73\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\ +\x20\x00\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x61\x00\x63\x00\ +\x63\x00\x72\x00\x6f\x00\x63\x00\x68\x00\x65\x00\x72\x00\x2c\x00\ +\x20\x00\x4d\x00\x61\x00\x6a\x00\x20\x00\x70\x00\x6f\x00\x75\x00\ +\x72\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\ +\x69\x00\x6e\x00\x64\x00\x72\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\x0e\x00\x46\x00\x69\x00\x6c\x00\x61\x00\ +\x69\x00\x72\x00\x65\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\x43\x00\x6f\x00\x6e\x00\x76\ +\x00\x65\x00\x72\x00\x74\x00\x69\x00\x74\x00\x20\x00\x65\x00\x6e\ +\x00\x74\x00\x72\x00\x65\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x61\ +\x00\x69\x00\x72\x00\x65\x00\x20\x00\x65\x00\x74\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\x28\x00\x46\x00\x69\x00\x6c\x00\x61\x00\x69\x00\ +\x72\x00\x65\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\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\x10\x00\x4d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x41\ +\x00\x6c\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x41\x6c\ +\x74\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x56\x00\x41\x00\ +\x75\x00\x74\x00\x72\x00\x65\x00\x20\x00\x65\x00\x6d\x00\x70\x00\ +\x6c\x00\x61\x00\x63\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x6d\x00\x6f\x00\x74\x00\x69\x00\ +\x66\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x68\x00\x61\x00\ +\x63\x00\x68\x00\x75\x00\x72\x00\x65\x00\x73\x00\x20\x00\x53\x00\ +\x56\x00\x47\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x41\x6c\x74\ +\x65\x72\x6e\x61\x74\x65\x20\x53\x56\x47\x20\x50\x61\x74\x74\x65\ +\x72\x6e\x73\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x80\x00\x54\x00\x6f\x00\x75\x00\x6a\x00\x6f\x00\x75\ +\x00\x72\x00\x73\x00\x20\x00\x61\x00\x63\x00\x63\x00\x72\x00\x6f\ +\x00\x63\x00\x68\x00\x65\x00\x72\x00\x20\x00\x61\x00\x75\x00\x78\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\ +\x00\x28\x00\x64\x00\xe9\x00\x73\x00\x61\x00\x63\x00\x74\x00\x69\ +\x00\x76\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x74\x00\x6f\ +\x00\x75\x00\x63\x00\x68\x00\x65\x00\x20\x00\x64\x00\x27\x00\x61\ +\x00\x63\x00\x63\x00\x72\x00\x6f\x00\x63\x00\x68\x00\x61\x00\x67\ +\x00\x65\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\x2e\x00\x42\x00\x61\x00\x72\x00\x72\x00\x65\x00\x20\ +\x00\x6f\x00\x62\x00\x6c\x00\x69\x00\x71\x00\x75\x00\x65\x00\x20\ +\x00\x69\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x73\x00\x65\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\x2e\x00\ +\x42\x00\x61\x00\x72\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ +\x6c\x00\x69\x00\x71\x00\x75\x00\x65\x00\x20\x00\x69\x00\x6e\x00\ +\x76\x00\x65\x00\x72\x00\x73\x00\x65\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\x2e\x00\x42\x00\x61\x00\x72\ +\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6c\x00\x69\x00\x71\ +\x00\x75\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x76\x00\x65\x00\x72\ +\x00\x73\x00\x65\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\xb0\x00\x43\x00\x6f\x00\x63\x00\x68\x00\x65\x00\ +\x7a\x00\x20\x00\x63\x00\x65\x00\x74\x00\x74\x00\x65\x00\x20\x00\ +\x63\x00\x61\x00\x73\x00\x65\x00\x20\x00\x73\x00\x69\x00\x20\x00\ +\x76\x00\x6f\x00\x75\x00\x73\x00\x20\x00\x73\x00\x6f\x00\x75\x00\ +\x68\x00\x61\x00\x69\x00\x74\x00\x65\x00\x7a\x00\x20\x00\x71\x00\ +\x75\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x61\x00\ +\x69\x00\x72\x00\x65\x00\x73\x00\x20\x00\x28\x00\x66\x00\x61\x00\ +\x63\x00\x65\x00\x73\x00\x20\x00\x33\x00\x44\x00\x29\x00\x20\x00\ +\x73\x00\x6f\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x69\x00\ +\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\xe9\x00\x65\x00\x73\x00\ +\x20\x00\xe9\x00\x67\x00\x61\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\ +\x6e\x00\x74\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\xd0\x00\x43\x00\x6f\x00\x63\x00\x68\x00\x65\ +\x00\x7a\x00\x20\x00\x63\x00\x65\x00\x74\x00\x74\x00\x65\x00\x20\ +\x00\x63\x00\x61\x00\x73\x00\x65\x00\x20\x00\x73\x00\x69\x00\x20\ +\x00\x76\x00\x6f\x00\x75\x00\x73\x00\x20\x00\x76\x00\x6f\x00\x75\ +\x00\x6c\x00\x65\x00\x7a\x00\x20\x00\x71\x00\x75\x00\x65\x00\x20\ +\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x63\ +\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x6f\x00\x6e\x00\x79\x00\x6d\ +\x00\x65\x00\x73\x00\x20\x00\x28\x00\x64\x00\x6f\x00\x6e\x00\x74\ +\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x6d\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x6e\x00\x63\x00\x65\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x65\ +\x00\x20\x00\x2a\x00\x29\x00\x20\x00\x73\x00\x6f\x00\x69\x00\x65\ +\x00\x6e\x00\x74\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\xe9\x00\x73\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\x65\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\x65\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\x65\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\x48\x00\x43\x00\x6f\x00\x75\x00\ +\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x70\x00\ +\x70\x00\xe9\x00\x65\x00\x20\x00\xe0\x00\x20\x00\x6c\x00\x61\x00\ +\x20\x00\x6c\x00\x61\x00\x72\x00\x67\x00\x65\x00\x75\x00\x72\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x67\x00\x6e\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\x3c\x00\x46\x00\x69\ +\x00\x63\x00\x68\x00\x69\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x6d\x00\x61\x00\x70\x00\x70\x00\x61\x00\x67\x00\x65\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x75\x00\x6c\ +\x00\x65\x00\x75\x00\x72\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x12\x43\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\ +\x66\x69\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\x4d\x00\x6f\ +\x00\x64\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\ +\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x74\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x73\x74\x72\ +\x61\x69\x6e\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\x00\ +\x43\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\ +\x74\x00\x69\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\x2e\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x65\x00\ +\x75\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\ +\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x69\x00\ +\x6f\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\x3a\x00\x4e\x00\x6f\x00\x6d\x00\x20\x00\ +\x64\x00\x75\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x70\x00\ +\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\ +\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x69\x00\x6f\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\x3c\x00\x43\x00\x72\x00\xe9\ +\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\x70\x00\x61\ +\x00\x72\x00\x61\x00\x6d\x00\xe9\x00\x74\x00\x72\x00\x69\x00\x71\ +\x00\x75\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\ +\x43\x72\x65\x61\x74\x65\x20\x70\x61\x72\x61\x6d\x65\x74\x72\x69\ +\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x2a\x00\x4f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\ +\x61\x00\x74\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\x24\x00\ +\x43\x00\x6f\x00\x75\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\x20\x00\x64\x00\xe9\x00\x66\x00\x61\x00\ +\x75\x00\x74\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\x5e\x00\x48\x00\x61\x00\x75\x00\x74\x00\x65\x00\x75\x00\x72\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x20\x00\x64\x00\xe9\x00\x66\ +\x00\x61\x00\x75\x00\x74\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\ +\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x74\x00\x65\x00\x78\ +\x00\x74\x00\x65\x00\x73\x00\x20\x00\x65\x00\x74\x00\x20\x00\x6c\ +\x00\x65\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x74\x00\x65\x00\x73\ +\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\x3a\x00\xc9\x00\x70\x00\x61\x00\ +\x69\x00\x73\x00\x73\x00\x65\x00\x75\x00\x72\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\x65\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\x20\x00\x64\x00\xe9\x00\x66\x00\x61\x00\ +\x75\x00\x74\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\x38\x00\x46\x00\x65\x00\x75\x00\x69\x00\x6c\ +\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6d\x00\x6f\ +\x00\x64\x00\xe8\x00\x6c\x00\x65\x00\x20\x00\x70\x00\x61\x00\x72\ +\x00\x20\x00\x64\x00\xe9\x00\x66\x00\x61\x00\x75\x00\x74\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\x3e\x00\x50\x00\x6f\x00\x6c\x00\x69\x00\x63\ +\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x61\x00\x72\ +\x00\x61\x00\x63\x00\x74\x00\xe8\x00\x72\x00\x65\x00\x73\x00\x20\ +\x00\x70\x00\x61\x00\x72\x00\x20\x00\x64\x00\xe9\x00\x66\x00\x61\ +\x00\x75\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\x65\ +\x66\x61\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x66\x6f\x6e\x74\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x36\x00\x48\x00\x61\x00\x75\x00\x74\x00\ +\x65\x00\x75\x00\x72\x00\x20\x00\x64\x00\x75\x00\x20\x00\x74\x00\ +\x65\x00\x78\x00\x74\x00\x65\x00\x20\x00\x70\x00\x61\x00\x72\x00\ +\x20\x00\x64\x00\xe9\x00\x66\x00\x61\x00\x75\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\x34\x00\x50\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x74\x00\x72\x00\x61\x00\x76\x00\x61\x00\x69\x00\x6c\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x20\x00\x64\x00\xe9\x00\x66\ +\x00\x61\x00\x75\x00\x74\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\x50\x00\x53\x00\ +\x74\x00\x79\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x66\x00\x6c\x00\xe8\x00\x63\x00\x68\x00\x65\x00\x20\x00\x64\x00\ +\x65\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x74\x00\x65\x00\x73\x00\ +\x20\x00\x65\x00\x74\x00\x20\x00\x61\x00\x6e\x00\x6e\x00\x6f\x00\ +\x74\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\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\x3a\x00\x4e\ +\x00\x69\x00\x76\x00\x65\x00\x61\x00\x75\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x70\x00\x72\x00\xe9\x00\x63\x00\x69\x00\x73\x00\x69\ +\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x63\ +\x00\x6f\x00\x74\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1a\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x70\x72\x65\ +\x63\x69\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0e\x00\x50\x00\x6f\x00\x69\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\x0e\x00\x50\x00\x6f\x00\x69\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\x0e\x00\x50\ +\x00\x6f\x00\x69\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\x2c\x00\x4d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x64\x00\ +\x27\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x66\x00\x61\x00\ +\x63\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x14\x44\x72\x61\x66\x74\x20\x69\ +\x6e\x74\x65\x72\x66\x61\x63\x65\x20\x6d\x6f\x64\x65\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x72\x00\x45\x00\x78\x00\x70\x00\x6f\x00\x72\x00\ +\x74\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\x33\x00\ +\x44\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x20\x00\ +\x64\x00\x65\x00\x73\x00\x20\x00\x6d\x00\x61\x00\x69\x00\x6c\x00\ +\x6c\x00\x61\x00\x67\x00\x65\x00\x73\x00\x20\x00\x6d\x00\x75\x00\ +\x6c\x00\x74\x00\x69\x00\x2d\x00\x66\x00\x61\x00\x63\x00\x65\x00\ +\x74\x00\x74\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\x3a\x00\x52\x00\ +\x65\x00\x6d\x00\x70\x00\x6c\x00\x69\x00\x72\x00\x20\x00\x6c\x00\ +\x65\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x73\x00\x20\x00\x70\x00\x61\x00\x72\x00\x20\x00\x64\x00\xe9\x00\ +\x66\x00\x61\x00\x75\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\x2e\ +\x00\x52\x00\xe9\x00\x67\x00\x6c\x00\x61\x00\x67\x00\x65\x00\x73\ +\x00\x20\x00\x67\x00\xe9\x00\x6e\x00\xe9\x00\x72\x00\x61\x00\x75\ +\x00\x78\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\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\x26\x00\x50\x00\x61\x00\x72\x00\x61\x00\x6d\ +\x00\xe8\x00\x74\x00\x72\x00\x65\x00\x73\x00\x20\x00\x67\x00\xe9\ +\x00\x6e\x00\xe9\x00\x72\x00\x61\x00\x75\x00\x78\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\ +\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x4d\ +\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x20\x00\x67\x00\x6c\x00\x6f\ +\x00\x62\x00\x61\x00\x6c\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\x2e\x00\x45\x00\x73\x00\x70\x00\x61\ +\x00\x63\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x67\x00\x72\x00\x69\ +\x00\x6c\x00\x6c\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\x44\x00\x47\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x65\ +\x00\x72\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x63\x00\x6f\ +\x00\x75\x00\x63\x00\x68\x00\x65\x00\x73\x00\x20\x00\x64\x00\x61\ +\x00\x6e\x00\x73\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x62\ +\x00\x6c\x00\x6f\x00\x63\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\x10\x00\x53\x00\x70\x00\xe9\x00\x63\x00\x69\x00\x66\x00\x69\ +\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x72\x00\xe9\ +\x00\x70\x00\x65\x00\x72\x00\x74\x00\x6f\x00\x69\x00\x72\x00\x65\ +\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x65\x00\x6e\x00\x61\ +\x00\x6e\x00\x74\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x66\ +\x00\x69\x00\x63\x00\x68\x00\x69\x00\x65\x00\x72\x00\x73\x00\x20\ +\x00\x53\x00\x56\x00\x47\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6d\ +\x00\x6f\x00\x74\x00\x69\x00\x66\x00\x73\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x68\x00\x61\x00\x63\x00\x68\x00\x75\x00\x72\x00\x65\ +\x00\x73\x00\x20\x00\x71\x00\x75\x00\x69\x00\x20\x00\x70\x00\x65\ +\x00\x75\x00\x76\x00\x65\x00\x6e\x00\x74\x00\x20\x00\xea\x00\x74\ +\x00\x72\x00\x65\x00\x20\x00\x61\x00\x6a\x00\x6f\x00\x75\x00\x74\ +\x00\xe9\x00\x65\x00\x73\x00\x20\x00\x61\x00\x75\x00\x78\x00\x20\ +\x00\x64\x00\xe9\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x68\ +\x00\x61\x00\x63\x00\x68\x00\x75\x00\x72\x00\x65\x00\x73\x00\x20\ +\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x64\ +\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\ +\x7c\x00\x53\x00\x69\x00\x20\x00\x63\x00\x65\x00\x74\x00\x74\x00\ +\x65\x00\x20\x00\x63\x00\x61\x00\x73\x00\x65\x00\x20\x00\x65\x00\ +\x73\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x63\x00\x68\x00\xe9\x00\ +\x65\x00\x2c\x00\x20\x00\x75\x00\x6e\x00\x65\x00\x20\x00\x67\x00\ +\x72\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x61\x00\x70\x00\ +\x70\x00\x61\x00\x72\x00\x61\x00\xee\x00\x74\x00\x72\x00\x61\x00\ +\x20\x00\x6c\x00\x6f\x00\x72\x00\x73\x00\x20\x00\x64\x00\x75\x00\ +\x20\x00\x64\x00\x65\x00\x73\x00\x73\x00\x69\x00\x6e\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\x12\x00\x53\x00\x69\x00\x20\ +\x00\x63\x00\x65\x00\x74\x00\x74\x00\x65\x00\x20\x00\x63\x00\x61\ +\x00\x73\x00\x65\x00\x20\x00\x65\x00\x73\x00\x74\x00\x20\x00\x63\ +\x00\x6f\x00\x63\x00\x68\x00\xe9\x00\x65\x00\x2c\x00\x20\x00\x46\ +\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x20\x00\x74\ +\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x61\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x6a\x00\x6f\x00\x69\x00\x6e\x00\x64\x00\x72\ +\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\x63\x00\x6f\x00\xef\ +\x00\x6e\x00\x63\x00\x69\x00\x64\x00\x65\x00\x6e\x00\x74\x00\x73\ +\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x61\ +\x00\x69\x00\x72\x00\x65\x00\x73\x00\x2e\x00\x20\x00\x41\x00\x74\ +\x00\x74\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2c\ +\x00\x20\x00\x63\x00\x65\x00\x63\x00\x69\x00\x20\x00\x70\x00\x65\ +\x00\x75\x00\x74\x00\x20\x00\x70\x00\x72\x00\x65\x00\x6e\x00\x64\ +\x00\x72\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x63\x00\x65\ +\x00\x72\x00\x74\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x74\x00\x65\ +\x00\x6d\x00\x70\x00\x73\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\xe0\x00\x53\x00\x69\x00\x20\x00\x63\x00\x65\x00\x74\x00\ +\x74\x00\x65\x00\x20\x00\x63\x00\x61\x00\x73\x00\x65\x00\x20\x00\ +\x65\x00\x73\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x63\x00\x68\x00\ +\xe9\x00\x65\x00\x2c\x00\x20\x00\x74\x00\x6f\x00\x75\x00\x73\x00\ +\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x74\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\ +\x65\x00\x6e\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x64\x00\x65\x00\ +\x73\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\ +\x73\x00\x65\x00\x72\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x65\x00\ +\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\xe9\x00\x73\x00\x20\x00\ +\x63\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x20\x00\x64\x00\x65\x00\ +\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\ +\x20\x00\x33\x00\x44\x00\x20\x00\x6d\x00\x75\x00\x6c\x00\x74\x00\ +\x69\x00\x2d\x00\x66\x00\x61\x00\x63\x00\x65\x00\x74\x00\x74\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\x12\x00\x53\x00\x69\x00\x20\x00\x63\x00\x65\ +\x00\x74\x00\x74\x00\x65\x00\x20\x00\x63\x00\x61\x00\x73\x00\x65\ +\x00\x20\x00\x65\x00\x73\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x63\ +\x00\x68\x00\xe9\x00\x65\x00\x2c\x00\x20\x00\x6c\x00\x65\x00\x20\ +\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x70\ +\x00\x69\x00\x65\x00\x20\x00\x73\x00\x65\x00\x72\x00\x61\x00\x20\ +\x00\x63\x00\x6f\x00\x6e\x00\x73\x00\x65\x00\x72\x00\x76\x00\xe9\ +\x00\x65\x00\x20\x00\x64\x00\x61\x00\x6e\x00\x73\x00\x20\x00\x6c\ +\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\ +\x00\x64\x00\x65\x00\x2c\x00\x20\x00\x73\x00\x69\x00\x6e\x00\x6f\ +\x00\x6e\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x73\x00\x20\ +\x00\x73\x00\x65\x00\x72\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x74\ +\x00\x6f\x00\x75\x00\x6a\x00\x6f\x00\x75\x00\x72\x00\x73\x00\x20\ +\x00\x64\x00\xe9\x00\x6d\x00\x61\x00\x72\x00\x72\x00\xe9\x00\x65\ +\x00\x73\x00\x20\x00\x73\x00\x61\x00\x6e\x00\x73\x00\x20\x00\x6c\ +\x00\x65\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x70\x00\x69\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\xe6\x00\x53\x00\x69\x00\x20\x00\ +\x63\x00\x65\x00\x74\x00\x74\x00\x65\x00\x20\x00\x63\x00\x61\x00\ +\x73\x00\x65\x00\x20\x00\x65\x00\x73\x00\x74\x00\x20\x00\x63\x00\ +\x6f\x00\x63\x00\x68\x00\xe9\x00\x65\x00\x2c\x00\x20\x00\x6c\x00\ +\x65\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x73\x00\x20\x00\x61\x00\x70\x00\x70\x00\x61\x00\x72\x00\x61\x00\ +\xee\x00\x74\x00\x72\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x63\x00\ +\x6f\x00\x6d\x00\x6d\x00\x65\x00\x20\x00\x72\x00\x65\x00\x6d\x00\ +\x70\x00\x6c\x00\x69\x00\x73\x00\x20\x00\x70\x00\x61\x00\x72\x00\ +\x20\x00\x64\x00\xe9\x00\x66\x00\x61\x00\x75\x00\x74\x00\x2e\x00\ +\x20\x00\x53\x00\x69\x00\x6e\x00\x6f\x00\x6e\x00\x2c\x00\x20\x00\ +\x69\x00\x6c\x00\x73\x00\x20\x00\x61\x00\x70\x00\x70\x00\x61\x00\ +\x72\x00\x61\x00\xee\x00\x74\x00\x72\x00\x6f\x00\x6e\x00\x74\x00\ +\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x20\x00\x66\x00\ +\x69\x00\x6c\x00\x61\x00\x69\x00\x72\x00\x65\x00\x73\x00\x2e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x66\x49\x66\x20\x74\x68\x69\x73\ +\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\ +\x20\x61\x73\x20\x66\x69\x6c\x6c\x65\x64\x20\x61\x73\x20\x64\x65\ +\x66\x61\x75\x6c\x74\x2e\x20\x4f\x74\x68\x65\x72\x77\x69\x73\x65\ +\x2c\x20\x74\x68\x65\x79\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\ +\x61\x72\x20\x61\x73\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x01\x22\x00\x53\x00\x69\x00\x20\x00\x63\x00\ +\x65\x00\x74\x00\x74\x00\x65\x00\x20\x00\x63\x00\x61\x00\x73\x00\ +\x65\x00\x20\x00\x65\x00\x73\x00\x74\x00\x20\x00\x63\x00\x6f\x00\ +\x63\x00\x68\x00\xe9\x00\x65\x00\x2c\x00\x20\x00\x6c\x00\x65\x00\ +\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x64\x00\x27\x00\ +\x61\x00\x63\x00\x63\x00\x72\x00\x6f\x00\x63\x00\x68\x00\x61\x00\ +\x67\x00\x65\x00\x20\x00\x73\x00\x65\x00\x72\x00\x61\x00\x20\x00\ +\x74\x00\x6f\x00\x75\x00\x6a\x00\x6f\x00\x75\x00\x72\x00\x73\x00\ +\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\xe9\x00\x20\x00\ +\x70\x00\x65\x00\x6e\x00\x64\x00\x61\x00\x6e\x00\x74\x00\x20\x00\ +\x71\x00\x75\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x75\x00\x73\x00\ +\x20\x00\x64\x00\x65\x00\x73\x00\x73\x00\x69\x00\x6e\x00\x65\x00\ +\x7a\x00\x2e\x00\x20\x00\x53\x00\x69\x00\x6e\x00\x6f\x00\x6e\x00\ +\x2c\x00\x20\x00\x76\x00\x6f\x00\x75\x00\x73\x00\x20\x00\x64\x00\ +\x65\x00\x76\x00\x72\x00\x65\x00\x7a\x00\x20\x00\x6c\x00\x27\x00\ +\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x65\x00\x72\x00\x20\x00\ +\x65\x00\x6e\x00\x20\x00\x61\x00\x70\x00\x70\x00\x75\x00\x79\x00\ +\x61\x00\x6e\x00\x74\x00\x20\x00\x73\x00\x75\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\x28\x00\x49\x00\x6d\ +\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x00\x20\x00\x6c\ +\x00\x65\x00\x73\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x63\x00\x73\ +\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\x2c\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\ +\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x61\ +\x00\x69\x00\x72\x00\x65\x00\x73\x00\x20\x00\x4f\x00\x43\x00\x41\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x49\x6d\x70\x6f\x72\x74\ +\x20\x4f\x43\x41\x20\x61\x72\x65\x61\x73\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x34\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\ +\x00\x72\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x6d\x00\x69\ +\x00\x73\x00\x65\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x70\ +\x00\x6c\x00\x61\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\ +\x49\x6d\x70\x6f\x72\x74\x20\x6c\x61\x79\x6f\x75\x74\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x1e\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\ +\x00\x74\x00\x20\x00\x64\x00\x65\x00\x20\x00\x73\x00\x74\x00\x79\ +\x00\x6c\x00\x65\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\x40\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\ +\x00\x72\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x74\x00\x65\ +\x00\x78\x00\x74\x00\x65\x00\x73\x00\x20\x00\x65\x00\x74\x00\x20\ +\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x74\x00\x65\ +\x00\x73\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\x32\x00\ +\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x00\x20\x00\x2f\x00\x20\x00\x45\x00\x78\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x49\x6d\x70\x6f\x72\ +\x74\x2f\x45\x78\x70\x6f\x72\x74\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x36\ +\x00\x4e\x00\x69\x00\x76\x00\x65\x00\x61\x00\x75\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x70\x00\x72\x00\xe9\x00\x63\x00\x69\x00\x73\ +\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\ +\x00\x72\x00\x6e\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\ +\x49\x6e\x74\x65\x72\x6e\x61\x6c\x20\x70\x72\x65\x63\x69\x73\x69\ +\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\ +\x00\x4a\x00\x6f\x00\x69\x00\x6e\x00\x64\x00\x72\x00\x65\x00\x20\ +\x00\x6c\x00\x61\x00\x20\x00\x67\x00\xe9\x00\x6f\x00\x6d\x00\xe9\ +\x00\x74\x00\x72\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x0d\x4a\x6f\x69\x6e\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x24\x00\x47\x00\x61\x00\x75\x00\x63\x00\ +\x68\x00\x65\x00\x20\x00\x28\x00\x6e\x00\x6f\x00\x72\x00\x6d\x00\ +\x65\x00\x20\x00\x49\x00\x53\x00\x4f\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x13\x4c\x65\x66\x74\x20\x28\x49\x53\x4f\x20\x73\ +\x74\x61\x6e\x64\x61\x72\x64\x29\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\ +\x00\x4c\x00\x69\x00\x67\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x70\ +\x00\x72\x00\x69\x00\x6e\x00\x63\x00\x69\x00\x70\x00\x61\x00\x6c\ +\x00\x65\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x75\x00\x74\x00\x65\ +\x00\x73\x00\x20\x00\x6c\x00\x65\x00\x73\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\xea\x00\x4c\x00\x65\ +\x00\x73\x00\x20\x00\x74\x00\x72\x00\x61\x00\x69\x00\x74\x00\x73\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x67\x00\x6e\ +\x00\x65\x00\x73\x00\x20\x00\x70\x00\x72\x00\x69\x00\x6e\x00\x63\ +\x00\x69\x00\x70\x00\x61\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x73\ +\x00\x65\x00\x72\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x70\x00\x6c\ +\x00\x75\x00\x73\x00\x20\x00\xe9\x00\x70\x00\x61\x00\x69\x00\x73\ +\x00\x2e\x00\x20\x00\x53\x00\x70\x00\xe9\x00\x63\x00\x69\x00\x66\ +\x00\x69\x00\x65\x00\x7a\x00\x20\x00\x69\x00\x63\x00\x69\x00\x20\ +\x00\x6c\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x6d\x00\x62\x00\x72\ +\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x61\x00\x72\ +\x00\x72\x00\x65\x00\x61\x00\x75\x00\x78\x00\x20\x00\x65\x00\x6e\ +\x00\x74\x00\x72\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\ +\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x70\ +\x00\x72\x00\x69\x00\x6e\x00\x63\x00\x69\x00\x70\x00\x61\x00\x6c\ +\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\x40\x00\x53\x00\x65\x00\x67\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x63\x00\x6f\x00\x75\x00\x72\x00\x62\x00\x65\x00\x20\x00\x53\x00\ +\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x6d\x00\x61\x00\ +\x78\x00\x69\x00\x6d\x00\x61\x00\x6c\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\x41\x00\ +\x75\x00\x63\x00\x75\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\x26\x00\x41\x00\ +\x75\x00\x63\x00\x75\x00\x6e\x00\x20\x00\x28\x00\x70\x00\x6c\x00\ +\x75\x00\x73\x00\x20\x00\x72\x00\x61\x00\x70\x00\x69\x00\x64\x00\ +\x65\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\x2c\x00\x4e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\ +\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2c\x00\x20\x00\x61\x00\ +\x70\x00\x72\x00\xe8\x00\x73\x00\x20\x00\x61\x00\x76\x00\x6f\x00\ +\x69\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\xe9\x00\ +\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x74\x00\x73\x00\x2c\x00\x20\x00\x6c\x00\x65\x00\x73\x00\ +\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x73\x00\x20\x00\ +\x73\x00\x65\x00\x72\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x73\x00\ +\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x6e\x00\xe9\x00\x65\x00\x73\x00\x2e\x00\x0a\x00\x53\x00\x69\x00\ +\x20\x00\x63\x00\x65\x00\x74\x00\x74\x00\x65\x00\x20\x00\x6f\x00\ +\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x65\x00\x73\x00\ +\x74\x00\x20\x00\x63\x00\x6f\x00\x63\x00\x68\x00\xe9\x00\x65\x00\ +\x2c\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x73\x00\x65\x00\x72\x00\ +\x6f\x00\x6e\x00\x74\x00\x20\x00\x70\x00\x6c\x00\x75\x00\x74\x00\ +\xf4\x00\x74\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\x73\x00\x2e\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x7f\x4e\x6f\x72\x6d\x61\x6c\x6c\ +\x79\x2c\x20\x61\x66\x74\x65\x72\x20\x63\x6f\x70\x79\x69\x6e\x67\ +\x20\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\x74\x68\x65\x20\x63\x6f\ +\x70\x69\x65\x73\x20\x67\x65\x74\x20\x73\x65\x6c\x65\x63\x74\x65\ +\x64\x2e\x20\x49\x66\x20\x74\x68\x69\x73\x20\x6f\x70\x74\x69\x6f\ +\x6e\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x68\ +\x65\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x77\ +\x69\x6c\x6c\x20\x62\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x69\x6e\x73\x74\x65\x61\x64\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\ +\x00\x4f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\ +\x00\x74\x00\x20\x00\x4f\x00\x43\x00\x41\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x12\x4f\x43\x41\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\ +\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x52\x00\x43\ +\x00\x6f\x00\x75\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x65\ +\x00\x74\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x72\ +\x00\x67\x00\x65\x00\x75\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x72\ +\x00\x69\x00\x67\x00\x69\x00\x6e\x00\x61\x00\x6c\x00\x65\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x4f\x72\x69\x67\x69\x6e\ +\x61\x6c\x20\x63\x6f\x6c\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\ +\x65\x77\x69\x64\x74\x68\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x44\ +\x00\x72\x00\x6f\x00\x69\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\x00\ +\x4f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\ +\x74\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\xa0\x00\x45\x00\ +\x6e\x00\x72\x00\x65\x00\x67\x00\x69\x00\x73\x00\x74\x00\x72\x00\ +\x65\x00\x72\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x63\x00\x6f\x00\ +\x75\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x65\x00\x74\x00\ +\x20\x00\x6c\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x72\x00\x67\x00\ +\x65\x00\x75\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\ +\x69\x00\x67\x00\x6e\x00\x65\x00\x20\x00\x61\x00\x63\x00\x74\x00\ +\x75\x00\x65\x00\x6c\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x70\x00\ +\x6f\x00\x75\x00\x72\x00\x20\x00\x74\x00\x6f\x00\x75\x00\x74\x00\ +\x65\x00\x73\x00\x20\x00\x6c\x00\x65\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\x5c\x00\ +\x53\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x6e\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x65\x00\x73\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\ +\x61\x00\x70\x00\x72\x00\xe8\x00\x73\x00\x20\x00\x6c\x00\x61\x00\ +\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x65\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\x1e\x00\x42\ +\x00\x61\x00\x72\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6c\ +\x00\x69\x00\x71\x00\x75\x00\x65\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\x1e\x00\x42\x00\x61\x00\x72\x00\x72\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6c\x00\x69\x00\x71\x00\x75\x00\x65\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\x1e\x00\x42\x00\x61\ +\x00\x72\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6c\x00\x69\ +\x00\x71\x00\x75\x00\x65\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\x28\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x65\x00\x75\x00\ +\x72\x00\x20\x00\x64\x00\x27\x00\x61\x00\x63\x00\x63\x00\x72\x00\ +\x6f\x00\x63\x00\x68\x00\x61\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\x22\x00\x4d\x00\x6f\x00\x64\x00\x65\x00\ +\x20\x00\x64\x00\x27\x00\x61\x00\x63\x00\x63\x00\x72\x00\x6f\x00\ +\x63\x00\x68\x00\x61\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x08\x53\x6e\x61\x70\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x26\x00\x50\x00\x6f\x00\x72\x00\x74\x00\xe9\x00\x65\x00\ +\x20\x00\x64\x00\x27\x00\x61\x00\x63\x00\x63\x00\x72\x00\x6f\x00\ +\x63\x00\x68\x00\x61\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\x14\x00\x56\x00\x75\x00\x65\x00\x20\x00\x54\x00\ +\xe2\x00\x63\x00\x68\x00\x65\x00\x73\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\x5e\x00\x4c\x00\x65\x00\x73\x00\x20\x00\x74\x00\x6f\x00\ +\x75\x00\x63\x00\x68\x00\x65\x00\x73\x00\x20\x00\x70\x00\x6f\x00\ +\x75\x00\x72\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\ +\x69\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x6d\x00\ +\x6f\x00\x64\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\ +\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x74\x00\ +\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1d\x54\x68\x65\x20\x43\ +\x6f\x6e\x73\x74\x72\x61\x69\x6e\x69\x6e\x67\x20\x6d\x6f\x64\x69\ +\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3a\ +\x00\x4c\x00\x61\x00\x20\x00\x74\x00\x6f\x00\x75\x00\x63\x00\x68\ +\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6d\x00\x6f\x00\x64\ +\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x41\x00\x6c\x00\x74\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x14\x54\x68\x65\x20\x61\x6c\x74\x20\x6d\x6f\x64\x69\ +\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xbe\ +\x00\x4c\x00\x65\x00\x20\x00\x66\x00\x69\x00\x63\x00\x68\x00\x69\ +\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6d\x00\x61\ +\x00\x70\x00\x70\x00\x61\x00\x67\x00\x65\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x63\x00\x6f\x00\x75\x00\x6c\x00\x65\x00\x75\x00\x72\ +\x00\x73\x00\x20\x00\x70\x00\x65\x00\x72\x00\x6d\x00\x65\x00\x74\ +\x00\x74\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x69\ +\x00\x72\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x63\x00\x6f\ +\x00\x75\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x73\x00\x20\x00\x44\ +\x00\x58\x00\x46\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x6c\x00\x61\ +\x00\x72\x00\x67\x00\x65\x00\x75\x00\x72\x00\x73\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\x65\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\ +\xa8\x00\x4c\x00\x65\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\xe8\x00\ +\x6c\x00\x65\x00\x20\x00\x70\x00\x61\x00\x72\x00\x20\x00\x64\x00\ +\xe9\x00\x66\x00\x61\x00\x75\x00\x74\x00\x20\x00\xe0\x00\x20\x00\ +\x75\x00\x74\x00\x69\x00\x6c\x00\x69\x00\x73\x00\x65\x00\x72\x00\ +\x20\x00\x6c\x00\x6f\x00\x72\x00\x73\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x6c\x00\x61\x00\x20\x00\x63\x00\x72\x00\xe9\x00\x61\x00\ +\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x27\x00\x75\x00\ +\x6e\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x75\x00\x76\x00\x65\x00\ +\x6c\x00\x6c\x00\x65\x00\x20\x00\x66\x00\x65\x00\x75\x00\x69\x00\ +\x6c\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\x00\ +\x65\x00\x73\x00\x73\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x3d\x54\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x74\ +\x65\x6d\x70\x6c\x61\x74\x65\x20\x74\x6f\x20\x75\x73\x65\x20\x77\ +\x68\x65\x6e\x20\x63\x72\x65\x61\x74\x69\x6e\x67\x20\x61\x20\x6e\ +\x65\x77\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x73\x68\x65\x65\x74\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\xac\x00\x4c\x00\x65\x00\x20\x00\x6e\ +\x00\x6f\x00\x6d\x00\x62\x00\x72\x00\x65\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x64\x00\xe9\x00\x63\x00\x69\x00\x6d\x00\x61\x00\x6c\ +\x00\x65\x00\x73\x00\x20\x00\x64\x00\x61\x00\x6e\x00\x73\x00\x20\ +\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x70\x00\xe9\x00\x72\ +\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x6f\ +\x00\x6e\x00\x6e\x00\xe9\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\ +\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x65\x00\x73\x00\x20\x00\x28\ +\x00\x70\x00\x61\x00\x72\x00\x20\x00\x65\x00\x78\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\xb0\x00\x4c\x00\x65\x00\x20\x00\x72\x00\x61\x00\x79\x00\ +\x6f\x00\x6e\x00\x20\x00\x64\x00\x27\x00\x61\x00\x63\x00\x63\x00\ +\x72\x00\x6f\x00\x63\x00\x68\x00\x61\x00\x67\x00\x65\x00\x20\x00\ +\x73\x00\x75\x00\x72\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\ +\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x73\x00\ +\x70\x00\xe9\x00\x63\x00\x69\x00\x61\x00\x75\x00\x78\x00\x2e\x00\ +\x20\x00\x52\x00\xe9\x00\x67\x00\x6c\x00\x65\x00\x7a\x00\x20\x00\ +\xe0\x00\x20\x00\x30\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\x00\ +\x20\x00\x61\x00\x75\x00\x63\x00\x75\x00\x6e\x00\x65\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\ +\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\x4c\x00\x4c\x00\x61\x00\x20\x00\x74\x00\x6f\x00\x75\x00\ +\x63\x00\x68\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6d\x00\ +\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x27\x00\x61\x00\x63\x00\ +\x63\x00\x72\x00\x6f\x00\x63\x00\x68\x00\x61\x00\x67\x00\x65\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x15\x54\x68\x65\x20\x73\x6e\x61\ +\x70\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x54\x00\x45\x00\x73\x00\x70\x00\x61\x00\x63\ +\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x65\x00\x6e\ +\x00\x74\x00\x72\x00\x65\x00\x20\x00\x63\x00\x68\x00\x61\x00\x71\ +\x00\x75\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\x65\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x67\ +\x00\x72\x00\x69\x00\x6c\x00\x6c\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\x02\x28\x00\x49\ +\x00\x6c\x00\x20\x00\x73\x00\x27\x00\x61\x00\x67\x00\x69\x00\x74\ +\x00\x20\x00\x64\x00\x75\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\ +\x00\x20\x00\x64\x00\x27\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\ +\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x75\x00\x74\x00\x69\ +\x00\x6c\x00\x69\x00\x73\x00\x61\x00\x74\x00\x65\x00\x75\x00\x72\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x27\x00\x61\x00\x74\ +\x00\x65\x00\x6c\x00\x69\x00\x65\x00\x72\x00\x20\x00\x44\x00\x72\ +\x00\x61\x00\x66\x00\x74\x00\xa0\x00\x3a\x00\x20\x00\x6c\x00\x65\ +\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x62\x00\x61\ +\x00\x72\x00\x72\x00\x65\x00\x20\x00\x64\x00\x27\x00\x6f\x00\x75\ +\x00\x74\x00\x69\x00\x6c\x00\x73\x00\x20\x00\x70\x00\x6c\x00\x61\ +\x00\x63\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x75\x00\x73\x00\x20\ +\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\ +\x00\x6d\x00\xe8\x00\x74\x00\x72\x00\x65\x00\x73\x00\x20\x00\x44\ +\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x64\x00\x61\x00\x6e\ +\x00\x73\x00\x20\x00\x75\x00\x6e\x00\x65\x00\x20\x00\x62\x00\x61\ +\x00\x72\x00\x72\x00\x65\x00\x20\x00\x64\x00\x27\x00\x6f\x00\x75\ +\x00\x74\x00\x69\x00\x6c\x00\x73\x00\x20\x00\x64\x00\x69\x00\x73\ +\x00\x74\x00\x69\x00\x6e\x00\x63\x00\x74\x00\x65\x00\x2c\x00\x20\ +\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x69\x00\x73\x00\x20\x00\x71\ +\x00\x75\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x6d\x00\x6f\ +\x00\x64\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x76\x00\x75\ +\x00\x65\x00\x20\x00\x54\x00\xe2\x00\x63\x00\x68\x00\x65\x00\x73\ +\x00\x20\x00\x75\x00\x74\x00\x69\x00\x6c\x00\x69\x00\x73\x00\x65\ +\x00\x72\x00\x61\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x73\x00\x79\ +\x00\x73\x00\x74\x00\xe8\x00\x6d\x00\x65\x00\x20\x00\x56\x00\x75\ +\x00\x65\x00\x20\x00\x54\x00\xe2\x00\x63\x00\x68\x00\x65\x00\x73\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\ +\x00\x43\x00\x41\x00\x44\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\ +\x00\x20\x00\x74\x00\x6f\x00\x75\x00\x74\x00\x65\x00\x73\x00\x20\ +\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\ +\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\ +\x00\x20\x00\x61\x00\x76\x00\x65\x00\x63\x00\x20\x00\x6c\x00\x27\ +\x00\x75\x00\x74\x00\x69\x00\x6c\x00\x69\x00\x73\x00\x61\x00\x74\ +\x00\x65\x00\x75\x00\x72\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\xa4\x00\x4c\x00\x61\x00\x20\x00\x63\x00\ +\x6f\x00\x75\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x70\x00\ +\x61\x00\x72\x00\x20\x00\x64\x00\xe9\x00\x66\x00\x61\x00\x75\x00\ +\x74\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x6c\x00\ +\x65\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x73\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x75\x00\ +\x72\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\ +\x6e\x00\x63\x00\x65\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x20\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\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\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\x08\x00\x50\x00\x6f\x00\x6c\ +\x00\x69\x00\x63\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\ +\x00\x61\x00\x72\x00\x61\x00\x63\x00\x74\x00\xe8\x00\x72\x00\x65\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x20\x00\x64\x00\xe9\x00\x66\ +\x00\x61\x00\x75\x00\x74\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\ +\x00\x20\x00\x74\x00\x6f\x00\x75\x00\x73\x00\x20\x00\x6c\x00\x65\ +\x00\x73\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x65\x00\x73\ +\x00\x20\x00\x65\x00\x74\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\ +\x00\x63\x00\x6f\x00\x74\x00\x65\x00\x73\x00\x2e\x00\x20\x00\x49\ +\x00\x6c\x00\x20\x00\x70\x00\x65\x00\x75\x00\x74\x00\x20\x00\x73\ +\x00\x27\x00\x61\x00\x67\x00\x69\x00\x72\x00\x0a\x00\x64\x00\x27\ +\x00\x75\x00\x6e\x00\x20\x00\x6e\x00\x6f\x00\x6d\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x69\x00\x63\x00\x65\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x20\x00\x22\ +\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x22\x00\x2c\x00\x20\ +\x00\x75\x00\x6e\x00\x20\x00\x73\x00\x74\x00\x79\x00\x6c\x00\x65\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x20\x00\x64\x00\xe9\x00\x66\ +\x00\x61\x00\x75\x00\x74\x00\x20\x00\x74\x00\x65\x00\x6c\x00\x20\ +\x00\x71\x00\x75\x00\x65\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\x6f\x00\x75\x00\x0a\x00\x22\ +\x00\x6d\x00\x6f\x00\x6e\x00\x6f\x00\x22\x00\x2c\x00\x20\x00\x6f\ +\x00\x75\x00\x20\x00\x75\x00\x6e\x00\x65\x00\x20\x00\x66\x00\x61\ +\x00\x6d\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x6d\x00\x65\x00\x20\x00\x22\x00\x41\x00\x72\x00\x69\ +\x00\x61\x00\x6c\x00\x2c\x00\x48\x00\x65\x00\x6c\x00\x76\x00\x65\ +\x00\x74\x00\x69\x00\x63\x00\x61\x00\x2c\x00\x73\x00\x61\x00\x6e\ +\x00\x73\x00\x22\x00\x20\x00\x6f\x00\x75\x00\x20\x00\x75\x00\x6e\ +\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x69\x00\x63\x00\x65\ +\x00\x20\x00\x61\x00\x76\x00\x65\x00\x63\x00\x20\x00\x75\x00\x6e\ +\x00\x20\x00\x73\x00\x74\x00\x79\x00\x6c\x00\x65\x00\x0a\x00\x63\ +\x00\x6f\x00\x6d\x00\x6d\x00\x65\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\x7e\x00\x4c\x00\x65\x00\x20\x00\x6e\x00\x6f\ +\x00\x6d\x00\x20\x00\x64\x00\x75\x00\x20\x00\x67\x00\x72\x00\x6f\ +\x00\x75\x00\x70\x00\x65\x00\x20\x00\x70\x00\x61\x00\x72\x00\x20\ +\x00\x64\x00\xe9\x00\x66\x00\x61\x00\x75\x00\x74\x00\x20\x00\x70\ +\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\ +\x00\x67\x00\xe9\x00\x6f\x00\x6d\x00\xe9\x00\x74\x00\x72\x00\x69\ +\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\ +\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x63\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\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\x8c\x00\x43\ +\x00\x65\x00\x74\x00\x74\x00\x65\x00\x20\x00\x6d\x00\xe9\x00\x74\ +\x00\x68\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x70\x00\x65\x00\x72\ +\x00\x6d\x00\x65\x00\x74\x00\x20\x00\x64\x00\x27\x00\x69\x00\x6d\ +\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x00\x20\x00\x6c\ +\x00\x65\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x75\x00\x6c\x00\x65\ +\x00\x75\x00\x72\x00\x73\x00\x20\x00\x64\x00\x27\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x74\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\ +\x00\x64\x00\x61\x00\x6e\x00\x73\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\x3c\x00\x49\x00\x6c\x00\x20\x00\x73\x00\x27\x00\x61\x00\ +\x67\x00\x69\x00\x74\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\ +\x61\x00\x20\x00\x6d\x00\xe9\x00\x74\x00\x68\x00\x6f\x00\x64\x00\ +\x65\x00\x20\x00\x63\x00\x68\x00\x6f\x00\x69\x00\x73\x00\x69\x00\ +\x65\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x69\x00\ +\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x72\x00\x20\x00\ +\x6f\x00\x75\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\ +\x72\x00\x74\x00\x69\x00\x72\x00\x20\x00\x6c\x00\x65\x00\x73\x00\ +\x20\x00\x63\x00\x6f\x00\x75\x00\x6c\x00\x65\x00\x75\x00\x72\x00\ +\x73\x00\x20\x00\x64\x00\x27\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x74\x00\x20\x00\x64\x00\x27\x00\x75\x00\x6e\x00\x20\x00\x44\x00\ +\x58\x00\x46\x00\x20\x00\x64\x00\x61\x00\x6e\x00\x73\x00\x20\x00\ +\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x2e\x00\ +\x0a\x00\x53\x00\x69\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x63\x00\ +\x6f\x00\x72\x00\x72\x00\x65\x00\x73\x00\x70\x00\x6f\x00\x6e\x00\ +\x64\x00\x61\x00\x6e\x00\x63\x00\x65\x00\x20\x00\x64\x00\x65\x00\ +\x73\x00\x20\x00\x63\x00\x6f\x00\x75\x00\x6c\x00\x65\x00\x75\x00\ +\x72\x00\x73\x00\x20\x00\x65\x00\x73\x00\x74\x00\x20\x00\x63\x00\ +\x68\x00\x6f\x00\x69\x00\x73\x00\x69\x00\x65\x00\x2c\x00\x20\x00\ +\x76\x00\x6f\x00\x75\x00\x73\x00\x20\x00\x64\x00\x65\x00\x76\x00\ +\x65\x00\x7a\x00\x20\x00\x63\x00\x68\x00\x6f\x00\x69\x00\x73\x00\ +\x69\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x66\x00\x69\x00\ +\x63\x00\x68\x00\x69\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x6d\x00\x61\x00\x70\x00\x70\x00\x61\x00\x67\x00\x65\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x75\x00\x6c\x00\ +\x65\x00\x75\x00\x72\x00\x73\x00\x0a\x00\x63\x00\x6f\x00\x6e\x00\ +\x74\x00\x65\x00\x6e\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x75\x00\ +\x6e\x00\x65\x00\x20\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\ +\x65\x00\x72\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x71\x00\ +\x75\x00\x69\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\ +\x72\x00\x74\x00\x69\x00\x72\x00\x61\x00\x20\x00\x6c\x00\x65\x00\ +\x73\x00\x20\x00\x63\x00\x6f\x00\x75\x00\x6c\x00\x65\x00\x75\x00\ +\x72\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x6c\x00\x61\x00\ +\x72\x00\x67\x00\x65\x00\x75\x00\x72\x00\x73\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\x65\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\xda\x00\x49\x00\x6c\x00\x20\x00\x73\x00\x27\x00\x61\ +\x00\x67\x00\x69\x00\x74\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\ +\x00\x27\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\x64\x00\x75\x00\x20\ +\x00\x74\x00\x65\x00\x78\x00\x74\x00\x65\x00\x20\x00\x64\x00\x65\ +\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x74\x00\x65\x00\x73\x00\x20\ +\x00\x76\x00\x65\x00\x72\x00\x74\x00\x69\x00\x63\x00\x61\x00\x6c\ +\x00\x65\x00\x73\x00\x2e\x00\x20\x00\x50\x00\x61\x00\x72\x00\x20\ +\x00\x64\x00\xe9\x00\x66\x00\x61\x00\x75\x00\x74\x00\x20\x00\x65\ +\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x65\x00\x73\x00\x74\x00\x20\ +\x00\xe0\x00\x20\x00\x67\x00\x61\x00\x75\x00\x63\x00\x68\x00\x65\ +\x00\x2c\x00\x20\x00\x71\x00\x75\x00\x69\x00\x20\x00\x65\x00\x73\ +\x00\x74\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x6e\x00\x6f\x00\x72\ +\x00\x6d\x00\x65\x00\x20\x00\x49\x00\x53\x00\x4f\x00\x2e\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x7e\x54\x68\x69\x73\x20\x69\x73\x20\ +\x74\x68\x65\x20\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x20\ +\x6f\x66\x20\x74\x68\x65\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ +\x20\x74\x65\x78\x74\x73\x20\x77\x68\x65\x6e\x20\x74\x68\x6f\x73\ +\x65\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x61\x72\x65\ +\x20\x76\x65\x72\x74\x69\x63\x61\x6c\x2e\x20\x44\x65\x66\x61\x75\ +\x6c\x74\x20\x69\x73\x20\x6c\x65\x66\x74\x2c\x20\x77\x68\x69\x63\ +\x68\x20\x69\x73\x20\x74\x68\x65\x20\x49\x53\x4f\x20\x73\x74\x61\ +\x6e\x64\x61\x72\x64\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x34\x00\x4c\ +\x00\x61\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x65\x00\x75\x00\x72\ +\x00\x20\x00\x75\x00\x74\x00\x69\x00\x6c\x00\x69\x00\x73\x00\xe9\ +\x00\x65\x00\x20\x00\x70\x00\x61\x00\x72\x00\x20\x00\x6c\x00\x65\ +\x00\x73\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x63\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x71\x00\x75\x00\x69\x00\x20\ +\x00\x75\x00\x74\x00\x69\x00\x6c\x00\x69\x00\x73\x00\x65\x00\x6e\ +\x00\x74\x00\x20\x00\x75\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x6f\ +\x00\x6c\x00\xe9\x00\x72\x00\x61\x00\x6e\x00\x63\x00\x65\x00\x2e\ +\x00\x20\x00\x4c\x00\x65\x00\x73\x00\x20\x00\x76\x00\x61\x00\x6c\ +\x00\x65\x00\x75\x00\x72\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x64\x00\x69\x00\x66\x00\x66\x00\xe9\x00\x72\x00\x65\x00\x6e\ +\x00\x63\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x66\x00\xe9\x00\x72\ +\x00\x69\x00\x65\x00\x75\x00\x72\x00\x65\x00\x20\x00\xe0\x00\x20\ +\x00\x63\x00\x65\x00\x74\x00\x74\x00\x65\x00\x20\x00\x76\x00\x61\ +\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x73\x00\x65\x00\x72\ +\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x73\ +\x00\x69\x00\x64\x00\xe9\x00\x72\x00\xe9\x00\x65\x00\x73\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x20\x00\x69\x00\x64\ +\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x71\x00\x75\x00\x65\x00\x73\ +\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\xe9\x00\x72\x00\x61\x00\x6e\x00\x63\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\x1c\x00\x42\x00\x61\ +\x00\x72\x00\x72\x00\x65\x00\x20\x00\x64\x00\x27\x00\x6f\x00\x75\ +\x00\x74\x00\x69\x00\x6c\x00\x73\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\ +\x6a\x00\x55\x00\x74\x00\x69\x00\x6c\x00\x69\x00\x73\x00\x65\x00\ +\x72\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x75\x00\ +\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x65\x00\x74\x00\x20\x00\ +\x6c\x00\x61\x00\x20\x00\x6c\x00\x61\x00\x72\x00\x67\x00\x65\x00\ +\x75\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x69\x00\ +\x67\x00\x6e\x00\x65\x00\x20\x00\x70\x00\x61\x00\x72\x00\x20\x00\ +\x64\x00\xe9\x00\x66\x00\x61\x00\x75\x00\x74\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\x22\x00\x41\x00\x63\ +\x00\x74\x00\x69\x00\x76\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x61\ +\x00\x20\x00\x67\x00\x72\x00\x69\x00\x6c\x00\x6c\x00\x65\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\x4f\x00\x72\x00\x69\x00\x65\ +\x00\x6e\x00\x74\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\ +\x00\x64\x00\x75\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x65\ +\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x74\ +\x00\x65\x00\x73\x00\x20\x00\x76\x00\x65\x00\x72\x00\x74\x00\x69\ +\x00\x63\x00\x61\x00\x6c\x00\x65\x00\x73\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\xf4\ +\x00\x4c\x00\x6f\x00\x72\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x6c\x00\x27\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\ +\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x65\ +\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x75\x00\x72\x00\x62\x00\x65\ +\x00\x73\x00\x20\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\ +\x00\x73\x00\x20\x00\x61\x00\x75\x00\x20\x00\x66\x00\x6f\x00\x72\ +\x00\x6d\x00\x61\x00\x74\x00\x20\x00\x44\x00\x58\x00\x46\x00\x2c\ +\x00\x20\x00\x69\x00\x6c\x00\x73\x00\x20\x00\x73\x00\x6f\x00\x6e\ +\x00\x74\x00\x20\x00\x74\x00\x72\x00\x61\x00\x6e\x00\x73\x00\x66\ +\x00\x6f\x00\x72\x00\x6d\x00\xe9\x00\x73\x00\x20\x00\x65\x00\x6e\ +\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x6c\x00\x69\x00\x67\ +\x00\x6e\x00\x65\x00\x73\x00\x2e\x00\x20\x00\x43\x00\x65\x00\x74\ +\x00\x74\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x65\x00\x75\ +\x00\x72\x00\x20\x00\x65\x00\x73\x00\x74\x00\x20\x00\x6c\x00\x61\ +\x00\x20\x00\x6c\x00\x6f\x00\x6e\x00\x67\x00\x75\x00\x65\x00\x75\ +\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x78\x00\x69\x00\x6d\x00\x61\ +\x00\x6c\x00\x65\x00\x0a\x00\x64\x00\x65\x00\x20\x00\x63\x00\x68\ +\x00\x61\x00\x63\x00\x75\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x73\ +\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\ +\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x6c\x00\x69\x00\x67\x00\x6e\ +\x00\x65\x00\x2e\x00\x20\x00\x53\x00\x69\x00\x20\x00\x72\x00\xe9\ +\x00\x67\x00\x6c\x00\xe9\x00\x65\x00\x20\x00\xe0\x00\x20\x00\x30\ +\x00\x2c\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x73\x00\x70\x00\x6c\ +\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x69\ +\x00\xe8\x00\x72\x00\x65\x00\x20\x00\x73\x00\x65\x00\x72\x00\x61\ +\x00\x20\x00\x61\x00\x6c\x00\x6f\x00\x72\x00\x73\x00\x20\x00\x74\ +\x00\x72\x00\x61\x00\x69\x00\x74\x00\xe9\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x20\x00\x75\x00\x6e\x00\x20\ +\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x64\x00\x72\x00\x6f\x00\x69\x00\x74\ +\x00\x65\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\x64\x00\x65\x00\x73\x00\x73\x00\x75\x00\x73\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\x12\x00\x58\x00\x5a\x00\x20\x00\x28\ +\x00\x66\x00\x61\x00\x63\x00\x65\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\x63\ +\x00\xf4\x00\x74\x00\xe9\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x09\x59\x5a\x20\x28\x53\x69\x64\x65\x29\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x06\x00\x41\x00\x6c\x00\x74\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x03\x61\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\xce\x00\x43\ +\x00\x6f\x00\x63\x00\x68\x00\x65\x00\x7a\x00\x20\x00\x73\x00\x69\ +\x00\x20\x00\x76\x00\x6f\x00\x75\x00\x73\x00\x20\x00\x73\x00\x6f\ +\x00\x75\x00\x68\x00\x61\x00\x69\x00\x74\x00\x65\x00\x7a\x00\x20\ +\x00\x64\x00\xe9\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x72\x00\x20\ +\x00\x6c\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x75\x00\x6c\x00\x65\ +\x00\x75\x00\x72\x00\x20\x00\x65\x00\x74\x00\x20\x00\x6c\x00\x61\ +\x00\x20\x00\x6c\x00\x61\x00\x72\x00\x67\x00\x65\x00\x75\x00\x72\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x67\x00\x6e\ +\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\ +\x00\x62\x00\x61\x00\x72\x00\x72\x00\x65\x00\x20\x00\x64\x00\x27\ +\x00\x6f\x00\x75\x00\x74\x00\x69\x00\x6c\x00\x73\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x6d\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x20\ +\x00\x64\x00\xe9\x00\x66\x00\x61\x00\x75\x00\x74\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x4d\x63\x68\x65\x63\x6b\x20\x74\x68\x69\x73\ +\x20\x69\x66\x20\x79\x6f\x75\x20\x77\x61\x6e\x74\x20\x74\x6f\x20\ +\x75\x73\x65\x20\x74\x68\x65\x20\x63\x6f\x6c\x6f\x72\x2f\x6c\x69\ +\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\ +\x20\x74\x6f\x6f\x6c\x62\x61\x72\x20\x61\x73\x20\x64\x65\x66\x61\ +\x75\x6c\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x08\x00\x43\x00\x74\x00\ +\x72\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x63\x74\x72\ +\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x01\x4e\x00\x53\x00\x69\x00\x20\x00\ +\x63\x00\x65\x00\x74\x00\x74\x00\x65\x00\x20\x00\x63\x00\x61\x00\ +\x73\x00\x65\x00\x20\x00\x65\x00\x73\x00\x74\x00\x20\x00\x63\x00\ +\x6f\x00\x63\x00\x68\x00\xe9\x00\x65\x00\x2c\x00\x20\x00\x6c\x00\ +\x65\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x73\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\x00\x61\x00\x67\x00\ +\x65\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x6c\x00\x65\x00\x73\x00\ +\x20\x00\x6d\x00\xea\x00\x6d\x00\x65\x00\x73\x00\x20\x00\x63\x00\ +\x6f\x00\x75\x00\x63\x00\x68\x00\x65\x00\x73\x00\x20\x00\x73\x00\ +\x65\x00\x72\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\x72\x00\xe9\x00\ +\x75\x00\x6e\x00\x69\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x20\x00\ +\x62\x00\x6c\x00\x6f\x00\x63\x00\x73\x00\x2c\x00\x20\x00\x72\x00\ +\x65\x00\x6e\x00\x64\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x6c\x00\ +\x27\x00\x61\x00\x66\x00\x66\x00\x69\x00\x63\x00\x68\x00\x61\x00\ +\x67\x00\x65\x00\x0a\x00\x70\x00\x6c\x00\x75\x00\x73\x00\x20\x00\ +\x72\x00\x61\x00\x70\x00\x69\x00\x64\x00\x65\x00\x2c\x00\x20\x00\ +\x6d\x00\x61\x00\x69\x00\x73\x00\x20\x00\x69\x00\x6c\x00\x73\x00\ +\x20\x00\x73\x00\x65\x00\x72\x00\x6f\x00\x6e\x00\x74\x00\x20\x00\ +\x6d\x00\x6f\x00\x69\x00\x6e\x00\x73\x00\x20\x00\x66\x00\x61\x00\ +\x63\x00\x69\x00\x6c\x00\x65\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x61\x00\ +\x62\x00\x6c\x00\x65\x00\x73\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\x98\x00\x53\x00\x69\ +\x00\x20\x00\x63\x00\x65\x00\x74\x00\x74\x00\x65\x00\x20\x00\x63\ +\x00\x61\x00\x73\x00\x65\x00\x20\x00\x65\x00\x73\x00\x74\x00\x20\ +\x00\x63\x00\x6f\x00\x63\x00\x68\x00\xe9\x00\x65\x00\x2c\x00\x20\ +\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x74\x00\x73\x00\x20\x00\x22\x00\x70\x00\x61\x00\x70\x00\x65\ +\x00\x72\x00\x20\x00\x73\x00\x70\x00\x61\x00\x63\x00\x65\x00\x22\ +\x00\x20\x00\x73\x00\x65\x00\x72\x00\x6f\x00\x6e\x00\x74\x00\x20\ +\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\xe9\x00\x73\ +\x00\x20\x00\xe9\x00\x67\x00\x61\x00\x6c\x00\x65\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\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\x98\x00\x53\x00\x69\x00\x20\x00\x63\x00\x65\x00\x74\x00\x74\ +\x00\x65\x00\x20\x00\x63\x00\x61\x00\x73\x00\x65\x00\x20\x00\x6e\ +\x00\x27\x00\x65\x00\x73\x00\x74\x00\x20\x00\x70\x00\x61\x00\x73\ +\x00\x20\x00\x63\x00\x6f\x00\x63\x00\x68\x00\xe9\x00\x65\x00\x2c\ +\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x74\x00\x73\x00\x20\x00\x54\x00\x65\x00\x78\x00\x74\ +\x00\x2f\x00\x4d\x00\x74\x00\x65\x00\x78\x00\x74\x00\x20\x00\x6e\ +\x00\x65\x00\x20\x00\x73\x00\x65\x00\x72\x00\x6f\x00\x6e\x00\x74\ +\x00\x20\x00\x70\x00\x61\x00\x73\x00\x20\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\xe9\x00\x73\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\x06\x00\x4d\x00\x61\x00\x6a\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\x5c\x00\x6c\x00\x61\x00\x20\x00\x63\x00\x6f\x00\ +\x75\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x20\x00\x64\x00\xe9\x00\x66\x00\x61\x00\x75\x00\x74\x00\ +\x20\x00\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x6c\x00\x65\x00\ +\x73\x00\x20\x00\x6e\x00\x6f\x00\x75\x00\x76\x00\x65\x00\x61\x00\ +\x75\x00\x78\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x73\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\x68\x00\x6c\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x75\ +\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x70\x00\x61\x00\x72\ +\x00\x20\x00\x64\x00\xe9\x00\x66\x00\x61\x00\x75\x00\x74\x00\x20\ +\x00\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x6c\x00\x65\x00\x73\ +\x00\x20\x00\x73\x00\x79\x00\x6d\x00\x62\x00\x6f\x00\x6c\x00\x65\ +\x00\x73\x00\x20\x00\x64\x00\x27\x00\x61\x00\x63\x00\x63\x00\x72\ +\x00\x6f\x00\x63\x00\x68\x00\x61\x00\x67\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\x68\ +\x00\x6c\x00\x61\x00\x72\x00\x67\x00\x65\x00\x75\x00\x72\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\x65\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x20\x00\x64\x00\xe9\x00\x66\ +\x00\x61\x00\x75\x00\x74\x00\x20\x00\x70\x00\x6f\x00\x75\x00\x72\ +\x00\x20\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x75\ +\x00\x76\x00\x65\x00\x61\x00\x75\x00\x78\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x74\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x25\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x6c\x69\ +\x6e\x65\x77\x69\x64\x74\x68\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\ +\x26\x00\x46\x00\x65\x00\x72\x00\x6d\x00\x65\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\ +\x43\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x65\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x43\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\ +\x12\x00\x26\x00\x54\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\ +\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x26\x46\x69\ +\x6e\x69\x73\x68\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x2a\x00\x44\x00\xe9\x00\x63\x00\x61\x00\x6c\x00\x61\ +\x00\x67\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x74\x00\x79\ +\x00\x70\x00\x65\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\x10\x00\x52\x00\x26\x00\x65\x00\ +\x6c\x00\x61\x00\x74\x00\x69\x00\x66\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\x00\x26\x00\x41\ +\x00\x6e\x00\x6e\x00\x75\x00\x6c\x00\x65\x00\x72\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\x45\x00\ +\x66\x00\x66\x00\x61\x00\x63\x00\x65\x00\x72\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\x1e\x00\x43\x00\x6f\x00\x6d\ +\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x61\x00\x63\ +\x00\x74\x00\x69\x00\x76\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x14\x41\x63\x74\x69\x76\x65\x20\x44\x72\x61\x66\x74\x20\x63\ +\x6f\x6d\x6d\x61\x6e\x64\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x68\x00\x55\x00\x6e\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x74\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\ +\x00\x66\x00\x20\x00\x64\x00\x6f\x00\x69\x00\x74\x00\x20\x00\x61\ +\x00\x76\x00\x6f\x00\x69\x00\x72\x00\x20\x00\x70\x00\x6c\x00\x75\ +\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\x00\x65\x00\x75\ +\x00\x78\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\ +\x00\x2f\x00\x6e\x01\x53\x00\x75\x00\x64\x00\x73\x00\x20\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x33\x41\x63\x74\x69\x76\x65\x20\x6f\ +\x62\x6a\x65\x63\x74\x20\x6d\x75\x73\x74\x20\x68\x61\x76\x65\x20\ +\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\x74\x77\x6f\x20\x70\x6f\ +\x69\x6e\x74\x73\x2f\x6e\x6f\x64\x65\x73\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x46\x00\x41\x00\x6a\x00\ +\x6f\x00\x75\x00\x74\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\x00\ +\x73\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x73\x00\ +\x20\x00\xe0\x00\x20\x00\x6c\x00\x27\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x74\x00\x20\x00\x61\x00\x63\x00\x74\x00\x75\x00\x65\x00\ +\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x20\x41\x64\x64\x20\x70\ +\x6f\x69\x6e\x74\x73\x20\x74\x6f\x20\x74\x68\x65\x20\x63\x75\x72\ +\x72\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x4f\x00\x75\x00\ +\x76\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\x26\x00\ +\x41\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x27\x00\ +\x6f\x00\x75\x00\x76\x00\x65\x00\x72\x00\x74\x00\x75\x00\x72\x00\ +\x65\x00\xa0\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\x42\x00\ +\x41\x00\x70\x00\x70\x00\x6c\x00\x69\x00\x71\x00\x75\x00\x65\x00\ +\x72\x00\x20\x00\x61\x00\x75\x00\x78\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\x73\x00\xe9\x00\x6c\x00\ +\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\ +\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x41\x00\x72\x00\x63\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\x6e\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\ +\x73\x00\x73\x00\x69\x00\x62\x00\x6c\x00\x65\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x72\x00\xe9\x00\x61\x00\x6c\x00\x69\x00\x73\x00\ +\x65\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x64\x00\xe9\x00\ +\x63\x00\x61\x00\x6c\x00\x61\x00\x67\x00\x65\x00\x20\x00\x73\x00\ +\x75\x00\x72\x00\x20\x00\x63\x00\x65\x00\x20\x00\x74\x00\x79\x00\ +\x70\x00\x65\x00\x20\x00\x64\x00\x27\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x74\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x43\ +\x61\x6e\x6e\x6f\x74\x20\x6f\x66\x66\x73\x65\x74\x20\x74\x68\x69\ +\x73\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x79\x70\x65\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x43\ +\x00\x65\x00\x6e\x00\x74\x00\x72\x00\x65\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\x26\ +\x00\x43\x00\x68\x00\x61\x00\x6e\x00\x67\x00\x65\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\x00\x20\x00\x64\x00\x65\x00\x20\x00\x73\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\x8c\x00\x43\x00\x6f\ +\x00\x63\x00\x68\x00\x65\x00\x72\x00\x20\x00\x70\x00\x6f\x00\x75\ +\x00\x72\x00\x20\x00\x72\x00\x65\x00\x6d\x00\x70\x00\x6c\x00\x69\ +\x00\x72\x00\x20\x00\x6c\x00\x27\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x74\x00\x2c\x00\x20\x00\x73\x00\x69\x00\x6e\x00\x6f\x00\x6e\ +\x00\x20\x00\x69\x00\x6c\x00\x20\x00\x73\x00\x65\x00\x72\x00\x61\ +\x00\x20\x00\x61\x00\x66\x00\x66\x00\x69\x00\x63\x00\x68\x00\xe9\ +\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\ +\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x61\x00\x69\x00\x72\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\x43\x00\ +\x65\x00\x72\x00\x63\x00\x6c\x00\x65\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\x6e\x00\x43\x00\x6f\x00\x6f\x00\ +\x72\x00\x64\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\x65\x00\x73\x00\ +\x20\x00\x72\x00\x65\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x76\x00\ +\x65\x00\x73\x00\x20\x00\x61\x00\x75\x00\x20\x00\x64\x00\x65\x00\ +\x72\x00\x6e\x00\x69\x00\x65\x00\x72\x00\x20\x00\x70\x00\x6f\x00\ +\x69\x00\x6e\x00\x74\x00\x20\x00\x28\x00\x42\x00\x41\x00\x52\x00\ +\x52\x00\x45\x00\x20\x00\x44\x00\x27\x00\x45\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\x0a\x00\x43\x00\x6f\x00\x70\x00\x69\x00\ +\x65\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\x00\ +\x43\x00\x72\x00\xe9\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6e\x00\ +\x20\x00\x61\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\x30\x00\x43\x00\x72\x00\ +\xe9\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x65\x00\x20\x00\ +\x63\x00\x6f\x00\x75\x00\x72\x00\x62\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\x1e\x00\x43\x00\x72\x00\xe9\x00\x65\x00\x72\x00\x20\x00\ +\x75\x00\x6e\x00\x20\x00\x63\x00\x65\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\x1c\x00\x43\x00\x72\x00\xe9\x00\x65\ +\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x65\x00\x20\x00\x63\x00\x6f\ +\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x43\x72\ +\x65\x61\x74\x65\x20\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x43\ +\x00\x72\x00\xe9\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x20\ +\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x65\ +\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\x43\x00\x72\x00\xe9\x00\x65\ +\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x72\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\x1c\x00\x43\x00\x72\x00\xe9\x00\x65\x00\x72\ +\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\ +\x00\x65\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\x18\x00\x43\x00\x72\x00\xe9\x00\x65\x00\ +\x72\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x66\x00\x69\x00\x6c\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\x2e\x00\x53\x00\x75\x00\x70\x00\x70\x00\x72\x00\x69\ +\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x65\x00\x20\ +\x00\x64\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\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\x26\x00\x4f\ +\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x20\x00\x64\ +\x00\x27\x00\x61\x00\x66\x00\x66\x00\x69\x00\x63\x00\x68\x00\x61\ +\x00\x67\x00\x65\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\x60\x00\ +\x4e\x00\x65\x00\x20\x00\x70\x00\x61\x00\x73\x00\x20\x00\x70\x00\ +\x72\x00\x6f\x00\x6a\x00\x65\x00\x74\x00\x65\x00\x72\x00\x20\x00\ +\x6c\x00\x65\x00\x73\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\ +\x74\x00\x73\x00\x20\x00\x73\x00\x75\x00\x72\x00\x20\x00\x75\x00\ +\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x64\x00\x65\x00\x73\x00\x73\x00\x69\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\x18\x00\x4f\x00\x75\x00\x74\ +\x00\x69\x00\x6c\x00\x73\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\x61\x66\ +\x74\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x40\x00\x4c\x00\x65\x00\x73\x00\x20\x00\ +\x61\x00\x72\x00\xea\x00\x74\x00\x65\x00\x73\x00\x20\x00\x6e\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x20\x00\x63\x00\x72\x00\x6f\x00\ +\x69\x00\x73\x00\x65\x00\x6e\x00\x74\x00\x20\x00\x70\x00\x61\x00\ +\x73\x00\xa0\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\x00\xc9\x00\x64\x00\x69\x00\x74\ +\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\ +\x69\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0e\x00\x52\x00\x65\x00\x6d\x00\x70\x00\x6c\x00\x26\x00\x69\ +\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\ +\x1e\x00\x43\x00\x6f\x00\x75\x00\x6c\x00\x65\x00\x75\x00\x72\x00\ +\x20\x00\x64\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\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\x50\x00\x54\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\ +\x65\x00\x72\x00\x20\x00\x65\x00\x74\x00\x20\x00\x66\x00\x65\x00\ +\x72\x00\x6d\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x61\x00\x20\x00\ +\x6c\x00\x69\x00\x67\x00\x6e\x00\x65\x00\x20\x00\x61\x00\x63\x00\ +\x74\x00\x75\x00\x65\x00\x6c\x00\x6c\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\x56\x00\x54\x00\x65\x00\x72\x00\x6d\x00\x69\x00\ +\x6e\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x65\x00\ +\x73\x00\x73\x00\x69\x00\x6e\x00\x20\x00\x65\x00\x6e\x00\x20\x00\ +\x63\x00\x6f\x00\x75\x00\x72\x00\x73\x00\x20\x00\x6f\x00\x75\x00\ +\x20\x00\x6c\x00\x27\x00\xe9\x00\x64\x00\x69\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x20\x00\x28\x00\x46\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x35\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x74\x68\ +\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x64\x72\x61\x77\x69\x6e\ +\x67\x20\x6f\x72\x20\x65\x64\x69\x74\x69\x6e\x67\x20\x6f\x70\x65\ +\x72\x61\x74\x69\x6f\x6e\x20\x28\x46\x29\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x54\x00\x61\x00\x69\ +\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x70\ +\x00\x6f\x00\x6c\x00\x69\x00\x63\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\x72\x00\x43\x00\ +\x72\x00\xe9\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ +\x64\x00\x27\x00\x75\x00\x6e\x00\x65\x00\x20\x00\x66\x00\x61\x00\ +\x63\x00\x65\x00\x20\x00\xe0\x00\x20\x00\x70\x00\x61\x00\x72\x00\ +\x74\x00\x69\x00\x72\x00\x20\x00\x64\x00\x27\x00\x75\x00\x6e\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x63\x00\x72\x00\x6f\x00\x71\x00\x75\x00\x69\x00\ +\x73\x00\x20\x00\x66\x00\x65\x00\x72\x00\x6d\x00\xe9\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\x56\x00\x31\x00\ +\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x74\x00\x72\x00\ +\x6f\x00\x75\x00\x76\x00\xe9\x00\x65\x00\x20\x00\x3a\x00\x20\x00\ +\x65\x00\x78\x00\x74\x00\x72\x00\x61\x00\x63\x00\x74\x00\x69\x00\ +\x6f\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\x73\x00\x6f\x00\ +\x6e\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x61\x00\x69\x00\x72\x00\ +\x65\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\x66\ +\x00\x50\x00\x61\x00\x72\x00\x61\x00\x6d\x00\xe9\x00\x74\x00\x72\ +\x00\x69\x00\x73\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\ +\x00\x64\x00\x27\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x74\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x2d\x00\x70\ +\x00\x61\x00\x72\x00\x61\x00\x6d\x00\xe9\x00\x74\x00\x72\x00\x69\ +\x00\x71\x00\x75\x00\x65\x00\x20\x00\x74\x00\x72\x00\x6f\x00\x75\ +\x00\x76\x00\xe9\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\x46\x00\ +\x43\x00\x6c\x00\xf4\x00\x74\x00\x75\x00\x72\x00\x65\x00\x20\x00\ +\x64\x00\x27\x00\x75\x00\x6e\x00\x20\x00\x66\x00\x69\x00\x6c\x00\ +\x61\x00\x69\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x75\x00\x76\x00\ +\x65\x00\x72\x00\x74\x00\x20\x00\x74\x00\x72\x00\x6f\x00\x75\x00\ +\x76\x00\xe9\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\x70\x00\x31\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x20\x00\x70\x00\ +\x61\x00\x72\x00\x61\x00\x6d\x00\xe9\x00\x74\x00\x72\x00\x69\x00\ +\x71\x00\x75\x00\x65\x00\x20\x00\x74\x00\x72\x00\x6f\x00\x75\x00\ +\x76\x00\xe9\x00\x3a\x00\x20\x00\x72\x00\x75\x00\x70\x00\x74\x00\ +\x75\x00\x72\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x73\x00\ +\x65\x00\x73\x00\x20\x00\x64\x00\xe9\x00\x70\x00\x65\x00\x6e\x00\ +\x64\x00\x61\x00\x6e\x00\x63\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\x5e\x00\x43\x00\x72\ +\x00\xe9\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\ +\x00\x27\x00\x75\x00\x6e\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x69\ +\x00\x64\x00\x65\x00\x20\x00\xe0\x00\x20\x00\x70\x00\x61\x00\x72\ +\x00\x74\x00\x69\x00\x72\x00\x20\x00\x64\x00\x27\x00\x75\x00\x6e\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x20\x00\x74\ +\x00\x72\x00\x6f\x00\x75\x00\x76\x00\xe9\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\x00\x46\x00\x75\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x64\x00\x65\x00\x75\x00\x78\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\x74\x00\ +\x72\x00\x6f\x00\x75\x00\x76\x00\xe9\x00\x73\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\x48\x00\x53\x00\x6f\x00\x75\x00\x73\x00\x74\x00\x72\ +\x00\x61\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x64\x00\x65\x00\x75\x00\x78\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\x74\x00\x72\ +\x00\x6f\x00\x75\x00\x76\x00\xe9\x00\x73\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\x6c\x00\x43\x00\x72\x00\xe9\x00\x61\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\xe0\x00\x20\ +\x00\x70\x00\x61\x00\x72\x00\x74\x00\x69\x00\x72\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x61\x00\x69\x00\x72\ +\x00\x65\x00\x73\x00\x20\x00\x66\x00\x65\x00\x72\x00\x6d\x00\xe9\ +\x00\x73\x00\x20\x00\x74\x00\x72\x00\x6f\x00\x75\x00\x76\x00\xe9\ +\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\x74\x00\ +\x47\x00\x72\x00\x6f\x00\x75\x00\x70\x00\x65\x00\x73\x00\x20\x00\ +\x74\x00\x72\x00\x6f\x00\x75\x00\x76\x00\xe9\x00\x73\x00\xa0\x00\ +\x3a\x00\x20\x00\x66\x00\x65\x00\x72\x00\x6d\x00\x65\x00\x74\x00\ +\x75\x00\x72\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\ +\x68\x00\x61\x00\x71\x00\x75\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x20\x00\xe0\x00\x20\x00\x6c\x00\x27\x00\ +\x69\x00\x6e\x00\x74\x00\xe9\x00\x72\x00\x69\x00\x65\x00\x75\x00\ +\x72\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\x5c\x00\x46\x00\x75\x00\ +\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x27\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\x74\x00\x72\x00\ +\x6f\x00\x75\x00\x76\x00\xe9\x00\x73\x00\x20\x00\x63\x00\x6f\x00\ +\x6e\x00\x74\x00\x65\x00\x6e\x00\x61\x00\x6e\x00\x74\x00\x20\x00\ +\x64\x00\x65\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x75\x00\x72\x00\ +\x62\x00\x65\x00\x73\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x2d\x46\x6f\x75\x6e\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x63\ +\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x63\x75\x72\x76\x65\x73\ +\x3a\x20\x66\x75\x73\x69\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x5a\x00\x46\ +\x00\x69\x00\x6c\x00\x61\x00\x69\x00\x72\x00\x65\x00\x73\x00\x20\ +\x00\x74\x00\x72\x00\x6f\x00\x75\x00\x76\x00\xe9\x00\x73\x00\x3a\ +\x00\x20\x00\x65\x00\x78\x00\x74\x00\x72\x00\x61\x00\x63\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\ +\x00\x65\x00\x75\x00\x72\x00\x73\x00\x20\x00\x61\x00\x72\x00\xea\ +\x00\x74\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\x76\x00\x43\x00\x72\x00\ +\xe9\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\ +\x27\x00\x75\x00\x6e\x00\x20\x00\x66\x00\x69\x00\x6c\x00\x61\x00\ +\x69\x00\x72\x00\x65\x00\x20\x00\xe0\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x74\x00\x69\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x70\x00\x6c\x00\x75\x00\x73\x00\x69\x00\x65\x00\x75\x00\x72\x00\ +\x73\x00\x20\x00\x61\x00\x72\x00\xea\x00\x74\x00\x65\x00\x73\x00\ +\x20\x00\x74\x00\x72\x00\x6f\x00\x75\x00\x76\x00\xe9\x00\x65\x00\ +\x73\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\x70\x00\x53\x00\xe9\ +\x00\x70\x00\x61\x00\x72\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\ +\x00\x73\x00\x20\x00\x73\x00\x69\x00\x6d\x00\x70\x00\x6c\x00\x65\ +\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x70\x00\x6c\x00\x75\ +\x00\x73\x00\x69\x00\x65\x00\x75\x00\x72\x00\x73\x00\x20\x00\x66\ +\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x74\x00\x72\x00\x6f\ +\x00\x75\x00\x76\x00\xe9\x00\x65\x00\x73\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\x96\x00\x43\x00\x72\x00\xe9\ +\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x27\ +\x00\x75\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\ +\x00\x73\x00\xe9\x00\x20\x00\xe0\x00\x20\x00\x70\x00\x61\x00\x72\ +\x00\x74\x00\x69\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x70\ +\x00\x6c\x00\x75\x00\x73\x00\x69\x00\x65\x00\x75\x00\x72\x00\x73\ +\x00\x20\x00\x61\x00\x72\x00\xea\x00\x74\x00\x65\x00\x73\x00\x20\ +\x00\x6e\x00\x6f\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x6e\ +\x00\x65\x00\x63\x00\x74\x00\xe9\x00\x65\x00\x73\x00\x20\x00\x74\ +\x00\x72\x00\x6f\x00\x75\x00\x76\x00\xe9\x00\x65\x00\x73\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\x94\x00\x43\x00\ +\x72\x00\xe9\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\ +\x64\x00\x27\x00\x75\x00\x6e\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\ +\x70\x00\x6f\x00\x73\x00\xe9\x00\x20\x00\xe0\x00\x20\x00\x70\x00\ +\x61\x00\x72\x00\x74\x00\x69\x00\x72\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x70\x00\x6c\x00\x75\x00\x73\x00\x69\x00\x65\x00\x75\x00\ +\x72\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x73\x00\x20\x00\x6e\x00\x6f\x00\x6e\x00\x20\x00\x74\x00\x72\x00\ +\x61\x00\x69\x00\x74\x00\x61\x00\x62\x00\x6c\x00\x65\x00\x73\x00\ +\x20\x00\x74\x00\x72\x00\x6f\x00\x75\x00\x76\x00\xe9\x00\x73\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\x88\ +\x00\x50\x00\x6c\x00\x75\x00\x73\x00\x69\x00\x65\x00\x75\x00\x72\ +\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\ +\x00\x20\x00\x6f\x00\x75\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\ +\x00\x73\x00\x20\x00\x74\x00\x72\x00\x6f\x00\x75\x00\x76\x00\xe9\ +\x00\x73\x00\xa0\x00\x3a\x00\x20\x00\x63\x00\x72\x00\xe9\x00\x61\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x27\x00\x75\ +\x00\x6e\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\ +\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\xe9\x00\x74\x00\x72\ +\x00\x69\x00\x71\x00\x75\x00\x65\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\x44\x00\x46\x00\x75\x00\ +\x73\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x70\x00\x6c\x00\x75\x00\x73\x00\x69\x00\x65\x00\x75\x00\x72\x00\ +\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\ +\x20\x00\x74\x00\x72\x00\x6f\x00\x75\x00\x76\x00\xe9\x00\x73\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\x78\x00\x50\x00\x6c\ +\x00\x75\x00\x73\x00\x69\x00\x65\x00\x75\x00\x72\x00\x73\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\x00\x20\x00\x74\ +\x00\x72\x00\x6f\x00\x75\x00\x76\x00\xe9\x00\x73\x00\x20\x00\x3a\ +\x00\x20\x00\x73\x00\x6f\x00\x75\x00\x73\x00\x74\x00\x72\x00\x61\ +\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\xe0\x00\x20\ +\x00\x70\x00\x61\x00\x72\x00\x74\x00\x69\x00\x72\x00\x20\x00\x64\ +\x00\x75\x00\x20\x00\x70\x00\x72\x00\x65\x00\x6d\x00\x69\x00\x65\ +\x00\x72\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\x9a\x00\x53\x00\x69\x00\x20\x00\ +\x63\x00\x6f\x00\x63\x00\x68\x00\xe9\x00\x2c\x00\x20\x00\x75\x00\ +\x6e\x00\x20\x00\x64\x00\xe9\x00\x63\x00\x61\x00\x6c\x00\x61\x00\ +\x67\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x74\x00\x79\x00\ +\x70\x00\x65\x00\x20\x00\x4f\x00\x43\x00\x43\x00\x20\x00\x73\x00\ +\x65\x00\x72\x00\x61\x00\x20\x00\x65\x00\x66\x00\x66\x00\x65\x00\ +\x63\x00\x74\x00\x75\x00\xe9\x00\x20\x00\x61\x00\x75\x00\x20\x00\ +\x6c\x00\x69\x00\x65\x00\x75\x00\x20\x00\x64\x00\x75\x00\x20\x00\ +\x64\x00\xe9\x00\x63\x00\x61\x00\x6c\x00\x61\x00\x67\x00\x65\x00\ +\x20\x00\x63\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x69\x00\x71\x00\ +\x75\x00\x65\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\xc2\x00\x53\x00\x69\ +\x00\x20\x00\x63\x00\x65\x00\x74\x00\x74\x00\x65\x00\x20\x00\x63\ +\x00\x61\x00\x73\x00\x65\x00\x20\x00\x65\x00\x73\x00\x74\x00\x20\ +\x00\x63\x00\x6f\x00\x63\x00\x68\x00\xe9\x00\x65\x00\x2c\x00\x20\ +\x00\x6c\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\ +\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x6e\x00\x65\x00\x20\x00\x73\ +\x00\x65\x00\x20\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\ +\x00\x65\x00\x72\x00\x61\x00\x20\x00\x71\x00\x75\x00\x65\x00\x20\ +\x00\x73\x00\x69\x00\x20\x00\x76\x00\x6f\x00\x75\x00\x73\x00\x20\ +\x00\x61\x00\x70\x00\x70\x00\x75\x00\x79\x00\x65\x00\x7a\x00\x20\ +\x00\xe0\x00\x20\x00\x6e\x00\x6f\x00\x75\x00\x76\x00\x65\x00\x61\ +\x00\x75\x00\x20\x00\x73\x00\x75\x00\x72\x00\x20\x00\x73\x00\x6f\ +\x00\x6e\x00\x20\x00\x69\x00\x63\x00\xf4\x00\x6e\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x4c\x49\x66\x20\x63\x68\x65\x63\x6b\ +\x65\x64\x2c\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x77\x69\x6c\x6c\ +\x20\x6e\x6f\x74\x20\x66\x69\x6e\x69\x73\x68\x20\x75\x6e\x74\x69\ +\x6c\x20\x79\x6f\x75\x20\x70\x72\x65\x73\x73\x20\x74\x68\x65\x20\ +\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x62\x75\x74\x74\x6f\x6e\x20\x61\ +\x67\x61\x69\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\xa0\x00\x53\x00\x69\x00\x20\x00\x63\x00\x65\x00\x74\ +\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x20\x00\x65\x00\x73\x00\x74\x00\x20\x00\x63\x00\x6f\ +\x00\x63\x00\x68\x00\xe9\x00\x65\x00\x2c\x00\x20\x00\x6c\x00\x65\ +\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x73\ +\x00\x20\x00\x73\x00\x65\x00\x72\x00\x6f\x00\x6e\x00\x74\x00\x20\ +\x00\x63\x00\x6f\x00\x70\x00\x69\x00\xe9\x00\x73\x00\x20\x00\x61\ +\x00\x75\x00\x20\x00\x6c\x00\x69\x00\x65\x00\x75\x00\x20\x00\x64\ +\x00\x27\x00\xea\x00\x74\x00\x72\x00\x65\x00\x20\x00\x64\x00\xe9\ +\x00\x70\x00\x6c\x00\x61\x00\x63\x00\xe9\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\x22\x00\x4d\x00\x61\x00\x63\x00\x72\x00\x6f\x00\ +\x73\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x61\x00\x6c\x00\ +\x6c\x00\xe9\x00\x65\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\ +\x40\x00\x4c\x00\x65\x00\x20\x00\x64\x00\x65\x00\x72\x00\x6e\x00\ +\x69\x00\x65\x00\x72\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\ +\x74\x00\x20\x00\x61\x00\x20\x00\xe9\x00\x74\x00\xe9\x00\x20\x00\ +\x73\x00\x75\x00\x70\x00\x70\x00\x72\x00\x69\x00\x6d\x00\xe9\x00\ +\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1c\x4c\x61\x73\x74\x20\ +\x70\x6f\x69\x6e\x74\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x72\ +\x65\x6d\x6f\x76\x65\x64\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0a\x00\x4c\x00\x69\x00\x67\x00\x6e\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\x20\x00\ +\x43\x00\x6f\x00\x75\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x67\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\x20\x00\x4c\x00\x61\x00\x72\x00\x67\x00\x65\x00\x75\x00\ +\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x67\x00\ +\x6e\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\x10\x00\x44\x00\xe9\x00\x70\x00\x6c\x00\ +\x61\x00\x63\x00\x65\x00\x72\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\x41\x00\x75\x00\x63\x00\x75\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\x1e\x00\x4e\x00\ +\x6f\x00\x6d\x00\x62\x00\x72\x00\x65\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x63\x00\xf4\x00\x74\x00\xe9\x00\x73\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0f\x4e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x73\ +\x69\x64\x65\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x10\x00\x44\x00\xe9\x00\x63\x00\x61\x00\x6c\x00\x61\ +\x00\x67\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x4f\x66\ +\x66\x73\x65\x74\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x76\x00\x4c\x00\x65\x00\x20\x00\x64\x00\xe9\x00\x63\ +\x00\x61\x00\x6c\x00\x61\x00\x67\x00\x65\x00\x20\x00\x6e\x00\x65\ +\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x63\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x6e\x00\x65\x00\x20\x00\x71\x00\x75\x00\x65\x00\x20\ +\x00\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x20\ +\x00\x73\x00\x65\x00\x75\x00\x6c\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x74\x00\x20\x00\xe0\x00\x20\x00\x6c\x00\x61\x00\x20\ +\x00\x66\x00\x6f\x00\x69\x00\x73\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\x20\x00\x43\ +\x00\x68\x00\x6f\x00\x69\x00\x73\x00\x69\x00\x72\x00\x20\x00\x75\ +\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\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\x6a\x00\x53\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x7a\x00\x20\x00\x75\x00\ +\x6e\x00\x65\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\ +\x70\x00\x6f\x00\x75\x00\x72\x00\x20\x00\x64\x00\xe9\x00\x66\x00\ +\x69\x00\x6e\x00\x69\x00\x72\x00\x20\x00\x75\x00\x6e\x00\x20\x00\ +\x70\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x74\x00\x72\x00\x61\x00\x76\x00\x61\x00\x69\x00\x6c\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\x30\x00\ +\x43\x00\x68\x00\x6f\x00\x69\x00\x73\x00\x69\x00\x73\x00\x73\x00\ +\x65\x00\x7a\x00\x20\x00\x6c\x00\x27\x00\x6f\x00\x75\x00\x76\x00\ +\x65\x00\x72\x00\x74\x00\x75\x00\x72\x00\x65\x00\xa0\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\x38\x00\x43\x00\x68\x00\x6f\x00\x69\ +\x00\x73\x00\x69\x00\x73\x00\x73\x00\x65\x00\x7a\x00\x20\x00\x6c\ +\x00\x27\x00\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\xa0\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\x38\x00\x49\x00\x6e\x00\ +\x64\x00\x69\x00\x71\x00\x75\x00\x65\x00\x7a\x00\x20\x00\x75\x00\ +\x6e\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\xa0\x00\ +\x3a\x00\x0a\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\x49\ +\x00\x6e\x00\x64\x00\x69\x00\x71\x00\x75\x00\x65\x00\x7a\x00\x20\ +\x00\x6c\x00\x65\x00\x20\x00\x63\x00\x65\x00\x6e\x00\x74\x00\x72\ +\x00\x65\x00\xa0\x00\x3a\x00\x0a\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\x30\x00\x43\x00\x68\x00\x6f\x00\x69\x00\x73\x00\ +\x69\x00\x73\x00\x73\x00\x65\x00\x7a\x00\x20\x00\x6c\x00\x61\x00\ +\x20\x00\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\ +\x65\x00\xa0\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\x34\x00\x49\ +\x00\x6e\x00\x64\x00\x69\x00\x71\x00\x75\x00\x65\x00\x7a\x00\x20\ +\x00\x6c\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\ +\x00\x20\x00\x66\x00\x69\x00\x6e\x00\x61\x00\x6c\x00\xa0\x00\x3a\ +\x00\x0a\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\x49\x00\x6e\ +\x00\x64\x00\x69\x00\x71\x00\x75\x00\x65\x00\x7a\x00\x20\x00\x6c\ +\x00\x65\x00\x20\x00\x70\x00\x72\x00\x65\x00\x6d\x00\x69\x00\x65\ +\x00\x72\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\xa0\ +\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\x48\ +\x00\x49\x00\x6e\x00\x64\x00\x69\x00\x71\x00\x75\x00\x65\x00\x7a\ +\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\ +\x00\x74\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x6f\x00\x63\ +\x00\x61\x00\x6c\x00\x69\x00\x73\x00\x61\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\xa0\x00\x3a\x00\x0a\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\x74\x00\x49\x00\x6e\x00\x64\x00\x69\x00\ +\x71\x00\x75\x00\x65\x00\x7a\x00\x20\x00\x6c\x00\x65\x00\x20\x00\ +\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\x73\x00\x75\x00\ +\x69\x00\x76\x00\x61\x00\x6e\x00\x74\x00\x20\x00\x6f\x00\x75\x00\ +\x20\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x65\x00\ +\x72\x00\x20\x00\x28\x00\x46\x00\x29\x00\x20\x00\x6f\x00\x75\x00\ +\x20\x00\x66\x00\x65\x00\x72\x00\x6d\x00\x65\x00\x72\x00\x20\x00\ +\x28\x00\x43\x00\x29\x00\xa0\x00\x3a\x00\x0a\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\x49\ +\x00\x6e\x00\x64\x00\x69\x00\x71\x00\x75\x00\x65\x00\x7a\x00\x20\ +\x00\x6c\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\ +\x00\x20\x00\x73\x00\x75\x00\x69\x00\x76\x00\x61\x00\x6e\x00\x74\ +\x00\xa0\x00\x3a\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\ +\x50\x69\x63\x6b\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x3a\ +\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x36\x00\x49\x00\x6e\x00\x64\x00\x69\x00\x71\x00\x75\x00\x65\x00\ +\x7a\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x69\x00\ +\x6e\x00\x74\x00\x20\x00\x6f\x00\x70\x00\x70\x00\x6f\x00\x73\x00\ +\xe9\x00\xa0\x00\x3a\x00\x0a\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\x28\x00\x49\x00\x6e\x00\x64\x00\x69\x00\x71\ +\x00\x75\x00\x65\x00\x7a\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x72\ +\x00\x61\x00\x79\x00\x6f\x00\x6e\x00\xa0\x00\x3a\x00\x0a\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\x40\x00\x43\x00\x68\x00\x6f\x00\x69\x00\x73\x00\ +\x69\x00\x73\x00\x73\x00\x65\x00\x7a\x00\x20\x00\x6c\x00\x27\x00\ +\x61\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x72\x00\x6f\x00\x74\x00\x61\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\xa0\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x15\x50\ +\x69\x63\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\x6e\x20\x61\x6e\x67\ +\x6c\x65\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x44\x00\x43\x00\x68\x00\x6f\x00\x69\x00\x73\x00\x69\ +\x00\x73\x00\x73\x00\x65\x00\x7a\x00\x20\x00\x6c\x00\x65\x00\x20\ +\x00\x63\x00\x65\x00\x6e\x00\x74\x00\x72\x00\x65\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x72\x00\x6f\x00\x74\x00\x61\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\xa0\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\x40\x00\x49\x00\x6e\x00\x64\x00\x69\ +\x00\x71\x00\x75\x00\x65\x00\x7a\x00\x20\x00\x75\x00\x6e\x00\x20\ +\x00\x66\x00\x61\x00\x63\x00\x74\x00\x65\x00\x75\x00\x72\x00\x20\ +\x00\x64\x00\x27\x00\xe9\x00\x63\x00\x68\x00\x65\x00\x6c\x00\x6c\ +\x00\x65\x00\xa0\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\x3a\x00\x49\x00\x6e\x00\x64\x00\x69\x00\x71\x00\ +\x75\x00\x65\x00\x7a\x00\x20\x00\x6c\x00\x27\x00\x61\x00\x6e\x00\ +\x67\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\x00\ +\xe9\x00\x70\x00\x61\x00\x72\x00\x74\x00\xa0\x00\x3a\x00\x0a\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\x3c\x00\x49\x00\x6e\x00\ +\x64\x00\x69\x00\x71\x00\x75\x00\x65\x00\x7a\x00\x20\x00\x6c\x00\ +\x65\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x64\x00\xe9\x00\x70\x00\x61\x00\x72\x00\ +\x74\x00\xa0\x00\x3a\x00\x0a\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\x0a\x00\x52\x00\x61\ +\x00\x79\x00\x6f\x00\x6e\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\x1e\x00\x52\x00\x61\x00\x79\x00\x6f\x00\x6e\ +\x00\x20\x00\x64\x00\x75\x00\x20\x00\x63\x00\x65\x00\x72\x00\x63\ +\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x52\x61\ +\x64\x69\x75\x73\x20\x6f\x66\x20\x43\x69\x72\x63\x6c\x65\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x4c\x00\x53\ +\x00\x75\x00\x70\x00\x70\x00\x72\x00\x69\x00\x6d\x00\x65\x00\x72\ +\x00\x20\x00\x64\x00\x65\x00\x73\x00\x20\x00\x70\x00\x6f\x00\x69\ +\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\ +\x00\x27\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x20\x00\x61\ +\x00\x63\x00\x74\x00\x75\x00\x65\x00\x6c\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x25\x52\x65\x6d\x6f\x76\x65\x20\x70\x6f\x69\x6e\x74\ +\x73\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\ +\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x50\x00\x69\x00\x76\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\x0e\x00\xc9\x00\x63\x00\x68\x00\x65\x00\ +\x6c\x00\x6c\x00\x65\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\x3e\x00\x53\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x72\x00\x20\x00\x75\ +\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x74\x00\x72\x00\x61\x00\x76\x00\x61\x00\x69\ +\x00\x6c\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\x2e\x00\x53\x00\xe9\x00\x6c\x00\x65\ +\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x72\ +\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\ +\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\x2e\x00\ +\x53\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\ +\x6e\x00\x6e\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x65\x00\x20\x00\ +\x70\x00\x6c\x00\x61\x00\x6e\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\x2e\x00\x53\x00\xe9\x00\x6c\x00\x65\x00\x63\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x72\x00\x20\ +\x00\x6c\x00\x65\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\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\x42\x00\x53\x00\ +\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\ +\x6e\x00\x65\x00\x7a\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x74\x00\x20\x00\xe0\x00\x20\x00\x64\x00\ +\xe9\x00\x70\x00\x6c\x00\x61\x00\x63\x00\x65\x00\x72\x00\x0a\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\x40\x00\x53\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x7a\x00\x20\x00\x75\x00\x6e\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x20\x00\xe0\ +\x00\x20\x00\x64\x00\xe9\x00\x63\x00\x61\x00\x6c\x00\x65\x00\x72\ +\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\x4c\x00\x53\x00\xe9\x00\x6c\x00\x65\x00\ +\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x7a\x00\ +\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x74\x00\x20\x00\xe0\x00\x20\x00\x66\x00\x61\x00\x69\x00\x72\x00\ +\x65\x00\x20\x00\x70\x00\x69\x00\x76\x00\x6f\x00\x74\x00\x65\x00\ +\x72\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\x58\x00\x53\x00\xe9\x00\x6c\x00\x65\ +\x00\x63\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x72\ +\x00\x20\x00\x75\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x74\x00\x20\x00\xe0\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x74\ +\x00\x72\x00\x65\x00\x20\x00\x20\x00\xe0\x00\x20\x00\x6c\x00\x27\ +\x00\xe9\x00\x63\x00\x68\x00\x65\x00\x6c\x00\x6c\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\x54\x00\x53\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\ +\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x7a\x00\x20\x00\x75\ +\x00\x6e\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x20\ +\x00\xe0\x00\x20\x00\x61\x00\x6a\x00\x6f\x00\x75\x00\x74\x00\x65\ +\x00\x72\x00\x2f\x00\x70\x00\x72\x00\x6f\x00\x6c\x00\x6f\x00\x6e\ +\x00\x67\x00\x65\x00\x72\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\x4e\x00\x53\x00\xe9\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x7a\x00\x20\x00\x75\x00\x6e\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x20\x00\xe0\ +\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x74\x00\x72\x00\x65\x00\x20\ +\x00\xe0\x00\x20\x00\x6e\x00\x69\x00\x76\x00\x65\x00\x61\x00\x75\ +\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\x7e\x00\x53\x00\xe9\x00\x6c\x00\x65\x00\x63\ +\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x72\x00\x20\ +\x00\x6c\x00\x65\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x20\ +\x00\x70\x00\x65\x00\x72\x00\x70\x00\x65\x00\x6e\x00\x64\x00\x69\ +\x00\x63\x00\x75\x00\x6c\x00\x61\x00\x69\x00\x72\x00\x65\x00\x20\ +\x00\xe0\x00\x20\x00\x6c\x00\x27\x00\x61\x00\x78\x00\x65\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x20\x00\x76\x00\x75\ +\x00\x65\x00\x20\x00\x61\x00\x63\x00\x74\x00\x75\x00\x65\x00\x6c\ +\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x2e\x53\x65\ +\x6c\x65\x63\x74\x20\x70\x6c\x61\x6e\x65\x20\x70\x65\x72\x70\x65\ +\x6e\x64\x69\x63\x75\x6c\x61\x72\x20\x74\x6f\x20\x74\x68\x65\x20\ +\x63\x75\x72\x72\x65\x6e\x74\x20\x76\x69\x65\x77\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\x00\x4c\x00\x61\ +\x00\x20\x00\x53\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\ +\x00\x61\x00\x20\x00\xe9\x00\x74\x00\xe9\x00\x20\x00\x66\x00\x65\ +\x00\x72\x00\x6d\x00\xe9\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x17\x53\x70\x6c\x69\x6e\x65\x20\x68\x61\x73\x20\x62\ +\x65\x65\x6e\x20\x63\x6c\x6f\x73\x65\x64\x0a\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x41\x00\x6e\x00\ +\x67\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\x00\ +\xe9\x00\x70\x00\x61\x00\x72\x00\x74\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\x43\ +\x00\x65\x00\x20\x00\x74\x00\x79\x00\x70\x00\x65\x00\x20\x00\x64\ +\x00\x27\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x20\x00\x6e\ +\x00\x27\x00\x65\x00\x73\x00\x74\x00\x20\x00\x70\x00\x61\x00\x73\ +\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x61\ +\x00\x62\x00\x6c\x00\x65\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\x4e\x00\x41\x00\x63\x00\x74\x00\x69\x00\x76\x00\x65\x00\ +\x72\x00\x2f\x00\x64\x00\xe9\x00\x73\x00\x61\x00\x63\x00\x74\x00\ +\x69\x00\x76\x00\x65\x00\x72\x00\x20\x00\x6c\x00\x65\x00\x20\x00\ +\x6d\x00\x6f\x00\x64\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\x08\x00\x00\x00\x00\x06\x00\x00\x00\x19\x54\x6f\x67\x67\x6c\ +\x65\x73\x20\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\ +\x4d\x6f\x64\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x0e\x00\x41\x00\x6a\x00\x75\x00\x73\x00\x74\x00\x65\ +\x00\x72\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\x46\ +\x00\x41\x00\x6e\x00\x6e\x00\x75\x00\x6c\x00\x65\x00\x72\x00\x20\ +\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x65\x00\x72\x00\x6e\x00\x69\ +\x00\x65\x00\x72\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\x75\x00\x65\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\xac\x00\x45\x00\x66\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\ +\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x65\x00\x78\x00\x69\ +\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x74\x00\x73\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x63\x00\x65\x00\x74\x00\x74\x00\x65\x00\x20\ +\x00\x6c\x00\x69\x00\x67\x00\x6e\x00\x65\x00\x20\x00\x65\x00\x74\ +\x00\x20\x00\x72\x00\x65\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x65\ +\x00\x6e\x00\x63\x00\x65\x00\x20\x00\x64\x00\x65\x00\x70\x00\x75\ +\x00\x69\x00\x73\x00\x20\x00\x6c\x00\x65\x00\x20\x00\x64\x00\x65\ +\x00\x72\x00\x6e\x00\x69\x00\x65\x00\x72\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\x2e\x00\x4c\x00\x65\x00\x20\x00\ +\x66\x00\x69\x00\x6c\x00\x61\x00\x69\x00\x72\x00\x65\x00\x20\x00\ +\x61\x00\x20\x00\xe9\x00\x74\x00\xe9\x00\x20\x00\x66\x00\x65\x00\ +\x72\x00\x6d\x00\xe9\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\x24\x00\x4f\x00\x75\x00\x74\x00\x69\x00\x6c\ +\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x66\x00\x69\x00\x6c\ +\x00\x61\x00\x69\x00\x72\x00\x65\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\x3c\x00\x43\x00\x6f\x00\ +\x6f\x00\x72\x00\x64\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\x65\x00\ +\x20\x00\x58\x00\x20\x00\x64\x00\x75\x00\x20\x00\x70\x00\x72\x00\ +\x6f\x00\x63\x00\x68\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x70\x00\ +\x6f\x00\x69\x00\x6e\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\x3c\x00\x43\x00\x6f\x00\x6f\x00\x72\ +\x00\x64\x00\x6f\x00\x6e\x00\x6e\x00\xe9\x00\x65\x00\x20\x00\x59\ +\x00\x20\x00\x64\x00\x75\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x63\ +\x00\x68\x00\x61\x00\x69\x00\x6e\x00\x20\x00\x70\x00\x6f\x00\x69\ +\x00\x6e\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\x3c\x00\x43\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\ +\x6f\x00\x6e\x00\x6e\x00\xe9\x00\x65\x00\x20\x00\x5a\x00\x20\x00\ +\x64\x00\x75\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x63\x00\x68\x00\ +\x61\x00\x69\x00\x6e\x00\x20\x00\x70\x00\x6f\x00\x69\x00\x6e\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\x22\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\ +\x6e\x00\x64\x00\x65\x00\x20\x00\x61\x00\x63\x00\x74\x00\x69\x00\ +\x76\x00\x65\x00\xa0\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x0f\x61\x63\x74\x69\x76\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x3a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2e\ +\x00\x42\x00\x61\x00\x72\x00\x72\x00\x65\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6d\x00\x61\x00\x6e\x00\x64\ +\x00\x65\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\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\xb1\x9d\ +\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\xa5\x54\x00\x00\x00\x59\ +\x00\x00\xa6\x21\x00\x00\x00\x5a\x00\x00\xa6\xce\x00\x00\x05\xd9\ +\x00\x00\xa5\xe1\x00\x00\x05\xda\x00\x00\xa6\x01\x00\x00\x05\xea\ +\x00\x00\xa6\xae\x00\x00\x07\x78\x00\x00\x71\x1c\x00\x00\x48\x83\ +\x00\x00\x03\x61\x00\x00\x48\x83\x00\x00\x77\x6c\x00\x00\x68\x34\ +\x00\x00\x6b\x5d\x00\x04\xa6\x79\x00\x00\x7a\xe3\x00\x04\xbb\x04\ +\x00\x00\x0b\xe4\x00\x04\xbb\x04\x00\x00\x7f\x2a\x00\x05\x30\x45\ +\x00\x00\x0e\x17\x00\x05\x30\x45\x00\x00\x91\x67\x00\x05\x46\xc5\ +\x00\x00\x0e\x44\x00\x05\x46\xc5\x00\x00\x92\x13\x00\x05\x56\x45\ +\x00\x00\x48\x83\x00\x05\x56\x45\x00\x00\x92\x3b\x00\x05\xac\xf4\ +\x00\x00\x19\xd2\x00\x05\xb8\xfd\x00\x00\xa2\xc0\x00\x05\xcf\xc7\ +\x00\x00\xa3\x6c\x00\x05\xe0\x85\x00\x00\x23\x85\x00\x06\xab\x8c\ +\x00\x00\x6c\xcf\x00\x10\x84\x49\x00\x00\x54\x47\x00\x12\x05\xba\ +\x00\x00\x9f\x00\x00\x16\xc6\xda\x00\x00\x85\x9e\x00\x2a\xa6\x79\ +\x00\x00\x73\xdc\x00\x2b\xc4\xaf\x00\x00\x74\xae\x00\x2b\xe0\x65\ +\x00\x00\x74\xdf\x00\x39\xdf\x33\x00\x00\x35\x8c\x00\x3d\xa1\x19\ +\x00\x00\x78\xa6\x00\x3e\x93\x83\x00\x00\x36\xc6\x00\x48\x8f\x7c\ +\x00\x00\x26\x37\x00\x4b\x66\x35\x00\x00\x32\x8c\x00\x4b\x66\x37\ +\x00\x00\x32\xd1\x00\x4b\x66\x39\x00\x00\x33\x16\x00\x4b\x87\xd4\ +\x00\x00\x7e\x57\x00\x57\x60\x54\x00\x00\x9a\xe3\x00\x58\xfd\xf4\ +\x00\x00\x4c\x02\x00\x59\x98\x25\x00\x00\x14\x72\x00\x59\x98\x25\ +\x00\x00\x9c\x2b\x00\x6a\x58\x9a\x00\x00\x94\x61\x00\x79\xef\xd4\ +\x00\x00\x71\x54\x00\x7e\x7f\x0e\x00\x00\x67\xf6\x00\x8a\x23\x95\ +\x00\x00\x29\xc3\x00\x8a\x23\x97\x00\x00\x2a\x0f\x00\x8a\x23\x99\ +\x00\x00\x2a\x5b\x00\x91\xbc\xe9\x00\x00\x0e\x71\x00\xa6\x37\x3f\ +\x00\x00\x28\x6e\x00\xaa\x80\x25\x00\x00\x7d\xa7\x00\xc6\xe3\x6e\ +\x00\x00\x24\xdd\x00\xcb\xa8\x14\x00\x00\x70\x24\x00\xfc\x00\xca\ +\x00\x00\x8c\xec\x01\x21\xd6\x39\x00\x00\x53\x40\x01\x22\xb4\xf9\ +\x00\x00\x14\xa5\x01\x2f\x8e\x7e\x00\x00\x5e\x84\x01\x48\xfe\xa3\ +\x00\x00\x37\x42\x01\x53\xf3\xaa\x00\x00\x82\x4c\x01\x56\x16\x4a\ +\x00\x00\x8c\x55\x01\x67\x0d\x8a\x00\x00\x87\x77\x01\x69\x11\x7a\ +\x00\x00\x98\xa6\x01\x82\x39\x0a\x00\x00\x95\x11\x01\x8b\x68\x75\ +\x00\x00\xa2\x3f\x01\xa1\x7f\x63\x00\x00\x1c\x8f\x01\xc1\xd9\xde\ +\x00\x00\x56\x6e\x01\xd2\x8f\xd3\x00\x00\x4c\xb5\x01\xdf\x11\x43\ +\x00\x00\x05\xaa\x01\xe2\xf4\x5a\x00\x00\x9e\x83\x01\xfc\xae\xd3\ +\x00\x00\x71\x95\x02\x05\xbe\x25\x00\x00\x7c\x52\x02\x46\x58\x0a\ +\x00\x00\x97\xea\x02\x65\xad\x62\x00\x00\xa7\xa0\x02\x6e\x07\xe2\ +\x00\x00\x4e\xf7\x02\x76\x24\x13\x00\x00\x3b\x7f\x02\x7d\xe0\x55\ +\x00\x00\x4f\x93\x02\x94\x46\x1a\x00\x00\x94\xb2\x02\xa7\x2c\x15\ +\x00\x00\x04\x3e\x02\xaa\x36\x95\x00\x00\x73\x77\x02\xb1\xf0\xba\ +\x00\x00\x89\x52\x02\xbf\xaa\x8e\x00\x00\x39\xfc\x02\xc0\x66\xf2\ +\x00\x00\x5a\x9a\x02\xc8\x3f\xf5\x00\x00\x65\xc9\x02\xd9\xa4\xb9\ +\x00\x00\x6b\x0a\x02\xdb\x1a\x94\x00\x00\x07\x65\x03\x01\x84\xc4\ +\x00\x00\x8d\xbd\x03\x12\x97\x6a\x00\x00\x8b\x80\x03\x1a\x14\x14\ +\x00\x00\x30\x0c\x03\x1a\x16\x59\x00\x00\x50\x3b\x03\x2f\x1a\x6a\ +\x00\x00\x75\x4e\x03\x7e\xca\xb5\x00\x00\x43\x72\x03\x88\x1f\xd4\ +\x00\x00\x44\x5b\x03\x9e\x58\xa5\x00\x00\x00\x4a\x03\xb3\x9e\xfa\ +\x00\x00\x95\xc3\x03\xb5\xc8\x9a\x00\x00\x97\x37\x03\xbd\xd4\xe4\ +\x00\x00\x75\xfb\x03\xc4\x3c\xf5\x00\x00\x78\x64\x03\xc5\xd5\x5e\ +\x00\x00\x09\x85\x03\xcb\x0d\xe5\x00\x00\x9c\x58\x03\xdc\x0c\xd4\ +\x00\x00\x74\x3c\x03\xf2\x70\x35\x00\x00\x2c\xc1\x03\xf2\xbd\x60\ +\x00\x00\x16\x07\x03\xfb\x0f\x04\x00\x00\x2f\x98\x04\x21\x23\x23\ +\x00\x00\x21\x1d\x04\x56\x06\x93\x00\x00\x2d\xbf\x04\x60\x7c\x15\ +\x00\x00\x9b\x34\x04\x79\xef\x9a\x00\x00\x88\xc3\x04\x82\x77\xf4\ +\x00\x00\x4f\x49\x04\x87\xf9\x9e\x00\x00\x8e\xac\x04\x8c\xd6\xae\ +\x00\x00\x64\x20\x04\xa0\x8a\x25\x00\x00\x05\x75\x04\xa0\x8a\x25\ +\x00\x00\x79\xef\x04\xa4\x31\x5a\x00\x00\x90\xf9\x04\xa8\xeb\x85\ +\x00\x00\x33\x5b\x04\xe1\x6e\xe3\x00\x00\x09\xff\x04\xe4\x0f\x75\ +\x00\x00\x02\xfd\x04\xeb\x41\xc3\x00\x00\x2d\x40\x04\xef\xd9\xa8\ +\x00\x00\x4b\x70\x05\x03\x83\x95\x00\x00\x6d\x0d\x05\x05\xcb\x13\ +\x00\x00\x42\x2a\x05\x0f\xf2\x74\x00\x00\x93\x74\x05\x1b\x10\x59\ +\x00\x00\x46\x0a\x05\x2a\xe5\x97\x00\x00\x4d\x81\x05\x44\x3b\x5f\ +\x00\x00\x6f\x1c\x05\x5c\xd9\xc4\x00\x00\x0f\xb0\x05\x5c\xd9\xc4\ +\x00\x00\x92\xac\x05\x63\xf6\x93\x00\x00\x4c\x47\x05\x65\xee\x65\ +\x00\x00\x80\xd0\x05\x87\xb0\xc3\x00\x00\x9b\x0c\x05\x96\xa8\xa5\ +\x00\x00\x13\x12\x05\x96\xa8\xa5\x00\x00\x9b\xf7\x05\xad\x4b\xc3\ +\x00\x00\x43\xd8\x05\xb9\x03\xc8\x00\x00\x1e\x0e\x05\xbd\x0c\xba\ +\x00\x00\x83\x23\x05\xbd\x8e\xde\x00\x00\x62\x8e\x05\xbe\x56\x93\ +\x00\x00\x4b\x02\x05\xc5\x50\x04\x00\x00\x0c\x13\x05\xe5\x8e\x2e\ +\x00\x00\x11\x0a\x05\xfb\xdc\x83\x00\x00\x42\xac\x06\x1e\xe6\xb5\ +\x00\x00\xa1\x7d\x06\x29\xee\xa9\x00\x00\x7a\x1d\x06\x32\xe3\xe3\ +\x00\x00\x7e\x80\x06\x57\x19\xf4\x00\x00\x00\x00\x06\x5a\xef\x15\ +\x00\x00\x73\xa5\x06\x5b\xd2\xb5\x00\x00\x3e\x95\x06\x6c\x88\x8e\ +\x00\x00\x40\x31\x06\x74\x1d\x55\x00\x00\x55\xcc\x06\x8b\x96\x44\ +\x00\x00\x0c\xbf\x06\x97\x58\xc9\x00\x00\x50\xcc\x06\xbc\x80\xa5\ +\x00\x00\x1d\x99\x06\xc9\xb8\x05\x00\x00\x76\x75\x06\xe8\x05\x4e\ +\x00\x00\x06\xd8\x06\xee\xaa\x57\x00\x00\xa0\x80\x06\xf0\xcb\x25\ +\x00\x00\x1b\x61\x06\xfa\xff\xc3\x00\x00\x43\x12\x06\xfc\x1a\x14\ +\x00\x00\x34\x7b\x06\xfc\xa0\x8a\x00\x00\x93\xbb\x07\x08\x90\xe5\ +\x00\x00\x2b\x38\x07\x0d\xb7\xf7\x00\x00\x39\x17\x07\x0e\x86\x3e\ +\x00\x00\x1b\xd0\x07\x35\x68\x6e\x00\x00\x17\x2e\x07\x35\xe8\x9a\ +\x00\x00\x98\xeb\x07\x44\x41\x2a\x00\x00\x81\xbd\x07\x4a\x1f\x63\ +\x00\x00\x02\x1c\x07\x4d\x73\x22\x00\x00\x91\x8f\x07\x4e\xa6\xf2\ +\x00\x00\x7f\x8b\x07\x58\xcb\xe8\x00\x00\x91\xcb\x07\x63\xfe\x0e\ +\x00\x00\x11\xf1\x07\x80\xc6\xb3\x00\x00\xa5\x08\x07\x88\x72\x5a\ +\x00\x00\x77\x91\x07\xa3\xe4\x0e\x00\x00\x22\x97\x07\xc1\xfc\x13\ +\x00\x00\x2e\x80\x08\x27\xb4\xba\x00\x00\x96\xca\x08\x32\xc4\xaa\ +\x00\x00\x99\xbe\x08\x36\x74\x14\x00\x00\x24\x96\x08\x44\xb9\x83\ +\x00\x00\x34\xfc\x08\x49\xc9\x30\x00\x00\x16\x59\x08\x61\x7c\xb3\ +\x00\x00\x1e\x41\x08\xa2\xca\x67\x00\x00\x4f\xf1\x08\xa3\xe0\x33\ +\x00\x00\x7b\x0b\x08\xb1\x15\x28\x00\x00\x2f\x23\x08\xb4\x04\x04\ +\x00\x00\x9b\x7c\x08\xd0\x32\xf4\x00\x00\x7f\x54\x08\xd4\xcd\x69\ +\x00\x00\x7f\xc5\x08\xe1\x9b\xbe\x00\x00\x1a\x95\x08\xe1\xc1\xfa\ +\x00\x00\x81\x13\x08\xeb\x8d\x7a\x00\x00\xa4\xb1\x09\x20\xda\x24\ +\x00\x00\xa6\x3e\x09\x20\xda\xb4\x00\x00\xa6\xeb\x09\x20\xda\xd4\ +\x00\x00\xa5\x71\x09\x4d\x96\xd9\x00\x00\x25\x70\x09\x65\xda\x8a\ +\x00\x00\x85\x1b\x09\x68\x0d\x29\x00\x00\x8f\xce\x09\x71\x8d\x25\ +\x00\x00\x06\x92\x09\x75\x23\x14\x00\x00\x75\x0c\x09\x76\xed\x34\ +\x00\x00\x66\xf8\x09\x86\xa6\x05\x00\x00\x23\xb2\x09\x8b\x23\xba\ +\x00\x00\x9a\x21\x09\x9e\xfd\x7e\x00\x00\x67\x4a\x09\xb6\x2a\x63\ +\x00\x00\x33\xd5\x09\xcd\x1c\x55\x00\x00\x9c\x9e\x09\xd2\x21\xea\ +\x00\x00\x5f\x93\x09\xe5\x23\x0e\x00\x00\x59\x97\x09\xec\x2b\x45\ +\x00\x00\x0c\x71\x09\xef\x33\xa3\x00\x00\x18\x4b\x09\xf0\x1f\x6e\ +\x00\x00\x03\x8a\x09\xfd\x45\x1a\x00\x00\x95\x6e\x0a\x09\xc1\x7a\ +\x00\x00\x98\x47\x0a\x28\x9a\x65\x00\x00\x4e\x22\x0a\x28\x9a\x67\ +\x00\x00\x4e\x69\x0a\x28\x9a\x69\x00\x00\x4e\xb0\x0a\x2d\xbe\xe4\ +\x00\x00\x30\x81\x0a\x35\xa9\xfa\x00\x00\x89\xf8\x0a\x3f\x27\x74\ +\x00\x00\x7c\x9a\x0a\x3f\x6b\x05\x00\x00\x7c\xd5\x0a\x49\xa5\x4a\ +\x00\x00\xa1\xbe\x0a\x60\xe0\x15\x00\x00\x26\x78\x0a\x60\xe0\x17\ +\x00\x00\x26\xcb\x0a\x60\xe0\x19\x00\x00\x27\x1e\x0a\x65\x9b\xea\ +\x00\x00\x92\xd8\x0a\x78\x05\x80\x00\x00\x01\x51\x0a\x7f\x8f\x65\ +\x00\x00\x3c\xc8\x0a\x98\x86\x18\x00\x00\x2a\xa7\x0a\x99\x5c\xaa\ +\x00\x00\x9a\x81\x0a\xa8\x16\x95\x00\x00\x12\xd3\x0a\xa9\x89\xec\ +\x00\x00\x44\xbc\x0a\xc8\x5c\x59\x00\x00\x0f\xe3\x0a\xd0\x50\xb8\ +\x00\x00\x74\x09\x0a\xd0\xe6\xf5\x00\x00\x17\xf8\x0a\xd6\xf1\xfa\ +\x00\x00\x7e\xcd\x0a\xeb\x91\x88\x00\x00\x66\x5f\x0b\x07\x78\x8a\ +\x00\x00\x84\x6c\x0b\x1b\xe0\x73\x00\x00\x51\x42\x0b\x24\x9d\xb4\ +\x00\x00\x52\x59\x0b\x24\xc5\xc9\x00\x00\x13\x4d\x0b\x26\x7e\x0e\ +\x00\x00\x7b\xc6\x0b\x2b\x50\xfa\x00\x00\x88\x20\x0b\x2d\xb3\xf9\ +\x00\x00\x6a\x6c\x0b\x37\x73\x69\x00\x00\xa3\x94\x0b\x40\x40\x3e\ +\x00\x00\x46\x78\x0b\x43\xcd\x19\x00\x00\x45\x38\x0b\x66\x28\xd2\ +\x00\x00\x66\x18\x0b\x88\xe0\x07\x00\x00\x0a\xf0\x0b\x94\x44\xc5\ +\x00\x00\x30\xf2\x0b\xc2\x99\x6a\x00\x00\x83\xa3\x0b\xd3\x27\xae\ +\x00\x00\x04\x78\x0b\xd4\x7e\x9e\x00\x00\x0b\x27\x0b\xf5\xee\x53\ +\x00\x00\x92\x65\x0c\x06\x50\x2e\x00\x00\x0d\x3c\x0c\x08\x46\x23\ +\x00\x00\x7d\x5a\x0c\x19\xfa\x99\x00\x00\x80\x49\x0c\x28\x9b\x45\ +\x00\x00\x74\x79\x0c\x31\x7e\x4a\x00\x00\x96\x14\x0c\x38\x4d\xe5\ +\x00\x00\x07\xae\x0c\x3a\x16\xd0\x00\x00\x19\x4e\x0c\x5a\xc0\xc8\ +\x00\x00\x78\x32\x0c\x6e\x87\xf5\x00\x00\x22\x5e\x0c\x91\xa0\x7a\ +\x00\x00\xa1\x20\x0c\x96\x90\x59\x00\x00\x45\x9b\x0c\xca\xdd\xfa\ +\x00\x00\x9f\x76\x0c\xd6\xef\x12\x00\x00\x2e\x2d\x0c\xde\x99\x49\ +\x00\x00\x6a\xb8\x0c\xf0\xde\xaa\x00\x00\x86\xb7\x0d\x1c\xf6\xee\ +\x00\x00\x2c\x09\x0d\x3a\x6c\xba\x00\x00\x96\x6c\x0d\x45\xe2\x6a\ +\x00\x00\x9d\xfc\x0d\x59\xa1\x45\x00\x00\x7d\xdb\x0d\x5a\xad\x33\ +\x00\x00\x76\xf9\x0d\x5e\xe7\x6e\x00\x00\x27\x71\x0d\x64\xa5\xd9\ +\x00\x00\x5d\xa2\x0d\x6d\xf8\xf4\x00\x00\x08\x61\x0d\x76\xb5\x92\ +\x00\x00\x2c\x5b\x0d\x9b\xec\xc9\x00\x00\x55\x4d\x0d\xa5\xd9\x94\ +\x00\x00\x2b\xb8\x0d\xa6\xda\xa4\x00\x00\x48\x0d\x0d\xc6\xc6\x2a\ +\x00\x00\x99\x54\x0d\xf2\x39\xba\x00\x00\x8a\xb9\x0e\x2b\x04\x15\ +\x00\x00\x7b\x85\x0e\x2c\xe4\x2a\x00\x00\x9d\x8b\x0e\x4e\xcc\xc5\ +\x00\x00\x09\xc2\x0e\x6f\x9a\x1a\x00\x00\xa0\x06\x0e\x7b\x7a\x2c\ +\x00\x00\x32\x02\x0e\x8f\x6a\x37\x00\x00\x36\x60\x0e\x91\x65\xf5\ +\x00\x00\x19\xff\x0e\xca\xd7\x34\x00\x00\x1f\xe9\x0e\xcd\x1c\x55\ +\x00\x00\x9c\xed\x0e\xcd\x1c\x65\x00\x00\x9d\x3c\x0e\xea\xe5\x03\ +\x00\x00\x72\x26\x0e\xed\xe1\xf9\x00\x00\x48\xc5\x0f\x07\x8d\xe3\ +\x00\x00\x72\xc4\x0f\x17\x82\x4e\x00\x00\x00\xf1\x0f\x1f\x8d\xa5\ +\x00\x00\x7b\x43\x0f\x4f\x75\x3a\x00\x00\xa7\x5b\x0f\x5f\xca\xd5\ +\x00\x00\x31\x69\x0f\x75\xb0\x54\x00\x00\x7d\x10\x0f\x77\xc3\xb4\ +\x00\x00\x6b\x98\x0f\x89\x0b\xbe\x00\x00\x49\x2d\x0f\x8f\xa8\xa7\ +\x00\x00\x18\xff\x0f\x98\x0a\x39\x00\x00\xa2\xea\x0f\x9e\xec\xa0\ +\x00\x00\x12\x2a\x0f\xbf\x87\xa3\x00\x00\x90\xad\x0f\xcd\xce\x95\ +\x00\x00\x35\xf6\x0f\xdf\x21\x05\x00\x00\x24\x3b\x0f\xf6\x06\x1e\ +\x00\x00\x20\x51\x0f\xf6\x29\x0a\x00\x00\x76\xa7\x0f\xf7\x77\xaa\ +\x00\x00\x86\x26\x0f\xfb\x5f\xae\x00\x00\x7c\x0e\x69\x00\x00\xa7\ +\xeb\x03\x00\x00\x00\x1e\x00\x41\x00\x64\x00\x69\x00\x63\x00\x69\ +\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x70\x00\x6f\x00\x6e\ +\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x41\x64\ +\x64\x20\x50\x6f\x69\x6e\x74\x07\x00\x00\x00\x0e\x44\x72\x61\x66\ +\x74\x5f\x41\x64\x64\x50\x6f\x69\x6e\x74\x01\x03\x00\x00\x00\x5c\ +\x00\x41\x00\x64\x00\x69\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\ +\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\ +\x00\x6f\x00\x20\x00\x61\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x61\ +\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x2f\x00\x62\x00\x73\x00\x70\ +\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x65\x00\x78\x00\x69\ +\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x74\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\x2c\x00\x41\x00\x64\x00\x69\x00\x63\x00\ +\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x61\x00\x6f\x00\ +\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\x6f\x00\x20\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\x76\x00\x41\x00\x64\x00\x69\x00\x63\x00\ +\x69\x00\x6f\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\x28\x00\x73\x00\ +\x29\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\ +\x28\x00\x73\x00\x29\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x28\x00\ +\x73\x00\x29\x00\x20\x00\x61\x00\x20\x00\x75\x00\x6d\x00\x20\x00\ +\x67\x00\x72\x00\x75\x00\x70\x00\x6f\x00\x20\x00\x65\x00\x78\x00\ +\x69\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x74\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\x84\x00\x41\x00\x70\x00\x6c\x00\x69\x00\x63\x00\x61\x00\x20\ +\x00\x61\x00\x20\x00\x65\x00\x73\x00\x70\x00\x65\x00\x73\x00\x73\ +\x00\x75\x00\x72\x00\x61\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\ +\x00\x69\x00\x6e\x00\x68\x00\x61\x00\x20\x00\x65\x00\x20\x00\x61\ +\x00\x20\x00\x63\x00\x6f\x00\x72\x00\x20\x00\x61\x00\x74\x00\x75\ +\x00\x61\x00\x6c\x00\x20\x00\x61\x00\x6f\x00\x73\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x73\ +\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\ +\x00\x64\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x2c\x00\x41\x00\x70\x00\x6c\x00\x69\x00\x63\x00\x61\x00\ +\x72\x00\x20\x00\x6f\x00\x20\x00\x65\x00\x73\x00\x74\x00\x69\x00\ +\x6c\x00\x6f\x00\x20\x00\x61\x00\x74\x00\x75\x00\x61\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\x08\x00\x41\x00\x72\x00\x63\x00\x6f\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\x66\ +\x00\x43\x00\x72\x00\x69\x00\x61\x00\x20\x00\x75\x00\x6d\x00\x20\ +\x00\x61\x00\x72\x00\x63\x00\x6f\x00\x2e\x00\x20\x00\x43\x00\x54\ +\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\ +\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x2c\x00\x20\x00\x53\x00\x68\ +\x00\x69\x00\x66\x00\x74\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\ +\x00\x20\x00\x72\x00\x65\x00\x73\x00\x74\x00\x72\x00\x69\x00\x6e\ +\x00\x67\x00\x69\x00\x72\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\x98\x00\x43\ +\x00\x72\x00\x69\x00\x61\x00\x20\x00\x75\x00\x6d\x00\x61\x00\x20\ +\x00\x62\x00\x2d\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6d\x00\xfa\x00\x6c\x00\x74\ +\x00\x69\x00\x70\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x70\x00\x6f\ +\x00\x6e\x00\x74\x00\x6f\x00\x73\x00\x2e\x00\x20\x00\x43\x00\x54\ +\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\ +\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x2c\x00\x20\x00\x53\x00\x68\ +\x00\x69\x00\x66\x00\x74\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\ +\x00\x20\x00\x72\x00\x65\x00\x73\x00\x74\x00\x72\x00\x69\x00\x6e\ +\x00\x67\x00\x69\x00\x72\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\x0e\x00\x43\x00\xed\x00\ +\x72\x00\x63\x00\x75\x00\x6c\x00\x6f\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\x8a\ +\x00\x43\x00\x72\x00\x69\x00\x61\x00\x20\x00\x75\x00\x6d\x00\x20\ +\x00\x63\x00\xed\x00\x72\x00\x63\x00\x75\x00\x6c\x00\x6f\x00\x2e\ +\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x61\ +\x00\x72\x00\x61\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x2c\ +\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x70\x00\x61\x00\x72\ +\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x69\ +\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x74\x00\x61\x00\x6e\ +\x00\x67\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x3d\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x69\ +\x72\x63\x6c\x65\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ +\x61\x70\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x73\x65\x6c\x65\x63\ +\x74\x20\x74\x61\x6e\x67\x65\x6e\x74\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x43\x69\x72\x63\ +\x6c\x65\x01\x03\x00\x00\x00\x18\x00\x46\x00\x65\x00\x63\x00\x68\ +\x00\x61\x00\x72\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x68\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\x4e\x00\x46\ +\x00\x65\x00\x63\x00\x68\x00\x61\x00\x72\x00\x20\x00\x61\x00\x20\ +\x00\x6c\x00\x69\x00\x6e\x00\x68\x00\x61\x00\x20\x00\x71\x00\x75\ +\x00\x65\x00\x20\x00\x65\x00\x73\x00\x74\x00\xe1\x00\x20\x00\x73\ +\x00\x65\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x73\ +\x00\x65\x00\x6e\x00\x68\x00\x61\x00\x64\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x1b\x43\x6c\x6f\x73\x65\x73\x20\x74\x68\x65\ +\x20\x6c\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\x64\x72\x61\x77\ +\x6e\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x43\x6c\x6f\x73\ +\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x1a\x00\x52\x00\x65\x00\ +\x6d\x00\x6f\x00\x76\x00\x65\x00\x72\x00\x20\x00\x70\x00\x6f\x00\ +\x6e\x00\x74\x00\x6f\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\x20\x00\x75\x00\x6d\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\ +\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x75\x00\x6d\x00\x20\ +\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x6f\x00\x75\ +\x00\x20\x00\x62\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\ +\x00\x20\x00\x65\x00\x78\x00\x69\x00\x73\x00\x74\x00\x65\x00\x6e\ +\x00\x74\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\xb2\x00\x43\x00\x72\x00\x69\x00\x61\x00\ +\x20\x00\x75\x00\x6d\x00\x61\x00\x20\x00\x64\x00\x69\x00\x6d\x00\ +\x65\x00\x6e\x00\x73\x00\xe3\x00\x6f\x00\x2e\x00\x20\x00\x43\x00\ +\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\ +\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x2c\x00\x20\x00\x53\x00\ +\x68\x00\x69\x00\x66\x00\x74\x00\x20\x00\x70\x00\x61\x00\x72\x00\ +\x61\x00\x20\x00\x72\x00\x65\x00\x73\x00\x74\x00\x72\x00\x69\x00\ +\x6e\x00\x67\x00\x69\x00\x72\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\ +\x54\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\ +\x72\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x73\x00\x65\x00\x67\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\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\x73\x00\xe3\x00\x6f\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\x00\x52\x00\x65\x00\x62\x00\x61\ +\x00\x69\x00\x78\x00\x61\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\x88\x00\x45\x00\x78\x00\x70\x00\x6c\x00\x6f\x00\ +\x64\x00\x65\x00\x20\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\ +\x6f\x00\x73\x00\x20\x00\x65\x00\x6d\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x69\x00\ +\x6d\x00\x70\x00\x6c\x00\x65\x00\x73\x00\x2c\x00\x20\x00\x6f\x00\ +\x75\x00\x20\x00\x73\x00\x75\x00\x62\x00\x74\x00\x72\x00\x61\x00\ +\x69\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\x0e\x00\x44\x00\x65\x00\x73\x00\x65\x00\x6e\ +\x00\x68\x00\x6f\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\x6e\x00\x43\x00\ +\x6f\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x20\x00\x6f\x00\x73\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\ +\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\ +\x6e\x00\x61\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x65\x00\x6d\x00\ +\x20\x00\x75\x00\x6d\x00\x61\x00\x20\x00\x66\x00\x6f\x00\x6c\x00\ +\x68\x00\x61\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\x00\x65\x00\ +\x73\x00\x65\x00\x6e\x00\x68\x00\x6f\x00\x2e\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x2d\x50\x75\x74\x73\x20\x74\x68\x65\x20\x73\x65\ +\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x6f\ +\x6e\x20\x61\x20\x44\x72\x61\x77\x69\x6e\x67\x20\x73\x68\x65\x65\ +\x74\x2e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x44\x72\x61\ +\x77\x69\x6e\x67\x01\x03\x00\x00\x00\x0c\x00\x45\x00\x64\x00\x69\ +\x00\x74\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\ +\x45\x64\x69\x74\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x45\ +\x64\x69\x74\x01\x03\x00\x00\x00\x28\x00\x45\x00\x64\x00\x69\x00\ +\x74\x00\x61\x00\x20\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x74\x00\x69\x00\x76\x00\ +\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x00\x46\x00\x69\x00\x6e\x00\x61\x00\ +\x6c\x00\x69\x00\x7a\x00\x61\x00\x72\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x68\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x46\ +\x69\x6e\x69\x73\x68\x20\x6c\x69\x6e\x65\x07\x00\x00\x00\x10\x44\ +\x72\x61\x66\x74\x5f\x46\x69\x6e\x69\x73\x68\x4c\x69\x6e\x65\x01\ +\x03\x00\x00\x00\x36\x00\x54\x00\x65\x00\x72\x00\x6d\x00\x69\x00\ +\x6e\x00\x61\x00\x72\x00\x20\x00\x61\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x68\x00\x61\x00\x20\x00\x73\x00\x65\x00\x6d\x00\x20\x00\ +\x66\x00\x65\x00\x63\x00\x68\x00\x61\x00\x72\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x22\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x61\x20\ +\x6c\x69\x6e\x65\x20\x77\x69\x74\x68\x6f\x75\x74\x20\x63\x6c\x6f\ +\x73\x69\x6e\x67\x20\x69\x74\x07\x00\x00\x00\x10\x44\x72\x61\x66\ +\x74\x5f\x46\x69\x6e\x69\x73\x68\x4c\x69\x6e\x65\x01\x03\x00\x00\ +\x00\x84\x00\x43\x00\x72\x00\x69\x00\x61\x00\x72\x00\x20\x00\x75\ +\x00\x6d\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x68\x00\x61\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x32\x00\x20\x00\x70\x00\x6f\ +\x00\x6e\x00\x74\x00\x6f\x00\x73\x00\x2e\x00\x20\x00\x43\x00\x54\ +\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\ +\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x2c\x00\x20\x00\x53\x00\x68\ +\x00\x69\x00\x66\x00\x74\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\ +\x00\x20\x00\x72\x00\x65\x00\x73\x00\x74\x00\x72\x00\x69\x00\x6e\ +\x00\x67\x00\x69\x00\x72\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\x68\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\ +\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x0a\x00\x4d\x00\x6f\x00\x76\ +\x00\x65\x00\x72\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\x4d\x00\x6f\x00\x76\x00\x65\x00\ +\x20\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x73\x00\ +\x20\x00\x65\x00\x6e\x00\x74\x00\x72\x00\x65\x00\x20\x00\x32\x00\ +\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x73\x00\x2e\x00\ +\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x61\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x2c\x00\ +\x20\x00\x53\x00\x68\x00\x69\x00\x66\x00\x74\x00\x20\x00\x70\x00\ +\x61\x00\x72\x00\x61\x00\x20\x00\x72\x00\x65\x00\x73\x00\x74\x00\ +\x72\x00\x69\x00\x6e\x00\x67\x00\x69\x00\x72\x00\x2c\x00\x20\x00\ +\x41\x00\x4c\x00\x54\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\ +\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x61\x00\x72\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x5a\x4d\x6f\x76\x65\x73\x20\x74\x68\x65\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x32\x20\x70\x6f\x69\x6e\ +\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\ +\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\ +\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\x6f\x70\ +\x79\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4d\x6f\x76\x65\ +\x01\x03\x00\x00\x00\x0c\x00\x4f\x00\x66\x00\x66\x00\x73\x00\x65\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x06\x4f\x66\x66\x73\ +\x65\x74\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x4f\x66\x66\ +\x73\x65\x74\x01\x03\x00\x00\x00\xbe\x00\x43\x00\x72\x00\x69\x00\ +\x61\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x6f\x00\x66\x00\x66\x00\ +\x73\x00\x65\x00\x74\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x74\x00\ +\x69\x00\x76\x00\x6f\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\ +\x4c\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x73\x00\ +\x6e\x00\x61\x00\x70\x00\x2c\x00\x20\x00\x53\x00\x68\x00\x69\x00\ +\x66\x00\x74\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\ +\x72\x00\x65\x00\x73\x00\x74\x00\x72\x00\x69\x00\x6e\x00\x67\x00\ +\x69\x00\x72\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x63\x00\x72\x00\x69\x00\ +\x61\x00\x72\x00\x20\x00\x75\x00\x6d\x00\x61\x00\x20\x00\x63\x00\ +\xf3\x00\x70\x00\x69\x00\x61\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\x8a\ +\x00\x43\x00\x72\x00\x69\x00\x61\x00\x20\x00\x75\x00\x6d\x00\x20\ +\x00\x70\x00\x6f\x00\x6c\x00\xed\x00\x67\x00\x6f\x00\x6e\x00\x6f\ +\x00\x20\x00\x72\x00\x65\x00\x67\x00\x75\x00\x6c\x00\x61\x00\x72\ +\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\ +\x00\x61\x00\x72\x00\x61\x00\x20\x00\x66\x00\x61\x00\x7a\x00\x65\ +\x00\x72\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x2c\x00\x20\ +\x00\x53\x00\x68\x00\x69\x00\x66\x00\x74\x00\x20\x00\x70\x00\x61\ +\x00\x72\x00\x61\x00\x20\x00\x72\x00\x65\x00\x73\x00\x74\x00\x72\ +\x00\x69\x00\x6e\x00\x67\x00\x69\x00\x72\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x3b\x43\x72\x65\x61\x74\x65\x73\x20\x61\x20\x72\x65\ +\x67\x75\x6c\x61\x72\x20\x70\x6f\x6c\x79\x67\x6f\x6e\x2e\x20\x43\ +\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\ +\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x07\ +\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x50\x6f\x6c\x79\x67\x6f\ +\x6e\x01\x03\x00\x00\x00\x10\x00\x50\x00\x6f\x00\x6c\x00\xed\x00\ +\x67\x00\x6f\x00\x6e\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x07\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\ +\x66\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\x00\x00\x5c\ +\x00\x43\x00\x72\x00\x69\x00\x61\x00\x20\x00\x75\x00\x6d\x00\x20\ +\x00\x72\x00\x65\x00\x74\x00\xe2\x00\x6e\x00\x67\x00\x75\x00\x6c\ +\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x20\x00\x32\x00\x20\ +\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x73\x00\x2e\x00\x20\ +\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\x61\x00\x72\ +\x00\x61\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\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\x74\x00\ +\xe2\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x6f\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x09\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\ +\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x52\x65\x63\x74\x61\x6e\x67\ +\x6c\x65\x01\x03\x00\x00\x00\x14\x00\x52\x00\x6f\x00\x74\x00\x61\ +\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\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\xb2\x00\x52\x00\x6f\x00\x74\x00\x61\x00\x63\x00\x69\x00\ +\x6f\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\ +\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\ +\x61\x00\x72\x00\x61\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\ +\x2c\x00\x20\x00\x53\x00\x68\x00\x69\x00\x66\x00\x74\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x72\x00\x65\x00\x73\x00\ +\x74\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x69\x00\x72\x00\x2c\x00\ +\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x63\x00\x72\x00\x69\x00\ +\x61\x00\x20\x00\x75\x00\x6d\x00\x61\x00\x20\x00\x63\x00\xf3\x00\ +\x70\x00\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\ +\x6f\x74\x61\x74\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x2e\x20\x43\x54\x52\ +\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\ +\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\ +\x4c\x54\x20\x63\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x6f\x70\ +\x79\x07\x00\x00\x00\x0c\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\ +\x74\x65\x01\x03\x00\x00\x00\x0e\x00\x45\x00\x73\x00\x63\x00\x61\ +\x00\x6c\x00\x61\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\xe6\x00\x45\x00\x73\x00\ +\x63\x00\x61\x00\x6c\x00\x61\x00\x20\x00\x6f\x00\x73\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\ +\x61\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x61\x00\x20\x00\x70\x00\ +\x61\x00\x72\x00\x74\x00\x69\x00\x72\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x75\x00\x6d\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\ +\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\ +\x65\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x73\x00\x6e\x00\x61\x00\ +\x70\x00\x2c\x00\x20\x00\x53\x00\x68\x00\x69\x00\x66\x00\x74\x00\ +\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x72\x00\x65\x00\ +\x73\x00\x74\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x69\x00\x72\x00\ +\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x70\x00\x61\x00\ +\x72\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x61\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x5c\x53\x63\x61\x6c\x65\ +\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x66\x72\x6f\x6d\x20\x61\x20\x62\x61\ +\x73\x65\x20\x70\x6f\x69\x6e\x74\x2e\x20\x43\x54\x52\x4c\x20\x74\ +\x6f\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\ +\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\ +\x74\x6f\x20\x63\x6f\x70\x79\x07\x00\x00\x00\x0b\x44\x72\x61\x66\ +\x74\x5f\x53\x63\x61\x6c\x65\x01\x03\x00\x00\x00\x20\x00\x53\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\ +\x72\x00\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\x6f\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\x78\x00\ +\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\ +\x61\x00\x20\x00\x74\x00\x6f\x00\x64\x00\x6f\x00\x73\x00\x20\x00\ +\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x6f\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x20\x00\x6f\x00\ +\x73\x00\x20\x00\x6d\x00\x65\x00\x73\x00\x6d\x00\x6f\x00\x73\x00\ +\x20\x00\x70\x00\x61\x00\x69\x00\x73\x00\x20\x00\x71\x00\x75\x00\ +\x65\x00\x20\x00\x65\x00\x73\x00\x74\x00\x65\x00\x20\x00\x67\x00\ +\x72\x00\x75\x00\x70\x00\x6f\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\x78\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x69\ +\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x75\x00\x6d\x00\x20\ +\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x6f\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x74\x00\x72\x00\x61\x00\x62\x00\x61\x00\x6c\x00\x68\ +\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x61\ +\x00\x20\x00\x63\x00\x72\x00\x69\x00\x61\x00\xe7\x00\xe3\x00\x6f\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x32\x00\x44\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\x22\x00\x50\ +\x00\x6c\x00\x61\x00\x6e\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x74\x00\x72\x00\x61\x00\x62\x00\x61\x00\x6c\x00\x68\x00\x6f\ +\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\ +\x64\x00\x43\x00\x72\x00\x69\x00\x61\x00\x20\x00\x66\x00\x6f\x00\ +\x72\x00\x6d\x00\x61\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\ +\x20\x00\x76\x00\x69\x00\x73\x00\x74\x00\x61\x00\x73\x00\x20\x00\ +\x32\x00\x44\x00\x20\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\ +\x64\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x1c\x00\x46\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\ +\x20\x00\x76\x00\x69\x00\x73\x00\x74\x00\x61\x00\x20\x00\x32\x00\ +\x44\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x53\x68\x61\x70\x65\ +\x20\x32\x44\x20\x76\x69\x65\x77\x07\x00\x00\x00\x11\x44\x72\x61\ +\x66\x74\x5f\x53\x68\x61\x70\x65\x32\x44\x56\x69\x65\x77\x01\x03\ +\x00\x00\x00\x42\x00\x43\x00\x72\x00\x69\x00\x61\x00\x20\x00\x75\ +\x00\x6d\x00\x61\x00\x20\x00\x61\x00\x6e\x00\x6f\x00\x74\x00\x61\ +\x00\xe7\x00\xe3\x00\x6f\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\ +\x00\x4c\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x73\ +\x00\x6e\x00\x61\x00\x70\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\x78\x00\x74\ +\x00\x6f\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\x4e\x00\x41\x00\x74\x00\x69\x00\x76\x00\x61\x00\ +\x72\x00\x20\x00\x2f\x00\x20\x00\x64\x00\x65\x00\x73\x00\x61\x00\ +\x74\x00\x69\x00\x76\x00\x61\x00\x72\x00\x20\x00\x6f\x00\x20\x00\ +\x6d\x00\x6f\x00\x64\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\xe7\x00\ +\xe3\x00\x6f\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\x6c\x00\x41\x00\x6c\x00\ +\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\x20\x00\ +\x6d\x00\x6f\x00\x64\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\xe7\x00\ +\xe3\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\ +\x6f\x00\x73\x00\x20\x00\x70\x00\x72\x00\xf3\x00\x78\x00\x69\x00\ +\x6d\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x74\x00\x6f\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\x2e\x00\x41\x00\x6c\x00\x74\x00\x65\x00\ +\x72\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\ +\x6f\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\ +\x75\x00\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x66\x00\x41\x00\x6c\x00\x74\x00\x65\x00\x72\ +\x00\x6e\x00\x61\x00\x20\x00\x6f\x00\x20\x00\x6d\x00\x6f\x00\x64\ +\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\ +\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x61\x00\x72\x00\x20\x00\x70\ +\x00\x61\x00\x72\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x61\ +\x00\x6e\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x70\x00\x72\x00\xf3\ +\x00\x78\x00\x69\x00\x6d\x00\x6f\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\x98\x00\x4d\x00\x75\x00\x64\x00\x61\x00\x20\x00\ +\x6f\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x6f\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x65\x00\x78\x00\x69\x00\x62\x00\x69\x00\xe7\x00\ +\xe3\x00\x6f\x00\x20\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\ +\x64\x00\x6f\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x72\x00\ +\x65\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x66\x00\x72\x00\ +\x61\x00\x6d\x00\x65\x00\x20\x00\x65\x00\x20\x00\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\x36\x00\ +\x41\x00\x6c\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\x72\x00\ +\x20\x00\x6f\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x6f\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x65\x00\x78\x00\x69\x00\x62\x00\x69\x00\ +\xe7\x00\xe3\x00\x6f\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\x00\xfe\x00\x41\x00\x70\x00\x61\x00\x72\x00\ +\x61\x00\x20\x00\x6f\x00\x75\x00\x20\x00\x65\x00\x73\x00\x74\x00\ +\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x6f\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x65\x00\ +\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\ +\x6f\x00\x20\x00\x6f\x00\x75\x00\x20\x00\x65\x00\x78\x00\x74\x00\ +\x72\x00\x75\x00\x64\x00\x61\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\x70\x00\x61\x00\x72\x00\x61\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\x72\x00\x65\x00\x73\x00\x74\x00\x72\x00\x69\x00\ +\x6e\x00\x67\x00\x65\x00\x20\x00\x6f\x00\x20\x00\x73\x00\x65\x00\ +\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x61\x00\ +\x74\x00\x75\x00\x61\x00\x6c\x00\x20\x00\x6f\x00\x75\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\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x89\x54\ +\x72\x69\x6d\x73\x20\x6f\x72\x20\x65\x78\x74\x65\x6e\x64\x73\x20\ +\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\ +\x65\x63\x74\x2c\x20\x6f\x72\x20\x65\x78\x74\x72\x75\x64\x65\x73\ +\x20\x73\x69\x6e\x67\x6c\x65\x20\x66\x61\x63\x65\x73\x2e\x20\x43\ +\x54\x52\x4c\x20\x73\x6e\x61\x70\x73\x2c\x20\x53\x48\x49\x46\x54\ +\x20\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x73\x20\x74\x6f\x20\x63\ +\x75\x72\x72\x65\x6e\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x6f\ +\x72\x20\x74\x6f\x20\x6e\x6f\x72\x6d\x61\x6c\x2c\x20\x41\x4c\x54\ +\x20\x69\x6e\x76\x65\x72\x74\x73\x07\x00\x00\x00\x0c\x44\x72\x61\ +\x66\x74\x5f\x54\x72\x69\x6d\x65\x78\x01\x03\x00\x00\x00\x34\x00\ +\x44\x00\x65\x00\x73\x00\x66\x00\x61\x00\x7a\x00\x65\x00\x72\x00\ +\x20\x00\x6f\x00\x20\x00\xfa\x00\x6c\x00\x74\x00\x69\x00\x6d\x00\ +\x6f\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x6f\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\x74\x00\x44\x00\x65\x00\x73\x00\x66\x00\ +\x61\x00\x7a\x00\x20\x00\x6f\x00\x20\x00\xfa\x00\x6c\x00\x74\x00\ +\x69\x00\x6d\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x61\x00\x20\x00\ +\x6c\x00\x69\x00\x6e\x00\x68\x00\x61\x00\x20\x00\x71\x00\x75\x00\ +\x65\x00\x20\x00\x65\x00\x73\x00\x74\x00\xe1\x00\x20\x00\x73\x00\ +\x65\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x73\x00\ +\x65\x00\x6e\x00\x68\x00\x61\x00\x64\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\xc2\x00\x4a\x00\x75\x00\x6e\x00\x74\x00\x61\x00\x20\x00\ +\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x73\x00\x20\x00\ +\x65\x00\x6d\x00\x20\x00\x75\x00\x6d\x00\x2c\x00\x20\x00\x6f\x00\ +\x75\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\ +\x74\x00\x65\x00\x20\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\ +\x73\x00\x20\x00\x66\x00\x65\x00\x63\x00\x68\x00\x61\x00\x64\x00\ +\x6f\x00\x73\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x63\x00\x68\x00\ +\x65\x00\x69\x00\x61\x00\x73\x00\x2c\x00\x20\x00\x6f\x00\x75\x00\ +\x20\x00\x75\x00\x6e\x00\x69\x00\x72\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\x10\x00\x50\x00\x72\x00\x6f\x00\x6d\x00\x6f\x00\x76\ +\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\x90\x00\x43\x00\ +\x72\x00\x69\x00\x61\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x61\x00\ +\x72\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x6d\x00\xfa\x00\x6c\x00\x74\x00\x69\x00\x70\x00\x6c\x00\x6f\x00\ +\x73\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x73\x00\ +\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x70\x00\ +\x61\x00\x72\x00\x61\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\ +\x2c\x00\x20\x00\x53\x00\x68\x00\x69\x00\x66\x00\x74\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x72\x00\x65\x00\x73\x00\ +\x74\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x69\x00\x72\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\x41\x00\x72\x00\ +\x61\x00\x6d\x00\x65\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\x40\x00\x43\x00\x6f\x00\x6e\x00\x76\ +\x00\x65\x00\x72\x00\x74\x00\x65\x00\x20\x00\x65\x00\x6e\x00\x74\ +\x00\x72\x00\x65\x00\x20\x00\x6f\x00\x20\x00\x61\x00\x72\x00\x61\ +\x00\x6d\x00\x65\x00\x20\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\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\ +\x24\x00\x41\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x20\x00\x70\x00\ +\x61\x00\x72\x00\x61\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\x42\x00\x4c\x00\x6f\x00\x63\x00\x61\x00\x6c\x00\x20\x00\ +\x61\x00\x6c\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\x00\x74\x00\ +\x69\x00\x76\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x68\x00\ +\x61\x00\x63\x00\x68\x00\x75\x00\x72\x00\x61\x00\x73\x00\x20\x00\ +\x53\x00\x56\x00\x47\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1f\x41\ +\x6c\x74\x65\x72\x6e\x61\x74\x65\x20\x53\x56\x47\x20\x50\x61\x74\ +\x74\x65\x72\x6e\x73\x20\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x68\x00\x53\x00\x65\x00\x6d\x00\x70\x00\x72\ +\x00\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x65\x00\x61\ +\x00\x72\x00\x20\x00\x61\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x28\x00\x64\ +\x00\x65\x00\x73\x00\x61\x00\x74\x00\x69\x00\x76\x00\x61\x00\x72\ +\x00\x20\x00\x74\x00\x65\x00\x63\x00\x6c\x00\x61\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\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\x8c\x00\x4d\x00\x61\x00\x72\x00\x71\x00\ +\x75\x00\x65\x00\x20\x00\x69\x00\x73\x00\x73\x00\x6f\x00\x20\x00\ +\x73\x00\x65\x00\x20\x00\x71\x00\x75\x00\x69\x00\x73\x00\x65\x00\ +\x72\x00\x20\x00\x71\x00\x75\x00\x65\x00\x20\x00\x61\x00\x73\x00\ +\x20\x00\xe1\x00\x72\x00\x65\x00\x61\x00\x73\x00\x20\x00\x28\x00\ +\x66\x00\x61\x00\x63\x00\x65\x00\x73\x00\x20\x00\x33\x00\x44\x00\ +\x29\x00\x20\x00\x73\x00\x65\x00\x6a\x00\x61\x00\x6d\x00\x20\x00\ +\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x64\x00\ +\x61\x00\x73\x00\x20\x00\x74\x00\x61\x00\x6d\x00\x62\x00\xe9\x00\ +\x6d\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\xd0\x00\x4d\x00\x61\x00\x72\x00\x71\x00\x75\x00\x65\ +\x00\x20\x00\x65\x00\x73\x00\x74\x00\x61\x00\x20\x00\x6f\x00\x70\ +\x00\xe7\x00\xe3\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x20\x00\x76\ +\x00\x6f\x00\x63\x00\xea\x00\x20\x00\x71\x00\x75\x00\x65\x00\x72\ +\x00\x20\x00\x71\x00\x75\x00\x65\x00\x20\x00\x6f\x00\x73\x00\x20\ +\x00\x62\x00\x6c\x00\x6f\x00\x63\x00\x6f\x00\x73\x00\x20\x00\x6e\ +\x00\xe3\x00\x6f\x00\x2d\x00\x6e\x00\x6f\x00\x6d\x00\x65\x00\x61\ +\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x28\x00\x63\x00\x6f\x00\x6d\ +\x00\x65\x00\xe7\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x2a\x00\x29\ +\x00\x20\x00\x65\x00\x73\x00\x74\x00\x65\x00\x6a\x00\x61\x00\x6d\ +\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\ +\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x74\x00\x61\x00\x6d\x00\x62\ +\x00\xe9\x00\x6d\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\x12\x00\x43\x00\xed\x00\x72\x00\ +\x63\x00\x75\x00\x6c\x00\x6f\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\x12\x00\x43\x00\xed\x00\x72\x00\x63\x00\x75\x00\ +\x6c\x00\x6f\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\ +\x12\x00\x43\x00\xed\x00\x72\x00\x63\x00\x75\x00\x6c\x00\x6f\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\x46\x00\x43\x00\ +\x6f\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x70\x00\x65\x00\x61\x00\ +\x64\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\ +\x65\x00\x73\x00\x70\x00\x65\x00\x73\x00\x73\x00\x75\x00\x72\x00\ +\x61\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\ +\x68\x00\x61\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\x3c\x00\x41\ +\x00\x72\x00\x71\x00\x75\x00\x69\x00\x76\x00\x6f\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x70\x00\x65\x00\x61\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x63\x00\x6f\x00\x72\x00\x65\x00\x73\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\x12\x00\x52\ +\x00\x65\x00\x73\x00\x74\x00\x72\x00\x20\x00\x6d\x00\x6f\x00\x64\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\x6f\x6e\x73\x74\x72\ +\x61\x69\x6e\x20\x6d\x6f\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\ +\x43\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\xe7\x00\ +\xe3\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0c\x43\x6f\x6e\ +\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x22\x00\x43\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\xe7\x00\ +\xe3\x00\x6f\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\x36\x00\x4e\x00\x6f\x00\x6d\x00\x65\x00\ +\x20\x00\x64\x00\x6f\x00\x20\x00\x67\x00\x72\x00\x75\x00\x70\x00\ +\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\ +\x73\x00\x74\x00\x72\x00\x75\x00\xe7\x00\xe3\x00\x6f\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\x34\x00\x43\x00\x72\x00\x69\x00\x61\x00\x72\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\xe9\x00\x74\ +\x00\x72\x00\x69\x00\x63\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x19\x43\x72\x65\x61\x74\x65\x20\x70\x61\x72\x61\x6d\ +\x65\x74\x72\x69\x63\x20\x6f\x62\x6a\x65\x63\x74\x73\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x2a\x00\x4f\x00\x70\x00\xe7\x00\xf5\x00\x65\x00\ +\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\ +\x6d\x00\x61\x00\x74\x00\x6f\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\x14\x00\x43\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x61\x00\ +\x64\x00\x72\x00\xe3\x00\x6f\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\x00\x41\x00\x6c\x00\x74\x00\x75\x00\x72\ +\x00\x61\x00\x20\x00\x70\x00\x61\x00\x64\x00\x72\x00\xe3\x00\x6f\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x74\x00\x65\ +\x00\x78\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x65\x00\x20\x00\x64\ +\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\xf5\x00\x65\x00\x73\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x27\x44\x65\x66\x61\x75\x6c\ +\x74\x20\x68\x65\x69\x67\x68\x74\x20\x66\x6f\x72\x20\x74\x65\x78\ +\x74\x73\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ +\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x32\x00\x45\x00\x73\x00\x70\x00\ +\x65\x00\x73\x00\x73\x00\x75\x00\x72\x00\x61\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x68\x00\x61\x00\x20\x00\ +\x70\x00\x61\x00\x64\x00\x72\x00\xe3\x00\x6f\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\x2c\x00\x4d\ +\x00\x6f\x00\x64\x00\x65\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x66\x00\x6f\x00\x6c\x00\x68\x00\x61\x00\x20\x00\x70\ +\x00\x61\x00\x64\x00\x72\x00\xe3\x00\x6f\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\x46\x00\x6f\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x64\ +\x00\x6f\x00\x20\x00\x63\x00\x61\x00\x72\x00\xe1\x00\x74\x00\x65\ +\x00\x72\x00\x65\x00\x73\x00\x20\x00\x70\x00\x61\x00\x64\x00\x72\ +\x00\xe3\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x44\x65\ +\x66\x61\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x66\x6f\x6e\x74\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x2c\x00\x41\x00\x6c\x00\x74\x00\x75\x00\ +\x72\x00\x61\x00\x20\x00\x64\x00\x65\x00\x20\x00\x74\x00\x65\x00\ +\x78\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x64\x00\x72\x00\ +\xe3\x00\x6f\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\x50\x00\x6c\x00\x61\x00\x6e\ +\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x74\x00\x72\x00\x61\ +\x00\x62\x00\x61\x00\x6c\x00\x68\x00\x6f\x00\x20\x00\x70\x00\x61\ +\x00\x64\x00\x72\x00\xe3\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x15\x44\x65\x66\x61\x75\x6c\x74\x20\x77\x6f\x72\x6b\x69\x6e\ +\x67\x20\x70\x6c\x61\x6e\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x48\x00\ +\x54\x00\x69\x00\x70\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x73\x00\x65\x00\x74\x00\x61\x00\x20\x00\x64\x00\x61\x00\x73\x00\ +\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\xf5\x00\ +\x65\x00\x73\x00\x20\x00\x65\x00\x20\x00\x6c\x00\x65\x00\x61\x00\ +\x64\x00\x65\x00\x72\x00\x73\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\x3e\x00\x4e\x00\xed\x00\x76\x00\x65\ +\x00\x6c\x00\x20\x00\x64\x00\x65\x00\x20\x00\x70\x00\x72\x00\x65\ +\x00\x63\x00\x69\x00\x73\x00\xe3\x00\x6f\x00\x20\x00\x64\x00\x61\ +\x00\x73\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\ +\x00\xf5\x00\x65\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1a\ +\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x70\x72\x65\x63\x69\ +\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0e\x00\x50\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x35\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\x6f\x74\x20\x35\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x0e\x00\x50\x00\x6f\x00\x6e\x00\x74\x00\ +\x6f\x00\x20\x00\x37\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x44\ +\x6f\x74\x20\x37\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x50\x00\x6f\ +\x00\x6e\x00\x74\x00\x6f\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\ +\x34\x00\x4d\x00\x6f\x00\x64\x00\x6f\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x66\x00\x61\x00\ +\x63\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x44\x00\x72\x00\ +\x61\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\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\x50\x00\x45\x00\x78\x00\ +\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x72\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x33\x00\ +\x44\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6f\x00\x20\x00\x6d\x00\ +\x61\x00\x6c\x00\x68\x00\x61\x00\x73\x00\x20\x00\x50\x00\x6f\x00\ +\x6c\x00\x79\x00\x66\x00\x61\x00\x63\x00\x65\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\ +\x38\x00\x50\x00\x72\x00\x65\x00\x65\x00\x6e\x00\x63\x00\x68\x00\ +\x65\x00\x72\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x6f\x00\x73\x00\x20\x00\x70\x00\x6f\x00\x72\x00\x20\x00\x70\x00\ +\x61\x00\x64\x00\x72\x00\xe3\x00\x6f\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\x48\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\ +\x00\x72\x00\x61\x00\xe7\x00\xf5\x00\x65\x00\x73\x00\x20\x00\x67\ +\x00\x65\x00\x72\x00\x61\x00\x69\x00\x73\x00\x20\x00\x64\x00\x6f\ +\x00\x20\x00\x6d\x00\xf3\x00\x64\x00\x75\x00\x6c\x00\x6f\x00\x20\ +\x00\x44\x00\x72\x00\x61\x00\x66\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\x28\x00\x43\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\ +\x00\x72\x00\x61\x00\xe7\x00\xf5\x00\x65\x00\x73\x00\x20\x00\x67\ +\x00\x65\x00\x72\x00\x61\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\x74\x74\ +\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x4d\x00\x6f\ +\x00\x64\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\xf3\ +\x00\x70\x00\x69\x00\x61\x00\x20\x00\x67\x00\x6c\x00\x6f\x00\x62\ +\x00\x61\x00\x6c\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\x28\x00\x45\x00\x73\x00\x70\x00\x61\x00\xe7\ +\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x64\ +\x00\x61\x00\x20\x00\x67\x00\x72\x00\x61\x00\x64\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\x32\x00\x41\x00\x67\ +\x00\x72\x00\x75\x00\x70\x00\x61\x00\x72\x00\x20\x00\x63\x00\x61\ +\x00\x6d\x00\x61\x00\x64\x00\x61\x00\x73\x00\x20\x00\x65\x00\x6d\ +\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x63\x00\x6f\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\x16\x00\x41\x00\x71\x00\x75\x00\x69\ +\x00\x20\x00\x76\x00\x6f\x00\x63\x00\xea\x00\x20\x00\x70\x00\x6f\ +\x00\x64\x00\x65\x00\x20\x00\x65\x00\x73\x00\x70\x00\x65\x00\x63\ +\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x72\x00\x20\x00\x75\ +\x00\x6d\x00\x20\x00\x64\x00\x69\x00\x72\x00\x65\x00\x74\x00\xf3\ +\x00\x72\x00\x69\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\ +\x00\x65\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x61\x00\x72\x00\x71\ +\x00\x75\x00\x69\x00\x76\x00\x6f\x00\x73\x00\x20\x00\x53\x00\x56\ +\x00\x47\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x65\x00\x6e\ +\x00\x64\x00\x6f\x00\x20\x00\x74\x00\x61\x00\x67\x00\x73\x00\x20\ +\x00\x3c\x00\x70\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x6e\ +\x00\x3e\x00\x20\x00\x71\x00\x75\x00\x65\x00\x20\x00\x70\x00\x6f\ +\x00\x64\x00\x65\x00\x6d\x00\x20\x00\x73\x00\x65\x00\x72\x00\x20\ +\x00\x61\x00\x64\x00\x69\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\ +\x00\x64\x00\x6f\x00\x73\x00\x20\x00\xe0\x00\x73\x00\x20\x00\x68\ +\x00\x61\x00\x63\x00\x68\x00\x75\x00\x72\x00\x61\x00\x73\x00\x20\ +\x00\x70\x00\x61\x00\x64\x00\x72\x00\xe3\x00\x6f\x00\x20\x00\x64\ +\x00\x6f\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\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\x88\x00\x53\x00\ +\x65\x00\x20\x00\x65\x00\x73\x00\x74\x00\x61\x00\x20\x00\x6f\x00\ +\x70\x00\xe7\x00\xe3\x00\x6f\x00\x20\x00\x65\x00\x73\x00\x74\x00\ +\x69\x00\x76\x00\x65\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x72\x00\ +\x63\x00\x61\x00\x64\x00\x61\x00\x2c\x00\x20\x00\x75\x00\x6d\x00\ +\x61\x00\x20\x00\x67\x00\x72\x00\x61\x00\x64\x00\x65\x00\x20\x00\ +\x61\x00\x70\x00\x61\x00\x72\x00\x65\x00\x63\x00\x65\x00\x72\x00\ +\xe1\x00\x20\x00\x64\x00\x75\x00\x72\x00\x61\x00\x6e\x00\x74\x00\ +\x65\x00\x20\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x73\x00\x65\x00\ +\x6e\x00\x68\x00\x6f\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\xec\x00\x53\x00\x65\x00\x20\x00\x69\x00\x73\x00\x74\x00\x6f\ +\x00\x20\x00\x65\x00\x73\x00\x74\x00\x69\x00\x76\x00\x65\x00\x72\ +\x00\x20\x00\x6d\x00\x61\x00\x72\x00\x63\x00\x61\x00\x64\x00\x6f\ +\x00\x2c\x00\x20\x00\x66\x00\x72\x00\x65\x00\x65\x00\x63\x00\x61\ +\x00\x64\x00\x20\x00\x74\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x72\ +\x00\xe1\x00\x20\x00\x6a\x00\x75\x00\x6e\x00\x74\x00\x61\x00\x72\ +\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\ +\x00\x20\x00\x63\x00\x6f\x00\x69\x00\x6e\x00\x63\x00\x69\x00\x64\ +\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x73\x00\x20\x00\x65\x00\x6d\ +\x00\x20\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x73\x00\x2e\ +\x00\x20\x00\x43\x00\x75\x00\x69\x00\x64\x00\x61\x00\x64\x00\x6f\ +\x00\x2c\x00\x20\x00\x69\x00\x73\x00\x73\x00\x6f\x00\x20\x00\x70\ +\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x64\x00\x65\x00\x6d\x00\x6f\ +\x00\x72\x00\x61\x00\x72\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x70\ +\x00\x6f\x00\x75\x00\x63\x00\x6f\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\xc6\x00\x53\x00\x65\x00\x20\x00\x65\x00\x73\x00\ +\x73\x00\x61\x00\x20\x00\x6f\x00\x70\x00\xe7\x00\xe3\x00\x6f\x00\ +\x20\x00\x65\x00\x73\x00\x74\x00\x69\x00\x76\x00\x65\x00\x72\x00\ +\x20\x00\x6d\x00\x61\x00\x72\x00\x63\x00\x61\x00\x64\x00\x61\x00\ +\x2c\x00\x20\x00\x74\x00\x6f\x00\x64\x00\x6f\x00\x73\x00\x20\x00\ +\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x6f\x00\x73\x00\x20\x00\x71\x00\x75\x00\x65\x00\x20\x00\x63\x00\ +\x6f\x00\x6e\x00\x74\x00\xea\x00\x6d\x00\x20\x00\x66\x00\x61\x00\ +\x63\x00\x65\x00\x73\x00\x20\x00\x73\x00\x65\x00\x72\x00\xe3\x00\ +\x6f\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x61\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\ +\x6f\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x79\x00\x66\x00\x61\x00\ +\x63\x00\x65\x00\x73\x00\x20\x00\x33\x00\x64\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x51\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\ +\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x61\x6c\x6c\x20\x6f\x62\x6a\ +\x65\x63\x74\x73\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\ +\x66\x61\x63\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x65\x78\ +\x70\x6f\x72\x74\x65\x64\x20\x61\x73\x20\x33\x64\x20\x70\x6f\x6c\ +\x79\x66\x61\x63\x65\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x2c\x00\x53\ +\x00\x65\x00\x20\x00\x65\x00\x73\x00\x73\x00\x61\x00\x20\x00\x6f\ +\x00\x70\x00\xe7\x00\xe3\x00\x6f\x00\x20\x00\x65\x00\x73\x00\x74\ +\x00\x69\x00\x76\x00\x65\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x72\ +\x00\x63\x00\x61\x00\x64\x00\x61\x00\x2c\x00\x20\x00\x6f\x00\x20\ +\x00\x6d\x00\x6f\x00\x64\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x63\x00\xf3\x00\x70\x00\x69\x00\x61\x00\x20\x00\x73\x00\x65\ +\x00\x72\x00\xe1\x00\x20\x00\x6d\x00\x61\x00\x6e\x00\x74\x00\x69\ +\x00\x64\x00\x6f\x00\x20\x00\x65\x00\x6e\x00\x74\x00\x72\x00\x65\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x6f\ +\x00\x73\x00\x20\x00\x73\x00\x75\x00\x63\x00\x65\x00\x73\x00\x73\ +\x00\x69\x00\x76\x00\x6f\x00\x73\x00\x2c\x00\x20\x00\x63\x00\x61\ +\x00\x73\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\ +\x00\xe1\x00\x72\x00\x69\x00\x6f\x00\x20\x00\x6f\x00\x73\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x73\ +\x00\x20\x00\x73\x00\x65\x00\x6d\x00\x70\x00\x72\x00\x65\x00\x20\ +\x00\x69\x00\x6e\x00\x69\x00\x63\x00\x69\x00\x61\x00\x72\x00\xe3\ +\x00\x6f\x00\x20\x00\x65\x00\x6d\x00\x20\x00\x6d\x00\x6f\x00\x64\ +\x00\x6f\x00\x20\x00\x22\x00\x73\x00\x65\x00\x6d\x00\x20\x00\x63\ +\x00\xf3\x00\x70\x00\x69\x00\x61\x00\x22\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x6f\x49\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\ +\x68\x65\x63\x6b\x65\x64\x2c\x20\x63\x6f\x70\x79\x20\x6d\x6f\x64\ +\x65\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x6b\x65\x70\x74\x20\x61\ +\x63\x72\x6f\x73\x73\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x2c\x20\x6f\ +\x74\x68\x65\x72\x77\x69\x73\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\ +\x73\x20\x77\x69\x6c\x6c\x20\x61\x6c\x77\x61\x79\x73\x20\x73\x74\ +\x61\x72\x74\x20\x69\x6e\x20\x6e\x6f\x2d\x63\x6f\x70\x79\x20\x6d\ +\x6f\x64\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x04\x00\x53\x00\x65\x00\ +\x20\x00\x65\x00\x73\x00\x73\x00\x61\x00\x20\x00\x6f\x00\x70\x00\ +\xe7\x00\xe3\x00\x6f\x00\x20\x00\x65\x00\x73\x00\x74\x00\x69\x00\ +\x76\x00\x65\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x72\x00\x63\x00\ +\x61\x00\x64\x00\x61\x00\x2c\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x61\x00\x70\x00\x61\x00\ +\x72\x00\x65\x00\x63\x00\x65\x00\x72\x00\xe3\x00\x6f\x00\x20\x00\ +\x63\x00\x6f\x00\x6d\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x65\x00\ +\x65\x00\x6e\x00\x63\x00\x68\x00\x69\x00\x64\x00\x6f\x00\x73\x00\ +\x20\x00\x63\x00\x6f\x00\x6d\x00\x6f\x00\x20\x00\x70\x00\x61\x00\ +\x64\x00\x72\x00\xe3\x00\x6f\x00\x2e\x00\x20\x00\x43\x00\x61\x00\ +\x73\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\ +\xe1\x00\x72\x00\x69\x00\x6f\x00\x2c\x00\x20\x00\x65\x00\x6c\x00\ +\x65\x00\x73\x00\x20\x00\x73\x00\x65\x00\x72\x00\xe3\x00\x6f\x00\ +\x20\x00\x65\x00\x78\x00\x69\x00\x62\x00\x69\x00\x64\x00\x6f\x00\ +\x73\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6f\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\x46\x00\x53\x00\x65\x00\x20\x00\x65\x00\ +\x73\x00\x73\x00\x61\x00\x20\x00\x6f\x00\x70\x00\xe7\x00\xe3\x00\ +\x6f\x00\x20\x00\x65\x00\x73\x00\x74\x00\x69\x00\x76\x00\x65\x00\ +\x72\x00\x20\x00\x6d\x00\x61\x00\x72\x00\x63\x00\x61\x00\x64\x00\ +\x61\x00\x2c\x00\x20\x00\x76\x00\x6f\x00\x63\x00\xea\x00\x20\x00\ +\x73\x00\x65\x00\x6d\x00\x70\x00\x72\x00\x65\x00\x20\x00\x76\x00\ +\x61\x00\x69\x00\x20\x00\x66\x00\x61\x00\x7a\x00\x65\x00\x72\x00\ +\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x65\x00\x6d\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\ +\x20\x00\x65\x00\x78\x00\x69\x00\x73\x00\x74\x00\x65\x00\x6e\x00\ +\x74\x00\x65\x00\x73\x00\x20\x00\x64\x00\x75\x00\x72\x00\x61\x00\ +\x6e\x00\x74\x00\x65\x00\x20\x00\x6f\x00\x20\x00\x64\x00\x65\x00\ +\x73\x00\x65\x00\x6e\x00\x68\x00\x6f\x00\x2e\x00\x20\x00\x53\x00\ +\x65\x00\x20\x00\x6e\x00\xe3\x00\x6f\x00\x2c\x00\x20\x00\x6f\x00\ +\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x20\x00\x73\x00\x65\x00\ +\x72\x00\xe1\x00\x20\x00\x61\x00\x74\x00\x69\x00\x76\x00\x6f\x00\ +\x20\x00\x73\x00\x6f\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x65\x00\ +\x20\x00\x71\x00\x75\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\ +\x70\x00\x72\x00\x65\x00\x73\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\ +\x61\x00\x20\x00\x61\x00\x20\x00\x74\x00\x65\x00\x63\x00\x6c\x00\ +\x61\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\x42\ +\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x72\ +\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x63\x00\x6f\x00\x73\x00\x20\ +\x00\x71\x00\x75\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x65\ +\x00\xe7\x00\x61\x00\x6d\x00\x20\x00\x63\x00\x6f\x00\x6d\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\x24\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\ +\x00\x72\x00\x20\x00\xe1\x00\x72\x00\x65\x00\x61\x00\x73\x00\x20\ +\x00\x4f\x00\x43\x00\x41\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x49\x6d\x70\x6f\x72\x74\x20\x4f\x43\x41\x20\x61\x72\x65\x61\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x20\x00\x49\x00\x6d\x00\x70\x00\x6f\ +\x00\x72\x00\x74\x00\x61\x00\x72\x00\x20\x00\x6c\x00\x61\x00\x79\ +\x00\x6f\x00\x75\x00\x74\x00\x73\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\x28\x00\x45\x00\x73\x00\x74\x00\x69\ +\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x69\x00\x6d\ +\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\xe7\x00\xe3\x00\x6f\ +\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\x36\x00\x49\ +\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x72\x00\x20\ +\x00\x74\x00\x65\x00\x78\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x65\ +\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\xf5\ +\x00\x65\x00\x73\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\ +\x22\x00\x49\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\x00\ +\x72\x00\x2f\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x61\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x49\x6d\x70\ +\x6f\x72\x74\x2f\x45\x78\x70\x6f\x72\x74\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x32\x00\x4e\x00\xed\x00\x76\x00\x65\x00\x6c\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x70\x00\x72\x00\x65\x00\x63\x00\x69\x00\x73\ +\x00\xe3\x00\x6f\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\ +\x00\x6e\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x49\x6e\ +\x74\x65\x72\x6e\x61\x6c\x20\x70\x72\x65\x63\x69\x73\x69\x6f\x6e\ +\x20\x6c\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\x00\x4a\ +\x00\x75\x00\x6e\x00\x74\x00\x61\x00\x72\x00\x20\x00\x61\x00\x20\ +\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\ +\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x4a\x6f\x69\x6e\ +\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x2a\x00\x45\x00\x73\x00\x71\x00\x75\x00\x65\x00\x72\x00\x64\x00\ +\x61\x00\x20\x00\x28\x00\x70\x00\x61\x00\x64\x00\x72\x00\xe3\x00\ +\x6f\x00\x20\x00\x49\x00\x53\x00\x4f\x00\x29\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x13\x4c\x65\x66\x74\x20\x28\x49\x53\x4f\x20\x73\ +\x74\x61\x6e\x64\x61\x72\x64\x29\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2c\ +\x00\x4c\x00\x69\x00\x6e\x00\x68\x00\x61\x00\x73\x00\x20\x00\x70\ +\x00\x72\x00\x69\x00\x6e\x00\x63\x00\x69\x00\x70\x00\x61\x00\x69\ +\x00\x73\x00\x20\x00\x63\x00\x61\x00\x64\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x10\x4d\x61\x69\x6e\x20\x6c\x69\x6e\x65\x73\ +\x20\x65\x76\x65\x72\x79\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x01\x12\x00\x41\ +\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x68\x00\x61\x00\x73\ +\x00\x20\x00\x70\x00\x72\x00\x69\x00\x6e\x00\x63\x00\x69\x00\x70\ +\x00\x61\x00\x69\x00\x73\x00\x20\x00\x73\x00\x65\x00\x72\x00\xe3\ +\x00\x6f\x00\x20\x00\x72\x00\x65\x00\x70\x00\x72\x00\x65\x00\x73\ +\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x64\x00\x61\x00\x73\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x6e\x00\x65\x00\x69\ +\x00\x72\x00\x61\x00\x20\x00\x6d\x00\x61\x00\x69\x00\x73\x00\x20\ +\x00\x64\x00\x65\x00\x73\x00\x74\x00\x61\x00\x63\x00\x61\x00\x64\ +\x00\x61\x00\x2e\x00\x20\x00\x45\x00\x73\x00\x70\x00\x65\x00\x63\ +\x00\x69\x00\x66\x00\x69\x00\x71\x00\x75\x00\x65\x00\x20\x00\x61\ +\x00\x71\x00\x75\x00\x69\x00\x20\x00\x71\x00\x75\x00\x61\x00\x6e\ +\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x71\x00\x75\x00\x61\x00\x64\ +\x00\x72\x00\x61\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x64\x00\x65\ +\x00\x73\x00\x65\x00\x6a\x00\x61\x00\x20\x00\x65\x00\x6e\x00\x74\ +\x00\x72\x00\x65\x00\x20\x00\x61\x00\x73\x00\x20\x00\x6c\x00\x69\ +\x00\x6e\x00\x68\x00\x61\x00\x73\x00\x20\x00\x70\x00\x72\x00\x69\ +\x00\x6e\x00\x63\x00\x69\x00\x70\x00\x61\x00\x69\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\x32\x00\x53\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x53\x00\x70\x00\ +\x6c\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x6d\x00\xe1\x00\x78\x00\ +\x69\x00\x6d\x00\x6f\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\x00\x4e\x00\x65\x00\x6e\x00\ +\x68\x00\x75\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\x28\x00\x4e\x00\x65\x00\ +\x6e\x00\x68\x00\x75\x00\x6d\x00\x20\x00\x28\x00\x6d\x00\x61\x00\ +\x69\x00\x73\x00\x20\x00\x72\x00\xe1\x00\x70\x00\x69\x00\x64\x00\ +\x6f\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\x24\x00\x4e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x6c\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x2c\x00\x20\x00\x64\x00\ +\x65\x00\x70\x00\x6f\x00\x69\x00\x73\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x61\x00\x72\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x2c\x00\ +\x20\x00\x61\x00\x73\x00\x20\x00\x63\x00\xf3\x00\x70\x00\x69\x00\ +\x61\x00\x73\x00\x20\x00\x73\x00\xe3\x00\x6f\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\ +\x64\x00\x61\x00\x73\x00\x2e\x00\x20\x00\x53\x00\x65\x00\x20\x00\ +\x65\x00\x73\x00\x74\x00\x61\x00\x20\x00\x6f\x00\x70\x00\xe7\x00\ +\xe3\x00\x6f\x00\x20\x00\x65\x00\x73\x00\x74\x00\x69\x00\x76\x00\ +\x65\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x72\x00\x63\x00\x61\x00\ +\x64\x00\x61\x00\x2c\x00\x20\x00\x65\x00\x6d\x00\x20\x00\x76\x00\ +\x65\x00\x7a\x00\x20\x00\x64\x00\x69\x00\x73\x00\x73\x00\x6f\x00\ +\x2c\x00\x20\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x74\x00\x6f\x00\x73\x00\x2d\x00\x62\x00\x61\x00\x73\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x72\x00\xe1\x00\x20\x00\x73\x00\ +\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\ +\x64\x00\x6f\x00\x73\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x7f\x4e\x6f\x72\x6d\x61\x6c\x6c\x79\x2c\x20\x61\x66\x74\x65\x72\ +\x20\x63\x6f\x70\x79\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x2c\x20\x74\x68\x65\x20\x63\x6f\x70\x69\x65\x73\x20\x67\x65\x74\ +\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x2e\x20\x49\x66\x20\x74\x68\ +\x69\x73\x20\x6f\x70\x74\x69\x6f\x6e\x20\x69\x73\x20\x63\x68\x65\ +\x63\x6b\x65\x64\x2c\x20\x74\x68\x65\x20\x62\x61\x73\x65\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\ +\x65\x6c\x65\x63\x74\x65\x64\x20\x69\x6e\x73\x74\x65\x61\x64\x2e\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x4f\x00\x70\x00\xe7\x00\xf5\ +\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x66\x00\x6f\ +\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x6f\x00\x20\x00\x4f\x00\x43\ +\x00\x41\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x4f\x43\x41\x20\ +\x66\x6f\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x44\x00\x43\x00\x6f\x00\x72\x00\x20\x00\x65\ +\x00\x20\x00\x65\x00\x73\x00\x70\x00\x65\x00\x73\x00\x73\x00\x75\ +\x00\x72\x00\x61\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x69\ +\x00\x6e\x00\x68\x00\x61\x00\x20\x00\x6f\x00\x72\x00\x69\x00\x67\ +\x00\x69\x00\x6e\x00\x61\x00\x69\x00\x73\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1c\x4f\x72\x69\x67\x69\x6e\x61\x6c\x20\x63\x6f\x6c\ +\x6f\x72\x20\x61\x6e\x64\x20\x6c\x69\x6e\x65\x77\x69\x64\x74\x68\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x44\x00\x69\x00\x72\x00\x65\ +\x00\x69\x00\x74\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x52\x69\x67\x68\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x2a\x00\x4f\x00\ +\x70\x00\xe7\x00\xf5\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x6f\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\x00\x53\x00\x61\x00\ +\x6c\x00\x76\x00\x61\x00\x72\x00\x20\x00\x61\x00\x20\x00\x63\x00\ +\x6f\x00\x72\x00\x20\x00\x65\x00\x20\x00\x65\x00\x73\x00\x70\x00\ +\x65\x00\x73\x00\x73\x00\x75\x00\x72\x00\x61\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x68\x00\x61\x00\x20\x00\ +\x61\x00\x74\x00\x75\x00\x61\x00\x6c\x00\x20\x00\x65\x00\x6e\x00\ +\x74\x00\x72\x00\x65\x00\x20\x00\x73\x00\x65\x00\x73\x00\x73\x00\ +\xf5\x00\x65\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\x4e\x00\x53\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x20\x00\x61\x00\ +\x70\x00\xf3\x00\x73\x00\x20\x00\x61\x00\x20\x00\x63\x00\xf3\x00\ +\x70\x00\x69\x00\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\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\x16\x00\x43\x00\ +\x6f\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x73\x00\x6e\x00\ +\x61\x00\x70\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\x22\x00\x49\x00\x6e\x00\x74\x00\ +\x65\x00\x72\x00\x76\x00\x61\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\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\ +\x42\x00\x41\x00\x20\x00\x74\x00\x65\x00\x63\x00\x6c\x00\x61\x00\ +\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\ +\x61\x00\x64\x00\x6f\x00\x72\x00\x61\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x72\x00\x65\x00\x73\x00\x74\x00\x72\x00\x69\x00\xe7\x00\ +\xe3\x00\x6f\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\x30\x00\x41\x00\x20\x00\x74\x00\x65\x00\x63\x00\x6c\x00\x61\ +\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\ +\x00\x61\x00\x64\x00\x6f\x00\x72\x00\x61\x00\x20\x00\x61\x00\x6c\ +\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x14\x54\x68\x65\x20\ +\x61\x6c\x74\x20\x6d\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\xa4\x00\x4f\x00\x20\x00\x61\x00\x72\ +\x00\x71\x00\x75\x00\x69\x00\x76\x00\x6f\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x6d\x00\x61\x00\x70\x00\x65\x00\x61\x00\x6d\x00\x65\ +\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\ +\x00\x6f\x00\x72\x00\x65\x00\x73\x00\x20\x00\x70\x00\x61\x00\x72\ +\x00\x61\x00\x20\x00\x74\x00\x72\x00\x61\x00\x64\x00\x75\x00\x7a\ +\x00\x69\x00\x72\x00\x20\x00\x61\x00\x73\x00\x20\x00\x63\x00\x6f\ +\x00\x72\x00\x65\x00\x73\x00\x20\x00\x64\x00\x78\x00\x66\x00\x20\ +\x00\x65\x00\x6d\x00\x20\x00\x65\x00\x73\x00\x70\x00\x65\x00\x73\ +\x00\x73\x00\x75\x00\x72\x00\x61\x00\x73\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x68\x00\x61\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x41\x54\x68\x65\x20\x63\x6f\x6c\x6f\x72\x20\ +\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x20\x66\x6f\x72\ +\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x64\x78\x66\ +\x20\x63\x6f\x6c\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\x6e\ +\x65\x77\x69\x64\x74\x68\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x78\x00\ +\x4f\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x6c\x00\x6f\x00\ +\x20\x00\x70\x00\x61\x00\x64\x00\x72\x00\xe3\x00\x6f\x00\x20\x00\ +\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x75\x00\x73\x00\x61\x00\ +\x72\x00\x20\x00\x61\x00\x6f\x00\x20\x00\x63\x00\x72\x00\x69\x00\ +\x61\x00\x72\x00\x20\x00\x75\x00\x6d\x00\x61\x00\x20\x00\x6e\x00\ +\x6f\x00\x76\x00\x61\x00\x20\x00\x66\x00\x6f\x00\x6c\x00\x68\x00\ +\x61\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\x00\x65\x00\x73\x00\ +\x65\x00\x6e\x00\x68\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x3d\x54\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x6d\ +\x70\x6c\x61\x74\x65\x20\x74\x6f\x20\x75\x73\x65\x20\x77\x68\x65\ +\x6e\x20\x63\x72\x65\x61\x74\x69\x6e\x67\x20\x61\x20\x6e\x65\x77\ +\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x73\x68\x65\x65\x74\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x88\x00\x4f\x00\x20\x00\x6e\x00\xfa\x00\x6d\ +\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\ +\x00\x61\x00\x73\x00\x61\x00\x73\x00\x20\x00\x64\x00\x65\x00\x63\ +\x00\x69\x00\x6d\x00\x61\x00\x69\x00\x73\x00\x20\x00\x65\x00\x6d\ +\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x72\x00\x61\x00\xe7\x00\xf5\ +\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\ +\x00\x6e\x00\x61\x00\x73\x00\x20\x00\x28\x00\x70\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\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\x86\x00\x4f\x00\ +\x20\x00\x72\x00\x61\x00\x69\x00\x6f\x00\x20\x00\x61\x00\x20\x00\ +\x75\x00\x73\x00\x61\x00\x72\x00\x20\x00\x6e\x00\x6f\x00\x73\x00\ +\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x73\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\x00\x2e\x00\ +\x20\x00\x43\x00\x6f\x00\x6c\x00\x6f\x00\x71\x00\x75\x00\x65\x00\ +\x20\x00\x30\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\ +\x64\x00\x69\x00\x73\x00\x74\x00\xe2\x00\x6e\x00\x63\x00\x69\x00\ +\x61\x00\x20\x00\x69\x00\x6e\x00\x66\x00\x69\x00\x6e\x00\x69\x00\ +\x74\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4e\x54\x68\x65\ +\x20\x72\x61\x64\x69\x75\x73\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\ +\x70\x69\x6e\x67\x20\x74\x6f\x20\x73\x70\x65\x63\x69\x61\x6c\x20\ +\x70\x6f\x69\x6e\x74\x73\x2e\x20\x53\x65\x74\x20\x74\x6f\x20\x30\ +\x20\x66\x6f\x72\x20\x6e\x6f\x20\x64\x69\x73\x74\x61\x6e\x63\x65\ +\x20\x28\x69\x6e\x66\x69\x6e\x69\x74\x65\x29\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x38\x00\x41\x00\x20\x00\x74\x00\x65\x00\x63\x00\x6c\x00\ +\x61\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x66\x00\x69\x00\ +\x63\x00\x61\x00\x64\x00\x6f\x00\x72\x00\x61\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x73\x00\x6e\x00\x61\x00\x70\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\x4e\x00\x4f\x00\x20\x00\x65\x00\x73\x00\x70\x00\x61\x00\xe7\ +\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x65\ +\x00\x6e\x00\x74\x00\x72\x00\x65\x00\x20\x00\x63\x00\x61\x00\x64\ +\x00\x61\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x68\x00\x61\x00\x20\ +\x00\x64\x00\x61\x00\x20\x00\x67\x00\x72\x00\x61\x00\x64\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\x02\x28\x00\x45\x00\x73\x00\x74\x00\x65\x00\x20\x00\xe9\ +\x00\x20\x00\x6f\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x6f\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\ +\x00\x66\x00\x61\x00\x63\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x20\ +\x00\x75\x00\x73\x00\x75\x00\xe1\x00\x72\x00\x69\x00\x6f\x00\x20\ +\x00\x65\x00\x6d\x00\x20\x00\x71\x00\x75\x00\x65\x00\x20\x00\x6f\ +\x00\x20\x00\x6d\x00\xf3\x00\x64\x00\x75\x00\x6c\x00\x6f\x00\x20\ +\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x69\x00\x72\ +\x00\xe1\x00\x20\x00\x74\x00\x72\x00\x61\x00\x62\x00\x61\x00\x6c\ +\x00\x68\x00\x61\x00\x72\x00\x3a\x00\x20\x00\x4d\x00\x6f\x00\x64\ +\x00\x6f\x00\x20\x00\x54\x00\x6f\x00\x6f\x00\x6c\x00\x62\x00\x61\ +\x00\x72\x00\x20\x00\x76\x00\x61\x00\x69\x00\x20\x00\x63\x00\x6f\ +\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x72\x00\x20\x00\x74\x00\x6f\ +\x00\x64\x00\x61\x00\x73\x00\x20\x00\x61\x00\x73\x00\x20\x00\x63\ +\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\x00\x61\ +\x00\xe7\x00\xf5\x00\x65\x00\x73\x00\x20\x00\x64\x00\x6f\x00\x20\ +\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x00\x20\x00\x65\x00\x6d\ +\x00\x20\x00\x75\x00\x6d\x00\x61\x00\x20\x00\x62\x00\x61\x00\x72\ +\x00\x72\x00\x61\x00\x20\x00\x64\x00\x65\x00\x20\x00\x66\x00\x65\ +\x00\x72\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x61\ +\x00\x73\x00\x20\x00\x65\x00\x6d\x00\x20\x00\x73\x00\x65\x00\x70\ +\x00\x61\x00\x72\x00\x61\x00\x64\x00\x61\x00\x2c\x00\x20\x00\x65\ +\x00\x6e\x00\x71\x00\x75\x00\x61\x00\x6e\x00\x74\x00\x6f\x00\x20\ +\x00\x6f\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\x6f\x00\x20\x00\x54\ +\x00\x61\x00\x73\x00\x6b\x00\x76\x00\x69\x00\x65\x00\x77\x00\x20\ +\x00\x69\x00\x72\x00\xe1\x00\x20\x00\x75\x00\x74\x00\x69\x00\x6c\ +\x00\x69\x00\x7a\x00\x61\x00\x72\x00\x20\x00\x6f\x00\x20\x00\x73\ +\x00\x69\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x61\x00\x20\x00\x54\ +\x00\x61\x00\x73\x00\x6b\x00\x76\x00\x69\x00\x65\x00\x77\x00\x20\ +\x00\x64\x00\x6f\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\ +\x00\x41\x00\x44\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\ +\x00\x74\x00\x6f\x00\x64\x00\x61\x00\x20\x00\x61\x00\x20\x00\x69\ +\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x61\x00\xe7\x00\xe3\x00\x6f\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x20\x00\x6f\x00\x20\x00\x75\ +\x00\x73\x00\x75\x00\xe1\x00\x72\x00\x69\x00\x6f\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\x84\x00\x45\x00\ +\x73\x00\x74\x00\x61\x00\x20\x00\xe9\x00\x20\x00\x61\x00\x20\x00\ +\x63\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x61\x00\x64\x00\x72\x00\ +\xe3\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\ +\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\ +\x64\x00\x65\x00\x73\x00\x65\x00\x6e\x00\x68\x00\x61\x00\x64\x00\ +\x6f\x00\x73\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x6d\x00\x6f\x00\ +\x64\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\ +\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\xe7\x00\xe3\x00\x6f\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\xe4\ +\x00\x45\x00\x73\x00\x74\x00\x65\x00\x20\x00\xe9\x00\x20\x00\x6f\ +\x00\x20\x00\x6e\x00\x6f\x00\x6d\x00\x65\x00\x20\x00\x64\x00\x61\ +\x00\x20\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x70\ +\x00\x61\x00\x64\x00\x72\x00\xe3\x00\x6f\x00\x20\x00\x70\x00\x61\ +\x00\x72\x00\x61\x00\x20\x00\x74\x00\x6f\x00\x64\x00\x6f\x00\x73\ +\x00\x20\x00\x6f\x00\x73\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\ +\x00\x6f\x00\x73\x00\x20\x00\x65\x00\x20\x00\x64\x00\x69\x00\x6d\ +\x00\x65\x00\x6e\x00\x73\x00\xf5\x00\x65\x00\x73\x00\x2e\x00\x20\ +\x00\x45\x00\x6c\x00\x65\x00\x20\x00\x70\x00\x6f\x00\x64\x00\x65\ +\x00\x20\x00\x73\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6d\x00\x20\ +\x00\x6e\x00\x6f\x00\x6d\x00\x65\x00\x20\x00\x64\x00\x65\x00\x20\ +\x00\x66\x00\x6f\x00\x6e\x00\x74\x00\x65\x00\x2c\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x6f\x00\x20\x00\x22\x00\x41\x00\x72\x00\x69\ +\x00\x61\x00\x6c\x00\x22\x00\x2c\x00\x20\x00\x75\x00\x6d\x00\x20\ +\x00\x65\x00\x73\x00\x74\x00\x69\x00\x6c\x00\x6f\x00\x20\x00\x70\ +\x00\x61\x00\x64\x00\x72\x00\xe3\x00\x6f\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x6f\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\x6f\x00\x75\x00\x20\x00\x22\x00\x6d\ +\x00\x6f\x00\x6e\x00\x6f\x00\x22\x00\x2c\x00\x20\x00\x75\x00\x6d\ +\x00\x61\x00\x20\x00\x66\x00\x61\x00\x6d\x00\xed\x00\x6c\x00\x69\ +\x00\x61\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6f\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\x6f\x00\x75\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x6e\x00\x6f\ +\x00\x6d\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x20\x00\x75\ +\x00\x6d\x00\x20\x00\x65\x00\x73\x00\x74\x00\x69\x00\x6c\x00\x6f\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6f\x00\x22\x00\x41\x00\x72\ +\x00\x69\x00\x61\x00\x6c\x00\x3a\x00\x20\x00\x42\x00\x6f\x00\x6c\ +\x00\x64\x00\x22\x08\x00\x00\x00\x00\x06\x00\x00\x00\xf2\x54\x68\ +\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\ +\x74\x20\x66\x6f\x6e\x74\x20\x6e\x61\x6d\x65\x20\x66\x6f\x72\x20\ +\x61\x6c\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\x78\x00\x45\x00\x73\x00\x74\x00\x65\ +\x00\x20\x00\xe9\x00\x20\x00\x6f\x00\x20\x00\x6e\x00\x6f\x00\x6d\ +\x00\x65\x00\x20\x00\x70\x00\x61\x00\x64\x00\x72\x00\xe3\x00\x6f\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x6f\x00\x20\ +\x00\x67\x00\x72\x00\x75\x00\x70\x00\x6f\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x72\ +\x00\x69\x00\x61\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\ +\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\xe7\x00\xe3\x00\x6f\ +\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\x96\x00\x45\x00\x73\x00\x74\ +\x00\x65\x00\x20\x00\xe9\x00\x20\x00\x6f\x00\x20\x00\x6d\x00\xe9\ +\x00\x74\x00\x6f\x00\x64\x00\x6f\x00\x20\x00\x65\x00\x73\x00\x63\ +\x00\x6f\x00\x6c\x00\x68\x00\x69\x00\x64\x00\x6f\x00\x20\x00\x70\ +\x00\x61\x00\x72\x00\x61\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\ +\x00\x72\x00\x74\x00\x61\x00\x72\x00\x20\x00\x61\x00\x20\x00\x63\ +\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x53\ +\x00\x56\x00\x47\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\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\xe6\x00\x45\x00\x73\x00\x74\x00\ +\x65\x00\x20\x00\xe9\x00\x20\x00\x6f\x00\x20\x00\x6d\x00\xe9\x00\ +\x74\x00\x6f\x00\x64\x00\x6f\x00\x20\x00\x65\x00\x73\x00\x63\x00\ +\x6f\x00\x6c\x00\x68\x00\x69\x00\x20\x00\x70\x00\x61\x00\x72\x00\ +\x61\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\ +\x61\x00\x72\x00\x20\x00\x6f\x00\x75\x00\x20\x00\x74\x00\x72\x00\ +\x61\x00\x64\x00\x75\x00\x7a\x00\x69\x00\x72\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x44\x00\ +\x58\x00\x46\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x46\x00\x72\x00\ +\x65\x00\x65\x00\x43\x00\x41\x00\x44\x00\x2e\x00\x20\x00\x20\x00\ +\x53\x00\x65\x00\x20\x00\x65\x00\x73\x00\x63\x00\x6f\x00\x6c\x00\ +\x68\x00\x65\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x70\x00\x65\x00\ +\x61\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x63\x00\x6f\x00\x72\x00\x65\x00\x73\x00\x2c\x00\ +\x20\x00\x76\x00\x6f\x00\x63\x00\xea\x00\x20\x00\x64\x00\x65\x00\ +\x76\x00\x65\x00\x20\x00\x65\x00\x73\x00\x63\x00\x6f\x00\x6c\x00\ +\x68\x00\x65\x00\x72\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x61\x00\ +\x72\x00\x71\x00\x75\x00\x69\x00\x76\x00\x6f\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x6d\x00\x61\x00\x70\x00\x65\x00\x61\x00\x6d\x00\ +\x65\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x63\x00\x6f\x00\x72\x00\x65\x00\x73\x00\x20\x00\x71\x00\x75\x00\ +\x65\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\xe9\x00\x6d\x00\ +\x20\x00\x75\x00\x6d\x00\x61\x00\x20\x00\x74\x00\x61\x00\x62\x00\ +\x65\x00\x6c\x00\x61\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\ +\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x73\x00\xe3\x00\x6f\x00\ +\x20\x00\x71\x00\x75\x00\x65\x00\x20\x00\x69\x00\x72\x00\xe1\x00\ +\x20\x00\x63\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x72\x00\x65\x00\x73\x00\ +\x20\x00\x65\x00\x6d\x00\x20\x00\x65\x00\x73\x00\x70\x00\x65\x00\ +\x73\x00\x73\x00\x75\x00\x72\x00\x61\x00\x73\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x68\x00\x61\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\xe2\x00\x45\x00\x73\x00\x74\x00\x61\x00\x20\x00\xe9\ +\x00\x20\x00\x61\x00\x20\x00\x6f\x00\x72\x00\x69\x00\x65\x00\x6e\ +\x00\x74\x00\x61\x00\xe7\x00\xe3\x00\x6f\x00\x20\x00\x64\x00\x6f\ +\x00\x73\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x6f\x00\x73\ +\x00\x20\x00\x64\x00\x61\x00\x73\x00\x20\x00\x64\x00\x69\x00\x6d\ +\x00\x65\x00\x6e\x00\x73\x00\xf5\x00\x65\x00\x73\x00\x20\x00\x71\ +\x00\x75\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x65\x00\x73\ +\x00\x73\x00\x61\x00\x73\x00\x20\x00\x73\x00\xe3\x00\x6f\x00\x20\ +\x00\x76\x00\x65\x00\x72\x00\x74\x00\x69\x00\x63\x00\x61\x00\x69\ +\x00\x73\x00\x2e\x00\x20\x00\x4f\x00\x20\x00\x70\x00\x61\x00\x64\ +\x00\x72\x00\xe3\x00\x6f\x00\x20\x00\xe9\x00\x20\x00\x65\x00\x73\ +\x00\x71\x00\x75\x00\x65\x00\x72\x00\x64\x00\x6f\x00\x2c\x00\x20\ +\x00\x71\x00\x75\x00\x65\x00\x20\x00\xe9\x00\x20\x00\x6f\x00\x20\ +\x00\x70\x00\x61\x00\x64\x00\x72\x00\xe3\x00\x6f\x00\x20\x00\x49\ +\x00\x53\x00\x4f\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7e\ +\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x6f\x72\x69\x65\ +\x6e\x74\x61\x74\x69\x6f\x6e\x20\x6f\x66\x20\x74\x68\x65\x20\x64\ +\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x20\x74\x65\x78\x74\x73\x20\x77\ +\x68\x65\x6e\x20\x74\x68\x6f\x73\x65\x20\x64\x69\x6d\x65\x6e\x73\ +\x69\x6f\x6e\x73\x20\x61\x72\x65\x20\x76\x65\x72\x74\x69\x63\x61\ +\x6c\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x69\x73\x20\x6c\x65\ +\x66\x74\x2c\x20\x77\x68\x69\x63\x68\x20\x69\x73\x20\x74\x68\x65\ +\x20\x49\x53\x4f\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x2e\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\xfc\x00\x45\x00\x73\x00\x73\x00\x65\x00\x20\ +\x00\xe9\x00\x20\x00\x6f\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x6f\ +\x00\x72\x00\x20\x00\x75\x00\x73\x00\x61\x00\x64\x00\x6f\x00\x20\ +\x00\x70\x00\x6f\x00\x72\x00\x20\x00\x66\x00\x75\x00\x6e\x00\xe7\ +\x00\xf5\x00\x65\x00\x73\x00\x20\x00\x71\x00\x75\x00\x65\x00\x20\ +\x00\x75\x00\x73\x00\x61\x00\x6d\x00\x20\x00\x75\x00\x6d\x00\x61\ +\x00\x20\x00\x74\x00\x6f\x00\x6c\x00\x65\x00\x72\x00\xe2\x00\x6e\ +\x00\x63\x00\x69\x00\x61\x00\x2e\x00\x20\x00\x56\x00\x61\x00\x6c\ +\x00\x6f\x00\x72\x00\x65\x00\x73\x00\x20\x00\x63\x00\x6f\x00\x6d\ +\x00\x20\x00\x64\x00\x69\x00\x66\x00\x65\x00\x72\x00\x65\x00\x6e\ +\x00\xe7\x00\x61\x00\x73\x00\x20\x00\x61\x00\x62\x00\x61\x00\x69\ +\x00\x78\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x73\x00\x73\x00\x65\ +\x00\x20\x00\x76\x00\x61\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\x73\ +\x00\x65\x00\x72\x00\xe3\x00\x6f\x00\x20\x00\x74\x00\x72\x00\x61\ +\x00\x74\x00\x61\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x6f\x00\x20\x00\x69\x00\x67\x00\x75\x00\x61\x00\x6c\ +\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7b\x54\x68\x69\x73\ +\x20\x69\x73\x20\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\x75\x73\ +\x65\x64\x20\x62\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x73\x20\ +\x74\x68\x61\x74\x20\x75\x73\x65\x20\x61\x20\x74\x6f\x6c\x65\x72\ +\x61\x6e\x63\x65\x2e\x0a\x56\x61\x6c\x75\x65\x73\x20\x77\x69\x74\ +\x68\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x63\x65\x73\x20\x62\x65\ +\x6c\x6f\x77\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\x20\x77\ +\x69\x6c\x6c\x20\x62\x65\x20\x74\x72\x65\x61\x74\x65\x64\x20\x61\ +\x73\x20\x73\x61\x6d\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\ +\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\ +\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\ +\x54\x00\x6f\x00\x6c\x00\x65\x00\x72\x00\xe2\x00\x6e\x00\x63\x00\ +\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x09\x54\x6f\x6c\ +\x65\x72\x61\x6e\x63\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\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\x48\x00\x55\x00\x73\x00\x61\x00\x72\x00\x20\x00\ +\x63\x00\x6f\x00\x72\x00\x20\x00\x65\x00\x20\x00\x65\x00\x73\x00\ +\x70\x00\x65\x00\x73\x00\x73\x00\x75\x00\x72\x00\x61\x00\x20\x00\ +\x64\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x68\x00\x61\x00\ +\x20\x00\x70\x00\x61\x00\x64\x00\x72\x00\xe3\x00\x6f\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\x18\x00\x55\ +\x00\x73\x00\x61\x00\x72\x00\x20\x00\x61\x00\x20\x00\x67\x00\x72\ +\x00\x61\x00\x64\x00\x65\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\x56\ +\x00\x4f\x00\x72\x00\x69\x00\x65\x00\x6e\x00\x74\x00\x61\x00\xe7\ +\x00\xe3\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x74\x00\x65\ +\x00\x78\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x61\x00\x73\x00\x20\ +\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\xf5\x00\x65\ +\x00\x73\x00\x20\x00\x76\x00\x65\x00\x72\x00\x74\x00\x69\x00\x63\ +\x00\x61\x00\x69\x00\x73\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\x41\x00\x6f\ +\x00\x20\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x61\ +\x00\x72\x00\x20\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\x00\x65\ +\x00\x73\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x44\ +\x00\x58\x00\x46\x00\x2c\x00\x20\x00\x65\x00\x6c\x00\x61\x00\x73\ +\x00\x20\x00\x73\x00\xe3\x00\x6f\x00\x20\x00\x74\x00\x72\x00\x61\ +\x00\x6e\x00\x73\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x64\ +\x00\x61\x00\x73\x00\x20\x00\x65\x00\x6d\x00\x20\x00\x70\x00\x6f\ +\x00\x6c\x00\x69\x00\x6c\x00\x69\x00\x6e\x00\x68\x00\x61\x00\x73\ +\x00\x2e\x00\x20\x00\x45\x00\x73\x00\x73\x00\x65\x00\x20\x00\x76\ +\x00\x61\x00\x6c\x00\x6f\x00\x72\x00\x20\x00\xe9\x00\x20\x00\x6f\ +\x00\x20\x00\x74\x00\x61\x00\x6d\x00\x61\x00\x6e\x00\x68\x00\x6f\ +\x00\x20\x00\x6d\x00\xe1\x00\x78\x00\x69\x00\x6d\x00\x6f\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x63\x00\x61\x00\x64\x00\x61\x00\x20\ +\x00\x75\x00\x6d\x00\x20\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x73\ +\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x73\ +\x00\x20\x00\x64\x00\x61\x00\x20\x00\x70\x00\x6f\x00\x6c\x00\x69\ +\x00\x6c\x00\x69\x00\x6e\x00\x68\x00\x61\x00\x2e\x00\x20\x00\x53\ +\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x20\x00\x30\x00\x2c\ +\x00\x20\x00\x61\x00\x20\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x6e\ +\x00\x65\x00\x20\x00\x74\x00\x6f\x00\x64\x00\x61\x00\x20\x00\xe9\ +\x00\x20\x00\x74\x00\x72\x00\x61\x00\x74\x00\x61\x00\x64\x00\x61\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6f\x00\x20\x00\x75\x00\x6d\ +\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x00\x6f\x00\x20\x00\x72\x00\x65\x00\x74\x00\x6f\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\x43\x00\x69\x00\x6d\ +\x00\x61\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x08\x58\x59\ +\x20\x28\x54\x6f\x70\x29\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x58\ +\x00\x5a\x00\x20\x00\x28\x00\x46\x00\x72\x00\x65\x00\x6e\x00\x74\ +\x00\x65\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\x58\x5a\ +\x20\x28\x46\x72\x6f\x6e\x74\x29\x07\x00\x00\x00\x1d\x47\x75\x69\ +\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\ +\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x18\ +\x00\x59\x00\x5a\x00\x20\x00\x28\x00\x4c\x00\x61\x00\x74\x00\x65\ +\x00\x72\x00\x61\x00\x6c\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\xb8\x00\x4d\ +\x00\x61\x00\x72\x00\x71\x00\x75\x00\x65\x00\x20\x00\x69\x00\x73\ +\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x20\x00\x76\x00\x6f\ +\x00\x63\x00\xea\x00\x20\x00\x71\x00\x75\x00\x69\x00\x73\x00\x65\ +\x00\x72\x00\x20\x00\x75\x00\x73\x00\x61\x00\x72\x00\x20\x00\x6f\ +\x00\x20\x00\x63\x00\x6f\x00\x72\x00\x2f\x00\x65\x00\x73\x00\x70\ +\x00\x65\x00\x73\x00\x73\x00\x75\x00\x72\x00\x61\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x68\x00\x61\x00\x20\ +\x00\x64\x00\x61\x00\x20\x00\x62\x00\x61\x00\x72\x00\x72\x00\x61\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x66\x00\x65\x00\x72\x00\x72\ +\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x73\x00\x20\ +\x00\x63\x00\x6f\x00\x6d\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x64\ +\x00\x72\x00\xe3\x00\x6f\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\x4a\x00\x53\x00\x65\x00\x20\x00\x65\x00\x73\x00\x73\x00\ +\x61\x00\x20\x00\x6f\x00\x70\x00\xe7\x00\xe3\x00\x6f\x00\x20\x00\ +\x65\x00\x73\x00\x74\x00\x69\x00\x76\x00\x65\x00\x72\x00\x20\x00\ +\x6d\x00\x61\x00\x72\x00\x63\x00\x61\x00\x64\x00\x61\x00\x2c\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\ +\x20\x00\x64\x00\x61\x00\x73\x00\x20\x00\x6d\x00\x65\x00\x73\x00\ +\x6d\x00\x61\x00\x73\x00\x20\x00\x63\x00\x61\x00\x6d\x00\x61\x00\ +\x64\x00\x61\x00\x73\x00\x20\x00\x73\x00\x65\x00\x72\x00\xe3\x00\ +\x6f\x00\x20\x00\x6a\x00\x75\x00\x6e\x00\x74\x00\x61\x00\x64\x00\ +\x6f\x00\x73\x00\x20\x00\x65\x00\x6d\x00\x20\x00\x62\x00\x6c\x00\ +\x6f\x00\x63\x00\x6f\x00\x73\x00\x2c\x00\x20\x00\x74\x00\x6f\x00\ +\x72\x00\x6e\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x61\x00\ +\x20\x00\x65\x00\x78\x00\x69\x00\x62\x00\x69\x00\xe7\x00\xe3\x00\ +\x6f\x00\x20\x00\x6d\x00\x75\x00\x69\x00\x74\x00\x6f\x00\x20\x00\ +\x6d\x00\x61\x00\x69\x00\x73\x00\x20\x00\x72\x00\xe1\x00\x70\x00\ +\x69\x00\x64\x00\x61\x00\x2c\x00\x20\x00\x6d\x00\x61\x00\x73\x00\ +\x20\x00\x74\x00\x6f\x00\x72\x00\x6e\x00\x61\x00\x6e\x00\x64\x00\ +\x6f\x00\x2d\x00\x6f\x00\x73\x00\x20\x00\x6d\x00\x65\x00\x6e\x00\ +\x6f\x00\x73\x00\x20\x00\x66\x00\x61\x00\x63\x00\x69\x00\x6c\x00\ +\x6d\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x65\x00\x64\x00\ +\x69\x00\x74\x00\xe1\x00\x76\x00\x65\x00\x69\x00\x73\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\x00\x53\x00\x65\x00\x20\x00\x65\x00\x73\x00\x73\x00\x61\ +\x00\x20\x00\x6f\x00\x70\x00\xe7\x00\xe3\x00\x6f\x00\x20\x00\x65\ +\x00\x73\x00\x74\x00\x69\x00\x76\x00\x65\x00\x72\x00\x20\x00\x6d\ +\x00\x61\x00\x72\x00\x63\x00\x61\x00\x64\x00\x61\x00\x2c\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\ +\x00\x64\x00\x6f\x00\x20\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\x73\ +\x00\x65\x00\x72\x00\xe3\x00\x6f\x00\x20\x00\x69\x00\x6d\x00\x70\ +\x00\x6f\x00\x72\x00\x74\x00\x61\x00\x64\x00\x6f\x00\x73\x00\x20\ +\x00\x74\x00\x61\x00\x6d\x00\x62\x00\xe9\x00\x6d\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\x92\x00\x53\x00\x65\x00\x20\ +\x00\x65\x00\x73\x00\x74\x00\x61\x00\x20\x00\x6f\x00\x70\x00\xe7\ +\x00\xe3\x00\x6f\x00\x20\x00\x65\x00\x73\x00\x74\x00\x69\x00\x76\ +\x00\x65\x00\x72\x00\x20\x00\x64\x00\x65\x00\x73\x00\x6d\x00\x61\ +\x00\x72\x00\x63\x00\x61\x00\x64\x00\x61\x00\x2c\x00\x20\x00\x6f\ +\x00\x73\x00\x20\x00\x74\x00\x65\x00\x78\x00\x74\x00\x6f\x00\x73\ +\x00\x20\x00\x65\x00\x20\x00\x6d\x00\x74\x00\x65\x00\x78\x00\x74\ +\x00\x73\x00\x20\x00\x6e\x00\xe3\x00\x6f\x00\x20\x00\x73\x00\x65\ +\x00\x72\x00\xe3\x00\x6f\x00\x20\x00\x69\x00\x6d\x00\x70\x00\x6f\ +\x00\x72\x00\x74\x00\x61\x00\x64\x00\x6f\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x34\x69\x66\x20\x74\x68\x69\x73\x20\x69\x73\ +\x20\x75\x6e\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x65\x78\x74\ +\x73\x2f\x6d\x74\x65\x78\x74\x73\x20\x77\x6f\x6e\x27\x74\x20\x62\ +\x65\x20\x69\x6d\x70\x6f\x72\x74\x65\x64\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x04\x00\x70\x00\x78\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\ +\x70\x78\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\ +\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x73\x00\x68\x00\x69\ +\x00\x66\x00\x74\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x73\x68\ +\x69\x66\x74\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x3e\x00\x61\x00\x20\x00\ +\x63\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x61\x00\x64\x00\x72\x00\ +\xe3\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\ +\x6e\x00\x6f\x00\x76\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\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\x4a\x00\x61\x00\x20\ +\x00\x63\x00\x6f\x00\x72\x00\x20\x00\x70\x00\x61\x00\x64\x00\x72\ +\x00\xe3\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\ +\x00\x6f\x00\x73\x00\x20\x00\x73\x00\xed\x00\x6d\x00\x62\x00\x6f\ +\x00\x6c\x00\x6f\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x73\ +\x00\x6e\x00\x61\x00\x70\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\x5c\x00\x61\x00\x20\x00\x65\ +\x00\x73\x00\x70\x00\x65\x00\x73\x00\x73\x00\x75\x00\x72\x00\x61\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x68\ +\x00\x61\x00\x20\x00\x70\x00\x61\x00\x64\x00\x72\x00\xe3\x00\x6f\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x6e\x00\x6f\ +\x00\x76\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x74\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\x00\x00\x25\ +\x74\x68\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x6c\x69\x6e\x65\ +\x77\x69\x64\x74\x68\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\ +\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\ +\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x26\x00\ +\x46\x00\x65\x00\x63\x00\x68\x00\x61\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\x43\x00\ +\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x61\x00\x72\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\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\x43\x00\x6f\x00\x70\x00\x69\x00\x61\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\x12\x00\ +\x26\x00\x43\x00\x6f\x00\x6e\x00\x63\x00\x6c\x00\x75\x00\x69\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x26\x46\x69\x6e\x69\ +\x73\x68\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x12\x00\x4d\x00\x6f\x00\x64\x00\x6f\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\x12\x00\ +\x26\x00\x52\x00\x65\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x76\x00\ +\x6f\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\x00\x44\x00\x65\x00\x73\x00\x66\x00\x61\ +\x00\x7a\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\ +\x26\x55\x6e\x64\x6f\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x0e\x00\x26\x00\x4c\x00\x69\x00\x6d\x00\x70\x00\ +\x61\x00\x72\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\x14\x00\x41\x00\xe7\x00\xe3\x00\x6f\x00\x20\x00\x61\x00\x74\ +\x00\x69\x00\x76\x00\x61\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\x60\x00\x4f\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\ +\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x74\x00\x69\x00\x76\x00\x6f\ +\x00\x20\x00\x64\x00\x65\x00\x76\x00\x65\x00\x20\x00\x74\x00\x65\ +\x00\x72\x00\x20\x00\x6d\x00\x61\x00\x69\x00\x73\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x64\x00\x6f\x00\x69\x00\x73\x00\x20\x00\x70\ +\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x73\x00\x2f\x00\x6e\x00\xf3\ +\x00\x73\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\x69\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\ +\x61\x00\x72\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\ +\x73\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x74\x00\x6f\x00\x20\x00\x61\x00\x74\x00\x75\x00\x61\x00\ +\x6c\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\x62\x00\ +\x65\x00\x72\x00\x74\x00\x75\x00\x72\x00\x61\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x08\x41\x70\x65\x72\x74\x75\x72\x65\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\xc2\x00\ +\x6e\x00\x67\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x61\x00\x62\x00\x65\x00\x72\x00\x74\x00\x75\x00\x72\x00\ +\x61\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\x00\ +\x41\x00\x70\x00\x6c\x00\x69\x00\x63\x00\x61\x00\x72\x00\x20\x00\ +\x61\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\ +\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\ +\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x6f\x00\x73\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\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\x00\x41\x00\x72\x00\x63\x00\x6f\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\x68\x00\x4e\x00\xe3\x00\x6f\x00\x20\x00\ +\xe9\x00\x20\x00\x70\x00\x6f\x00\x73\x00\x73\x00\xed\x00\x76\x00\ +\x65\x00\x6c\x00\x20\x00\x67\x00\x65\x00\x72\x00\x61\x00\x72\x00\ +\x20\x00\x75\x00\x6d\x00\x20\x00\x6f\x00\x66\x00\x66\x00\x73\x00\ +\x65\x00\x74\x00\x20\x00\x64\x00\x65\x00\x73\x00\x73\x00\x65\x00\ +\x20\x00\x74\x00\x69\x00\x70\x00\x6f\x00\x20\x00\x64\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\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\x43\x00\x65\x00\x6e\x00\x74\ +\x00\x72\x00\x6f\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\x00\x41\x00\x6c\x00\x74\ +\x00\x65\x00\x72\x00\x61\x00\x72\x00\x20\x00\x65\x00\x73\x00\x74\ +\x00\x69\x00\x6c\x00\x6f\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\xd4\x00\x4d\x00\x61\ +\x00\x72\x00\x71\x00\x75\x00\x65\x00\x20\x00\x65\x00\x73\x00\x74\ +\x00\x61\x00\x20\x00\x6f\x00\x70\x00\xe7\x00\xe3\x00\x6f\x00\x20\ +\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x76\x00\x65\ +\x00\x20\x00\x61\x00\x70\x00\x61\x00\x72\x00\x65\x00\x63\x00\x65\ +\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x6f\x00\x20\x00\x63\ +\x00\x68\x00\x65\x00\x69\x00\x6f\x00\x2c\x00\x20\x00\x63\x00\x61\ +\x00\x73\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\ +\x00\xe1\x00\x72\x00\x69\x00\x6f\x00\x20\x00\x65\x00\x6c\x00\x65\ +\x00\x20\x00\x69\x00\x72\x00\xe1\x00\x20\x00\x61\x00\x70\x00\x61\ +\x00\x72\x00\x65\x00\x63\x00\x65\x00\x72\x00\x20\x00\x63\x00\x6f\ +\x00\x6d\x00\x6f\x00\x20\x00\x77\x00\x69\x00\x72\x00\x65\x00\x66\ +\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x20\x00\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\x0e\x00\x43\x00\xed\x00\x72\x00\x63\x00\x75\x00\ +\x6c\x00\x6f\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\x76\x00\x43\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x65\x00\ +\x6e\x00\x61\x00\x64\x00\x61\x00\x73\x00\x20\x00\x72\x00\x65\x00\ +\x6c\x00\x61\x00\x74\x00\x69\x00\x76\x00\x61\x00\x73\x00\x20\x00\ +\x61\x00\x6f\x00\x20\x00\xfa\x00\x6c\x00\x74\x00\x69\x00\x6d\x00\ +\x6f\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x2c\x00\ +\x20\x00\x6f\x00\x75\x00\x20\x00\x61\x00\x62\x00\x73\x00\x6f\x00\ +\x6c\x00\x75\x00\x74\x00\x61\x00\x73\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\x0a\x00\x43\x00\xf3\x00\x70\x00\ +\x69\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x43\x6f\x70\ +\x79\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x14\x00\x43\x00\x72\x00\x69\x00\x61\x00\x72\x00\x20\x00\x41\x00\ +\x72\x00\x63\x00\x6f\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\x1a\x00\x43\x00\x72\x00\x69\x00\ +\x61\x00\x72\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\ +\x69\x00\x61\x00\x72\x00\x20\x00\x43\x00\xed\x00\x72\x00\x63\x00\ +\x75\x00\x6c\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x43\ +\x72\x65\x61\x74\x65\x20\x43\x69\x72\x63\x6c\x65\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x43\x00\x72\ +\x00\x69\x00\x61\x00\x72\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\x69\x00\x61\x00\x72\x00\x20\ +\x00\x50\x00\x6f\x00\x6c\x00\xed\x00\x67\x00\x6f\x00\x6e\x00\x6f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x43\x72\x65\x61\x74\x65\ +\x20\x50\x6f\x6c\x79\x67\x6f\x6e\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x1e\x00\x43\x00\x72\x00\x69\x00\x61\ +\x00\x72\x00\x20\x00\x52\x00\x65\x00\x74\x00\xe2\x00\x6e\x00\x67\ +\x00\x75\x00\x6c\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\ +\x43\x72\x65\x61\x74\x65\x20\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\ +\x00\x43\x00\x72\x00\x69\x00\x61\x00\x72\x00\x20\x00\x74\x00\x65\ +\x00\x78\x00\x74\x00\x6f\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\ +\x69\x00\x61\x00\x72\x00\x20\x00\x61\x00\x72\x00\x61\x00\x6d\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\x1e\x00\x45\x00\x78\x00\x63\x00\x6c\x00\x75\ +\x00\x69\x00\x72\x00\x20\x00\x6d\x00\x65\x00\x64\x00\x69\x00\xe7\ +\x00\xe3\x00\x6f\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\x24\ +\x00\x4f\x00\x70\x00\xe7\x00\xf5\x00\x65\x00\x73\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x65\x00\x78\x00\x69\x00\x62\x00\x69\x00\xe7\ +\x00\xe3\x00\x6f\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0f\x44\x69\ +\x73\x70\x6c\x61\x79\x20\x6f\x70\x74\x69\x6f\x6e\x73\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x44\x00\ +\x69\x00\x73\x00\x74\x00\xe2\x00\x6e\x00\x63\x00\x69\x00\x61\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x08\x44\x69\x73\x74\x61\x6e\x63\ +\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x3a\x00\x4e\x00\xe3\x00\x6f\x00\x20\x00\x75\x00\x74\x00\x69\x00\ +\x6c\x00\x69\x00\x7a\x00\x61\x00\x72\x00\x20\x00\x70\x00\x6c\x00\ +\x61\x00\x6e\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x64\x00\ +\x65\x00\x73\x00\x65\x00\x6e\x00\x68\x00\x6f\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\x28\x00\x46\x00\x65\x00\x72\x00\x72\x00\x61\ +\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x73\x00\x20\x00\x64\ +\x00\x6f\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x20\x74\x6f\ +\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x2c\x00\x42\x00\x6f\x00\x72\x00\x64\x00\x61\x00\x73\x00\ +\x20\x00\x6e\x00\xe3\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x20\x00\ +\x63\x00\x72\x00\x75\x00\x7a\x00\x61\x00\x6d\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\ +\x00\x45\x00\x64\x00\x69\x00\x74\x00\x61\x00\x72\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x16\x00\x26\x00\x50\x00\x72\ +\x00\x65\x00\x65\x00\x6e\x00\x63\x00\x68\x00\x69\x00\x64\x00\x6f\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x07\x46\x26\x69\x6c\x6c\x65\ +\x64\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x16\x00\x43\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x66\x00\x61\x00\x63\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\x42\x00\x54\x00\x65\x00\ +\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x20\x00\x65\x00\x20\x00\ +\x66\x00\x65\x00\x63\x00\x68\x00\x61\x00\x20\x00\x61\x00\x20\x00\ +\x6c\x00\x69\x00\x6e\x00\x68\x00\x61\x00\x20\x00\x61\x00\x74\x00\ +\x75\x00\x61\x00\x6c\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\x38\x00\ +\x54\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x20\x00\ +\x61\x00\x20\x00\x6f\x00\x70\x00\x65\x00\x72\x00\x61\x00\xe7\x00\ +\xe3\x00\x6f\x00\x20\x00\x61\x00\x74\x00\x75\x00\x61\x00\x6c\x00\ +\x20\x00\x28\x00\x46\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x35\x46\x69\x6e\x69\x73\x68\x65\x73\x20\x74\x68\x65\x20\x63\x75\ +\x72\x72\x65\x6e\x74\x20\x64\x72\x61\x77\x69\x6e\x67\x20\x6f\x72\ +\x20\x65\x64\x69\x74\x69\x6e\x67\x20\x6f\x70\x65\x72\x61\x74\x69\ +\x6f\x6e\x20\x28\x46\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x20\x00\x54\x00\x61\x00\x6d\x00\x61\x00\x6e\ +\x00\x68\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x66\x00\x6f\ +\x00\x6e\x00\x74\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\x5c\x00\x45\x00\x6e\x00\x63\x00\ +\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x64\x00\x6f\x00\x20\x00\ +\x31\x00\x20\x00\x65\x00\x73\x00\x62\x00\x6f\x00\xe7\x00\x6f\x00\ +\x20\x00\x66\x00\x65\x00\x63\x00\x68\x00\x61\x00\x64\x00\x6f\x00\ +\x3a\x00\x20\x00\x63\x00\x72\x00\x69\x00\x61\x00\x6e\x00\x64\x00\ +\x6f\x00\x20\x00\x75\x00\x6d\x00\x61\x00\x20\x00\x66\x00\x61\x00\ +\x63\x00\x65\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\x52\x00\x45\x00\x6e\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\ +\x72\x00\x61\x00\x64\x00\x6f\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\x69\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x73\x00\ +\x65\x00\x75\x00\x73\x00\x20\x00\x61\x00\x72\x00\x61\x00\x6d\x00\ +\x65\x00\x73\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\x8e\x00\x31\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\ +\x00\x6f\x00\x20\x00\x6e\x00\xe3\x00\x6f\x00\x2d\x00\x70\x00\x61\ +\x00\x72\x00\x61\x00\x6d\x00\xe9\x00\x74\x00\x72\x00\x69\x00\x63\ +\x00\x6f\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\x6e\x00\x74\ +\x00\x72\x00\x61\x00\x64\x00\x6f\x00\x3a\x00\x20\x00\x74\x00\x72\ +\x00\x61\x00\x6e\x00\x73\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\ +\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x65\x00\x6c\x00\x65\x00\x20\ +\x00\x65\x00\x6d\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\ +\x00\x6f\x00\x20\x00\x44\x00\x72\x00\x61\x00\x66\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\x48\x00\x45\x00\x6e\x00\x63\x00\ +\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x64\x00\x6f\x00\x20\x00\ +\x31\x00\x20\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x20\x00\ +\x61\x00\x62\x00\x65\x00\x72\x00\x74\x00\x6f\x00\x3a\x00\x20\x00\ +\x66\x00\x65\x00\x63\x00\x68\x00\x61\x00\x6e\x00\x64\x00\x6f\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\x7a\x00\x45\x00\x6e\x00\x63\x00\ +\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x64\x00\x6f\x00\x20\x00\ +\x75\x00\x6d\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\ +\x6f\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\xe9\x00\ +\x74\x00\x72\x00\x69\x00\x63\x00\x6f\x00\x3a\x00\x20\x00\x72\x00\ +\x6f\x00\x6d\x00\x70\x00\x65\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\ +\x73\x00\x75\x00\x61\x00\x73\x00\x20\x00\x64\x00\x65\x00\x70\x00\ +\x65\x00\x6e\x00\x64\x00\xea\x00\x6e\x00\x63\x00\x69\x00\x61\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\x68\x00\x45\x00\x6e\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\ +\x00\x61\x00\x64\x00\x6f\x00\x20\x00\x31\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x73\x00\x6f\x00\x6c\ +\x00\x69\x00\x64\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x76\ +\x00\x65\x00\x6c\x00\x3a\x00\x20\x00\x63\x00\x72\x00\x69\x00\x61\ +\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x73\ +\x00\xf3\x00\x6c\x00\x69\x00\x64\x00\x6f\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\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\ +\x4c\x00\x45\x00\x6e\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\ +\x61\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x64\x00\x6f\x00\x69\x00\ +\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\ +\x73\x00\x3a\x00\x20\x00\x66\x00\x75\x00\x6e\x00\x64\x00\x69\x00\ +\x6e\x00\x64\x00\x6f\x00\x2d\x00\x6f\x00\x73\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\x4c\x00\x45\x00\x6e\x00\x63\x00\x6f\x00\x6e\x00\x74\ +\x00\x72\x00\x61\x00\x64\x00\x6f\x00\x20\x00\x32\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x3a\x00\x20\ +\x00\x73\x00\x75\x00\x62\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\ +\x00\x64\x00\x6f\x00\x2d\x00\x6c\x00\x68\x00\x65\x00\x73\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\x56\x00\x41\x00\x72\ +\x00\x61\x00\x6d\x00\x65\x00\x73\x00\x20\x00\x66\x00\x65\x00\x63\ +\x00\x68\x00\x61\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x65\x00\x6e\ +\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x64\x00\x6f\ +\x00\x73\x00\x3a\x00\x20\x00\x63\x00\x72\x00\x69\x00\x61\x00\x6e\ +\x00\x64\x00\x6f\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\x78\x00\x47\x00\ +\x72\x00\x75\x00\x70\x00\x6f\x00\x73\x00\x20\x00\x65\x00\x6e\x00\ +\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x64\x00\x6f\x00\ +\x73\x00\x3a\x00\x20\x00\x66\x00\x65\x00\x63\x00\x68\x00\x61\x00\ +\x6e\x00\x64\x00\x6f\x00\x20\x00\x63\x00\x61\x00\x64\x00\x61\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\ +\x61\x00\x62\x00\x65\x00\x72\x00\x74\x00\x6f\x00\x20\x00\x6e\x00\ +\x6f\x00\x20\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x69\x00\ +\x6f\x00\x72\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\x62\x00\x4f\x00\ +\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x63\x00\ +\x6f\x00\x6d\x00\x20\x00\x63\x00\x75\x00\x72\x00\x76\x00\x61\x00\ +\x73\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\ +\x72\x00\x61\x00\x64\x00\x6f\x00\x73\x00\x3a\x00\x20\x00\x66\x00\ +\x61\x00\x7a\x00\x65\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x75\x00\ +\x6d\x00\x61\x00\x20\x00\x66\x00\x75\x00\x73\x00\xe3\x00\x6f\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\x45\x00\x6e\x00\x63\x00\x6f\x00\x6e\ +\x00\x74\x00\x72\x00\x61\x00\x64\x00\x6f\x00\x20\x00\x61\x00\x70\ +\x00\x65\x00\x6e\x00\x61\x00\x73\x00\x20\x00\x61\x00\x72\x00\x61\ +\x00\x6d\x00\x65\x00\x73\x00\x3a\x00\x20\x00\x65\x00\x78\x00\x74\ +\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x73\ +\x00\x75\x00\x61\x00\x73\x00\x20\x00\x62\x00\x6f\x00\x72\x00\x64\ +\x00\x61\x00\x73\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\x54\x00\x56\x00\xe1\x00\x72\x00\ +\x69\x00\x61\x00\x73\x00\x20\x00\x61\x00\x72\x00\x65\x00\x73\x00\ +\x74\x00\x61\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\ +\x6e\x00\x74\x00\x72\x00\x61\x00\x64\x00\x61\x00\x73\x00\x3a\x00\ +\x20\x00\x63\x00\x72\x00\x69\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\ +\x20\x00\x61\x00\x72\x00\x61\x00\x6d\x00\x65\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\x68\x00\x56\x00\xe1\x00\x72\x00\x69\ +\x00\x61\x00\x73\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\ +\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\ +\x00\x61\x00\x64\x00\x61\x00\x73\x00\x3a\x00\x20\x00\x73\x00\x65\ +\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x20\ +\x00\x65\x00\x6d\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\x00\x73\ +\x00\x20\x00\x73\x00\x6f\x00\x6c\x00\x74\x00\x61\x00\x73\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\x74\x00\x56\ +\x00\xe1\x00\x72\x00\x69\x00\x61\x00\x73\x00\x20\x00\x61\x00\x72\ +\x00\x65\x00\x73\x00\x74\x00\x61\x00\x73\x00\x20\x00\x73\x00\x65\ +\x00\x6d\x00\x20\x00\x6c\x00\x69\x00\x67\x00\x61\x00\xe7\x00\xe3\ +\x00\x6f\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\x6e\x00\x74\ +\x00\x72\x00\x61\x00\x64\x00\x61\x00\x73\x00\x3a\x00\x20\x00\x63\ +\x00\x72\x00\x69\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x63\ +\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x6f\x00\x73\ +\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\x78\x00\ +\x56\x00\xe1\x00\x72\x00\x69\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\ +\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x6e\x00\ +\xe3\x00\x6f\x00\x20\x00\x74\x00\x72\x00\x61\x00\x74\x00\xe1\x00\ +\x76\x00\x65\x00\x69\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x63\x00\ +\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x64\x00\x6f\x00\x73\x00\ +\x3a\x00\x20\x00\x63\x00\x72\x00\x69\x00\x61\x00\x6e\x00\x64\x00\ +\x6f\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x6f\x00\x73\x00\ +\x74\x00\x6f\x00\x73\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\x82\x00\x56\x00\xe1\x00\x72\x00\x69\x00\x6f\ +\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\ +\x00\x73\x00\x20\x00\x6f\x00\x75\x00\x20\x00\x66\x00\x61\x00\x63\ +\x00\x65\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\x6e\ +\x00\x74\x00\x72\x00\x61\x00\x64\x00\x6f\x00\x73\x00\x3a\x00\x20\ +\x00\x66\x00\x61\x00\x7a\x00\x65\x00\x6e\x00\x64\x00\x6f\x00\x20\ +\x00\x75\x00\x6d\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\x65\ +\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\xe9\x00\x74\ +\x00\x72\x00\x69\x00\x63\x00\x61\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\x5a\x00\x56\x00\xe1\x00\ +\x72\x00\x69\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x65\x00\x6e\x00\x63\x00\ +\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\x00\x64\x00\x6f\x00\x73\x00\ +\x3a\x00\x20\x00\x66\x00\x61\x00\x7a\x00\x65\x00\x6e\x00\x64\x00\ +\x6f\x00\x20\x00\x75\x00\x6d\x00\x61\x00\x20\x00\x66\x00\x75\x00\ +\x73\x00\xe3\x00\x6f\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\x7c\x00\x56\x00\xe1\x00\x72\x00\x69\x00\x6f\x00\x73\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\ +\x00\x65\x00\x6e\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x61\ +\x00\x64\x00\x6f\x00\x73\x00\x3a\x00\x20\x00\x73\x00\x75\x00\x62\ +\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x64\x00\x6f\x00\x20\ +\x00\x65\x00\x6c\x00\x65\x00\x73\x00\x20\x00\x74\x00\x6f\x00\x64\ +\x00\x6f\x00\x73\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x70\x00\x72\ +\x00\x69\x00\x6d\x00\x65\x00\x69\x00\x72\x00\x6f\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\x86\x00\x53\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x72\x00\ +\x63\x00\x61\x00\x64\x00\x6f\x00\x2c\x00\x20\x00\x6f\x00\x20\x00\ +\x6f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x00\x20\x00\x73\x00\ +\x65\x00\x72\x00\xe1\x00\x20\x00\x66\x00\x65\x00\x69\x00\x74\x00\ +\x6f\x00\x20\x00\x6e\x00\x6f\x00\x20\x00\x6d\x00\x6f\x00\x64\x00\ +\x6f\x00\x20\x00\x4f\x00\x43\x00\x43\x00\x20\x00\x65\x00\x6d\x00\ +\x20\x00\x76\x00\x65\x00\x7a\x00\x20\x00\x64\x00\x6f\x00\x20\x00\ +\x6d\x00\x6f\x00\x64\x00\x6f\x00\x20\x00\x63\x00\x6c\x00\xe1\x00\ +\x73\x00\x73\x00\x69\x00\x63\x00\x6f\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\xbc\x00\x53\x00\x65\x00\x20\x00\x69\x00\x73\x00\x74\x00\x6f\ +\x00\x20\x00\x65\x00\x73\x00\x74\x00\x69\x00\x76\x00\x65\x00\x72\ +\x00\x20\x00\x6d\x00\x61\x00\x72\x00\x63\x00\x61\x00\x64\x00\x61\ +\x00\x2c\x00\x20\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x61\ +\x00\x6e\x00\x64\x00\x6f\x00\x20\x00\x6e\x00\xe3\x00\x6f\x00\x20\ +\x00\x74\x00\x65\x00\x72\x00\x6d\x00\x69\x00\x6e\x00\x61\x00\x72\ +\x00\xe1\x00\x20\x00\x61\x00\x74\x00\xe9\x00\x20\x00\x71\x00\x75\ +\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x63\x00\xea\x00\x20\x00\x70\ +\x00\x72\x00\x65\x00\x73\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x65\ +\x00\x20\x00\x6f\x00\x20\x00\xed\x00\x63\x00\x6f\x00\x6e\x00\x65\ +\x00\x20\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x20\x00\x6e\x00\x6f\ +\x00\x76\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x4c\x49\x66\x20\x63\x68\x65\x63\x6b\ +\x65\x64\x2c\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x77\x69\x6c\x6c\ +\x20\x6e\x6f\x74\x20\x66\x69\x6e\x69\x73\x68\x20\x75\x6e\x74\x69\ +\x6c\x20\x79\x6f\x75\x20\x70\x72\x65\x73\x73\x20\x74\x68\x65\x20\ +\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x62\x75\x74\x74\x6f\x6e\x20\x61\ +\x67\x61\x69\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x8e\x00\x53\x00\x65\x00\x20\x00\x65\x00\x73\x00\x74\ +\x00\x69\x00\x76\x00\x65\x00\x72\x00\x20\x00\x73\x00\x65\x00\x6c\ +\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x64\x00\x61\ +\x00\x2c\x00\x20\x00\x6f\x00\x73\x00\x20\x00\x6f\x00\x62\x00\x6a\ +\x00\x65\x00\x74\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\x00\x72\ +\x00\xe3\x00\x6f\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x69\x00\x61\ +\x00\x64\x00\x6f\x00\x73\x00\x20\x00\x65\x00\x6d\x00\x20\x00\x76\ +\x00\x65\x00\x7a\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6d\x00\x6f\ +\x00\x76\x00\x69\x00\x64\x00\x6f\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\x22\x00\x4d\x00\x61\x00\x63\x00\x72\x00\x6f\x00\x73\x00\ +\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x61\x00\x6c\x00\x61\x00\ +\x64\x00\x61\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\ +\x4f\x00\x20\x00\xfa\x00\x6c\x00\x74\x00\x69\x00\x6d\x00\x6f\x00\ +\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x66\x00\ +\x6f\x00\x69\x00\x20\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\ +\x69\x00\x64\x00\x6f\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x1c\x4c\x61\x73\x74\x20\x70\x6f\x69\x6e\x74\x20\x68\x61\x73\x20\ +\x62\x65\x65\x6e\x20\x72\x65\x6d\x6f\x76\x65\x64\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0a\x00\x4c\x00\ +\x69\x00\x6e\x00\x68\x00\x61\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x04\x4c\x69\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x18\x00\x43\x00\x6f\x00\x72\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x68\x00\x61\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\ +\x24\x00\x45\x00\x73\x00\x70\x00\x65\x00\x73\x00\x73\x00\x75\x00\ +\x72\x00\x61\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x69\x00\ +\x6e\x00\x68\x00\x61\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\x4d\x00\x6f\x00\x76\x00\ +\x65\x00\x72\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\x00\x4e\x00\x65\x00\x6e\x00\x68\x00\x75\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\x1e\x00\x4e\x00\xfa\x00\ +\x6d\x00\x65\x00\x72\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x6c\x00\x61\x00\x64\x00\x6f\x00\x73\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x0f\x4e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x73\x69\x64\ +\x65\x73\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0c\x00\x4f\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x06\x4f\x66\x66\x73\x65\x74\x07\x00\ +\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x58\x00\x4f\ +\x00\x66\x00\x66\x00\x73\x00\x65\x00\x74\x00\x20\x00\x73\x00\xf3\ +\x00\x20\x00\x66\x00\x75\x00\x6e\x00\x63\x00\x69\x00\x6f\x00\x6e\ +\x00\x61\x00\x20\x00\x65\x00\x6d\x00\x20\x00\x75\x00\x6d\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x63\x00\x61\x00\x64\x00\x61\x00\x20\x00\x76\ +\x00\x65\x00\x7a\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\x22\x00\x53\x00\x65\x00\x6c\ +\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\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\x45\x00\x73\x00\x63\x00\x6f\x00\x6c\x00\x68\x00\x61\x00\ +\x20\x00\x75\x00\x6d\x00\x61\x00\x20\x00\x66\x00\x61\x00\x63\x00\ +\x65\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x64\x00\ +\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x72\x00\x20\x00\x6f\x00\ +\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x6f\x00\x20\x00\x64\x00\ +\x65\x00\x20\x00\x74\x00\x72\x00\x61\x00\x62\x00\x61\x00\x6c\x00\ +\x68\x00\x6f\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\x28\x00\x45\x00\x73\x00\x63\x00\x6f\x00\ +\x6c\x00\x68\x00\x65\x00\x20\x00\x61\x00\x20\x00\x61\x00\x62\x00\ +\x65\x00\x72\x00\x74\x00\x75\x00\x72\x00\x61\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\x34\x00\x45\x00\x73\x00\x63\x00\x6f\ +\x00\x6c\x00\x68\x00\x61\x00\x20\x00\x75\x00\x6d\x00\x20\x00\xe2\ +\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\x64\x00\x65\ +\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\x0a\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\x32\x00\x45\x00\x73\x00\x63\x00\x6f\x00\ +\x6c\x00\x68\x00\x61\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x70\x00\ +\x6f\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x62\x00\x61\x00\x73\x00\x65\x00\x0a\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x11\x50\x69\x63\x6b\x20\x62\x61\x73\x65\x20\x70\x6f\x69\ +\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x28\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x69\ +\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x6f\x00\x20\x00\x63\x00\x65\ +\x00\x6e\x00\x74\x00\x72\x00\x6f\x00\x3a\x00\x20\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x13\x50\x69\x63\x6b\x20\x63\x65\x6e\x74\x65\ +\x72\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x28\x00\x45\x00\x73\x00\x63\x00\ +\x6f\x00\x6c\x00\x68\x00\x61\x00\x20\x00\x61\x00\x20\x00\x64\x00\ +\x69\x00\x73\x00\x74\x00\xe2\x00\x6e\x00\x63\x00\x69\x00\x61\x00\ +\x0a\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\x2e\x00\x45\x00\x73\x00\x63\ +\x00\x6f\x00\x6c\x00\x68\x00\x61\x00\x20\x00\x75\x00\x6d\x00\x20\ +\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x66\x00\x69\ +\x00\x6e\x00\x61\x00\x6c\x00\x0a\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\x32\x00\x45\x00\x73\x00\x63\x00\x6f\x00\x6c\x00\x68\x00\x61\ +\x00\x20\x00\x6f\x00\x20\x00\x70\x00\x72\x00\x69\x00\x6d\x00\x65\ +\x00\x69\x00\x72\x00\x6f\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\ +\x00\x6f\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\ +\x00\x45\x00\x73\x00\x63\x00\x6f\x00\x6c\x00\x68\x00\x61\x00\x20\ +\x00\x6f\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x20\ +\x00\x64\x00\x65\x00\x20\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x6c\ +\x00\x69\x00\x7a\x00\x61\x00\xe7\x00\xe3\x00\x6f\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\x70\x00\x45\x00\ +\x73\x00\x63\x00\x6f\x00\x6c\x00\x68\x00\x61\x00\x20\x00\x6f\x00\ +\x20\x00\x70\x00\x72\x00\xf3\x00\x78\x00\x69\x00\x6d\x00\x6f\x00\ +\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x2c\x00\x20\x00\ +\x6f\x00\x75\x00\x20\x00\x46\x00\x69\x00\x6e\x00\x61\x00\x6c\x00\ +\x69\x00\x7a\x00\x61\x00\x72\x00\x20\x00\x28\x00\x46\x00\x29\x00\ +\x20\x00\x6f\x00\x75\x00\x20\x00\x46\x00\x65\x00\x63\x00\x68\x00\ +\x61\x00\x72\x00\x20\x00\x28\x00\x43\x00\x29\x00\x3a\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x29\x50\x69\x63\x6b\x20\x6e\x65\x78\x74\ +\x20\x70\x6f\x69\x6e\x74\x2c\x20\x6f\x72\x20\x28\x46\x29\x69\x6e\ +\x69\x73\x68\x20\x6f\x72\x20\x28\x43\x29\x6c\x6f\x73\x65\x3a\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x32\ +\x00\x45\x00\x73\x00\x63\x00\x6f\x00\x6c\x00\x68\x00\x61\x00\x20\ +\x00\x6f\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x20\ +\x00\x73\x00\x65\x00\x67\x00\x75\x00\x69\x00\x6e\x00\x74\x00\x65\ +\x00\x3a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x11\x50\x69\x63\x6b\ +\x20\x6e\x65\x78\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\x07\x00\x00\ +\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x30\x00\x45\x00\ +\x73\x00\x63\x00\x6f\x00\x6c\x00\x68\x00\x61\x00\x20\x00\x6f\x00\ +\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x6f\x00\ +\x70\x00\x6f\x00\x73\x00\x74\x00\x6f\x00\x3a\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\x00\x49\x00\x6e\ +\x00\x64\x00\x69\x00\x71\x00\x75\x00\x65\x00\x20\x00\x6f\x00\x20\ +\x00\x72\x00\x61\x00\x69\x00\x6f\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\ +\x3a\x00\x45\x00\x73\x00\x63\x00\x6f\x00\x6c\x00\x68\x00\x61\x00\ +\x20\x00\x75\x00\x6d\x00\x20\x00\xe2\x00\x6e\x00\x67\x00\x75\x00\ +\x6c\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x72\x00\x6f\x00\ +\x74\x00\x61\x00\xe7\x00\xe3\x00\x6f\x00\x0a\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\x3a\x00\x45\x00\x73\x00\x63\ +\x00\x6f\x00\x6c\x00\x68\x00\x61\x00\x20\x00\x75\x00\x6d\x00\x20\ +\x00\x63\x00\x65\x00\x6e\x00\x74\x00\x72\x00\x6f\x00\x20\x00\x64\ +\x00\x65\x00\x20\x00\x72\x00\x6f\x00\x74\x00\x61\x00\xe7\x00\xe3\ +\x00\x6f\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\x00\x16\x50\x69\ +\x63\x6b\x20\x72\x6f\x74\x61\x74\x69\x6f\x6e\x20\x63\x65\x6e\x74\ +\x65\x72\x3a\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x36\x00\x45\x00\x73\x00\x63\x00\x6f\x00\x6c\x00\x68\ +\x00\x61\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x66\x00\x61\x00\x74\ +\x00\x6f\x00\x72\x00\x20\x00\x64\x00\x65\x00\x20\x00\x65\x00\x73\ +\x00\x63\x00\x61\x00\x6c\x00\x61\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\x34\x00\x49\x00\x6e\x00\x64\x00\x69\x00\ +\x71\x00\x75\x00\x65\x00\x20\x00\x6f\x00\x20\x00\xe2\x00\x6e\x00\ +\x67\x00\x75\x00\x6c\x00\x6f\x00\x20\x00\x69\x00\x6e\x00\x69\x00\ +\x63\x00\x69\x00\x61\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\x36\x00\x45\x00\x73\x00\x63\x00\x6f\x00\ +\x6c\x00\x68\x00\x61\x00\x20\x00\x6f\x00\x20\x00\x70\x00\x6f\x00\ +\x6e\x00\x74\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x70\x00\ +\x61\x00\x72\x00\x74\x00\x69\x00\x64\x00\x61\x00\x0a\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\x6e\x00\ +\x74\x00\x6f\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\x08\x00\x52\x00\x61\x00\x69\x00\x6f\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\x1e\x00\x52\x00\x61\x00\x69\ +\x00\x6f\x00\x20\x00\x64\x00\x6f\x00\x20\x00\x63\x00\xed\x00\x72\ +\x00\x63\x00\x75\x00\x6c\x00\x6f\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\x3c\x00\x52\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x72\ +\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x73\x00\x20\ +\x00\x64\x00\x6f\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\ +\x00\x6f\x00\x20\x00\x61\x00\x74\x00\x75\x00\x61\x00\x6c\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\x14\x00\x52\x00\ +\x6f\x00\x74\x00\x61\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\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\ +\x0e\x00\x45\x00\x73\x00\x63\x00\x61\x00\x6c\x00\x61\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\x20\x00\x53\ +\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\ +\x00\x72\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\x00\x6f\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x0c\x53\x65\x6c\x65\x63\x74\x20\x50\ +\x6c\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x26\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x69\ +\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x70\x00\x6c\x00\x61\ +\x00\x6e\x00\x6f\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\x26\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\ +\x6f\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x70\x00\x6c\x00\x61\x00\ +\x6e\x00\x6f\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\x26\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\ +\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x70\x00\x6c\x00\x61\x00\x6e\ +\x00\x6f\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\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\ +\x6e\x00\x65\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x72\x00\ +\x61\x00\x20\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x72\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\x52\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\ +\x00\x6e\x00\x65\x00\x20\x00\x75\x00\x6d\x00\x20\x00\x6f\x00\x62\ +\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x72\ +\x00\x61\x00\x20\x00\x66\x00\x61\x00\x7a\x00\x65\x00\x72\x00\x20\ +\x00\x75\x00\x6d\x00\x20\x00\x6f\x00\x66\x00\x66\x00\x73\x00\x65\ +\x00\x74\x00\x0a\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\x48\x00\x53\x00\x65\x00\x6c\x00\ +\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x75\x00\ +\x6d\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\ +\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x72\x00\x6f\x00\ +\x74\x00\x61\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\ +\x0a\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\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\ +\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\x00\x75\x00\x6d\x00\x20\ +\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x70\ +\x00\x61\x00\x72\x00\x61\x00\x20\x00\x65\x00\x73\x00\x63\x00\x61\ +\x00\x6c\x00\x61\x00\x72\x00\x0a\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x1a\x53\x65\x6c\x65\x63\x74\x20\x61\x6e\x20\x6f\x62\x6a\x65\ +\x63\x74\x20\x74\x6f\x20\x73\x63\x61\x6c\x65\x0a\x07\x00\x00\x00\ +\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x56\x00\x53\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\ +\x00\x75\x00\x6d\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\ +\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x64\ +\x00\x69\x00\x6d\x00\x69\x00\x6e\x00\x75\x00\x69\x00\x72\x00\x2f\ +\x00\x65\x00\x78\x00\x74\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x72\ +\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\x44\x00\x53\x00\x65\ +\x00\x6c\x00\x65\x00\x63\x00\x69\x00\x6f\x00\x6e\x00\x65\x00\x20\ +\x00\x75\x00\x6d\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x74\ +\x00\x6f\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x20\x00\x70\ +\x00\x72\x00\x6f\x00\x6d\x00\x6f\x00\xe7\x00\xe3\x00\x6f\x00\x0a\ +\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\x58\x00\x53\x00\x65\x00\x6c\x00\x65\x00\x63\ +\x00\x69\x00\x6f\x00\x6e\x00\x61\x00\x72\x00\x20\x00\x70\x00\x6c\ +\x00\x61\x00\x6e\x00\x6f\x00\x20\x00\x70\x00\x65\x00\x72\x00\x70\ +\x00\x65\x00\x6e\x00\x64\x00\x69\x00\x63\x00\x75\x00\x6c\x00\x61\ +\x00\x72\x00\x20\x00\xe0\x00\x20\x00\x76\x00\x69\x00\x73\x00\x74\ +\x00\x61\x00\x20\x00\x61\x00\x74\x00\x75\x00\x61\x00\x6c\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\x2c\x00\x41\x00\x20\x00\x53\x00\x70\x00\x6c\ +\x00\x69\x00\x6e\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x69\x00\x20\ +\x00\x66\x00\x65\x00\x63\x00\x68\x00\x61\x00\x64\x00\x61\x00\x2e\ +\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\x1c\x00\xc2\x00\x6e\x00\x67\x00\x75\x00\x6c\x00\x6f\x00\ +\x20\x00\x69\x00\x6e\x00\x69\x00\x63\x00\x69\x00\x61\x00\x6c\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x0b\x53\x74\x61\x72\x74\x20\x41\ +\x6e\x67\x6c\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x46\x00\x45\x00\x73\x00\x74\x00\x65\x00\x20\x00\x74\ +\x00\x69\x00\x70\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\x6f\ +\x00\x62\x00\x6a\x00\x65\x00\x74\x00\x6f\x00\x20\x00\x6e\x00\xe3\ +\x00\x6f\x00\x20\x00\xe9\x00\x20\x00\x65\x00\x64\x00\x69\x00\x74\ +\x00\xe1\x00\x76\x00\x65\x00\x6c\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\x4e\x00\x41\x00\x74\x00\x69\x00\x76\x00\x61\x00\ +\x72\x00\x20\x00\x2f\x00\x20\x00\x64\x00\x65\x00\x73\x00\x61\x00\ +\x74\x00\x69\x00\x76\x00\x61\x00\x72\x00\x20\x00\x6f\x00\x20\x00\ +\x6d\x00\x6f\x00\x64\x00\x6f\x00\x20\x00\x64\x00\x65\x00\x20\x00\ +\x63\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\xe7\x00\ +\xe3\x00\x6f\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\x0c\x00\x41\x00\x70\x00\x61\x00\x72\x00\x61\ +\x00\x72\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\ +\x00\x44\x00\x65\x00\x73\x00\x66\x00\x61\x00\x7a\x00\x65\x00\x72\ +\x00\x20\x00\x6f\x00\x20\x00\xfa\x00\x6c\x00\x74\x00\x69\x00\x6d\ +\x00\x6f\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\ +\x00\x74\x00\x6f\x00\x20\x00\x28\x00\x43\x00\x54\x00\x52\x00\x4c\ +\x00\x20\x00\x2b\x00\x20\x00\x5a\x00\x29\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1e\x55\x6e\x64\x6f\x20\x74\x68\x65\x20\x6c\x61\x73\ +\x74\x20\x73\x65\x67\x6d\x65\x6e\x74\x20\x28\x43\x54\x52\x4c\x2b\ +\x5a\x29\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x0a\x00\x56\x00\x69\x00\x73\x00\x74\x00\x61\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\xb2\x00\x4c\x00\x69\x00\x6d\ +\x00\x70\x00\x61\x00\x20\x00\x6f\x00\x73\x00\x20\x00\x73\x00\x65\ +\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x6f\x00\x73\x00\x20\ +\x00\x65\x00\x78\x00\x69\x00\x73\x00\x74\x00\x65\x00\x6e\x00\x74\ +\x00\x65\x00\x73\x00\x20\x00\x64\x00\x65\x00\x73\x00\x74\x00\x61\ +\x00\x20\x00\x6c\x00\x69\x00\x6e\x00\x68\x00\x61\x00\x20\x00\x65\ +\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x65\x00\xe7\x00\x61\x00\x20\ +\x00\x6e\x00\x6f\x00\x76\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x00\x65\x00\x20\x00\x61\x00\x20\x00\x70\x00\x61\x00\x72\x00\x74\ +\x00\x69\x00\x72\x00\x20\x00\x64\x00\x6f\x00\x20\x00\xfa\x00\x6c\ +\x00\x74\x00\x69\x00\x6d\x00\x6f\x00\x20\x00\x70\x00\x6f\x00\x6e\ +\x00\x74\x00\x6f\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\x28\x00\x4f\x00\x20\x00\x41\x00\x72\x00\ +\x61\x00\x6d\x00\x65\x00\x20\x00\x66\x00\x6f\x00\x69\x00\x20\x00\ +\x66\x00\x65\x00\x63\x00\x68\x00\x61\x00\x64\x00\x6f\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\x28\x00\x46\ +\x00\x65\x00\x72\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x6e\x00\x74\ +\x00\x61\x00\x73\x00\x20\x00\x64\x00\x65\x00\x20\x00\x61\x00\x72\ +\x00\x61\x00\x6d\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0a\ +\x57\x69\x72\x65\x20\x74\x6f\x6f\x6c\x73\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x02\x00\x58\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x01\x58\x07\x00\x00\x00\x05\x64\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x3c\x00\x43\x00\x6f\x00\x6f\x00\x72\x00\ +\x64\x00\x65\x00\x6e\x00\x61\x00\x64\x00\x61\x00\x20\x00\x58\x00\ +\x20\x00\x64\x00\x6f\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\ +\x6f\x00\x20\x00\x73\x00\x65\x00\x67\x00\x75\x00\x69\x00\x6e\x00\ +\x74\x00\x65\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\x3c\x00\x43\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x65\ +\x00\x6e\x00\x61\x00\x64\x00\x61\x00\x20\x00\x59\x00\x20\x00\x64\ +\x00\x6f\x00\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x20\ +\x00\x73\x00\x65\x00\x67\x00\x75\x00\x69\x00\x6e\x00\x74\x00\x65\ +\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\ +\x3c\x00\x43\x00\x6f\x00\x6f\x00\x72\x00\x64\x00\x65\x00\x6e\x00\ +\x61\x00\x64\x00\x61\x00\x20\x00\x5a\x00\x20\x00\x64\x00\x6f\x00\ +\x20\x00\x70\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x20\x00\x73\x00\ +\x65\x00\x67\x00\x75\x00\x69\x00\x6e\x00\x74\x00\x65\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\x63\x00\x6f\x00\x6d\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\ +\x20\x00\x61\x00\x74\x00\x69\x00\x76\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\x20\x00\x42\x00\x61\x00\x72\x00\x72\x00\x61\ +\x00\x20\x00\x64\x00\x65\x00\x20\x00\x63\x00\x6f\x00\x6d\x00\x61\ +\x00\x6e\x00\x64\x00\x6f\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\xac\x35\ +\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\xd4\x00\x00\x00\x59\ +\x00\x00\xa0\xa9\x00\x00\x00\x5a\x00\x00\xa1\x5e\x00\x00\x05\xd9\ +\x00\x00\xa0\x69\x00\x00\x05\xda\x00\x00\xa0\x89\x00\x00\x05\xea\ +\x00\x00\xa1\x3e\x00\x00\x07\x78\x00\x00\x6c\xc8\x00\x00\x48\x83\ +\x00\x00\x03\x35\x00\x00\x48\x83\x00\x00\x73\x16\x00\x00\x68\x34\ +\x00\x00\x67\x67\x00\x04\xa6\x79\x00\x00\x76\x53\x00\x04\xbb\x04\ +\x00\x00\x0b\xa0\x00\x04\xbb\x04\x00\x00\x7a\xbc\x00\x05\x30\x45\ +\x00\x00\x0d\xd9\x00\x05\x30\x45\x00\x00\x8d\x19\x00\x05\x46\xc5\ +\x00\x00\x0e\x02\x00\x05\x46\xc5\x00\x00\x8d\xa5\x00\x05\x56\x45\ +\x00\x00\x44\xa1\x00\x05\x56\x45\x00\x00\x8d\xd3\x00\x05\xac\xf4\ +\x00\x00\x19\x30\x00\x05\xb8\xfd\x00\x00\x9d\x6c\x00\x05\xcf\xc7\ +\x00\x00\x9e\x10\x00\x05\xe0\x85\x00\x00\x22\xb5\x00\x06\xab\x8c\ +\x00\x00\x68\xcb\x00\x10\x84\x49\x00\x00\x50\x1f\x00\x12\x05\xba\ +\x00\x00\x99\xce\x00\x16\xc6\xda\x00\x00\x81\x72\x00\x2a\xa6\x79\ +\x00\x00\x6f\x7c\x00\x2b\xc4\xaf\x00\x00\x70\x5c\x00\x2b\xe0\x65\ +\x00\x00\x70\x8b\x00\x39\xdf\x33\x00\x00\x33\x8e\x00\x3d\xa1\x19\ +\x00\x00\x74\x3c\x00\x3e\x93\x83\x00\x00\x34\xb4\x00\x48\x8f\x7c\ +\x00\x00\x25\x53\x00\x4b\x66\x35\x00\x00\x30\xba\x00\x4b\x66\x37\ +\x00\x00\x30\xfd\x00\x4b\x66\x39\x00\x00\x31\x40\x00\x4b\x87\xd4\ +\x00\x00\x79\xeb\x00\x57\x60\x54\x00\x00\x95\x8b\x00\x58\xfd\xf4\ +\x00\x00\x47\xe0\x00\x59\x98\x25\x00\x00\x14\x1e\x00\x59\x98\x25\ +\x00\x00\x96\xe9\x00\x6a\x58\x9a\x00\x00\x8f\xed\x00\x79\xef\xd4\ +\x00\x00\x6d\x00\x00\x7e\x7f\x0e\x00\x00\x63\x88\x00\x8a\x23\x95\ +\x00\x00\x28\x8d\x00\x8a\x23\x97\x00\x00\x28\xd7\x00\x8a\x23\x99\ +\x00\x00\x29\x21\x00\x91\xbc\xe9\x00\x00\x0e\x35\x00\xa6\x37\x3f\ +\x00\x00\x27\x72\x00\xaa\x80\x25\x00\x00\x79\x1b\x00\xc6\xe3\x6e\ +\x00\x00\x24\x15\x00\xcb\xa8\x14\x00\x00\x6b\xe6\x00\xfc\x00\xca\ +\x00\x00\x88\x9e\x01\x21\xd6\x39\x00\x00\x4f\x18\x01\x22\xb4\xf9\ +\x00\x00\x14\x4d\x01\x2f\x8e\x7e\x00\x00\x59\xdc\x01\x48\xfe\xa3\ +\x00\x00\x35\x2e\x01\x53\xf3\xaa\x00\x00\x7e\x2e\x01\x56\x16\x4a\ +\x00\x00\x88\x1b\x01\x67\x0d\x8a\x00\x00\x83\x27\x01\x69\x11\x7a\ +\x00\x00\x93\xc2\x01\x82\x39\x0a\x00\x00\x90\x7b\x01\x8b\x68\x75\ +\x00\x00\x9c\xfd\x01\xa1\x7f\x63\x00\x00\x1b\xeb\x01\xc1\xd9\xde\ +\x00\x00\x52\x44\x01\xd2\x8f\xd3\x00\x00\x48\x87\x01\xdf\x11\x43\ +\x00\x00\x05\x6e\x01\xe2\xf4\x5a\x00\x00\x98\xef\x01\xfc\xae\xd3\ +\x00\x00\x6d\x41\x02\x05\xbe\x25\x00\x00\x77\xc4\x02\x46\x58\x0a\ +\x00\x00\x93\x02\x02\x65\xad\x62\x00\x00\xa2\x3a\x02\x6e\x07\xe2\ +\x00\x00\x4a\xe5\x02\x76\x24\x13\x00\x00\x39\x37\x02\x7d\xe0\x55\ +\x00\x00\x4b\x81\x02\x94\x46\x1a\x00\x00\x90\x30\x02\xa7\x2c\x15\ +\x00\x00\x04\x10\x02\xaa\x36\x95\x00\x00\x6f\x15\x02\xb1\xf0\xba\ +\x00\x00\x85\x02\x02\xbf\xaa\x8e\x00\x00\x37\xba\x02\xc0\x66\xf2\ +\x00\x00\x55\xf8\x02\xc8\x3f\xf5\x00\x00\x61\x6b\x02\xd9\xa4\xb9\ +\x00\x00\x67\x10\x02\xdb\x1a\x94\x00\x00\x07\x09\x03\x01\x84\xc4\ +\x00\x00\x89\x7f\x03\x12\x97\x6a\x00\x00\x87\x56\x03\x1a\x14\x14\ +\x00\x00\x2e\x8a\x03\x1a\x16\x59\x00\x00\x4c\x1b\x03\x2f\x1a\x6a\ +\x00\x00\x71\x0e\x03\x7e\xca\xb5\x00\x00\x40\x2e\x03\x88\x1f\xd4\ +\x00\x00\x41\x01\x03\x9e\x58\xa5\x00\x00\x00\x4e\x03\xb3\x9e\xfa\ +\x00\x00\x91\x17\x03\xb5\xc8\x9a\x00\x00\x92\x4d\x03\xbd\xd4\xe4\ +\x00\x00\x71\xbf\x03\xc4\x3c\xf5\x00\x00\x73\xfe\x03\xc5\xd5\x5e\ +\x00\x00\x09\x2b\x03\xcb\x0d\xe5\x00\x00\x97\x12\x03\xdc\x0c\xd4\ +\x00\x00\x6f\xda\x03\xf2\x70\x35\x00\x00\x2b\x67\x03\xf2\xbd\x60\ +\x00\x00\x15\x93\x03\xfb\x0f\x04\x00\x00\x2e\x18\x04\x21\x23\x23\ +\x00\x00\x20\x49\x04\x56\x06\x93\x00\x00\x2c\x57\x04\x60\x7c\x15\ +\x00\x00\x95\xe0\x04\x79\xef\x9a\x00\x00\x84\x75\x04\x82\x77\xf4\ +\x00\x00\x4b\x37\x04\x87\xf9\x9e\x00\x00\x8a\x86\x04\x8c\xd6\xae\ +\x00\x00\x5f\x78\x04\xa0\x8a\x25\x00\x00\x05\x3b\x04\xa0\x8a\x25\ +\x00\x00\x75\x67\x04\xa4\x31\x5a\x00\x00\x8c\xb3\x04\xa8\xeb\x85\ +\x00\x00\x31\x83\x04\xe1\x6e\xe3\x00\x00\x09\xb5\x04\xe4\x0f\x75\ +\x00\x00\x02\xd5\x04\xeb\x41\xc3\x00\x00\x2b\xda\x04\xef\xd9\xa8\ +\x00\x00\x47\x54\x05\x03\x83\x95\x00\x00\x69\x09\x05\x05\xcb\x13\ +\x00\x00\x3f\x0e\x05\x0f\xf2\x74\x00\x00\x8f\x0c\x05\x1b\x10\x59\ +\x00\x00\x42\xa2\x05\x2a\xe5\x97\x00\x00\x49\x51\x05\x44\x3b\x5f\ +\x00\x00\x6a\xf4\x05\x5c\xd9\xc4\x00\x00\x0f\x7a\x05\x5c\xd9\xc4\ +\x00\x00\x8e\x36\x05\x63\xf6\x93\x00\x00\x48\x21\x05\x65\xee\x65\ +\x00\x00\x7c\x92\x05\x87\xb0\xc3\x00\x00\x95\xb4\x05\x96\xa8\xa5\ +\x00\x00\x12\xce\x05\x96\xa8\xa5\x00\x00\x96\xbd\x05\xad\x4b\xc3\ +\x00\x00\x40\x80\x05\xb9\x03\xc8\x00\x00\x1d\x50\x05\xbd\x0c\xba\ +\x00\x00\x7e\xf9\x05\xbd\x8e\xde\x00\x00\x5d\xcc\x05\xbe\x56\x93\ +\x00\x00\x46\xee\x05\xc5\x50\x04\x00\x00\x0b\xcd\x05\xe5\x8e\x2e\ +\x00\x00\x10\xd0\x05\xfb\xdc\x83\x00\x00\x3f\x6a\x06\x1e\xe6\xb5\ +\x00\x00\x9c\x2b\x06\x29\xee\xa9\x00\x00\x75\x93\x06\x32\xe3\xe3\ +\x00\x00\x7a\x14\x06\x57\x19\xf4\x00\x00\x00\x00\x06\x5a\xef\x15\ +\x00\x00\x6f\x45\x06\x5b\xd2\xb5\x00\x00\x3b\xd7\x06\x6c\x88\x8e\ +\x00\x00\x3d\x4f\x06\x74\x1d\x55\x00\x00\x51\xac\x06\x8b\x96\x44\ +\x00\x00\x0c\x7f\x06\x97\x58\xc9\x00\x00\x4c\xa4\x06\xbc\x80\xa5\ +\x00\x00\x1c\xe9\x06\xc9\xb8\x05\x00\x00\x72\x39\x06\xe8\x05\x4e\ +\x00\x00\x06\x9a\x06\xee\xaa\x57\x00\x00\x9b\x42\x06\xf0\xcb\x25\ +\x00\x00\x1a\xb3\x06\xfa\xff\xc3\x00\x00\x3f\xce\x06\xfc\x1a\x14\ +\x00\x00\x32\x8f\x06\xfc\xa0\x8a\x00\x00\x8f\x4b\x07\x08\x90\xe5\ +\x00\x00\x29\xec\x07\x0d\xb7\xf7\x00\x00\x37\x07\x07\x0e\x86\x3e\ +\x00\x00\x1b\x26\x07\x35\x68\x6e\x00\x00\x16\xb2\x07\x35\xe8\x9a\ +\x00\x00\x94\x01\x07\x44\x41\x2a\x00\x00\x7d\x91\x07\x4a\x1f\x63\ +\x00\x00\x02\x08\x07\x4d\x73\x22\x00\x00\x8d\x3d\x07\x4e\xa6\xf2\ +\x00\x00\x7b\x13\x07\x58\xcb\xe8\x00\x00\x8d\x71\x07\x63\xfe\x0e\ +\x00\x00\x11\xb9\x07\x80\xc6\xb3\x00\x00\x9f\x9c\x07\x88\x72\x5a\ +\x00\x00\x73\x3b\x07\xa3\xe4\x0e\x00\x00\x21\xcf\x07\xc1\xfc\x13\ +\x00\x00\x2d\x14\x08\x27\xb4\xba\x00\x00\x91\xfa\x08\x32\xc4\xaa\ +\x00\x00\x94\xa2\x08\x36\x74\x14\x00\x00\x23\xce\x08\x44\xb9\x83\ +\x00\x00\x33\x0e\x08\x49\xc9\x30\x00\x00\x15\xd9\x08\x61\x7c\xb3\ +\x00\x00\x1d\x83\x08\xa2\xca\x67\x00\x00\x4b\xd1\x08\xa3\xe0\x33\ +\x00\x00\x76\x79\x08\xb1\x15\x28\x00\x00\x2d\xb5\x08\xb4\x04\x04\ +\x00\x00\x96\x34\x08\xd0\x32\xf4\x00\x00\x7a\xe4\x08\xd4\xcd\x69\ +\x00\x00\x7b\x49\x08\xe1\x9b\xbe\x00\x00\x19\xdf\x08\xe1\xc1\xfa\ +\x00\x00\x7c\xcd\x08\xeb\x8d\x7a\x00\x00\x9f\x4b\x09\x20\xda\x24\ +\x00\x00\xa0\xc6\x09\x20\xda\xb4\x00\x00\xa1\x7b\x09\x20\xda\xd4\ +\x00\x00\x9f\xf1\x09\x4d\x96\xd9\x00\x00\x24\x9a\x09\x65\xda\x8a\ +\x00\x00\x80\xe9\x09\x68\x0d\x29\x00\x00\x8b\x90\x09\x71\x8d\x25\ +\x00\x00\x06\x54\x09\x75\x23\x14\x00\x00\x70\xb4\x09\x76\xed\x34\ +\x00\x00\x62\xa0\x09\x86\xa6\x05\x00\x00\x22\xe2\x09\x8b\x23\xba\ +\x00\x00\x94\xf3\x09\x9e\xfd\x7e\x00\x00\x62\xea\x09\xb6\x2a\x63\ +\x00\x00\x31\xf1\x09\xcd\x1c\x55\x00\x00\x97\x4a\x09\xd2\x21\xea\ +\x00\x00\x5a\xef\x09\xe5\x23\x0e\x00\x00\x54\xe3\x09\xec\x2b\x45\ +\x00\x00\x0c\x37\x09\xef\x33\xa3\x00\x00\x17\xa5\x09\xf0\x1f\x6e\ +\x00\x00\x03\x5e\x09\xfd\x45\x1a\x00\x00\x90\xc6\x0a\x09\xc1\x7a\ +\x00\x00\x93\x5d\x0a\x28\x9a\x65\x00\x00\x49\xe6\x0a\x28\x9a\x67\ +\x00\x00\x4a\x3b\x0a\x28\x9a\x69\x00\x00\x4a\x90\x0a\x2d\xbe\xe4\ +\x00\x00\x2e\xe5\x0a\x35\xa9\xfa\x00\x00\x85\x9e\x0a\x3f\x27\x74\ +\x00\x00\x78\x0e\x0a\x3f\x6b\x05\x00\x00\x78\x49\x0a\x49\xa5\x4a\ +\x00\x00\x9c\x66\x0a\x60\xe0\x15\x00\x00\x25\x94\x0a\x60\xe0\x17\ +\x00\x00\x25\xe7\x0a\x60\xe0\x19\x00\x00\x26\x3a\x0a\x65\x9b\xea\ +\x00\x00\x8e\x6a\x0a\x78\x05\x80\x00\x00\x01\x43\x0a\x7f\x8f\x65\ +\x00\x00\x3a\x5c\x0a\x98\x86\x18\x00\x00\x29\x6b\x0a\x99\x5c\xaa\ +\x00\x00\x95\x3f\x0a\xa8\x16\x95\x00\x00\x12\x93\x0a\xa9\x89\xec\ +\x00\x00\x41\x5c\x0a\xc8\x5c\x59\x00\x00\x0f\xb5\x0a\xd0\x50\xb8\ +\x00\x00\x6f\xab\x0a\xd0\xe6\xf5\x00\x00\x17\x64\x0a\xd6\xf1\xfa\ +\x00\x00\x7a\x4f\x0a\xeb\x91\x88\x00\x00\x62\x01\x0b\x07\x78\x8a\ +\x00\x00\x80\x48\x0b\x1b\xe0\x73\x00\x00\x4d\x12\x0b\x24\x9d\xb4\ +\x00\x00\x4e\x17\x0b\x24\xc5\xc9\x00\x00\x13\x01\x0b\x26\x7e\x0e\ +\x00\x00\x77\x36\x0b\x2b\x50\xfa\x00\x00\x83\xc8\x0b\x2d\xb3\xf9\ +\x00\x00\x66\x60\x0b\x37\x73\x69\x00\x00\x9e\x3e\x0b\x40\x40\x3e\ +\x00\x00\x43\x04\x0b\x43\xcd\x19\x00\x00\x41\xd6\x0b\x66\x28\xd2\ +\x00\x00\x61\xba\x0b\x88\xe0\x07\x00\x00\x0a\xc6\x0b\x94\x44\xc5\ +\x00\x00\x2f\x50\x0b\xc2\x99\x6a\x00\x00\x7f\x7f\x0b\xd3\x27\xae\ +\x00\x00\x04\x48\x0b\xd4\x7e\x9e\x00\x00\x0a\xff\x0b\xf5\xee\x53\ +\x00\x00\x8d\xf9\x0c\x06\x50\x2e\x00\x00\x0d\x0a\x0c\x08\x46\x23\ +\x00\x00\x78\xd4\x0c\x19\xfa\x99\x00\x00\x7b\xd9\x0c\x28\x9b\x45\ +\x00\x00\x70\x27\x0c\x31\x7e\x4a\x00\x00\x91\x5c\x0c\x38\x4d\xe5\ +\x00\x00\x07\x52\x0c\x3a\x16\xd0\x00\x00\x18\xa0\x0c\x5a\xc0\xc8\ +\x00\x00\x73\xc8\x0c\x6e\x87\xf5\x00\x00\x21\x94\x0c\x91\xa0\x7a\ +\x00\x00\x9b\xd8\x0c\x96\x90\x59\x00\x00\x42\x37\x0c\xca\xdd\xfa\ +\x00\x00\x9a\x3c\x0c\xd6\xef\x12\x00\x00\x2c\xbd\x0c\xde\x99\x49\ +\x00\x00\x66\xb6\x0c\xf0\xde\xaa\x00\x00\x82\x89\x0d\x1c\xf6\xee\ +\x00\x00\x2a\xaf\x0d\x3a\x6c\xba\x00\x00\x91\xa4\x0d\x45\xe2\x6a\ +\x00\x00\x98\x7a\x0d\x59\xa1\x45\x00\x00\x79\x4d\x0d\x5a\xad\x33\ +\x00\x00\x72\xad\x0d\x5e\xe7\x6e\x00\x00\x26\x8d\x0d\x64\xa5\xd9\ +\x00\x00\x59\x00\x0d\x6d\xf8\xf4\x00\x00\x08\x11\x0d\x76\xb5\x92\ +\x00\x00\x2b\x03\x0d\x9b\xec\xc9\x00\x00\x51\x3b\x0d\xa5\xd9\x94\ +\x00\x00\x2a\x56\x0d\xa6\xda\xa4\x00\x00\x44\x29\x0d\xc6\xc6\x2a\ +\x00\x00\x94\x54\x0d\xf2\x39\xba\x00\x00\x86\x71\x0e\x2b\x04\x15\ +\x00\x00\x76\xf5\x0e\x2c\xe4\x2a\x00\x00\x98\x0d\x0e\x4e\xcc\xc5\ +\x00\x00\x09\x70\x0e\x6f\x9a\x1a\x00\x00\x9a\xc8\x0e\x7b\x7a\x2c\ +\x00\x00\x30\x3a\x0e\x8f\x6a\x37\x00\x00\x34\x5e\x0e\x91\x65\xf5\ +\x00\x00\x19\x5b\x0e\xca\xd7\x34\x00\x00\x1f\x3b\x0e\xcd\x1c\x55\ +\x00\x00\x97\x8b\x0e\xcd\x1c\x65\x00\x00\x97\xcc\x0e\xea\xe5\x03\ +\x00\x00\x6d\xda\x0e\xed\xe1\xf9\x00\x00\x44\xdf\x0f\x07\x8d\xe3\ +\x00\x00\x6e\x72\x0f\x17\x82\x4e\x00\x00\x00\xed\x0f\x1f\x8d\xa5\ +\x00\x00\x76\xb1\x0f\x4f\x75\x3a\x00\x00\xa1\xf3\x0f\x5f\xca\xd5\ +\x00\x00\x2f\xb7\x0f\x75\xb0\x54\x00\x00\x78\x84\x0f\x77\xc3\xb4\ +\x00\x00\x67\xa2\x0f\x89\x0b\xbe\x00\x00\x45\x3f\x0f\x8f\xa8\xa7\ +\x00\x00\x18\x51\x0f\x98\x0a\x39\x00\x00\x9d\x92\x0f\x9e\xec\xa0\ +\x00\x00\x11\xf2\x0f\xbf\x87\xa3\x00\x00\x8c\x69\x0f\xcd\xce\x95\ +\x00\x00\x33\xf8\x0f\xdf\x21\x05\x00\x00\x23\x6f\x0f\xf6\x06\x1e\ +\x00\x00\x1f\xa3\x0f\xf6\x29\x0a\x00\x00\x72\x6b\x0f\xf7\x77\xaa\ +\x00\x00\x82\x02\x0f\xfb\x5f\xae\x00\x00\x77\x80\x69\x00\x00\xa2\ +\x83\x03\x00\x00\x00\x22\x00\x56\x00\x6f\x00\x65\x00\x67\x00\x20\ +\x00\x62\x00\x79\x00\x20\x00\x6e\x00\x75\x00\x77\x00\x65\x00\x20\ +\x00\x70\x00\x75\x00\x6e\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\x54\x00\x56\x00\x6f\x00\x65\x00\x67\x00\x20\x00\x27\ +\x00\x6e\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x20\x00\x62\ +\x00\x79\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x62\x00\x65\x00\x73\ +\x00\x74\x00\x61\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x64\ +\x00\x72\x00\x61\x00\x61\x00\x64\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\x22\x00\x56\x00\x6f\x00\x65\x00\x67\x00\x20\x00\x62\x00\ +\x79\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x65\x00\x70\x00\x20\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\x70\x00\x56\x00\x6f\x00\x65\x00\ +\x67\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x67\x00\x65\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x65\x00\ +\x72\x00\x64\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\ +\x77\x00\x65\x00\x72\x00\x70\x00\x28\x00\x65\x00\x29\x00\x20\x00\ +\x62\x00\x79\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x62\x00\x65\x00\ +\x73\x00\x74\x00\x61\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x20\x00\ +\x67\x00\x72\x00\x6f\x00\x65\x00\x70\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x30\x41\x64\x64\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\ +\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x28\x73\x29\x20\x74\ +\x6f\x20\x61\x6e\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x67\x72\ +\x6f\x75\x70\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x64\ +\x64\x54\x6f\x47\x72\x6f\x75\x70\x01\x03\x00\x00\x00\x70\x00\x57\ +\x00\x65\x00\x6e\x00\x64\x00\x20\x00\x61\x00\x61\x00\x6e\x00\x20\ +\x00\x68\x00\x75\x00\x69\x00\x64\x00\x69\x00\x67\x00\x65\x00\x20\ +\x00\x6c\x00\x79\x00\x6e\x00\x62\x00\x72\x00\x65\x00\x65\x00\x64\ +\x00\x74\x00\x65\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x6b\x00\x6c\ +\x00\x65\x00\x75\x00\x72\x00\x20\x00\x6f\x00\x70\x00\x20\x00\x67\ +\x00\x65\x00\x6b\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x76\x00\x6f\ +\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\x38\x41\x70\x70\x6c\x69\x65\x73\x20\ +\x63\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\x20\x77\x69\x64\ +\x74\x68\x20\x61\x6e\x64\x20\x63\x6f\x6c\x6f\x72\x20\x74\x6f\x20\ +\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\ +\x07\x00\x00\x00\x10\x44\x72\x61\x66\x74\x5f\x41\x70\x70\x6c\x79\ +\x53\x74\x79\x6c\x65\x01\x03\x00\x00\x00\x28\x00\x50\x00\x61\x00\ +\x73\x00\x20\x00\x68\x00\x75\x00\x69\x00\x64\x00\x69\x00\x67\x00\ +\x65\x00\x20\x00\x73\x00\x74\x00\x79\x00\x6c\x00\x20\x00\x74\x00\ +\x6f\x00\x65\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\x00\x42\x00\x6f\x00\ +\x6f\x00\x67\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\x64\x00\x53\x00\x6b\x00\x65\x00\x70\x00\x20\x00\x27\ +\x00\x6e\x00\x20\x00\x62\x00\x6f\x00\x6f\x00\x67\x00\x2e\x00\x20\ +\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x76\x00\x61\x00\x73\ +\x00\x20\x00\x74\x00\x65\x00\x20\x00\x68\x00\x65\x00\x67\x00\x2c\ +\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x6f\ +\x00\x6d\x00\x20\x00\x76\x00\x61\x00\x73\x00\x20\x00\x74\x00\x65\ +\x00\x20\x00\x68\x00\x6f\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x30\x43\x72\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x72\x63\ +\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\x70\x2c\x20\ +\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\x73\x74\x72\x61\ +\x69\x6e\x07\x00\x00\x00\x09\x44\x72\x61\x66\x74\x5f\x41\x72\x63\ +\x01\x03\x00\x00\x00\x0e\x00\x42\x00\x2d\x00\x4b\x00\x75\x00\x72\ +\x00\x77\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\x8e\x00\x53\ +\x00\x6b\x00\x65\x00\x70\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x76\ +\x00\x65\x00\x65\x00\x6c\x00\x76\x00\x75\x00\x6c\x00\x64\x00\x69\ +\x00\x67\x00\x65\x00\x2d\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x20\ +\x00\x6b\x00\x75\x00\x72\x00\x77\x00\x65\x00\x2e\x00\x20\x00\x43\ +\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x76\ +\x00\x61\x00\x73\x00\x20\x00\x74\x00\x65\x00\x20\x00\x68\x00\x65\ +\x00\x67\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\ +\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x76\x00\x61\x00\x73\x00\x20\ +\x00\x74\x00\x65\x00\x20\x00\x68\x00\x6f\x00\x75\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\x88\x00\x53\x00\x6b\x00\x65\x00\x70\x00\x20\x00\x27\ +\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\x6f\ +\x00\x6d\x00\x20\x00\x76\x00\x61\x00\x73\x00\x20\x00\x74\x00\x65\ +\x00\x20\x00\x68\x00\x65\x00\x67\x00\x2c\x00\x20\x00\x41\x00\x4c\ +\x00\x54\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x72\x00\x61\x00\x61\ +\x00\x6b\x00\x6c\x00\x79\x00\x6e\x00\x20\x00\x76\x00\x6f\x00\x6f\ +\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\x65\x00\x20\x00\x74\ +\x00\x65\x00\x20\x00\x6b\x00\x69\x00\x65\x00\x73\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\x18\x00\x4d\x00\x61\x00\x61\ +\x00\x6b\x00\x20\x00\x6c\x00\x79\x00\x6e\x00\x20\x00\x74\x00\x6f\ +\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\x30\ +\x00\x4d\x00\x61\x00\x61\x00\x6b\x00\x20\x00\x64\x00\x69\x00\x65\ +\x00\x20\x00\x68\x00\x75\x00\x69\x00\x64\x00\x69\x00\x67\x00\x65\ +\x00\x20\x00\x6c\x00\x79\x00\x6e\x00\x20\x00\x74\x00\x6f\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x43\x6c\x6f\x73\x65\x73\ +\x20\x74\x68\x65\x20\x6c\x69\x6e\x65\x20\x62\x65\x69\x6e\x67\x20\ +\x64\x72\x61\x77\x6e\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\ +\x43\x6c\x6f\x73\x65\x4c\x69\x6e\x65\x01\x03\x00\x00\x00\x1a\x00\ +\x56\x00\x65\x00\x72\x00\x77\x00\x79\x00\x64\x00\x65\x00\x72\x00\ +\x20\x00\x70\x00\x75\x00\x6e\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\x6c\x00\x56\x00\x65\x00\x72\x00\x77\ +\x00\x79\x00\x64\x00\x65\x00\x72\x00\x20\x00\x27\x00\x6e\x00\x20\ +\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x20\x00\x76\x00\x61\x00\x6e\ +\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x62\x00\x65\x00\x73\x00\x74\ +\x00\x61\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x64\x00\x72\ +\x00\x61\x00\x61\x00\x64\x00\x77\x00\x65\x00\x72\x00\x6b\x00\x20\ +\x00\x6f\x00\x66\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\xa8\x00\x53\x00\x6b\x00\x65\x00\x70\x00\ +\x20\x00\x27\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\ +\x6e\x00\x73\x00\x69\x00\x65\x00\x2e\x00\x20\x00\x43\x00\x54\x00\ +\x52\x00\x4c\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x76\x00\x61\x00\ +\x73\x00\x20\x00\x74\x00\x65\x00\x20\x00\x68\x00\x65\x00\x74\x00\ +\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\ +\x6f\x00\x6d\x00\x20\x00\x76\x00\x61\x00\x73\x00\x20\x00\x74\x00\ +\x65\x00\x20\x00\x68\x00\x6f\x00\x75\x00\x2c\x00\x20\x00\x41\x00\ +\x4c\x00\x54\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x27\x00\x6e\x00\ +\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\ +\x20\x00\x74\x00\x65\x00\x20\x00\x6b\x00\x69\x00\x65\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\ +\x18\x00\x44\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\ +\x6f\x00\x6e\x00\x65\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x09\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x07\x00\x00\x00\ +\x0f\x44\x72\x61\x66\x74\x5f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\ +\x01\x03\x00\x00\x00\x18\x00\x47\x00\x72\x00\x61\x00\x64\x00\x65\ +\x00\x65\x00\x72\x00\x20\x00\x6e\x00\x65\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\xa8\x00\x46\x00\x72\x00\ +\x61\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x65\x00\ +\x72\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x67\x00\x65\x00\ +\x73\x00\x65\x00\x6c\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x65\x00\ +\x72\x00\x64\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\ +\x77\x00\x65\x00\x72\x00\x70\x00\x65\x00\x20\x00\x6e\x00\x61\x00\ +\x20\x00\x65\x00\x65\x00\x6e\x00\x76\x00\x6f\x00\x75\x00\x64\x00\ +\x69\x00\x67\x00\x65\x00\x72\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\ +\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\x65\x00\x2c\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x76\x00\x65\x00\x72\x00\x77\x00\x79\x00\ +\x64\x00\x65\x00\x72\x00\x20\x00\x76\x00\x6c\x00\x61\x00\x6b\x00\ +\x6b\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x45\x45\x78\x70\ +\x6c\x6f\x64\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\ +\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x69\x6e\x74\x6f\x20\ +\x73\x69\x6d\x70\x6c\x65\x72\x20\x6f\x62\x6a\x65\x63\x74\x73\x2c\ +\x20\x6f\x72\x20\x73\x75\x62\x74\x72\x61\x63\x74\x20\x66\x61\x63\ +\x65\x73\x07\x00\x00\x00\x0f\x44\x72\x61\x66\x74\x5f\x44\x6f\x77\ +\x6e\x67\x72\x61\x64\x65\x01\x03\x00\x00\x00\x10\x00\x54\x00\x65\ +\x00\x6b\x00\x65\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\x52\x00\x53\x00\x69\x00\x74\x00\x20\x00\x64\x00\ +\x69\x00\x65\x00\x20\x00\x67\x00\x65\x00\x6b\x00\x6f\x00\x73\x00\ +\x65\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\ +\x72\x00\x70\x00\x65\x00\x20\x00\x6f\x00\x70\x00\x20\x00\x27\x00\ +\x6e\x00\x20\x00\x74\x00\x65\x00\x6b\x00\x65\x00\x6e\x00\x62\x00\ +\x6c\x00\x61\x00\x64\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\x0a\x00\x57\x00\x79\x00\x73\x00\x69\x00\x67\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\ +\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x45\x64\x69\x74\x01\x03\x00\ +\x00\x00\x34\x00\x57\x00\x79\x00\x73\x00\x69\x00\x67\x00\x20\x00\ +\x64\x00\x69\x00\x65\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x69\x00\ +\x65\x00\x77\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\ +\x77\x00\x65\x00\x72\x00\x70\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\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\x18\x00\x42\x00\ +\x65\x00\xeb\x00\x69\x00\x6e\x00\x64\x00\x69\x00\x67\x00\x20\x00\ +\x6c\x00\x79\x00\x6e\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\x42\x00\x65\x00\xeb\x00\x69\x00\x6e\x00\ +\x64\x00\x69\x00\x67\x00\x20\x00\x6c\x00\x79\x00\x6e\x00\x20\x00\ +\x73\x00\x6f\x00\x6e\x00\x64\x00\x65\x00\x72\x00\x20\x00\x6f\x00\ +\x6d\x00\x20\x00\x74\x00\x6f\x00\x65\x00\x20\x00\x74\x00\x65\x00\ +\x20\x00\x6d\x00\x61\x00\x61\x00\x6b\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\x78\ +\x00\x44\x00\x69\x00\x74\x00\x20\x00\x73\x00\x6b\x00\x65\x00\x70\ +\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x32\x00\x2d\x00\x70\x00\x75\ +\x00\x6e\x00\x74\x00\x20\x00\x6c\x00\x79\x00\x6e\x00\x2e\x00\x20\ +\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x6f\x00\x6d\x00\x20\ +\x00\x76\x00\x61\x00\x73\x00\x20\x00\x74\x00\x65\x00\x20\x00\x68\ +\x00\x65\x00\x67\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\ +\x00\x54\x00\x20\x00\x76\x00\x61\x00\x73\x00\x20\x00\x74\x00\x65\ +\x00\x20\x00\x68\x00\x6f\x00\x75\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\x06\x00\ +\x4c\x00\x79\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x04\x4c\ +\x69\x6e\x65\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x4c\x69\ +\x6e\x65\x01\x03\x00\x00\x00\x10\x00\x56\x00\x65\x00\x72\x00\x73\ +\x00\x6b\x00\x75\x00\x69\x00\x66\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\xcc\x00\x42\x00\x65\x00\ +\x77\x00\x65\x00\x65\x00\x67\x00\x20\x00\x64\x00\x69\x00\x65\x00\ +\x20\x00\x67\x00\x65\x00\x6b\x00\x6f\x00\x73\x00\x65\x00\x20\x00\ +\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\ +\x65\x00\x20\x00\x74\x00\x75\x00\x73\x00\x73\x00\x65\x00\x6e\x00\ +\x20\x00\x32\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x65\x00\ +\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x6f\x00\ +\x6d\x00\x20\x00\x76\x00\x61\x00\x73\x00\x20\x00\x74\x00\x65\x00\ +\x20\x00\x68\x00\x65\x00\x67\x00\x2c\x00\x20\x00\x53\x00\x48\x00\ +\x49\x00\x46\x00\x54\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x76\x00\ +\x61\x00\x73\x00\x20\x00\x74\x00\x65\x00\x20\x00\x68\x00\x6f\x00\ +\x75\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x6f\x00\ +\x6d\x00\x20\x00\x74\x00\x65\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\ +\x69\x00\x65\x00\x65\x00\x72\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\x14\ +\x00\x56\x00\x65\x00\x72\x00\x70\x00\x6c\x00\x61\x00\x73\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\xb2\x00\x56\x00\x65\x00\ +\x72\x00\x70\x00\x6c\x00\x61\x00\x61\x00\x73\x00\x20\x00\x64\x00\ +\x69\x00\x65\x00\x20\x00\x61\x00\x6b\x00\x74\x00\x69\x00\x65\x00\ +\x77\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\ +\x65\x00\x72\x00\x70\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\ +\x4c\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x76\x00\x61\x00\x73\x00\ +\x20\x00\x74\x00\x65\x00\x20\x00\x68\x00\x65\x00\x67\x00\x2c\x00\ +\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x6f\x00\ +\x6d\x00\x20\x00\x76\x00\x61\x00\x73\x00\x20\x00\x74\x00\x65\x00\ +\x20\x00\x68\x00\x6f\x00\x75\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\ +\x54\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x65\x00\x20\x00\ +\x6b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x65\x00\x72\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\x8c\x00\x53\x00\x6b\x00\x65\x00\x70\x00\x20\ +\x00\x27\x00\x6e\x00\x20\x00\x67\x00\x65\x00\x6c\x00\x79\x00\x6b\ +\x00\x68\x00\x6f\x00\x65\x00\x6b\x00\x69\x00\x67\x00\x65\x00\x20\ +\x00\x76\x00\x65\x00\x65\x00\x6c\x00\x68\x00\x6f\x00\x65\x00\x6b\ +\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x6f\ +\x00\x6d\x00\x20\x00\x76\x00\x61\x00\x73\x00\x20\x00\x74\x00\x65\ +\x00\x20\x00\x68\x00\x65\x00\x67\x00\x2c\x00\x20\x00\x53\x00\x48\ +\x00\x49\x00\x46\x00\x54\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x76\ +\x00\x61\x00\x73\x00\x20\x00\x74\x00\x65\x00\x20\x00\x68\x00\x6f\ +\x00\x75\x08\x00\x00\x00\x00\x06\x00\x00\x00\x3b\x43\x72\x65\x61\ +\x74\x65\x73\x20\x61\x20\x72\x65\x67\x75\x6c\x61\x72\x20\x70\x6f\ +\x6c\x79\x67\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\ +\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\ +\x6e\x73\x74\x72\x61\x69\x6e\x07\x00\x00\x00\x0d\x44\x72\x61\x66\ +\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x01\x03\x00\x00\x00\x10\x00\ +\x56\x00\x65\x00\x65\x00\x6c\x00\x68\x00\x6f\x00\x65\x00\x6b\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x07\x50\x6f\x6c\x79\x67\x6f\x6e\ +\x07\x00\x00\x00\x0d\x44\x72\x61\x66\x74\x5f\x50\x6f\x6c\x79\x67\ +\x6f\x6e\x01\x03\x00\x00\x00\x54\x00\x53\x00\x6b\x00\x65\x00\x70\ +\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x32\x00\x2d\x00\x70\x00\x75\ +\x00\x6e\x00\x74\x00\x20\x00\x72\x00\x65\x00\x67\x00\x68\x00\x6f\ +\x00\x65\x00\x6b\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\ +\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x76\x00\x61\x00\x73\x00\x20\ +\x00\x74\x00\x65\x00\x20\x00\x68\x00\x65\x00\x67\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\x0e\x00\x52\x00\x65\x00\x67\x00\ +\x68\x00\x6f\x00\x65\x00\x6b\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\x09\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x07\x00\x00\x00\x0f\x44\ +\x72\x61\x66\x74\x5f\x52\x65\x63\x74\x61\x6e\x67\x6c\x65\x01\x03\ +\x00\x00\x00\x0c\x00\x52\x00\x6f\x00\x74\x00\x65\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\xaa\x00\x52\x00\x6f\x00\x74\x00\x65\x00\ +\x65\x00\x72\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x67\x00\ +\x65\x00\x6b\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\ +\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x2e\x00\x20\x00\x43\x00\ +\x54\x00\x52\x00\x4c\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x76\x00\ +\x61\x00\x73\x00\x20\x00\x74\x00\x65\x00\x20\x00\x68\x00\x65\x00\ +\x67\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\ +\x20\x00\x6f\x00\x6d\x00\x20\x00\x76\x00\x61\x00\x73\x00\x20\x00\ +\x74\x00\x65\x00\x20\x00\x68\x00\x6f\x00\x75\x00\x2c\x00\x20\x00\ +\x41\x00\x4c\x00\x54\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\ +\x65\x00\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x65\x00\ +\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x52\x52\x6f\x74\x61\x74\ +\x65\x73\x20\x74\x68\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\ +\x6f\x62\x6a\x65\x63\x74\x73\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\ +\x20\x73\x6e\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\ +\x63\x6f\x6e\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x63\ +\x72\x65\x61\x74\x65\x73\x20\x61\x20\x63\x6f\x70\x79\x07\x00\x00\ +\x00\x0c\x44\x72\x61\x66\x74\x5f\x52\x6f\x74\x61\x74\x65\x01\x03\ +\x00\x00\x00\x0a\x00\x53\x00\x6b\x00\x61\x00\x61\x00\x6c\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\xca\x00\x53\x00\x6b\x00\x61\x00\x61\x00\x6c\x00\x20\x00\ +\x64\x00\x69\x00\x65\x00\x20\x00\x67\x00\x65\x00\x6b\x00\x6f\x00\ +\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x6b\x00\ +\x74\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x27\x00\ +\x6e\x00\x20\x00\x62\x00\x61\x00\x73\x00\x69\x00\x73\x00\x70\x00\ +\x75\x00\x6e\x00\x74\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\ +\x4c\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x76\x00\x61\x00\x73\x00\ +\x20\x00\x74\x00\x65\x00\x20\x00\x68\x00\x6f\x00\x75\x00\x2c\x00\ +\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x6f\x00\ +\x6d\x00\x20\x00\x76\x00\x61\x00\x73\x00\x20\x00\x74\x00\x65\x00\ +\x20\x00\x68\x00\x6f\x00\x75\x00\x2c\x00\x20\x00\x41\x00\x4c\x00\ +\x54\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x65\x00\x20\x00\ +\x6b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x65\x00\x72\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x5c\x53\x63\x61\x6c\x65\x73\x20\x74\x68\ +\x65\x20\x73\x65\x6c\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x66\x72\x6f\x6d\x20\x61\x20\x62\x61\x73\x65\x20\x70\ +\x6f\x69\x6e\x74\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\ +\x61\x70\x2c\x20\x53\x48\x49\x46\x54\x20\x74\x6f\x20\x63\x6f\x6e\ +\x73\x74\x72\x61\x69\x6e\x2c\x20\x41\x4c\x54\x20\x74\x6f\x20\x63\ +\x6f\x70\x79\x07\x00\x00\x00\x0b\x44\x72\x61\x66\x74\x5f\x53\x63\ +\x61\x6c\x65\x01\x03\x00\x00\x00\x14\x00\x4b\x00\x69\x00\x65\x00\ +\x73\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x65\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\x7c\x00\ +\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x61\x00\x6c\x00\x20\x00\ +\x64\x00\x69\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\ +\x77\x00\x65\x00\x72\x00\x70\x00\x65\x00\x20\x00\x6d\x00\x65\x00\ +\x74\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x64\x00\x69\x00\ +\x65\x00\x73\x00\x65\x00\x6c\x00\x66\x00\x64\x00\x65\x00\x20\x00\ +\x6f\x00\x75\x00\x65\x00\x72\x00\x73\x00\x20\x00\x61\x00\x73\x00\ +\x20\x00\x68\x00\x69\x00\x65\x00\x72\x00\x64\x00\x69\x00\x65\x00\ +\x20\x00\x67\x00\x72\x00\x6f\x00\x65\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\x60\x00\x4b\x00\x69\x00\x65\x00\x73\ +\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x77\x00\x65\x00\x72\x00\x6b\ +\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x76\x00\x6c\x00\x69\ +\x00\x65\x00\x67\x00\x74\x00\x75\x00\x69\x00\x67\x00\x20\x00\x76\ +\x00\x69\x00\x72\x00\x20\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\ +\x00\x74\x00\x72\x00\x69\x00\x65\x00\x73\x00\x6b\x00\x65\x00\x70\ +\x00\x70\x00\x69\x00\x6e\x00\x67\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\x10\x00\x4b\x00\x69\x00\x65\ +\x00\x73\x00\x56\x00\x6c\x00\x61\x00\x6b\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\x5c\x00\x53\x00\x6b\x00\ +\x65\x00\x70\x00\x20\x00\x76\x00\x6f\x00\x72\x00\x6d\x00\x20\x00\ +\x32\x00\x44\x00\x20\x00\x61\x00\x61\x00\x6e\x00\x73\x00\x69\x00\ +\x67\x00\x74\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\ +\x64\x00\x69\x00\x65\x00\x20\x00\x67\x00\x65\x00\x6b\x00\x6f\x00\ +\x73\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\ +\x65\x00\x72\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\ +\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\x1c\x00\x56\x00\x6f\x00\x72\x00\x6d\x00\ +\x20\x00\x32\x00\x44\x00\x20\x00\x61\x00\x61\x00\x6e\x00\x73\x00\ +\x69\x00\x67\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\x4e\x00\x53\x00\x6b\x00\x65\x00\x70\x00\x20\ +\x00\x27\x00\x6e\x00\x20\x00\x61\x00\x61\x00\x6e\x00\x74\x00\x65\ +\x00\x6b\x00\x65\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x2e\x00\x20\ +\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\x6f\x00\x6d\x00\x20\ +\x00\x76\x00\x61\x00\x73\x00\x20\x00\x74\x00\x65\x00\x20\x00\x68\ +\x00\x65\x00\x67\x08\x00\x00\x00\x00\x06\x00\x00\x00\x23\x43\x72\ +\x65\x61\x74\x65\x73\x20\x61\x6e\x20\x61\x6e\x6e\x6f\x74\x61\x74\ +\x69\x6f\x6e\x2e\x20\x43\x54\x52\x4c\x20\x74\x6f\x20\x73\x6e\x61\ +\x70\x07\x00\x00\x00\x0a\x44\x72\x61\x66\x74\x5f\x54\x65\x78\x74\ +\x01\x03\x00\x00\x00\x08\x00\x54\x00\x65\x00\x6b\x00\x73\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\ +\x3c\x00\x53\x00\x6b\x00\x61\x00\x6b\x00\x65\x00\x6c\x00\x20\x00\ +\x4b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\ +\x73\x00\x69\x00\x65\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\x73\x00\ +\x20\x00\x61\x00\x61\x00\x6e\x00\x2f\x00\x61\x00\x66\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\x74\x00\x53\x00\x6b\x00\x61\x00\x6b\x00\x65\x00\ +\x6c\x00\x20\x00\x6b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\ +\x75\x00\x6b\x00\x73\x00\x69\x00\x65\x00\x6d\x00\x6f\x00\x64\x00\ +\x75\x00\x73\x00\x20\x00\x61\x00\x61\x00\x6e\x00\x2f\x00\x61\x00\ +\x66\x00\x20\x00\x76\x00\x69\x00\x72\x00\x20\x00\x64\x00\x69\x00\ +\x65\x00\x20\x00\x76\x00\x6f\x00\x6c\x00\x67\x00\x65\x00\x6e\x00\ +\x64\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\ +\x65\x00\x72\x00\x70\x00\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\ +\x00\x00\x2f\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\x20\x43\ +\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x4d\x6f\x64\x65\ +\x20\x66\x6f\x72\x20\x6e\x65\x78\x74\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x2e\x07\x00\x00\x00\x1c\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\ +\x67\x6c\x65\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x4d\ +\x6f\x64\x65\x01\x03\x00\x00\x00\x32\x00\x57\x00\x69\x00\x73\x00\ +\x73\x00\x65\x00\x6c\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\ +\x74\x00\x73\x00\x65\x00\x74\x00\x74\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\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\x6c\x00\x57\x00\x69\ +\x00\x73\x00\x73\x00\x65\x00\x6c\x00\x20\x00\x64\x00\x69\x00\x65\ +\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x74\x00\x73\x00\x65\ +\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x6d\x00\x6f\ +\x00\x64\x00\x75\x00\x73\x00\x20\x00\x76\x00\x69\x00\x72\x00\x20\ +\x00\x64\x00\x69\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6c\x00\x67\ +\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x62\x00\x65\x00\x76\ +\x00\x65\x00\x6c\x00\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x2c\x54\x6f\x67\x67\x6c\x65\x73\x20\x74\x68\x65\x20\x43\x6f\ +\x6e\x74\x69\x6e\x75\x65\x20\x4d\x6f\x64\x65\x20\x66\x6f\x72\x20\ +\x6e\x65\x78\x74\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x2e\x07\x00\ +\x00\x00\x18\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x43\ +\x6f\x6e\x74\x69\x6e\x75\x65\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\ +\x8c\x00\x56\x00\x65\x00\x72\x00\x61\x00\x6e\x00\x64\x00\x65\x00\ +\x72\x00\x20\x00\x76\x00\x65\x00\x72\x00\x74\x00\x6f\x00\x6e\x00\ +\x69\x00\x6e\x00\x67\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\ +\x67\x00\x65\x00\x6b\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x76\x00\ +\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\x65\x00\ +\x20\x00\x74\x00\x75\x00\x73\x00\x73\x00\x65\x00\x6e\x00\x20\x00\ +\x64\x00\x72\x00\x61\x00\x61\x00\x64\x00\x6d\x00\x6f\x00\x64\x00\ +\x65\x00\x6c\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\ +\x61\x00\x74\x00\x20\x00\x6c\x00\x79\x00\x6e\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x46\x53\x77\x61\x70\x73\x20\x64\x69\x73\ +\x70\x6c\x61\x79\x20\x6d\x6f\x64\x65\x20\x6f\x66\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x20\x6f\x62\x6a\x65\x63\x74\x73\x20\x62\x65\ +\x74\x77\x65\x65\x6e\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x20\ +\x61\x6e\x64\x20\x66\x6c\x61\x74\x6c\x69\x6e\x65\x73\x07\x00\x00\ +\x00\x17\x44\x72\x61\x66\x74\x5f\x54\x6f\x67\x67\x6c\x65\x44\x69\ +\x73\x70\x6c\x61\x79\x4d\x6f\x64\x65\x01\x03\x00\x00\x00\x28\x00\ +\x57\x00\x69\x00\x73\x00\x73\x00\x65\x00\x6c\x00\x20\x00\x76\x00\ +\x6f\x00\x6f\x00\x72\x00\x6b\x00\x6f\x00\x6d\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\x0e\x00\x4b\x00\x6e\x00\x69\x00\ +\x70\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x72\x00\x65\x00\x6b\x00\ +\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x67\x00\x65\x00\x6b\x00\ +\x6f\x00\x73\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\ +\x77\x00\x65\x00\x72\x00\x70\x00\x2c\x00\x20\x00\x6f\x00\x66\x00\ +\x20\x00\x73\x00\x74\x00\x72\x00\x65\x00\x6b\x00\x20\x00\x27\x00\ +\x6e\x00\x20\x00\x65\x00\x6e\x00\x6b\x00\x65\x00\x6c\x00\x65\x00\ +\x20\x00\x76\x00\x6c\x00\x61\x00\x6b\x00\x2e\x00\x20\x00\x43\x00\ +\x54\x00\x52\x00\x4c\x00\x20\x00\x68\x00\x65\x00\x67\x00\x2c\x00\ +\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\x62\x00\ +\x65\x00\x70\x00\x65\x00\x72\x00\x6b\x00\x20\x00\x74\x00\x6f\x00\ +\x74\x00\x20\x00\x68\x00\x75\x00\x69\x00\x64\x00\x69\x00\x67\x00\ +\x65\x00\x20\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\x00\ +\x74\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x74\x00\x6f\x00\x74\x00\ +\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x6e\x00\x6f\x00\x72\x00\ +\x6d\x00\x61\x00\x61\x00\x6c\x00\x6c\x00\x79\x00\x6e\x00\x2c\x00\ +\x20\x00\x41\x00\x4c\x00\x54\x00\x20\x00\x6b\x00\x65\x00\x65\x00\ +\x72\x00\x20\x00\x6f\x00\x6d\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\x00\x48\x00\x65\x00\x72\x00\x73\x00\x74\x00\x65\x00\x6c\x00\ +\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x6c\x00\x61\x00\x61\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\x4e\x00\x48\x00\x65\x00\x72\x00\ +\x73\x00\x74\x00\x65\x00\x6c\x00\x20\x00\x64\x00\x69\x00\x65\x00\ +\x20\x00\x6c\x00\x61\x00\x61\x00\x73\x00\x74\x00\x65\x00\x20\x00\ +\x67\x00\x65\x00\x74\x00\x65\x00\x6b\x00\x65\x00\x6e\x00\x64\x00\ +\x65\x00\x20\x00\x6c\x00\x79\x00\x6e\x00\x73\x00\x65\x00\x67\x00\ +\x6d\x00\x65\x00\x6e\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\xcc\x00\ +\x53\x00\x6d\x00\x65\x00\x6c\x00\x74\x00\x20\x00\x64\x00\x69\x00\ +\x65\x00\x20\x00\x67\x00\x65\x00\x6b\x00\x6f\x00\x73\x00\x65\x00\ +\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\ +\x70\x00\x65\x00\x20\x00\x73\x00\x61\x00\x61\x00\x6d\x00\x20\x00\ +\x69\x00\x6e\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x2c\x00\x20\x00\ +\x6f\x00\x66\x00\x20\x00\x76\x00\x65\x00\x72\x00\x61\x00\x6e\x00\ +\x64\x00\x65\x00\x72\x00\x20\x00\x67\x00\x65\x00\x73\x00\x6c\x00\ +\x6f\x00\x74\x00\x65\x00\x20\x00\x64\x00\x72\x00\x61\x00\x64\x00\ +\x65\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x67\x00\x65\x00\x76\x00\ +\x75\x00\x6c\x00\x64\x00\x65\x00\x20\x00\x76\x00\x6c\x00\x61\x00\ +\x6b\x00\x6b\x00\x65\x00\x2c\x00\x20\x00\x6f\x00\x66\x00\x20\x00\ +\x76\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x69\x00\x67\x00\x20\x00\ +\x76\x00\x6c\x00\x61\x00\x6b\x00\x6b\x00\x65\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\x67\ +\x00\x72\x00\x61\x00\x64\x00\x65\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\x88\x00\x53\x00\x6b\x00\x65\x00\x70\x00\x20\x00\ +\x27\x00\x6e\x00\x20\x00\x76\x00\x65\x00\x65\x00\x6c\x00\x76\x00\ +\x75\x00\x6c\x00\x64\x00\x69\x00\x67\x00\x65\x00\x2d\x00\x70\x00\ +\x75\x00\x6e\x00\x74\x00\x20\x00\x64\x00\x72\x00\x61\x00\x61\x00\ +\x64\x00\x2e\x00\x20\x00\x43\x00\x54\x00\x52\x00\x4c\x00\x20\x00\ +\x76\x00\x61\x00\x73\x00\x20\x00\x74\x00\x65\x00\x20\x00\x68\x00\ +\x65\x00\x67\x00\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\ +\x54\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x76\x00\x61\x00\x73\x00\ +\x20\x00\x74\x00\x65\x00\x20\x00\x68\x00\x6f\x00\x75\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\x44\x00\x72\x00\ +\x61\x00\x61\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\x57\x00\x69\x00\x73\x00\x73\ +\x00\x65\x00\x6c\x00\x20\x00\x74\x00\x75\x00\x73\x00\x73\x00\x65\ +\x00\x6e\x00\x20\x00\x44\x00\x72\x00\x61\x00\x61\x00\x64\x00\x77\ +\x00\x65\x00\x72\x00\x6b\x00\x20\x00\x65\x00\x6e\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\x28\x00\x44\x00\x72\x00\x61\x00\x61\x00\x64\x00\ +\x77\x00\x65\x00\x72\x00\x6b\x00\x20\x00\x6e\x00\x61\x00\x20\x00\ +\x42\x00\x73\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\x34\x00\x57\x00\x69\x00\ +\x73\x00\x73\x00\x65\x00\x6c\x00\x20\x00\x53\x00\x56\x00\x47\x00\ +\x20\x00\x50\x00\x61\x00\x74\x00\x72\x00\x6f\x00\x6e\x00\x65\x00\ +\x20\x00\x6c\x00\x69\x00\x67\x00\x67\x00\x69\x00\x6e\x00\x67\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\x54\x00\x72\x00\x75\ +\x00\x73\x00\x74\x00\x72\x00\x65\x00\x65\x00\x70\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\x54\x00\ +\x72\x00\x75\x00\x73\x00\x74\x00\x72\x00\x65\x00\x65\x00\x70\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\x54\x00\x72\x00\x75\x00\x73\x00\x74\x00\x72\x00\x65\x00\x65\ +\x00\x70\x00\x20\x00\x39\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0b\ +\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x39\x07\x00\x00\x00\x1d\ +\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\ +\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x74\x00\x4b\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x6f\x00\ +\x6c\x00\x65\x00\x65\x00\x72\x00\x20\x00\x68\x00\x69\x00\x65\x00\ +\x72\x00\x64\x00\x69\x00\x65\x00\x20\x00\x61\x00\x73\x00\x20\x00\ +\x6a\x00\x79\x00\x20\x00\x64\x00\x69\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\x76\x00\x6c\x00\x61\x00\x6b\x00\x6b\x00\x65\x00\x29\x00\ +\x20\x00\x77\x00\x69\x00\x6c\x00\x20\x00\x69\x00\x6e\x00\x76\x00\ +\x6f\x00\x65\x00\x72\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\x96\x00\x4d\x00\x65\x00\x72\x00\x6b\ +\x00\x20\x00\x64\x00\x69\x00\x74\x00\x20\x00\x69\x00\x6e\x00\x64\ +\x00\x69\x00\x65\x00\x6e\x00\x20\x00\x6a\x00\x79\x00\x20\x00\x64\ +\x00\x69\x00\x65\x00\x20\x00\x62\x00\x6c\x00\x6f\x00\x6b\x00\x6b\ +\x00\x65\x00\x20\x00\x73\x00\x6f\x00\x6e\x00\x64\x00\x65\x00\x72\ +\x00\x20\x00\x6e\x00\x61\x00\x61\x00\x6d\x00\x20\x00\x28\x00\x77\ +\x00\x61\x00\x74\x00\x20\x00\x62\x00\x65\x00\x67\x00\x69\x00\x6e\ +\x00\x20\x00\x6d\x00\x65\x00\x74\x00\x20\x00\x61\x00\x2a\x00\x29\ +\x00\x20\x00\x6f\x00\x6f\x00\x6b\x00\x20\x00\x77\x00\x69\x00\x6c\ +\x00\x20\x00\x69\x00\x6e\x00\x76\x00\x6f\x00\x65\x00\x72\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\x4b\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x67\x00\ +\x65\x00\x6b\x00\x6f\x00\x70\x00\x70\x00\x65\x00\x6c\x00\x20\x00\ +\x61\x00\x61\x00\x6e\x00\x20\x00\x6c\x00\x79\x00\x6e\x00\x77\x00\ +\x79\x00\x64\x00\x74\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\x4b\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x6b\x00\x61\ +\x00\x72\x00\x74\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x73\ +\x00\x6c\x00\xea\x00\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x12\x43\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\ +\x66\x69\x6c\x65\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x1a\x00\x43\x00\x6f\ +\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x20\ +\x00\x6d\x00\x6f\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\ +\x43\x6f\x6e\x73\x74\x72\x61\x69\x6e\x20\x6d\x6f\x64\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x16\x00\x4b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\ +\x72\x00\x75\x00\x6b\x00\x73\x00\x69\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x0c\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\ +\x6e\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x20\x00\x4b\x00\x6f\x00\x6e\x00\ +\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x73\x00\x69\x00\x65\x00\ +\x6b\x00\x6c\x00\x65\x00\x75\x00\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\x2a\x00\x4b\x00\ +\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x73\x00\ +\x69\x00\x65\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x65\x00\x70\x00\ +\x6e\x00\x61\x00\x61\x00\x6d\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\x22\x00\x44\x00\ +\x58\x00\x46\x00\x20\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\ +\x61\x00\x74\x00\x6f\x00\x70\x00\x73\x00\x69\x00\x65\x00\x73\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\x18\x00\x56\x00\x65\x00\x72\x00\x73\x00\x75\x00\x69\x00\ +\x6d\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\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\x48\x00\x56\x00\x65\x00\x72\ +\x00\x73\x00\x75\x00\x69\x00\x6d\x00\x68\x00\x6f\x00\x6f\x00\x67\ +\x00\x74\x00\x65\x00\x20\x00\x76\x00\x69\x00\x72\x00\x20\x00\x73\ +\x00\x6b\x00\x72\x00\x69\x00\x66\x00\x20\x00\x65\x00\x6e\x00\x20\ +\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x65\ +\x00\x73\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\x20\x00\x56\x00\x65\x00\ +\x72\x00\x73\x00\x75\x00\x69\x00\x6d\x00\x20\x00\x6c\x00\x79\x00\ +\x6e\x00\x77\x00\x79\x00\x64\x00\x74\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\x2a\x00\x56\ +\x00\x65\x00\x72\x00\x73\x00\x75\x00\x69\x00\x6d\x00\x20\x00\x73\ +\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\x00\x61\x00\x72\x00\x64\ +\x00\x62\x00\x6c\x00\x61\x00\x64\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\x18\ +\x00\x56\x00\x65\x00\x72\x00\x73\x00\x75\x00\x69\x00\x6d\x00\x73\ +\x00\x6b\x00\x72\x00\x69\x00\x66\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\x56\x00\x65\x00\ +\x72\x00\x73\x00\x75\x00\x69\x00\x6d\x00\x20\x00\x73\x00\x6b\x00\ +\x72\x00\x69\x00\x66\x00\x68\x00\x6f\x00\x6f\x00\x67\x00\x74\x00\ +\x65\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\x20\x00\x56\x00\x65\x00\x72\x00\x73\x00\x75\ +\x00\x69\x00\x6d\x00\x20\x00\x77\x00\x65\x00\x72\x00\x6b\x00\x76\ +\x00\x6c\x00\x61\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\x32\x00\x44\x00\ +\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\x00\x65\x00\x73\x00\ +\x2d\x00\x20\x00\x26\x00\x20\x00\x4c\x00\x65\x00\x69\x00\x65\x00\ +\x72\x00\x70\x00\x79\x00\x6c\x00\x73\x00\x74\x00\x79\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\x0c\ +\x00\x50\x00\x75\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\x75\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\x75\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\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\x36\x00\x56\x00\x75\x00\x6c\x00\x20\x00\x76\x00\ +\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\x65\x00\ +\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x65\x00\ +\x20\x00\x62\x00\x65\x00\x67\x00\x69\x00\x6e\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\x38\x00\x41\x00\x6c\x00\x67\x00\x65\x00\x6d\x00\x65\ +\x00\x6e\x00\x65\x00\x20\x00\x74\x00\x65\x00\x6b\x00\x65\x00\x6e\ +\x00\x69\x00\x6e\x00\x67\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\ +\x00\x6c\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\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\x28\x00\x41\x00\x6c\x00\x67\x00\x65\x00\x6d\x00\x65\ +\x00\x6e\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\ +\x00\x6c\x00\x6c\x00\x69\x00\x6e\x00\x67\x00\x73\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x10\x47\x65\x6e\x65\x72\x61\x6c\x20\x73\x65\ +\x74\x74\x69\x6e\x67\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\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\x47\ +\x00\x6c\x00\x6f\x00\x62\x00\x61\x00\x6c\x00\x65\x00\x20\x00\x6b\ +\x00\x6f\x00\x70\x00\x69\x00\x65\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\xe6\ +\x00\x49\x00\x6e\x00\x64\x00\x69\x00\x65\x00\x6e\x00\x20\x00\x67\ +\x00\x65\x00\x6d\x00\x65\x00\x72\x00\x6b\x00\x2c\x00\x20\x00\x73\ +\x00\x61\x00\x6c\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\x63\ +\x00\x61\x00\x64\x00\x20\x00\x70\x00\x72\x00\x6f\x00\x62\x00\x65\ +\x00\x65\x00\x72\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x73\x00\x61\ +\x00\x6d\x00\x65\x00\x76\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x6e\ +\x00\x64\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\ +\x00\x65\x00\x72\x00\x70\x00\x65\x00\x20\x00\x74\x00\x65\x00\x20\ +\x00\x76\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x69\x00\x67\x00\x20\ +\x00\x69\x00\x6e\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x64\x00\x72\ +\x00\x61\x00\x61\x00\x64\x00\x77\x00\x65\x00\x72\x00\x6b\x00\x2e\ +\x00\x20\x00\x44\x00\x69\x00\x74\x00\x20\x00\x6b\x00\x61\x00\x6e\ +\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x72\x00\x75\x00\x6b\x00\x6b\ +\x00\x69\x00\x65\x00\x20\x00\x6e\x00\x65\x00\x65\x00\x6d\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\ +\x00\xda\x00\x41\x00\x73\x00\x20\x00\x64\x00\x69\x00\x74\x00\x20\ +\x00\x67\x00\x65\x00\x6b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x69\ +\x00\x73\x00\x2c\x00\x20\x00\x73\x00\x61\x00\x6c\x00\x20\x00\x6b\ +\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x6d\x00\x6f\x00\x64\x00\x75\ +\x00\x73\x00\x20\x00\x62\x00\x65\x00\x68\x00\x6f\x00\x75\x00\x20\ +\x00\x77\x00\x6f\x00\x72\x00\x64\x00\x20\x00\x69\x00\x6e\x00\x20\ +\x00\x61\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x62\x00\x65\x00\x76\ +\x00\x65\x00\x6c\x00\x65\x00\x2c\x00\x20\x00\x61\x00\x6e\x00\x64\ +\x00\x65\x00\x72\x00\x73\x00\x20\x00\x73\x00\x61\x00\x6c\x00\x20\ +\x00\x62\x00\x65\x00\x76\x00\x65\x00\x6c\x00\x65\x00\x20\x00\x61\ +\x00\x6c\x00\x74\x00\x79\x00\x64\x00\x20\x00\x62\x00\x65\x00\x67\ +\x00\x69\x00\x6e\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x67\x00\x65\ +\x00\x65\x00\x6e\x00\x2d\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x65\ +\x00\x20\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\xe0\x00\x41\x00\ +\x73\x00\x20\x00\x64\x00\x69\x00\x74\x00\x20\x00\x67\x00\x65\x00\ +\x6b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x69\x00\x73\x00\x2c\x00\ +\x20\x00\x73\x00\x61\x00\x6c\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\ +\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\x65\x00\x20\x00\x67\x00\ +\x65\x00\x76\x00\x75\x00\x6c\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\ +\x72\x00\x6b\x00\x6f\x00\x6d\x00\x20\x00\x69\x00\x6e\x00\x20\x00\ +\x64\x00\x69\x00\x65\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\ +\x75\x00\x69\x00\x6d\x00\x74\x00\x6f\x00\x65\x00\x73\x00\x74\x00\ +\x61\x00\x6e\x00\x64\x00\x2e\x00\x20\x00\x41\x00\x6e\x00\x64\x00\ +\x65\x00\x72\x00\x73\x00\x69\x00\x6e\x00\x73\x00\x20\x00\x73\x00\ +\x61\x00\x6c\x00\x20\x00\x64\x00\x69\x00\x74\x00\x20\x00\x76\x00\ +\x65\x00\x72\x00\x74\x00\x6f\x00\x6f\x00\x6e\x00\x20\x00\x61\x00\ +\x73\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x64\x00\x72\x00\x61\x00\ +\x61\x00\x64\x00\x6d\x00\x6f\x00\x64\x00\x65\x00\x6c\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x66\x49\x66\x20\x74\x68\x69\x73\x20\x69\ +\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\x20\x61\ +\x73\x20\x66\x69\x6c\x6c\x65\x64\x20\x61\x73\x20\x64\x65\x66\x61\ +\x75\x6c\x74\x2e\x20\x4f\x74\x68\x65\x72\x77\x69\x73\x65\x2c\x20\ +\x74\x68\x65\x79\x20\x77\x69\x6c\x6c\x20\x61\x70\x70\x65\x61\x72\ +\x20\x61\x73\x20\x77\x69\x72\x65\x66\x72\x61\x6d\x65\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x01\x0c\x00\x41\x00\x73\x00\x20\x00\x64\x00\x69\x00\ +\x74\x00\x20\x00\x67\x00\x65\x00\x6b\x00\x69\x00\x65\x00\x73\x00\ +\x20\x00\x69\x00\x73\x00\x2c\x00\x20\x00\x73\x00\x61\x00\x6c\x00\ +\x20\x00\x6a\x00\x79\x00\x20\x00\x61\x00\x6c\x00\x74\x00\x79\x00\ +\x64\x00\x20\x00\x76\x00\x61\x00\x73\x00\x20\x00\x68\x00\x65\x00\ +\x67\x00\x20\x00\x61\x00\x61\x00\x6e\x00\x20\x00\x62\x00\x65\x00\ +\x73\x00\x74\x00\x61\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x20\x00\ +\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\ +\x65\x00\x20\x00\x74\x00\x65\x00\x72\x00\x77\x00\x79\x00\x6c\x00\ +\x20\x00\x6a\x00\x79\x00\x20\x00\x74\x00\x65\x00\x6b\x00\x65\x00\ +\x6e\x00\x2e\x00\x20\x00\x49\x00\x6e\x00\x64\x00\x69\x00\x65\x00\ +\x6e\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x2c\x00\x20\x00\x73\x00\ +\x61\x00\x6c\x00\x20\x00\x6a\x00\x79\x00\x20\x00\x73\x00\x6c\x00\ +\x65\x00\x67\x00\x73\x00\x20\x00\x76\x00\x61\x00\x73\x00\x20\x00\ +\x68\x00\x65\x00\x67\x00\x20\x00\x77\x00\x61\x00\x6e\x00\x6e\x00\ +\x65\x00\x65\x00\x72\x00\x20\x00\x6a\x00\x79\x00\x20\x00\x43\x00\ +\x54\x00\x52\x00\x4c\x00\x20\x00\x64\x00\x72\x00\x75\x00\x6b\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\x6e\x00\x76\x00\x6f\x00\x65\x00\x72\ +\x00\x20\x00\x2a\x00\x62\x00\x6c\x00\x6f\x00\x6b\x00\x6b\x00\x65\ +\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\x22\ +\x00\x56\x00\x6f\x00\x65\x00\x72\x00\x20\x00\x4f\x00\x43\x00\x41\ +\x00\x20\x00\x61\x00\x72\x00\x65\x00\x61\x00\x73\x00\x20\x00\x69\ +\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x10\x49\x6d\x70\x6f\ +\x72\x74\x20\x4f\x43\x41\x20\x61\x72\x65\x61\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x20\x00\x56\x00\x6f\x00\x65\x00\x72\x00\x20\x00\x75\ +\x00\x69\x00\x74\x00\x6c\x00\x65\x00\x67\x00\x74\x00\x65\x00\x20\ +\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x49\x6d\ +\x70\x6f\x72\x74\x20\x6c\x61\x79\x6f\x75\x74\x73\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x14\x00\x49\x00\x6e\x00\x76\x00\x6f\x00\x65\x00\x72\ +\x00\x73\x00\x74\x00\x79\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\x34\x00\x56\x00\x6f\x00\x65\x00\x72\x00\x20\ +\x00\x74\x00\x65\x00\x6b\x00\x73\x00\x20\x00\x61\x00\x6e\x00\x64\ +\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\x00\x73\x00\x69\ +\x00\x65\x00\x73\x00\x20\x00\x69\x00\x6e\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x1b\x49\x6d\x70\x6f\x72\x74\x20\x74\x65\x78\x74\x73\ +\x20\x61\x6e\x64\x20\x64\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x07\ +\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\ +\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\ +\x74\x01\x03\x00\x00\x00\x1c\x00\x49\x00\x6e\x00\x76\x00\x6f\x00\ +\x65\x00\x72\x00\x2f\x00\x55\x00\x69\x00\x74\x00\x76\x00\x6f\x00\ +\x65\x00\x72\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0d\x49\x6d\x70\ +\x6f\x72\x74\x2f\x45\x78\x70\x6f\x72\x74\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x30\x00\x49\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x61\ +\x00\x6c\x00\x20\x00\x70\x00\x72\x00\x65\x00\x63\x00\x69\x00\x73\ +\x00\x69\x00\x6f\x00\x6e\x00\x20\x00\x6c\x00\x65\x00\x76\x00\x65\ +\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x18\x49\x6e\x74\x65\ +\x72\x6e\x61\x6c\x20\x70\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\ +\x65\x76\x65\x6c\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\ +\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x22\x00\x56\x00\x65\ +\x00\x72\x00\x65\x00\x6e\x00\x69\x00\x67\x00\x20\x00\x76\x00\x6f\ +\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\x65\x08\x00\ +\x00\x00\x00\x06\x00\x00\x00\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\x34\x00\ +\x4d\x00\x61\x00\x6b\x00\x73\x00\x20\x00\x4b\x00\x6f\x00\x6d\x00\ +\x70\x00\x6c\x00\x65\x00\x6b\x00\x73\x00\x65\x00\x20\x00\x4c\x00\ +\x79\x00\x6e\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\x08\x00\x47\x00\x65\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\x20\x00\x47\x00\x65\x00\x65\x00\x6e\x00\x20\x00\ +\x28\x00\x76\x00\x69\x00\x6e\x00\x6e\x00\x69\x00\x67\x00\x73\x00\ +\x74\x00\x65\x00\x29\x08\x00\x00\x00\x00\x06\x00\x00\x00\x0e\x4e\ +\x6f\x6e\x65\x20\x28\x66\x61\x73\x74\x65\x73\x74\x29\x07\x00\x00\ +\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\ +\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\xfe\x00\x4e\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\ +\x6c\x00\x6c\x00\x79\x00\x2c\x00\x20\x00\x61\x00\x66\x00\x74\x00\ +\x65\x00\x72\x00\x20\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x69\x00\ +\x6e\x00\x67\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\ +\x74\x00\x73\x00\x2c\x00\x20\x00\x74\x00\x68\x00\x65\x00\x20\x00\ +\x63\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x73\x00\x20\x00\x67\x00\ +\x65\x00\x74\x00\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\ +\x74\x00\x65\x00\x64\x00\x2e\x00\x20\x00\x49\x00\x66\x00\x20\x00\ +\x74\x00\x68\x00\x69\x00\x73\x00\x20\x00\x6f\x00\x70\x00\x74\x00\ +\x69\x00\x6f\x00\x6e\x00\x20\x00\x69\x00\x73\x00\x20\x00\x63\x00\ +\x68\x00\x65\x00\x63\x00\x6b\x00\x65\x00\x64\x00\x2c\x00\x20\x00\ +\x74\x00\x68\x00\x65\x00\x20\x00\x62\x00\x61\x00\x73\x00\x65\x00\ +\x20\x00\x6f\x00\x62\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x73\x00\ +\x20\x00\x77\x00\x69\x00\x6c\x00\x6c\x00\x20\x00\x62\x00\x65\x00\ +\x20\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x65\x00\ +\x64\x00\x20\x00\x69\x00\x6e\x00\x73\x00\x74\x00\x65\x00\x61\x00\ +\x64\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7f\x4e\x6f\x72\ +\x6d\x61\x6c\x6c\x79\x2c\x20\x61\x66\x74\x65\x72\x20\x63\x6f\x70\ +\x79\x69\x6e\x67\x20\x6f\x62\x6a\x65\x63\x74\x73\x2c\x20\x74\x68\ +\x65\x20\x63\x6f\x70\x69\x65\x73\x20\x67\x65\x74\x20\x73\x65\x6c\ +\x65\x63\x74\x65\x64\x2e\x20\x49\x66\x20\x74\x68\x69\x73\x20\x6f\ +\x70\x74\x69\x6f\x6e\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\ +\x2c\x20\x74\x68\x65\x20\x62\x61\x73\x65\x20\x6f\x62\x6a\x65\x63\ +\x74\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x73\x65\x6c\x65\x63\ +\x74\x65\x64\x20\x69\x6e\x73\x74\x65\x61\x64\x2e\x07\x00\x00\x00\ +\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x22\x00\x4f\x00\x43\x00\x41\x00\x20\x00\x66\x00\x6f\ +\x00\x72\x00\x6d\x00\x61\x00\x61\x00\x74\x00\x6f\x00\x70\x00\x73\ +\x00\x69\x00\x65\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\x3e\x00\x4f\x00\x6f\x00\x72\ +\x00\x73\x00\x70\x00\x72\x00\x6f\x00\x6e\x00\x6b\x00\x6c\x00\x69\ +\x00\x6b\x00\x65\x00\x20\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\x72\ +\x00\x20\x00\x65\x00\x6e\x00\x20\x00\x6c\x00\x79\x00\x6e\x00\x77\ +\x00\x79\x00\x64\x00\x74\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\x22\x00\x53\x00\x56\x00\x47\x00\x2d\x00\ +\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x61\x00\x74\x00\x6f\x00\ +\x70\x00\x73\x00\x69\x00\x65\x00\x73\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\x68\x00\x53\x00\ +\x70\x00\x61\x00\x61\x00\x72\x00\x20\x00\x64\x00\x69\x00\x65\x00\ +\x20\x00\x68\x00\x75\x00\x69\x00\x64\x00\x69\x00\x67\x00\x65\x00\ +\x20\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x65\x00\ +\x6e\x00\x20\x00\x6c\x00\x79\x00\x6e\x00\x77\x00\x79\x00\x64\x00\ +\x74\x00\x65\x00\x20\x00\x76\x00\x69\x00\x72\x00\x20\x00\x61\x00\ +\x6c\x00\x6c\x00\x65\x00\x20\x00\x73\x00\x65\x00\x73\x00\x73\x00\ +\x69\x00\x65\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\x1c\x00\x53\x00\x6b\ +\x00\x75\x00\x69\x00\x6e\x00\x73\x00\x73\x00\x74\x00\x72\x00\x65\ +\x00\x65\x00\x70\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\ +\x1c\x00\x53\x00\x6b\x00\x75\x00\x69\x00\x6e\x00\x73\x00\x73\x00\ +\x74\x00\x72\x00\x65\x00\x65\x00\x70\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\x1c\x00\x53\x00\x6b\x00\x75\x00\x69\x00\x6e\ +\x00\x73\x00\x73\x00\x74\x00\x72\x00\x65\x00\x65\x00\x70\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\x56\x00\x61\x00\ +\x73\x00\x68\x00\x65\x00\x67\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\ +\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\x92\x00\x44\x00\x69\x00\x65\x00\x20\ +\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x6b\x00\x61\x00\x72\ +\x00\x74\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x6c\ +\x00\xea\x00\x65\x00\x72\x00\x20\x00\x76\x00\x69\x00\x72\x00\x20\ +\x00\x64\x00\x69\x00\x65\x00\x20\x00\x74\x00\x72\x00\x61\x00\x6e\ +\x00\x73\x00\x66\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x73\x00\x69\ +\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x44\x00\x58\ +\x00\x46\x00\x20\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x65\ +\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x6c\x00\x79\x00\x6e\x00\x77\ +\x00\x79\x00\x64\x00\x74\x00\x65\x00\x73\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\x00\x44\x00\ +\x69\x00\x65\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\x75\x00\ +\x69\x00\x6d\x00\x20\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\ +\x61\x00\x61\x00\x72\x00\x64\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\ +\x74\x00\x65\x00\x20\x00\x67\x00\x65\x00\x62\x00\x72\x00\x75\x00\ +\x69\x00\x6b\x00\x20\x00\x77\x00\x61\x00\x6e\x00\x6e\x00\x65\x00\ +\x65\x00\x72\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x6e\x00\x75\x00\ +\x77\x00\x65\x00\x20\x00\x74\x00\x65\x00\x6b\x00\x65\x00\x6e\x00\ +\x62\x00\x6c\x00\x61\x00\x64\x00\x20\x00\x67\x00\x65\x00\x73\x00\ +\x6b\x00\x65\x00\x70\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x64\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\x88\x00\x44\ +\x00\x69\x00\x65\x00\x20\x00\x61\x00\x61\x00\x6e\x00\x74\x00\x61\ +\x00\x6c\x00\x20\x00\x64\x00\x65\x00\x73\x00\x69\x00\x6d\x00\x61\ +\x00\x6c\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x69\x00\x6e\ +\x00\x74\x00\x65\x00\x72\x00\x6e\x00\x65\x00\x20\x00\x6b\x00\x6f\ +\x00\xf6\x00\x72\x00\x64\x00\x69\x00\x6e\x00\x61\x00\x61\x00\x74\ +\x00\x62\x00\x65\x00\x72\x00\x65\x00\x6b\x00\x65\x00\x6e\x00\x69\ +\x00\x6e\x00\x67\x00\x65\x00\x20\x00\x28\x00\x62\x00\x76\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\x96\x00\x44\x00\x69\x00\x74\x00\ +\x20\x00\x69\x00\x73\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\ +\x76\x00\x65\x00\x72\x00\x73\x00\x75\x00\x69\x00\x6d\x00\x6b\x00\ +\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x76\x00\x69\x00\x72\x00\ +\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\ +\x70\x00\x65\x00\x20\x00\x77\x00\x61\x00\x74\x00\x20\x00\x67\x00\ +\x65\x00\x74\x00\x65\x00\x6b\x00\x65\x00\x6e\x00\x20\x00\x77\x00\ +\x6f\x00\x72\x00\x64\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x6b\x00\ +\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\x00\x73\x00\ +\x69\x00\x65\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\xe4\x00\x48\ +\x00\x69\x00\x65\x00\x72\x00\x64\x00\x69\x00\x65\x00\x20\x00\x69\ +\x00\x73\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x76\x00\x65\ +\x00\x72\x00\x73\x00\x75\x00\x69\x00\x6d\x00\x20\x00\x73\x00\x6b\ +\x00\x72\x00\x69\x00\x66\x00\x6e\x00\x61\x00\x61\x00\x6d\x00\x20\ +\x00\x76\x00\x69\x00\x72\x00\x20\x00\x61\x00\x6c\x00\x6c\x00\x65\ +\x00\x20\x00\x74\x00\x65\x00\x6b\x00\x65\x00\x6e\x00\x69\x00\x6e\ +\x00\x67\x00\x74\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x65\x00\x20\ +\x00\x65\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x6d\x00\x65\x00\x6e\ +\x00\x73\x00\x69\x00\x65\x00\x73\x00\x2e\x00\x20\x00\x44\x00\x69\ +\x00\x74\x00\x20\x00\x6b\x00\x61\x00\x6e\x00\x20\x00\x27\x00\x6e\ +\x00\x20\x00\x73\x00\x6b\x00\x72\x00\x69\x00\x66\x00\x6e\x00\x61\ +\x00\x61\x00\x6d\x00\x20\x00\x73\x00\x6f\x00\x6f\x00\x73\x00\x20\ +\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x22\x00\x2c\ +\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\ +\x00\x75\x00\x69\x00\x6d\x00\x73\x00\x74\x00\x79\x00\x6c\x00\x20\ +\x00\x73\x00\x6f\x00\x6f\x00\x73\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\x6f\x00\x66\x00\x20\ +\x00\x22\x00\x6d\x00\x6f\x00\x6e\x00\x6f\x00\x22\x00\x2c\x00\x20\ +\x00\x6f\x00\x66\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x66\x00\x61\ +\x00\x6d\x00\x69\x00\x6c\x00\x69\x00\x65\x00\x20\x00\x73\x00\x6f\ +\x00\x6f\x00\x73\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\x6f\x00\x66\x00\x20\x00\x27\ +\x00\x6e\x00\x20\x00\x6e\x00\x61\x00\x61\x00\x6d\x00\x20\x00\x6d\ +\x00\x65\x00\x74\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x73\x00\x74\ +\x00\x79\x00\x6c\x00\x20\x00\x73\x00\x6f\x00\x6f\x00\x73\x00\x20\ +\x00\x22\x00\x41\x00\x72\x00\x69\x00\x61\x00\x6c\x00\x3a\x00\x42\ +\x00\x6f\x00\x6c\x00\x64\x00\x22\x00\x20\x00\x77\x00\x65\x00\x65\ +\x00\x73\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\x72\x00\x44\x00\x69\x00\x74\x00\x20\x00\x69\ +\x00\x73\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x76\x00\x65\ +\x00\x72\x00\x73\x00\x75\x00\x69\x00\x6d\x00\x20\x00\x67\x00\x72\ +\x00\x6f\x00\x65\x00\x70\x00\x6e\x00\x61\x00\x61\x00\x6d\x00\x20\ +\x00\x76\x00\x69\x00\x72\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\ +\x00\x6b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\x6b\ +\x00\x73\x00\x69\x00\x65\x00\x67\x00\x65\x00\x6f\x00\x6d\x00\x65\ +\x00\x74\x00\x72\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x38\x54\x68\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x64\x65\ +\x66\x61\x75\x6c\x74\x20\x67\x72\x6f\x75\x70\x20\x6e\x61\x6d\x65\ +\x20\x66\x6f\x72\x20\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\ +\x6e\x20\x67\x65\x6f\x6d\x65\x74\x72\x79\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\x9a\x00\x48\x00\x69\x00\x65\x00\x72\x00\x64\x00\x69\x00\x65\ +\x00\x20\x00\x69\x00\x73\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\ +\x00\x67\x00\x65\x00\x6b\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x6d\ +\x00\x65\x00\x74\x00\x6f\x00\x64\x00\x65\x00\x20\x00\x76\x00\x69\ +\x00\x72\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x69\x00\x6e\ +\x00\x76\x00\x6f\x00\x65\x00\x72\x00\x20\x00\x76\x00\x61\x00\x6e\ +\x00\x20\x00\x53\x00\x56\x00\x47\x00\x20\x00\x76\x00\x6f\x00\x6f\ +\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\x6b\x00\x6c\x00\x65\ +\x00\x75\x00\x72\x00\x20\x00\x6e\x00\x61\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\xc8\x00\x44\x00\x69\x00\x74\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x67\x00\x65\x00\ +\x6b\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x6d\x00\x65\x00\x74\x00\ +\x6f\x00\x64\x00\x65\x00\x20\x00\x76\x00\x69\x00\x72\x00\x20\x00\ +\x64\x00\x69\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x76\x00\x6f\x00\ +\x65\x00\x72\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x76\x00\x65\x00\ +\x72\x00\x77\x00\x65\x00\x72\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x44\x00\x58\x00\x46\x00\ +\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\ +\x70\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x6e\x00\ +\x61\x00\x20\x00\x46\x00\x72\x00\x65\x00\x65\x00\x43\x00\x41\x00\ +\x44\x00\x2e\x00\x20\x00\x49\x00\x6e\x00\x64\x00\x69\x00\x65\x00\ +\x6e\x00\x20\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x6b\x00\ +\x61\x00\x72\x00\x74\x00\x65\x00\x72\x00\x69\x00\x6e\x00\x67\x00\ +\x20\x00\x67\x00\x65\x00\x6b\x00\x69\x00\x65\x00\x73\x00\x20\x00\ +\x69\x00\x73\x00\x2c\x00\x6d\x00\x6f\x00\x65\x00\x74\x00\x20\x00\ +\x6a\x00\x79\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x6b\x00\x6c\x00\ +\x65\x00\x75\x00\x72\x00\x6b\x00\x61\x00\x72\x00\x74\x00\x65\x00\ +\x72\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x6c\x00\xea\x00\x65\x00\ +\x72\x00\x20\x00\x6b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x77\x00\ +\x61\x00\x74\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x76\x00\x65\x00\ +\x72\x00\x77\x00\x65\x00\x72\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\ +\x73\x00\x74\x00\x61\x00\x62\x00\x65\x00\x6c\x00\x20\x00\x62\x00\ +\x65\x00\x76\x00\x61\x00\x74\x00\x20\x00\x77\x00\x61\x00\x74\x00\ +\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x6b\x00\x6c\x00\x65\x00\ +\x75\x00\x72\x00\x65\x00\x20\x00\x73\x00\x61\x00\x6c\x00\x20\x00\ +\x76\x00\x65\x00\x72\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x72\x00\ +\x20\x00\x6e\x00\x61\x00\x20\x00\x6c\x00\x79\x00\x6e\x00\x77\x00\ +\x79\x00\x64\x00\x74\x00\x65\x00\x73\x00\x2e\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\xe3\x54\x68\x69\x73\x20\x69\x73\x20\x74\ +\x68\x65\x20\x6d\x65\x74\x68\x6f\x64\x20\x63\x68\x6f\x6f\x73\x65\ +\x64\x20\x66\x6f\x72\x20\x69\x6d\x70\x6f\x72\x74\x69\x6e\x67\x20\ +\x6f\x72\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x69\x6e\x67\x20\x44\ +\x58\x46\x20\x6f\x62\x6a\x65\x63\x74\x20\x63\x6f\x6c\x6f\x72\x20\ +\x69\x6e\x74\x6f\x20\x46\x72\x65\x65\x43\x41\x44\x2e\x20\x0a\x49\ +\x66\x20\x63\x6f\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\ +\x69\x73\x20\x63\x68\x6f\x6f\x73\x65\x64\x2c\x20\x79\x6f\x75\x20\ +\x6d\x75\x73\x74\x20\x63\x68\x6f\x6f\x73\x65\x20\x61\x20\x63\x6f\ +\x6c\x6f\x72\x20\x6d\x61\x70\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\ +\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x61\x20\x74\x72\ +\x61\x6e\x73\x6c\x61\x74\x69\x6f\x6e\x20\x74\x61\x62\x6c\x65\x20\ +\x74\x68\x61\x74\x20\x77\x69\x6c\x6c\x20\x63\x6f\x6e\x76\x65\x72\ +\x74\x20\x63\x6f\x6c\x6f\x72\x73\x20\x69\x6e\x74\x6f\x20\x6c\x69\ +\x6e\x65\x77\x69\x64\x74\x68\x73\x2e\x0a\x07\x00\x00\x00\x1d\x47\ +\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\ +\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\ +\x00\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\x46\x00\x44\ +\x00\x69\x00\x74\x00\x20\x00\x69\x00\x73\x00\x20\x00\x64\x00\x69\ +\x00\x65\x00\x20\x00\x77\x00\x61\x00\x61\x00\x72\x00\x64\x00\x65\ +\x00\x20\x00\x77\x00\x61\x00\x74\x00\x20\x00\x67\x00\x65\x00\x62\ +\x00\x72\x00\x75\x00\x69\x00\x6b\x00\x20\x00\x77\x00\x6f\x00\x72\ +\x00\x64\x00\x20\x00\x64\x00\x65\x00\x75\x00\x72\x00\x20\x00\x66\ +\x00\x75\x00\x6e\x00\x6b\x00\x73\x00\x69\x00\x65\x00\x73\x00\x20\ +\x00\x77\x00\x61\x00\x74\x00\x20\x00\x67\x00\x65\x00\x62\x00\x72\ +\x00\x75\x00\x69\x00\x6b\x00\x20\x00\x6d\x00\x61\x00\x61\x00\x6b\ +\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x27\x00\x6e\x00\x20\ +\x00\x74\x00\x6f\x00\x6c\x00\x65\x00\x72\x00\x61\x00\x6e\x00\x73\ +\x00\x77\x00\x61\x00\x61\x00\x72\x00\x64\x00\x65\x00\x2e\x00\x20\ +\x00\x57\x00\x61\x00\x61\x00\x72\x00\x64\x00\x65\x00\x73\x00\x20\ +\x00\x6d\x00\x65\x00\x74\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\ +\x00\x6b\x00\x69\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x6f\x00\x6e\ +\x00\x64\x00\x65\x00\x72\x00\x20\x00\x68\x00\x69\x00\x65\x00\x72\ +\x00\x64\x00\x69\x00\x65\x00\x20\x00\x77\x00\x61\x00\x61\x00\x72\ +\x00\x64\x00\x65\x00\x20\x00\x73\x00\x61\x00\x6c\x00\x20\x00\x62\ +\x00\x65\x00\x68\x00\x61\x00\x6e\x00\x64\x00\x65\x00\x6c\x00\x20\ +\x00\x77\x00\x6f\x00\x72\x00\x64\x00\x20\x00\x61\x00\x73\x00\x20\ +\x00\x64\x00\x69\x00\x65\x00\x73\x00\x65\x00\x6c\x00\x66\x00\x64\ +\x00\x65\x00\x2e\x08\x00\x00\x00\x00\x06\x00\x00\x00\x7b\x54\x68\ +\x69\x73\x20\x69\x73\x20\x74\x68\x65\x20\x76\x61\x6c\x75\x65\x20\ +\x75\x73\x65\x64\x20\x62\x79\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\ +\x73\x20\x74\x68\x61\x74\x20\x75\x73\x65\x20\x61\x20\x74\x6f\x6c\ +\x65\x72\x61\x6e\x63\x65\x2e\x0a\x56\x61\x6c\x75\x65\x73\x20\x77\ +\x69\x74\x68\x20\x64\x69\x66\x66\x65\x72\x65\x6e\x63\x65\x73\x20\ +\x62\x65\x6c\x6f\x77\x20\x74\x68\x69\x73\x20\x76\x61\x6c\x75\x65\ +\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x74\x72\x65\x61\x74\x65\x64\ +\x20\x61\x73\x20\x73\x61\x6d\x65\x2e\x07\x00\x00\x00\x1d\x47\x75\ +\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\ +\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\x14\x00\x54\x00\x6f\x00\x6c\x00\x65\x00\x72\x00\x61\x00\x6e\x00\ +\x73\x00\x69\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\x4e\x00\x47\x00\x65\x00\x62\x00\x72\x00\ +\x75\x00\x69\x00\x6b\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\ +\x75\x00\x69\x00\x6d\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\x72\x00\ +\x20\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\ +\x75\x00\x69\x00\x6d\x00\x6c\x00\x79\x00\x6e\x00\x77\x00\x79\x00\ +\x64\x00\x74\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\xe4\x00\x57\ +\x00\x61\x00\x6e\x00\x6e\x00\x65\x00\x65\x00\x72\x00\x20\x00\x6b\ +\x00\x6f\x00\x6d\x00\x70\x00\x6c\x00\x65\x00\x6b\x00\x73\x00\x65\ +\x00\x20\x00\x6c\x00\x79\x00\x6e\x00\x65\x00\x20\x00\x65\x00\x6b\ +\x00\x73\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x65\x00\x65\x00\x72\ +\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x64\x00\x20\x00\x6e\x00\x61\ +\x00\x20\x00\x44\x00\x58\x00\x46\x00\x2c\x00\x20\x00\x77\x00\x6f\ +\x00\x72\x00\x64\x00\x20\x00\x68\x00\x75\x00\x6c\x00\x6c\x00\x65\ +\x00\x20\x00\x6f\x00\x6d\x00\x73\x00\x6b\x00\x65\x00\x70\x00\x20\ +\x00\x69\x00\x6e\x00\x20\x00\x76\x00\x65\x00\x65\x00\x6c\x00\x76\ +\x00\x75\x00\x6c\x00\x64\x00\x69\x00\x67\x00\x65\x00\x20\x00\x6c\ +\x00\x79\x00\x6e\x00\x73\x00\x65\x00\x67\x00\x6d\x00\x65\x00\x6e\ +\x00\x74\x00\x65\x00\x2e\x00\x20\x00\x48\x00\x69\x00\x65\x00\x72\ +\x00\x64\x00\x69\x00\x65\x00\x20\x00\x77\x00\x61\x00\x61\x00\x72\ +\x00\x64\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\x00\x64\x00\x69\ +\x00\x65\x00\x20\x00\x6d\x00\x61\x00\x6b\x00\x73\x00\x69\x00\x6d\ +\x00\x75\x00\x6d\x00\x20\x00\x6c\x00\x65\x00\x6e\x00\x67\x00\x74\ +\x00\x65\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x65\x00\x6c\ +\x00\x6b\x00\x65\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x61\x00\x6e\ +\x00\x20\x00\x68\x00\x69\x00\x65\x00\x72\x00\x64\x00\x69\x00\x65\ +\x00\x20\x00\x6c\x00\x79\x00\x6e\x00\x73\x00\x65\x00\x67\x00\x6d\ +\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x2e\x00\x20\x00\x49\x00\x6e\ +\x00\x64\x00\x69\x00\x65\x00\x6e\x00\x20\x00\x30\x00\x2c\x00\x20\ +\x00\x77\x00\x6f\x00\x72\x00\x64\x00\x20\x00\x64\x00\x69\x00\x65\ +\x00\x20\x00\x6f\x00\x6f\x00\x72\x00\x73\x00\x70\x00\x72\x00\x6f\ +\x00\x6e\x00\x6b\x00\x6c\x00\x69\x00\x6b\x00\x65\x00\x20\x00\x6b\ +\x00\x6f\x00\x6d\x00\x70\x00\x6c\x00\x65\x00\x6b\x00\x73\x00\x65\ +\x00\x20\x00\x6c\x00\x79\x00\x6e\x00\x20\x00\x62\x00\x65\x00\x73\ +\x00\x6b\x00\x6f\x00\x75\x00\x20\x00\x61\x00\x73\x00\x20\x00\x27\ +\x00\x6e\x00\x20\x00\x72\x00\x65\x00\x67\x00\x75\x00\x69\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\x1c\x00\x58\x00\x59\x00\x20\x00\x28\x00\x42\ +\x00\x6f\x00\x2d\x00\x61\x00\x61\x00\x6e\x00\x73\x00\x69\x00\x67\ +\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\x56\x00\x6f\x00\x6f\x00\x72\x00\x61\x00\x61\ +\x00\x6e\x00\x73\x00\x69\x00\x67\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\x1c\x00\x59\x00\x5a\x00\x20\x00\x28\x00\x53\ +\x00\x79\x00\x2d\x00\x61\x00\x61\x00\x6e\x00\x73\x00\x69\x00\x67\ +\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\xaa\x00\x4b\x00\x6f\x00\x6e\x00\x74\ +\x00\x72\x00\x6f\x00\x6c\x00\x65\x00\x65\x00\x72\x00\x20\x00\x68\ +\x00\x69\x00\x65\x00\x72\x00\x64\x00\x69\x00\x65\x00\x20\x00\x61\ +\x00\x73\x00\x20\x00\x6a\x00\x79\x00\x20\x00\x64\x00\x69\x00\x65\ +\x00\x20\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\x72\x00\x2f\x00\x6c\ +\x00\x79\x00\x6e\x00\x77\x00\x79\x00\x64\x00\x74\x00\x65\x00\x20\ +\x00\x77\x00\x69\x00\x6c\x00\x20\x00\x67\x00\x65\x00\x62\x00\x72\ +\x00\x75\x00\x69\x00\x6b\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\ +\x00\x64\x00\x69\x00\x65\x00\x20\x00\x6e\x00\x75\x00\x74\x00\x73\ +\x00\x62\x00\x61\x00\x6c\x00\x6b\x00\x20\x00\x61\x00\x73\x00\x20\ +\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x64\x00\x61\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\x84\x00\x69\x00\x6e\x00\x64\ +\x00\x69\x00\x65\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x74\x00\x20\ +\x00\x67\x00\x65\x00\x6b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x69\ +\x00\x73\x00\x2c\x00\x20\x00\x73\x00\x61\x00\x6c\x00\x20\x00\x70\ +\x00\x61\x00\x70\x00\x69\x00\x65\x00\x72\x00\x72\x00\x75\x00\x69\ +\x00\x6d\x00\x74\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\ +\x00\x77\x00\x65\x00\x72\x00\x70\x00\x65\x00\x20\x00\x6f\x00\x6f\ +\x00\x6b\x00\x20\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x76\x00\x6f\ +\x00\x65\x00\x72\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x64\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\x00\x61\x00\x73\ +\x00\x20\x00\x64\x00\x69\x00\x74\x00\x20\x00\x61\x00\x66\x00\x67\ +\x00\x65\x00\x73\x00\x6b\x00\x61\x00\x6b\x00\x65\x00\x6c\x00\x20\ +\x00\x69\x00\x73\x00\x2c\x00\x20\x00\x73\x00\x61\x00\x6c\x00\x20\ +\x00\x74\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x65\x00\x2f\x00\x6d\ +\x00\x74\x00\x65\x00\x6b\x00\x73\x00\x74\x00\x65\x00\x20\x00\x6e\ +\x00\x69\x00\x65\x00\x20\x00\x69\x00\x6e\x00\x67\x00\x65\x00\x76\ +\x00\x6f\x00\x65\x00\x72\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x64\ +\x00\x20\x00\x6e\x00\x69\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x34\x69\x66\x20\x74\x68\x69\x73\x20\x69\x73\x20\x75\x6e\x63\ +\x68\x65\x63\x6b\x65\x64\x2c\x20\x74\x65\x78\x74\x73\x2f\x6d\x74\ +\x65\x78\x74\x73\x20\x77\x6f\x6e\x27\x74\x20\x62\x65\x20\x69\x6d\ +\x70\x6f\x72\x74\x65\x64\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\ +\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\ +\x6e\x67\x73\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x04\x00\x70\ +\x00\x78\x08\x00\x00\x00\x00\x06\x00\x00\x00\x02\x70\x78\x07\x00\ +\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\ +\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x0a\x00\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\x64\x00\x69\x00\x65\x00\x20\x00\ +\x76\x00\x65\x00\x72\x00\x73\x00\x75\x00\x69\x00\x6d\x00\x6b\x00\ +\x6c\x00\x65\x00\x75\x00\x72\x00\x20\x00\x76\x00\x69\x00\x72\x00\ +\x20\x00\x6e\x00\x75\x00\x77\x00\x65\x00\x20\x00\x76\x00\x6f\x00\ +\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\x65\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\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\x44\ +\x00\x64\x00\x69\x00\x65\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\ +\x00\x75\x00\x69\x00\x6d\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\x72\ +\x00\x20\x00\x76\x00\x69\x00\x72\x00\x20\x00\x76\x00\x61\x00\x73\ +\x00\x68\x00\x65\x00\x67\x00\x73\x00\x69\x00\x6d\x00\x62\x00\x6f\ +\x00\x6c\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x22\x74\x68\ +\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\x6c\x6f\x72\x20\ +\x66\x6f\x72\x20\x73\x6e\x61\x70\x20\x73\x79\x6d\x62\x6f\x6c\x73\ +\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\ +\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x4c\x00\x64\x00\x69\x00\x65\x00\x20\ +\x00\x76\x00\x65\x00\x72\x00\x73\x00\x75\x00\x69\x00\x6d\x00\x6c\ +\x00\x79\x00\x6e\x00\x77\x00\x79\x00\x64\x00\x74\x00\x65\x00\x20\ +\x00\x76\x00\x69\x00\x72\x00\x20\x00\x6e\x00\x75\x00\x77\x00\x65\ +\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\ +\x00\x70\x00\x65\x08\x00\x00\x00\x00\x06\x00\x00\x00\x25\x74\x68\ +\x65\x20\x64\x65\x66\x61\x75\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\ +\x64\x74\x68\x20\x66\x6f\x72\x20\x6e\x65\x77\x20\x6f\x62\x6a\x65\ +\x63\x74\x73\x07\x00\x00\x00\x1d\x47\x75\x69\x3a\x3a\x44\x69\x61\ +\x6c\x6f\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\ +\x44\x72\x61\x66\x74\x01\x03\x00\x00\x00\x10\x00\x26\x00\x4d\x00\ +\x61\x00\x61\x00\x6b\x00\x54\x00\x6f\x00\x65\x08\x00\x00\x00\x00\ +\x06\x00\x00\x00\x06\x26\x43\x6c\x6f\x73\x65\x07\x00\x00\x00\x05\ +\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x14\x00\x26\x00\x47\x00\ +\x61\x00\x61\x00\x6e\x00\x56\x00\x6f\x00\x6f\x00\x72\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\x10\x00\x26\x00\x4b\x00\x6f\x00\x70\x00\x69\x00\x65\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\x12\x00\x26\x00\ +\x52\x00\x65\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x65\x00\x66\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\x00\x26\x00\x48\x00\x65\x00\x72\x00\x73\x00\x74\x00\x65\ +\x00\x6c\x08\x00\x00\x00\x00\x06\x00\x00\x00\x05\x26\x55\x6e\x64\ +\x6f\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\ +\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\x2c\x00\x41\x00\x6b\x00\x74\ +\x00\x69\x00\x65\x00\x77\x00\x65\x00\x20\x00\x54\x00\x65\x00\x6b\ +\x00\x65\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x20\x00\x62\x00\x65\ +\x00\x76\x00\x65\x00\x6c\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\x64\x00\x41\x00\x6b\x00\x74\x00\x69\x00\x65\x00\x77\ +\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\ +\x00\x72\x00\x70\x00\x20\x00\x6d\x00\x6f\x00\x65\x00\x74\x00\x20\ +\x00\x6d\x00\x65\x00\x65\x00\x72\x00\x20\x00\x61\x00\x73\x00\x20\ +\x00\x74\x00\x77\x00\x65\x00\x65\x00\x20\x00\x70\x00\x75\x00\x6e\ +\x00\x74\x00\x65\x00\x2f\x00\x6e\x00\x6f\x00\x64\x00\x65\x00\x73\ +\x00\x20\x00\x68\x00\xea\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\ +\x18\x00\x4f\x00\x70\x00\x65\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\ +\x68\x00\x6f\x00\x65\x00\x6b\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\x36\x00\x50\x00\x61\x00\x73\x00\x20\x00\x74\x00\x6f\x00\ +\x65\x00\x20\x00\x6f\x00\x70\x00\x20\x00\x67\x00\x65\x00\x6b\x00\ +\x6f\x00\x73\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\ +\x77\x00\x65\x00\x72\x00\x70\x00\x65\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\x00\x42\x00\x6f\ +\x00\x6f\x00\x67\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\ +\x54\x00\x4b\x00\x61\x00\x6e\x00\x20\x00\x6e\x00\x69\x00\x65\x00\ +\x20\x00\x68\x00\x69\x00\x65\x00\x72\x00\x64\x00\x69\x00\x65\x00\ +\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\ +\x70\x00\x74\x00\x69\x00\x70\x00\x65\x00\x20\x00\x76\x00\x65\x00\ +\x72\x00\x73\x00\x6b\x00\x75\x00\x69\x00\x66\x00\x20\x00\x6e\x00\ +\x69\x00\x65\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\x14\x00\x53\ +\x00\x65\x00\x6e\x00\x74\x00\x72\x00\x65\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\x70\x00\x4b\x00\x6f\x00\xf6\x00\ +\x72\x00\x64\x00\x69\x00\x6e\x00\x61\x00\x74\x00\x65\x00\x20\x00\ +\x72\x00\x65\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x65\x00\x66\x00\ +\x20\x00\x74\x00\x6f\x00\x74\x00\x20\x00\x6c\x00\x61\x00\x61\x00\ +\x73\x00\x74\x00\x65\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\ +\x20\x00\x6f\x00\x66\x00\x20\x00\x61\x00\x62\x00\x73\x00\x6f\x00\ +\x6c\x00\x75\x00\x75\x00\x74\x00\x20\x00\x28\x00\x53\x00\x50\x00\ +\x41\x00\x53\x00\x49\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\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\x5c\x00\x4d\x00\x6f\x00\x65\x00\x6e\x00\x69\x00\x65\x00\ +\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x70\x00\ +\x72\x00\x6f\x00\x6a\x00\x65\x00\x6b\x00\x74\x00\x65\x00\x65\x00\ +\x72\x00\x20\x00\x6e\x00\x61\x00\x20\x00\x27\x00\x6e\x00\x20\x00\ +\x74\x00\x65\x00\x6b\x00\x65\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\ +\x76\x00\x6c\x00\x61\x00\x6b\x00\x20\x00\x6e\x00\x69\x00\x65\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\x3c\x00\x44\x00\x69\x00\x65\x00\x20\x00\x6b\x00\ +\x61\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x73\x00\x6e\x00\x79\x00\ +\x20\x00\x6e\x00\x69\x00\x65\x00\x20\x00\x6d\x00\x65\x00\x6b\x00\ +\x61\x00\x61\x00\x72\x00\x20\x00\x6e\x00\x69\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\x0a\x00\x57\x00\x79\x00\x73\x00\x69\x00\x67\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x04\x45\x64\x69\x74\x07\x00\x00\x00\x05\x64\ +\x72\x61\x66\x74\x01\x03\x00\x00\x00\x0e\x00\x46\x00\x26\x00\x69\ +\x00\x6c\x00\x6c\x00\x65\x00\x64\x08\x00\x00\x00\x00\x06\x00\x00\ +\x00\x07\x46\x26\x69\x6c\x6c\x65\x64\x07\x00\x00\x00\x05\x64\x72\ +\x61\x66\x74\x01\x03\x00\x00\x00\x12\x00\x56\x00\x6c\x00\x61\x00\ +\x6b\x00\x6b\x00\x6c\x00\x65\x00\x75\x00\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\x4e\x00\ +\x56\x00\x6f\x00\x6c\x00\x74\x00\x6f\x00\x6f\x00\x69\x00\x20\x00\ +\x65\x00\x6e\x00\x20\x00\x62\x00\x65\x00\xeb\x00\x69\x00\x6e\x00\ +\x64\x00\x69\x00\x67\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\ +\x68\x00\x75\x00\x69\x00\x64\x00\x69\x00\x67\x00\x65\x00\x20\x00\ +\x6c\x00\x79\x00\x6e\x00\x20\x00\x28\x00\x43\x00\x29\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x28\x46\x69\x6e\x69\x73\x68\x65\x73\x20\ +\x61\x6e\x64\x20\x63\x6c\x6f\x73\x65\x73\x20\x74\x68\x65\x20\x63\ +\x75\x72\x72\x65\x6e\x74\x20\x6c\x69\x6e\x65\x20\x28\x43\x29\x07\ +\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\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\x18\x00\x53\x00\x6b\x00\x72\x00\x69\ +\x00\x66\x00\x67\x00\x72\x00\x6f\x00\x6f\x00\x74\x00\x74\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\x76\x00\x48\x00\x65\x00\x74\x00\x20\x00\x65\x00\x65\x00\ +\x6e\x00\x20\x00\x67\x00\x65\x00\x73\x00\x6c\x00\x6f\x00\x74\x00\ +\x65\x00\x20\x00\x73\x00\x6b\x00\x65\x00\x74\x00\x73\x00\x76\x00\ +\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\x20\x00\ +\x67\x00\x65\x00\x76\x00\x69\x00\x6e\x00\x64\x00\x3a\x00\x20\x00\ +\x6d\x00\x61\x00\x61\x00\x6b\x00\x20\x00\x27\x00\x6e\x00\x20\x00\ +\x76\x00\x6c\x00\x61\x00\x6b\x00\x20\x00\x76\x00\x61\x00\x6e\x00\ +\x20\x00\x64\x00\x69\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\x60\x00\x48\x00\x65\x00\x74\x00\x20\x00\ +\x65\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x6c\x00\x61\x00\x6b\x00\ +\x20\x00\x67\x00\x65\x00\x76\x00\x69\x00\x6e\x00\x64\x00\x3a\x00\ +\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x64\x00\x72\x00\x61\x00\ +\x64\x00\x65\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x64\x00\x20\x00\ +\x67\x00\x65\x00\xeb\x00\x6b\x00\x73\x00\x74\x00\x72\x00\x61\x00\ +\x65\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\x82\x00\x48\x00\x65\x00\x74\x00\x20\x00\x65\x00\x65\ +\x00\x6e\x00\x20\x00\x6e\x00\x69\x00\x65\x00\x2d\x00\x70\x00\x61\ +\x00\x72\x00\x61\x00\x6d\x00\x65\x00\x74\x00\x72\x00\x69\x00\x65\ +\x00\x73\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\ +\x00\x65\x00\x72\x00\x70\x00\x20\x00\x67\x00\x65\x00\x76\x00\x69\ +\x00\x6e\x00\x64\x00\x3a\x00\x20\x00\x6f\x00\x6d\x00\x73\x00\x6b\ +\x00\x65\x00\x70\x00\x20\x00\x64\x00\x69\x00\x74\x00\x20\x00\x69\ +\x00\x6e\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x73\x00\x6b\x00\x65\ +\x00\x74\x00\x73\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\x4e\x00\ +\x48\x00\x65\x00\x74\x00\x20\x00\x65\x00\x65\x00\x6e\x00\x20\x00\ +\x6f\x00\x6f\x00\x70\x00\x20\x00\x64\x00\x72\x00\x61\x00\x61\x00\ +\x64\x00\x20\x00\x67\x00\x65\x00\x76\x00\x69\x00\x6e\x00\x64\x00\ +\x3a\x00\x20\x00\x6d\x00\x61\x00\x61\x00\x6b\x00\x20\x00\x64\x00\ +\x69\x00\x74\x00\x20\x00\x74\x00\x6f\x00\x65\x00\x20\x08\x00\x00\ +\x00\x00\x06\x00\x00\x00\x1e\x46\x6f\x75\x6e\x64\x20\x31\x20\x6f\ +\x70\x65\x6e\x20\x77\x69\x72\x65\x3a\x20\x63\x6c\x6f\x73\x69\x6e\ +\x67\x20\x69\x74\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\ +\x03\x00\x00\x00\x7a\x00\x48\x00\x65\x00\x74\x00\x20\x00\x65\x00\ +\x65\x00\x6e\x00\x20\x00\x70\x00\x61\x00\x72\x00\x61\x00\x6d\x00\ +\x65\x00\x74\x00\x72\x00\x69\x00\x65\x00\x73\x00\x65\x00\x20\x00\ +\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\ +\x20\x00\x67\x00\x65\x00\x76\x00\x69\x00\x6e\x00\x64\x00\x3a\x00\ +\x20\x00\x62\x00\x72\x00\x65\x00\x65\x00\x6b\x00\x20\x00\x73\x00\ +\x79\x00\x20\x00\x61\x00\x66\x00\x68\x00\x61\x00\x6e\x00\x6b\x00\ +\x6c\x00\x69\x00\x6b\x00\x68\x00\x65\x00\x64\x00\x65\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\x52\x00\ +\x48\x00\x65\x00\x74\x00\x20\x00\x74\x00\x77\x00\x65\x00\x65\x00\ +\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\ +\x70\x00\x65\x00\x20\x00\x67\x00\x65\x00\x76\x00\x69\x00\x6e\x00\ +\x64\x00\x3a\x00\x20\x00\x76\x00\x65\x00\x72\x00\x65\x00\x6e\x00\ +\x69\x00\x67\x00\x20\x00\x68\x00\x75\x00\x6c\x00\x6c\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\x54\x00\x48\x00\x65\x00\x74\x00\x20\ +\x00\x74\x00\x77\x00\x65\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6f\ +\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\x65\x00\x20\x00\x67\ +\x00\x65\x00\x76\x00\x69\x00\x6e\x00\x64\x00\x3a\x00\x20\x00\x76\ +\x00\x65\x00\x72\x00\x77\x00\x79\x00\x64\x00\x65\x00\x72\x00\x20\ +\x00\x68\x00\x75\x00\x6c\x00\x6c\x00\x65\x00\x20\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\x22\x46\x6f\x75\x6e\x64\x20\x32\x20\x6f\x62\ +\x6a\x65\x63\x74\x73\x3a\x20\x73\x75\x62\x74\x72\x61\x63\x74\x69\ +\x6e\x67\x20\x74\x68\x65\x6d\x0a\x07\x00\x00\x00\x05\x64\x72\x61\ +\x66\x74\x01\x03\x00\x00\x00\x4c\x00\x48\x00\x65\x00\x74\x00\x20\ +\x00\x67\x00\x65\x00\x73\x00\x6c\x00\x6f\x00\x74\x00\x65\x00\x20\ +\x00\x64\x00\x72\x00\x61\x00\x64\x00\x65\x00\x20\x00\x67\x00\x65\ +\x00\x76\x00\x69\x00\x6e\x00\x64\x00\x3a\x00\x20\x00\x6d\x00\x61\ +\x00\x61\x00\x6b\x00\x20\x00\x76\x00\x6c\x00\x61\x00\x6b\x00\x6b\ +\x00\x65\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\ +\x48\x00\x65\x00\x74\x00\x20\x00\x67\x00\x72\x00\x6f\x00\x65\x00\ +\x70\x00\x65\x00\x20\x00\x67\x00\x65\x00\x76\x00\x69\x00\x6e\x00\ +\x64\x00\x3a\x00\x20\x00\x73\x00\x6c\x00\x75\x00\x69\x00\x74\x00\ +\x20\x00\x65\x00\x6c\x00\x6b\x00\x65\x00\x20\x00\x6f\x00\x6f\x00\ +\x70\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\ +\x72\x00\x70\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\x6a\x00\x48\ +\x00\x65\x00\x74\x00\x20\x00\x73\x00\x6c\x00\x65\x00\x67\x00\x73\ +\x00\x20\x00\x64\x00\x72\x00\x61\x00\x64\x00\x65\x00\x20\x00\x67\ +\x00\x65\x00\x76\x00\x69\x00\x6e\x00\x64\x00\x3a\x00\x20\x00\x68\ +\x00\x75\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x6b\x00\x61\x00\x6e\ +\x00\x74\x00\x65\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x64\x00\x20\ +\x00\x67\x00\x65\x00\xeb\x00\x6b\x00\x73\x00\x74\x00\x72\x00\x61\ +\x00\x65\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\x52\x00\x48\x00\x65\x00\ +\x74\x00\x20\x00\x76\x00\x65\x00\x72\x00\x73\x00\x6b\x00\x65\x00\ +\x69\x00\x65\x00\x20\x00\x6b\x00\x61\x00\x6e\x00\x74\x00\x65\x00\ +\x20\x00\x67\x00\x65\x00\x76\x00\x69\x00\x6e\x00\x64\x00\x3a\x00\ +\x20\x00\x62\x00\x65\x00\x64\x00\x72\x00\x61\x00\x61\x00\x64\x00\ +\x20\x00\x68\x00\x75\x00\x6c\x00\x6c\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\x5e\x00\x48\x00\x65\x00\x74\x00\x20\ +\x00\x76\x00\x65\x00\x72\x00\x73\x00\x6b\x00\x65\x00\x69\x00\x65\ +\x00\x20\x00\x76\x00\x6c\x00\x61\x00\x6b\x00\x6b\x00\x65\x00\x20\ +\x00\x67\x00\x65\x00\x76\x00\x69\x00\x6e\x00\x64\x00\x3a\x00\x20\ +\x00\x68\x00\x75\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x77\x00\x6f\ +\x00\x72\x00\x64\x00\x20\x00\x76\x00\x65\x00\x72\x00\x64\x00\x65\ +\x00\x65\x00\x6c\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\x86\x00\x48\x00\x65\x00\x74\x00\x20\x00\x76\x00\x65\ +\x00\x72\x00\x73\x00\x6b\x00\x65\x00\x69\x00\x65\x00\x20\x00\x6f\ +\x00\x6e\x00\x62\x00\x65\x00\x62\x00\x6f\x00\x6e\x00\x64\x00\x65\ +\x00\x20\x00\x6b\x00\x61\x00\x6e\x00\x74\x00\x65\x00\x20\x00\x67\ +\x00\x65\x00\x76\x00\x69\x00\x6e\x00\x64\x00\x3a\x00\x20\x00\x6d\ +\x00\x61\x00\x61\x00\x6b\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x73\ +\x00\x61\x00\x61\x00\x6d\x00\x67\x00\x65\x00\x73\x00\x74\x00\x65\ +\x00\x6c\x00\x64\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\ +\x00\x77\x00\x65\x00\x72\x00\x70\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\x96\x00\x48\x00\x65\x00\x74\x00\x20\x00\ +\x76\x00\x65\x00\x72\x00\x73\x00\x6b\x00\x65\x00\x69\x00\x65\x00\ +\x20\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x77\x00\x65\x00\ +\x72\x00\x6b\x00\x62\x00\x61\x00\x72\x00\x65\x00\x20\x00\x76\x00\ +\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\x65\x00\ +\x20\x00\x67\x00\x65\x00\x76\x00\x69\x00\x6e\x00\x64\x00\x3a\x00\ +\x20\x00\x6d\x00\x61\x00\x61\x00\x6b\x00\x20\x00\x27\x00\x6e\x00\ +\x20\x00\x73\x00\x61\x00\x61\x00\x6d\x00\x67\x00\x65\x00\x73\x00\ +\x74\x00\x65\x00\x6c\x00\x64\x00\x65\x00\x20\x00\x76\x00\x6f\x00\ +\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\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\x8c\x00\x48\x00\x65\x00\x74\x00\x20\x00\x76\x00\x65\ +\x00\x72\x00\x73\x00\x6b\x00\x65\x00\x69\x00\x65\x00\x20\x00\x76\ +\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\x65\ +\x00\x20\x00\x67\x00\x65\x00\x76\x00\x69\x00\x6e\x00\x64\x00\x3a\ +\x00\x20\x00\x68\x00\x75\x00\x6c\x00\x6c\x00\x65\x00\x20\x00\x77\ +\x00\x6f\x00\x72\x00\x64\x00\x20\x00\x76\x00\x65\x00\x72\x00\x77\ +\x00\x79\x00\x64\x00\x65\x00\x72\x00\x20\x00\x76\x00\x61\x00\x6e\ +\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x65\x00\x65\x00\x72\ +\x00\x73\x00\x74\x00\x65\x00\x20\x00\x65\x00\x65\x00\x6e\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\xa4\x00\x41\x00\x73\ +\x00\x20\x00\x64\x00\x69\x00\x74\x00\x20\x00\x67\x00\x65\x00\x6d\ +\x00\x65\x00\x72\x00\x6b\x00\x20\x00\x69\x00\x73\x00\x2c\x00\x20\ +\x00\x73\x00\x61\x00\x6c\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\ +\x00\x6f\x00\x70\x00\x64\x00\x72\x00\x61\x00\x67\x00\x20\x00\x6e\ +\x00\x69\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6c\x00\x74\x00\x6f\ +\x00\x6f\x00\x69\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x64\x00\x20\ +\x00\x74\x00\x6f\x00\x74\x00\x64\x00\x61\x00\x74\x00\x20\x00\x6a\ +\x00\x79\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x62\x00\x65\ +\x00\x76\x00\x65\x00\x6c\x00\x20\x00\x77\x00\x65\x00\x65\x00\x72\ +\x00\x20\x00\x67\x00\x65\x00\x65\x00\x20\x00\x6e\x00\x69\x00\x65\ +\x08\x00\x00\x00\x00\x06\x00\x00\x00\x4c\x49\x66\x20\x63\x68\x65\ +\x63\x6b\x65\x64\x2c\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x77\x69\ +\x6c\x6c\x20\x6e\x6f\x74\x20\x66\x69\x6e\x69\x73\x68\x20\x75\x6e\ +\x74\x69\x6c\x20\x79\x6f\x75\x20\x70\x72\x65\x73\x73\x20\x74\x68\ +\x65\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x62\x75\x74\x74\x6f\x6e\ +\x20\x61\x67\x61\x69\x6e\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\ +\x01\x03\x00\x00\x00\x88\x00\x49\x00\x6e\x00\x64\x00\x69\x00\x65\ +\x00\x6e\x00\x20\x00\x67\x00\x65\x00\x6d\x00\x65\x00\x72\x00\x6b\ +\x00\x2c\x00\x20\x00\x73\x00\x61\x00\x6c\x00\x20\x00\x76\x00\x6f\ +\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\x65\x00\x20\ +\x00\x67\x00\x65\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x65\ +\x00\x72\x00\x20\x00\x69\x00\x6e\x00\x20\x00\x70\x00\x6c\x00\x61\ +\x00\x61\x00\x73\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x67\ +\x00\x65\x00\x73\x00\x6b\x00\x75\x00\x69\x00\x66\x00\x20\x00\x77\ +\x00\x6f\x00\x72\x00\x64\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\x30\x00\x4c\x00\x61\x00\x61\x00\ +\x73\x00\x74\x00\x65\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\ +\x20\x00\x69\x00\x73\x00\x20\x00\x76\x00\x65\x00\x72\x00\x77\x00\ +\x79\x00\x64\x00\x65\x00\x72\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\x06\x00\ +\x4c\x00\x79\x00\x6e\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\x10\x00\x4c\x00\x79\x00\x6e\x00\x6b\x00\x6c\x00\x65\x00\ +\x75\x00\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\x10\x00\x4c\x00\x79\x00\x6e\x00\x77\x00\ +\x79\x00\x64\x00\x74\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\x10\x00\x56\x00\x65\x00\ +\x72\x00\x73\x00\x6b\x00\x75\x00\x69\x00\x66\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\x08\x00\x47\x00\x65\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\x14\x00\ +\x41\x00\x61\x00\x6e\x00\x74\x00\x61\x00\x6c\x00\x20\x00\x73\x00\ +\x79\x00\x65\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\x14\x00\x56\x00\x65\ +\x00\x72\x00\x70\x00\x6c\x00\x61\x00\x73\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\x5e\ +\x00\x56\x00\x65\x00\x72\x00\x70\x00\x6c\x00\x61\x00\x73\x00\x69\ +\x00\x6e\x00\x67\x00\x20\x00\x77\x00\x65\x00\x72\x00\x6b\x00\x20\ +\x00\x6e\x00\x65\x00\x74\x00\x20\x00\x6f\x00\x70\x00\x20\x00\x65\ +\x00\x65\x00\x6e\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\ +\x00\x65\x00\x72\x00\x70\x00\x20\x00\x6f\x00\x70\x00\x20\x00\x27\ +\x00\x6e\x00\x20\x00\x73\x00\x6c\x00\x61\x00\x67\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\x1a\x00\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x76\x00\x6f\ +\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x08\x00\x00\x00\ +\x00\x06\x00\x00\x00\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\x00\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x27\x00\x6e\x00\ +\x20\x00\x61\x00\x61\x00\x6e\x00\x73\x00\x69\x00\x67\x00\x20\x00\ +\x6f\x00\x6d\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x74\x00\ +\x65\x00\x6b\x00\x65\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x76\x00\ +\x6c\x00\x61\x00\x6b\x00\x20\x00\x74\x00\x65\x00\x20\x00\x64\x00\ +\x65\x00\x66\x00\x69\x00\x6e\x00\x69\x00\x65\x00\x65\x00\x72\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\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x6f\x00\ +\x70\x00\x65\x00\x6e\x00\x69\x00\x6e\x00\x67\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\x20\x00\x4b\x00\x69\x00\x65\x00\x73\x00\x20\ +\x00\x62\x00\x61\x00\x73\x00\x69\x00\x73\x00\x68\x00\x6f\x00\x65\ +\x00\x6b\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\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x62\x00\x61\x00\ +\x73\x00\x69\x00\x73\x00\x70\x00\x75\x00\x6e\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\x24\x00\x4b\x00\x69\ +\x00\x65\x00\x73\x00\x20\x00\x73\x00\x65\x00\x6e\x00\x74\x00\x72\ +\x00\x75\x00\x6d\x00\x70\x00\x75\x00\x6e\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\x4b\x00\ +\x69\x00\x65\x00\x73\x00\x20\x00\x61\x00\x66\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\x1e\x00\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x65\x00\x69\ +\x00\x6e\x00\x64\x00\x70\x00\x75\x00\x6e\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\x2a\x00\x4b\x00\x69\x00\x65\ +\x00\x73\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x65\x00\x65\ +\x00\x72\x00\x73\x00\x74\x00\x65\x00\x20\x00\x70\x00\x75\x00\x6e\ +\x00\x74\x00\x20\x08\x00\x00\x00\x00\x06\x00\x00\x00\x12\x50\x69\ +\x63\x6b\x20\x66\x69\x72\x73\x74\x20\x70\x6f\x69\x6e\x74\x3a\x0a\ +\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\x00\x00\x24\ +\x00\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x6c\x00\x69\x00\x67\ +\x00\x67\x00\x69\x00\x6e\x00\x67\x00\x70\x00\x75\x00\x6e\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\x72\x00\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x64\x00\ +\x69\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6c\x00\x67\x00\x65\x00\ +\x6e\x00\x64\x00\x65\x00\x20\x00\x70\x00\x75\x00\x6e\x00\x74\x00\ +\x2c\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x73\x00\x6c\x00\x75\x00\ +\x69\x00\x74\x00\x20\x00\x61\x00\x66\x00\x20\x00\x28\x00\x46\x00\ +\x29\x00\x20\x00\x6f\x00\x66\x00\x20\x00\x6d\x00\x61\x00\x61\x00\ +\x6b\x00\x20\x00\x74\x00\x6f\x00\x65\x00\x20\x00\x28\x00\x43\x00\ +\x29\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\x30\x00\x4b\x00\x69\x00\x65\x00\x73\ +\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6c\ +\x00\x67\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x70\x00\x75\ +\x00\x6e\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\x36\x00\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x74\x00\ +\x65\x00\x65\x00\x6e\x00\x6f\x00\x6f\x00\x72\x00\x67\x00\x65\x00\ +\x73\x00\x74\x00\x65\x00\x6c\x00\x64\x00\x65\x00\x20\x00\x70\x00\ +\x75\x00\x6e\x00\x74\x00\x3a\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\x18\x00\x4b\x00\x69\x00\x65\x00\x73\ +\x00\x20\x00\x72\x00\x61\x00\x64\x00\x69\x00\x75\x00\x73\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\x24\x00\x4b\x00\x69\x00\x65\x00\x73\x00\ +\x20\x00\x72\x00\x6f\x00\x74\x00\x61\x00\x73\x00\x69\x00\x65\x00\ +\x68\x00\x6f\x00\x65\x00\x6b\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\x1e\x00\x4b\x00\x69\x00\x65\ +\x00\x73\x00\x20\x00\x73\x00\x70\x00\x69\x00\x6c\x00\x70\x00\x75\ +\x00\x6e\x00\x74\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\x4b\x00\x69\x00\x65\x00\x73\ +\x00\x20\x00\x73\x00\x6b\x00\x61\x00\x61\x00\x6c\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\x20\x00\x4b\x00\x69\x00\x65\x00\ +\x73\x00\x20\x00\x62\x00\x65\x00\x67\x00\x69\x00\x6e\x00\x68\x00\ +\x6f\x00\x65\x00\x6b\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\x20\x00\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\ +\x62\x00\x65\x00\x67\x00\x69\x00\x6e\x00\x70\x00\x75\x00\x6e\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\x2a\x00\x52\x00\x61\x00\x64\x00\x69\x00\x75\ +\x00\x73\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x64\x00\x69\ +\x00\x65\x00\x20\x00\x73\x00\x69\x00\x72\x00\x6b\x00\x65\x00\x6c\ +\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\x0c\x00\x52\x00\x6f\x00\x74\x00\x65\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\x0a\x00\ +\x53\x00\x6b\x00\x61\x00\x61\x00\x6c\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\x4b\x00\x69\x00\x65\x00\x73\ +\x00\x20\x00\x76\x00\x6c\x00\x61\x00\x6b\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\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x58\x00\x59\x00\x20\ +\x00\x76\x00\x6c\x00\x61\x00\x6b\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\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x58\x00\x5a\x00\ +\x20\x00\x76\x00\x6c\x00\x61\x00\x6b\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\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x59\x00\x5a\ +\x00\x2d\x00\x76\x00\x6c\x00\x61\x00\x6b\x08\x00\x00\x00\x00\x06\ +\x00\x00\x00\x0f\x53\x65\x6c\x65\x63\x74\x20\x59\x5a\x20\x70\x6c\ +\x61\x6e\x65\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\x00\ +\x00\x00\x3a\x00\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x27\x00\ +\x6e\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\ +\x72\x00\x70\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x65\x00\ +\x20\x00\x73\x00\x6b\x00\x75\x00\x69\x00\x66\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\x40\ +\x00\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x27\x00\x6e\x00\x20\ +\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\ +\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x65\x00\x20\x00\x76\ +\x00\x65\x00\x72\x00\x70\x00\x6c\x00\x61\x00\x61\x00\x73\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\xaa\x00\x52\x00\x6f\x00\x74\x00\x65\x00\x65\x00\ +\x72\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x67\x00\x65\x00\ +\x6b\x00\x6f\x00\x73\x00\x65\x00\x20\x00\x6f\x00\x62\x00\x6a\x00\ +\x65\x00\x6b\x00\x74\x00\x65\x00\x2e\x00\x20\x00\x43\x00\x54\x00\ +\x52\x00\x4c\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x76\x00\x61\x00\ +\x73\x00\x20\x00\x74\x00\x65\x00\x20\x00\x68\x00\x65\x00\x67\x00\ +\x2c\x00\x20\x00\x53\x00\x48\x00\x49\x00\x46\x00\x54\x00\x20\x00\ +\x6f\x00\x6d\x00\x20\x00\x76\x00\x61\x00\x73\x00\x20\x00\x74\x00\ +\x65\x00\x20\x00\x68\x00\x6f\x00\x75\x00\x2c\x00\x20\x00\x41\x00\ +\x4c\x00\x54\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x65\x00\ +\x20\x00\x6b\x00\x6f\x00\x70\x00\x69\x00\x65\x00\x65\x00\x72\x08\ +\x00\x00\x00\x00\x06\x00\x00\x00\x1b\x53\x65\x6c\x65\x63\x74\x20\ +\x61\x6e\x20\x6f\x62\x6a\x65\x63\x74\x20\x74\x6f\x20\x72\x6f\x74\ +\x61\x74\x65\x0a\x07\x00\x00\x00\x05\x64\x72\x61\x66\x74\x01\x03\ +\x00\x00\x00\x3a\x00\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x27\ +\x00\x6e\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\ +\x00\x72\x00\x70\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x65\ +\x00\x20\x00\x73\x00\x6b\x00\x61\x00\x61\x00\x6c\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\x52\x00\x4b\x00\x69\x00\x65\x00\x73\x00\x20\x00\x27\x00\x6e\ +\x00\x20\x00\x76\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\ +\x00\x70\x00\x20\x00\x6f\x00\x6d\x00\x20\x00\x74\x00\x65\x00\x20\ +\x00\x76\x00\x65\x00\x72\x00\x6b\x00\x6c\x00\x65\x00\x69\x00\x6e\ +\x00\x2f\x00\x76\x00\x65\x00\x72\x00\x67\x00\x72\x00\x6f\x00\x6f\ +\x00\x74\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\x44\x00\x4b\ +\x00\x69\x00\x65\x00\x73\x00\x20\x00\x27\x00\x6e\x00\x20\x00\x76\ +\x00\x6f\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\x20\ +\x00\x6f\x00\x6d\x00\x20\x00\x6f\x00\x70\x00\x20\x00\x74\x00\x65\ +\x00\x20\x00\x67\x00\x72\x00\x61\x00\x64\x00\x65\x00\x65\x00\x72\ +\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\x4e\x00\x4b\x00\x69\x00\x65\x00\x73\ +\x00\x20\x00\x76\x00\x6c\x00\x61\x00\x6b\x00\x20\x00\x6c\x00\x6f\ +\x00\x6f\x00\x64\x00\x72\x00\x65\x00\x67\x00\x20\x00\x6f\x00\x70\ +\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x68\x00\x75\x00\x69\ +\x00\x64\x00\x69\x00\x67\x00\x65\x00\x20\x00\x61\x00\x61\x00\x6e\ +\x00\x73\x00\x69\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\x22\x00\x4b\ +\x00\x75\x00\x72\x00\x77\x00\x65\x00\x20\x00\x69\x00\x73\x00\x20\ +\x00\x67\x00\x65\x00\x73\x00\x6c\x00\x75\x00\x69\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\x5c\x00\x48\x00\x69\ +\x00\x65\x00\x72\x00\x64\x00\x69\x00\x65\x00\x20\x00\x76\x00\x6f\ +\x00\x6f\x00\x72\x00\x77\x00\x65\x00\x72\x00\x70\x00\x74\x00\x69\ +\x00\x70\x00\x65\x00\x20\x00\x6b\x00\x61\x00\x6e\x00\x20\x00\x6e\ +\x00\x69\x00\x65\x00\x20\x00\x67\x00\x65\x00\x77\x00\x79\x00\x73\ +\x00\x69\x00\x67\x00\x20\x00\x77\x00\x6f\x00\x72\x00\x64\x00\x20\ +\x00\x6e\x00\x69\x00\x65\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\x3c\x00\x53\x00\x6b\x00\x61\x00\x6b\x00\x65\x00\x6c\x00\ +\x20\x00\x4b\x00\x6f\x00\x6e\x00\x73\x00\x74\x00\x72\x00\x75\x00\ +\x6b\x00\x73\x00\x69\x00\x65\x00\x6d\x00\x6f\x00\x64\x00\x75\x00\ +\x73\x00\x20\x00\x61\x00\x61\x00\x6e\x00\x2f\x00\x61\x00\x66\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\x46\x00\x48\x00\x65\x00\x72\x00\x73\ +\x00\x74\x00\x65\x00\x6c\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\ +\x00\x6c\x00\x61\x00\x61\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\x10\x00\x56\x00\x6f\x00\x6f\x00\x72\x00\x6b\ +\x00\x6f\x00\x6d\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\ +\x22\x00\x44\x00\x72\x00\x61\x00\x61\x00\x64\x00\x20\x00\x69\x00\ +\x73\x00\x20\x00\x67\x00\x65\x00\x73\x00\x6c\x00\x75\x00\x69\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\x44\x00\x58\x00\x2d\x00\x6b\x00\x6f\x00\ +\xf6\x00\x72\x00\x64\x00\x69\x00\x6e\x00\x61\x00\x61\x00\x74\x00\ +\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x64\x00\x69\x00\x65\x00\ +\x20\x00\x76\x00\x6f\x00\x6c\x00\x67\x00\x65\x00\x6e\x00\x64\x00\ +\x65\x00\x20\x00\x70\x00\x75\x00\x6e\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\x44\x00\x59\x00\x2d\ +\x00\x6b\x00\x6f\x00\xf6\x00\x72\x00\x64\x00\x69\x00\x6e\x00\x61\ +\x00\x61\x00\x74\x00\x20\x00\x76\x00\x61\x00\x6e\x00\x20\x00\x64\ +\x00\x69\x00\x65\x00\x20\x00\x76\x00\x6f\x00\x6c\x00\x67\x00\x65\ +\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x70\x00\x75\x00\x6e\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\ +\x44\x00\x5a\x00\x2d\x00\x6b\x00\x6f\x00\xf6\x00\x72\x00\x64\x00\ +\x69\x00\x6e\x00\x61\x00\x61\x00\x74\x00\x20\x00\x76\x00\x61\x00\ +\x6e\x00\x20\x00\x64\x00\x69\x00\x65\x00\x20\x00\x76\x00\x6f\x00\ +\x6c\x00\x67\x00\x65\x00\x6e\x00\x64\x00\x65\x00\x20\x00\x70\x00\ +\x75\x00\x6e\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\x65\x00\x77\x00\x65\x00\x20\x00\x6f\x00\x70\x00\x64\x00\ +\x72\x00\x61\x00\x67\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\x1e\ +\x00\x74\x00\x65\x00\x6b\x00\x65\x00\x6e\x00\x20\x00\x42\x00\x65\ +\x00\x76\x00\x65\x00\x6c\x00\x62\x00\x61\x00\x6c\x00\x6b\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\x3b\xe5\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x0a\x3c\x75\x69\x20\x76\x65\x72\x73\x69\x6f\ +\x6e\x3d\x22\x34\x2e\x30\x22\x3e\x0a\x20\x3c\x63\x6c\x61\x73\x73\ +\x3e\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x3c\x2f\ +\x63\x6c\x61\x73\x73\x3e\x0a\x20\x3c\x77\x69\x64\x67\x65\x74\x20\ +\x63\x6c\x61\x73\x73\x3d\x22\x51\x57\x69\x64\x67\x65\x74\x22\x20\ +\x6e\x61\x6d\x65\x3d\x22\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x22\x3e\x0a\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x20\x6e\x61\x6d\x65\x3d\x22\x67\x65\x6f\x6d\x65\x74\x72\x79\ +\x22\x3e\x0a\x20\x20\x20\x3c\x72\x65\x63\x74\x3e\x0a\x20\x20\x20\ +\x20\x3c\x78\x3e\x30\x3c\x2f\x78\x3e\x0a\x20\x20\x20\x20\x3c\x79\ +\x3e\x30\x3c\x2f\x79\x3e\x0a\x20\x20\x20\x20\x3c\x77\x69\x64\x74\ +\x68\x3e\x35\x37\x35\x3c\x2f\x77\x69\x64\x74\x68\x3e\x0a\x20\x20\ +\x20\x20\x3c\x68\x65\x69\x67\x68\x74\x3e\x36\x32\x39\x3c\x2f\x68\ +\x65\x69\x67\x68\x74\x3e\x0a\x20\x20\x20\x3c\x2f\x72\x65\x63\x74\ +\x3e\x0a\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ +\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ +\x3d\x22\x77\x69\x6e\x64\x6f\x77\x54\x69\x74\x6c\x65\x22\x3e\x0a\ +\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x49\x6d\x70\x6f\x72\ +\x74\x2f\x45\x78\x70\x6f\x72\x74\x3c\x2f\x73\x74\x72\x69\x6e\x67\ +\x3e\x0a\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ +\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\ +\x22\x51\x56\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\x22\x3e\x0a\x20\ +\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ +\x3d\x22\x73\x70\x61\x63\x69\x6e\x67\x22\x3e\x0a\x20\x20\x20\x20\ +\x3c\x6e\x75\x6d\x62\x65\x72\x3e\x36\x3c\x2f\x6e\x75\x6d\x62\x65\ +\x72\x3e\x0a\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x3e\x0a\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ +\x61\x6d\x65\x3d\x22\x6d\x61\x72\x67\x69\x6e\x22\x3e\x0a\x20\x20\ +\x20\x20\x3c\x6e\x75\x6d\x62\x65\x72\x3e\x39\x3c\x2f\x6e\x75\x6d\ +\x62\x65\x72\x3e\x0a\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\ +\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\ +\x22\x51\x47\x72\x6f\x75\x70\x42\x6f\x78\x22\x20\x6e\x61\x6d\x65\ +\x3d\x22\x47\x72\x6f\x75\x70\x42\x6f\x78\x31\x32\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\ +\x6d\x65\x3d\x22\x74\x69\x74\x6c\x65\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x44\x58\x46\x20\x66\x6f\ +\x72\x6d\x61\x74\x20\x6f\x70\x74\x69\x6f\x6e\x73\x3c\x2f\x73\x74\ +\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\ +\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x56\x42\x6f\x78\ +\x4c\x61\x79\x6f\x75\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x73\ +\x70\x61\x63\x69\x6e\x67\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x6e\x75\x6d\x62\x65\x72\x3e\x36\x3c\x2f\x6e\x75\x6d\x62\x65\ +\x72\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6d\x61\x72\x67\x69\ +\x6e\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x6e\x75\x6d\x62\ +\x65\x72\x3e\x39\x3c\x2f\x6e\x75\x6d\x62\x65\x72\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\x61\x73\ +\x73\x3d\x22\x51\x48\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x73\x70\x61\x63\x69\x6e\x67\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x6e\x75\x6d\ +\x62\x65\x72\x3e\x36\x3c\x2f\x6e\x75\x6d\x62\x65\x72\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6d\x61\x72\x67\x69\ +\x6e\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x6e\x75\ +\x6d\x62\x65\x72\x3e\x30\x3c\x2f\x6e\x75\x6d\x62\x65\x72\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\ +\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\ +\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x4c\x61\x62\ +\x65\x6c\x31\x5f\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ +\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x49\x6d\x70\x6f\ +\x72\x74\x20\x73\x74\x79\x6c\x65\x3c\x2f\x73\x74\x72\x69\x6e\x67\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\ +\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x43\x6f\x6d\x62\x6f\ +\x42\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\ +\x70\x72\x65\x66\x63\x6f\x6d\x62\x6f\x62\x6f\x78\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x72\x69\x6e\x67\x3e\x54\x68\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\x3c\x2f\x73\x74\x72\x69\x6e\ +\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\ +\x65\x3d\x22\x63\x75\x72\x72\x65\x6e\x74\x49\x6e\x64\x65\x78\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x6e\x75\ +\x6d\x62\x65\x72\x3e\x30\x3c\x2f\x6e\x75\x6d\x62\x65\x72\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ +\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\ +\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x64\x78\x66\x73\x74\ +\x79\x6c\x65\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\ +\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\ +\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\ +\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\ +\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x4e\x6f\x6e\x65\x20\x28\x66\ +\x61\x73\x74\x65\x73\x74\x29\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\ +\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\ +\x3e\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\ +\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\ +\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\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\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ +\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\ +\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\x3c\x2f\x73\x74\x72\x69\x6e\ +\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\ +\x6e\x67\x3e\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\x3c\x2f\x73\x74\ +\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x72\x69\x6e\x67\x3e\x43\x72\x65\x61\x74\x65\x20\x53\x6b\x65\ +\x74\x63\x68\x65\x73\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x6c\ +\x61\x79\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x48\x42\ +\x6f\x78\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\ +\x68\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x4c\x61\x79\x6f\x75\x74\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\ +\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\x6c\ +\x22\x20\x6e\x61\x6d\x65\x3d\x22\x6c\x61\x62\x65\x6c\x5f\x37\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x72\x69\x6e\x67\x3e\x4d\x61\x78\x20\x53\x70\x6c\x69\x6e\x65\ +\x20\x53\x65\x67\x6d\x65\x6e\x74\x3c\x2f\x73\x74\x72\x69\x6e\x67\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\ +\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x53\x70\x69\x6e\x42\ +\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\ +\x72\x65\x66\x73\x70\x69\x6e\x62\x6f\x78\x5f\x32\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6d\x61\x78\x69\x6d\x75\x6d\ +\x53\x69\x7a\x65\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x74\x68\x3e\x36\x30\x3c\x2f\ +\x77\x69\x64\x74\x68\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x68\x65\x69\x67\x68\x74\x3e\x31\x36\x37\x37\x37\ +\x32\x31\x35\x3c\x2f\x68\x65\x69\x67\x68\x74\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\x69\x7a\x65\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ +\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\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\x3c\ +\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x76\x61\x6c\x75\x65\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x6e\x75\x6d\ +\x62\x65\x72\x3e\x35\x3c\x2f\x6e\x75\x6d\x62\x65\x72\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\ +\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\x74\ +\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x6d\x61\x78\x73\x70\x6c\ +\x69\x6e\x65\x73\x65\x67\x6d\x65\x6e\x74\x3c\x2f\x63\x73\x74\x72\ +\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ +\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\ +\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\ +\x6f\x64\x2f\x44\x72\x61\x66\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\ +\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x48\ +\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\ +\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x4c\x61\x79\x6f\x75\ +\x74\x5f\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\ +\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\ +\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\ +\x62\x65\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\x6c\x61\x62\x65\x6c\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\ +\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x72\x69\x6e\x67\x3e\x43\x6f\x6c\x6f\x72\x20\x6d\x61\x70\ +\x70\x69\x6e\x67\x20\x66\x69\x6c\x65\x3c\x2f\x73\x74\x72\x69\x6e\ +\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\ +\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x46\x69\x6c\x65\ +\x43\x68\x6f\x6f\x73\x65\x72\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\ +\x75\x69\x3a\x3a\x70\x72\x65\x66\x66\x69\x6c\x65\x63\x68\x6f\x6f\ +\x73\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ +\x6d\x69\x6e\x69\x6d\x75\x6d\x53\x69\x7a\x65\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x69\x7a\x65\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\ +\x74\x68\x3e\x33\x30\x30\x3c\x2f\x77\x69\x64\x74\x68\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x68\x65\x69\x67\ +\x68\x74\x3e\x30\x3c\x2f\x68\x65\x69\x67\x68\x74\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\x69\x7a\x65\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\ +\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x54\x68\ +\x65\x20\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\x3c\ +\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x45\x6e\x74\ +\x72\x79\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\ +\x69\x6e\x67\x3e\x64\x78\x66\x6d\x61\x70\x70\x69\x6e\x67\x66\x69\ +\x6c\x65\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\ +\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\ +\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\x74\ +\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\ +\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\ +\x6f\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\ +\x6c\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\x4c\x61\x79\x6f\x75\ +\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\ +\x74\x61\x6c\x4c\x61\x79\x6f\x75\x74\x5f\x37\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\ +\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x43\x68\ +\x65\x63\x6b\x42\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\ +\x69\x3a\x3a\x70\x72\x65\x66\x63\x68\x65\x63\x6b\x62\x6f\x78\x5f\ +\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\ +\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\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\x3c\ +\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\ +\x6e\x67\x3e\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\x3c\x2f\ +\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x45\x6e\x74\x72\ +\x79\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\ +\x6e\x67\x3e\x64\x78\x66\x74\x65\x78\x74\x3c\x2f\x63\x73\x74\x72\ +\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ +\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\ +\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\ +\x6f\x64\x2f\x44\x72\x61\x66\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\ +\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x48\ +\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\ +\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x4c\x61\x79\x6f\x75\ +\x74\x5f\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\ +\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\ +\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\ +\x3a\x3a\x50\x72\x65\x66\x43\x68\x65\x63\x6b\x42\x6f\x78\x22\x20\ +\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\x63\ +\x68\x65\x63\x6b\x62\x6f\x78\x5f\x33\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\ +\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\ +\x6e\x67\x3e\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\x3c\ +\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\ +\x6e\x67\x3e\x49\x6d\x70\x6f\x72\x74\x20\x6c\x61\x79\x6f\x75\x74\ +\x73\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x45\ +\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\ +\x74\x72\x69\x6e\x67\x3e\x64\x78\x66\x6c\x61\x79\x6f\x75\x74\x3c\ +\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x50\x61\ +\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\ +\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\x74\x3c\x2f\x63\ +\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\x75\x74\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\x61\x73\ +\x73\x3d\x22\x51\x48\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\x22\x20\ +\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\ +\x4c\x61\x79\x6f\x75\x74\x5f\x34\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\ +\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x43\x68\x65\x63\x6b\ +\x42\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\ +\x70\x72\x65\x66\x63\x68\x65\x63\x6b\x62\x6f\x78\x5f\x37\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\ +\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x72\x69\x6e\x67\x3e\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\x3c\x2f\x73\x74\x72\ +\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ +\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x49\ +\x6d\x70\x6f\x72\x74\x20\x2a\x62\x6c\x6f\x63\x6b\x73\x3c\x2f\x73\ +\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\ +\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\ +\x67\x3e\x64\x78\x66\x73\x74\x61\x72\x62\x6c\x6f\x63\x6b\x73\x3c\ +\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x50\x61\ +\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\ +\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\x74\x3c\x2f\x63\ +\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\x75\x74\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\x61\x73\ +\x73\x3d\x22\x51\x48\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\x22\x20\ +\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\ +\x4c\x61\x79\x6f\x75\x74\x5f\x38\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\ +\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x43\x68\x65\x63\x6b\ +\x42\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\ +\x70\x72\x65\x66\x63\x68\x65\x63\x6b\x62\x6f\x78\x5f\x35\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\ +\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x72\x69\x6e\x67\x3e\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\x3c\x2f\x73\x74\x72\ +\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ +\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x47\ +\x72\x6f\x75\x70\x20\x6c\x61\x79\x65\x72\x73\x20\x69\x6e\x74\x6f\ +\x20\x62\x6c\x6f\x63\x6b\x73\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\ +\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\ +\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x67\x72\x6f\x75\ +\x70\x4c\x61\x79\x65\x72\x73\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ +\x3d\x22\x70\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\ +\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\ +\x44\x72\x61\x66\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\ +\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\ +\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\ +\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\ +\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x4c\x61\x79\x6f\x75\x74\x5f\x35\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\ +\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\ +\x72\x65\x66\x43\x68\x65\x63\x6b\x42\x6f\x78\x22\x20\x6e\x61\x6d\ +\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\x63\x68\x65\x63\ +\x6b\x62\x6f\x78\x5f\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\ +\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\ +\x49\x66\x20\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\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\ +\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x4a\x6f\x69\x6e\x20\x67\x65\ +\x6f\x6d\x65\x74\x72\x79\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ +\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\ +\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x6a\x6f\x69\x6e\x67\ +\x65\x6f\x6d\x65\x74\x72\x79\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ +\x3d\x22\x70\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\ +\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\ +\x44\x72\x61\x66\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\ +\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\ +\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\ +\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\ +\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x4c\x61\x79\x6f\x75\x74\x5f\x36\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\ +\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\ +\x72\x65\x66\x43\x68\x65\x63\x6b\x42\x6f\x78\x22\x20\x6e\x61\x6d\ +\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\x63\x68\x65\x63\ +\x6b\x62\x6f\x78\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\ +\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x49\x66\ +\x20\x74\x68\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\ +\x2c\x20\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\x3c\ +\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\ +\x6e\x67\x3e\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\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\ +\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\ +\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x64\x78\x66\x6d\ +\x65\x73\x68\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\ +\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\ +\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\ +\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\ +\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\ +\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\ +\x79\x6f\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\x75\ +\x74\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\ +\x0a\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x3c\ +\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\ +\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x47\x72\x6f\x75\x70\x42\ +\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x47\x72\x6f\x75\x70\x42\ +\x6f\x78\x31\x32\x5f\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x69\ +\x74\x6c\x65\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\ +\x69\x6e\x67\x3e\x53\x56\x47\x20\x66\x6f\x72\x6d\x61\x74\x20\x6f\ +\x70\x74\x69\x6f\x6e\x73\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ +\x0a\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\ +\x61\x73\x73\x3d\x22\x51\x56\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\ +\x22\x20\x6e\x61\x6d\x65\x3d\x22\x5f\x33\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\ +\x65\x3d\x22\x73\x70\x61\x63\x69\x6e\x67\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x6e\x75\x6d\x62\x65\x72\x3e\x36\x3c\x2f\x6e\ +\x75\x6d\x62\x65\x72\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6d\ +\x61\x72\x67\x69\x6e\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x6e\x75\x6d\x62\x65\x72\x3e\x39\x3c\x2f\x6e\x75\x6d\x62\x65\x72\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\ +\x63\x6c\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\x4c\x61\x79\x6f\ +\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x5f\x34\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x20\x6e\x61\x6d\x65\x3d\x22\x73\x70\x61\x63\x69\x6e\x67\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x6e\x75\x6d\x62\x65\ +\x72\x3e\x36\x3c\x2f\x6e\x75\x6d\x62\x65\x72\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6d\x61\x72\x67\x69\x6e\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x6e\x75\x6d\x62\ +\x65\x72\x3e\x30\x3c\x2f\x6e\x75\x6d\x62\x65\x72\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\ +\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\x6c\x22\ +\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x4c\x61\x62\x65\x6c\ +\x31\x5f\x35\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ +\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x49\x6d\x70\x6f\x72\x74\ +\x20\x73\x74\x79\x6c\x65\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x70\x61\x63\x65\x72\x20\x6e\x61\x6d\x65\x3d\x22\x68\ +\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x53\x70\x61\x63\x65\x72\x5f\ +\x36\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6f\x72\ +\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x65\x6e\x75\x6d\x3e\x51\x74\x3a\ +\x3a\x48\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x3c\x2f\x65\x6e\x75\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\ +\x65\x3d\x22\x73\x69\x7a\x65\x48\x69\x6e\x74\x22\x20\x73\x74\x64\ +\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x74\x68\x3e\x34\x30\ +\x3c\x2f\x77\x69\x64\x74\x68\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x68\x65\x69\x67\x68\x74\x3e\x32\x30\x3c\ +\x2f\x68\x65\x69\x67\x68\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\x70\x61\ +\x63\x65\x72\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\ +\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\ +\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\ +\x3a\x50\x72\x65\x66\x43\x6f\x6d\x62\x6f\x42\x6f\x78\x22\x20\x6e\ +\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\x63\x6f\ +\x6d\x62\x6f\x62\x6f\x78\x5f\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ +\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\ +\x67\x3e\x54\x68\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\x3c\x2f\x73\x74\x72\x69\x6e\ +\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\ +\x65\x3d\x22\x63\x75\x72\x72\x65\x6e\x74\x49\x6e\x64\x65\x78\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x6e\x75\ +\x6d\x62\x65\x72\x3e\x30\x3c\x2f\x6e\x75\x6d\x62\x65\x72\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ +\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\ +\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x73\x76\x67\x73\x74\ +\x79\x6c\x65\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\ +\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\ +\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\ +\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\ +\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x4e\x6f\x6e\x65\x20\x28\x66\ +\x61\x73\x74\x65\x73\x74\x29\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\ +\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\ +\x3e\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\ +\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\ +\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\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\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x48\ +\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\ +\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x4c\x61\x79\x6f\x75\ +\x74\x5f\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\ +\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\ +\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\ +\x62\x65\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\x6c\x61\x62\x65\x6c\ +\x5f\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\ +\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x45\x78\x70\x6f\x72\x74\x20\ +\x53\x74\x79\x6c\x65\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\ +\x75\x69\x3a\x3a\x50\x72\x65\x66\x43\x6f\x6d\x62\x6f\x42\x6f\x78\ +\x22\x20\x6e\x61\x6d\x65\x3d\x22\x73\x76\x67\x5f\x65\x78\x70\x6f\ +\x72\x74\x5f\x73\x74\x79\x6c\x65\x5f\x63\x6f\x6d\x62\x6f\x62\x6f\ +\x78\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\ +\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x53\x74\x79\x6c\x65\ +\x20\x6f\x66\x20\x53\x56\x47\x20\x66\x69\x6c\x65\x20\x74\x6f\x20\ +\x77\x72\x69\x74\x65\x20\x77\x68\x65\x6e\x20\x65\x78\x70\x6f\x72\ +\x74\x69\x6e\x67\x20\x61\x20\x53\x6b\x65\x74\x63\x68\x2e\x3c\x2f\ +\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x20\x6e\x61\x6d\x65\x3d\x22\x63\x75\x72\x72\x65\x6e\x74\x49\ +\x6e\x64\x65\x78\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x6e\x75\x6d\x62\x65\x72\x3e\x30\x3c\x2f\x6e\x75\x6d\ +\x62\x65\x72\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ +\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\ +\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\ +\x73\x76\x67\x5f\x65\x78\x70\x6f\x72\x74\x5f\x73\x74\x79\x6c\x65\ +\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x50\ +\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\ +\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\x74\x3c\x2f\ +\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x72\x69\x6e\x67\x3e\x54\x72\x61\x6e\x73\x6c\x61\x74\x65\x64\ +\x20\x28\x66\x6f\x72\x20\x70\x72\x69\x6e\x74\x20\x26\x61\x6d\x70\ +\x3b\x20\x64\x69\x73\x70\x6c\x61\x79\x29\x3c\x2f\x73\x74\x72\x69\ +\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\ +\x69\x6e\x67\x3e\x52\x61\x77\x20\x28\x66\x6f\x72\x20\x43\x41\x4d\ +\x29\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\ +\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\ +\x6f\x75\x74\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\ +\x74\x3e\x0a\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\ +\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x3c\x77\x69\x64\ +\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x47\x72\x6f\x75\ +\x70\x42\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x47\x72\x6f\x75\ +\x70\x42\x6f\x78\x31\x32\x5f\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ +\x74\x69\x74\x6c\x65\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x72\x69\x6e\x67\x3e\x4f\x43\x41\x20\x66\x6f\x72\x6d\x61\x74\ +\x20\x6f\x70\x74\x69\x6f\x6e\x73\x3c\x2f\x73\x74\x72\x69\x6e\x67\ +\x3e\x0a\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x3e\x0a\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\ +\x63\x6c\x61\x73\x73\x3d\x22\x51\x56\x42\x6f\x78\x4c\x61\x79\x6f\ +\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x5f\x36\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ +\x61\x6d\x65\x3d\x22\x73\x70\x61\x63\x69\x6e\x67\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x6e\x75\x6d\x62\x65\x72\x3e\x36\x3c\ +\x2f\x6e\x75\x6d\x62\x65\x72\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\ +\x22\x6d\x61\x72\x67\x69\x6e\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x6e\x75\x6d\x62\x65\x72\x3e\x39\x3c\x2f\x6e\x75\x6d\x62\ +\x65\x72\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\ +\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\x4c\x61\ +\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x5f\x37\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x73\x70\x61\x63\x69\x6e\x67\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x6e\x75\x6d\ +\x62\x65\x72\x3e\x36\x3c\x2f\x6e\x75\x6d\x62\x65\x72\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6d\x61\x72\x67\x69\ +\x6e\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x6e\x75\ +\x6d\x62\x65\x72\x3e\x30\x3c\x2f\x6e\x75\x6d\x62\x65\x72\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\ +\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\ +\x50\x72\x65\x66\x43\x68\x65\x63\x6b\x42\x6f\x78\x22\x20\x6e\x61\ +\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\x63\x68\x65\ +\x63\x6b\x62\x6f\x78\x5f\x34\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\ +\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\ +\x3e\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\ +\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\ +\x69\x6e\x67\x3e\x49\x6d\x70\x6f\x72\x74\x20\x4f\x43\x41\x20\x61\ +\x72\x65\x61\x73\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\ +\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\x74\x3d\ +\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x6f\x63\x61\x61\x72\x65\x61\ +\x73\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\ +\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\ +\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\x74\x3c\ +\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\ +\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\ +\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\ +\x0a\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\ +\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x3c\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x3c\x73\x70\x61\x63\x65\x72\x20\ +\x6e\x61\x6d\x65\x3d\x22\x76\x65\x72\x74\x69\x63\x61\x6c\x53\x70\ +\x61\x63\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6f\x72\x69\x65\ +\x6e\x74\x61\x74\x69\x6f\x6e\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x65\x6e\x75\x6d\x3e\x51\x74\x3a\x3a\x56\x65\x72\x74\x69\x63\ +\x61\x6c\x3c\x2f\x65\x6e\x75\x6d\x3e\x0a\x20\x20\x20\x20\x20\x3c\ +\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\ +\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ +\x73\x69\x7a\x65\x48\x69\x6e\x74\x22\x20\x73\x74\x64\x73\x65\x74\ +\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x69\x7a\ +\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x74\x68\ +\x3e\x32\x30\x3c\x2f\x77\x69\x64\x74\x68\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x68\x65\x69\x67\x68\x74\x3e\x34\x30\x3c\x2f\x68\ +\x65\x69\x67\x68\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\ +\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x73\x70\x61\x63\ +\x65\x72\x3e\x0a\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\ +\x20\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\x3c\x2f\x77\x69\ +\x64\x67\x65\x74\x3e\x0a\x20\x3c\x6c\x61\x79\x6f\x75\x74\x64\x65\ +\x66\x61\x75\x6c\x74\x20\x73\x70\x61\x63\x69\x6e\x67\x3d\x22\x36\ +\x22\x20\x6d\x61\x72\x67\x69\x6e\x3d\x22\x31\x31\x22\x2f\x3e\x0a\ +\x20\x3c\x70\x69\x78\x6d\x61\x70\x66\x75\x6e\x63\x74\x69\x6f\x6e\ +\x3e\x71\x50\x69\x78\x6d\x61\x70\x46\x72\x6f\x6d\x4d\x69\x6d\x65\ +\x53\x6f\x75\x72\x63\x65\x3c\x2f\x70\x69\x78\x6d\x61\x70\x66\x75\ +\x6e\x63\x74\x69\x6f\x6e\x3e\x0a\x20\x3c\x63\x75\x73\x74\x6f\x6d\ +\x77\x69\x64\x67\x65\x74\x73\x3e\x0a\x20\x20\x3c\x63\x75\x73\x74\ +\x6f\x6d\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x3c\x63\x6c\ +\x61\x73\x73\x3e\x47\x75\x69\x3a\x3a\x46\x69\x6c\x65\x43\x68\x6f\ +\x6f\x73\x65\x72\x3c\x2f\x63\x6c\x61\x73\x73\x3e\x0a\x20\x20\x20\ +\x3c\x65\x78\x74\x65\x6e\x64\x73\x3e\x51\x57\x69\x64\x67\x65\x74\ +\x3c\x2f\x65\x78\x74\x65\x6e\x64\x73\x3e\x0a\x20\x20\x20\x3c\x68\ +\x65\x61\x64\x65\x72\x3e\x47\x75\x69\x2f\x46\x69\x6c\x65\x44\x69\ +\x61\x6c\x6f\x67\x2e\x68\x3c\x2f\x68\x65\x61\x64\x65\x72\x3e\x0a\ +\x20\x20\x3c\x2f\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\x74\ +\x3e\x0a\x20\x20\x3c\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\ +\x74\x3e\x0a\x20\x20\x20\x3c\x63\x6c\x61\x73\x73\x3e\x47\x75\x69\ +\x3a\x3a\x50\x72\x65\x66\x46\x69\x6c\x65\x43\x68\x6f\x6f\x73\x65\ +\x72\x3c\x2f\x63\x6c\x61\x73\x73\x3e\x0a\x20\x20\x20\x3c\x65\x78\ +\x74\x65\x6e\x64\x73\x3e\x47\x75\x69\x3a\x3a\x46\x69\x6c\x65\x43\ +\x68\x6f\x6f\x73\x65\x72\x3c\x2f\x65\x78\x74\x65\x6e\x64\x73\x3e\ +\x0a\x20\x20\x20\x3c\x68\x65\x61\x64\x65\x72\x3e\x47\x75\x69\x2f\ +\x50\x72\x65\x66\x57\x69\x64\x67\x65\x74\x73\x2e\x68\x3c\x2f\x68\ +\x65\x61\x64\x65\x72\x3e\x0a\x20\x20\x3c\x2f\x63\x75\x73\x74\x6f\ +\x6d\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x3c\x63\x75\x73\x74\ +\x6f\x6d\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x3c\x63\x6c\ +\x61\x73\x73\x3e\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x53\x70\x69\ +\x6e\x42\x6f\x78\x3c\x2f\x63\x6c\x61\x73\x73\x3e\x0a\x20\x20\x20\ +\x3c\x65\x78\x74\x65\x6e\x64\x73\x3e\x51\x53\x70\x69\x6e\x42\x6f\ +\x78\x3c\x2f\x65\x78\x74\x65\x6e\x64\x73\x3e\x0a\x20\x20\x20\x3c\ +\x68\x65\x61\x64\x65\x72\x3e\x47\x75\x69\x2f\x50\x72\x65\x66\x57\ +\x69\x64\x67\x65\x74\x73\x2e\x68\x3c\x2f\x68\x65\x61\x64\x65\x72\ +\x3e\x0a\x20\x20\x3c\x2f\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\ +\x65\x74\x3e\x0a\x20\x20\x3c\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\ +\x67\x65\x74\x3e\x0a\x20\x20\x20\x3c\x63\x6c\x61\x73\x73\x3e\x47\ +\x75\x69\x3a\x3a\x50\x72\x65\x66\x43\x68\x65\x63\x6b\x42\x6f\x78\ +\x3c\x2f\x63\x6c\x61\x73\x73\x3e\x0a\x20\x20\x20\x3c\x65\x78\x74\ +\x65\x6e\x64\x73\x3e\x51\x43\x68\x65\x63\x6b\x42\x6f\x78\x3c\x2f\ +\x65\x78\x74\x65\x6e\x64\x73\x3e\x0a\x20\x20\x20\x3c\x68\x65\x61\ +\x64\x65\x72\x3e\x47\x75\x69\x2f\x50\x72\x65\x66\x57\x69\x64\x67\ +\x65\x74\x73\x2e\x68\x3c\x2f\x68\x65\x61\x64\x65\x72\x3e\x0a\x20\ +\x20\x3c\x2f\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\x74\x3e\ +\x0a\x20\x20\x3c\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\x74\ +\x3e\x0a\x20\x20\x20\x3c\x63\x6c\x61\x73\x73\x3e\x47\x75\x69\x3a\ +\x3a\x50\x72\x65\x66\x43\x6f\x6d\x62\x6f\x42\x6f\x78\x3c\x2f\x63\ +\x6c\x61\x73\x73\x3e\x0a\x20\x20\x20\x3c\x65\x78\x74\x65\x6e\x64\ +\x73\x3e\x51\x43\x6f\x6d\x62\x6f\x42\x6f\x78\x3c\x2f\x65\x78\x74\ +\x65\x6e\x64\x73\x3e\x0a\x20\x20\x20\x3c\x68\x65\x61\x64\x65\x72\ +\x3e\x47\x75\x69\x2f\x50\x72\x65\x66\x57\x69\x64\x67\x65\x74\x73\ +\x2e\x68\x3c\x2f\x68\x65\x61\x64\x65\x72\x3e\x0a\x20\x20\x3c\x2f\ +\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x3c\ +\x2f\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\x74\x73\x3e\x0a\ +\x20\x3c\x72\x65\x73\x6f\x75\x72\x63\x65\x73\x2f\x3e\x0a\x20\x3c\ +\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x73\x2f\x3e\x0a\x3c\x2f\ +\x75\x69\x3e\x0a\ +\x00\x00\x94\xbb\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x3f\x3e\x0a\x3c\x75\x69\x20\x76\x65\x72\x73\x69\x6f\ +\x6e\x3d\x22\x34\x2e\x30\x22\x3e\x0a\x20\x3c\x63\x6c\x61\x73\x73\ +\x3e\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\x67\x3a\x3a\x44\x6c\ +\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\x61\x66\x74\x3c\x2f\ +\x63\x6c\x61\x73\x73\x3e\x0a\x20\x3c\x77\x69\x64\x67\x65\x74\x20\ +\x63\x6c\x61\x73\x73\x3d\x22\x51\x57\x69\x64\x67\x65\x74\x22\x20\ +\x6e\x61\x6d\x65\x3d\x22\x47\x75\x69\x3a\x3a\x44\x69\x61\x6c\x6f\ +\x67\x3a\x3a\x44\x6c\x67\x53\x65\x74\x74\x69\x6e\x67\x73\x44\x72\ +\x61\x66\x74\x22\x3e\x0a\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x20\x6e\x61\x6d\x65\x3d\x22\x67\x65\x6f\x6d\x65\x74\x72\x79\ +\x22\x3e\x0a\x20\x20\x20\x3c\x72\x65\x63\x74\x3e\x0a\x20\x20\x20\ +\x20\x3c\x78\x3e\x30\x3c\x2f\x78\x3e\x0a\x20\x20\x20\x20\x3c\x79\ +\x3e\x30\x3c\x2f\x79\x3e\x0a\x20\x20\x20\x20\x3c\x77\x69\x64\x74\ +\x68\x3e\x35\x39\x30\x3c\x2f\x77\x69\x64\x74\x68\x3e\x0a\x20\x20\ +\x20\x20\x3c\x68\x65\x69\x67\x68\x74\x3e\x36\x32\x39\x3c\x2f\x68\ +\x65\x69\x67\x68\x74\x3e\x0a\x20\x20\x20\x3c\x2f\x72\x65\x63\x74\ +\x3e\x0a\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ +\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ +\x3d\x22\x77\x69\x6e\x64\x6f\x77\x54\x69\x74\x6c\x65\x22\x3e\x0a\ +\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x47\x65\x6e\x65\x72\ +\x61\x6c\x20\x73\x65\x74\x74\x69\x6e\x67\x73\x3c\x2f\x73\x74\x72\ +\x69\x6e\x67\x3e\x0a\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x3e\x0a\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\x61\ +\x73\x73\x3d\x22\x51\x56\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\x22\ +\x3e\x0a\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ +\x61\x6d\x65\x3d\x22\x73\x70\x61\x63\x69\x6e\x67\x22\x3e\x0a\x20\ +\x20\x20\x20\x3c\x6e\x75\x6d\x62\x65\x72\x3e\x36\x3c\x2f\x6e\x75\ +\x6d\x62\x65\x72\x3e\x0a\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x3e\x0a\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6d\x61\x72\x67\x69\x6e\x22\x3e\ +\x0a\x20\x20\x20\x20\x3c\x6e\x75\x6d\x62\x65\x72\x3e\x39\x3c\x2f\ +\x6e\x75\x6d\x62\x65\x72\x3e\x0a\x20\x20\x20\x3c\x2f\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\ +\x0a\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\ +\x73\x73\x3d\x22\x51\x47\x72\x6f\x75\x70\x42\x6f\x78\x22\x20\x6e\ +\x61\x6d\x65\x3d\x22\x67\x72\x6f\x75\x70\x42\x6f\x78\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ +\x61\x6d\x65\x3d\x22\x74\x69\x74\x6c\x65\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x47\x65\x6e\x65\x72\ +\x61\x6c\x20\x44\x72\x61\x66\x74\x20\x53\x65\x74\x74\x69\x6e\x67\ +\x73\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\ +\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\ +\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\ +\x51\x56\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\ +\x65\x3d\x22\x76\x65\x72\x74\x69\x63\x61\x6c\x4c\x61\x79\x6f\x75\ +\x74\x5f\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\ +\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\x4c\x61\ +\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\ +\x7a\x6f\x6e\x74\x61\x6c\x4c\x61\x79\x6f\x75\x74\x5f\x31\x39\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\ +\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\x6c\x22\ +\x20\x6e\x61\x6d\x65\x3d\x22\x6c\x61\x62\x65\x6c\x5f\x31\x39\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x72\x69\x6e\x67\x3e\x44\x72\x61\x66\x74\x20\x69\x6e\x74\x65\ +\x72\x66\x61\x63\x65\x20\x6d\x6f\x64\x65\x3c\x2f\x73\x74\x72\x69\ +\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\ +\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x43\x6f\x6d\ +\x62\x6f\x42\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\ +\x3a\x3a\x70\x72\x65\x66\x63\x6f\x6d\x62\x6f\x62\x6f\x78\x5f\x34\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\ +\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\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\x3c\x2f\x73\x74\x72\x69\x6e\ +\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\ +\x65\x3d\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\ +\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x55\x69\ +\x4d\x6f\x64\x65\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\ +\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\ +\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\ +\x66\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\ +\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x54\x6f\x6f\x6c\x62\x61\ +\x72\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\ +\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ +\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x54\x61\x73\x6b\x76\ +\x69\x65\x77\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\ +\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\ +\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\ +\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\ +\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x4c\x61\x79\x6f\x75\x74\x5f\x32\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\ +\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\x6c\ +\x22\x20\x6e\x61\x6d\x65\x3d\x22\x6c\x61\x62\x65\x6c\x5f\x32\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x72\x69\x6e\x67\x3e\x44\x65\x66\x61\x75\x6c\x74\x20\x63\x6f\ +\x6c\x6f\x72\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\ +\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\ +\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\ +\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\ +\x3a\x3a\x50\x72\x65\x66\x43\x6f\x6c\x6f\x72\x42\x75\x74\x74\x6f\ +\x6e\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\ +\x65\x66\x63\x6f\x6c\x6f\x72\x62\x75\x74\x74\x6f\x6e\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\ +\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x72\x69\x6e\x67\x3e\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\x3c\x2f\x73\x74\x72\x69\x6e\x67\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ +\x3d\x22\x63\x6f\x6c\x6f\x72\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x63\x6f\x6c\x6f\x72\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x72\x65\x64\x3e\x30\x3c\ +\x2f\x72\x65\x64\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x67\x72\x65\x65\x6e\x3e\x30\x3c\x2f\x67\x72\x65\x65\ +\x6e\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x62\x6c\x75\x65\x3e\x30\x3c\x2f\x62\x6c\x75\x65\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x6f\x6c\x6f\x72\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ +\x3d\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\ +\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x63\x6f\x6c\ +\x6f\x72\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\ +\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\ +\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\x74\ +\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\ +\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\ +\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\ +\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\x6c\x61\x62\x65\x6c\x5f\x34\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\ +\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x72\x69\x6e\x67\x3e\x53\x6e\x61\x70\x20\x63\x6f\x6c\x6f\ +\x72\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\ +\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\ +\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\ +\x50\x72\x65\x66\x43\x6f\x6c\x6f\x72\x42\x75\x74\x74\x6f\x6e\x22\ +\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\ +\x63\x6f\x6c\x6f\x72\x62\x75\x74\x74\x6f\x6e\x5f\x32\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\ +\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x72\x69\x6e\x67\x3e\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\x3c\x2f\x73\x74\x72\x69\x6e\ +\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\ +\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x63\x6f\x6c\x6f\x72\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x72\x65\x64\x3e\x30\ +\x3c\x2f\x72\x65\x64\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x67\x72\x65\x65\x6e\x3e\x30\x3c\x2f\x67\x72\x65\ +\x65\x6e\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x62\x6c\x75\x65\x3e\x30\x3c\x2f\x62\x6c\x75\x65\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x6f\x6c\x6f\ +\x72\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\ +\x65\x3d\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\ +\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x73\x6e\ +\x61\x70\x63\x6f\x6c\x6f\x72\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ +\x3d\x22\x70\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\ +\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\ +\x44\x72\x61\x66\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\ +\x51\x4c\x61\x62\x65\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\x6c\x61\ +\x62\x65\x6c\x5f\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ +\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x43\x6f\x6e\x73\ +\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x63\x6f\x6c\x6f\x72\x3c\x2f\ +\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\ +\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\ +\x66\x43\x6f\x6c\x6f\x72\x42\x75\x74\x74\x6f\x6e\x22\x20\x6e\x61\ +\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\x63\x6f\x6c\ +\x6f\x72\x62\x75\x74\x74\x6f\x6e\x5f\x33\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\ +\x69\x6e\x67\x3e\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\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x63\x6f\x6c\x6f\x72\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\ +\x6f\x6c\x6f\x72\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x72\x65\x64\x3e\x34\x34\x3c\x2f\x72\x65\x64\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x67\x72\x65\ +\x65\x6e\x3e\x31\x32\x35\x3c\x2f\x67\x72\x65\x65\x6e\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x62\x6c\x75\x65\ +\x3e\x32\x35\x35\x3c\x2f\x62\x6c\x75\x65\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x6f\x6c\x6f\x72\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ +\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\ +\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x63\x6f\x6e\x73\x74\ +\x72\x75\x63\x74\x69\x6f\x6e\x63\x6f\x6c\x6f\x72\x3c\x2f\x63\x73\ +\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x50\x61\x74\x68\x22\ +\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\ +\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\x74\x3c\x2f\x63\x73\x74\x72\ +\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\ +\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\x6c\x22\x20\x6e\x61\x6d\ +\x65\x3d\x22\x6c\x61\x62\x65\x6c\x5f\x33\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\ +\x3e\x44\x65\x66\x61\x75\x6c\x74\x20\x6c\x69\x6e\x65\x77\x69\x64\ +\x74\x68\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\ +\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\ +\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\ +\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\ +\x3a\x50\x72\x65\x66\x53\x70\x69\x6e\x42\x6f\x78\x22\x20\x6e\x61\ +\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\x73\x70\x69\ +\x6e\x62\x6f\x78\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\ +\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\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\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x76\x61\x6c\ +\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x6e\x75\x6d\x62\x65\x72\x3e\x32\x3c\x2f\x6e\x75\x6d\x62\x65\ +\x72\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\ +\x65\x3d\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\ +\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x6c\x69\ +\x6e\x65\x77\x69\x64\x74\x68\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ +\x3d\x22\x70\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\ +\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\ +\x44\x72\x61\x66\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\ +\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\ +\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\ +\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\ +\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x4c\x61\x79\x6f\x75\x74\x5f\x33\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\ +\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\x6c\ +\x22\x20\x6e\x61\x6d\x65\x3d\x22\x6c\x61\x62\x65\x6c\x5f\x32\x30\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\ +\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x72\x69\x6e\x67\x3e\x43\x6f\x6e\x73\x74\x72\x61\x69\x6e\ +\x20\x6d\x6f\x64\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\ +\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\ +\x69\x3a\x3a\x50\x72\x65\x66\x43\x6f\x6d\x62\x6f\x42\x6f\x78\x22\ +\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\ +\x63\x6f\x6d\x62\x6f\x62\x6f\x78\x5f\x35\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\ +\x69\x6e\x67\x3e\x54\x68\x65\x20\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\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x45\ +\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\ +\x74\x72\x69\x6e\x67\x3e\x6d\x6f\x64\x63\x6f\x6e\x73\x74\x72\x61\ +\x69\x6e\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\ +\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\ +\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\x74\ +\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\ +\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x72\x69\x6e\x67\x3e\x73\x68\x69\x66\x74\x3c\x2f\x73\ +\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x72\x69\x6e\x67\x3e\x63\x74\x72\x6c\x3c\x2f\x73\x74\x72\ +\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x72\x69\x6e\x67\x3e\x61\x6c\x74\x3c\x2f\x73\x74\x72\x69\x6e\x67\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x70\x61\x63\x65\x72\x20\x6e\x61\ +\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x53\x70\ +\x61\x63\x65\x72\x5f\x35\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\ +\x65\x3d\x22\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x65\x6e\x75\ +\x6d\x3e\x51\x74\x3a\x3a\x48\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\ +\x3c\x2f\x65\x6e\x75\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x20\x6e\x61\x6d\x65\x3d\x22\x73\x69\x7a\x65\x48\x69\x6e\x74\ +\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x69\x7a\x65\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\ +\x74\x68\x3e\x34\x30\x3c\x2f\x77\x69\x64\x74\x68\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x68\x65\x69\x67\x68\ +\x74\x3e\x32\x30\x3c\x2f\x68\x65\x69\x67\x68\x74\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\x69\x7a\x65\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x73\x70\x61\x63\x65\x72\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\ +\x22\x51\x4c\x61\x62\x65\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\x6c\ +\x61\x62\x65\x6c\x5f\x32\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\ +\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x53\x6e\ +\x61\x70\x20\x6d\x6f\x64\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\ +\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x43\x6f\x6d\x62\x6f\x42\x6f\ +\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\ +\x65\x66\x63\x6f\x6d\x62\x6f\x62\x6f\x78\x5f\x36\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x72\x69\x6e\x67\x3e\x54\x68\x65\x20\x73\x6e\x61\x70\x20\x6d\ +\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\x3c\x2f\x73\x74\x72\ +\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ +\x61\x6d\x65\x3d\x22\x63\x75\x72\x72\x65\x6e\x74\x49\x6e\x64\x65\ +\x78\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x6e\x75\x6d\x62\x65\x72\x3e\x31\x3c\x2f\x6e\x75\x6d\x62\x65\x72\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ +\x3d\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\ +\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x6d\x6f\x64\ +\x73\x6e\x61\x70\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\ +\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\ +\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\ +\x66\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\ +\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x73\x68\x69\x66\x74\x3c\ +\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\ +\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x63\x74\x72\x6c\x3c\x2f\x73\ +\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x72\x69\x6e\x67\x3e\x61\x6c\x74\x3c\x2f\x73\x74\x72\x69\ +\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x70\x61\x63\x65\x72\x20\ +\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\ +\x53\x70\x61\x63\x65\x72\x5f\x36\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ +\x61\x6d\x65\x3d\x22\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x65\ +\x6e\x75\x6d\x3e\x51\x74\x3a\x3a\x48\x6f\x72\x69\x7a\x6f\x6e\x74\ +\x61\x6c\x3c\x2f\x65\x6e\x75\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x73\x69\x7a\x65\x48\x69\ +\x6e\x74\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x69\x7a\x65\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\ +\x69\x64\x74\x68\x3e\x34\x30\x3c\x2f\x77\x69\x64\x74\x68\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x68\x65\x69\ +\x67\x68\x74\x3e\x32\x30\x3c\x2f\x68\x65\x69\x67\x68\x74\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\x69\x7a\ +\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x73\x70\x61\x63\x65\x72\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\ +\x73\x3d\x22\x51\x4c\x61\x62\x65\x6c\x22\x20\x6e\x61\x6d\x65\x3d\ +\x22\x6c\x61\x62\x65\x6c\x5f\x32\x32\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\ +\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\ +\x41\x6c\x74\x20\x6d\x6f\x64\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\ +\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x43\x6f\x6d\x62\x6f\x42\ +\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\ +\x72\x65\x66\x63\x6f\x6d\x62\x6f\x62\x6f\x78\x5f\x37\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\ +\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x72\x69\x6e\x67\x3e\x54\x68\x65\x20\x61\x6c\x74\x20\x6d\ +\x6f\x64\x69\x66\x69\x65\x72\x20\x6b\x65\x79\x3c\x2f\x73\x74\x72\ +\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ +\x61\x6d\x65\x3d\x22\x63\x75\x72\x72\x65\x6e\x74\x49\x6e\x64\x65\ +\x78\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x6e\x75\x6d\x62\x65\x72\x3e\x32\x3c\x2f\x6e\x75\x6d\x62\x65\x72\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ +\x3d\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\ +\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x6d\x6f\x64\ +\x61\x6c\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\ +\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\ +\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\ +\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\ +\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x73\x68\x69\x66\x74\x3c\x2f\ +\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\ +\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x72\x69\x6e\x67\x3e\x63\x74\x72\x6c\x3c\x2f\x73\x74\ +\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x72\x69\x6e\x67\x3e\x61\x6c\x74\x3c\x2f\x73\x74\x72\x69\x6e\ +\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\ +\x22\x51\x48\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\x61\ +\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x4c\x61\ +\x79\x6f\x75\x74\x5f\x31\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\ +\x22\x51\x4c\x61\x62\x65\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\x6c\ +\x61\x62\x65\x6c\x5f\x31\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\ +\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x43\x6f\ +\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x20\x67\x72\x6f\x75\x70\ +\x20\x6e\x61\x6d\x65\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\ +\x75\x69\x3a\x3a\x50\x72\x65\x66\x4c\x69\x6e\x65\x45\x64\x69\x74\ +\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\x65\ +\x66\x6c\x69\x6e\x65\x65\x64\x69\x74\x5f\x32\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x72\x69\x6e\x67\x3e\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\x3c\x2f\x73\ +\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\ +\x3e\x43\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x3c\x2f\x73\ +\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\ +\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\ +\x67\x3e\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x69\x6f\x6e\x67\x72\ +\x6f\x75\x70\x6e\x61\x6d\x65\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ +\x3d\x22\x70\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\ +\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\ +\x44\x72\x61\x66\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\ +\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\ +\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\ +\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\ +\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x4c\x61\x79\x6f\x75\x74\x5f\x34\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\ +\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\ +\x72\x65\x66\x43\x68\x65\x63\x6b\x42\x6f\x78\x22\x20\x6e\x61\x6d\ +\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\x63\x68\x65\x63\ +\x6b\x62\x6f\x78\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\ +\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\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\x3c\x2f\x73\x74\x72\ +\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ +\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\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\x3c\ +\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x45\x6e\x74\ +\x72\x79\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\ +\x69\x6e\x67\x3e\x73\x61\x76\x65\x6f\x6e\x65\x78\x69\x74\x3c\x2f\ +\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x50\x61\x74\ +\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\ +\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\x74\x3c\x2f\x63\x73\ +\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\ +\x3d\x22\x51\x48\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\ +\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x4c\ +\x61\x79\x6f\x75\x74\x5f\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\ +\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x43\x68\x65\x63\x6b\x42\ +\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\ +\x72\x65\x66\x63\x68\x65\x63\x6b\x62\x6f\x78\x5f\x35\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\ +\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x72\x69\x6e\x67\x3e\x49\x66\x20\x74\x68\x69\x73\x20\x69\ +\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\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\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ +\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x47\x6c\x6f\x62\x61\x6c\ +\x20\x63\x6f\x70\x79\x20\x6d\x6f\x64\x65\x3c\x2f\x73\x74\x72\x69\ +\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\ +\x6d\x65\x3d\x22\x63\x68\x65\x63\x6b\x65\x64\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x62\x6f\x6f\x6c\x3e\x74\ +\x72\x75\x65\x3c\x2f\x62\x6f\x6f\x6c\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x45\ +\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\ +\x74\x72\x69\x6e\x67\x3e\x63\x6f\x70\x79\x6d\x6f\x64\x65\x3c\x2f\ +\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x50\x61\x74\ +\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\ +\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\x74\x3c\x2f\x63\x73\ +\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\ +\x3d\x22\x51\x48\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\ +\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x4c\ +\x61\x79\x6f\x75\x74\x5f\x31\x38\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\ +\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x43\x68\x65\x63\x6b\ +\x42\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\ +\x70\x72\x65\x66\x63\x68\x65\x63\x6b\x62\x6f\x78\x5f\x33\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\ +\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x72\x69\x6e\x67\x3e\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\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\ +\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\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\x3c\x2f\x73\x74\ +\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\ +\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\ +\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\ +\x3e\x73\x65\x6c\x65\x63\x74\x42\x61\x73\x65\x4f\x62\x6a\x65\x63\ +\x74\x73\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\ +\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\ +\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\x74\ +\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\ +\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\ +\x6f\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\ +\x6c\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\x4c\x61\x79\x6f\x75\ +\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\ +\x74\x61\x6c\x4c\x61\x79\x6f\x75\x74\x5f\x35\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\ +\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x43\x68\ +\x65\x63\x6b\x42\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\ +\x69\x3a\x3a\x70\x72\x65\x66\x63\x68\x65\x63\x6b\x62\x6f\x78\x5f\ +\x38\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\ +\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x49\x66\x20\x74\x68\ +\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\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\x3c\x2f\x73\x74\ +\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\ +\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\ +\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\x3c\x2f\x73\ +\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x20\x6e\x61\x6d\x65\x3d\x22\x63\x68\x65\x63\x6b\x65\x64\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x62\x6f\x6f\ +\x6c\x3e\x74\x72\x75\x65\x3c\x2f\x62\x6f\x6f\x6c\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\ +\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\x74\x3d\ +\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x61\x6c\x77\x61\x79\x73\x53\ +\x6e\x61\x70\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\ +\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\ +\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\ +\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\ +\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\ +\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x70\ +\x61\x63\x65\x72\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\ +\x6f\x6e\x74\x61\x6c\x53\x70\x61\x63\x65\x72\x5f\x32\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6f\x72\x69\x65\x6e\x74\ +\x61\x74\x69\x6f\x6e\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x65\x6e\x75\x6d\x3e\x51\x74\x3a\x3a\x48\x6f\x72\ +\x69\x7a\x6f\x6e\x74\x61\x6c\x3c\x2f\x65\x6e\x75\x6d\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x73\ +\x69\x7a\x65\x48\x69\x6e\x74\x22\x20\x73\x74\x64\x73\x65\x74\x3d\ +\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x77\x69\x64\x74\x68\x3e\x34\x30\x3c\x2f\x77\x69\ +\x64\x74\x68\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x68\x65\x69\x67\x68\x74\x3e\x32\x30\x3c\x2f\x68\x65\x69\ +\x67\x68\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\x70\x61\x63\x65\x72\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\ +\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\x6c\x22\x20\ +\x6e\x61\x6d\x65\x3d\x22\x6c\x61\x62\x65\x6c\x5f\x31\x37\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\ +\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x72\x69\x6e\x67\x3e\x54\x68\x65\x20\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\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ +\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x53\x6e\x61\x70\x20\x72\ +\x61\x6e\x67\x65\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\ +\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\ +\x69\x3a\x3a\x50\x72\x65\x66\x53\x70\x69\x6e\x42\x6f\x78\x22\x20\ +\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\x73\ +\x70\x69\x6e\x62\x6f\x78\x5f\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ +\x61\x6d\x65\x3d\x22\x73\x75\x66\x66\x69\x78\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\ +\x3e\x70\x78\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\ +\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\ +\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x63\x73\x74\x72\x69\x6e\x67\x3e\x73\x6e\x61\x70\x52\x61\x6e\x67\ +\x65\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\ +\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\ +\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\x74\x3c\ +\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\ +\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\ +\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\ +\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\ +\x22\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\ +\x61\x6c\x4c\x61\x79\x6f\x75\x74\x5f\x32\x30\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\ +\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x43\x68\ +\x65\x63\x6b\x42\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\ +\x69\x3a\x3a\x70\x72\x65\x66\x63\x68\x65\x63\x6b\x62\x6f\x78\x5f\ +\x34\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\ +\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x49\x66\x20\x74\x68\ +\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\x73\ +\x6e\x61\x70\x70\x69\x6e\x67\x20\x77\x69\x6c\x6c\x20\x6e\x6f\x74\ +\x20\x6f\x63\x63\x75\x72\x20\x61\x67\x61\x69\x6e\x73\x74\x20\x6f\ +\x62\x6a\x65\x63\x74\x73\x20\x77\x69\x74\x68\x20\x6d\x6f\x72\x65\ +\x20\x74\x68\x61\x6e\x20\x74\x68\x65\x20\x69\x6e\x64\x69\x63\x61\ +\x74\x65\x64\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x65\x64\ +\x67\x65\x73\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\ +\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x72\x69\x6e\x67\x3e\x53\x6e\x61\x70\x20\x6d\x61\x78\x69\ +\x6d\x75\x6d\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x63\x68\x65\ +\x63\x6b\x65\x64\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x62\x6f\x6f\x6c\x3e\x74\x72\x75\x65\x3c\x2f\x62\x6f\ +\x6f\x6c\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\ +\x6d\x65\x3d\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\ +\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x6d\ +\x61\x78\x53\x6e\x61\x70\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\ +\x22\x70\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\ +\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\ +\x72\x61\x66\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x70\x61\x63\x65\x72\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\ +\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x53\x70\x61\x63\x65\x72\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6f\x72\x69\x65\x6e\ +\x74\x61\x74\x69\x6f\x6e\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x65\x6e\x75\x6d\x3e\x51\x74\x3a\x3a\x48\x6f\ +\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x3c\x2f\x65\x6e\x75\x6d\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ +\x73\x69\x7a\x65\x48\x69\x6e\x74\x22\x20\x73\x74\x64\x73\x65\x74\ +\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x77\x69\x64\x74\x68\x3e\x34\x30\x3c\x2f\x77\ +\x69\x64\x74\x68\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x68\x65\x69\x67\x68\x74\x3e\x32\x30\x3c\x2f\x68\x65\ +\x69\x67\x68\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\x70\x61\x63\x65\x72\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\ +\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\x6c\x22\ +\x20\x6e\x61\x6d\x65\x3d\x22\x6c\x61\x62\x65\x6c\x5f\x32\x33\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\ +\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x4d\x61\x78\x69\x6d\x75\x6d\ +\x20\x6e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x65\x64\x67\x65\x73\ +\x20\x74\x6f\x20\x62\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x65\ +\x64\x20\x66\x6f\x72\x20\x73\x6e\x61\x70\x70\x69\x6e\x67\x3c\x2f\ +\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\ +\x67\x3e\x4d\x61\x78\x69\x6d\x75\x6d\x20\x6e\x75\x6d\x62\x65\x72\ +\x20\x6f\x66\x20\x65\x64\x67\x65\x73\x3c\x2f\x73\x74\x72\x69\x6e\ +\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\ +\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x53\x70\x69\x6e\ +\x42\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\ +\x70\x72\x65\x66\x73\x70\x69\x6e\x62\x6f\x78\x5f\x36\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6d\x61\x78\x69\x6d\x75\ +\x6d\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x6e\x75\x6d\x62\x65\x72\x3e\x39\x39\x39\x3c\x2f\x6e\x75\x6d\x62\ +\x65\x72\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\ +\x6d\x65\x3d\x22\x76\x61\x6c\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x6e\x75\x6d\x62\x65\x72\x3e\x32\ +\x34\x3c\x2f\x6e\x75\x6d\x62\x65\x72\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x45\ +\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\ +\x74\x72\x69\x6e\x67\x3e\x6d\x61\x78\x53\x6e\x61\x70\x45\x64\x67\ +\x65\x73\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\ +\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\ +\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\x74\ +\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\ +\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\ +\x6f\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\ +\x6c\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\x4c\x61\x79\x6f\x75\ +\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\ +\x74\x61\x6c\x4c\x61\x79\x6f\x75\x74\x5f\x38\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\ +\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x43\x68\ +\x65\x63\x6b\x42\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\ +\x69\x3a\x3a\x70\x72\x65\x66\x63\x68\x65\x63\x6b\x62\x6f\x78\x5f\ +\x36\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\ +\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x49\x66\x20\x74\x68\ +\x69\x73\x20\x69\x73\x20\x63\x68\x65\x63\x6b\x65\x64\x2c\x20\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\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x72\x69\x6e\x67\x3e\x46\x69\x6c\x6c\x20\x6f\x62\x6a\x65\x63\x74\ +\x73\x20\x62\x79\x20\x64\x65\x66\x61\x75\x6c\x74\x3c\x2f\x73\x74\ +\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\ +\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\ +\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\ +\x3e\x66\x69\x6c\x6c\x6d\x6f\x64\x65\x3c\x2f\x63\x73\x74\x72\x69\ +\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\ +\x6d\x65\x3d\x22\x70\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\ +\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\ +\x64\x2f\x44\x72\x61\x66\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x6c\ +\x61\x79\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x48\x42\ +\x6f\x78\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\ +\x68\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x4c\x61\x79\x6f\x75\x74\ +\x5f\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\ +\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\ +\x65\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\x6c\x61\x62\x65\x6c\x5f\ +\x31\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\ +\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x44\x65\x66\x61\x75\x6c\x74\ +\x20\x77\x6f\x72\x6b\x69\x6e\x67\x20\x70\x6c\x61\x6e\x65\x3c\x2f\ +\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\ +\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\ +\x66\x43\x6f\x6d\x62\x6f\x42\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\ +\x22\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\x63\x6f\x6d\x62\x6f\x62\ +\x6f\x78\x5f\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\ +\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\ +\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x64\x65\x66\x61\ +\x75\x6c\x74\x57\x50\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ +\x70\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\ +\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\ +\x61\x66\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\ +\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ +\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x4e\x6f\x6e\x65\x3c\ +\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\ +\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x58\x59\x20\x28\x54\x6f\x70\ +\x29\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\ +\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ +\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x58\x5a\x20\x28\x46\ +\x72\x6f\x6e\x74\x29\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\ +\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x59\ +\x5a\x20\x28\x53\x69\x64\x65\x29\x3c\x2f\x73\x74\x72\x69\x6e\x67\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\ +\x51\x48\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\ +\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x4c\x61\x79\ +\x6f\x75\x74\x5f\x31\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\ +\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x43\x68\x65\x63\x6b\x42\x6f\ +\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\ +\x65\x66\x63\x68\x65\x63\x6b\x62\x6f\x78\x5f\x32\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x72\x69\x6e\x67\x3e\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\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x72\x69\x6e\x67\x3e\x55\x73\x65\x20\x67\x72\x69\x64\x3c\x2f\x73\ +\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x20\x6e\x61\x6d\x65\x3d\x22\x63\x68\x65\x63\x6b\x65\x64\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x62\x6f\x6f\ +\x6c\x3e\x74\x72\x75\x65\x3c\x2f\x62\x6f\x6f\x6c\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\ +\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\x74\x3d\ +\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x67\x72\x69\x64\x3c\x2f\x63\ +\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x50\x61\x74\x68\ +\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\ +\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\x74\x3c\x2f\x63\x73\x74\ +\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x70\x61\x63\x65\x72\x20\x6e\ +\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x53\ +\x70\x61\x63\x65\x72\x5f\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\ +\x6d\x65\x3d\x22\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x65\x6e\ +\x75\x6d\x3e\x51\x74\x3a\x3a\x48\x6f\x72\x69\x7a\x6f\x6e\x74\x61\ +\x6c\x3c\x2f\x65\x6e\x75\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x73\x69\x7a\x65\x48\x69\x6e\ +\x74\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x69\x7a\x65\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\ +\x64\x74\x68\x3e\x34\x30\x3c\x2f\x77\x69\x64\x74\x68\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x68\x65\x69\x67\ +\x68\x74\x3e\x32\x30\x3c\x2f\x68\x65\x69\x67\x68\x74\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\x69\x7a\x65\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x73\x70\x61\x63\x65\x72\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\ +\x3d\x22\x51\x4c\x61\x62\x65\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\ +\x6c\x61\x62\x65\x6c\x5f\x31\x35\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ +\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x47\ +\x72\x69\x64\x20\x73\x70\x61\x63\x69\x6e\x67\x3c\x2f\x73\x74\x72\ +\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\ +\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x44\x6f\ +\x75\x62\x6c\x65\x53\x70\x69\x6e\x42\x6f\x78\x22\x20\x6e\x61\x6d\ +\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\x64\x6f\x75\x62\ +\x6c\x65\x73\x70\x69\x6e\x62\x6f\x78\x5f\x33\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x72\x69\x6e\x67\x3e\x54\x68\x65\x20\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\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\ +\x22\x76\x61\x6c\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x64\x6f\x75\x62\x6c\x65\x3e\x31\x2e\x30\x30\ +\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x3c\x2f\x64\ +\x6f\x75\x62\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\ +\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\ +\x67\x3e\x67\x72\x69\x64\x53\x70\x61\x63\x69\x6e\x67\x3c\x2f\x63\ +\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x50\x61\x74\x68\ +\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\ +\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\x74\x3c\x2f\x63\x73\x74\ +\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\ +\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\x6c\x22\x20\x6e\x61\ +\x6d\x65\x3d\x22\x6c\x61\x62\x65\x6c\x5f\x31\x36\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\ +\x6e\x67\x3e\x4d\x61\x69\x6e\x20\x6c\x69\x6e\x65\x73\x20\x65\x76\ +\x65\x72\x79\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\ +\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\ +\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\ +\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\ +\x3a\x3a\x50\x72\x65\x66\x53\x70\x69\x6e\x42\x6f\x78\x22\x20\x6e\ +\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\x73\x70\ +\x69\x6e\x62\x6f\x78\x5f\x34\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\ +\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\ +\x3e\x4d\x61\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\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x76\x61\x6c\x75\ +\x65\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x6e\x75\x6d\x62\x65\x72\x3e\x31\x30\x3c\x2f\x6e\x75\x6d\x62\x65\ +\x72\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\ +\x65\x3d\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\ +\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x67\x72\ +\x69\x64\x45\x76\x65\x72\x79\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ +\x3d\x22\x70\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\ +\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\ +\x44\x72\x61\x66\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\ +\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\ +\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\ +\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\ +\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x4c\x61\x79\x6f\x75\x74\x5f\x31\ +\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\ +\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\ +\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\x6c\x61\x62\x65\x6c\x5f\x38\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\ +\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x72\x69\x6e\x67\x3e\x49\x6e\x74\x65\x72\x6e\x61\x6c\x20\ +\x70\x72\x65\x63\x69\x73\x69\x6f\x6e\x20\x6c\x65\x76\x65\x6c\x3c\ +\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\ +\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\ +\x65\x66\x53\x70\x69\x6e\x42\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\ +\x22\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\x73\x70\x69\x6e\x62\x6f\ +\x78\x5f\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ +\x6d\x61\x78\x69\x6d\x75\x6d\x53\x69\x7a\x65\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x69\x7a\x65\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\ +\x74\x68\x3e\x36\x30\x3c\x2f\x77\x69\x64\x74\x68\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x68\x65\x69\x67\x68\ +\x74\x3e\x31\x36\x37\x37\x37\x32\x31\x35\x3c\x2f\x68\x65\x69\x67\ +\x68\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\ +\x69\x6e\x67\x3e\x54\x68\x65\x20\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\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x76\x61\x6c\x75\x65\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x6e\ +\x75\x6d\x62\x65\x72\x3e\x36\x3c\x2f\x6e\x75\x6d\x62\x65\x72\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\ +\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\ +\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x70\x72\x65\x63\ +\x69\x73\x69\x6f\x6e\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ +\x70\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\ +\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\ +\x61\x66\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\ +\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x70\x61\x63\x65\x72\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\ +\x69\x7a\x6f\x6e\x74\x61\x6c\x53\x70\x61\x63\x65\x72\x5f\x34\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6f\x72\x69\x65\ +\x6e\x74\x61\x74\x69\x6f\x6e\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x65\x6e\x75\x6d\x3e\x51\x74\x3a\x3a\x48\ +\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x3c\x2f\x65\x6e\x75\x6d\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\ +\x22\x73\x69\x7a\x65\x48\x69\x6e\x74\x22\x20\x73\x74\x64\x73\x65\ +\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x74\x68\x3e\x34\x30\x3c\x2f\ +\x77\x69\x64\x74\x68\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x68\x65\x69\x67\x68\x74\x3e\x32\x30\x3c\x2f\x68\ +\x65\x69\x67\x68\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\x70\x61\x63\x65\ +\x72\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\ +\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\x6c\ +\x22\x20\x6e\x61\x6d\x65\x3d\x22\x6c\x61\x62\x65\x6c\x5f\x31\x38\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\ +\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x72\x69\x6e\x67\x3e\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\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\ +\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\ +\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\ +\x50\x72\x65\x66\x53\x70\x69\x6e\x42\x6f\x78\x22\x20\x6e\x61\x6d\ +\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\x73\x70\x69\x6e\ +\x62\x6f\x78\x5f\x35\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ +\x3d\x22\x6d\x61\x78\x69\x6d\x75\x6d\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x6e\x75\x6d\x62\x65\x72\x3e\x38\ +\x3c\x2f\x6e\x75\x6d\x62\x65\x72\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x76\x61\x6c\x75\x65\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x6e\x75\ +\x6d\x62\x65\x72\x3e\x32\x3c\x2f\x6e\x75\x6d\x62\x65\x72\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ +\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\ +\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x64\x69\x6d\x50\x72\ +\x65\x63\x69\x73\x69\x6f\x6e\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ +\x3d\x22\x70\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\ +\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\ +\x44\x72\x61\x66\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\ +\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\ +\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\ +\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\ +\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x4c\x61\x79\x6f\x75\x74\x5f\x31\ +\x35\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\ +\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\ +\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\x6c\x61\x62\x65\x6c\x5f\x37\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\ +\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x72\x69\x6e\x67\x3e\x54\x6f\x6c\x65\x72\x61\x6e\x63\x65\ +\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\ +\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x70\x61\x63\ +\x65\x72\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\ +\x74\x61\x6c\x53\x70\x61\x63\x65\x72\x5f\x38\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6f\x72\x69\x65\x6e\x74\x61\x74\ +\x69\x6f\x6e\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x65\x6e\x75\x6d\x3e\x51\x74\x3a\x3a\x48\x6f\x72\x69\x7a\ +\x6f\x6e\x74\x61\x6c\x3c\x2f\x65\x6e\x75\x6d\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x73\x69\x7a\ +\x65\x48\x69\x6e\x74\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x77\x69\x64\x74\x68\x3e\x34\x30\x3c\x2f\x77\x69\x64\x74\ +\x68\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x68\x65\x69\x67\x68\x74\x3e\x32\x30\x3c\x2f\x68\x65\x69\x67\x68\ +\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x73\x70\x61\x63\x65\x72\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\ +\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x44\ +\x6f\x75\x62\x6c\x65\x53\x70\x69\x6e\x42\x6f\x78\x22\x20\x6e\x61\ +\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\x64\x6f\x75\ +\x62\x6c\x65\x73\x70\x69\x6e\x62\x6f\x78\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x20\x6e\x61\x6d\x65\x3d\x22\x6d\x61\x78\x69\x6d\x75\x6d\x53\x69\ +\x7a\x65\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x77\x69\x64\x74\x68\x3e\x36\x30\x3c\x2f\x77\x69\ +\x64\x74\x68\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x68\x65\x69\x67\x68\x74\x3e\x31\x36\x37\x37\x37\x32\x31\ +\x35\x3c\x2f\x68\x65\x69\x67\x68\x74\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\x69\x7a\x65\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\ +\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x54\x68\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\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\ +\x73\x75\x66\x66\x69\x78\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x73\x69\ +\x6e\x67\x6c\x65\x53\x74\x65\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x64\x6f\x75\x62\x6c\x65\x3e\x30\x2e\ +\x30\x31\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x3c\ +\x2f\x64\x6f\x75\x62\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x76\x61\x6c\x75\x65\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x6f\x75\ +\x62\x6c\x65\x3e\x30\x2e\x30\x35\x30\x30\x30\x30\x30\x30\x30\x30\ +\x30\x30\x30\x30\x30\x3c\x2f\x64\x6f\x75\x62\x6c\x65\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\ +\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\x74\ +\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x74\x6f\x6c\x65\x72\x61\ +\x6e\x63\x65\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\ +\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\ +\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\ +\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\ +\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\ +\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\ +\x79\x6f\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\ +\x63\x6c\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\x4c\x61\x79\x6f\ +\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\ +\x6e\x74\x61\x6c\x4c\x61\x79\x6f\x75\x74\x5f\x36\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\ +\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\x6c\x22\x20\x6e\x61\ +\x6d\x65\x3d\x22\x6c\x61\x62\x65\x6c\x5f\x36\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\ +\x67\x3e\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x68\ +\x65\x69\x67\x68\x74\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x70\x61\x63\x65\x72\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\ +\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x53\x70\x61\x63\x65\x72\x5f\x39\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6f\x72\x69\ +\x65\x6e\x74\x61\x74\x69\x6f\x6e\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x65\x6e\x75\x6d\x3e\x51\x74\x3a\x3a\ +\x48\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x3c\x2f\x65\x6e\x75\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ +\x3d\x22\x73\x69\x7a\x65\x48\x69\x6e\x74\x22\x20\x73\x74\x64\x73\ +\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x74\x68\x3e\x34\x30\x3c\ +\x2f\x77\x69\x64\x74\x68\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x68\x65\x69\x67\x68\x74\x3e\x32\x30\x3c\x2f\ +\x68\x65\x69\x67\x68\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\x70\x61\x63\ +\x65\x72\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\ +\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\ +\x50\x72\x65\x66\x44\x6f\x75\x62\x6c\x65\x53\x70\x69\x6e\x42\x6f\ +\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\ +\x65\x66\x64\x6f\x75\x62\x6c\x65\x73\x70\x69\x6e\x62\x6f\x78\x5f\ +\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6d\x61\ +\x78\x69\x6d\x75\x6d\x53\x69\x7a\x65\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x69\x7a\x65\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x74\x68\ +\x3e\x36\x30\x3c\x2f\x77\x69\x64\x74\x68\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x68\x65\x69\x67\x68\x74\x3e\ +\x31\x36\x37\x37\x37\x32\x31\x35\x3c\x2f\x68\x65\x69\x67\x68\x74\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\ +\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ +\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\ +\x67\x3e\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\x3c\x2f\x73\x74\x72\x69\x6e\ +\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\ +\x65\x3d\x22\x76\x61\x6c\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x64\x6f\x75\x62\x6c\x65\x3e\x30\x2e\ +\x32\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x3c\ +\x2f\x64\x6f\x75\x62\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x45\x6e\x74\ +\x72\x79\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\ +\x69\x6e\x67\x3e\x74\x65\x78\x74\x68\x65\x69\x67\x68\x74\x3c\x2f\ +\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x50\x61\x74\ +\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\ +\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\x74\x3c\x2f\x63\x73\ +\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\x61\x73\x73\ +\x3d\x22\x51\x48\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\x22\x20\x6e\ +\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x4c\ +\x61\x79\x6f\x75\x74\x5f\x31\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\ +\x3d\x22\x51\x4c\x61\x62\x65\x6c\x22\x20\x6e\x61\x6d\x65\x3d\x22\ +\x6c\x61\x62\x65\x6c\x5f\x35\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\ +\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x44\x65\ +\x66\x61\x75\x6c\x74\x20\x74\x65\x78\x74\x20\x66\x6f\x6e\x74\x3c\ +\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x70\x61\x63\x65\ +\x72\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\ +\x61\x6c\x53\x70\x61\x63\x65\x72\x5f\x33\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x20\x6e\x61\x6d\x65\x3d\x22\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\ +\x6f\x6e\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x65\x6e\x75\x6d\x3e\x51\x74\x3a\x3a\x48\x6f\x72\x69\x7a\x6f\ +\x6e\x74\x61\x6c\x3c\x2f\x65\x6e\x75\x6d\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x73\x69\x7a\x65\ +\x48\x69\x6e\x74\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x69\ +\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x77\x69\x64\x74\x68\x3e\x34\x30\x3c\x2f\x77\x69\x64\x74\x68\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x68\ +\x65\x69\x67\x68\x74\x3e\x32\x30\x3c\x2f\x68\x65\x69\x67\x68\x74\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\ +\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x73\x70\x61\x63\x65\x72\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\ +\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x4c\x69\ +\x6e\x65\x45\x64\x69\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\ +\x69\x3a\x3a\x70\x72\x65\x66\x6c\x69\x6e\x65\x65\x64\x69\x74\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\ +\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x54\x68\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\x26\x71\x75\x6f\x74\x3b\x41\ +\x72\x69\x61\x6c\x26\x71\x75\x6f\x74\x3b\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\x26\x71\x75\x6f\x74\x3b\x73\x61\x6e\x73\x26\x71\ +\x75\x6f\x74\x3b\x2c\x20\x26\x71\x75\x6f\x74\x3b\x73\x65\x72\x69\ +\x66\x26\x71\x75\x6f\x74\x3b\x0a\x6f\x72\x20\x26\x71\x75\x6f\x74\ +\x3b\x6d\x6f\x6e\x6f\x26\x71\x75\x6f\x74\x3b\x2c\x20\x6f\x72\x20\ +\x61\x20\x66\x61\x6d\x69\x6c\x79\x20\x73\x75\x63\x68\x20\x61\x73\ +\x20\x26\x71\x75\x6f\x74\x3b\x41\x72\x69\x61\x6c\x2c\x48\x65\x6c\ +\x76\x65\x74\x69\x63\x61\x2c\x73\x61\x6e\x73\x26\x71\x75\x6f\x74\ +\x3b\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\x26\x71\x75\x6f\x74\x3b\x41\x72\x69\x61\x6c\x3a\x42\x6f\x6c\ +\x64\x26\x71\x75\x6f\x74\x3b\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\ +\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x41\x72\x69\x61\x6c\ +\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x61\x6c\x69\x67\x6e\x6d\ +\x65\x6e\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x65\x74\x3e\x51\x74\x3a\x3a\x41\x6c\x69\x67\x6e\x52\ +\x69\x67\x68\x74\x7c\x51\x74\x3a\x3a\x41\x6c\x69\x67\x6e\x54\x72\ +\x61\x69\x6c\x69\x6e\x67\x7c\x51\x74\x3a\x3a\x41\x6c\x69\x67\x6e\ +\x56\x43\x65\x6e\x74\x65\x72\x3c\x2f\x73\x65\x74\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\ +\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\x74\x3d\ +\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x74\x65\x78\x74\x66\x6f\x6e\ +\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\ +\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\ +\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\x74\x3c\ +\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\ +\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\ +\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\ +\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\ +\x22\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\ +\x61\x6c\x4c\x61\x79\x6f\x75\x74\x5f\x31\x31\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\ +\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\x6c\x22\x20\x6e\x61\x6d\ +\x65\x3d\x22\x6c\x61\x62\x65\x6c\x5f\x31\x31\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\ +\x67\x3e\x44\x65\x66\x61\x75\x6c\x74\x20\x74\x65\x6d\x70\x6c\x61\ +\x74\x65\x20\x73\x68\x65\x65\x74\x3c\x2f\x73\x74\x72\x69\x6e\x67\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x70\x61\x63\x65\x72\x20\x6e\x61\x6d\x65\x3d\ +\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x53\x70\x61\x63\x65\ +\x72\x5f\x31\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\ +\x22\x6f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x65\x6e\x75\x6d\x3e\ +\x51\x74\x3a\x3a\x48\x6f\x72\x69\x7a\x6f\x6e\x74\x61\x6c\x3c\x2f\ +\x65\x6e\x75\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\ +\x6e\x61\x6d\x65\x3d\x22\x73\x69\x7a\x65\x48\x69\x6e\x74\x22\x20\ +\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x69\x7a\x65\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x74\x68\ +\x3e\x34\x30\x3c\x2f\x77\x69\x64\x74\x68\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x68\x65\x69\x67\x68\x74\x3e\ +\x32\x30\x3c\x2f\x68\x65\x69\x67\x68\x74\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\x69\x7a\x65\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x73\x70\x61\x63\x65\x72\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x47\ +\x75\x69\x3a\x3a\x50\x72\x65\x66\x46\x69\x6c\x65\x43\x68\x6f\x6f\ +\x73\x65\x72\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\ +\x70\x72\x65\x66\x66\x69\x6c\x65\x63\x68\x6f\x6f\x73\x65\x72\x5f\ +\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6d\x69\ +\x6e\x69\x6d\x75\x6d\x53\x69\x7a\x65\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x69\x7a\x65\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x74\x68\ +\x3e\x33\x30\x30\x3c\x2f\x77\x69\x64\x74\x68\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x68\x65\x69\x67\x68\x74\ +\x3e\x30\x3c\x2f\x68\x65\x69\x67\x68\x74\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\x69\x7a\x65\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\ +\x6f\x6f\x6c\x54\x69\x70\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x54\x68\x65\x20\ +\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\x3c\x2f\x73\x74\x72\x69\x6e\ +\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\ +\x65\x3d\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\ +\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x74\x65\ +\x6d\x70\x6c\x61\x74\x65\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\ +\x22\x70\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\x65\ +\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\x44\ +\x72\x61\x66\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\x6f\ +\x75\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\x4c\ +\x61\x79\x6f\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\ +\x69\x7a\x6f\x6e\x74\x61\x6c\x4c\x61\x79\x6f\x75\x74\x5f\x31\x34\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\ +\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\x6c\ +\x22\x20\x6e\x61\x6d\x65\x3d\x22\x6c\x61\x62\x65\x6c\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\ +\x69\x6e\x67\x3e\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x73\x20\x26\ +\x61\x6d\x70\x3b\x20\x4c\x65\x61\x64\x65\x72\x20\x61\x72\x72\x6f\ +\x77\x20\x73\x74\x79\x6c\x65\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\ +\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x43\x6f\x6d\x62\x6f\x42\ +\x6f\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\ +\x72\x65\x66\x63\x6f\x6d\x62\x6f\x62\x6f\x78\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x45\x6e\x74\x72\ +\x79\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\ +\x6e\x67\x3e\x64\x69\x6d\x73\x79\x6d\x62\x6f\x6c\x3c\x2f\x63\x73\ +\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\x66\x50\x61\x74\x68\x22\ +\x20\x73\x74\x64\x73\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\ +\x3e\x4d\x6f\x64\x2f\x44\x72\x61\x66\x74\x3c\x2f\x63\x73\x74\x72\ +\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\ +\x67\x3e\x44\x6f\x74\x20\x35\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\ +\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\ +\x3e\x44\x6f\x74\x20\x37\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\ +\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\ +\x44\x6f\x74\x20\x39\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\ +\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x43\ +\x69\x72\x63\x6c\x65\x20\x35\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\ +\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\ +\x3e\x43\x69\x72\x63\x6c\x65\x20\x37\x3c\x2f\x73\x74\x72\x69\x6e\ +\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\ +\x6e\x67\x3e\x43\x69\x72\x63\x6c\x65\x20\x39\x3c\x2f\x73\x74\x72\ +\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\ +\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x72\x69\x6e\x67\x3e\x53\x6c\x61\x73\x68\x20\x35\x3c\x2f\x73\x74\ +\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x72\x69\x6e\x67\x3e\x53\x6c\x61\x73\x68\x20\x37\x3c\x2f\x73\ +\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x72\x69\x6e\x67\x3e\x53\x6c\x61\x73\x68\x20\x39\x3c\x2f\ +\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\ +\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x72\x69\x6e\x67\x3e\x42\x61\x63\x6b\x73\x6c\x61\x73\ +\x68\x20\x35\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ +\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x42\x61\x63\ +\x6b\x73\x6c\x61\x73\x68\x20\x37\x3c\x2f\x73\x74\x72\x69\x6e\x67\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\ +\x67\x3e\x42\x61\x63\x6b\x73\x6c\x61\x73\x68\x20\x39\x3c\x2f\x73\ +\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\ +\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\x79\x6f\ +\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\x63\x6c\ +\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\x4c\x61\x79\x6f\x75\x74\ +\x22\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\x74\ +\x61\x6c\x4c\x61\x79\x6f\x75\x74\x5f\x31\x36\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\ +\x61\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\x6c\x22\x20\x6e\x61\x6d\ +\x65\x3d\x22\x6c\x61\x62\x65\x6c\x5f\x31\x34\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\ +\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\ +\x67\x3e\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\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\x73\x73\x3d\x22\ +\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x43\x6f\x6d\x62\x6f\x42\x6f\ +\x78\x22\x20\x6e\x61\x6d\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\ +\x65\x66\x63\x6f\x6d\x62\x6f\x62\x6f\x78\x5f\x33\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x72\x69\x6e\x67\x3e\x54\x68\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\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x70\x72\ +\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\x65\x74\x3d\ +\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x64\x69\x6d\x6f\x72\x69\x65\ +\x6e\x74\x61\x74\x69\x6f\x6e\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ +\x3d\x22\x70\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\ +\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\ +\x44\x72\x61\x66\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ +\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x4c\x65\x66\ +\x74\x20\x28\x49\x53\x4f\x20\x73\x74\x61\x6e\x64\x61\x72\x64\x29\ +\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x74\ +\x65\x78\x74\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\x3e\x52\x69\x67\x68\x74\x3c\ +\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\ +\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\ +\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x6c\x61\ +\x79\x6f\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\ +\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x3c\x6c\x61\x79\x6f\x75\x74\x20\ +\x63\x6c\x61\x73\x73\x3d\x22\x51\x48\x42\x6f\x78\x4c\x61\x79\x6f\ +\x75\x74\x22\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\ +\x6e\x74\x61\x6c\x4c\x61\x79\x6f\x75\x74\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\x63\x6c\x61\ +\x73\x73\x3d\x22\x51\x4c\x61\x62\x65\x6c\x22\x20\x6e\x61\x6d\x65\ +\x3d\x22\x6c\x61\x62\x65\x6c\x5f\x31\x33\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x20\x6e\x61\x6d\x65\x3d\x22\x74\x65\x78\x74\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\x69\x6e\x67\ +\x3e\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\ +\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\x67\x65\ +\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\ +\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x70\x61\x63\ +\x65\x72\x20\x6e\x61\x6d\x65\x3d\x22\x68\x6f\x72\x69\x7a\x6f\x6e\ +\x74\x61\x6c\x53\x70\x61\x63\x65\x72\x5f\x31\x30\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x6f\x72\x69\x65\x6e\x74\x61\ +\x74\x69\x6f\x6e\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x65\x6e\x75\x6d\x3e\x51\x74\x3a\x3a\x48\x6f\x72\x69\ +\x7a\x6f\x6e\x74\x61\x6c\x3c\x2f\x65\x6e\x75\x6d\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\ +\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\x22\x73\x69\ +\x7a\x65\x48\x69\x6e\x74\x22\x20\x73\x74\x64\x73\x65\x74\x3d\x22\ +\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x77\x69\x64\x74\x68\x3e\x34\x30\x3c\x2f\x77\x69\x64\ +\x74\x68\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x68\x65\x69\x67\x68\x74\x3e\x32\x30\x3c\x2f\x68\x65\x69\x67\ +\x68\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x73\x70\x61\x63\x65\x72\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x69\x74\x65\x6d\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x77\x69\x64\x67\x65\x74\x20\ +\x63\x6c\x61\x73\x73\x3d\x22\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\ +\x46\x69\x6c\x65\x43\x68\x6f\x6f\x73\x65\x72\x22\x20\x6e\x61\x6d\ +\x65\x3d\x22\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\x66\x69\x6c\x65\ +\x63\x68\x6f\x6f\x73\x65\x72\x5f\x33\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\ +\x6e\x61\x6d\x65\x3d\x22\x6d\x69\x6e\x69\x6d\x75\x6d\x53\x69\x7a\ +\x65\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x77\x69\x64\x74\x68\x3e\x33\x30\x30\x3c\x2f\x77\x69\ +\x64\x74\x68\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x68\x65\x69\x67\x68\x74\x3e\x30\x3c\x2f\x68\x65\x69\x67\ +\x68\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x73\x69\x7a\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x70\x72\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\ +\x20\x6e\x61\x6d\x65\x3d\x22\x74\x6f\x6f\x6c\x54\x69\x70\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x72\ +\x69\x6e\x67\x3e\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\x26\x6c\x74\x3b\x70\x61\x74\x74\x65\x72\x6e\ +\x26\x67\x74\x3b\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\x3c\x2f\x73\x74\x72\x69\x6e\x67\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\ +\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\x3d\ +\x22\x70\x72\x65\x66\x45\x6e\x74\x72\x79\x22\x20\x73\x74\x64\x73\ +\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x70\x61\x74\x74\ +\x65\x72\x6e\x46\x69\x6c\x65\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\ +\x6f\x70\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x72\x6f\x70\x65\x72\x74\x79\x20\x6e\x61\x6d\x65\ +\x3d\x22\x70\x72\x65\x66\x50\x61\x74\x68\x22\x20\x73\x74\x64\x73\ +\x65\x74\x3d\x22\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x63\x73\x74\x72\x69\x6e\x67\x3e\x4d\x6f\x64\x2f\ +\x44\x72\x61\x66\x74\x3c\x2f\x63\x73\x74\x72\x69\x6e\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x70\x72\x6f\x70\ +\x65\x72\x74\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\x20\x20\x20\x20\x20\x3c\x2f\x6c\ +\x61\x79\x6f\x75\x74\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x77\x69\x64\ +\x67\x65\x74\x3e\x0a\x20\x20\x20\x3c\x2f\x69\x74\x65\x6d\x3e\x0a\ +\x20\x20\x3c\x2f\x6c\x61\x79\x6f\x75\x74\x3e\x0a\x20\x3c\x2f\x77\ +\x69\x64\x67\x65\x74\x3e\x0a\x20\x3c\x6c\x61\x79\x6f\x75\x74\x64\ +\x65\x66\x61\x75\x6c\x74\x20\x73\x70\x61\x63\x69\x6e\x67\x3d\x22\ +\x36\x22\x20\x6d\x61\x72\x67\x69\x6e\x3d\x22\x31\x31\x22\x2f\x3e\ +\x0a\x20\x3c\x70\x69\x78\x6d\x61\x70\x66\x75\x6e\x63\x74\x69\x6f\ +\x6e\x3e\x71\x50\x69\x78\x6d\x61\x70\x46\x72\x6f\x6d\x4d\x69\x6d\ +\x65\x53\x6f\x75\x72\x63\x65\x3c\x2f\x70\x69\x78\x6d\x61\x70\x66\ +\x75\x6e\x63\x74\x69\x6f\x6e\x3e\x0a\x20\x3c\x63\x75\x73\x74\x6f\ +\x6d\x77\x69\x64\x67\x65\x74\x73\x3e\x0a\x20\x20\x3c\x63\x75\x73\ +\x74\x6f\x6d\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x3c\x63\ +\x6c\x61\x73\x73\x3e\x47\x75\x69\x3a\x3a\x46\x69\x6c\x65\x43\x68\ +\x6f\x6f\x73\x65\x72\x3c\x2f\x63\x6c\x61\x73\x73\x3e\x0a\x20\x20\ +\x20\x3c\x65\x78\x74\x65\x6e\x64\x73\x3e\x51\x57\x69\x64\x67\x65\ +\x74\x3c\x2f\x65\x78\x74\x65\x6e\x64\x73\x3e\x0a\x20\x20\x20\x3c\ +\x68\x65\x61\x64\x65\x72\x3e\x47\x75\x69\x2f\x46\x69\x6c\x65\x44\ +\x69\x61\x6c\x6f\x67\x2e\x68\x3c\x2f\x68\x65\x61\x64\x65\x72\x3e\ +\x0a\x20\x20\x3c\x2f\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\ +\x74\x3e\x0a\x20\x20\x3c\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\ +\x65\x74\x3e\x0a\x20\x20\x20\x3c\x63\x6c\x61\x73\x73\x3e\x47\x75\ +\x69\x3a\x3a\x43\x6f\x6c\x6f\x72\x42\x75\x74\x74\x6f\x6e\x3c\x2f\ +\x63\x6c\x61\x73\x73\x3e\x0a\x20\x20\x20\x3c\x65\x78\x74\x65\x6e\ +\x64\x73\x3e\x51\x50\x75\x73\x68\x42\x75\x74\x74\x6f\x6e\x3c\x2f\ +\x65\x78\x74\x65\x6e\x64\x73\x3e\x0a\x20\x20\x20\x3c\x68\x65\x61\ +\x64\x65\x72\x3e\x47\x75\x69\x2f\x57\x69\x64\x67\x65\x74\x73\x2e\ +\x68\x3c\x2f\x68\x65\x61\x64\x65\x72\x3e\x0a\x20\x20\x3c\x2f\x63\ +\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x3c\ +\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\ +\x20\x3c\x63\x6c\x61\x73\x73\x3e\x47\x75\x69\x3a\x3a\x50\x72\x65\ +\x66\x46\x69\x6c\x65\x43\x68\x6f\x6f\x73\x65\x72\x3c\x2f\x63\x6c\ +\x61\x73\x73\x3e\x0a\x20\x20\x20\x3c\x65\x78\x74\x65\x6e\x64\x73\ +\x3e\x47\x75\x69\x3a\x3a\x46\x69\x6c\x65\x43\x68\x6f\x6f\x73\x65\ +\x72\x3c\x2f\x65\x78\x74\x65\x6e\x64\x73\x3e\x0a\x20\x20\x20\x3c\ +\x68\x65\x61\x64\x65\x72\x3e\x47\x75\x69\x2f\x50\x72\x65\x66\x57\ +\x69\x64\x67\x65\x74\x73\x2e\x68\x3c\x2f\x68\x65\x61\x64\x65\x72\ +\x3e\x0a\x20\x20\x3c\x2f\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\ +\x65\x74\x3e\x0a\x20\x20\x3c\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\ +\x67\x65\x74\x3e\x0a\x20\x20\x20\x3c\x63\x6c\x61\x73\x73\x3e\x47\ +\x75\x69\x3a\x3a\x50\x72\x65\x66\x53\x70\x69\x6e\x42\x6f\x78\x3c\ +\x2f\x63\x6c\x61\x73\x73\x3e\x0a\x20\x20\x20\x3c\x65\x78\x74\x65\ +\x6e\x64\x73\x3e\x51\x53\x70\x69\x6e\x42\x6f\x78\x3c\x2f\x65\x78\ +\x74\x65\x6e\x64\x73\x3e\x0a\x20\x20\x20\x3c\x68\x65\x61\x64\x65\ +\x72\x3e\x47\x75\x69\x2f\x50\x72\x65\x66\x57\x69\x64\x67\x65\x74\ +\x73\x2e\x68\x3c\x2f\x68\x65\x61\x64\x65\x72\x3e\x0a\x20\x20\x3c\ +\x2f\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\ +\x20\x3c\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\x74\x3e\x0a\ +\x20\x20\x20\x3c\x63\x6c\x61\x73\x73\x3e\x47\x75\x69\x3a\x3a\x50\ +\x72\x65\x66\x43\x6f\x6c\x6f\x72\x42\x75\x74\x74\x6f\x6e\x3c\x2f\ +\x63\x6c\x61\x73\x73\x3e\x0a\x20\x20\x20\x3c\x65\x78\x74\x65\x6e\ +\x64\x73\x3e\x47\x75\x69\x3a\x3a\x43\x6f\x6c\x6f\x72\x42\x75\x74\ +\x74\x6f\x6e\x3c\x2f\x65\x78\x74\x65\x6e\x64\x73\x3e\x0a\x20\x20\ +\x20\x3c\x68\x65\x61\x64\x65\x72\x3e\x47\x75\x69\x2f\x50\x72\x65\ +\x66\x57\x69\x64\x67\x65\x74\x73\x2e\x68\x3c\x2f\x68\x65\x61\x64\ +\x65\x72\x3e\x0a\x20\x20\x3c\x2f\x63\x75\x73\x74\x6f\x6d\x77\x69\ +\x64\x67\x65\x74\x3e\x0a\x20\x20\x3c\x63\x75\x73\x74\x6f\x6d\x77\ +\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x20\x3c\x63\x6c\x61\x73\x73\ +\x3e\x47\x75\x69\x3a\x3a\x50\x72\x65\x66\x43\x68\x65\x63\x6b\x42\ +\x6f\x78\x3c\x2f\x63\x6c\x61\x73\x73\x3e\x0a\x20\x20\x20\x3c\x65\ +\x78\x74\x65\x6e\x64\x73\x3e\x51\x43\x68\x65\x63\x6b\x42\x6f\x78\ +\x3c\x2f\x65\x78\x74\x65\x6e\x64\x73\x3e\x0a\x20\x20\x20\x3c\x68\ +\x65\x61\x64\x65\x72\x3e\x47\x75\x69\x2f\x50\x72\x65\x66\x57\x69\ +\x64\x67\x65\x74\x73\x2e\x68\x3c\x2f\x68\x65\x61\x64\x65\x72\x3e\ +\x0a\x20\x20\x3c\x2f\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\ +\x74\x3e\x0a\x20\x20\x3c\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\ +\x65\x74\x3e\x0a\x20\x20\x20\x3c\x63\x6c\x61\x73\x73\x3e\x47\x75\ +\x69\x3a\x3a\x50\x72\x65\x66\x43\x6f\x6d\x62\x6f\x42\x6f\x78\x3c\ +\x2f\x63\x6c\x61\x73\x73\x3e\x0a\x20\x20\x20\x3c\x65\x78\x74\x65\ +\x6e\x64\x73\x3e\x51\x43\x6f\x6d\x62\x6f\x42\x6f\x78\x3c\x2f\x65\ +\x78\x74\x65\x6e\x64\x73\x3e\x0a\x20\x20\x20\x3c\x68\x65\x61\x64\ +\x65\x72\x3e\x47\x75\x69\x2f\x50\x72\x65\x66\x57\x69\x64\x67\x65\ +\x74\x73\x2e\x68\x3c\x2f\x68\x65\x61\x64\x65\x72\x3e\x0a\x20\x20\ +\x3c\x2f\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\x74\x3e\x0a\ +\x20\x20\x3c\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\x74\x3e\ +\x0a\x20\x20\x20\x3c\x63\x6c\x61\x73\x73\x3e\x47\x75\x69\x3a\x3a\ +\x50\x72\x65\x66\x4c\x69\x6e\x65\x45\x64\x69\x74\x3c\x2f\x63\x6c\ +\x61\x73\x73\x3e\x0a\x20\x20\x20\x3c\x65\x78\x74\x65\x6e\x64\x73\ +\x3e\x51\x4c\x69\x6e\x65\x45\x64\x69\x74\x3c\x2f\x65\x78\x74\x65\ +\x6e\x64\x73\x3e\x0a\x20\x20\x20\x3c\x68\x65\x61\x64\x65\x72\x3e\ +\x47\x75\x69\x2f\x50\x72\x65\x66\x57\x69\x64\x67\x65\x74\x73\x2e\ +\x68\x3c\x2f\x68\x65\x61\x64\x65\x72\x3e\x0a\x20\x20\x3c\x2f\x63\ +\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\x3c\ +\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\x65\x74\x3e\x0a\x20\x20\ +\x20\x3c\x63\x6c\x61\x73\x73\x3e\x47\x75\x69\x3a\x3a\x50\x72\x65\ +\x66\x44\x6f\x75\x62\x6c\x65\x53\x70\x69\x6e\x42\x6f\x78\x3c\x2f\ +\x63\x6c\x61\x73\x73\x3e\x0a\x20\x20\x20\x3c\x65\x78\x74\x65\x6e\ +\x64\x73\x3e\x51\x44\x6f\x75\x62\x6c\x65\x53\x70\x69\x6e\x42\x6f\ +\x78\x3c\x2f\x65\x78\x74\x65\x6e\x64\x73\x3e\x0a\x20\x20\x20\x3c\ +\x68\x65\x61\x64\x65\x72\x3e\x47\x75\x69\x2f\x50\x72\x65\x66\x57\ +\x69\x64\x67\x65\x74\x73\x2e\x68\x3c\x2f\x68\x65\x61\x64\x65\x72\ +\x3e\x0a\x20\x20\x3c\x2f\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\x67\ +\x65\x74\x3e\x0a\x20\x3c\x2f\x63\x75\x73\x74\x6f\x6d\x77\x69\x64\ +\x67\x65\x74\x73\x3e\x0a\x20\x3c\x72\x65\x73\x6f\x75\x72\x63\x65\ +\x73\x2f\x3e\x0a\x20\x3c\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\ +\x73\x3e\x0a\x20\x20\x3c\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\ +\x3e\x0a\x20\x20\x20\x3c\x73\x65\x6e\x64\x65\x72\x3e\x67\x75\x69\ +\x3a\x3a\x70\x72\x65\x66\x63\x68\x65\x63\x6b\x62\x6f\x78\x5f\x32\ +\x3c\x2f\x73\x65\x6e\x64\x65\x72\x3e\x0a\x20\x20\x20\x3c\x73\x69\ +\x67\x6e\x61\x6c\x3e\x63\x6c\x69\x63\x6b\x65\x64\x28\x62\x6f\x6f\ +\x6c\x29\x3c\x2f\x73\x69\x67\x6e\x61\x6c\x3e\x0a\x20\x20\x20\x3c\ +\x72\x65\x63\x65\x69\x76\x65\x72\x3e\x67\x75\x69\x3a\x3a\x70\x72\ +\x65\x66\x64\x6f\x75\x62\x6c\x65\x73\x70\x69\x6e\x62\x6f\x78\x5f\ +\x33\x3c\x2f\x72\x65\x63\x65\x69\x76\x65\x72\x3e\x0a\x20\x20\x20\ +\x3c\x73\x6c\x6f\x74\x3e\x73\x65\x74\x45\x6e\x61\x62\x6c\x65\x64\ +\x28\x62\x6f\x6f\x6c\x29\x3c\x2f\x73\x6c\x6f\x74\x3e\x0a\x20\x20\ +\x20\x3c\x68\x69\x6e\x74\x73\x3e\x0a\x20\x20\x20\x20\x3c\x68\x69\ +\x6e\x74\x20\x74\x79\x70\x65\x3d\x22\x73\x6f\x75\x72\x63\x65\x6c\ +\x61\x62\x65\x6c\x22\x3e\x0a\x20\x20\x20\x20\x20\x3c\x78\x3e\x31\ +\x30\x33\x3c\x2f\x78\x3e\x0a\x20\x20\x20\x20\x20\x3c\x79\x3e\x33\ +\x37\x33\x3c\x2f\x79\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x68\x69\x6e\ +\x74\x3e\x0a\x20\x20\x20\x20\x3c\x68\x69\x6e\x74\x20\x74\x79\x70\ +\x65\x3d\x22\x64\x65\x73\x74\x69\x6e\x61\x74\x69\x6f\x6e\x6c\x61\ +\x62\x65\x6c\x22\x3e\x0a\x20\x20\x20\x20\x20\x3c\x78\x3e\x33\x34\ +\x37\x3c\x2f\x78\x3e\x0a\x20\x20\x20\x20\x20\x3c\x79\x3e\x33\x37\ +\x34\x3c\x2f\x79\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x68\x69\x6e\x74\ +\x3e\x0a\x20\x20\x20\x3c\x2f\x68\x69\x6e\x74\x73\x3e\x0a\x20\x20\ +\x3c\x2f\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x3e\x0a\x20\x20\ +\x3c\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x3e\x0a\x20\x20\x20\ +\x3c\x73\x65\x6e\x64\x65\x72\x3e\x67\x75\x69\x3a\x3a\x70\x72\x65\ +\x66\x63\x68\x65\x63\x6b\x62\x6f\x78\x5f\x32\x3c\x2f\x73\x65\x6e\ +\x64\x65\x72\x3e\x0a\x20\x20\x20\x3c\x73\x69\x67\x6e\x61\x6c\x3e\ +\x63\x6c\x69\x63\x6b\x65\x64\x28\x62\x6f\x6f\x6c\x29\x3c\x2f\x73\ +\x69\x67\x6e\x61\x6c\x3e\x0a\x20\x20\x20\x3c\x72\x65\x63\x65\x69\ +\x76\x65\x72\x3e\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\x73\x70\x69\ +\x6e\x62\x6f\x78\x5f\x34\x3c\x2f\x72\x65\x63\x65\x69\x76\x65\x72\ +\x3e\x0a\x20\x20\x20\x3c\x73\x6c\x6f\x74\x3e\x73\x65\x74\x45\x6e\ +\x61\x62\x6c\x65\x64\x28\x62\x6f\x6f\x6c\x29\x3c\x2f\x73\x6c\x6f\ +\x74\x3e\x0a\x20\x20\x20\x3c\x68\x69\x6e\x74\x73\x3e\x0a\x20\x20\ +\x20\x20\x3c\x68\x69\x6e\x74\x20\x74\x79\x70\x65\x3d\x22\x73\x6f\ +\x75\x72\x63\x65\x6c\x61\x62\x65\x6c\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x3c\x78\x3e\x37\x39\x3c\x2f\x78\x3e\x0a\x20\x20\x20\x20\x20\ +\x3c\x79\x3e\x33\x37\x33\x3c\x2f\x79\x3e\x0a\x20\x20\x20\x20\x3c\ +\x2f\x68\x69\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x68\x69\x6e\x74\ +\x20\x74\x79\x70\x65\x3d\x22\x64\x65\x73\x74\x69\x6e\x61\x74\x69\ +\x6f\x6e\x6c\x61\x62\x65\x6c\x22\x3e\x0a\x20\x20\x20\x20\x20\x3c\ +\x78\x3e\x35\x37\x31\x3c\x2f\x78\x3e\x0a\x20\x20\x20\x20\x20\x3c\ +\x79\x3e\x33\x37\x34\x3c\x2f\x79\x3e\x0a\x20\x20\x20\x20\x3c\x2f\ +\x68\x69\x6e\x74\x3e\x0a\x20\x20\x20\x3c\x2f\x68\x69\x6e\x74\x73\ +\x3e\x0a\x20\x20\x3c\x2f\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\ +\x3e\x0a\x20\x20\x3c\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x3e\ +\x0a\x20\x20\x20\x3c\x73\x65\x6e\x64\x65\x72\x3e\x67\x75\x69\x3a\ +\x3a\x70\x72\x65\x66\x63\x68\x65\x63\x6b\x62\x6f\x78\x5f\x34\x3c\ +\x2f\x73\x65\x6e\x64\x65\x72\x3e\x0a\x20\x20\x20\x3c\x73\x69\x67\ +\x6e\x61\x6c\x3e\x63\x6c\x69\x63\x6b\x65\x64\x28\x62\x6f\x6f\x6c\ +\x29\x3c\x2f\x73\x69\x67\x6e\x61\x6c\x3e\x0a\x20\x20\x20\x3c\x72\ +\x65\x63\x65\x69\x76\x65\x72\x3e\x67\x75\x69\x3a\x3a\x70\x72\x65\ +\x66\x73\x70\x69\x6e\x62\x6f\x78\x5f\x36\x3c\x2f\x72\x65\x63\x65\ +\x69\x76\x65\x72\x3e\x0a\x20\x20\x20\x3c\x73\x6c\x6f\x74\x3e\x73\ +\x65\x74\x45\x6e\x61\x62\x6c\x65\x64\x28\x62\x6f\x6f\x6c\x29\x3c\ +\x2f\x73\x6c\x6f\x74\x3e\x0a\x20\x20\x20\x3c\x68\x69\x6e\x74\x73\ +\x3e\x0a\x20\x20\x20\x20\x3c\x68\x69\x6e\x74\x20\x74\x79\x70\x65\ +\x3d\x22\x73\x6f\x75\x72\x63\x65\x6c\x61\x62\x65\x6c\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x3c\x78\x3e\x34\x39\x3c\x2f\x78\x3e\x0a\x20\ +\x20\x20\x20\x20\x3c\x79\x3e\x32\x37\x35\x3c\x2f\x79\x3e\x0a\x20\ +\x20\x20\x20\x3c\x2f\x68\x69\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\ +\x68\x69\x6e\x74\x20\x74\x79\x70\x65\x3d\x22\x64\x65\x73\x74\x69\ +\x6e\x61\x74\x69\x6f\x6e\x6c\x61\x62\x65\x6c\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x3c\x78\x3e\x35\x35\x30\x3c\x2f\x78\x3e\x0a\x20\x20\ +\x20\x20\x20\x3c\x79\x3e\x32\x37\x37\x3c\x2f\x79\x3e\x0a\x20\x20\ +\x20\x20\x3c\x2f\x68\x69\x6e\x74\x3e\x0a\x20\x20\x20\x3c\x2f\x68\ +\x69\x6e\x74\x73\x3e\x0a\x20\x20\x3c\x2f\x63\x6f\x6e\x6e\x65\x63\ +\x74\x69\x6f\x6e\x3e\x0a\x20\x20\x3c\x63\x6f\x6e\x6e\x65\x63\x74\ +\x69\x6f\x6e\x3e\x0a\x20\x20\x20\x3c\x73\x65\x6e\x64\x65\x72\x3e\ +\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\x63\x68\x65\x63\x6b\x62\x6f\ +\x78\x5f\x34\x3c\x2f\x73\x65\x6e\x64\x65\x72\x3e\x0a\x20\x20\x20\ +\x3c\x73\x69\x67\x6e\x61\x6c\x3e\x63\x6c\x69\x63\x6b\x65\x64\x28\ +\x62\x6f\x6f\x6c\x29\x3c\x2f\x73\x69\x67\x6e\x61\x6c\x3e\x0a\x20\ +\x20\x20\x3c\x72\x65\x63\x65\x69\x76\x65\x72\x3e\x6c\x61\x62\x65\ +\x6c\x5f\x32\x33\x3c\x2f\x72\x65\x63\x65\x69\x76\x65\x72\x3e\x0a\ +\x20\x20\x20\x3c\x73\x6c\x6f\x74\x3e\x73\x65\x74\x45\x6e\x61\x62\ +\x6c\x65\x64\x28\x62\x6f\x6f\x6c\x29\x3c\x2f\x73\x6c\x6f\x74\x3e\ +\x0a\x20\x20\x20\x3c\x68\x69\x6e\x74\x73\x3e\x0a\x20\x20\x20\x20\ +\x3c\x68\x69\x6e\x74\x20\x74\x79\x70\x65\x3d\x22\x73\x6f\x75\x72\ +\x63\x65\x6c\x61\x62\x65\x6c\x22\x3e\x0a\x20\x20\x20\x20\x20\x3c\ +\x78\x3e\x34\x34\x3c\x2f\x78\x3e\x0a\x20\x20\x20\x20\x20\x3c\x79\ +\x3e\x32\x37\x35\x3c\x2f\x79\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x68\ +\x69\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x68\x69\x6e\x74\x20\x74\ +\x79\x70\x65\x3d\x22\x64\x65\x73\x74\x69\x6e\x61\x74\x69\x6f\x6e\ +\x6c\x61\x62\x65\x6c\x22\x3e\x0a\x20\x20\x20\x20\x20\x3c\x78\x3e\ +\x34\x30\x35\x3c\x2f\x78\x3e\x0a\x20\x20\x20\x20\x20\x3c\x79\x3e\ +\x32\x38\x33\x3c\x2f\x79\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x68\x69\ +\x6e\x74\x3e\x0a\x20\x20\x20\x3c\x2f\x68\x69\x6e\x74\x73\x3e\x0a\ +\x20\x20\x3c\x2f\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x3e\x0a\ +\x20\x20\x3c\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x3e\x0a\x20\ +\x20\x20\x3c\x73\x65\x6e\x64\x65\x72\x3e\x67\x75\x69\x3a\x3a\x70\ +\x72\x65\x66\x63\x68\x65\x63\x6b\x62\x6f\x78\x5f\x32\x3c\x2f\x73\ +\x65\x6e\x64\x65\x72\x3e\x0a\x20\x20\x20\x3c\x73\x69\x67\x6e\x61\ +\x6c\x3e\x63\x6c\x69\x63\x6b\x65\x64\x28\x62\x6f\x6f\x6c\x29\x3c\ +\x2f\x73\x69\x67\x6e\x61\x6c\x3e\x0a\x20\x20\x20\x3c\x72\x65\x63\ +\x65\x69\x76\x65\x72\x3e\x6c\x61\x62\x65\x6c\x5f\x31\x35\x3c\x2f\ +\x72\x65\x63\x65\x69\x76\x65\x72\x3e\x0a\x20\x20\x20\x3c\x73\x6c\ +\x6f\x74\x3e\x73\x65\x74\x45\x6e\x61\x62\x6c\x65\x64\x28\x62\x6f\ +\x6f\x6c\x29\x3c\x2f\x73\x6c\x6f\x74\x3e\x0a\x20\x20\x20\x3c\x68\ +\x69\x6e\x74\x73\x3e\x0a\x20\x20\x20\x20\x3c\x68\x69\x6e\x74\x20\ +\x74\x79\x70\x65\x3d\x22\x73\x6f\x75\x72\x63\x65\x6c\x61\x62\x65\ +\x6c\x22\x3e\x0a\x20\x20\x20\x20\x20\x3c\x78\x3e\x35\x38\x3c\x2f\ +\x78\x3e\x0a\x20\x20\x20\x20\x20\x3c\x79\x3e\x33\x36\x35\x3c\x2f\ +\x79\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x68\x69\x6e\x74\x3e\x0a\x20\ +\x20\x20\x20\x3c\x68\x69\x6e\x74\x20\x74\x79\x70\x65\x3d\x22\x64\ +\x65\x73\x74\x69\x6e\x61\x74\x69\x6f\x6e\x6c\x61\x62\x65\x6c\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x3c\x78\x3e\x31\x36\x33\x3c\x2f\x78\ +\x3e\x0a\x20\x20\x20\x20\x20\x3c\x79\x3e\x33\x36\x39\x3c\x2f\x79\ +\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x68\x69\x6e\x74\x3e\x0a\x20\x20\ +\x20\x3c\x2f\x68\x69\x6e\x74\x73\x3e\x0a\x20\x20\x3c\x2f\x63\x6f\ +\x6e\x6e\x65\x63\x74\x69\x6f\x6e\x3e\x0a\x20\x20\x3c\x63\x6f\x6e\ +\x6e\x65\x63\x74\x69\x6f\x6e\x3e\x0a\x20\x20\x20\x3c\x73\x65\x6e\ +\x64\x65\x72\x3e\x67\x75\x69\x3a\x3a\x70\x72\x65\x66\x63\x68\x65\ +\x63\x6b\x62\x6f\x78\x5f\x32\x3c\x2f\x73\x65\x6e\x64\x65\x72\x3e\ +\x0a\x20\x20\x20\x3c\x73\x69\x67\x6e\x61\x6c\x3e\x63\x6c\x69\x63\ +\x6b\x65\x64\x28\x62\x6f\x6f\x6c\x29\x3c\x2f\x73\x69\x67\x6e\x61\ +\x6c\x3e\x0a\x20\x20\x20\x3c\x72\x65\x63\x65\x69\x76\x65\x72\x3e\ +\x6c\x61\x62\x65\x6c\x5f\x31\x36\x3c\x2f\x72\x65\x63\x65\x69\x76\ +\x65\x72\x3e\x0a\x20\x20\x20\x3c\x73\x6c\x6f\x74\x3e\x73\x65\x74\ +\x45\x6e\x61\x62\x6c\x65\x64\x28\x62\x6f\x6f\x6c\x29\x3c\x2f\x73\ +\x6c\x6f\x74\x3e\x0a\x20\x20\x20\x3c\x68\x69\x6e\x74\x73\x3e\x0a\ +\x20\x20\x20\x20\x3c\x68\x69\x6e\x74\x20\x74\x79\x70\x65\x3d\x22\ +\x73\x6f\x75\x72\x63\x65\x6c\x61\x62\x65\x6c\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x3c\x78\x3e\x33\x33\x3c\x2f\x78\x3e\x0a\x20\x20\x20\ +\x20\x20\x3c\x79\x3e\x33\x36\x37\x3c\x2f\x79\x3e\x0a\x20\x20\x20\ +\x20\x3c\x2f\x68\x69\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x68\x69\ +\x6e\x74\x20\x74\x79\x70\x65\x3d\x22\x64\x65\x73\x74\x69\x6e\x61\ +\x74\x69\x6f\x6e\x6c\x61\x62\x65\x6c\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x3c\x78\x3e\x33\x39\x33\x3c\x2f\x78\x3e\x0a\x20\x20\x20\x20\ +\x20\x3c\x79\x3e\x33\x36\x38\x3c\x2f\x79\x3e\x0a\x20\x20\x20\x20\ +\x3c\x2f\x68\x69\x6e\x74\x3e\x0a\x20\x20\x20\x3c\x2f\x68\x69\x6e\ +\x74\x73\x3e\x0a\x20\x20\x3c\x2f\x63\x6f\x6e\x6e\x65\x63\x74\x69\ +\x6f\x6e\x3e\x0a\x20\x3c\x2f\x63\x6f\x6e\x6e\x65\x63\x74\x69\x6f\ +\x6e\x73\x3e\x0a\x3c\x2f\x75\x69\x3e\x0a\ +\x00\x00\x1a\x6e\ +\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\x44\x72\x61\x66\x74\x5f\x44\x72\x61\x66\ +\x74\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x6f\x75\x74\x70\x75\x74\x5f\x65\x78\x74\x65\x6e\x73\ +\x69\x6f\x6e\x3d\x22\x6f\x72\x67\x2e\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x2e\x6f\x75\x74\x70\x75\x74\x2e\x73\x76\x67\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\ +\x6e\x3d\x22\x31\x2e\x31\x22\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\x30\x2e\x33\x34\ +\x33\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x78\x3d\x22\x37\x39\x31\x2e\x34\x33\x32\x36\x35\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x79\x3d\x22\x2d\x33\x32\x35\x2e\x34\x33\x31\x38\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\ +\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x67\x33\x33\ +\x36\x30\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\ +\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\ +\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\ +\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\ +\x69\x64\x74\x68\x3d\x22\x31\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\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\x66\x66\x31\x31\x30\x30\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x37\x2e\x37\x32\ +\x38\x31\x38\x37\x35\x36\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\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x77\x69\x64\x74\x68\x3d\x22\x31\x38\x33\x2e\x35\x33\x30\x33\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\ +\x3d\x22\x31\x35\x39\x2e\x38\x30\x32\x39\x33\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x38\x39\x32\x2e\x39\x33\ +\x39\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\ +\x37\x38\x34\x2e\x34\x35\x32\x33\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ +\x61\x74\x72\x69\x78\x28\x30\x2e\x38\x39\x36\x31\x36\x33\x32\x32\ +\x2c\x30\x2e\x34\x34\x33\x37\x32\x34\x35\x36\x2c\x2d\x30\x2e\x38\ +\x34\x38\x39\x35\x31\x37\x37\x2c\x30\x2e\x35\x32\x38\x34\x37\x30\ +\x33\x32\x2c\x30\x2c\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\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\x66\x66\x31\x31\x30\x30\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x36\x38\x37\x34\x31\ +\x35\x36\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\x2d\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\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\x34\x2e\x32\x39\x33\x34\x32\x37\x34\x2c\ +\x32\x2e\x31\x32\x35\x38\x33\x39\x35\x2c\x2d\x34\x2e\x32\x31\x31\ +\x39\x30\x39\x37\x2c\x32\x2e\x36\x32\x31\x39\x30\x33\x2c\x31\x32\ +\x30\x38\x2e\x32\x31\x39\x31\x2c\x31\x31\x37\x32\x2e\x33\x34\x38\ +\x38\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x72\x65\ +\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\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\x37\x2e\x39\x35\x32\x35\x34\x35\ +\x31\x37\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\x31\x38\x34\x2e\x37\x35\x39\x35\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x36\x31\ +\x2e\x33\x31\x38\x39\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x78\x3d\x22\x31\x36\x33\x30\x2e\x31\x33\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x35\x30\x30\x2e\x32\x38\ +\x31\x36\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x30\x2e\x38\x39\x30\x32\x30\x31\x30\x33\x2c\x30\x2e\x34\x35\x35\ +\x35\x36\x37\x39\x32\x2c\x2d\x30\x2e\x38\x34\x30\x39\x37\x33\x34\ +\x37\x2c\x30\x2e\x35\x34\x31\x30\x37\x36\x33\x35\x2c\x30\x2c\x30\ +\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\ +\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\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\x35\x2e\x36\x38\x37\x34\x31\x35\x36\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\x34\x2e\ +\x32\x39\x33\x34\x32\x37\x34\x2c\x32\x2e\x31\x39\x37\x31\x39\x37\ +\x38\x2c\x2d\x34\x2e\x32\x31\x31\x39\x30\x39\x37\x2c\x32\x2e\x37\ +\x30\x39\x39\x31\x32\x38\x2c\x31\x32\x30\x38\x2e\x32\x31\x39\x31\ +\x2c\x39\x32\x38\x2e\x34\x31\x33\x34\x34\x29\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\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\ +\x32\x65\x37\x36\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\x33\x34\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ +\x64\x74\x68\x3a\x31\x32\x2e\x30\x39\x36\x35\x31\x34\x37\x30\x30\ +\x30\x30\x30\x30\x30\x30\x31\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\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\x64\x3d\x22\x6d\x20\x31\x30\x31\ +\x31\x2e\x36\x38\x30\x34\x2c\x31\x31\x32\x38\x2e\x30\x38\x39\x20\ +\x2d\x38\x30\x2e\x37\x35\x34\x35\x34\x2c\x38\x34\x2e\x35\x32\x39\ +\x37\x20\x34\x37\x2e\x39\x37\x37\x36\x33\x2c\x30\x20\x30\x2c\x38\ +\x37\x2e\x32\x37\x31\x31\x20\x36\x32\x2e\x37\x30\x33\x36\x31\x2c\ +\x30\x20\x30\x2c\x2d\x38\x37\x2e\x32\x37\x31\x31\x20\x35\x30\x2e\ +\x38\x32\x37\x37\x2c\x30\x20\x2d\x38\x30\x2e\x37\x35\x34\x34\x2c\ +\x2d\x38\x34\x2e\x35\x32\x39\x37\x20\x7a\x20\x6d\x20\x31\x35\x32\ +\x2e\x34\x38\x33\x34\x2c\x30\x20\x30\x2c\x38\x37\x2e\x32\x37\x31\ +\x32\x20\x2d\x35\x30\x2e\x38\x32\x37\x38\x2c\x30\x20\x38\x30\x2e\ +\x37\x35\x34\x33\x2c\x38\x34\x2e\x35\x32\x39\x36\x20\x38\x30\x2e\ +\x37\x35\x34\x36\x2c\x2d\x38\x34\x2e\x35\x32\x39\x36\x20\x2d\x34\ +\x37\x2e\x35\x30\x32\x37\x2c\x30\x20\x30\x2c\x2d\x38\x37\x2e\x32\ +\x37\x31\x32\x20\x2d\x36\x33\x2e\x31\x37\x38\x34\x2c\x30\x20\x7a\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\ +\x65\x63\x74\x33\x37\x38\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\ +\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\ +\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\ +\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x1e\x37\ +\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\x38\x32\x35\ +\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\x65\x63\ +\x74\x61\x6e\x67\x6c\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\x38\x32\x37\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\ +\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\ +\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\ +\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x33\x31\x34\x34\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\x32\ +\x32\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ +\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\ +\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\ +\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\ +\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\ +\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\ +\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\ +\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\ +\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\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\x33\x31\x34\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\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\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x73\x74\x6f\x70\x33\x31\x34\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\x66\x66\x66\x66\x66\x66\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\x33\x31\x34\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\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\ +\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\ +\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\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\x32\x32\x31\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\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\ +\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\ +\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\ +\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\ +\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\ +\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\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\x38\x33\x33\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\x33\x35\x2e\x32\x37\x37\x31\x36\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\ +\x3d\x22\x32\x33\x2e\x33\x39\x35\x36\x37\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\x32\x38\x33\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\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\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ +\x79\x64\x70\x69\x3d\x22\x36\x2e\x35\x38\x39\x35\x36\x36\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\x78\x64\x70\x69\x3d\x22\x36\x2e\ +\x35\x38\x39\x35\x36\x36\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\ +\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\ +\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\x2e\x70\x6e\x67\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x33\x35\x32\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\x33\x36\x37\ +\x37\x30\x32\x2c\x30\x2c\x30\x2c\x30\x2e\x31\x33\x36\x37\x37\x30\ +\x32\x2c\x2d\x31\x32\x35\x2e\x38\x34\x36\x37\x34\x2c\x2d\x34\x37\ +\x2e\x39\x36\x32\x30\x39\x32\x29\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\ +\x2e\x35\x36\x30\x38\x34\x37\x34\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\x35\x2e\x38\x30\x30\x30\x30\x30\x31\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\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\x20\x20\x64\x3d\x22\ +\x4d\x20\x31\x33\x32\x35\x2e\x37\x32\x37\x36\x2c\x34\x31\x34\x2e\ +\x36\x36\x30\x37\x31\x20\x43\x20\x31\x33\x30\x33\x2e\x33\x37\x37\ +\x38\x2c\x34\x31\x34\x2e\x36\x36\x30\x37\x31\x20\x31\x32\x38\x34\ +\x2e\x35\x33\x35\x31\x2c\x34\x32\x39\x2e\x37\x38\x35\x34\x37\x20\ +\x31\x32\x37\x38\x2e\x38\x38\x33\x39\x2c\x34\x35\x30\x2e\x33\x34\ +\x38\x32\x31\x20\x4c\x20\x39\x39\x33\x2e\x31\x33\x33\x39\x33\x2c\ +\x34\x35\x30\x2e\x33\x34\x38\x32\x31\x20\x4c\x20\x39\x39\x33\x2e\ +\x31\x33\x33\x39\x33\x2c\x36\x38\x35\x2e\x35\x36\x36\x39\x36\x20\ +\x43\x20\x39\x37\x34\x2e\x34\x37\x36\x31\x33\x2c\x36\x39\x32\x2e\ +\x33\x34\x36\x39\x36\x20\x39\x36\x31\x2e\x31\x33\x33\x39\x33\x2c\ +\x37\x31\x30\x2e\x32\x33\x31\x39\x35\x20\x39\x36\x31\x2e\x31\x33\ +\x33\x39\x33\x2c\x37\x33\x31\x2e\x32\x32\x33\x32\x31\x20\x43\x20\ +\x39\x36\x31\x2e\x31\x33\x33\x39\x33\x2c\x37\x35\x38\x2e\x30\x33\ +\x34\x36\x34\x20\x39\x38\x32\x2e\x39\x31\x36\x32\x33\x2c\x37\x37\ +\x39\x2e\x37\x38\x35\x37\x31\x20\x31\x30\x30\x39\x2e\x37\x32\x37\ +\x36\x2c\x37\x37\x39\x2e\x37\x38\x35\x37\x31\x20\x43\x20\x31\x30\ +\x33\x31\x2e\x33\x35\x38\x39\x2c\x37\x37\x39\x2e\x37\x38\x35\x37\ +\x31\x20\x31\x30\x34\x39\x2e\x36\x36\x35\x38\x2c\x37\x36\x35\x2e\ +\x36\x32\x30\x31\x39\x20\x31\x30\x35\x35\x2e\x39\x34\x36\x34\x2c\ +\x37\x34\x36\x2e\x30\x36\x36\x39\x36\x20\x4c\x20\x31\x33\x34\x30\ +\x2e\x32\x39\x30\x32\x2c\x37\x34\x36\x2e\x30\x36\x36\x39\x36\x20\ +\x4c\x20\x31\x33\x34\x30\x2e\x32\x39\x30\x32\x2c\x35\x30\x39\x2e\ +\x35\x36\x36\x39\x36\x20\x43\x20\x31\x33\x35\x39\x2e\x39\x39\x34\ +\x34\x2c\x35\x30\x33\x2e\x33\x37\x35\x39\x36\x20\x31\x33\x37\x34\ +\x2e\x32\x39\x30\x32\x2c\x34\x38\x34\x2e\x39\x36\x32\x31\x32\x20\ +\x31\x33\x37\x34\x2e\x32\x39\x30\x32\x2c\x34\x36\x33\x2e\x32\x32\ +\x33\x32\x31\x20\x43\x20\x31\x33\x37\x34\x2e\x32\x39\x30\x32\x2c\ +\x34\x33\x36\x2e\x34\x31\x31\x37\x39\x20\x31\x33\x35\x32\x2e\x35\ +\x33\x39\x31\x2c\x34\x31\x34\x2e\x36\x36\x30\x37\x31\x20\x31\x33\ +\x32\x35\x2e\x37\x32\x37\x36\x2c\x34\x31\x34\x2e\x36\x36\x30\x37\ +\x31\x20\x7a\x20\x4d\x20\x31\x30\x32\x35\x2e\x33\x32\x31\x34\x2c\ +\x34\x38\x32\x2e\x38\x37\x39\x34\x36\x20\x4c\x20\x31\x32\x38\x31\ +\x2e\x32\x39\x30\x32\x2c\x34\x38\x32\x2e\x38\x37\x39\x34\x36\x20\ +\x43\x20\x31\x32\x38\x36\x2e\x32\x39\x36\x34\x2c\x34\x39\x34\x2e\ +\x31\x37\x30\x34\x37\x20\x31\x32\x39\x35\x2e\x34\x38\x35\x35\x2c\ +\x35\x30\x33\x2e\x32\x30\x30\x31\x33\x20\x31\x33\x30\x36\x2e\x38\ +\x38\x33\x39\x2c\x35\x30\x38\x2e\x30\x30\x34\x34\x36\x20\x4c\x20\ +\x31\x33\x30\x36\x2e\x38\x38\x33\x39\x2c\x37\x31\x33\x2e\x36\x32\ +\x39\x34\x36\x20\x4c\x20\x31\x30\x35\x34\x2e\x39\x37\x37\x36\x2c\ +\x37\x31\x33\x2e\x36\x32\x39\x34\x36\x20\x43\x20\x31\x30\x34\x39\ +\x2e\x37\x39\x31\x33\x2c\x37\x30\x30\x2e\x33\x30\x39\x30\x36\x20\ +\x31\x30\x33\x38\x2e\x39\x31\x36\x35\x2c\x36\x38\x39\x2e\x38\x33\ +\x36\x32\x20\x31\x30\x32\x35\x2e\x33\x32\x31\x34\x2c\x36\x38\x35\ +\x2e\x32\x32\x33\x32\x31\x20\x4c\x20\x31\x30\x32\x35\x2e\x33\x32\ +\x31\x34\x2c\x34\x38\x32\x2e\x38\x37\x39\x34\x36\x20\x7a\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ +\x68\x32\x37\x33\x34\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\x32\x32\x33\x33\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x39\x36\x38\x2e\x35\ +\x36\x32\x35\x2c\x34\x32\x35\x2e\x32\x31\x38\x37\x35\x20\x4c\x20\ +\x39\x36\x38\x2e\x35\x36\x32\x35\x2c\x37\x32\x30\x2e\x39\x33\x37\ +\x35\x20\x4c\x20\x31\x33\x31\x35\x2e\x37\x31\x38\x38\x2c\x37\x32\ +\x30\x2e\x39\x33\x37\x35\x20\x4c\x20\x31\x33\x31\x35\x2e\x37\x31\ +\x38\x38\x2c\x34\x32\x35\x2e\x32\x31\x38\x37\x35\x20\x4c\x20\x39\ +\x36\x38\x2e\x35\x36\x32\x35\x2c\x34\x32\x35\x2e\x32\x31\x38\x37\ +\x35\x20\x7a\x20\x4d\x20\x31\x30\x30\x30\x2e\x37\x35\x2c\x34\x35\ +\x37\x2e\x37\x35\x20\x4c\x20\x31\x32\x38\x32\x2e\x33\x31\x32\x35\ +\x2c\x34\x35\x37\x2e\x37\x35\x20\x4c\x20\x31\x32\x38\x32\x2e\x33\ +\x31\x32\x35\x2c\x36\x38\x38\x2e\x35\x20\x4c\x20\x31\x30\x30\x30\ +\x2e\x37\x35\x2c\x36\x38\x38\x2e\x35\x20\x4c\x20\x31\x30\x30\x30\ +\x2e\x37\x35\x2c\x34\x35\x37\x2e\x37\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\x66\x66\x66\x66\x66\x66\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\x35\x2e\x38\x30\x30\x30\x30\x30\x31\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\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\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\ +\x69\x3d\x22\x36\x2e\x35\x30\x31\x39\x36\x37\x39\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x2e\x35\ +\x30\x31\x39\x36\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ +\x2d\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x2f\x68\x6f\x6d\x65\ +\x2f\x79\x6f\x72\x69\x6b\x2f\x44\x6f\x63\x75\x6d\x65\x6e\x74\x73\ +\x2f\x4c\x61\x62\x2f\x44\x72\x61\x66\x74\x2f\x69\x63\x6f\x6e\x73\ +\x2f\x72\x65\x63\x74\x61\x6e\x67\x6c\x65\x2e\x70\x6e\x67\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\x2d\x31\x2c\x30\x2c\ +\x30\x2c\x2d\x31\x2c\x31\x31\x38\x32\x2e\x32\x38\x35\x37\x2c\x31\ +\x33\x36\x31\x2e\x32\x39\x35\x38\x29\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x32\x32\x30\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\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\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\x66\ +\x66\x61\x39\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\x23\x30\ +\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ +\x74\x68\x3a\x35\x2e\x37\x39\x39\x39\x39\x39\x37\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\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x32\x31\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x63\x78\x3d\x22\x31\x39\x37\x2e\x31\x34\x32\x38\x35\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\x36\x35\x35\x2e\x32\x31\ +\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\x34\x38\x2e\x35\ +\x37\x31\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x34\x38\ +\x2e\x35\x37\x31\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x34\x35\x2e\x37\x31\x34\x32\ +\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x41\x20\x34\x38\x2e\ +\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x30\ +\x20\x31\x20\x31\x20\x31\x34\x38\x2e\x35\x37\x31\x34\x32\x2c\x36\ +\x35\x35\x2e\x32\x31\x39\x33\x20\x41\x20\x34\x38\x2e\x35\x37\x31\ +\x34\x33\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\ +\x31\x20\x32\x34\x35\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\ +\x32\x31\x39\x33\x20\x7a\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\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\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\ +\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x32\x32\x31\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\x6e\x6f\ +\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ +\x30\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\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ +\x68\x32\x32\x31\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x32\ +\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\ +\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x72\x78\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x72\x79\x3d\x22\x32\x33\x2e\x39\x39\x31\x31\x32\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ +\x22\x4d\x20\x32\x35\x39\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\ +\x2e\x37\x39\x37\x33\x36\x20\x41\x20\x33\x34\x2e\x33\x34\x35\x31\ +\x38\x38\x2c\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\ +\x20\x31\x20\x31\x39\x30\x2e\x39\x31\x38\x38\x33\x2c\x36\x37\x32\ +\x2e\x37\x39\x37\x33\x36\x20\x41\x20\x33\x34\x2e\x33\x34\x35\x31\ +\x38\x38\x2c\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\ +\x20\x31\x20\x32\x35\x39\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\ +\x2e\x37\x39\x37\x33\x36\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ +\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x38\x35\x31\x33\x30\x32\x33\ +\x2c\x2d\x30\x2e\x35\x32\x34\x36\x37\x35\x34\x2c\x30\x2e\x35\x32\ +\x34\x36\x37\x35\x34\x2c\x30\x2e\x38\x35\x31\x33\x30\x32\x33\x2c\ +\x2d\x33\x33\x38\x2e\x36\x39\x36\x39\x32\x2c\x32\x31\x34\x2e\x31\ +\x39\x33\x32\x38\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x2e\x35\ +\x30\x31\x39\x36\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ +\x2d\x78\x64\x70\x69\x3d\x22\x36\x2e\x35\x30\x31\x39\x36\x37\x39\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x66\x69\x6c\x65\x6e\ +\x61\x6d\x65\x3d\x22\x2f\x68\x6f\x6d\x65\x2f\x79\x6f\x72\x69\x6b\ +\x2f\x44\x6f\x63\x75\x6d\x65\x6e\x74\x73\x2f\x4c\x61\x62\x2f\x44\ +\x72\x61\x66\x74\x2f\x69\x63\x6f\x6e\x73\x2f\x72\x65\x63\x74\x61\ +\x6e\x67\x6c\x65\x2e\x70\x6e\x67\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\x2d\x31\x2c\x30\x2c\x30\x2c\x2d\x31\x2c\x31\ +\x34\x39\x38\x2e\x32\x38\x35\x37\x2c\x31\x30\x39\x33\x2e\x32\x39\ +\x35\x38\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x67\x32\x32\x31\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\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\ +\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\x66\x66\x61\x39\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\x23\x30\x30\x30\x30\x30\x30\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x37\ +\x39\x39\x39\x39\x39\x37\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\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x61\x74\x68\x32\x32\x31\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\ +\x22\x31\x39\x37\x2e\x31\x34\x32\x38\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x63\x79\x3d\x22\x36\x35\x35\x2e\x32\x31\x39\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x72\x78\x3d\x22\x34\x38\x2e\x35\x37\x31\x34\x33\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x72\x79\x3d\x22\x34\x38\x2e\x35\x37\x31\x34\x33\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ +\x4d\x20\x32\x34\x35\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\ +\x32\x31\x39\x33\x20\x41\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\ +\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x31\ +\x34\x38\x2e\x35\x37\x31\x34\x32\x2c\x36\x35\x35\x2e\x32\x31\x39\ +\x33\x20\x41\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\ +\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x32\x34\x35\x2e\ +\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x7a\ +\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\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\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\ +\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x32\x32\x39\ +\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\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\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x32\x32\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\ +\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\x36\x37\x32\x2e\ +\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\x33\ +\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\ +\x3d\x22\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x35\x39\ +\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\ +\x20\x41\x20\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\x33\x2e\ +\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\x20\x31\x20\x31\x39\x30\ +\x2e\x39\x31\x38\x38\x33\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\ +\x20\x41\x20\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\x33\x2e\ +\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\x20\x31\x20\x32\x35\x39\ +\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\ +\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\ +\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ +\x28\x30\x2e\x38\x35\x31\x33\x30\x32\x33\x2c\x2d\x30\x2e\x35\x32\ +\x34\x36\x37\x35\x34\x2c\x30\x2e\x35\x32\x34\x36\x37\x35\x34\x2c\ +\x30\x2e\x38\x35\x31\x33\x30\x32\x33\x2c\x2d\x33\x33\x38\x2e\x36\ +\x39\x36\x39\x32\x2c\x32\x31\x34\x2e\x31\x39\x33\x32\x38\x29\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\ +\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\ +\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x1c\x9e\ +\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\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\x36\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x70\x72\x65\ +\x66\x65\x72\x65\x6e\x63\x65\x73\x2d\x44\x72\x61\x66\x74\x2e\x73\ +\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x6f\x75\x74\x70\x75\x74\x5f\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\ +\x3d\x22\x6f\x72\x67\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\ +\x75\x74\x70\x75\x74\x2e\x73\x76\x67\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x35\x38\x32\x33\x22\x3e\ +\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\ +\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x36\ +\x33\x34\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\ +\x30\x30\x30\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x36\x33\x35\x31\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\ +\x30\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x36\x33\x35\x33\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x66\x66\x61\x61\x30\x30\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x33\x33\x37\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x66\x61\x66\x66\x32\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\ +\x33\x38\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\ +\x20\x20\x3c\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\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\ +\x31\x2e\x34\x33\x30\x37\x34\x39\x39\x2c\x2d\x31\x2e\x33\x36\x30\ +\x35\x31\x35\x36\x65\x2d\x37\x2c\x31\x2e\x32\x30\x32\x37\x31\x33\ +\x65\x2d\x38\x2c\x30\x2e\x31\x32\x36\x34\x38\x30\x31\x2c\x2d\x34\ +\x37\x35\x2e\x33\x39\x32\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\x35\x2e\x35\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\ +\x22\x31\x33\x2e\x37\x37\x30\x37\x35\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x33\x33\ +\x2e\x33\x38\x35\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\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\x37\ +\x38\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\x33\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\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\x3c\ +\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\ +\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\ +\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\ +\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\ +\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\ +\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x33\ +\x33\x36\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x66\x69\x6c\x65\ +\x6e\x61\x6d\x65\x3d\x22\x2f\x68\x6f\x6d\x65\x2f\x79\x6f\x72\x69\ +\x6b\x2f\x44\x6f\x63\x75\x6d\x65\x6e\x74\x73\x2f\x4c\x61\x62\x2f\ +\x44\x72\x61\x66\x74\x2f\x69\x63\x6f\x6e\x73\x2f\x64\x72\x61\x66\ +\x74\x2e\x70\x6e\x67\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\ +\x70\x69\x3d\x22\x33\x2e\x32\x34\x37\x38\x31\x35\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\ +\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x33\x2e\x32\x34\ +\x37\x38\x31\x35\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x30\x2e\x31\x33\x36\x37\x38\x36\x33\x2c\x30\x2c\x30\x2c\x30\x2e\ +\x31\x33\x36\x37\x38\x36\x33\x2c\x2d\x31\x31\x39\x2e\x31\x35\x35\ +\x31\x39\x2c\x2d\x31\x33\x34\x2e\x38\x36\x39\x36\x32\x29\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\ +\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x2e\x32\x39\ +\x32\x36\x34\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ +\x78\x64\x70\x69\x3d\x22\x36\x2e\x32\x39\x32\x36\x34\x33\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x66\x69\x6c\x65\x6e\x61\ +\x6d\x65\x3d\x22\x2f\x68\x6f\x6d\x65\x2f\x79\x6f\x72\x69\x6b\x2f\ +\x44\x6f\x63\x75\x6d\x65\x6e\x74\x73\x2f\x4c\x61\x62\x2f\x44\x72\ +\x61\x66\x74\x2f\x69\x63\x6f\x6e\x73\x2f\x64\x72\x61\x66\x74\x2e\ +\x70\x6e\x67\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\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\x33\x38\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x31\x32\ +\x34\x32\x2e\x32\x37\x32\x32\x2c\x31\x32\x32\x35\x2e\x35\x39\x37\ +\x32\x20\x4c\x20\x31\x32\x36\x37\x2e\x30\x30\x36\x31\x2c\x31\x32\ +\x35\x32\x2e\x34\x34\x34\x39\x20\x4c\x20\x31\x32\x39\x33\x2e\x31\ +\x36\x38\x35\x2c\x31\x34\x31\x34\x2e\x32\x39\x32\x37\x20\x4c\x20\ +\x31\x31\x33\x39\x2e\x32\x39\x2c\x31\x33\x37\x38\x2e\x33\x37\x35\ +\x33\x20\x4c\x20\x31\x31\x30\x33\x2e\x32\x36\x38\x35\x2c\x31\x33\ +\x33\x39\x2e\x36\x30\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\ +\x66\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\x33\ +\x33\x33\x33\x33\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ +\x74\x68\x3a\x31\x30\x2e\x30\x30\x31\x30\x30\x31\x35\x36\x30\x30\ +\x30\x30\x30\x30\x30\x36\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\ +\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ +\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\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\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\ +\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x2e\x32\x39\ +\x32\x36\x34\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ +\x78\x64\x70\x69\x3d\x22\x36\x2e\x32\x39\x32\x36\x34\x33\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x66\x69\x6c\x65\x6e\x61\ +\x6d\x65\x3d\x22\x2f\x68\x6f\x6d\x65\x2f\x79\x6f\x72\x69\x6b\x2f\ +\x44\x6f\x63\x75\x6d\x65\x6e\x74\x73\x2f\x4c\x61\x62\x2f\x44\x72\ +\x61\x66\x74\x2f\x69\x63\x6f\x6e\x73\x2f\x64\x72\x61\x66\x74\x2e\ +\x70\x6e\x67\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x72\x65\x63\x74\x32\x33\x39\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x31\x30\x33\x38\x2e\x35\ +\x2c\x31\x30\x30\x33\x2e\x39\x30\x36\x32\x20\x4c\x20\x39\x30\x36\ +\x2e\x31\x38\x37\x35\x2c\x31\x31\x32\x35\x2e\x39\x33\x37\x35\x20\ +\x4c\x20\x31\x31\x33\x38\x2e\x35\x33\x31\x32\x2c\x31\x33\x37\x37\ +\x2e\x38\x34\x33\x38\x20\x43\x20\x31\x31\x33\x36\x2e\x35\x33\x38\ +\x31\x2c\x31\x33\x37\x33\x2e\x36\x39\x37\x31\x20\x31\x31\x33\x35\ +\x2e\x34\x33\x37\x35\x2c\x31\x33\x36\x39\x2e\x31\x31\x32\x35\x20\ +\x31\x31\x33\x35\x2e\x34\x33\x37\x35\x2c\x31\x33\x36\x34\x2e\x32\ +\x38\x31\x32\x20\x43\x20\x31\x31\x33\x35\x2e\x34\x33\x37\x34\x2c\ +\x31\x33\x34\x35\x2e\x38\x38\x30\x33\x20\x31\x31\x35\x31\x2e\x35\ +\x31\x37\x36\x2c\x31\x33\x33\x30\x2e\x39\x36\x38\x38\x20\x31\x31\ +\x37\x31\x2e\x33\x31\x32\x35\x2c\x31\x33\x33\x30\x2e\x39\x36\x38\ +\x38\x20\x43\x20\x31\x31\x37\x36\x2e\x36\x37\x32\x33\x2c\x31\x33\ +\x33\x30\x2e\x39\x36\x38\x38\x20\x31\x31\x38\x31\x2e\x37\x34\x34\ +\x39\x2c\x31\x33\x33\x32\x2e\x30\x37\x30\x31\x20\x31\x31\x38\x36\ +\x2e\x33\x31\x32\x35\x2c\x31\x33\x33\x34\x2e\x30\x33\x31\x32\x20\ +\x4c\x20\x31\x31\x38\x38\x2e\x34\x36\x38\x38\x2c\x31\x33\x33\x32\ +\x2e\x30\x33\x31\x32\x20\x43\x20\x31\x31\x38\x37\x2e\x38\x30\x30\ +\x36\x2c\x31\x33\x32\x39\x2e\x34\x38\x38\x32\x20\x31\x31\x38\x37\ +\x2e\x34\x33\x37\x35\x2c\x31\x33\x32\x36\x2e\x38\x32\x33\x33\x20\ +\x31\x31\x38\x37\x2e\x34\x33\x37\x35\x2c\x31\x33\x32\x34\x2e\x30\ +\x39\x33\x38\x20\x43\x20\x31\x31\x38\x37\x2e\x34\x33\x37\x35\x2c\ +\x31\x33\x30\x35\x2e\x36\x39\x32\x38\x20\x31\x32\x30\x33\x2e\x34\ +\x38\x36\x33\x2c\x31\x32\x39\x30\x2e\x37\x35\x20\x31\x32\x32\x33\ +\x2e\x32\x38\x31\x32\x2c\x31\x32\x39\x30\x2e\x37\x35\x20\x43\x20\ +\x31\x32\x32\x36\x2e\x33\x32\x33\x31\x2c\x31\x32\x39\x30\x2e\x37\ +\x35\x20\x31\x32\x32\x39\x2e\x32\x37\x32\x36\x2c\x31\x32\x39\x31\ +\x2e\x31\x31\x34\x38\x20\x31\x32\x33\x32\x2e\x30\x39\x33\x38\x2c\ +\x31\x32\x39\x31\x2e\x37\x38\x31\x32\x20\x4c\x20\x31\x32\x33\x39\ +\x2e\x35\x39\x33\x38\x2c\x31\x32\x38\x34\x2e\x38\x37\x35\x20\x43\ +\x20\x31\x32\x33\x39\x2e\x31\x37\x36\x33\x2c\x31\x32\x38\x32\x2e\ +\x38\x35\x31\x34\x20\x31\x32\x33\x38\x2e\x39\x33\x37\x35\x2c\x31\ +\x32\x38\x30\x2e\x37\x35\x39\x37\x20\x31\x32\x33\x38\x2e\x39\x33\ +\x37\x35\x2c\x31\x32\x37\x38\x2e\x36\x32\x35\x20\x43\x20\x31\x32\ +\x33\x38\x2e\x39\x33\x37\x35\x2c\x31\x32\x36\x34\x2e\x31\x30\x38\ +\x38\x20\x31\x32\x34\x38\x2e\x39\x36\x32\x35\x2c\x31\x32\x35\x31\ +\x2e\x37\x38\x34\x20\x31\x32\x36\x32\x2e\x39\x30\x36\x32\x2c\x31\ +\x32\x34\x37\x2e\x32\x31\x38\x38\x20\x4c\x20\x31\x30\x33\x38\x2e\ +\x35\x2c\x31\x30\x30\x33\x2e\x39\x30\x36\x32\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\x38\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\ +\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ +\x37\x62\x35\x36\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ +\x64\x74\x68\x3a\x31\x30\x2e\x30\x30\x31\x30\x30\x31\x35\x36\x30\ +\x30\x30\x30\x30\x30\x30\x36\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\ +\x6e\x64\x3b\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\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\ +\x2e\x32\x39\x32\x36\x34\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\ +\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x2e\x32\x39\x32\x36\x34\ +\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x66\x69\x6c\ +\x65\x6e\x61\x6d\x65\x3d\x22\x2f\x68\x6f\x6d\x65\x2f\x79\x6f\x72\ +\x69\x6b\x2f\x44\x6f\x63\x75\x6d\x65\x6e\x74\x73\x2f\x4c\x61\x62\ +\x2f\x44\x72\x61\x66\x74\x2f\x69\x63\x6f\x6e\x73\x2f\x64\x72\x61\ +\x66\x74\x2e\x70\x6e\x67\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x33\x37\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x31\x32\x33\ +\x36\x2e\x34\x32\x36\x37\x2c\x31\x32\x38\x38\x2e\x37\x33\x37\x39\ +\x20\x4c\x20\x31\x30\x30\x35\x2e\x31\x30\x31\x38\x2c\x31\x30\x34\ +\x30\x2e\x32\x34\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\ +\x65\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\ +\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x37\x62\x35\x36\ +\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ +\x31\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\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ +\x2d\x79\x64\x70\x69\x3d\x22\x36\x2e\x32\x39\x32\x36\x34\x33\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\ +\x22\x36\x2e\x32\x39\x32\x36\x34\x33\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\ +\x70\x6f\x72\x74\x2d\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x2f\ +\x68\x6f\x6d\x65\x2f\x79\x6f\x72\x69\x6b\x2f\x44\x6f\x63\x75\x6d\ +\x65\x6e\x74\x73\x2f\x4c\x61\x62\x2f\x44\x72\x61\x66\x74\x2f\x69\ +\x63\x6f\x6e\x73\x2f\x64\x72\x61\x66\x74\x2e\x70\x6e\x67\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ +\x68\x33\x33\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x64\x3d\x22\x4d\x20\x31\x31\x38\x35\x2e\x39\x31\x39\x31\x2c\x31\ +\x33\x33\x31\x2e\x31\x36\x34\x33\x20\x4c\x20\x39\x35\x38\x2e\x36\ +\x33\x34\x37\x34\x2c\x31\x30\x38\x31\x2e\x36\x35\x36\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x66\x69\x6c\x6c\x2d\x72\ +\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\ +\x6b\x65\x3a\x23\x37\x62\x35\x36\x30\x30\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\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\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\ +\x2e\x32\x39\x32\x36\x34\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\ +\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x2e\x32\x39\x32\x36\x34\ +\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x66\x69\x6c\ +\x65\x6e\x61\x6d\x65\x3d\x22\x2f\x68\x6f\x6d\x65\x2f\x79\x6f\x72\ +\x69\x6b\x2f\x44\x6f\x63\x75\x6d\x65\x6e\x74\x73\x2f\x4c\x61\x62\ +\x2f\x44\x72\x61\x66\x74\x2f\x69\x63\x6f\x6e\x73\x2f\x64\x72\x61\ +\x66\x74\x2e\x70\x6e\x67\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x33\x38\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x31\x32\x37\ +\x39\x2e\x38\x36\x33\x32\x2c\x31\x33\x33\x34\x2e\x31\x39\x34\x37\ +\x20\x4c\x20\x31\x32\x31\x36\x2e\x32\x32\x33\x36\x2c\x31\x33\x39\ +\x33\x2e\x37\x39\x33\x37\x20\x4c\x20\x31\x32\x39\x36\x2e\x30\x32\ +\x35\x37\x2c\x31\x34\x31\x33\x2e\x39\x39\x36\x38\x20\x4c\x20\x31\ +\x32\x37\x39\x2e\x38\x36\x33\x32\x2c\x31\x33\x33\x34\x2e\x31\x39\ +\x34\x37\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\ +\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\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ +\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x2e\ +\x32\x39\x32\x36\x34\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\ +\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x2e\x32\x39\x32\x36\x34\x33\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x66\x69\x6c\x65\ +\x6e\x61\x6d\x65\x3d\x22\x2f\x68\x6f\x6d\x65\x2f\x79\x6f\x72\x69\ +\x6b\x2f\x44\x6f\x63\x75\x6d\x65\x6e\x74\x73\x2f\x4c\x61\x62\x2f\ +\x44\x72\x61\x66\x74\x2f\x69\x63\x6f\x6e\x73\x2f\x64\x72\x61\x66\ +\x74\x2e\x70\x6e\x67\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x33\x38\x39\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x31\x32\x39\x38\ +\x2e\x30\x34\x36\x2c\x31\x34\x31\x38\x2e\x30\x33\x37\x34\x20\x43\ +\x20\x31\x32\x33\x32\x2e\x35\x34\x39\x34\x2c\x31\x34\x33\x35\x2e\ +\x35\x35\x30\x34\x20\x31\x31\x39\x33\x2e\x38\x33\x33\x34\x2c\x31\ +\x34\x33\x38\x2e\x36\x33\x32\x38\x20\x31\x31\x34\x38\x2e\x35\x34\ +\x33\x34\x2c\x31\x34\x34\x32\x2e\x32\x38\x31\x31\x20\x43\x20\x31\ +\x30\x37\x38\x2e\x34\x36\x33\x38\x2c\x31\x34\x34\x37\x2e\x39\x32\ +\x36\x34\x20\x31\x30\x32\x36\x2e\x32\x39\x35\x39\x2c\x31\x34\x35\ +\x34\x2e\x31\x32\x37\x31\x20\x39\x31\x34\x2e\x31\x38\x38\x30\x33\ +\x2c\x31\x34\x34\x32\x2e\x32\x38\x31\x31\x20\x43\x20\x38\x39\x30\ +\x2e\x35\x31\x35\x37\x36\x2c\x31\x34\x33\x39\x2e\x37\x37\x39\x38\ +\x20\x39\x35\x38\x2e\x30\x38\x30\x34\x37\x2c\x31\x33\x39\x39\x2e\ +\x39\x38\x34\x38\x20\x39\x38\x31\x2e\x38\x36\x38\x32\x35\x2c\x31\ +\x34\x30\x30\x2e\x38\x36\x34\x38\x20\x43\x20\x31\x30\x33\x35\x2e\ +\x34\x34\x33\x38\x2c\x31\x34\x30\x32\x2e\x38\x34\x36\x39\x20\x31\ +\x31\x30\x32\x2e\x31\x36\x36\x36\x2c\x31\x33\x39\x37\x2e\x38\x31\ +\x38\x36\x20\x31\x31\x35\x33\x2e\x35\x39\x34\x32\x2c\x31\x34\x30\ +\x30\x2e\x38\x36\x34\x38\x20\x43\x20\x31\x31\x39\x37\x2e\x31\x35\ +\x38\x35\x2c\x31\x34\x30\x33\x2e\x34\x34\x35\x32\x20\x31\x32\x33\ +\x34\x2e\x36\x34\x37\x2c\x31\x34\x31\x34\x2e\x32\x38\x32\x39\x20\ +\x31\x32\x39\x38\x2e\x30\x34\x36\x2c\x31\x34\x31\x38\x2e\x30\x33\ +\x37\x34\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\ +\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x36\x33\ +\x35\x35\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\ +\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x70\ +\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ +\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x73\x73\x73\x73\ +\x63\x22\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\x0e\xb2\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ @@ -24794,821 +49027,4046 @@ qt_resource_data = "\ \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\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\x05\x7b\ -\x00\ -\x00\x1a\x1c\x78\x9c\xed\x58\x6d\x6f\xdb\x36\x10\xfe\xee\x5f\xa1\ -\x29\x5f\x1a\xcc\x92\x48\xea\x5d\xb5\xdd\x0f\x0b\x3a\x14\x18\xb0\ -\x61\x6d\xb1\x8f\x05\x23\xd1\xb6\x50\x49\x34\x28\x3a\xb6\xf3\xeb\ -\x77\xd4\x0b\x2d\xc5\xf2\x56\x14\x01\x02\x04\x91\x91\x98\xe2\x3d\ -\x47\xf2\x9e\x3b\xf2\x7c\x5c\x7c\x38\x96\x85\xf1\xc0\x44\x9d\xf3\ -\x6a\x69\x62\x1b\x99\x06\xab\x52\x9e\xe5\xd5\x66\x69\x7e\xfd\xf2\ -\xd1\x8a\x4c\xa3\x96\xb4\xca\x68\xc1\x2b\xb6\x34\x2b\x6e\x7e\x58\ -\xcd\x16\xbf\x58\x96\xf1\x9b\x60\x54\xb2\xcc\x38\xe4\x72\x6b\x7c\ -\xaa\xbe\xd7\x29\xdd\x31\xe3\xdd\x56\xca\x5d\xe2\x38\x87\xc3\xc1\ -\xce\xbb\x4e\x9b\x8b\x8d\x73\x6b\x58\xd6\x6a\x36\x5b\xd4\x0f\x9b\ -\x99\x61\x18\x30\x6f\x55\x27\x59\xba\x34\x3b\x85\xdd\x5e\x14\x0d\ -\x30\x4b\x1d\x56\xb0\x92\x55\xb2\x76\xb0\x8d\x1d\xf3\x0c\x4f\xcf\ -\xf0\x54\xcd\x9e\x3f\xb0\x94\x97\x25\xaf\xea\x46\xb3\xaa\x6f\x06\ -\x60\x91\xad\x35\x5a\xad\xe6\xe0\x36\x20\x1c\xc7\xb1\x83\x88\x43\ -\x88\x05\x08\xab\x3e\x55\x92\x1e\xad\xb1\x2a\xac\x71\x4a\x95\x20\ -\x84\x1c\x90\x9d\x91\x3f\x86\x4a\x8e\x05\x50\x71\x75\x31\x8d\x74\ -\x38\x3b\xd0\xbf\x83\x3f\xad\xd0\x77\xd8\x35\xdf\x8b\x94\xad\x41\ -\x93\xd9\x15\x93\xce\xdd\x97\x3b\x2d\xb4\x90\x9d\xc9\x6c\x30\x4c\ -\xcf\xfe\x68\xde\x91\x4b\x2a\x5a\xb2\x7a\x47\x53\x56\x3b\x7d\x7f\ -\xa3\x7f\xc8\x33\xb9\x5d\x9a\x81\xb7\x3b\x36\xef\x5b\x96\x6f\xb6\ -\x72\xd0\x91\x67\x4b\x13\x2c\x24\x51\x10\x37\xef\xfd\x1a\x12\x1d\ -\x49\xc8\x76\x49\x0b\xed\x06\x1e\x8a\xbc\xc8\xc6\x86\x88\xc3\x00\ -\x8d\xb5\x33\x9e\xaa\x25\x2d\xcd\x3b\x41\xd7\xf2\xdb\x5f\x3c\xaf\ -\xa4\xdd\x33\xa9\x07\xe2\x7b\xb9\xdb\xcb\x6f\xec\x28\x59\xd5\x8e\ -\x08\xb6\x0c\x0c\x6b\xc4\x4a\xcd\x1e\x19\x35\x08\x72\x6c\xae\xa0\ -\x67\x91\xb1\x75\xad\x24\xad\x3d\xea\x8d\x44\x61\x2b\x03\xa9\xa0\ -\x59\x4e\x8b\xdf\xd5\x17\x84\x62\x8b\x1b\xac\x22\xe5\x45\xc1\x52\ -\x20\x85\x16\x07\x7a\xaa\xcd\x1e\xd0\x38\x33\xd9\x0a\x06\xc1\x77\ -\x03\x6d\x46\x45\x3f\x86\x8b\x3d\x4f\xe3\xd4\x94\xe3\x29\x88\x1b\ -\x46\x5a\xbc\xe9\x3a\xbf\x56\xb9\x84\x28\xdb\xd7\x4c\x7c\x56\x9e\ -\xfa\xb3\xfa\x5a\xb3\x0b\xd4\x17\x41\xab\x1a\xc2\xa2\x5c\x9a\x25\ -\x95\x22\x3f\xbe\xc3\x73\xa4\x3e\x76\x10\x47\x3e\x89\x3d\x68\x13\ -\x44\xec\x08\x3c\xe6\xde\x6a\xf5\xf4\xb8\x34\x09\xf1\x6d\x12\x78\ -\x88\x9c\x7b\x4f\xe0\xe9\x90\xd8\x61\x1c\xba\x81\xee\x5d\x4f\x62\ -\xd7\x93\x58\xb1\x34\x5d\xcf\x76\x3d\x1f\x47\x70\x7c\x38\x2f\x47\ -\x68\xf0\xaa\x09\x1d\x93\xf1\xc3\x84\x2a\xa2\x26\x78\x5c\x75\xf2\ -\x45\x2d\xf9\xae\xc7\xc2\xe6\x94\xa7\x02\x76\xa4\xea\xb4\x60\x44\ -\x2e\x92\x9b\x75\xf3\xbc\x6f\xba\x38\x70\x98\xcb\x53\x82\xdf\x9b\ -\x67\x1d\xbe\x5e\xd7\x0c\x26\x46\x83\xbe\xe6\xc8\x00\x0d\x98\x2b\ -\xd0\x26\xfc\xec\x6c\x68\x6a\x36\x3c\x3d\xdb\x80\x30\x67\x6c\xf6\ -\x0b\x6e\x74\xf4\x9a\xe3\x52\x53\xb7\x83\x23\x77\x07\xdc\x41\x9a\ -\xee\x35\xf4\x59\x2f\x4f\x2a\x33\x8d\xa1\x6e\x66\x5e\xd0\xff\xb0\ -\xfb\x06\x0b\x42\x46\x62\xb8\x04\xfe\xe1\x49\xc4\xa9\x45\x60\xc8\ -\xbc\xf0\x85\x26\x31\x8f\x2a\x7f\xfd\xc7\x30\xdd\x0a\x2c\x2e\xf2\ -\x4d\x0e\x69\xa2\xc1\x11\x6c\xbb\xcd\x33\xd6\x01\x97\x0e\x6c\x83\ -\xac\x11\xbe\xe0\x31\xe7\xe2\x10\xbf\xe6\x70\x7a\x09\x42\xdd\x37\ -\x42\x9f\x97\x50\xff\x8d\xd0\x67\x25\x34\x8a\xdf\x08\x7d\x56\x42\ -\xe3\xb7\x33\xf4\x99\x09\x7d\x3b\x43\x9f\x95\x50\x82\x5e\xef\x19\ -\xba\x70\x54\xf5\xdd\xb4\xf4\x0f\x44\x75\x13\x90\x3d\xe4\xec\x30\ -\xd3\x8c\xdc\x53\x6d\xdd\x8e\x6e\x58\x53\x20\x00\x8f\x6d\x85\xd0\ -\x09\xee\xb9\xc8\x98\xe8\x45\x41\xf3\x8c\x44\x5d\x0d\xd1\x5e\x76\ -\xcd\xc6\x6e\x53\xa3\x6a\x39\x9a\x96\xd7\x5b\x9a\xf1\x03\x98\xfb\ -\x54\xf8\xc8\x39\x30\x0c\xd6\xfa\x4f\x25\x8a\x49\x0b\x47\xb6\xe7\ -\x05\x24\xbe\x94\xc2\x5c\x04\xd9\x31\x0a\x10\xc1\x17\xc2\xbd\x10\ -\xe0\x42\xab\xa0\x27\x06\x06\x35\x5f\x3d\xa8\xde\xf2\xc3\x46\x28\ -\x62\xa4\xd8\xb3\xa7\x9a\x19\x4f\xf7\xea\x12\xcd\xda\xb7\x41\xd2\ -\x5d\xdd\x0c\x10\x4a\xd7\xba\xbf\xe7\xc7\xe9\x01\x0e\x79\x05\x86\ -\x5a\xdd\x65\x10\x26\xd1\x05\x1d\x1d\xa2\xbf\x1e\x0a\xfd\xe8\x0a\ -\xe2\x78\xae\x05\x9f\x8a\x94\x23\xe2\x2b\xb2\x92\x1e\xf3\x32\x7f\ -\x64\x99\x2a\xee\xba\x48\x29\x99\xa4\x19\x95\xf4\x1c\x15\x7d\x0f\ -\xfc\x0c\xf7\xf4\xe5\x4d\xb6\x4e\xfe\xbe\xfb\xa8\xab\xcc\x34\x4d\ -\xfe\xe1\xe2\xfb\xb9\x40\x54\x00\x7a\xcf\xf7\xb0\x6c\x5d\xf9\xaa\ -\x2b\xa1\x34\x51\x1b\x85\xca\x55\x5e\x82\xaf\xd5\x35\xde\xaf\xc7\ -\xb2\x80\xf8\xd4\x82\x11\x58\x55\x31\xe7\x41\xdb\x61\x05\x6b\xaf\ -\xe9\x26\x6f\x36\xb3\xb4\xcc\x95\x92\xf3\x59\xe6\x45\xf1\x49\x4d\ -\x32\xa8\x86\xbb\x41\x73\x59\xb0\x55\x33\x67\xdb\xec\xad\x70\x3a\ -\x33\xfa\x72\x76\x60\xe5\xc2\xe9\x69\x68\xde\x36\x67\x7a\x46\x21\ -\xa3\x19\x2e\xe8\x3d\x2b\x96\xe6\x1f\x4a\x68\x5c\x48\x37\x82\xef\ -\x77\x25\xcf\x58\xa7\xde\xd3\xba\xa3\x72\x7b\xa5\x92\xa3\x22\xd5\ -\x3b\xbc\xab\xe2\xd7\x60\xa1\xaa\xdf\x63\x1f\xa1\xf7\xea\x65\x70\ -\x5b\x50\x4b\xc1\xbf\xb3\xe4\x06\x35\x4f\xf7\xda\xc6\x5a\xe2\xdb\ -\x51\xd3\x8b\xe3\x56\x8a\x3c\xaf\x07\x00\x79\x4c\x14\x10\x14\x32\ -\xd1\x7d\x4f\x07\xb5\x32\x0a\x7b\x54\x08\x7a\x4a\x2a\x5e\xb1\xd1\ -\x99\xaa\x0c\x20\x50\xce\x99\x17\x56\xa8\x3d\x8a\xe3\xd0\xc6\x1e\ -\x89\xfc\x09\xb1\x3a\xca\x7c\x38\xe0\x86\x79\x4d\x4b\x05\x28\x7b\ -\x91\xed\x87\xd8\x9b\x92\x9e\x26\xa4\x2a\x70\x0d\xe2\xf9\x76\xa8\ -\x66\x9c\xf7\x63\x1b\xd4\xe8\xa1\xf3\xbe\x61\x20\x03\xc3\xc7\xea\ -\x56\x17\xcc\xd1\x55\xcc\x00\xf2\xa8\xa7\x92\x17\xe7\xbf\x85\xe0\ -\xa4\x0e\xfc\x90\xf8\x31\x64\x01\x84\x42\xec\x86\x1e\x9e\x5b\xe3\ -\xb6\x86\x44\xa1\x1d\x7a\x41\x8c\x42\x48\x13\xbe\x8d\x02\x42\xe2\ -\xdb\x73\x2a\xfc\x89\xa0\x80\x0d\xf1\xee\xe6\x32\xbf\xdd\x5e\x89\ -\x92\x6b\x6e\x9c\xf2\xd3\x64\x22\x1a\xbb\xf1\x22\x23\x8d\xfc\x78\ -\xce\x4d\x93\x8e\x24\xae\x1d\xc7\x18\x93\xa7\x9e\xf4\x63\x3b\x40\ -\x31\xc1\x73\x3d\x3c\xb8\x52\x8f\x35\xd7\x6a\xbd\x33\x83\x08\xb2\ -\x2f\x72\x23\xf0\xd4\x75\xd4\x00\xf4\x7f\xee\x24\xaa\x26\x40\x90\ -\xca\x21\x00\xfc\xd8\x43\x38\x54\x2e\x1c\xb6\x35\x04\x87\x81\xed\ -\x23\xdf\x83\x16\xc4\x9f\xef\x05\x11\xbe\xd5\x89\x78\xb3\x9a\x2d\ -\xd4\xb1\xb7\x9a\xfd\x0b\xb3\xde\x14\xff\ -\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\ -\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\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\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\x32\xaa\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x70\x78\ +\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x70\ +\x78\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x36\x31\ +\x32\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\ +\x2e\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x34\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\x44\x72\x61\x66\x74\ +\x5f\x53\x77\x69\x74\x63\x68\x4d\x6f\x64\x65\x2e\x73\x76\x67\x22\ +\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x64\x65\x66\x73\x33\x36\x31\x34\x22\x3e\x0a\x20\x20\ +\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ +\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\ +\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x36\x34\x20\x3a\ +\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\ +\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x33\x32\x20\x3a\x20\x32\x31\ +\x2e\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\ +\x69\x76\x65\x33\x36\x32\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\ +\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x35\x38\x38\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\ +\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\ +\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\ +\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\ +\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\ +\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ +\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x36\x39\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\ +\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\ +\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\ +\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\ +\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x2d\ +\x36\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x33\x31\x34\x36\x2d\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ +\x33\x31\x34\x38\x2d\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x37\x30\x31\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x30\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\ +\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x73\x74\x6f\x70\x33\x37\x30\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\ +\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\ +\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x31\x34\x34\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x33\x36\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ +\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\ +\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ +\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\ +\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\ +\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\ +\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\ +\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\ +\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x30\x38\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ +\x33\x37\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x31\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\ +\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\ +\x69\x76\x65\x33\x38\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\ +\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\ +\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\ +\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\ +\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\ +\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x33\x38\x36\x34\x2d\x30\x2d\x30\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x36\x2d\x35\x2d\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ +\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x38\x2d\ +\x37\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x33\x37\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x33\x33\x37\x39\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x61\ +\x61\x30\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x73\x74\x6f\x70\x33\x33\x38\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x61\x66\x66\x32\ +\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\ +\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x2d\x30\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\ +\x38\x36\x36\x2d\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\ +\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\ +\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\ +\x38\x36\x38\x2d\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\ +\x63\x6f\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\ +\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\ +\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\ +\x73\x70\x65\x63\x74\x69\x76\x65\x33\x39\x30\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ +\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\ +\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\ +\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\ +\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\ +\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\ +\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\ +\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\ +\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x35\x30\x34\x38\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x62\x6c\x61\x63\x6b\x3b\x73\x74\x6f\x70\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ +\x35\x30\x35\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x73\x74\x6f\x70\x35\x30\x35\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x35\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\x6c\x61\ +\x63\x6b\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\x6c\ +\x61\x63\x6b\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x30\x35\x32\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x38\x34\x31\x2d\x30\x2d\x33\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\ +\x34\x33\x2d\x31\x2d\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ +\x33\x38\x34\x35\x2d\x30\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\ +\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\ +\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\ +\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\ +\x31\x31\x34\x2e\x35\x36\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x66\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x35\x2e\x32\x35\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x31\x31\x34\x2e\ +\x35\x36\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\ +\x22\x32\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x61\x69\x67\x72\x64\x32\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\ +\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x46\x30\x46\x30\x46\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x36\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x39\ +\x61\x39\x61\x39\x61\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x2f\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ +\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x34\x2e\x35\x36\x37\x39\ +\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\ +\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x72\x3d\x22\x35\x2e\x32\x35\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x63\x79\x3d\x22\x36\x34\x2e\x35\x36\x37\x39\x30\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x30\x2e\x38\ +\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x61\x69\x67\x72\x64\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x37\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x46\x30\x46\x30\x46\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x37\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x39\x61\x39\x61\x39\x61\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\ +\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\ +\x30\x30\x30\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\ +\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\ +\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x31\x35\x36\x36\ +\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\ +\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\ +\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x36\x36\x34\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x38\x66\x38\x66\ +\x38\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\ +\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x36\x36\x36\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\ +\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x72\x3d\x22\x38\x36\x2e\x37\x30\x38\x34\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x33\x35\x2e\x37\x33\ +\x36\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\ +\x22\x33\x33\x2e\x39\x36\x36\x36\x37\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x63\x79\x3d\x22\x33\x35\x2e\x37\x33\x36\x39\x31\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x33\x33\x2e\ +\x39\x36\x36\x36\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x36\x30\x34\x39\ +\x32\x39\x37\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x34\x31\x31\x33\x32\ +\x2c\x2d\x35\x32\x2e\x31\x34\x34\x32\x34\x39\x2c\x2d\x37\x30\x32\ +\x2e\x33\x33\x31\x35\x38\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\ +\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x34\x35\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\ +\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x32\x35\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\ +\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x32\x35\x39\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x66\x61\x66\x61\x66\x61\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\ +\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x32\x36\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ +\x23\x62\x62\x62\x62\x62\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ +\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\x36\ +\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\ +\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x37\x2e\x37\x35\x31\ +\x37\x31\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\ +\x33\x2e\x37\x35\x36\x31\x32\x38\x35\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x66\x78\x3d\x22\x38\x2e\x38\x32\x34\x34\x31\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x33\x2e\x37\x35\x36\ +\x31\x32\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\ +\x22\x38\x2e\x38\x32\x34\x34\x31\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\ +\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x36\ +\x38\x32\x37\x32\x39\x37\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x33\x32\ +\x37\x36\x37\x2c\x2d\x34\x38\x2e\x37\x39\x30\x36\x39\x39\x2c\x2d\ +\x37\x30\x31\x2e\x36\x38\x35\x31\x33\x29\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\ +\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\ +\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x34\x35\x34\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\ +\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x32\x36\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\ +\x22\x61\x6c\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x36\x39\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\ +\x63\x6f\x6c\x6f\x72\x3a\x23\x61\x33\x61\x33\x61\x33\x3b\x73\x74\ +\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\ +\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x73\x74\x6f\x70\x32\x37\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x34\x63\x34\x63\x34\x63\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\ +\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x32\x37\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\ +\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\ +\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x34\ +\x39\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\ +\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\ +\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\ +\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\ +\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\ +\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x30\x39\ +\x35\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x35\x62\ +\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x30\x39\x37\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x63\x31\x65\x33\x66\x37\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x34\x30\x39\x39\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\ +\x65\x63\x74\x69\x76\x65\x35\x30\x32\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ +\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\ +\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\ +\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\ +\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\ +\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\ +\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ +\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\ +\x70\x65\x63\x74\x69\x76\x65\x35\x30\x37\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\ +\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\ +\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\ +\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\ +\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\ +\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\ +\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ +\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\ +\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\ +\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\ +\x32\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\ +\x35\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x33\ +\x39\x34\x2e\x31\x35\x37\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x79\x31\x3d\x22\x31\x38\x35\x2e\x31\x33\x30\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x34\x33\x34\x2e\x37\x33\ +\x39\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\ +\x31\x34\x30\x2e\x32\x32\x37\x33\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\ +\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ +\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ +\x78\x28\x30\x2e\x39\x34\x32\x33\x31\x38\x32\x36\x2c\x30\x2c\x30\ +\x2c\x30\x2e\x39\x34\x32\x33\x31\x38\x32\x36\x2c\x32\x33\x2e\x37\ +\x32\x37\x35\x34\x39\x2c\x38\x2e\x38\x32\x36\x32\x35\x33\x36\x29\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x34\x32\x34\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ +\x23\x32\x65\x38\x32\x30\x37\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x32\ +\x34\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x35\ +\x32\x66\x66\x30\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x32\x35\x31\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x31\x34\x30\x2e\x32\x32\ +\x37\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\ +\x34\x33\x34\x2e\x37\x33\x39\x34\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x79\x31\x3d\x22\x31\x38\x35\x2e\x31\x33\x30\x34\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x33\x39\x34\x2e\x31\ +\x35\x37\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ +\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x34\x32\x33\x31\x38\x32\ +\x36\x2c\x30\x2c\x30\x2c\x30\x2e\x39\x34\x32\x33\x31\x38\x32\x36\ +\x2c\x32\x33\x2e\x37\x32\x37\x35\x34\x39\x2c\x38\x2e\x38\x32\x36\ +\x32\x35\x33\x36\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ +\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\ +\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x35\x30\x38\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\ +\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ +\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\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\x37\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\ +\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\ +\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ +\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\ +\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\ +\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\ +\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\ +\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\ +\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\ +\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\ +\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\ +\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\ +\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\ +\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\ +\x34\x32\x39\x33\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\x33\x38\x34\x2e\x31\x39\x38\x36\x34\x2c\x2d\x31\x33\ +\x32\x2e\x36\x34\x35\x36\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\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\ +\x65\x73\x3d\x22\x63\x63\x63\x63\x63\x63\x63\x63\x63\x63\x63\x63\ +\x63\x63\x63\x63\x63\x63\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\x34\ +\x36\x34\x2d\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\ +\x3d\x22\x6d\x20\x34\x31\x37\x2e\x35\x38\x30\x39\x36\x2c\x31\x39\ +\x33\x2e\x39\x39\x39\x39\x36\x20\x63\x20\x2d\x33\x2e\x34\x35\x34\ +\x36\x2c\x2d\x30\x2e\x36\x38\x37\x36\x37\x20\x2d\x31\x2e\x37\x30\ +\x38\x31\x31\x2c\x2d\x34\x2e\x39\x31\x36\x33\x38\x20\x2d\x32\x2e\ +\x30\x35\x36\x36\x36\x2c\x2d\x37\x2e\x33\x32\x38\x30\x31\x20\x30\ +\x2c\x2d\x35\x2e\x36\x35\x33\x34\x20\x30\x2c\x2d\x31\x31\x2e\x33\ +\x30\x36\x37\x39\x20\x30\x2c\x2d\x31\x36\x2e\x39\x36\x30\x31\x39\ +\x20\x2d\x34\x2e\x35\x30\x35\x37\x37\x2c\x2d\x30\x2e\x38\x36\x31\ +\x36\x35\x20\x2d\x39\x2e\x38\x34\x31\x36\x36\x2c\x2d\x32\x2e\x32\ +\x32\x20\x2d\x31\x31\x2e\x39\x35\x33\x39\x2c\x2d\x36\x2e\x37\x37\ +\x34\x39\x36\x20\x2d\x32\x2e\x37\x32\x39\x35\x36\x2c\x2d\x35\x2e\ +\x35\x34\x31\x31\x35\x20\x2d\x31\x2e\x33\x35\x35\x35\x31\x2c\x2d\ +\x31\x31\x2e\x39\x32\x37\x31\x31\x20\x30\x2e\x31\x37\x38\x31\x32\ +\x2c\x2d\x31\x37\x2e\x35\x39\x39\x37\x33\x20\x2d\x30\x2e\x30\x31\ +\x30\x33\x2c\x2d\x33\x2e\x38\x37\x33\x36\x20\x35\x2e\x35\x37\x36\ +\x30\x37\x2c\x2d\x33\x2e\x34\x34\x34\x37\x34\x20\x35\x2e\x39\x36\ +\x37\x36\x32\x2c\x30\x2e\x30\x36\x35\x31\x20\x30\x2e\x35\x39\x36\ +\x32\x33\x2c\x32\x2e\x36\x35\x39\x37\x36\x20\x33\x2e\x37\x36\x34\ +\x31\x32\x2c\x33\x2e\x34\x37\x35\x39\x39\x20\x34\x2e\x38\x30\x32\ +\x34\x36\x2c\x30\x2e\x36\x36\x31\x32\x35\x20\x30\x2e\x38\x31\x39\ +\x2c\x2d\x32\x2e\x36\x31\x32\x32\x37\x20\x34\x2e\x32\x33\x33\x31\ +\x35\x2c\x2d\x35\x2e\x31\x39\x34\x33\x31\x20\x35\x2e\x39\x39\x30\ +\x38\x36\x2c\x2d\x31\x2e\x37\x37\x38\x38\x38\x20\x30\x2e\x38\x37\ +\x38\x34\x32\x2c\x32\x2e\x32\x32\x31\x37\x20\x34\x2e\x32\x32\x38\ +\x38\x33\x2c\x35\x2e\x31\x39\x37\x33\x34\x20\x35\x2e\x34\x39\x38\ +\x35\x39\x2c\x31\x2e\x36\x31\x37\x32\x35\x20\x30\x2e\x32\x36\x34\ +\x31\x35\x2c\x2d\x32\x2e\x38\x39\x37\x33\x38\x20\x34\x2e\x36\x31\ +\x32\x38\x39\x2c\x2d\x35\x2e\x30\x39\x39\x33\x36\x20\x35\x2e\x38\ +\x36\x31\x36\x39\x2c\x2d\x31\x2e\x36\x33\x32\x30\x35\x20\x32\x2e\ +\x33\x39\x37\x35\x33\x2c\x36\x2e\x34\x38\x35\x38\x32\x20\x32\x2e\ +\x38\x31\x37\x34\x31\x2c\x31\x34\x2e\x33\x30\x33\x34\x20\x2d\x31\ +\x2e\x30\x32\x32\x36\x35\x2c\x32\x30\x2e\x33\x34\x34\x38\x33\x20\ +\x2d\x31\x2e\x37\x36\x33\x37\x39\x2c\x33\x2e\x33\x35\x33\x35\x20\ +\x2d\x35\x2e\x37\x39\x36\x31\x32\x2c\x33\x2e\x38\x32\x31\x37\x32\ +\x20\x2d\x38\x2e\x38\x39\x32\x39\x34\x2c\x35\x2e\x33\x30\x30\x31\ +\x36\x20\x2d\x31\x2e\x31\x35\x33\x30\x35\x2c\x33\x2e\x39\x32\x39\ +\x37\x20\x2d\x30\x2e\x36\x39\x37\x36\x36\x2c\x38\x2e\x34\x37\x38\ +\x32\x33\x20\x2d\x30\x2e\x37\x38\x34\x30\x32\x2c\x31\x32\x2e\x36\ +\x33\x35\x33\x35\x20\x30\x2e\x38\x35\x36\x39\x32\x2c\x33\x2e\x34\ +\x34\x33\x31\x39\x20\x33\x2e\x32\x39\x32\x33\x34\x2c\x2d\x30\x2e\ +\x36\x34\x37\x35\x38\x20\x34\x2e\x36\x33\x38\x31\x2c\x2d\x31\x2e\ +\x35\x39\x34\x34\x31\x20\x35\x2e\x34\x34\x31\x38\x36\x2c\x2d\x35\ +\x2e\x31\x35\x33\x34\x37\x20\x31\x30\x2e\x33\x39\x33\x34\x39\x2c\ +\x2d\x31\x30\x2e\x38\x32\x34\x36\x20\x31\x36\x2e\x31\x35\x36\x31\ +\x37\x2c\x2d\x31\x35\x2e\x36\x33\x36\x34\x35\x20\x31\x2e\x36\x39\ +\x34\x34\x34\x2c\x35\x2e\x38\x38\x39\x33\x35\x20\x30\x2e\x39\x35\ +\x39\x32\x2c\x31\x32\x2e\x32\x32\x37\x32\x32\x20\x2d\x30\x2e\x37\ +\x30\x32\x32\x36\x2c\x31\x38\x2e\x30\x33\x31\x34\x20\x43\x20\x34\ +\x33\x37\x2e\x30\x31\x32\x31\x2c\x31\x39\x33\x2e\x33\x39\x39\x31\ +\x38\x20\x34\x32\x37\x2e\x31\x35\x35\x37\x36\x2c\x31\x39\x34\x2e\ +\x36\x34\x38\x33\x38\x20\x34\x31\x37\x2e\x35\x38\x30\x39\x36\x2c\ +\x31\x39\x34\x20\x6c\x20\x30\x2c\x2d\x32\x65\x2d\x35\x20\x7a\x20\ +\x6d\x20\x2d\x32\x34\x2e\x32\x34\x34\x32\x38\x2c\x2d\x31\x30\x2e\ +\x34\x33\x35\x32\x38\x20\x63\x20\x2d\x30\x2e\x31\x30\x36\x35\x32\ +\x2c\x2d\x35\x2e\x38\x33\x32\x37\x34\x20\x2d\x30\x2e\x31\x38\x32\ +\x39\x31\x2c\x2d\x31\x31\x2e\x36\x37\x32\x34\x34\x20\x30\x2e\x31\ +\x33\x37\x34\x2c\x2d\x31\x37\x2e\x35\x30\x30\x32\x32\x20\x35\x2e\ +\x36\x38\x33\x34\x31\x2c\x31\x2e\x39\x32\x38\x35\x31\x20\x31\x34\ +\x2e\x30\x31\x31\x36\x38\x2c\x31\x31\x2e\x32\x39\x34\x38\x31\x20\ +\x31\x38\x2e\x34\x37\x39\x32\x37\x2c\x31\x35\x2e\x37\x38\x34\x38\ +\x32\x20\x30\x2e\x36\x39\x38\x32\x39\x2c\x33\x2e\x37\x31\x39\x34\ +\x34\x20\x31\x2e\x33\x34\x30\x36\x37\x2c\x37\x2e\x39\x33\x33\x36\ +\x31\x20\x2d\x30\x2e\x37\x39\x38\x39\x35\x2c\x31\x31\x2e\x33\x32\ +\x31\x34\x38\x20\x2d\x36\x2e\x39\x38\x35\x36\x32\x2c\x31\x2e\x33\ +\x37\x30\x38\x37\x20\x2d\x31\x34\x2e\x30\x39\x36\x31\x39\x2c\x2d\ +\x34\x2e\x32\x32\x35\x35\x37\x20\x2d\x31\x37\x2e\x38\x31\x37\x37\ +\x32\x2c\x2d\x39\x2e\x36\x30\x36\x30\x38\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\x33\x30\x35\x33\x34\x33\ +\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\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\x63\x63\x63\x63\x63\ +\x63\x63\x63\x63\x63\x63\x63\x63\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\x34\x36\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\ +\x3d\x22\x6d\x20\x34\x31\x33\x2e\x37\x36\x34\x39\x35\x2c\x31\x38\ +\x38\x2e\x34\x32\x39\x34\x31\x20\x63\x20\x2d\x33\x2e\x34\x35\x34\ +\x36\x2c\x2d\x30\x2e\x36\x38\x37\x36\x37\x20\x2d\x31\x2e\x37\x30\ +\x38\x31\x31\x2c\x2d\x34\x2e\x39\x31\x36\x33\x38\x20\x2d\x32\x2e\ +\x30\x35\x36\x36\x36\x2c\x2d\x37\x2e\x33\x32\x38\x30\x31\x20\x30\ +\x2c\x2d\x35\x2e\x36\x35\x33\x34\x20\x30\x2c\x2d\x31\x31\x2e\x33\ +\x30\x36\x37\x39\x20\x30\x2c\x2d\x31\x36\x2e\x39\x36\x30\x31\x39\ +\x20\x2d\x34\x2e\x35\x30\x35\x37\x37\x2c\x2d\x30\x2e\x38\x36\x31\ +\x36\x35\x20\x2d\x39\x2e\x38\x34\x31\x36\x36\x2c\x2d\x32\x2e\x32\ +\x32\x20\x2d\x31\x31\x2e\x39\x35\x33\x39\x2c\x2d\x36\x2e\x37\x37\ +\x34\x39\x36\x20\x2d\x32\x2e\x37\x32\x39\x35\x36\x2c\x2d\x35\x2e\ +\x35\x34\x31\x31\x35\x20\x2d\x31\x2e\x33\x35\x35\x35\x31\x2c\x2d\ +\x31\x31\x2e\x39\x32\x37\x31\x31\x20\x30\x2e\x31\x37\x38\x31\x32\ +\x2c\x2d\x31\x37\x2e\x35\x39\x39\x37\x33\x20\x2d\x30\x2e\x30\x31\ +\x30\x33\x2c\x2d\x33\x2e\x38\x37\x33\x36\x20\x35\x2e\x35\x37\x36\ +\x30\x37\x2c\x2d\x33\x2e\x34\x34\x34\x37\x34\x20\x35\x2e\x39\x36\ +\x37\x36\x32\x2c\x30\x2e\x30\x36\x35\x31\x20\x30\x2e\x35\x39\x36\ +\x32\x33\x2c\x32\x2e\x36\x35\x39\x37\x36\x20\x33\x2e\x37\x36\x34\ +\x31\x32\x2c\x33\x2e\x34\x37\x35\x39\x39\x20\x34\x2e\x38\x30\x32\ +\x34\x36\x2c\x30\x2e\x36\x36\x31\x32\x35\x20\x30\x2e\x38\x31\x39\ +\x2c\x2d\x32\x2e\x36\x31\x32\x32\x37\x20\x34\x2e\x32\x33\x33\x31\ +\x35\x2c\x2d\x35\x2e\x31\x39\x34\x33\x31\x20\x35\x2e\x39\x39\x30\ +\x38\x36\x2c\x2d\x31\x2e\x37\x37\x38\x38\x38\x20\x30\x2e\x38\x37\ +\x38\x34\x32\x2c\x32\x2e\x32\x32\x31\x37\x20\x34\x2e\x32\x32\x38\ +\x38\x33\x2c\x35\x2e\x31\x39\x37\x33\x34\x20\x35\x2e\x34\x39\x38\ +\x35\x39\x2c\x31\x2e\x36\x31\x37\x32\x35\x20\x30\x2e\x32\x36\x34\ +\x31\x35\x2c\x2d\x32\x2e\x38\x39\x37\x33\x38\x20\x34\x2e\x36\x31\ +\x32\x38\x39\x2c\x2d\x35\x2e\x30\x39\x39\x33\x36\x20\x35\x2e\x38\ +\x36\x31\x36\x39\x2c\x2d\x31\x2e\x36\x33\x32\x30\x35\x20\x32\x2e\ +\x33\x39\x37\x35\x33\x2c\x36\x2e\x34\x38\x35\x38\x32\x20\x32\x2e\ +\x38\x31\x37\x34\x31\x2c\x31\x34\x2e\x33\x30\x33\x34\x20\x2d\x31\ +\x2e\x30\x32\x32\x36\x35\x2c\x32\x30\x2e\x33\x34\x34\x38\x33\x20\ +\x2d\x31\x2e\x37\x36\x33\x37\x39\x2c\x33\x2e\x33\x35\x33\x35\x20\ +\x2d\x35\x2e\x37\x39\x36\x31\x32\x2c\x33\x2e\x38\x32\x31\x37\x32\ +\x20\x2d\x38\x2e\x38\x39\x32\x39\x34\x2c\x35\x2e\x33\x30\x30\x31\ +\x36\x20\x2d\x31\x2e\x31\x35\x33\x30\x35\x2c\x33\x2e\x39\x32\x39\ +\x37\x20\x2d\x30\x2e\x36\x39\x37\x36\x36\x2c\x38\x2e\x34\x37\x38\ +\x32\x33\x20\x2d\x30\x2e\x37\x38\x34\x30\x32\x2c\x31\x32\x2e\x36\ +\x33\x35\x33\x35\x20\x30\x2e\x38\x35\x36\x39\x32\x2c\x33\x2e\x34\ +\x34\x33\x31\x39\x20\x33\x2e\x32\x39\x32\x33\x34\x2c\x2d\x30\x2e\ +\x36\x34\x37\x35\x38\x20\x34\x2e\x36\x33\x38\x31\x2c\x2d\x31\x2e\ +\x35\x39\x34\x34\x31\x20\x35\x2e\x34\x34\x31\x38\x36\x2c\x2d\x35\ +\x2e\x31\x35\x33\x34\x37\x20\x31\x30\x2e\x33\x39\x33\x34\x39\x2c\ +\x2d\x31\x30\x2e\x38\x32\x34\x36\x20\x31\x36\x2e\x31\x35\x36\x31\ +\x37\x2c\x2d\x31\x35\x2e\x36\x33\x36\x34\x35\x20\x31\x2e\x36\x39\ +\x34\x34\x34\x2c\x35\x2e\x38\x38\x39\x33\x35\x20\x30\x2e\x39\x35\ +\x39\x32\x2c\x31\x32\x2e\x32\x32\x37\x32\x32\x20\x2d\x30\x2e\x37\ +\x30\x32\x32\x36\x2c\x31\x38\x2e\x30\x33\x31\x34\x20\x2d\x34\x2e\ +\x32\x35\x30\x30\x34\x2c\x31\x30\x2e\x30\x34\x38\x35\x36\x20\x2d\ +\x31\x34\x2e\x31\x30\x36\x33\x38\x2c\x31\x31\x2e\x32\x39\x37\x37\ +\x36\x20\x2d\x32\x33\x2e\x36\x38\x31\x31\x38\x2c\x31\x30\x2e\x36\ +\x34\x39\x33\x38\x20\x6c\x20\x30\x2c\x2d\x32\x65\x2d\x35\x20\x7a\ +\x20\x6d\x20\x2d\x32\x34\x2e\x32\x34\x34\x32\x38\x2c\x2d\x31\x30\ +\x2e\x34\x33\x35\x32\x38\x20\x63\x20\x2d\x30\x2e\x31\x30\x36\x35\ +\x32\x2c\x2d\x35\x2e\x38\x33\x32\x37\x34\x20\x2d\x30\x2e\x31\x38\ +\x32\x39\x31\x2c\x2d\x31\x31\x2e\x36\x37\x32\x34\x34\x20\x30\x2e\ +\x31\x33\x37\x34\x2c\x2d\x31\x37\x2e\x35\x30\x30\x32\x32\x20\x35\ +\x2e\x36\x38\x33\x34\x31\x2c\x31\x2e\x39\x32\x38\x35\x31\x20\x31\ +\x34\x2e\x30\x31\x31\x36\x38\x2c\x31\x31\x2e\x32\x39\x34\x38\x31\ +\x20\x31\x38\x2e\x34\x37\x39\x32\x37\x2c\x31\x35\x2e\x37\x38\x34\ +\x38\x32\x20\x30\x2e\x36\x39\x38\x32\x39\x2c\x33\x2e\x37\x31\x39\ +\x34\x34\x20\x31\x2e\x33\x34\x30\x36\x37\x2c\x37\x2e\x39\x33\x33\ +\x36\x31\x20\x2d\x30\x2e\x37\x39\x38\x39\x35\x2c\x31\x31\x2e\x33\ +\x32\x31\x34\x38\x20\x2d\x36\x2e\x39\x38\x35\x36\x32\x2c\x31\x2e\ +\x33\x37\x30\x38\x37\x20\x2d\x31\x34\x2e\x30\x39\x36\x31\x39\x2c\ +\x2d\x34\x2e\x32\x32\x35\x35\x37\x20\x2d\x31\x37\x2e\x38\x31\x37\ +\x37\x32\x2c\x2d\x39\x2e\x36\x30\x36\x30\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\x35\x30\x38\x37\x29\x3b\x66\x69\x6c\ +\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\ +\x6b\x65\x3a\x23\x31\x35\x34\x62\x30\x30\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x38\x32\x36\x39\x35\x34\ +\x38\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ +\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\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\x1a\x1c\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x70\x78\ +\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x70\ +\x78\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x38\x36\ +\x39\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\x44\x72\x61\x66\x74\x5f\x50\x6f\x69\x6e\ +\x74\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x6f\x75\x74\x70\x75\x74\x5f\x65\x78\x74\x65\x6e\x73\ +\x69\x6f\x6e\x3d\x22\x6f\x72\x67\x2e\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x2e\x6f\x75\x74\x70\x75\x74\x2e\x73\x76\x67\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\ +\x6e\x3d\x22\x31\x2e\x31\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\ +\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x38\ +\x37\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\ +\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\ +\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\x32\x33\x37\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ +\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\ +\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ +\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ +\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\ +\x36\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\ +\x38\x36\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\ +\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\ +\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ +\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\ +\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\ +\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\ +\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\ +\x34\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\x32\x33\x36\x38\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ +\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\ +\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\ +\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\ +\x32\x38\x36\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\ +\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\ +\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\ +\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\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\x33\x31\x34\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\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\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x33\x31\x34\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\x66\x66\x66\x66\x66\x66\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\x33\ +\x31\x34\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\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\ +\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\ +\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x31\x34\x34\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\x32\x33\x37\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ +\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\ +\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ +\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\ +\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\ +\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\ +\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\ +\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\ +\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\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\x38\x37\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\ +\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x31\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\ +\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\ +\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\ +\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\ +\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\ +\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\ +\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\ +\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\ +\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x33\x31\x37\x33\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ +\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\ +\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ +\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\ +\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\ +\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\ +\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\ +\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\ +\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\ +\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\ +\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x31\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\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\ +\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\ +\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\ +\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\ +\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ +\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ +\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\ +\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x31\x38\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\ +\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ +\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ +\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\ +\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\ +\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\ +\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\ +\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\ +\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\ +\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x39\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\ +\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ +\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ +\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\ +\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\ +\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\ +\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\ +\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\ +\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ +\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ +\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x39\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\ +\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\ +\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ +\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\ +\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\ +\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\ +\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\ +\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\ +\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\ +\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\ +\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\ +\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x32\x30\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\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\ +\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\ +\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\ +\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\ +\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\ +\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\ +\x20\x2f\x3e\x0a\x20\x20\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\x2d\x31\x38\x2e\x34\x34\x36\ +\x32\x39\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x79\x3d\x22\x32\x30\x2e\x39\x30\x36\x30\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\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\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\x38\x37\x34\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\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\x63\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ +\x3a\x23\x66\x66\x39\x35\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\x35\x2e\x38\x30\x30\x30\x30\x30\x31\x39\x30\x30\ +\x30\x30\x30\x30\x30\x34\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ +\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ +\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x61\x74\x68\x32\x33\x33\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x31\x39\x37\ +\x2e\x31\x34\x32\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\x36\x35\x35\x2e\ +\x32\x31\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\x34\x38\x2e\x35\x37\x31\ +\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x72\x79\x3d\x22\x34\x38\x2e\x35\x37\x31\x34\x33\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x34\ +\x35\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\ +\x20\x61\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\ +\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x2d\x39\x37\x2e\x31\ +\x34\x32\x38\x36\x2c\x30\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\ +\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x39\ +\x37\x2e\x31\x34\x32\x38\x36\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ +\x61\x74\x72\x69\x78\x28\x2d\x30\x2e\x32\x36\x36\x35\x37\x32\x35\ +\x39\x2c\x30\x2e\x30\x30\x37\x31\x33\x37\x34\x31\x2c\x2d\x30\x2e\ +\x30\x30\x37\x31\x33\x37\x34\x31\x2c\x2d\x30\x2e\x32\x36\x36\x35\ +\x37\x32\x35\x39\x2c\x38\x37\x2e\x37\x34\x36\x39\x30\x37\x2c\x32\ +\x30\x35\x2e\x30\x36\x32\x32\x39\x29\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\ +\x63\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\ +\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x32\x30\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\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x33\x33\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\ +\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\ +\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\ +\x22\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x35\x39\x2e\x36\x30\x39\x32\ +\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x61\x20\x33\x34\ +\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\x33\x2e\x39\x39\x31\x31\x32\ +\x33\x20\x30\x20\x31\x20\x31\x20\x2d\x36\x38\x2e\x36\x39\x30\x33\ +\x38\x2c\x30\x20\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\x33\ +\x2e\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\x20\x31\x20\x36\x38\ +\x2e\x36\x39\x30\x33\x38\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\ +\x74\x72\x69\x78\x28\x2d\x30\x2e\x32\x32\x33\x31\x38\x39\x30\x34\ +\x2c\x30\x2e\x31\x34\x35\x39\x34\x30\x31\x37\x2c\x2d\x30\x2e\x31\ +\x34\x35\x39\x34\x30\x31\x37\x2c\x2d\x30\x2e\x32\x32\x33\x31\x38\ +\x39\x30\x34\x2c\x31\x37\x36\x2e\x35\x30\x35\x34\x34\x2c\x31\x34\ +\x35\x2e\x35\x34\x36\x38\x31\x29\x22\x20\x2f\x3e\x0a\x20\x20\x3c\ +\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x26\xfb\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x70\x78\ +\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x70\ +\x78\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x36\x31\ +\x32\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\ +\x2e\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x34\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\x44\x72\x61\x66\x74\ +\x5f\x42\x53\x70\x6c\x69\x6e\x65\x2e\x73\x76\x67\x22\x3e\x0a\x20\ +\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x64\x65\x66\x73\x33\x36\x31\x34\x22\x3e\x0a\x20\x20\x20\x20\x3c\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\ +\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ +\x78\x3d\x22\x30\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\ +\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x36\x34\x20\x3a\x20\x33\x32\ +\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\ +\x69\x67\x69\x6e\x3d\x22\x33\x32\x20\x3a\x20\x32\x31\x2e\x33\x33\ +\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\ +\x33\x36\x32\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\ +\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\ +\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x35\x38\x38\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\ +\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\ +\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\ +\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\ +\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\ +\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\ +\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ +\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\ +\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x36\x39\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\ +\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\ +\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\ +\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\ +\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ +\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\ +\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x33\x31\x34\x34\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x36\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\ +\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\ +\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\ +\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\ +\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\ +\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\ +\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x2d\ +\x36\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x33\x31\x34\x36\x2d\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ +\x33\x31\x34\x38\x2d\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\ +\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\ +\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\ +\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\ +\x31\x34\x34\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x33\x36\x38\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\ +\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\ +\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\ +\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\ +\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\ +\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\ +\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\ +\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x30\x31\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x30\x33\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\ +\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x30\x35\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\ +\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\ +\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\ +\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\ +\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x2d\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x33\x36\x38\x38\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\ +\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ +\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ +\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\ +\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\ +\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\ +\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\ +\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\ +\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\ +\x37\x30\x38\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x33\x37\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ +\x33\x37\x31\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\ +\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\ +\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\ +\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\ +\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ +\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ +\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\ +\x36\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\ +\x38\x36\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\ +\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x37\x32\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\ +\x34\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\ +\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\ +\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\ +\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x38\x30\x35\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\ +\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\ +\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\ +\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\ +\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\ +\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\ +\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ +\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ +\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\ +\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x33\x38\x36\x34\x2d\x30\x2d\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x33\x39\x33\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ +\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\ +\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ +\x28\x30\x2e\x32\x32\x31\x30\x32\x34\x36\x2c\x2d\x30\x2e\x35\x37\ +\x38\x39\x32\x36\x31\x2c\x2d\x30\x2e\x37\x31\x36\x39\x39\x36\x39\ +\x33\x2c\x2d\x30\x2e\x33\x35\x33\x34\x36\x37\x30\x35\x2c\x35\x31\ +\x39\x2e\x39\x38\x30\x38\x35\x2c\x34\x36\x34\x2e\x31\x39\x32\x34\ +\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x36\ +\x39\x36\x2e\x36\x37\x33\x32\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x79\x31\x3d\x22\x37\x37\x2e\x30\x34\x36\x32\x33\x34\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x36\x35\x34\x2e\x38\ +\x30\x30\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\ +\x22\x31\x31\x35\x2e\x30\x31\x39\x37\x34\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\ +\x2d\x30\x2d\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x73\x74\x6f\x70\x33\x38\x36\x36\x2d\x35\x2d\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x36\ +\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x38\x2d\x37\x2d\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\ +\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\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\x39\x34\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x78\x31\x3d\x22\x35\x39\x37\x2e\x37\x37\x32\x38\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x34\x34\ +\x2e\x30\x32\x34\x33\x34\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x78\x32\x3d\x22\x36\x31\x39\x2e\x33\x30\x33\x32\x38\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x33\x30\x2e\x32\x37\x34\ +\x33\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ +\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\ +\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x33\ +\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x66\x66\x61\x61\x30\x30\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x33\x38\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x66\x61\x66\x66\x32\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\ +\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x2d\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x36\x35\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ +\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\ +\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\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\x32\x32\x31\x30\x32\x34\ +\x36\x2c\x2d\x30\x2e\x35\x37\x38\x39\x32\x36\x31\x2c\x2d\x30\x2e\ +\x37\x31\x36\x39\x39\x36\x39\x33\x2c\x2d\x30\x2e\x33\x35\x33\x34\ +\x36\x37\x30\x35\x2c\x35\x33\x36\x2e\x34\x31\x32\x35\x31\x2c\x34\ +\x37\x32\x2e\x33\x36\x31\x32\x29\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x78\x31\x3d\x22\x36\x39\x36\x2e\x36\x37\x33\x32\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x37\x37\x2e\x30\x34\ +\x36\x32\x33\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\ +\x22\x36\x35\x30\x2e\x37\x30\x34\x35\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x79\x32\x3d\x22\x31\x33\x39\x2e\x34\x30\x39\x38\x32\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x33\x38\x36\x34\x2d\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x36\x2d\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x38\x2d\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\ +\x0a\x20\x20\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\x37\x22\x3e\x0a\x20\ +\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\ +\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\ +\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ +\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\ +\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\ +\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ +\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\x3a\x74\x69\x74\x6c\ +\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\ +\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\ +\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\ +\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ +\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\ +\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\ +\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ +\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x39\x32\ +\x36\x33\x36\x31\x35\x34\x2c\x2d\x35\x37\x36\x2e\x33\x38\x37\x39\ +\x2c\x2d\x30\x2e\x35\x36\x34\x33\x36\x39\x30\x31\x29\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x44\x72\x61\x66\x74\x5f\ +\x73\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x64\x69\x73\x70\x6c\ +\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\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\x32\x2e\x34\x30\x30\x30\x30\x30\x31\x3b\ +\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\ +\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\ +\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\ +\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\ +\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ +\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x35\x39\x35\x2e\x37\ +\x35\x32\x39\x33\x2c\x35\x39\x2e\x34\x37\x34\x35\x39\x39\x20\x63\ +\x20\x38\x2e\x36\x30\x35\x31\x34\x2c\x2d\x36\x2e\x39\x35\x35\x36\ +\x32\x37\x20\x31\x37\x2e\x32\x31\x30\x32\x38\x2c\x2d\x31\x33\x2e\ +\x39\x31\x31\x32\x35\x33\x20\x32\x35\x2e\x38\x31\x35\x34\x32\x2c\ +\x2d\x32\x30\x2e\x38\x36\x36\x38\x38\x20\x2d\x35\x2e\x34\x31\x36\ +\x36\x31\x2c\x2d\x32\x2e\x36\x37\x30\x32\x39\x36\x20\x2d\x31\x30\ +\x2e\x38\x33\x33\x32\x33\x2c\x2d\x35\x2e\x33\x34\x30\x35\x39\x31\ +\x20\x2d\x31\x36\x2e\x32\x34\x39\x38\x34\x2c\x2d\x38\x2e\x30\x31\ +\x30\x38\x38\x37\x20\x2d\x38\x2e\x36\x30\x35\x31\x34\x2c\x36\x2e\ +\x39\x35\x35\x36\x32\x37\x20\x2d\x31\x37\x2e\x32\x31\x30\x32\x39\ +\x2c\x31\x33\x2e\x39\x31\x31\x32\x35\x33\x20\x2d\x32\x35\x2e\x38\ +\x31\x35\x34\x33\x2c\x32\x30\x2e\x38\x36\x36\x38\x38\x20\x35\x2e\ +\x34\x31\x36\x36\x31\x2c\x32\x2e\x36\x37\x30\x32\x39\x36\x20\x31\ +\x30\x2e\x38\x33\x33\x32\x34\x2c\x35\x2e\x33\x34\x30\x35\x39\x31\ +\x20\x31\x36\x2e\x32\x34\x39\x38\x35\x2c\x38\x2e\x30\x31\x30\x38\ +\x38\x37\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x72\x65\x63\x74\x33\x34\x33\x36\x2d\x39\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\x72\ +\x65\x63\x74\x33\x34\x33\x34\x2d\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x36\x31\x32\x2e\x31\x38\x34\ +\x35\x39\x2c\x36\x37\x2e\x36\x34\x33\x33\x37\x34\x20\x32\x35\x2e\ +\x38\x31\x35\x34\x32\x2c\x2d\x32\x30\x2e\x38\x36\x36\x38\x38\x20\ +\x2d\x31\x36\x2e\x32\x34\x39\x38\x34\x2c\x2d\x38\x2e\x30\x31\x30\ +\x38\x38\x37\x20\x2d\x32\x35\x2e\x38\x31\x35\x34\x32\x2c\x32\x30\ +\x2e\x38\x36\x36\x38\x38\x20\x31\x36\x2e\x32\x34\x39\x38\x34\x2c\ +\x38\x2e\x30\x31\x30\x38\x38\x37\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\x32\x2e\x34\x30\x30\x30\ +\x30\x30\x31\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\x74\x79\x6c\x65\x3d\x22\ +\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\ +\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x39\x33\x34\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\x32\x2e\x34\x30\x30\x30\x30\ +\x30\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\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\x64\x3d\x22\x6d\x20\x35\x39\x35\x2e\x37\x35\x32\x39\x32\ +\x2c\x35\x33\x2e\x34\x37\x34\x35\x39\x38\x20\x63\x20\x38\x2e\x36\ +\x30\x35\x31\x34\x2c\x2d\x36\x2e\x39\x35\x35\x36\x32\x37\x20\x31\ +\x37\x2e\x32\x31\x30\x32\x38\x2c\x2d\x31\x33\x2e\x39\x31\x31\x32\ +\x35\x33\x20\x32\x35\x2e\x38\x31\x35\x34\x32\x2c\x2d\x32\x30\x2e\ +\x38\x36\x36\x38\x38\x20\x2d\x35\x2e\x34\x31\x36\x36\x31\x2c\x2d\ +\x32\x2e\x36\x37\x30\x32\x39\x36\x20\x2d\x31\x30\x2e\x38\x33\x33\ +\x32\x33\x2c\x2d\x35\x2e\x33\x34\x30\x35\x39\x31\x20\x2d\x31\x36\ +\x2e\x32\x34\x39\x38\x34\x2c\x2d\x38\x2e\x30\x31\x30\x38\x38\x37\ +\x20\x2d\x38\x2e\x36\x30\x35\x31\x34\x2c\x36\x2e\x39\x35\x35\x36\ +\x32\x37\x20\x2d\x31\x37\x2e\x32\x31\x30\x32\x38\x2c\x31\x33\x2e\ +\x39\x31\x31\x32\x35\x33\x20\x2d\x32\x35\x2e\x38\x31\x35\x34\x32\ +\x2c\x32\x30\x2e\x38\x36\x36\x38\x38\x20\x35\x2e\x34\x31\x36\x36\ +\x31\x2c\x32\x2e\x36\x37\x30\x32\x39\x36\x20\x31\x30\x2e\x38\x33\ +\x33\x32\x33\x2c\x35\x2e\x33\x34\x30\x35\x39\x31\x20\x31\x36\x2e\ +\x32\x34\x39\x38\x34\x2c\x38\x2e\x30\x31\x30\x38\x38\x37\x20\x7a\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\ +\x65\x63\x74\x33\x34\x33\x36\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\x72\x65\x63\x74\x33\x34\x33\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\ +\x20\x35\x39\x35\x2e\x37\x32\x33\x35\x38\x2c\x32\x34\x2e\x34\x34\ +\x33\x31\x33\x31\x20\x63\x20\x38\x2e\x35\x38\x36\x39\x35\x2c\x2d\ +\x36\x2e\x30\x38\x35\x39\x30\x36\x20\x31\x37\x2e\x34\x36\x37\x31\ +\x39\x2c\x2d\x31\x32\x2e\x37\x35\x38\x33\x37\x36\x20\x32\x36\x2e\ +\x35\x32\x39\x37\x33\x2c\x2d\x31\x39\x2e\x37\x39\x35\x34\x35\x39\ +\x20\x6c\x20\x2d\x30\x2e\x35\x34\x33\x36\x37\x2c\x33\x35\x2e\x39\ +\x32\x32\x31\x36\x38\x20\x2d\x32\x35\x2e\x38\x31\x35\x34\x32\x2c\ +\x32\x30\x2e\x38\x36\x36\x38\x38\x36\x20\x2d\x30\x2e\x31\x37\x30\ +\x36\x34\x2c\x2d\x33\x36\x2e\x39\x39\x33\x35\x39\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\x75\x72\x6c\x28\x23\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x33\x39\x34\x32\x29\x3b\x66\x69\x6c\ +\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\ +\x2d\x72\x75\x6c\x65\x3a\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\x32\x2e\x34\x30\x30\x30\ +\x30\x30\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\x72\x6f\x75\x6e\x64\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ +\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ +\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\ +\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\ +\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\ +\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\ +\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\ +\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\ +\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\ +\x79\x70\x65\x73\x3d\x22\x63\x63\x63\x63\x63\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x34\ +\x33\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ +\x4d\x20\x36\x31\x32\x2e\x31\x38\x34\x35\x38\x2c\x36\x31\x2e\x36\ +\x34\x33\x33\x37\x33\x20\x36\x33\x38\x2c\x34\x30\x2e\x37\x37\x36\ +\x34\x39\x33\x20\x6c\x20\x2d\x31\x36\x2e\x32\x34\x39\x38\x34\x2c\ +\x2d\x38\x2e\x30\x31\x30\x38\x38\x37\x20\x2d\x32\x35\x2e\x38\x31\ +\x35\x34\x32\x2c\x32\x30\x2e\x38\x36\x36\x38\x38\x20\x31\x36\x2e\ +\x32\x34\x39\x38\x34\x2c\x38\x2e\x30\x31\x30\x38\x38\x37\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\x75\x72\x6c\x28\x23\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x36\x35\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\x32\x2e\x34\x30\x30\ +\x30\x30\x30\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\x72\x6f\x75\x6e\x64\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ +\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ +\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\ +\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\ +\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\ +\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\ +\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\ +\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\ +\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x34\x33\x37\x34\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x36\ +\x30\x35\x2e\x31\x37\x35\x33\x32\x2c\x33\x37\x2e\x30\x38\x34\x32\ +\x37\x39\x20\x2d\x30\x2e\x31\x32\x36\x36\x37\x2c\x2d\x39\x2e\x35\ +\x33\x30\x30\x37\x31\x20\x31\x30\x2e\x32\x33\x31\x2c\x2d\x37\x2e\ +\x36\x33\x37\x36\x39\x35\x20\x63\x20\x2d\x30\x2e\x30\x31\x32\x39\ +\x2c\x36\x2e\x30\x39\x34\x32\x35\x39\x20\x30\x2e\x30\x37\x39\x39\ +\x2c\x36\x2e\x31\x37\x37\x34\x32\x32\x20\x30\x2e\x31\x31\x39\x38\ +\x36\x2c\x39\x2e\x32\x36\x36\x31\x33\x33\x20\x6c\x20\x2d\x31\x30\ +\x2e\x32\x32\x34\x31\x39\x2c\x37\x2e\x39\x30\x31\x36\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\x23\x66\x66\x66\x66\x66\x66\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\x32\x2e\x31\x30\x36\ +\x38\x37\x33\x39\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ +\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ +\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\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\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\x1c\xb5\ +\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\x38\x38\ +\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\x61\x70\x70\ +\x6c\x79\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\ +\x39\x30\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\x35\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ +\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\ +\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\ +\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2e\ +\x30\x30\x38\x33\x35\x39\x38\x2c\x30\x2c\x30\x2c\x30\x2e\x37\x31\ +\x32\x36\x36\x34\x2c\x2d\x32\x39\x2e\x36\x30\x31\x31\x38\x31\x2c\ +\x33\x39\x38\x2e\x32\x35\x34\x37\x37\x29\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x31\x3d\x22\x32\x33\x39\x32\x2e\x32\x33\x31\x33\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x31\x31\x36\ +\x32\x2e\x32\x39\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x32\x3d\x22\x32\x36\x33\x38\x2e\x39\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x79\x32\x3d\x22\x31\x31\x36\x32\x2e\x32\x39\x34\x33\ +\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\x39\x36\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\x32\x35\x2e\x30\x30\x34\x31\x39\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x79\x3d\x22\x32\x2e\x38\x33\x33\x30\x38\x33\x39\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\x39\x33\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\x36\x31\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\x35\x38\x37\x35\x35\x31\ +\x2c\x30\x2c\x30\x2c\x30\x2e\x31\x35\x38\x37\x35\x35\x31\x2c\x2d\ +\x33\x36\x30\x2e\x36\x30\x31\x36\x36\x2c\x2d\x31\x35\x34\x2e\x31\ +\x33\x31\x31\x34\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\x72\x65\x63\x74\x32\x33\x39\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x33\x31\x37\x2e\x39\x31\ +\x35\x32\x2c\x31\x30\x32\x31\x2e\x33\x33\x30\x34\x20\x4c\x20\x32\ +\x33\x31\x37\x2e\x39\x31\x35\x32\x2c\x31\x33\x35\x33\x2e\x36\x37\ +\x34\x31\x20\x4c\x20\x32\x34\x34\x33\x2e\x31\x33\x33\x39\x2c\x31\ +\x33\x35\x33\x2e\x36\x37\x34\x31\x20\x4c\x20\x32\x34\x34\x33\x2e\ +\x31\x33\x33\x39\x2c\x31\x32\x38\x32\x2e\x39\x38\x36\x37\x20\x4c\ +\x20\x32\x35\x32\x34\x2e\x32\x39\x30\x32\x2c\x31\x32\x38\x32\x2e\ +\x39\x38\x36\x37\x20\x4c\x20\x32\x35\x32\x34\x2e\x32\x39\x30\x32\ +\x2c\x31\x33\x33\x35\x2e\x30\x34\x39\x31\x20\x4c\x20\x32\x35\x39\ +\x39\x2e\x37\x35\x38\x39\x2c\x31\x32\x35\x32\x2e\x34\x32\x34\x31\ +\x20\x4c\x20\x32\x35\x32\x34\x2e\x32\x39\x30\x32\x2c\x31\x31\x36\ +\x39\x2e\x38\x33\x30\x34\x20\x4c\x20\x32\x35\x32\x34\x2e\x32\x39\ +\x30\x32\x2c\x31\x32\x32\x32\x2e\x34\x35\x35\x34\x20\x4c\x20\x32\ +\x34\x34\x33\x2e\x31\x33\x33\x39\x2c\x31\x32\x32\x32\x2e\x34\x35\ +\x35\x34\x20\x4c\x20\x32\x34\x34\x33\x2e\x31\x33\x33\x39\x2c\x31\ +\x30\x32\x31\x2e\x33\x33\x30\x34\x20\x4c\x20\x32\x33\x31\x37\x2e\ +\x39\x31\x35\x32\x2c\x31\x30\x32\x31\x2e\x33\x33\x30\x34\x20\x7a\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x66\x69\x6c\x6c\x3a\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\x33\x2e\x31\x31\x30\x36\x35\x34\x38\x33\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\ +\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ +\x6e\x3a\x6d\x69\x74\x65\x72\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\ +\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\ +\x70\x69\x3d\x22\x34\x2e\x31\x36\x38\x33\x38\x39\x38\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x34\x2e\ +\x31\x36\x38\x33\x38\x39\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\ +\x74\x2d\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x2f\x68\x6f\x6d\ +\x65\x2f\x79\x6f\x72\x69\x6b\x2f\x44\x6f\x63\x75\x6d\x65\x6e\x74\ +\x73\x2f\x4c\x61\x62\x2f\x44\x72\x61\x66\x74\x2f\x69\x63\x6f\x6e\ +\x73\x2f\x63\x68\x61\x6e\x67\x65\x70\x72\x6f\x70\x2e\x70\x6e\x67\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x39\x39\ +\x35\x2e\x34\x37\x34\x36\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x78\x3d\x22\x32\x33\x34\x33\x2e\x31\x31\x32\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\ +\x22\x33\x33\x32\x2e\x33\x34\x36\x34\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x32\x35\x2e\ +\x32\x30\x33\x36\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x33\x36\x34\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ +\x6c\x6c\x3a\x23\x66\x66\x66\x66\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\x33\x2e\x31\x31\x30\x36\x35\ +\x34\x38\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ +\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\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\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\ +\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x34\x2e\x31\x36\x38\x33\ +\x38\x39\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\ +\x70\x69\x3d\x22\x34\x2e\x31\x36\x38\x33\x38\x39\x38\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x65\x78\x70\x6f\x72\x74\x2d\x66\x69\x6c\x65\x6e\x61\x6d\x65\ +\x3d\x22\x2f\x68\x6f\x6d\x65\x2f\x79\x6f\x72\x69\x6b\x2f\x44\x6f\ +\x63\x75\x6d\x65\x6e\x74\x73\x2f\x4c\x61\x62\x2f\x44\x72\x61\x66\ +\x74\x2f\x69\x63\x6f\x6e\x73\x2f\x63\x68\x61\x6e\x67\x65\x70\x72\ +\x6f\x70\x2e\x70\x6e\x67\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x79\x3d\x22\x31\x30\x31\x30\x2e\x39\x33\x33\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x32\x33\x35\x37\x2e\ +\x31\x34\x32\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x68\ +\x65\x69\x67\x68\x74\x3d\x22\x36\x38\x2e\x35\x37\x31\x34\x32\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\ +\x3d\x22\x39\x35\x2e\x37\x31\x34\x32\x37\x39\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x33\ +\x33\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\x66\x30\x30\x30\x30\ +\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\ +\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x32\x2e\x36\x30\ +\x30\x30\x30\x30\x33\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\x72\x65\x63\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x34\x2e\x31\ +\x36\x38\x33\x38\x39\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ +\x2d\x78\x64\x70\x69\x3d\x22\x34\x2e\x31\x36\x38\x33\x38\x39\x38\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x66\x69\x6c\x65\x6e\ +\x61\x6d\x65\x3d\x22\x2f\x68\x6f\x6d\x65\x2f\x79\x6f\x72\x69\x6b\ +\x2f\x44\x6f\x63\x75\x6d\x65\x6e\x74\x73\x2f\x4c\x61\x62\x2f\x44\ +\x72\x61\x66\x74\x2f\x69\x63\x6f\x6e\x73\x2f\x63\x68\x61\x6e\x67\ +\x65\x70\x72\x6f\x70\x2e\x70\x6e\x67\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x79\x3d\x22\x31\x30\x38\x36\x2e\x39\x33\x33\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x32\x33\ +\x35\x37\x2e\x31\x34\x32\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x38\x2e\x35\x37\x31\ +\x34\x32\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\ +\x64\x74\x68\x3d\x22\x39\x35\x2e\x37\x31\x34\x32\x37\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\ +\x74\x33\x33\x33\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\x66\x66\ +\x66\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\ +\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x32\ +\x2e\x36\x30\x30\x30\x30\x30\x33\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\x72\x65\x63\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\ +\x34\x2e\x31\x36\x38\x33\x38\x39\x38\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\ +\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x34\x2e\x31\x36\x38\x33\ +\x38\x39\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x66\x69\ +\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x2f\x68\x6f\x6d\x65\x2f\x79\x6f\ +\x72\x69\x6b\x2f\x44\x6f\x63\x75\x6d\x65\x6e\x74\x73\x2f\x4c\x61\ +\x62\x2f\x44\x72\x61\x66\x74\x2f\x69\x63\x6f\x6e\x73\x2f\x63\x68\ +\x61\x6e\x67\x65\x70\x72\x6f\x70\x2e\x70\x6e\x67\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x31\x36\x34\x2e\x39\ +\x33\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\ +\x22\x32\x33\x35\x37\x2e\x31\x34\x32\x38\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x38\x2e\ +\x35\x37\x31\x34\x32\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x77\x69\x64\x74\x68\x3d\x22\x39\x35\x2e\x37\x31\x34\x32\x37\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x72\x65\x63\x74\x33\x33\x33\x39\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\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\x6e\ +\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ +\x3a\x31\x32\x2e\x36\x30\x30\x30\x30\x30\x33\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\x72\ +\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\ +\x69\x3d\x22\x34\x2e\x31\x36\x38\x33\x38\x39\x38\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x34\x2e\x31\ +\x36\x38\x33\x38\x39\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ +\x2d\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x2f\x68\x6f\x6d\x65\ +\x2f\x79\x6f\x72\x69\x6b\x2f\x44\x6f\x63\x75\x6d\x65\x6e\x74\x73\ +\x2f\x4c\x61\x62\x2f\x44\x72\x61\x66\x74\x2f\x69\x63\x6f\x6e\x73\ +\x2f\x63\x68\x61\x6e\x67\x65\x70\x72\x6f\x70\x2e\x70\x6e\x67\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x32\x34\ +\x32\x2e\x39\x33\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x78\x3d\x22\x32\x33\x35\x37\x2e\x31\x34\x32\x38\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x36\x38\x2e\x35\x37\x31\x34\x32\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x39\x35\x2e\x37\x31\ +\x34\x32\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x72\x65\x63\x74\x33\x33\x34\x31\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\x66\x66\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ +\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\ +\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ +\x64\x74\x68\x3a\x31\x32\x2e\x36\x30\x30\x30\x30\x30\x33\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\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ +\x79\x64\x70\x69\x3d\x22\x34\x2e\x31\x36\x38\x33\x38\x39\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\ +\x34\x2e\x31\x36\x38\x33\x38\x39\x38\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\ +\x6f\x72\x74\x2d\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x2f\x68\ +\x6f\x6d\x65\x2f\x79\x6f\x72\x69\x6b\x2f\x44\x6f\x63\x75\x6d\x65\ +\x6e\x74\x73\x2f\x4c\x61\x62\x2f\x44\x72\x61\x66\x74\x2f\x69\x63\ +\x6f\x6e\x73\x2f\x63\x68\x61\x6e\x67\x65\x70\x72\x6f\x70\x2e\x70\ +\x6e\x67\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\ +\x22\x63\x63\x63\x63\x63\x63\x63\x63\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x33\x34\x33\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\ +\x32\x35\x34\x39\x2e\x34\x38\x34\x34\x2c\x31\x31\x34\x33\x2e\x39\ +\x36\x37\x37\x20\x4c\x20\x32\x35\x34\x39\x2e\x34\x38\x34\x34\x2c\ +\x31\x31\x39\x36\x2e\x35\x39\x37\x20\x4c\x20\x32\x33\x38\x39\x2e\ +\x31\x30\x31\x38\x2c\x31\x31\x39\x36\x2e\x35\x39\x37\x20\x4c\x20\ +\x32\x33\x38\x39\x2e\x31\x30\x31\x38\x2c\x31\x32\x35\x37\x2e\x31\ +\x33\x30\x38\x20\x4c\x20\x32\x35\x34\x39\x2e\x34\x38\x34\x34\x2c\ +\x31\x32\x35\x37\x2e\x31\x33\x30\x38\x20\x4c\x20\x32\x35\x34\x39\ +\x2e\x34\x38\x34\x34\x2c\x31\x33\x30\x39\x2e\x31\x39\x32\x34\x20\ +\x4c\x20\x32\x36\x32\x34\x2e\x39\x33\x36\x37\x2c\x31\x32\x32\x36\ +\x2e\x35\x38\x20\x4c\x20\x32\x35\x34\x39\x2e\x34\x38\x34\x34\x2c\ +\x31\x31\x34\x33\x2e\x39\x36\x37\x37\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\x35\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\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\x35\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\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x70\x78\ +\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x70\ +\x78\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x36\x31\ +\x32\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\ +\x2e\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x34\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\x44\x72\x61\x66\x74\ +\x5f\x41\x64\x64\x54\x6f\x47\x72\x6f\x75\x70\x2e\x73\x76\x67\x22\ +\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x64\x65\x66\x73\x33\x36\x31\x34\x22\x3e\x0a\x20\x20\ +\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ +\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\ +\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x36\x34\x20\x3a\ +\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\ +\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x33\x32\x20\x3a\x20\x32\x31\ +\x2e\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\ +\x69\x76\x65\x33\x36\x32\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\ +\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x35\x38\x38\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\ +\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\ +\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\ +\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\ +\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\ +\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ +\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x36\x39\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\ +\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\ +\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\ +\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\ +\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x2d\ +\x36\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x33\x31\x34\x36\x2d\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ +\x33\x31\x34\x38\x2d\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x37\x30\x31\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x30\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\ +\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x73\x74\x6f\x70\x33\x37\x30\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\ +\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\ +\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x31\x34\x34\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x33\x36\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ +\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\ +\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ +\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\ +\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\ +\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\ +\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\ +\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\ +\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x30\x38\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ +\x33\x37\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x31\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\ +\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\ +\x69\x76\x65\x33\x38\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\ +\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\ +\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\ +\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\ +\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\ +\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x33\x38\x36\x34\x2d\x30\x2d\x30\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x36\x2d\x35\x2d\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ +\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x38\x2d\ +\x37\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x33\x37\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x33\x33\x37\x39\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x61\ +\x61\x30\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x73\x74\x6f\x70\x33\x33\x38\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x61\x66\x66\x32\ +\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\ +\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x2d\x30\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\ +\x38\x36\x36\x2d\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\ +\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\ +\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\ +\x38\x36\x38\x2d\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\ +\x63\x6f\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\ +\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\ +\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\ +\x73\x70\x65\x63\x74\x69\x76\x65\x33\x39\x30\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ +\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\ +\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\ +\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\ +\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\ +\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\ +\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\ +\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\ +\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x35\x30\x34\x38\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x62\x6c\x61\x63\x6b\x3b\x73\x74\x6f\x70\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ +\x35\x30\x35\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x73\x74\x6f\x70\x35\x30\x35\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x35\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\x6c\x61\ +\x63\x6b\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\x6c\ +\x61\x63\x6b\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x30\x35\x32\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x38\x34\x31\x2d\x30\x2d\x33\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\ +\x34\x33\x2d\x31\x2d\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ +\x33\x38\x34\x35\x2d\x30\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\ +\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\ +\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\ +\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\ +\x31\x31\x34\x2e\x35\x36\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x66\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x35\x2e\x32\x35\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x31\x31\x34\x2e\ +\x35\x36\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\ +\x22\x32\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x61\x69\x67\x72\x64\x32\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\ +\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x46\x30\x46\x30\x46\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x36\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x39\ +\x61\x39\x61\x39\x61\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x2f\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ +\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x34\x2e\x35\x36\x37\x39\ +\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\ +\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x72\x3d\x22\x35\x2e\x32\x35\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x63\x79\x3d\x22\x36\x34\x2e\x35\x36\x37\x39\x30\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x30\x2e\x38\ +\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x61\x69\x67\x72\x64\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x37\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x46\x30\x46\x30\x46\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x37\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x39\x61\x39\x61\x39\x61\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\ +\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\ +\x30\x30\x30\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\ +\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\ +\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x31\x35\x36\x36\ +\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\ +\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\ +\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x36\x36\x34\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x38\x66\x38\x66\ +\x38\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\ +\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x36\x36\x36\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\ +\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x72\x3d\x22\x38\x36\x2e\x37\x30\x38\x34\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x33\x35\x2e\x37\x33\ +\x36\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\ +\x22\x33\x33\x2e\x39\x36\x36\x36\x37\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x63\x79\x3d\x22\x33\x35\x2e\x37\x33\x36\x39\x31\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x33\x33\x2e\ +\x39\x36\x36\x36\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x36\x30\x34\x39\ +\x32\x39\x37\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x34\x31\x31\x33\x32\ +\x2c\x2d\x35\x32\x2e\x31\x34\x34\x32\x34\x39\x2c\x2d\x37\x30\x32\ +\x2e\x33\x33\x31\x35\x38\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\ +\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x34\x35\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\ +\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x32\x35\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\ +\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x32\x35\x39\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x66\x61\x66\x61\x66\x61\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\ +\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x32\x36\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ +\x23\x62\x62\x62\x62\x62\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ +\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\x36\ +\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\ +\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x37\x2e\x37\x35\x31\ +\x37\x31\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\ +\x33\x2e\x37\x35\x36\x31\x32\x38\x35\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x66\x78\x3d\x22\x38\x2e\x38\x32\x34\x34\x31\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x33\x2e\x37\x35\x36\ +\x31\x32\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\ +\x22\x38\x2e\x38\x32\x34\x34\x31\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\ +\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x36\ +\x38\x32\x37\x32\x39\x37\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x33\x32\ +\x37\x36\x37\x2c\x2d\x34\x38\x2e\x37\x39\x30\x36\x39\x39\x2c\x2d\ +\x37\x30\x31\x2e\x36\x38\x35\x31\x33\x29\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\ +\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\ +\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x34\x35\x34\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\ +\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x32\x36\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\ +\x22\x61\x6c\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x36\x39\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\ +\x63\x6f\x6c\x6f\x72\x3a\x23\x61\x33\x61\x33\x61\x33\x3b\x73\x74\ +\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\ +\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x73\x74\x6f\x70\x32\x37\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x34\x63\x34\x63\x34\x63\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\ +\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x32\x37\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\ +\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\ +\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x34\ +\x39\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\ +\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\ +\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\ +\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\ +\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\ +\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x30\x39\ +\x35\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x35\x62\ +\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x30\x39\x37\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x63\x31\x65\x33\x66\x37\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x34\x30\x39\x39\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\ +\x65\x63\x74\x69\x76\x65\x35\x30\x32\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ +\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\ +\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\ +\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\ +\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\ +\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\ +\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ +\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\ +\x70\x65\x63\x74\x69\x76\x65\x35\x30\x37\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\ +\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\ +\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\ +\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\ +\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\ +\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\ +\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ +\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\ +\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\ +\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\ +\x32\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\ +\x35\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x33\ +\x39\x34\x2e\x31\x35\x37\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x79\x31\x3d\x22\x31\x38\x35\x2e\x31\x33\x30\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x34\x33\x34\x2e\x37\x33\ +\x39\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\ +\x31\x34\x30\x2e\x32\x32\x37\x33\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\ +\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ +\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ +\x78\x28\x30\x2e\x39\x34\x32\x33\x31\x38\x32\x36\x2c\x30\x2c\x30\ +\x2c\x30\x2e\x39\x34\x32\x33\x31\x38\x32\x36\x2c\x32\x33\x2e\x37\ +\x32\x37\x35\x34\x39\x2c\x38\x2e\x38\x32\x36\x32\x35\x33\x36\x29\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x34\x32\x34\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ +\x23\x32\x65\x38\x32\x30\x37\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x32\ +\x34\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x35\ +\x32\x66\x66\x30\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x32\x35\x31\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\ +\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x35\x31\x34\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\ +\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\ +\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\ +\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\ +\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\ +\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\ +\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x35\x32\x32\x35\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\ +\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\ +\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\ +\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\ +\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\ +\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\ +\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x33\x31\x34\x34\x2d\x38\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x34\x33\x31\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\ +\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ +\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ +\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\ +\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\ +\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\ +\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\ +\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ +\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\ +\x34\x2d\x38\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x33\x31\x34\x36\x2d\x39\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x33\x31\x34\x38\x2d\x34\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\ +\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\ +\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\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\x37\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\ +\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\ +\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ +\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ +\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\ +\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\ +\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\ +\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\ +\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\ +\x3e\x3c\x2f\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\ +\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\ +\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\ +\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\ +\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\ +\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x74\x72\x61\x6e\x73\x6c\x61\ +\x74\x65\x28\x2d\x31\x32\x37\x2e\x34\x34\x34\x33\x39\x2c\x2d\x31\ +\x32\x38\x2e\x32\x32\x30\x31\x36\x29\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x67\x35\x31\x39\x39\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x34\x33\x34\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\ +\x36\x30\x2e\x36\x34\x37\x39\x34\x2c\x31\x37\x33\x2e\x31\x38\x37\ +\x37\x32\x20\x61\x20\x37\x2e\x32\x38\x31\x38\x36\x38\x31\x2c\x37\ +\x2e\x32\x38\x31\x38\x36\x38\x31\x20\x30\x20\x30\x20\x30\x20\x2d\ +\x35\x2e\x30\x39\x33\x37\x35\x2c\x32\x2e\x35\x33\x31\x32\x35\x20\ +\x37\x2e\x32\x38\x31\x38\x36\x38\x31\x2c\x37\x2e\x32\x38\x31\x38\ +\x36\x38\x31\x20\x30\x20\x30\x20\x30\x20\x2d\x31\x2e\x35\x33\x31\ +\x32\x35\x2c\x32\x2e\x39\x33\x37\x35\x20\x6c\x20\x2d\x32\x30\x2e\ +\x38\x31\x32\x35\x2c\x2d\x30\x2e\x30\x33\x31\x32\x20\x2d\x30\x2e\ +\x30\x33\x31\x32\x2c\x34\x2e\x35\x20\x32\x31\x2e\x31\x38\x37\x35\ +\x2c\x30\x2e\x30\x36\x32\x35\x20\x61\x20\x37\x2e\x32\x38\x31\x38\ +\x36\x38\x31\x2c\x37\x2e\x32\x38\x31\x38\x36\x38\x31\x20\x30\x20\ +\x30\x20\x30\x20\x31\x32\x2e\x32\x35\x2c\x32\x20\x37\x2e\x32\x38\ +\x31\x38\x36\x38\x31\x2c\x37\x2e\x32\x38\x31\x38\x36\x38\x31\x20\ +\x30\x20\x30\x20\x30\x20\x31\x2e\x32\x31\x38\x37\x35\x2c\x2d\x32\ +\x20\x6c\x20\x32\x31\x2e\x31\x35\x36\x32\x35\x2c\x30\x2e\x30\x36\ +\x32\x35\x20\x30\x2c\x2d\x34\x2e\x35\x20\x2d\x32\x30\x2e\x38\x34\ +\x33\x37\x35\x2c\x2d\x30\x2e\x30\x33\x31\x32\x20\x61\x20\x37\x2e\ +\x32\x38\x31\x38\x36\x38\x31\x2c\x37\x2e\x32\x38\x31\x38\x36\x38\ +\x31\x20\x30\x20\x30\x20\x30\x20\x2d\x37\x2e\x35\x2c\x2d\x35\x2e\ +\x35\x33\x31\x32\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\x30\x2e\x34\x35\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\ +\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\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\x30\x2e\x38\ +\x36\x39\x35\x34\x31\x30\x35\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\x74\x79\ +\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\ +\x30\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x34\x38\x66\x66\x3b\x66\ +\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\ +\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\ +\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\ +\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ +\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ +\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ +\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\ +\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\ +\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\ +\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\ +\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\ +\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\ +\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\ +\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ +\x6d\x20\x31\x35\x35\x2e\x34\x36\x38\x37\x35\x2c\x31\x33\x38\x2e\ +\x30\x39\x33\x37\x35\x20\x30\x2c\x38\x2e\x32\x31\x38\x37\x35\x20\ +\x2d\x38\x2e\x31\x38\x37\x35\x2c\x30\x20\x30\x2c\x37\x2e\x30\x36\ +\x32\x35\x20\x38\x2e\x31\x38\x37\x35\x2c\x30\x20\x30\x2c\x38\x2e\ +\x32\x31\x38\x37\x35\x20\x37\x2e\x30\x39\x33\x37\x35\x2c\x30\x20\ +\x30\x2c\x2d\x38\x2e\x32\x31\x38\x37\x35\x20\x38\x2e\x32\x31\x38\ +\x37\x35\x2c\x30\x20\x30\x2c\x2d\x37\x2e\x30\x36\x32\x35\x20\x2d\ +\x38\x2e\x32\x31\x38\x37\x35\x2c\x30\x20\x30\x2c\x2d\x38\x2e\x32\ +\x31\x38\x37\x35\x20\x2d\x37\x2e\x30\x39\x33\x37\x35\x2c\x30\x20\ +\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x72\x65\x63\x74\x33\x35\x35\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x34\x2e\x34\x39\x37\x36\x33\ +\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\ +\x67\x68\x74\x3d\x22\x35\x35\x2e\x37\x39\x36\x31\x39\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x37\x33\x2e\ +\x37\x35\x37\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x79\x3d\x22\x2d\x31\x38\x37\x2e\x33\x33\x37\x38\x38\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\ +\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\x2e\x30\x30\x32\ +\x39\x37\x36\x38\x34\x2c\x30\x2e\x39\x39\x39\x39\x39\x35\x35\x37\ +\x2c\x2d\x30\x2e\x39\x39\x39\x39\x39\x37\x32\x36\x2c\x2d\x30\x2e\ +\x30\x30\x32\x33\x34\x30\x34\x34\x2c\x30\x2c\x30\x29\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\ +\x34\x32\x34\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\x66\x66\x66\ +\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\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\x2e\x35\x30\x30\x30\x30\x30\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\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ +\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\ +\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\ +\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\ +\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\ +\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\ +\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ +\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ +\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x39\x39\x38\x38\x32\ +\x32\x38\x2c\x30\x2e\x30\x31\x35\x33\x34\x33\x35\x37\x2c\x2d\x30\ +\x2e\x30\x31\x35\x33\x34\x33\x35\x37\x2c\x30\x2e\x39\x39\x39\x38\ +\x38\x32\x32\x38\x2c\x32\x33\x2e\x37\x32\x30\x37\x31\x31\x2c\x2d\ +\x35\x31\x2e\x35\x38\x30\x31\x36\x33\x29\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x34\x33\x31\x32\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x34\x32\x34\x38\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\ +\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\ +\x30\x2e\x31\x31\x35\x33\x35\x34\x34\x2c\x2d\x30\x2e\x30\x39\x35\ +\x37\x35\x38\x30\x39\x2c\x30\x2e\x30\x39\x35\x37\x35\x38\x30\x39\ +\x2c\x2d\x30\x2e\x31\x31\x35\x33\x35\x34\x34\x2c\x39\x38\x2e\x36\ +\x36\x37\x37\x37\x37\x2c\x33\x31\x39\x2e\x38\x33\x36\x38\x37\x29\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\ +\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x34\ +\x38\x66\x66\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\x35\ +\x2e\x38\x30\x30\x30\x30\x30\x31\x39\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ +\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x34\x32\x35\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ +\x22\x6d\x20\x32\x34\x35\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\ +\x2e\x32\x31\x39\x33\x20\x61\x20\x34\x38\x2e\x35\x37\x31\x34\x33\ +\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\ +\x2d\x39\x37\x2e\x31\x34\x32\x38\x36\x2c\x30\x20\x34\x38\x2e\x35\ +\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\ +\x31\x20\x31\x20\x39\x37\x2e\x31\x34\x32\x38\x36\x2c\x30\x20\x7a\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\ +\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x34\x33\x31\x37\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x70\x61\x74\x68\x34\x32\x35\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\ +\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x38\ +\x35\x31\x33\x30\x32\x33\x2c\x2d\x30\x2e\x35\x32\x34\x36\x37\x35\ +\x34\x2c\x30\x2e\x35\x32\x34\x36\x37\x35\x34\x2c\x30\x2e\x38\x35\ +\x31\x33\x30\x32\x33\x2c\x2d\x33\x33\x38\x2e\x36\x39\x36\x39\x32\ +\x2c\x32\x31\x34\x2e\x31\x39\x33\x32\x38\x29\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\ +\x35\x39\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\ +\x33\x36\x20\x61\x20\x33\x34\x2e\x33\x34\x35\x31\x39\x2c\x32\x33\ +\x2e\x39\x39\x31\x31\x32\x34\x20\x30\x20\x31\x20\x31\x20\x2d\x36\ +\x38\x2e\x36\x39\x30\x33\x38\x2c\x30\x20\x33\x34\x2e\x33\x34\x35\ +\x31\x39\x2c\x32\x33\x2e\x39\x39\x31\x31\x32\x34\x20\x30\x20\x31\ +\x20\x31\x20\x36\x38\x2e\x36\x39\x30\x33\x38\x2c\x30\x20\x7a\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\ +\x3c\x2f\x67\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\ +\x67\x3e\x0a\ +\x00\x00\x35\x6d\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x70\x78\ +\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x70\ +\x78\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x36\x31\ +\x32\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\ +\x2e\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x34\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\x44\x72\x61\x66\x74\ +\x5f\x4d\x61\x63\x72\x6f\x2e\x73\x76\x67\x22\x3e\x0a\x20\x20\x3c\ +\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\ +\x66\x73\x33\x36\x31\x34\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\ +\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\ +\x22\x30\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ +\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x76\x70\x5f\x7a\x3d\x22\x36\x34\x20\x3a\x20\x33\x32\x20\x3a\ +\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\ +\x69\x6e\x3d\x22\x33\x32\x20\x3a\x20\x32\x31\x2e\x33\x33\x33\x33\ +\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x36\ +\x32\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\ +\x70\x65\x63\x74\x69\x76\x65\x33\x35\x38\x38\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\ +\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\ +\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\ +\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\ +\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\ +\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\ +\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ +\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\ +\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\ +\x73\x70\x65\x63\x74\x69\x76\x65\x33\x36\x39\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ +\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\ +\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\ +\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\ +\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\ +\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\ +\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\ +\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\ +\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x2d\x36\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x31\x34\x36\ +\x2d\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x31\x34\x38\x2d\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\ +\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x33\x37\x30\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x73\x74\x6f\x70\x33\x37\x30\x33\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ +\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\ +\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x33\x37\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ +\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\ +\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\ +\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\ +\x34\x34\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\ +\x36\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ +\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\ +\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\ +\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\ +\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\ +\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\ +\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\ +\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\ +\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x30\x38\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x31\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\ +\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x31\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ +\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\ +\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ +\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x38\ +\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\ +\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\ +\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\ +\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ +\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\ +\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\ +\x2d\x30\x2d\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x73\x74\x6f\x70\x33\x38\x36\x36\x2d\x35\x2d\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x36\ +\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x38\x2d\x37\x2d\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\ +\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\ +\x37\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x33\x33\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x61\x61\x30\x30\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ +\x33\x33\x38\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ +\x6f\x6c\x6f\x72\x3a\x23\x66\x61\x66\x66\x32\x62\x3b\x73\x74\x6f\ +\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x33\x38\x36\x34\x2d\x30\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x36\x2d\x35\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x38\x2d\x37\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\ +\x69\x76\x65\x33\x39\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\ +\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\ +\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\ +\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\ +\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\ +\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x35\x30\x34\x38\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\ +\x6c\x61\x63\x6b\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x30\x35\x30\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x35\x30\x35\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x35\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\x6c\x61\x63\x6b\x3b\x73\x74\ +\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\x6c\x61\x63\x6b\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x73\x74\x6f\x70\x35\x30\x35\x32\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x33\x38\x34\x31\x2d\x30\x2d\x33\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x34\x33\x2d\x31\x2d\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ +\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x34\x35\x2d\ +\x30\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\ +\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ +\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x31\x31\x34\x2e\x35\ +\x36\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\ +\x32\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x72\x3d\x22\x35\x2e\x32\x35\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x63\x79\x3d\x22\x31\x31\x34\x2e\x35\x36\x38\x34\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x30\x2e\x38\ +\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x61\x69\x67\x72\x64\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x36\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x46\x30\x46\x30\x46\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x36\x38\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x39\x61\x39\x61\x39\x61\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\ +\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\ +\x30\x30\x30\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\ +\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\ +\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ +\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\ +\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x66\x79\x3d\x22\x36\x34\x2e\x35\x36\x37\x39\x30\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\ +\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x35\ +\x2e\x32\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\ +\x22\x36\x34\x2e\x35\x36\x37\x39\x30\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x63\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\x30\x39\x39\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x61\x69\x67\ +\x72\x64\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x31\x35\x35\x37\x33\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ +\x6f\x6c\x6f\x72\x3a\x23\x46\x30\x46\x30\x46\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x31\x35\x35\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x39\x61\x39\x61\x39\x61\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\ +\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x61\x64\x69\x61\x6c\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x31\x35\x36\x36\x32\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\ +\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\ +\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\ +\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x73\x74\x6f\x70\x31\x35\x36\x36\x34\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ +\x6f\x6c\x6f\x72\x3a\x23\x66\x38\x66\x38\x66\x38\x3b\x73\x74\x6f\ +\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\ +\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x31\x35\x36\x36\x36\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\ +\x22\x38\x36\x2e\x37\x30\x38\x34\x35\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x66\x79\x3d\x22\x33\x35\x2e\x37\x33\x36\x39\x31\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x33\x33\x2e\x39\ +\x36\x36\x36\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\ +\x3d\x22\x33\x35\x2e\x37\x33\x36\x39\x31\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x63\x78\x3d\x22\x33\x33\x2e\x39\x36\x36\x36\x37\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ +\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ +\x72\x69\x78\x28\x30\x2e\x39\x36\x30\x34\x39\x32\x39\x37\x2c\x30\ +\x2c\x30\x2c\x31\x2e\x30\x34\x31\x31\x33\x32\x2c\x2d\x35\x32\x2e\ +\x31\x34\x34\x32\x34\x39\x2c\x2d\x37\x30\x32\x2e\x33\x33\x31\x35\ +\x38\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ +\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\ +\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x34\x34\x35\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x35\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x32\x35\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\ +\x61\x66\x61\x66\x61\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\x36\x30\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x62\x62\x62\x62\ +\x62\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\ +\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\x36\x31\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\ +\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x72\x3d\x22\x33\x37\x2e\x37\x35\x31\x37\x31\x33\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x33\x2e\x37\x35\x36\ +\x31\x32\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\ +\x22\x38\x2e\x38\x32\x34\x34\x31\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x63\x79\x3d\x22\x33\x2e\x37\x35\x36\x31\x32\x38\x35\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x38\x2e\x38\x32\ +\x34\x34\x31\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ +\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x36\x38\x32\x37\x32\x39\ +\x37\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x33\x32\x37\x36\x37\x2c\x2d\ +\x34\x38\x2e\x37\x39\x30\x36\x39\x39\x2c\x2d\x37\x30\x31\x2e\x36\ +\x38\x35\x31\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ +\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\ +\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x34\x34\x35\x34\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x36\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\ +\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x32\x36\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x61\x33\x61\x33\x61\x33\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\ +\x37\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x34\ +\x63\x34\x63\x34\x63\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\x37\x31\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\ +\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x34\x39\x34\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\ +\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\ +\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\ +\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\ +\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ +\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x30\x39\x35\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\ +\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x35\x62\x66\x66\x3b\x73\x74\ +\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x73\x74\x6f\x70\x34\x30\x39\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x63\x31\x65\x33\x66\x37\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x34\x30\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\ +\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\ +\x65\x35\x30\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\ +\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\ +\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ +\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\ +\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\ +\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\ +\x76\x65\x35\x30\x37\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\ +\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\ +\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\ +\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\ +\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\ +\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\ +\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\x34\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\x35\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x33\x39\x34\x2e\x31\x35\ +\x37\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\ +\x31\x38\x35\x2e\x31\x33\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x78\x32\x3d\x22\x34\x33\x34\x2e\x37\x33\x39\x34\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x31\x34\x30\x2e\x32\ +\x32\x37\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\ +\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\ +\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\ +\x34\x32\x33\x31\x38\x32\x36\x2c\x30\x2c\x30\x2c\x30\x2e\x39\x34\ +\x32\x33\x31\x38\x32\x36\x2c\x32\x33\x2e\x37\x32\x37\x35\x34\x39\ +\x2c\x38\x2e\x38\x32\x36\x32\x35\x33\x36\x29\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\x34\ +\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x32\x65\x38\x32\ +\x30\x37\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x32\x34\x39\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x35\x32\x66\x66\x30\x30\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x34\x32\x35\x31\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x79\x32\x3d\x22\x31\x34\x30\x2e\x32\x32\x37\x33\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x34\x33\x34\x2e\x37\ +\x33\x39\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\ +\x22\x31\x38\x35\x2e\x31\x33\x30\x34\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x78\x31\x3d\x22\x33\x39\x34\x2e\x31\x35\x37\x38\x34\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ +\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ +\x78\x28\x30\x2e\x39\x34\x32\x33\x31\x38\x32\x36\x2c\x30\x2c\x30\ +\x2c\x30\x2e\x39\x34\x32\x33\x31\x38\x32\x36\x2c\x32\x33\x2e\x37\ +\x32\x37\x35\x34\x39\x2c\x38\x2e\x38\x32\x36\x32\x35\x33\x36\x29\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ +\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\ +\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x35\x30\x38\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ +\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\x34\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\ +\x69\x76\x65\x35\x31\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\ +\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\ +\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\ +\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\ +\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\ +\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\ +\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x64\x65\x66\x73\x3e\x0a\x20\x20\ +\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\ +\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\ +\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\ +\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\ +\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\ +\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\ +\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\ +\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\ +\x22\x35\x2e\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x78\x3d\x22\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\x37\x22\ +\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\ +\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ +\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\ +\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\ +\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\ +\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ +\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\ +\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\ +\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\x3a\x74\ +\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\ +\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\ +\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\ +\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\ +\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\ +\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x67\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x3d\x22\x74\x72\x61\x6e\x73\x6c\x61\x74\x65\x28\x2d\x32\x35\x39\ +\x2e\x38\x35\x32\x30\x37\x2c\x2d\x31\x33\x32\x2e\x37\x38\x33\x34\ +\x39\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\ +\x34\x36\x37\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\ +\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x72\x65\x63\x74\x34\x32\x35\x38\x2d\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x36\x39\x2e\x36\x38\ +\x33\x30\x34\x2c\x31\x34\x31\x2e\x33\x37\x30\x35\x34\x20\x30\x2c\ +\x39\x2e\x36\x32\x35\x20\x33\x32\x2e\x31\x32\x35\x2c\x30\x20\x30\ +\x2c\x2d\x39\x2e\x36\x32\x35\x20\x2d\x33\x32\x2e\x31\x32\x35\x2c\ +\x30\x20\x7a\x20\x6d\x20\x31\x34\x2c\x31\x34\x20\x30\x2c\x39\x2e\ +\x36\x32\x35\x20\x33\x32\x2e\x31\x32\x35\x2c\x30\x20\x30\x2c\x2d\ +\x39\x2e\x36\x32\x35\x20\x2d\x33\x32\x2e\x31\x32\x35\x2c\x30\x20\ +\x7a\x20\x6d\x20\x2d\x34\x2c\x31\x34\x20\x30\x2c\x39\x2e\x36\x32\ +\x35\x20\x33\x32\x2e\x31\x32\x35\x2c\x30\x20\x30\x2c\x2d\x39\x2e\ +\x36\x32\x35\x20\x2d\x33\x32\x2e\x31\x32\x35\x2c\x30\x20\x7a\x20\ +\x6d\x20\x34\x2c\x31\x34\x20\x30\x2c\x39\x2e\x36\x32\x35\x20\x33\ +\x32\x2e\x31\x32\x35\x2c\x30\x20\x30\x2c\x2d\x39\x2e\x36\x32\x35\ +\x20\x2d\x33\x32\x2e\x31\x32\x35\x2c\x30\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\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\x32\ +\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\ +\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\ +\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\ +\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\ +\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\ +\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x37\x39\x2e\x35\x37\x31\ +\x34\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ +\x32\x38\x30\x2e\x37\x31\x34\x32\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x39\x2e\x36\x34\ +\x32\x38\x35\x37\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x77\x69\x64\x74\x68\x3d\x22\x33\x32\x2e\x31\x34\x32\x38\x35\x37\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\ +\x65\x63\x74\x34\x32\x35\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x23\x66\x66\x66\ +\x66\x66\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\ +\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\ +\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ +\x3a\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ +\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\ +\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ +\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\ +\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\ +\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\ +\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\ +\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\ +\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\ +\x75\x6d\x75\x6c\x61\x74\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x72\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x72\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x79\x3d\x22\x31\x35\x31\x2e\x35\x37\x31\x34\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x32\x38\x30\x2e\x37\ +\x31\x34\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x68\ +\x65\x69\x67\x68\x74\x3d\x22\x39\x2e\x36\x34\x32\x38\x35\x37\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\ +\x3d\x22\x33\x32\x2e\x31\x34\x32\x38\x35\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x34\x32\ +\x35\x38\x2d\x31\x2d\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\ +\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x23\x66\x66\x66\x66\ +\x66\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\ +\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\ +\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ +\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ +\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ +\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ +\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\ +\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\ +\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\ +\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\ +\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\ +\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\ +\x6d\x75\x6c\x61\x74\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x72\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x72\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x79\x3d\x22\x31\x36\x35\x2e\x35\x37\x31\x34\x34\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x32\x37\x36\x2e\x37\x31\ +\x34\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\ +\x69\x67\x68\x74\x3d\x22\x39\x2e\x36\x34\x32\x38\x35\x37\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x32\x2e\x31\x34\x32\x38\x35\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x34\x32\x35\ +\x38\x2d\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\ +\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x34\x32\x66\x66\x3b\ +\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\ +\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\ +\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ +\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ +\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ +\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\ +\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\ +\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\ +\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\ +\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\ +\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\ +\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\ +\x61\x74\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x72\ +\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\ +\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\ +\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\ +\x31\x33\x37\x2e\x35\x37\x31\x34\x34\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x78\x3d\x22\x32\x36\x36\x2e\x37\x31\x34\x32\x39\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\ +\x74\x3d\x22\x39\x2e\x36\x34\x32\x38\x35\x37\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x32\ +\x2e\x31\x34\x32\x38\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x34\x32\x35\x38\x2d\x31\ +\x2d\x37\x2d\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\ +\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x23\x66\x66\x66\x66\x66\x66\ +\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\ +\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\ +\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\ +\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ +\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ +\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\x72\x3a\ +\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\ +\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\ +\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\ +\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\ +\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\ +\x6c\x61\x74\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\ +\x3d\x22\x63\x63\x63\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x74\x72\x61\x6e\x73\ +\x6c\x61\x74\x65\x28\x30\x2c\x2d\x36\x30\x29\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x35\x30\ +\x39\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ +\x6d\x20\x32\x37\x31\x2e\x30\x37\x31\x34\x33\x2c\x32\x30\x37\x2e\ +\x34\x32\x38\x35\x37\x20\x30\x2c\x33\x37\x2e\x31\x34\x32\x38\x36\ +\x20\x39\x2e\x32\x38\x35\x37\x31\x2c\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ +\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\ +\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3a\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ +\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ +\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ +\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x74\x72\x61\ +\x6e\x73\x6c\x61\x74\x65\x28\x30\x2c\x2d\x36\x30\x29\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ +\x35\x31\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\ +\x3d\x22\x6d\x20\x32\x38\x30\x2e\x38\x39\x32\x38\x36\x2c\x32\x31\ +\x36\x2e\x37\x31\x34\x32\x39\x20\x2d\x39\x2e\x36\x34\x32\x38\x36\ +\x2c\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ +\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ +\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ +\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\ +\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ \x00\x00\x12\x15\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ @@ -25901,418 +53359,2051 @@ qt_resource_data = "\ \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\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\x05\x7b\ -\x00\ -\x00\x1a\x1b\x78\x9c\xed\x58\x6d\x6f\xdb\x36\x10\xfe\xee\x5f\xa1\ -\x29\x5f\x1a\xcc\x92\x48\xea\x5d\xb5\xdd\x0f\x0b\x3a\x14\x18\xb0\ -\x61\x6d\xb1\x8f\x05\x23\xd1\xb6\x50\x49\x34\x28\x3a\xb6\xf3\xeb\ -\x77\xd4\x0b\x2d\xc5\xf2\x56\x14\x01\x02\x04\x91\x91\x98\xe2\x3d\ -\x47\xf2\x9e\x3b\xf2\x7c\x5c\x7c\x38\x96\x85\xf1\xc0\x44\x9d\xf3\ -\x6a\x69\x62\x1b\x99\x06\xab\x52\x9e\xe5\xd5\x66\x69\x7e\xfd\xf2\ -\xd1\x8a\x4c\xa3\x96\xb4\xca\x68\xc1\x2b\xb6\x34\x2b\x6e\x7e\x58\ -\xcd\x16\xbf\x58\x96\xf1\x9b\x60\x54\xb2\xcc\x38\xe4\x72\x6b\x7c\ -\xaa\xbe\xd7\x29\xdd\x31\xe3\xdd\x56\xca\x5d\xe2\x38\x87\xc3\xc1\ -\xce\xbb\x4e\x9b\x8b\x8d\x73\x6b\x58\xd6\x6a\x36\x5b\xd4\x0f\x9b\ -\x99\x61\x18\x30\x6f\x55\x27\x59\xba\x34\x3b\x85\xdd\x5e\x14\x0d\ -\x30\x4b\x1d\x56\xb0\x92\x55\xb2\x76\xb0\x8d\x1d\xf3\x0c\x4f\xcf\ -\xf0\x54\xcd\x9e\x3f\xb0\x94\x97\x25\xaf\xea\x46\xb3\xaa\x6f\x06\ -\x60\x91\xad\x35\x5a\xad\xe6\xe0\x36\x20\x1c\xc7\xb1\x83\x88\x43\ -\x88\x05\x08\xab\x3e\x55\x92\x1e\xad\xb1\x2a\xac\x71\x4a\x95\x20\ -\x84\x1c\x90\x9d\x91\x3f\x86\x4a\x8e\x05\x50\x71\x75\x31\x8d\x74\ -\x38\x3b\xd0\xbf\x83\x3f\xad\xd0\x77\xd8\x35\xdf\x8b\x94\xad\x41\ -\x93\xd9\x15\x93\xce\xdd\x97\x3b\x2d\xb4\x90\x9d\xc9\x6c\x30\x4c\ -\xcf\xfe\x68\xde\x91\x4b\x2a\x5a\xb2\x7a\x47\x53\x56\x3b\x7d\x7f\ -\xa3\x7f\xc8\x33\xb9\x5d\x9a\x81\xb7\x3b\x36\xef\x5b\x96\x6f\xb6\ -\x72\xd0\x91\x67\x4b\x13\x2c\x24\x51\x10\x37\xef\xfd\x1a\x12\x1d\ -\x49\xc8\x76\x49\x0b\xed\x06\x1e\x8a\xbc\xc8\xc6\x86\x88\xc3\x00\ -\x8d\xb5\x33\x9e\xaa\x25\x2d\xcd\x3b\x41\xd7\xf2\xdb\x5f\x3c\xaf\ -\xa4\xdd\x33\xa9\x07\xe2\x7b\xb9\xdb\xcb\x6f\xec\x28\x59\xd5\x8e\ -\x08\xb6\x0c\x0c\x6b\xc4\x4a\xcd\x1e\x19\x35\x08\x72\x6c\xae\xa0\ -\x67\x91\xb1\x75\xad\x24\xad\x3d\xea\x8d\x44\x61\x2b\x03\xa9\xa0\ -\x59\x4e\x8b\xdf\xd5\x17\x84\x62\x8b\x1b\xac\x22\xe5\x45\xc1\x52\ -\x20\x85\x16\x07\x7a\xaa\xcd\x1e\xd0\x38\x33\xd9\x0a\x06\xc1\x77\ -\x03\x6d\x46\x45\x3f\x86\x8b\x3d\x4f\xe3\xd4\x94\xe3\x29\x88\x1b\ -\x46\x5a\xbc\xe9\x3a\xbf\x56\xb9\x84\x28\xdb\xd7\x4c\x7c\x56\x9e\ -\xfa\xb3\xfa\x5a\xb3\x0b\xd4\x17\x41\xab\x1a\xc2\xa2\x5c\x9a\x25\ -\x95\x22\x3f\xbe\xc3\x73\xa4\x3e\x76\x10\x47\x3e\x89\x3d\x68\x13\ -\x44\xec\x08\x3c\xe6\xde\x6a\xf5\xf4\xb8\x34\x09\xf1\x6d\x12\x78\ -\x88\x9c\x7b\x4f\xe0\xe9\x90\xd8\x61\x1c\xba\x81\xee\x5d\x4f\x62\ -\xd7\x93\x58\xb1\x34\x5d\xcf\x76\x3d\x1f\x47\x70\x7c\x38\x2f\x47\ -\x68\xf0\xaa\x09\x1d\x93\xf1\xc3\x84\x2a\xa2\x26\x78\x5c\x75\xf2\ -\x45\x2d\xf9\xae\xc7\xc2\xe6\x94\xa7\x02\x76\xa4\xea\xb4\x60\x44\ -\x2e\x92\x9b\x75\xf3\xbc\x6f\xba\x38\x70\x98\xcb\x53\x82\xdf\x9b\ -\x67\x1d\xbe\x5e\xd7\x0c\x26\x46\x83\xbe\xe6\xc8\x00\x0d\x98\x2b\ -\xd0\x26\xfc\xec\x6c\x68\x6a\x36\x3c\x3d\xdb\x80\x30\x67\x6c\xf6\ -\x0b\x6e\x74\xf4\x9a\xe3\x52\x53\xb7\x83\x23\x77\x07\xdc\x41\x9a\ -\xee\x35\xf4\x59\x2f\x4f\x2a\x33\x8d\xa1\x6e\x66\x5e\xd0\xff\xb0\ -\xfb\x06\x0b\x42\x46\x62\xb8\x04\xfe\xe1\x49\xc4\xa9\x45\x60\xc8\ -\xbc\xf0\x85\x26\x31\x8f\x2a\x7f\xfd\xc7\x30\xdd\x0a\x2c\x2e\xf2\ -\x4d\x0e\x69\xa2\xc1\x11\x6c\xbb\xcd\x33\xd6\x01\x97\x0e\x6c\x83\ -\xac\x11\xbe\xe0\x31\xe7\xe2\x10\xbf\xe6\x70\x7a\x09\x42\xdd\x37\ -\x42\x9f\x97\x50\xff\x8d\xd0\x67\x25\x34\x8a\xdf\x08\x7d\x56\x42\ -\xe3\xb7\x33\xf4\x99\x09\x7d\x3b\x43\x9f\x95\x50\x82\x5e\xef\x19\ -\xba\x70\x54\xf5\xdd\xb4\xf4\x0f\x44\x75\x13\x90\x3d\xe4\xec\x30\ -\xd3\x8c\xdc\x53\x6d\xdd\x8e\x6e\x58\x53\x20\x00\x8f\x6d\x85\xd0\ -\x09\xee\xb9\xc8\x98\xe8\x45\x41\xf3\x8c\x44\x5d\x0d\xd1\x5e\x76\ -\xcd\xc6\x6e\x53\xa3\x6a\x39\x9a\x96\xd7\x5b\x9a\xf1\x03\x98\xfb\ -\x54\xf8\xc8\x39\x30\x0c\xd6\xfa\x4f\x25\x8a\x49\xcf\xb3\x49\x84\ -\x62\x5d\xe2\x9f\x85\x30\x15\x41\x76\x8c\x02\x44\xf0\x85\x70\x2f\ -\x04\x78\xd0\x2a\xe8\x89\x81\x3d\xcd\x57\x0f\xaa\xb7\xfc\xb0\x11\ -\x8a\x17\x29\xf6\xec\xa9\x66\xc6\xd3\xbd\xba\x43\xb3\xf6\x6d\x8c\ -\x74\x37\x37\x03\x84\xd2\xb5\xee\xef\xf9\x71\x7a\x80\x43\x5e\x81\ -\x9d\x56\x77\x17\x84\x61\xf1\x57\x10\xfd\xed\x50\xe8\x5f\xd8\xd6\ -\x21\x8e\xe7\x52\xf0\xa9\x48\xf9\x21\xbe\x22\x2b\xe9\x31\x2f\xf3\ -\x47\x96\xa9\xda\xae\x0b\x94\x92\x49\x9a\x51\x49\xcf\x41\xd1\xf7\ -\xc0\xaf\x70\x4f\xdf\xdd\x64\xeb\xe4\xef\xbb\x8f\xba\xc8\x4c\xd3\ -\xe4\x1f\x2e\xbe\x9f\xeb\x43\x05\xa0\xf7\x7c\x0f\xcb\xd6\x85\xaf\ -\xba\x11\x4a\x13\xb5\x4f\xa8\x5c\xe5\x25\xb8\x5a\xdd\xe2\xfd\x7a\ -\x2c\x0b\x08\x4f\x2d\x18\x81\x55\x11\x73\x1e\xb4\x1d\x56\xb0\xf6\ -\x96\x6e\xf2\x62\x33\x4b\xcb\x5c\x29\x39\x9f\x65\x5e\x14\x9f\xd4\ -\x24\x83\x62\xb8\x1b\x34\x97\x05\x5b\x35\x73\xb6\xcd\xde\x0a\xa7\ -\x33\xa3\xaf\x66\x07\x56\x2e\x9c\x9e\x86\xe6\x6d\x73\xa6\x67\x14\ -\x32\x9a\xe1\x82\xde\xb3\x62\x69\xfe\xa1\x84\xc6\x85\x74\x23\xf8\ -\x7e\x57\xf2\x8c\x75\xea\x3d\xad\x3b\x2a\xb7\x57\x0a\x39\x2a\x52\ -\xbd\xc1\xbb\x22\x7e\x0d\x16\x26\x37\x08\x61\x0a\xe5\xbb\x7a\x19\ -\x5c\x16\xd4\x52\xf0\xef\x4c\x49\xd5\xd3\xbd\xb6\xb1\x96\xf8\x76\ -\xd4\xf4\xe2\xb8\x95\x22\xcf\xeb\x01\x40\x1e\x13\x05\x04\x85\x4c\ -\x74\xdf\xd3\x41\xad\x8c\xc2\x16\x15\x82\x9e\x92\x8a\x57\x6c\x74\ -\xa4\x2a\x03\x08\x54\x73\xe6\x85\x15\x6a\x8b\xe2\x38\xb4\xb1\x47\ -\x22\x7f\x42\xac\x4e\x32\x1f\xce\xb7\x61\x5a\xd3\x52\xa1\xf6\x77\ -\x64\xfb\x21\xf6\xa6\xa4\xa7\x09\xa9\x0a\x5c\x83\x78\xbe\x1d\xaa\ -\x19\xe7\xfd\xd8\x06\x35\x7a\xe8\xbc\x6f\x18\xc8\xc0\xf0\xb1\xba\ -\xd5\x05\x73\x74\x15\x33\x80\x3c\xea\xa9\xe4\xc5\xf1\x6f\x21\x38\ -\xa8\x03\x3f\x24\x7e\x0c\x49\x00\xa1\x10\xbb\xa1\x87\xe7\xd6\xb8\ -\xad\x21\x51\x68\x87\x5e\x10\xa3\x10\xb2\x84\x6f\xa3\x80\x90\xf8\ -\xf6\x9c\x09\x7f\x22\x28\x60\x43\xbc\xbb\xb9\x4c\x6f\xb7\x57\xa2\ -\xe4\x9a\x1b\xa7\xfc\x34\x99\x87\xc6\x6e\xbc\x48\x48\x23\x3f\x9e\ -\x53\xd3\xa4\x23\x89\x6b\xc7\x31\xc6\xe4\xa9\x27\xfd\xd8\x0e\x50\ -\x4c\xf0\x5c\x0f\x0f\xae\xd4\x63\xcd\xb5\x5a\xef\xcc\x20\x82\xe4\ -\x8b\xdc\x08\x3c\x75\x1d\x35\x00\xfd\x9f\x3b\x89\x2a\x09\x10\x64\ -\x72\x08\x00\x3f\xf6\x10\x0e\x95\x0b\x87\x6d\x0d\xc1\x61\x60\xfb\ -\xc8\xf7\xa0\x05\xf1\xe7\x7b\x41\x84\x6f\x75\x1e\xde\xac\x66\x0b\ -\x75\xec\xad\x66\xff\x02\xd4\x85\x14\xf9\ -\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\x3c\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\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x70\x78\ +\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x70\ +\x78\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x36\x31\ +\x32\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\ +\x2e\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x34\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\x44\x72\x61\x66\x74\ +\x5f\x44\x65\x6c\x50\x6f\x69\x6e\x74\x2e\x73\x76\x67\x22\x3e\x0a\ +\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x64\x65\x66\x73\x33\x36\x31\x34\x22\x3e\x0a\x20\x20\x20\x20\ +\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\ +\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\ +\x5f\x78\x3d\x22\x30\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\ +\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x36\x34\x20\x3a\x20\x33\ +\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\ +\x72\x69\x67\x69\x6e\x3d\x22\x33\x32\x20\x3a\x20\x32\x31\x2e\x33\ +\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\ +\x65\x33\x36\x32\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\ +\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x35\x38\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\ +\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\ +\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\ +\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\ +\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ +\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\ +\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x36\x39\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\ +\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\ +\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\ +\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\ +\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\ +\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x2d\x36\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\ +\x31\x34\x36\x2d\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ +\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x31\ +\x34\x38\x2d\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x37\x30\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x30\x33\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\ +\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x73\x74\x6f\x70\x33\x37\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ +\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\ +\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ +\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\ +\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x33\x31\x34\x34\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x33\x36\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ +\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\ +\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\ +\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\x30\ +\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x37\ +\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\ +\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\ +\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x30\x38\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\ +\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x31\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\ +\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\ +\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\ +\x65\x33\x38\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\ +\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\ +\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ +\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\ +\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\ +\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\ +\x38\x36\x34\x2d\x30\x2d\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x36\x2d\x35\x2d\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ +\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ +\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x38\x2d\x37\x2d\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ +\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x33\x33\x37\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x73\x74\x6f\x70\x33\x33\x37\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x61\x61\x30\ +\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x33\x33\x38\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x61\x66\x66\x32\x62\x3b\ +\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x2d\x30\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\ +\x36\x2d\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\ +\x38\x2d\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\ +\x65\x63\x74\x69\x76\x65\x33\x39\x30\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ +\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\ +\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\ +\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\ +\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\ +\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\ +\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ +\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x35\x30\x34\x38\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ +\x72\x3a\x62\x6c\x61\x63\x6b\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x30\ +\x35\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x73\x74\x6f\x70\x35\x30\x35\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\x6c\x61\x63\x6b\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\x6c\x61\x63\ +\x6b\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\ +\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x30\x35\x32\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x33\x38\x34\x31\x2d\x30\x2d\x33\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x34\x33\ +\x2d\x31\x2d\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ +\x6f\x6c\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\ +\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\ +\x34\x35\x2d\x30\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\ +\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\ +\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x31\x31\ +\x34\x2e\x35\x36\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ +\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x72\x3d\x22\x35\x2e\x32\x35\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x31\x31\x34\x2e\x35\x36\ +\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\ +\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x61\x69\x67\x72\x64\x32\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x36\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x46\x30\ +\x46\x30\x46\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x36\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x39\x61\x39\ +\x61\x39\x61\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\ +\x30\x30\x30\x30\x30\x30\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x2f\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\ +\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x66\x79\x3d\x22\x36\x34\x2e\x35\x36\x37\x39\x30\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x30\x2e\ +\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ +\x3d\x22\x35\x2e\x32\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x63\x79\x3d\x22\x36\x34\x2e\x35\x36\x37\x39\x30\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\ +\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x61\x69\x67\x72\x64\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x37\x33\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x46\x30\x46\x30\x46\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ +\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x73\x74\x6f\x70\x31\x35\x35\x37\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x39\x61\x39\x61\x39\x61\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\ +\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\ +\x30\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x61\x64\ +\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\ +\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x31\x35\x36\x36\x32\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\ +\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\ +\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x36\x36\x34\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x38\x66\x38\x66\x38\x3b\ +\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\ +\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\ +\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x73\x74\x6f\x70\x31\x35\x36\x36\x36\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\ +\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x72\x3d\x22\x38\x36\x2e\x37\x30\x38\x34\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x33\x35\x2e\x37\x33\x36\x39\ +\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x33\ +\x33\x2e\x39\x36\x36\x36\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x63\x79\x3d\x22\x33\x35\x2e\x37\x33\x36\x39\x31\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x33\x33\x2e\x39\x36\ +\x36\x36\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ +\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x36\x30\x34\x39\x32\x39\ +\x37\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x34\x31\x31\x33\x32\x2c\x2d\ +\x35\x32\x2e\x31\x34\x34\x32\x34\x39\x2c\x2d\x37\x30\x32\x2e\x33\ +\x33\x31\x35\x38\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ +\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\ +\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x34\x34\x35\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x35\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\ +\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x32\x35\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x66\x61\x66\x61\x66\x61\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\ +\x36\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x62\ +\x62\x62\x62\x62\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\x36\x31\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x37\x2e\x37\x35\x31\x37\x31\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x33\x2e\ +\x37\x35\x36\x31\x32\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x66\x78\x3d\x22\x38\x2e\x38\x32\x34\x34\x31\x39\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x33\x2e\x37\x35\x36\x31\x32\ +\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x38\ +\x2e\x38\x32\x34\x34\x31\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\ +\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x36\x38\x32\ +\x37\x32\x39\x37\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x33\x32\x37\x36\ +\x37\x2c\x2d\x34\x38\x2e\x37\x39\x30\x36\x39\x39\x2c\x2d\x37\x30\ +\x31\x2e\x36\x38\x35\x31\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ +\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\ +\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x34\x35\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\ +\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x32\x36\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ +\x6c\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x32\x36\x39\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x61\x33\x61\x33\x61\x33\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\ +\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x32\x37\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x34\x63\x34\x63\x34\x63\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\ +\x37\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\ +\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ +\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x34\x39\x34\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\ +\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\ +\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\ +\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\ +\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x30\x39\x35\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x35\x62\x66\x66\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x34\x30\x39\x37\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x63\x31\x65\x33\x66\x37\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x73\x74\x6f\x70\x34\x30\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\ +\x74\x69\x76\x65\x35\x30\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\ +\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\ +\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\ +\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\ +\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\ +\x63\x74\x69\x76\x65\x35\x30\x37\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ +\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\ +\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\ +\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\ +\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\ +\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\ +\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\ +\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\ +\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\x34\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\x35\x33\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x33\x39\x34\ +\x2e\x31\x35\x37\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\ +\x31\x3d\x22\x31\x38\x35\x2e\x31\x33\x30\x34\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x78\x32\x3d\x22\x34\x33\x34\x2e\x37\x33\x39\x34\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x31\x34\ +\x30\x2e\x32\x32\x37\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\ +\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x30\x2e\x39\x34\x32\x33\x31\x38\x32\x36\x2c\x30\x2c\x30\x2c\x30\ +\x2e\x39\x34\x32\x33\x31\x38\x32\x36\x2c\x32\x33\x2e\x37\x32\x37\ +\x35\x34\x39\x2c\x38\x2e\x38\x32\x36\x32\x35\x33\x36\x29\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x34\x32\x34\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x32\ +\x65\x38\x32\x30\x37\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x32\x34\x39\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x35\x32\x66\ +\x66\x30\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x32\x35\x31\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\ +\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\ +\x72\x73\x70\x65\x63\x74\x69\x76\x65\x35\x31\x34\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\ +\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\ +\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\ +\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\ +\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\ +\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\ +\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ +\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\ +\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x35\x32\x32\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\ +\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\ +\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\ +\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\ +\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ +\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x2d\x38\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x31\ +\x34\x36\x2d\x39\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ +\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x31\ +\x34\x38\x2d\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\ +\x65\x63\x74\x69\x76\x65\x35\x33\x30\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ +\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\ +\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\ +\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\ +\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\ +\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\ +\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ +\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\ +\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\ +\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\ +\x34\x34\x2d\x38\x2d\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x34\x33\x33\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ +\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\ +\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\ +\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\ +\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\ +\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x37\x32\ +\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ +\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\ +\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x34\ +\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x2d\x38\x2d\ +\x34\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x33\x31\x34\x36\x2d\x39\x36\x2d\x38\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x33\x31\x34\x38\x2d\x34\x2d\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\ +\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\ +\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ +\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x35\x33\x37\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\ +\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\ +\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\ +\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\ +\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\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\x2d\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\x34\x35\x36\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x31\x3d\x22\x33\x32\x34\x2e\x34\x34\x31\x35\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x32\x32\x35\ +\x2e\x34\x33\x32\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x32\x3d\x22\x33\x35\x35\x2e\x39\x31\x35\x35\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x32\x32\x35\x2e\x34\x33\x32\ +\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ +\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\ +\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x34\x31\x2d\x33\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ +\x33\x38\x34\x33\x2d\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\ +\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x33\x38\x34\x35\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\ +\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\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\x32\x32\x35\x2e\x34\x33\x32\ +\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x33\ +\x35\x35\x2e\x39\x31\x35\x35\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x79\x31\x3d\x22\x32\x32\x35\x2e\x34\x33\x32\x37\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x33\x32\x34\x2e\x34\ +\x34\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\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x35\x33\x39\x30\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\x2d\x33\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\x37\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\ +\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\ +\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\ +\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\ +\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\ +\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\ +\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\ +\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x3c\ +\x2f\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\ +\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\ +\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\ +\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\ +\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\ +\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\ +\x73\x66\x6f\x72\x6d\x3d\x22\x74\x72\x61\x6e\x73\x6c\x61\x74\x65\ +\x28\x2d\x33\x32\x30\x2e\x30\x34\x37\x31\x31\x2c\x2d\x31\x33\x31\ +\x2e\x32\x34\x34\x34\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x67\x34\x36\x36\x34\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\x34\x34\x32\x32\x2d\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x33\x34\ +\x36\x2e\x32\x30\x38\x35\x36\x2c\x31\x34\x31\x2e\x30\x35\x31\x39\ +\x39\x20\x2d\x31\x39\x2e\x38\x36\x35\x36\x39\x2c\x31\x37\x2e\x33\ +\x39\x39\x36\x34\x20\x33\x2e\x30\x39\x37\x31\x37\x2c\x35\x2e\x30\ +\x33\x38\x32\x38\x20\x31\x36\x2e\x32\x39\x39\x32\x35\x2c\x2d\x31\ +\x33\x2e\x39\x31\x33\x38\x36\x20\x31\x32\x2e\x39\x32\x30\x35\x32\ +\x2c\x31\x36\x2e\x30\x38\x31\x34\x39\x20\x32\x32\x2e\x35\x32\x34\ +\x38\x38\x2c\x2d\x31\x37\x2e\x35\x37\x35\x33\x39\x20\x2d\x33\x2e\ +\x34\x34\x31\x33\x2c\x2d\x34\x2e\x36\x38\x36\x37\x38\x20\x2d\x31\ +\x38\x2e\x39\x38\x39\x37\x32\x2c\x31\x33\x2e\x38\x38\x34\x35\x36\ +\x20\x2d\x31\x32\x2e\x35\x34\x35\x31\x31\x2c\x2d\x31\x36\x2e\x32\ +\x32\x37\x39\x34\x20\x7a\x20\x6d\x20\x2d\x35\x2e\x34\x37\x34\x38\ +\x2c\x32\x35\x2e\x39\x35\x32\x39\x39\x20\x31\x32\x2e\x31\x30\x37\ +\x31\x33\x2c\x31\x31\x2e\x32\x37\x37\x35\x35\x20\x31\x32\x2e\x31\ +\x30\x37\x31\x32\x2c\x2d\x31\x31\x2e\x32\x37\x37\x35\x35\x20\x2d\ +\x32\x34\x2e\x32\x31\x34\x32\x35\x2c\x30\x20\x7a\x20\x6d\x20\x33\ +\x35\x2e\x35\x33\x39\x32\x36\x2c\x38\x2e\x37\x35\x38\x34\x31\x20\ +\x63\x20\x30\x2c\x30\x20\x2d\x35\x2e\x32\x30\x32\x39\x34\x2c\x39\ +\x2e\x37\x38\x39\x38\x37\x20\x2d\x31\x35\x2e\x33\x36\x30\x37\x32\ +\x2c\x31\x30\x2e\x30\x34\x37\x32\x37\x20\x2d\x39\x2e\x33\x36\x37\ +\x35\x39\x2c\x30\x2e\x32\x33\x37\x33\x36\x20\x2d\x39\x2e\x37\x31\ +\x38\x37\x32\x2c\x2d\x38\x2e\x38\x37\x35\x35\x38\x20\x2d\x32\x30\ +\x2e\x33\x36\x36\x32\x34\x2c\x2d\x38\x2e\x38\x37\x35\x35\x38\x20\ +\x2d\x39\x2e\x38\x30\x39\x34\x31\x2c\x30\x20\x2d\x31\x34\x2e\x36\ +\x34\x31\x31\x37\x2c\x31\x32\x2e\x35\x36\x36\x34\x31\x20\x2d\x31\ +\x34\x2e\x36\x34\x31\x31\x37\x2c\x31\x32\x2e\x35\x36\x36\x34\x31\ +\x20\x6c\x20\x35\x2e\x31\x33\x30\x36\x36\x2c\x32\x2e\x36\x39\x34\ +\x38\x39\x20\x63\x20\x30\x2e\x31\x36\x30\x38\x31\x2c\x2d\x30\x2e\ +\x30\x38\x33\x38\x20\x33\x2e\x38\x36\x37\x33\x34\x2c\x2d\x39\x2e\ +\x33\x31\x34\x39\x35\x20\x31\x30\x2e\x35\x34\x32\x39\x2c\x2d\x39\ +\x2e\x33\x31\x34\x39\x36\x20\x36\x2e\x30\x33\x30\x33\x37\x2c\x2d\ +\x31\x65\x2d\x35\x20\x39\x2e\x30\x31\x31\x30\x31\x2c\x39\x2e\x37\ +\x31\x36\x38\x36\x20\x31\x39\x2e\x38\x36\x35\x36\x39\x2c\x39\x2e\ +\x35\x34\x39\x33\x20\x31\x31\x2e\x33\x35\x34\x30\x39\x2c\x2d\x30\ +\x2e\x31\x37\x35\x32\x36\x20\x31\x39\x2e\x32\x30\x38\x37\x31\x2c\ +\x2d\x31\x31\x2e\x38\x39\x32\x36\x38\x20\x31\x39\x2e\x32\x30\x38\ +\x37\x31\x2c\x2d\x31\x31\x2e\x38\x39\x32\x36\x38\x20\x6c\x20\x2d\ +\x34\x2e\x33\x37\x39\x38\x33\x2c\x2d\x34\x2e\x37\x37\x34\x36\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\x30\x2e\x36\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\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\x66\ +\x66\x66\x66\x66\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\x2e\x39\x33\x37\x34\x31\x31\x33\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\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ +\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x33\ +\x32\x33\x2e\x39\x33\x33\x34\x38\x2c\x31\x35\x33\x2e\x31\x37\x37\ +\x31\x37\x20\x31\x39\x2e\x38\x37\x36\x31\x31\x2c\x2d\x31\x37\x2e\ +\x34\x32\x35\x32\x36\x20\x31\x32\x2e\x35\x34\x33\x31\x38\x2c\x31\ +\x36\x2e\x32\x35\x32\x34\x31\x20\x31\x38\x2e\x39\x37\x35\x35\x38\ +\x2c\x2d\x31\x33\x2e\x39\x30\x36\x37\x31\x20\x33\x2e\x34\x36\x36\ +\x38\x31\x2c\x34\x2e\x36\x38\x39\x39\x33\x20\x2d\x32\x32\x2e\x35\ +\x33\x31\x33\x36\x2c\x31\x37\x2e\x35\x39\x31\x38\x31\x20\x2d\x31\ +\x32\x2e\x39\x31\x38\x36\x38\x2c\x2d\x31\x36\x2e\x30\x38\x35\x30\ +\x33\x20\x2d\x31\x36\x2e\x33\x31\x32\x38\x33\x2c\x31\x33\x2e\x39\ +\x30\x37\x37\x31\x20\x2d\x33\x2e\x30\x39\x38\x38\x31\x2c\x2d\x35\ +\x2e\x30\x32\x34\x38\x36\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x34\x34\x32\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\ +\x63\x63\x63\x63\x63\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\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\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\ +\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ +\x31\x2e\x39\x33\x37\x34\x31\x31\x33\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\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ +\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x33\ +\x32\x38\x2e\x36\x34\x33\x33\x38\x2c\x31\x38\x36\x2e\x38\x39\x37\ +\x32\x35\x20\x2d\x35\x2e\x31\x32\x38\x37\x38\x2c\x2d\x32\x2e\x36\ +\x38\x30\x33\x32\x20\x63\x20\x30\x2c\x30\x20\x34\x2e\x38\x30\x37\ +\x31\x35\x2c\x2d\x31\x32\x2e\x35\x36\x35\x36\x34\x20\x31\x34\x2e\ +\x36\x31\x36\x35\x36\x2c\x2d\x31\x32\x2e\x35\x36\x35\x36\x34\x20\ +\x31\x30\x2e\x36\x34\x37\x35\x32\x2c\x30\x20\x31\x31\x2e\x30\x31\ +\x39\x33\x37\x2c\x39\x2e\x31\x31\x38\x32\x32\x20\x32\x30\x2e\x33\ +\x38\x36\x39\x36\x2c\x38\x2e\x38\x38\x30\x38\x35\x20\x31\x30\x2e\ +\x31\x35\x37\x37\x37\x2c\x2d\x30\x2e\x32\x35\x37\x34\x20\x31\x35\ +\x2e\x33\x36\x35\x39\x33\x2c\x2d\x31\x30\x2e\x30\x35\x33\x35\x34\ +\x20\x31\x35\x2e\x33\x36\x35\x39\x33\x2c\x2d\x31\x30\x2e\x30\x35\ +\x33\x35\x34\x20\x6c\x20\x34\x2e\x33\x36\x39\x32\x31\x2c\x34\x2e\ +\x37\x37\x33\x38\x37\x20\x63\x20\x30\x2c\x30\x20\x2d\x37\x2e\x38\ +\x36\x32\x37\x2c\x31\x31\x2e\x37\x32\x30\x38\x33\x20\x2d\x31\x39\ +\x2e\x32\x31\x36\x37\x39\x2c\x31\x31\x2e\x38\x39\x36\x30\x39\x20\ +\x2d\x31\x30\x2e\x38\x35\x34\x36\x38\x2c\x30\x2e\x31\x36\x37\x35\ +\x36\x20\x2d\x31\x33\x2e\x38\x32\x39\x36\x37\x2c\x2d\x39\x2e\x35\ +\x35\x30\x33\x38\x20\x2d\x31\x39\x2e\x38\x36\x30\x30\x34\x2c\x2d\ +\x39\x2e\x35\x35\x30\x33\x38\x20\x2d\x36\x2e\x36\x37\x35\x35\x35\ +\x2c\x31\x30\x65\x2d\x36\x20\x2d\x31\x30\x2e\x33\x37\x32\x32\x34\ +\x2c\x39\x2e\x32\x31\x35\x32\x38\x20\x2d\x31\x30\x2e\x35\x33\x33\ +\x30\x35\x2c\x39\x2e\x32\x39\x39\x30\x37\x20\x7a\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x34\ +\x34\x32\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\ +\x3d\x22\x63\x63\x73\x73\x63\x63\x73\x73\x63\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ +\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x38\x32\x30\x39\x38\x30\x35\ +\x33\x2c\x30\x2c\x30\x2c\x30\x2e\x34\x34\x30\x39\x35\x38\x36\x31\ +\x2c\x37\x31\x2e\x31\x36\x37\x35\x32\x31\x2c\x36\x37\x2e\x39\x34\ +\x38\x39\x38\x35\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x64\x3d\x22\x6d\x20\x33\x32\x35\x2e\x34\x34\x31\x35\x35\x2c\x32\ +\x31\x32\x2e\x36\x37\x30\x31\x36\x20\x32\x39\x2e\x34\x37\x34\x30\ +\x32\x2c\x30\x20\x2d\x31\x34\x2e\x37\x33\x37\x30\x31\x2c\x32\x35\ +\x2e\x35\x32\x35\x32\x35\x20\x2d\x31\x34\x2e\x37\x33\x37\x30\x31\ +\x2c\x2d\x32\x35\x2e\x35\x32\x35\x32\x35\x20\x7a\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x72\x61\x6e\x64\x6f\x6d\x69\x7a\x65\x64\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x72\x6f\x75\x6e\x64\x65\x64\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x66\ +\x6c\x61\x74\x73\x69\x64\x65\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x61\x72\x67\x32\x3d\x22\x2d\x31\x2e\x35\x37\x30\x37\x39\ +\x36\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x61\x72\x67\x31\x3d\x22\x2d\x32\x2e\x36\ +\x31\x37\x39\x39\x33\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x32\x3d\x22\x38\x2e\ +\x35\x30\x38\x34\x31\x38\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x31\x3d\x22\x31\ +\x37\x2e\x30\x31\x36\x38\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\ +\x32\x32\x31\x2e\x31\x37\x38\x35\x37\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\x34\x30\x2e\x31\x37\x38\x35\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x73\x69\ +\x64\x65\x73\x3d\x22\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x34\x35\x35\x39\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\x75\x72\x6c\x28\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x35\x33\x39\x30\x29\x3b\x66\x69\x6c\x6c\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\ +\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\ +\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x33\x2e\x32\x32\x30\x30\x30\x34\ +\x35\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ +\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\ +\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ +\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\ +\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\ +\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\ +\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\ +\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\ +\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\ +\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\ +\x22\x73\x74\x61\x72\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\x1a\x1b\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x70\x78\ +\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x70\ +\x78\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x38\x36\ +\x39\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\x44\x72\x61\x66\x74\x5f\x50\x6f\x69\x6e\ +\x74\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x6f\x75\x74\x70\x75\x74\x5f\x65\x78\x74\x65\x6e\x73\ +\x69\x6f\x6e\x3d\x22\x6f\x72\x67\x2e\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x2e\x6f\x75\x74\x70\x75\x74\x2e\x73\x76\x67\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\ +\x6e\x3d\x22\x31\x2e\x31\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\ +\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x38\ +\x37\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\ +\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\ +\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\x32\x33\x37\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ +\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\ +\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ +\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ +\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\ +\x36\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\ +\x38\x36\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\ +\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\ +\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ +\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\ +\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\ +\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\ +\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\ +\x34\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\x32\x33\x36\x38\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ +\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\ +\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\ +\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\ +\x32\x38\x36\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\ +\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\ +\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\ +\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\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\x33\x31\x34\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\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\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x33\x31\x34\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\x66\x66\x66\x66\x66\x66\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\x33\ +\x31\x34\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\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\ +\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\ +\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x31\x34\x34\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\x32\x33\x37\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ +\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\ +\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ +\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\ +\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\ +\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\ +\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\ +\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\ +\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\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\x38\x37\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\ +\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x31\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\ +\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\ +\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\ +\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\ +\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\ +\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\ +\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\ +\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\ +\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x33\x31\x37\x33\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ +\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\ +\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ +\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\ +\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\ +\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\ +\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\ +\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\ +\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\ +\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\ +\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x31\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\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\ +\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\ +\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\ +\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\ +\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ +\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ +\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\ +\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x31\x38\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\ +\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ +\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ +\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\ +\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\ +\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\ +\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\ +\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\ +\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\ +\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x39\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\ +\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ +\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ +\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\ +\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\ +\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\ +\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\ +\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\ +\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ +\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ +\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x39\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\ +\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\ +\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ +\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\ +\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\ +\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\ +\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\ +\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\ +\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\ +\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\ +\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\ +\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x32\x30\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\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\ +\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\ +\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\ +\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\ +\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\ +\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\ +\x20\x2f\x3e\x0a\x20\x20\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\x34\x34\x2e\x32\x38\x30\x39\ +\x37\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x79\x3d\x22\x32\x30\x2e\x39\x30\x36\x30\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\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\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\x38\x37\x34\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\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\x63\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ +\x23\x30\x30\x31\x61\x66\x66\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\x35\x2e\x38\x30\x30\x30\x30\x30\x31\x39\x30\x30\x30\ +\x30\x30\x30\x30\x34\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ +\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ +\x74\x68\x32\x33\x33\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x31\x39\x37\x2e\ +\x31\x34\x32\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\x36\x35\x35\x2e\x32\ +\x31\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\x34\x38\x2e\x35\x37\x31\x34\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x72\x79\x3d\x22\x34\x38\x2e\x35\x37\x31\x34\x33\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x34\x35\ +\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\ +\x61\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\ +\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x2d\x39\x37\x2e\x31\x34\ +\x32\x38\x36\x2c\x30\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\ +\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x39\x37\ +\x2e\x31\x34\x32\x38\x36\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\ +\x74\x72\x69\x78\x28\x2d\x30\x2e\x32\x36\x36\x35\x37\x32\x35\x39\ +\x2c\x30\x2e\x30\x30\x37\x31\x33\x37\x34\x31\x2c\x2d\x30\x2e\x30\ +\x30\x37\x31\x33\x37\x34\x31\x2c\x2d\x30\x2e\x32\x36\x36\x35\x37\ +\x32\x35\x39\x2c\x38\x37\x2e\x37\x34\x36\x39\x30\x37\x2c\x32\x30\ +\x35\x2e\x30\x36\x32\x32\x39\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\x63\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x32\x30\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\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\ +\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\ +\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\ +\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\ +\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x64\x3d\x22\x6d\x20\x32\x35\x39\x2e\x36\x30\x39\x32\x31\ +\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x61\x20\x33\x34\x2e\ +\x33\x34\x35\x31\x38\x38\x2c\x32\x33\x2e\x39\x39\x31\x31\x32\x33\ +\x20\x30\x20\x31\x20\x31\x20\x2d\x36\x38\x2e\x36\x39\x30\x33\x38\ +\x2c\x30\x20\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\x33\x2e\ +\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\x20\x31\x20\x36\x38\x2e\ +\x36\x39\x30\x33\x38\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ +\x72\x69\x78\x28\x2d\x30\x2e\x32\x32\x33\x31\x38\x39\x30\x34\x2c\ +\x30\x2e\x31\x34\x35\x39\x34\x30\x31\x37\x2c\x2d\x30\x2e\x31\x34\ +\x35\x39\x34\x30\x31\x37\x2c\x2d\x30\x2e\x32\x32\x33\x31\x38\x39\ +\x30\x34\x2c\x31\x37\x36\x2e\x35\x30\x35\x34\x34\x2c\x31\x34\x35\ +\x2e\x35\x34\x36\x38\x31\x29\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\ +\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x28\x8e\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x70\x78\ +\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x70\ +\x78\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x36\x31\ +\x32\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\ +\x2e\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x34\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\x44\x72\x61\x66\x74\ +\x5f\x45\x64\x69\x74\x2e\x73\x76\x67\x22\x3e\x0a\x20\x20\x3c\x64\ +\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\ +\x73\x33\x36\x31\x34\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\ +\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\ +\x30\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\ +\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x7a\x3d\x22\x36\x34\x20\x3a\x20\x33\x32\x20\x3a\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\ +\x6e\x3d\x22\x33\x32\x20\x3a\x20\x32\x31\x2e\x33\x33\x33\x33\x33\ +\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x36\x32\ +\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\ +\x65\x63\x74\x69\x76\x65\x33\x35\x38\x38\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ +\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\ +\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\ +\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\ +\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\ +\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\ +\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ +\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\ +\x70\x65\x63\x74\x69\x76\x65\x33\x36\x39\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\ +\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\ +\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\ +\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\ +\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\ +\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\ +\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ +\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x2d\x36\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x31\x34\x36\x2d\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\ +\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x31\x34\x38\x2d\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\ +\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\ +\x37\x30\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x33\x37\x30\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ +\x33\x37\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\ +\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\ +\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\ +\x34\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x36\ +\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ +\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\ +\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\ +\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\ +\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\ +\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\ +\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\ +\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\ +\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x37\x30\x38\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x31\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\ +\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x31\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\ +\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\ +\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ +\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x38\x30\ +\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\ +\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\ +\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\ +\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\ +\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x2d\ +\x30\x2d\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x33\x38\x36\x36\x2d\x35\x2d\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x36\x31\ +\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x73\x74\x6f\x70\x33\x38\x36\x38\x2d\x37\x2d\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x33\ +\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\ +\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\ +\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x33\x33\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\ +\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x61\x61\x30\x30\x3b\x73\x74\ +\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\ +\x33\x38\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x66\x61\x66\x66\x32\x62\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x38\x36\x34\x2d\x30\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x36\x2d\x35\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ +\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ +\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x38\x2d\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ +\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ +\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\ +\x76\x65\x33\x39\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\ +\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\ +\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\ +\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\ +\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\ +\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x35\x30\x34\x38\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\x6c\ +\x61\x63\x6b\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x30\x35\x30\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ +\x35\x30\x35\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\x6c\x61\x63\x6b\x3b\x73\x74\x6f\ +\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\x6c\x61\x63\x6b\x3b\x73\x74\ +\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x73\x74\x6f\x70\x35\x30\x35\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x33\x38\x34\x31\x2d\x30\x2d\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x34\x33\x2d\x31\x2d\x33\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x34\x35\x2d\x30\ +\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\ +\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x31\x31\x34\x2e\x35\x36\ +\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\ +\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x72\x3d\x22\x35\x2e\x32\x35\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x63\x79\x3d\x22\x31\x31\x34\x2e\x35\x36\x38\x34\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x30\x2e\x38\x39\ +\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x61\x69\x67\x72\x64\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x36\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x46\x30\x46\x30\x46\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x36\x38\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x39\x61\x39\x61\x39\x61\x3b\ +\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\ +\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\ +\x30\x30\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x61\ +\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\ +\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ +\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\ +\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ +\x79\x3d\x22\x36\x34\x2e\x35\x36\x37\x39\x30\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\x30\ +\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x35\x2e\ +\x32\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\ +\x36\x34\x2e\x35\x36\x37\x39\x30\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x63\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\x30\x39\x39\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x61\x69\x67\x72\ +\x64\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x31\x35\x35\x37\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x46\x30\x46\x30\x46\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x31\x35\x35\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x39\x61\x39\x61\x39\x61\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\ +\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x61\x64\x69\x61\x6c\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x31\x35\x36\x36\x32\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ +\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\ +\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\ +\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x31\x35\x36\x36\x34\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x66\x38\x66\x38\x66\x38\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\ +\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x31\x35\x36\x36\x36\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\ +\x38\x36\x2e\x37\x30\x38\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x66\x79\x3d\x22\x33\x35\x2e\x37\x33\x36\x39\x31\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x33\x33\x2e\x39\x36\ +\x36\x36\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\ +\x22\x33\x35\x2e\x37\x33\x36\x39\x31\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x63\x78\x3d\x22\x33\x33\x2e\x39\x36\x36\x36\x37\x39\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ +\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ +\x69\x78\x28\x30\x2e\x39\x36\x30\x34\x39\x32\x39\x37\x2c\x30\x2c\ +\x30\x2c\x31\x2e\x30\x34\x31\x31\x33\x32\x2c\x2d\x35\x32\x2e\x31\ +\x34\x34\x32\x34\x39\x2c\x2d\x37\x30\x32\x2e\x33\x33\x31\x35\x38\ +\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ +\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\ +\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x34\x34\x35\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x35\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x32\x35\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x61\ +\x66\x61\x66\x61\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\ +\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\x36\x30\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x62\x62\x62\x62\x62\ +\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\ +\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\x36\x31\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\ +\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x72\x3d\x22\x33\x37\x2e\x37\x35\x31\x37\x31\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x33\x2e\x37\x35\x36\x31\ +\x32\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\ +\x38\x2e\x38\x32\x34\x34\x31\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x63\x79\x3d\x22\x33\x2e\x37\x35\x36\x31\x32\x38\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x38\x2e\x38\x32\x34\ +\x34\x31\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ +\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ +\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x36\x38\x32\x37\x32\x39\x37\ +\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x33\x32\x37\x36\x37\x2c\x2d\x34\ +\x38\x2e\x37\x39\x30\x36\x39\x39\x2c\x2d\x37\x30\x31\x2e\x36\x38\ +\x35\x31\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\ +\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x34\x34\x35\x34\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x36\x39\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\ +\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x32\x36\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ +\x23\x61\x33\x61\x33\x61\x33\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ +\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\x37\ +\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x34\x63\ +\x34\x63\x34\x63\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\ +\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\x37\x31\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\ +\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\ +\x72\x73\x70\x65\x63\x74\x69\x76\x65\x34\x39\x34\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\ +\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\ +\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\ +\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\ +\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\ +\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\ +\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ +\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\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\x30\x39\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x34\x39\x33\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\ +\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\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\x31\ +\x30\x34\x35\x36\x37\x39\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x31\x30\ +\x34\x35\x36\x37\x39\x31\x2c\x34\x32\x30\x2e\x39\x30\x30\x30\x36\ +\x2c\x2d\x33\x32\x2e\x39\x37\x36\x33\x38\x29\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\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x34\x30\x39\x35\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ +\x23\x30\x30\x35\x62\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x30\ +\x39\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x63\ +\x31\x65\x33\x66\x37\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x30\x39\x39\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\ +\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x35\x30\x32\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\ +\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\ +\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\ +\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\ +\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\ +\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\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\x37\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\ +\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\ +\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\ +\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\ +\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\ +\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\ +\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\ +\x65\x3e\x3c\x2f\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\ +\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\ +\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\ +\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ +\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\ +\x0a\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x74\ +\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x74\x72\x61\x6e\x73\x6c\ +\x61\x74\x65\x28\x2d\x34\x34\x36\x2e\x38\x30\x34\x37\x2c\x2d\x36\ +\x37\x2e\x38\x37\x39\x36\x38\x36\x29\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x67\x35\x30\x31\x35\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x79\x3d\x22\x39\x31\x2e\x39\x33\x35\x30\x39\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x34\x37\x30\ +\x2e\x33\x39\x34\x31\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x34\x2e\x37\x30\x37\x33\ +\x32\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\ +\x74\x68\x3d\x22\x33\x34\x2e\x33\x37\x35\x33\x30\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\ +\x34\x30\x39\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\ +\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\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\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\x34\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\ +\x71\x75\x61\x72\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ +\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ +\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\ +\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\ +\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\ +\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\ +\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\ +\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\ +\x6d\x75\x6c\x61\x74\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x79\x3d\x22\x37\x33\x2e\x38\x34\x34\x32\x32\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x34\x35\x32\x2e\x34\x37\ +\x36\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\ +\x69\x67\x68\x74\x3d\x22\x33\x34\x2e\x37\x30\x37\x33\x32\x35\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x33\x34\x2e\x33\x37\x35\x33\x30\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x34\x30\x39\ +\x34\x2d\x39\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\x30\x30\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\x71\x75\x61\x72\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ +\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ +\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ +\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\ +\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\ +\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\ +\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\ +\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\ +\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\ +\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\ +\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\ +\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ \x00\x00\x0f\x56\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ @@ -26561,395 +55652,2008 @@ qt_resource_data = "\ \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\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\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\x43\x5b\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x70\x78\ +\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x70\ +\x78\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x36\x31\ +\x32\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\ +\x2e\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x34\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\x44\x72\x61\x66\x74\ +\x5f\x44\x72\x61\x77\x69\x6e\x67\x2e\x73\x76\x67\x22\x3e\x0a\x20\ +\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x64\x65\x66\x73\x33\x36\x31\x34\x22\x3e\x0a\x20\x20\x20\x20\x3c\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\ +\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ +\x78\x3d\x22\x30\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\ +\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x36\x34\x20\x3a\x20\x33\x32\ +\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\ +\x69\x67\x69\x6e\x3d\x22\x33\x32\x20\x3a\x20\x32\x31\x2e\x33\x33\ +\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\ +\x33\x36\x32\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\ +\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\ +\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x35\x38\x38\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\ +\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\ +\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\ +\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\ +\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\ +\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\ +\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ +\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\ +\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x36\x39\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\ +\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\ +\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\ +\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\ +\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ +\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x2d\x36\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x31\ +\x34\x36\x2d\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x31\x34\ +\x38\x2d\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ +\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x33\x37\x30\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x73\x74\x6f\x70\x33\x37\x30\x33\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x33\x37\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\ +\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\ +\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\ +\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x33\x31\x34\x34\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x33\x36\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ +\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\ +\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\ +\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\ +\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\ +\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x37\x32\ +\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ +\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\ +\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x34\ +\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x30\x38\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x31\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\ +\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x31\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\ +\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\ +\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ +\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\ +\x33\x38\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\ +\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\ +\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\ +\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\ +\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\ +\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\ +\x36\x34\x2d\x30\x2d\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x36\x2d\x35\x2d\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x38\x2d\x37\x2d\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x33\x33\x37\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x73\x74\x6f\x70\x33\x33\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x61\x61\x30\x30\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x33\x33\x38\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x61\x66\x66\x32\x62\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x2d\x30\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x36\ +\x2d\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x38\ +\x2d\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\ +\x63\x74\x69\x76\x65\x33\x39\x30\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ +\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\ +\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\ +\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\ +\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\ +\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\ +\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\ +\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\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\x35\x30\x34\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x30\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\x32\x2e\x37\x37\x34\x33\x38\ +\x39\x2c\x30\x2c\x30\x2c\x31\x2e\x39\x36\x39\x37\x30\x36\x2c\x2d\ +\x31\x38\x39\x32\x2e\x31\x37\x39\x2c\x2d\x38\x37\x32\x2e\x38\x38\ +\x35\x34\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\ +\x33\x30\x32\x2e\x38\x35\x37\x31\x35\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x79\x31\x3d\x22\x33\x36\x36\x2e\x36\x34\x37\x38\x39\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x33\x30\x32\x2e\ +\x38\x35\x37\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\ +\x3d\x22\x36\x30\x39\x2e\x35\x30\x35\x30\x37\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x30\x34\ +\x38\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\x6c\x61\x63\x6b\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x3b\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x35\x30\x35\x30\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x30\x35\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x30\x2e\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x62\x6c\x61\x63\x6b\x3b\x73\x74\x6f\x70\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ +\x6f\x6c\x6f\x72\x3a\x62\x6c\x61\x63\x6b\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x35\x30\x35\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\ +\x20\x20\x20\x20\x3c\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\x35\x30\x36\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x35\x30\x32\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\ +\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\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\x32\x2e\x37\x37\x34\x33\x38\x39\x2c\x30\x2c\x30\x2c\ +\x31\x2e\x39\x36\x39\x37\x30\x36\x2c\x2d\x31\x38\x39\x31\x2e\x36\ +\x33\x33\x2c\x2d\x38\x37\x32\x2e\x38\x38\x35\x34\x29\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x36\x30\x35\x2e\x37\x31\ +\x34\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\ +\x34\x38\x36\x2e\x36\x34\x37\x38\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x66\x78\x3d\x22\x36\x30\x35\x2e\x37\x31\x34\x32\x39\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x34\x38\x36\x2e\ +\x36\x34\x37\x38\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\ +\x22\x31\x31\x37\x2e\x31\x34\x32\x38\x36\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\x69\x64\x3d\x22\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x30\x36\ +\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\x62\x6c\x61\x63\x6b\ +\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\x35\x30\x36\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\x62\x6c\x61\x63\x6b\x3b\x73\x74\x6f\ +\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x35\x30\x36\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\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\ +\x31\x31\x37\x2e\x31\x34\x32\x38\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x66\x79\x3d\x22\x34\x38\x36\x2e\x36\x34\x37\x38\x39\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x36\x30\x35\x2e\ +\x37\x31\x34\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\ +\x3d\x22\x34\x38\x36\x2e\x36\x34\x37\x38\x39\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x63\x78\x3d\x22\x36\x30\x35\x2e\x37\x31\x34\x32\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ +\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ +\x72\x69\x78\x28\x2d\x32\x2e\x37\x37\x34\x33\x38\x39\x2c\x30\x2c\ +\x30\x2c\x31\x2e\x39\x36\x39\x37\x30\x36\x2c\x31\x31\x32\x2e\x37\ +\x36\x32\x33\x2c\x2d\x38\x37\x32\x2e\x38\x38\x35\x34\x29\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\ +\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\ +\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\ +\x33\x39\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\ +\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x35\x30\x36\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\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ +\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\ +\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x79\x32\x3d\x22\x31\x30\x37\x36\x2e\x36\x31\x37\x34\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\x31\ +\x3d\x22\x31\x32\x38\x36\x2e\x37\x32\x39\x31\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\x69\x64\x3d\x22\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x34\x37\ +\x2d\x37\x2d\x35\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\x2d\x30\x2d\x33\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\ +\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x38\x34\x31\x2d\x30\x2d\x33\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x34\x33\x2d\ +\x31\x2d\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x34\ +\x35\x2d\x30\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\ +\x63\x6f\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\ +\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\ +\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\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\x61\x69\x67\x72\x64\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x32\x32\x38\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ +\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\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\x32\x32\x39\x37\x30\x33\x2c\x30\x2c\x30\x2c\x30\x2e\x32\x32\ +\x39\x37\x30\x33\x2c\x34\x2e\x36\x31\x33\x35\x32\x39\x2c\x33\x2e\ +\x39\x37\x39\x38\x30\x38\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x63\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x31\x31\x34\x2e\x35\x36\ +\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\ +\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x66\x79\x3d\x22\x31\x31\x34\x2e\x35\x36\x38\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x35\x2e\x32\x35\x36\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ +\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\ +\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x66\x79\x3d\x22\x31\x31\x34\x2e\x35\x36\x38\x34\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x30\x2e\ +\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ +\x3d\x22\x35\x2e\x32\x35\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x63\x79\x3d\x22\x31\x31\x34\x2e\x35\x36\x38\x34\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\x30\ +\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x61\ +\x69\x67\x72\x64\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x73\x74\x6f\x70\x31\x35\x35\x36\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x46\x30\x46\x30\x46\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x73\x74\x6f\x70\x31\x35\x35\x36\x38\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\ +\x63\x6f\x6c\x6f\x72\x3a\x23\x39\x61\x39\x61\x39\x61\x3b\x73\x74\ +\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\ +\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\ +\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x61\x64\x69\ +\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\ +\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\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\x61\x69\x67\x72\x64\x33\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\x32\x32\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\x32\x32\x39\x37\x30\x33\x2c\x30\x2c\x30\x2c\ +\x30\x2e\x32\x32\x39\x37\x30\x33\x2c\x34\x2e\x36\x31\x33\x35\x32\ +\x39\x2c\x33\x2e\x39\x37\x39\x38\x30\x38\x29\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\x30\x39\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x34\ +\x2e\x35\x36\x37\x39\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x66\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x34\x2e\x35\x36\x37\ +\x39\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x35\ +\x2e\x32\x35\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\ +\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\ +\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x34\ +\x2e\x35\x36\x37\x39\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x66\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x35\x2e\x32\x35\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x34\x2e\x35\x36\ +\x37\x39\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\ +\x22\x32\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x61\x69\x67\x72\x64\x33\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\ +\x37\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x46\x30\x46\x30\x46\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x37\ +\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x39\ +\x61\x39\x61\x39\x61\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x2f\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ +\x3d\x22\x33\x38\x2e\x31\x35\x38\x36\x39\x35\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x66\x79\x3d\x22\x37\x2e\x32\x36\x37\x38\x39\x36\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x38\x2e\ +\x31\x34\x33\x35\x35\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x63\x79\x3d\x22\x37\x2e\x32\x36\x37\x38\x39\x36\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x38\x2e\x31\x34\x33\x35\ +\x35\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\x36\x38\x32\x37\x32\x39\x37\ +\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x33\x32\x37\x36\x37\x2c\x31\x32\ +\x2e\x30\x34\x30\x35\x34\x32\x2c\x2d\x36\x31\x2e\x30\x36\x37\x32\ +\x37\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\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x31\x35\x36\x36\x38\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\x31\x35\x36\ +\x36\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ +\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x31\x35\x36\x36\x32\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\ +\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x31\x35\x36\x36\x34\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x66\x38\x66\x38\x66\x38\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\ +\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x31\x35\x36\x36\x36\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\ +\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x38\ +\x36\x2e\x37\x30\x38\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x66\x79\x3d\x22\x33\x35\x2e\x37\x33\x36\x39\x31\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x33\x33\x2e\x39\x36\x36\ +\x36\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\ +\x33\x35\x2e\x37\x33\x36\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x63\x78\x3d\x22\x33\x33\x2e\x39\x36\x36\x36\x37\x39\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ +\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ +\x78\x28\x30\x2e\x39\x36\x30\x34\x39\x32\x39\x37\x2c\x30\x2c\x30\ +\x2c\x31\x2e\x30\x34\x31\x31\x33\x32\x2c\x2d\x35\x32\x2e\x31\x34\ +\x34\x32\x34\x39\x2c\x2d\x37\x30\x32\x2e\x33\x33\x31\x35\x38\x29\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ +\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\ +\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x34\x34\x35\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ +\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x35\x39\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ +\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x32\ +\x35\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x61\x66\ +\x61\x66\x61\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\ +\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\x36\x30\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x62\x62\x62\x62\x62\x62\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\ +\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\ +\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x32\x36\x31\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x72\x3d\x22\x33\x37\x2e\x37\x35\x31\x37\x31\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x33\x2e\x37\x35\x36\x31\x32\ +\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x38\ +\x2e\x38\x32\x34\x34\x31\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x63\x79\x3d\x22\x33\x2e\x37\x35\x36\x31\x32\x38\x35\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x38\x2e\x38\x32\x34\x34\ +\x31\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ +\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\ +\x74\x72\x69\x78\x28\x30\x2e\x39\x36\x38\x32\x37\x32\x39\x37\x2c\ +\x30\x2c\x30\x2c\x31\x2e\x30\x33\x32\x37\x36\x37\x2c\x2d\x34\x38\ +\x2e\x37\x39\x30\x36\x39\x39\x2c\x2d\x37\x30\x31\x2e\x36\x38\x35\ +\x31\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ +\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\ +\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x34\x34\x35\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x36\x39\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x32\x36\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x61\x33\x61\x33\x61\x33\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\x37\x30\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x34\x63\x34\ +\x63\x34\x63\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\ +\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\x37\x31\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\ +\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x72\x3d\x22\x38\x36\x2e\x37\x30\x38\x34\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x33\x35\x2e\x37\x33\ +\x36\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\ +\x22\x33\x33\x2e\x39\x36\x36\x36\x37\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x63\x79\x3d\x22\x33\x35\x2e\x37\x33\x36\x39\x31\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x33\x33\x2e\ +\x39\x36\x36\x36\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x36\x30\x34\x39\ +\x32\x39\x37\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x34\x31\x31\x33\x32\ +\x2c\x38\x2e\x36\x38\x36\x39\x39\x32\x31\x2c\x2d\x36\x31\x2e\x37\ +\x31\x33\x37\x32\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\x72\x61\x64\x69\x61\x6c\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x33\x39\x37\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\ +\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x32\ +\x35\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ +\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\ +\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x72\x3d\x22\x33\x37\x2e\x37\x35\x31\x37\x31\x33\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x33\x2e\x37\x35\ +\x36\x31\x32\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\ +\x3d\x22\x38\x2e\x38\x32\x34\x34\x31\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x63\x79\x3d\x22\x33\x2e\x37\x35\x36\x31\x32\x38\x35\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x38\x2e\x38\ +\x32\x34\x34\x31\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ +\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ +\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x36\x38\x32\x37\x32\ +\x39\x37\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x33\x32\x37\x36\x37\x2c\ +\x31\x32\x2e\x30\x34\x30\x35\x34\x32\x2c\x2d\x36\x31\x2e\x30\x36\ +\x37\x32\x37\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\x72\x61\x64\x69\x61\x6c\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x39\x37\x34\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x36\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\ +\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\ +\x70\x65\x63\x74\x69\x76\x65\x34\x39\x34\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\ +\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\ +\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\ +\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\ +\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\ +\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\ +\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ +\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\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\ +\x30\x39\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x39\ +\x33\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ +\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\ +\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\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\x31\x30\x34\ +\x35\x36\x37\x39\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x31\x30\x34\x35\ +\x36\x37\x39\x31\x2c\x34\x32\x30\x2e\x39\x30\x30\x30\x36\x2c\x2d\ +\x33\x32\x2e\x39\x37\x36\x33\x38\x29\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\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x34\x30\x39\x35\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\ +\x30\x35\x62\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x30\x39\x37\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x63\x31\x65\ +\x33\x66\x37\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x30\x39\x39\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\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\x37\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\ +\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\ +\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\ +\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\ +\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\ +\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\ +\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\ +\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x3c\ +\x2f\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\ +\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\ +\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\ +\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\ +\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\ +\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x67\x34\x39\x32\x38\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\x39\x38\x32\x35\x39\x30\x39\x34\x2c\x30\x2c\x30\x2c\x31\ +\x2c\x2d\x35\x30\x33\x2e\x39\x31\x32\x35\x36\x2c\x2d\x36\x38\x2e\ +\x30\x30\x36\x30\x39\x37\x29\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\ +\x73\x3d\x22\x63\x7a\x63\x63\x63\x7a\x63\x63\x7a\x63\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ +\x33\x32\x37\x38\x2d\x38\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x64\x3d\x22\x6d\x20\x35\x36\x30\x2e\x38\x34\x37\x37\ +\x31\x2c\x37\x36\x2e\x36\x32\x36\x33\x35\x32\x20\x63\x20\x30\x2c\ +\x30\x20\x2d\x36\x2e\x35\x37\x39\x30\x39\x2c\x33\x2e\x35\x30\x34\ +\x37\x34\x39\x20\x2d\x31\x31\x2e\x30\x38\x32\x36\x38\x2c\x35\x2e\ +\x39\x30\x33\x38\x36\x32\x20\x2d\x34\x2e\x35\x30\x33\x36\x2c\x32\ +\x2e\x33\x39\x39\x31\x31\x34\x20\x2d\x31\x35\x2e\x39\x33\x38\x39\ +\x2c\x38\x2e\x34\x39\x30\x38\x31\x38\x20\x2d\x31\x35\x2e\x39\x33\ +\x38\x39\x2c\x38\x2e\x34\x39\x30\x38\x31\x38\x20\x6c\x20\x31\x38\ +\x2e\x36\x38\x37\x38\x32\x2c\x37\x2e\x30\x37\x31\x30\x37\x20\x2d\ +\x31\x36\x2e\x36\x36\x37\x35\x32\x2c\x33\x31\x2e\x35\x36\x37\x32\ +\x35\x38\x20\x63\x20\x30\x2c\x30\x20\x31\x35\x2e\x38\x31\x35\x35\ +\x36\x2c\x2d\x35\x2e\x30\x37\x32\x39\x31\x20\x32\x32\x2e\x35\x30\ +\x37\x38\x33\x2c\x2d\x37\x2e\x32\x31\x39\x34\x39\x20\x43\x20\x35\ +\x36\x35\x2e\x30\x34\x36\x35\x32\x2c\x31\x32\x30\x2e\x32\x39\x33\ +\x33\x20\x35\x37\x36\x2c\x31\x31\x36\x2e\x37\x37\x39\x39\x32\x20\ +\x35\x37\x36\x2c\x31\x31\x36\x2e\x37\x37\x39\x39\x32\x20\x6c\x20\ +\x2d\x31\x31\x2e\x38\x36\x39\x33\x2c\x2d\x39\x2e\x38\x34\x38\x39\ +\x39\x20\x63\x20\x30\x2c\x30\x20\x2d\x31\x2e\x30\x37\x31\x32\x39\ +\x2c\x2d\x31\x30\x2e\x38\x34\x35\x35\x32\x31\x20\x2d\x31\x2e\x36\ +\x31\x38\x34\x35\x2c\x2d\x31\x34\x2e\x39\x33\x39\x35\x39\x35\x20\ +\x2d\x30\x2e\x35\x34\x37\x31\x37\x2c\x2d\x34\x2e\x30\x39\x34\x30\ +\x37\x33\x20\x2d\x31\x2e\x36\x36\x34\x35\x34\x2c\x2d\x31\x35\x2e\ +\x33\x36\x34\x39\x38\x33\x20\x2d\x31\x2e\x36\x36\x34\x35\x34\x2c\ +\x2d\x31\x35\x2e\x33\x36\x34\x39\x38\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\x35\x36\x34\x38\x38\x35\x35\x32\ +\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\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\x7a\x63\x63\x63\x7a\x63\x63\x7a\x63\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x61\x74\x68\x33\x32\x37\x38\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x35\x35\x35\x2e\x37\x38\x36\ +\x35\x34\x2c\x37\x31\x2e\x38\x33\x39\x37\x32\x31\x20\x63\x20\x30\ +\x2c\x30\x20\x2d\x36\x2e\x35\x37\x39\x30\x39\x2c\x33\x2e\x35\x30\ +\x34\x37\x34\x39\x20\x2d\x31\x31\x2e\x30\x38\x32\x36\x38\x2c\x35\ +\x2e\x39\x30\x33\x38\x36\x32\x20\x2d\x34\x2e\x35\x30\x33\x36\x2c\ +\x32\x2e\x33\x39\x39\x31\x31\x34\x20\x2d\x31\x35\x2e\x39\x33\x38\ +\x39\x2c\x38\x2e\x34\x39\x30\x38\x31\x38\x20\x2d\x31\x35\x2e\x39\ +\x33\x38\x39\x2c\x38\x2e\x34\x39\x30\x38\x31\x38\x20\x6c\x20\x31\ +\x38\x2e\x36\x38\x37\x38\x32\x2c\x37\x2e\x30\x37\x31\x30\x37\x20\ +\x2d\x31\x36\x2e\x36\x36\x37\x35\x32\x2c\x33\x31\x2e\x35\x36\x37\ +\x32\x35\x39\x20\x63\x20\x30\x2c\x30\x20\x31\x35\x2e\x38\x31\x35\ +\x35\x36\x2c\x2d\x35\x2e\x30\x37\x32\x39\x31\x20\x32\x32\x2e\x35\ +\x30\x37\x38\x33\x2c\x2d\x37\x2e\x32\x31\x39\x34\x39\x20\x36\x2e\ +\x36\x39\x32\x32\x36\x2c\x2d\x32\x2e\x31\x34\x36\x35\x37\x20\x31\ +\x37\x2e\x36\x34\x35\x37\x34\x2c\x2d\x35\x2e\x36\x35\x39\x39\x35\ +\x20\x31\x37\x2e\x36\x34\x35\x37\x34\x2c\x2d\x35\x2e\x36\x35\x39\ +\x39\x35\x20\x6c\x20\x2d\x31\x31\x2e\x38\x36\x39\x33\x2c\x2d\x39\ +\x2e\x38\x34\x38\x39\x39\x20\x63\x20\x30\x2c\x30\x20\x2d\x31\x2e\ +\x30\x37\x31\x32\x39\x2c\x2d\x31\x30\x2e\x38\x34\x35\x35\x32\x32\ +\x20\x2d\x31\x2e\x36\x31\x38\x34\x35\x2c\x2d\x31\x34\x2e\x39\x33\ +\x39\x35\x39\x36\x20\x2d\x30\x2e\x35\x34\x37\x31\x37\x2c\x2d\x34\ +\x2e\x30\x39\x34\x30\x37\x33\x20\x2d\x31\x2e\x36\x36\x34\x35\x34\ +\x2c\x2d\x31\x35\x2e\x33\x36\x34\x39\x38\x33\x20\x2d\x31\x2e\x36\ +\x36\x34\x35\x34\x2c\x2d\x31\x35\x2e\x33\x36\x34\x39\x38\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\x23\x30\x30\x31\x33\x66\x66\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\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\ +\x22\x36\x2e\x32\x39\x32\x36\x34\x33\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\ +\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x2e\x32\x39\x32\ +\x36\x34\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x66\ +\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x2f\x68\x6f\x6d\x65\x2f\x79\ +\x6f\x72\x69\x6b\x2f\x44\x6f\x63\x75\x6d\x65\x6e\x74\x73\x2f\x4c\ +\x61\x62\x2f\x44\x72\x61\x66\x74\x2f\x69\x63\x6f\x6e\x73\x2f\x64\ +\x72\x61\x66\x74\x2e\x70\x6e\x67\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\ +\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x7a\x63\x63\x63\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ +\x33\x33\x38\x35\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x6d\x20\x35\x35\x30\x2e\x38\x30\x31\x38\x37\x2c\ +\x39\x35\x2e\x31\x38\x31\x37\x36\x20\x32\x2e\x35\x38\x36\x33\x38\ +\x2c\x32\x2e\x38\x30\x37\x34\x32\x20\x63\x20\x30\x2c\x30\x20\x30\ +\x2e\x37\x35\x33\x33\x36\x2c\x35\x2e\x32\x38\x32\x35\x31\x20\x31\ +\x2e\x32\x30\x37\x38\x38\x2c\x38\x2e\x31\x30\x33\x36\x33\x20\x30\ +\x2e\x34\x35\x34\x35\x32\x2c\x32\x2e\x38\x32\x31\x31\x31\x20\x31\ +\x2e\x35\x32\x37\x38\x37\x2c\x38\x2e\x38\x32\x30\x34\x35\x20\x31\ +\x2e\x35\x32\x37\x38\x37\x2c\x38\x2e\x38\x32\x30\x34\x35\x20\x6c\ +\x20\x2d\x31\x36\x2e\x30\x39\x30\x37\x35\x2c\x2d\x33\x2e\x37\x35\ +\x35\x38\x31\x20\x2d\x33\x2e\x37\x36\x36\x37\x2c\x2d\x34\x2e\x30\ +\x35\x34\x35\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\x66\x66\x66\ +\x66\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\ +\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\ +\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ +\x32\x2e\x34\x30\x34\x39\x38\x35\x36\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\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\x7a\ +\x63\x73\x73\x63\x63\x73\x73\x63\x63\x73\x63\x63\x63\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x2e\ +\x32\x39\x32\x36\x34\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\ +\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x2e\x32\x39\x32\x36\x34\x33\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x66\x69\x6c\x65\ +\x6e\x61\x6d\x65\x3d\x22\x2f\x68\x6f\x6d\x65\x2f\x79\x6f\x72\x69\ +\x6b\x2f\x44\x6f\x63\x75\x6d\x65\x6e\x74\x73\x2f\x4c\x61\x62\x2f\ +\x44\x72\x61\x66\x74\x2f\x69\x63\x6f\x6e\x73\x2f\x64\x72\x61\x66\ +\x74\x2e\x70\x6e\x67\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x33\x39\x30\x2d\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x35\x32\ +\x39\x2e\x34\x39\x33\x38\x35\x2c\x37\x32\x20\x35\x31\x35\x2e\x36\ +\x35\x38\x32\x2c\x38\x34\x2e\x37\x36\x30\x35\x36\x20\x63\x20\x30\ +\x2c\x30\x20\x37\x2e\x36\x31\x38\x37\x32\x2c\x38\x2e\x34\x35\x31\ +\x37\x34\x37\x20\x31\x31\x2e\x36\x36\x37\x30\x39\x2c\x31\x32\x2e\ +\x38\x34\x33\x30\x32\x32\x20\x34\x2e\x30\x34\x38\x33\x37\x2c\x34\ +\x2e\x33\x39\x31\x32\x37\x38\x20\x31\x32\x2e\x36\x32\x38\x36\x31\ +\x2c\x31\x33\x2e\x34\x39\x38\x32\x38\x38\x20\x31\x32\x2e\x36\x32\ +\x38\x36\x31\x2c\x31\x33\x2e\x34\x39\x38\x32\x38\x38\x20\x2d\x30\ +\x2e\x32\x30\x38\x34\x32\x2c\x2d\x30\x2e\x34\x33\x33\x36\x31\x20\ +\x2d\x30\x2e\x33\x32\x33\x35\x31\x2c\x2d\x30\x2e\x39\x31\x33\x30\ +\x31\x20\x2d\x30\x2e\x33\x32\x33\x35\x31\x2c\x2d\x31\x2e\x34\x31\ +\x38\x32\x31\x20\x30\x2c\x2d\x31\x2e\x39\x32\x34\x31\x34\x20\x31\ +\x2e\x36\x38\x31\x34\x37\x2c\x2d\x33\x2e\x34\x38\x33\x34\x31\x20\ +\x33\x2e\x37\x35\x31\x33\x38\x2c\x2d\x33\x2e\x34\x38\x33\x34\x31\ +\x20\x30\x2e\x35\x36\x30\x34\x36\x2c\x30\x20\x31\x2e\x30\x39\x30\ +\x39\x2c\x30\x2e\x31\x31\x35\x31\x36\x20\x31\x2e\x35\x36\x38\x35\ +\x32\x2c\x30\x2e\x33\x32\x30\x32\x33\x20\x6c\x20\x30\x2e\x32\x32\ +\x35\x34\x38\x2c\x2d\x30\x2e\x32\x30\x39\x31\x33\x20\x63\x20\x2d\ +\x30\x2e\x30\x36\x39\x39\x2c\x2d\x30\x2e\x32\x36\x35\x39\x32\x20\ +\x2d\x30\x2e\x31\x30\x37\x38\x34\x2c\x2d\x30\x2e\x35\x34\x34\x35\ +\x39\x20\x2d\x30\x2e\x31\x30\x37\x38\x34\x2c\x2d\x30\x2e\x38\x33\ +\x20\x30\x2c\x2d\x31\x2e\x39\x32\x34\x31\x36\x20\x31\x2e\x36\x37\ +\x38\x31\x38\x2c\x2d\x33\x2e\x34\x38\x36\x36\x39\x20\x33\x2e\x37\ +\x34\x38\x31\x2c\x2d\x33\x2e\x34\x38\x36\x36\x39\x20\x30\x2e\x33\ +\x31\x38\x30\x38\x2c\x30\x20\x30\x2e\x36\x32\x36\x35\x31\x2c\x30\ +\x2e\x30\x33\x38\x32\x20\x30\x2e\x39\x32\x31\x35\x31\x2c\x30\x2e\ +\x31\x30\x37\x38\x33\x20\x6c\x20\x30\x2e\x37\x38\x34\x32\x37\x2c\ +\x2d\x30\x2e\x37\x32\x32\x31\x37\x20\x63\x20\x2d\x30\x2e\x30\x34\ +\x33\x37\x2c\x2d\x30\x2e\x32\x31\x31\x36\x20\x2d\x30\x2e\x30\x36\ +\x38\x36\x2c\x2d\x30\x2e\x34\x33\x30\x33\x33\x20\x2d\x30\x2e\x30\ +\x36\x38\x36\x2c\x2d\x30\x2e\x36\x35\x33\x35\x35\x20\x30\x2c\x2d\ +\x31\x2e\x35\x31\x37\x39\x33\x20\x31\x2e\x30\x34\x38\x33\x2c\x2d\ +\x32\x2e\x38\x30\x36\x37\x20\x32\x2e\x35\x30\x36\x33\x36\x2c\x2d\ +\x33\x2e\x32\x38\x34\x30\x38\x20\x4c\x20\x35\x32\x39\x2e\x34\x39\ +\x33\x38\x38\x2c\x37\x32\x20\x6c\x20\x2d\x33\x65\x2d\x35\x2c\x30\ +\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\x39\x33\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\x65\x76\x65\x6e\x6f\ +\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\ +\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\ +\x2e\x34\x30\x34\x39\x38\x35\x36\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\x72\x6f\ +\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ +\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\ +\x3a\x30\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\ +\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\ +\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\ +\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\ +\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\ +\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x7a\x63\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\ +\x36\x2e\x32\x39\x32\x36\x34\x33\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\ +\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x2e\x32\x39\x32\x36\ +\x34\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x66\x69\ +\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x2f\x68\x6f\x6d\x65\x2f\x79\x6f\ +\x72\x69\x6b\x2f\x44\x6f\x63\x75\x6d\x65\x6e\x74\x73\x2f\x4c\x61\ +\x62\x2f\x44\x72\x61\x66\x74\x2f\x69\x63\x6f\x6e\x73\x2f\x64\x72\ +\x61\x66\x74\x2e\x70\x6e\x67\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x33\x37\x33\x2d\x37\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\ +\x35\x35\x30\x2e\x31\x39\x30\x36\x32\x2c\x31\x30\x31\x2e\x37\x38\ +\x34\x32\x36\x20\x63\x20\x30\x2c\x30\x20\x2d\x38\x2e\x35\x31\x38\ +\x34\x2c\x2d\x38\x2e\x37\x36\x39\x31\x39\x38\x20\x2d\x31\x32\x2e\ +\x35\x34\x38\x39\x37\x2c\x2d\x31\x33\x2e\x31\x30\x31\x37\x35\x34\ +\x20\x43\x20\x35\x33\x33\x2e\x36\x31\x31\x30\x38\x2c\x38\x34\x2e\ +\x33\x34\x39\x39\x34\x39\x20\x35\x32\x36\x2e\x30\x30\x31\x34\x36\ +\x2c\x37\x35\x2e\x37\x39\x39\x33\x39\x20\x35\x32\x36\x2e\x30\x30\ +\x31\x34\x36\x2c\x37\x35\x2e\x37\x39\x39\x33\x39\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ +\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ +\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ +\x64\x74\x68\x3a\x31\x2e\x30\x34\x35\x36\x37\x39\x32\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\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\x7a\x63\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\ +\x64\x70\x69\x3d\x22\x36\x2e\x32\x39\x32\x36\x34\x33\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\ +\x2e\x32\x39\x32\x36\x34\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\ +\x72\x74\x2d\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x2f\x68\x6f\ +\x6d\x65\x2f\x79\x6f\x72\x69\x6b\x2f\x44\x6f\x63\x75\x6d\x65\x6e\ +\x74\x73\x2f\x4c\x61\x62\x2f\x44\x72\x61\x66\x74\x2f\x69\x63\x6f\ +\x6e\x73\x2f\x64\x72\x61\x66\x74\x2e\x70\x6e\x67\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\ +\x33\x37\x35\x2d\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x64\x3d\x22\x6d\x20\x35\x34\x34\x2e\x39\x30\x39\x31\x35\x2c\x31\ +\x30\x36\x2e\x32\x32\x30\x37\x20\x63\x20\x30\x2c\x30\x20\x2d\x38\ +\x2e\x32\x39\x34\x31\x39\x2c\x2d\x39\x2e\x30\x38\x30\x34\x39\x33\ +\x20\x2d\x31\x32\x2e\x32\x35\x35\x33\x2c\x2d\x31\x33\x2e\x34\x32\ +\x38\x39\x31\x31\x20\x43\x20\x35\x32\x38\x2e\x36\x39\x32\x37\x34\ +\x2c\x38\x38\x2e\x34\x34\x33\x33\x37\x20\x35\x32\x31\x2e\x31\x34\ +\x32\x35\x2c\x38\x30\x2e\x31\x33\x30\x31\x39\x20\x35\x32\x31\x2e\ +\x31\x34\x32\x35\x2c\x38\x30\x2e\x31\x33\x30\x31\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ +\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ +\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x31\x2e\x30\x34\x35\x36\x37\x39\x32\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\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\x7a\x63\x63\x63\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\ +\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x2e\x32\x39\x32\x36\x34\x33\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\ +\x3d\x22\x36\x2e\x32\x39\x32\x36\x34\x33\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\ +\x78\x70\x6f\x72\x74\x2d\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\ +\x2f\x68\x6f\x6d\x65\x2f\x79\x6f\x72\x69\x6b\x2f\x44\x6f\x63\x75\ +\x6d\x65\x6e\x74\x73\x2f\x4c\x61\x62\x2f\x44\x72\x61\x66\x74\x2f\ +\x69\x63\x6f\x6e\x73\x2f\x64\x72\x61\x66\x74\x2e\x70\x6e\x67\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ +\x74\x68\x33\x33\x38\x37\x2d\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x64\x3d\x22\x6d\x20\x35\x35\x34\x2e\x37\x33\x32\x36\ +\x39\x2c\x31\x30\x36\x2e\x35\x33\x37\x35\x38\x20\x63\x20\x30\x2c\ +\x30\x20\x2d\x31\x2e\x38\x31\x37\x38\x36\x2c\x32\x2e\x37\x30\x34\ +\x32\x32\x20\x2d\x32\x2e\x39\x32\x31\x36\x39\x2c\x33\x2e\x37\x35\ +\x30\x39\x32\x20\x2d\x31\x2e\x31\x30\x33\x38\x33\x2c\x31\x2e\x30\ +\x34\x36\x37\x31\x20\x2d\x33\x2e\x37\x33\x32\x39\x37\x2c\x32\x2e\ +\x34\x38\x31\x32\x32\x20\x2d\x33\x2e\x37\x33\x32\x39\x37\x2c\x32\ +\x2e\x34\x38\x31\x32\x32\x20\x6c\x20\x38\x2e\x33\x34\x34\x37\x34\ +\x2c\x32\x2e\x31\x31\x32\x36\x20\x2d\x31\x2e\x36\x39\x30\x30\x38\ +\x2c\x2d\x38\x2e\x33\x34\x34\x37\x34\x20\x7a\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ +\x6c\x3a\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\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x31\x30\x34\x35\x36\x37\x39\ +\x32\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ +\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\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\x39\x7d\ +\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\x37\x37\x32\ +\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\x70\x6f\x6c\ +\x79\x6c\x69\x6e\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\x37\x37\x34\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\ +\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\ +\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\ +\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\ +\x31\x34\x34\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\x32\x32\ +\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ +\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\ +\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\ +\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\ +\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\ +\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\ +\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\ +\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\ +\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\ +\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\ +\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\ +\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x33\x31\x34\x34\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\x32\ +\x32\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ +\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\ +\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\ +\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\ +\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\ +\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\ +\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\ +\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\ +\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ +\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\ +\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x33\x31\x34\x34\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\ +\x32\x31\x39\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\ +\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\ +\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\ +\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\ +\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\ +\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\ +\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\ +\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\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\x33\x31\x34\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\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\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x73\x74\x6f\x70\x33\x31\x34\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\x66\x66\x66\x66\x66\x66\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\x33\x31\x34\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\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ +\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ +\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\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\x32\x31\x39\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\ +\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\ +\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ +\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\ +\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\ +\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\ +\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\ +\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\ +\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\ +\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\ +\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ +\x70\x33\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x33\ +\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\ +\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\ +\x22\x36\x34\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ +\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x33\x32\ +\x20\x3a\x20\x32\x31\x2e\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\ +\x73\x70\x65\x63\x74\x69\x76\x65\x32\x37\x38\x30\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\ +\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\ +\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x33\x32\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\x67\x72\x61\x64\x69\x65\ +\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ +\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\ +\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\ +\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\ +\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\ +\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\ +\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ +\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ +\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x32\x36\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\ +\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\ +\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ +\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\ +\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\ +\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\ +\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\ +\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\ +\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\ +\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\ +\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\ +\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x32\x36\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\ +\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\ +\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ +\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ +\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\ +\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\ +\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\ +\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\ +\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\ +\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\ +\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\ +\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x32\x36\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\ +\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\ +\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ +\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\ +\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\ +\x36\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\ +\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\ +\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\ +\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\ +\x22\x20\x2f\x3e\x0a\x20\x20\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\x31\x32\x2e\x32\x30\x36\ +\x34\x32\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x79\x3d\x22\x33\x35\x2e\x31\x35\x39\x35\x34\x33\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\ +\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\ +\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\ +\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\ +\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x30\x34\x35\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\x37\x37\x37\x22\x3e\x0a\x20\ +\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\ +\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\ +\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ +\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\ +\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\ +\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\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\x32\x34\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\x39\x32\x30\x35\ +\x35\x33\x39\x2c\x30\x2c\x30\x2c\x30\x2e\x39\x32\x30\x35\x35\x33\ +\x39\x2c\x31\x2e\x31\x34\x39\x37\x36\x32\x31\x2c\x30\x2e\x39\x36\ +\x35\x32\x32\x31\x34\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\x72\x65\x63\x74\x32\x34\x30\x34\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x35\x38\x2e\x39\x34\x36\ +\x30\x32\x33\x2c\x35\x2e\x34\x31\x34\x37\x37\x32\x37\x20\x43\x20\ +\x35\x34\x2e\x36\x31\x30\x34\x38\x39\x2c\x35\x2e\x34\x31\x34\x37\ +\x37\x32\x37\x20\x35\x31\x2e\x30\x37\x31\x30\x32\x33\x2c\x38\x2e\ +\x39\x35\x34\x32\x33\x38\x20\x35\x31\x2e\x30\x37\x31\x30\x32\x33\ +\x2c\x31\x33\x2e\x32\x38\x39\x37\x37\x33\x20\x43\x20\x35\x31\x2e\ +\x30\x37\x31\x30\x32\x33\x2c\x31\x35\x2e\x37\x35\x33\x38\x30\x38\ +\x20\x35\x32\x2e\x32\x33\x31\x34\x30\x37\x2c\x31\x37\x2e\x39\x34\ +\x33\x31\x36\x36\x20\x35\x34\x2e\x30\x30\x38\x35\x32\x33\x2c\x31\ +\x39\x2e\x33\x38\x33\x35\x32\x33\x20\x4c\x20\x34\x35\x2e\x37\x32\ +\x37\x32\x37\x33\x2c\x34\x33\x2e\x35\x33\x39\x37\x37\x33\x20\x43\ +\x20\x34\x34\x2e\x34\x37\x37\x32\x36\x2c\x34\x33\x2e\x35\x30\x37\ +\x31\x38\x32\x20\x34\x33\x2e\x32\x37\x31\x38\x35\x36\x2c\x34\x33\ +\x2e\x37\x38\x34\x35\x33\x35\x20\x34\x32\x2e\x31\x39\x36\x30\x32\ +\x33\x2c\x34\x34\x2e\x32\x38\x39\x37\x37\x33\x20\x4c\x20\x33\x33\ +\x2e\x36\x33\x33\x35\x32\x33\x2c\x33\x33\x2e\x30\x30\x38\x35\x32\ +\x33\x20\x43\x20\x33\x34\x2e\x32\x34\x31\x38\x38\x33\x2c\x33\x31\ +\x2e\x39\x34\x37\x39\x33\x38\x20\x33\x34\x2e\x36\x31\x32\x31\x35\ +\x33\x2c\x33\x30\x2e\x37\x32\x30\x32\x34\x32\x20\x33\x34\x2e\x36\ +\x36\x34\x37\x37\x33\x2c\x32\x39\x2e\x34\x31\x34\x37\x37\x33\x20\ +\x43\x20\x33\x34\x2e\x38\x33\x39\x33\x38\x36\x2c\x32\x35\x2e\x30\ +\x38\x32\x37\x35\x36\x20\x33\x31\x2e\x34\x36\x35\x35\x34\x31\x2c\ +\x32\x31\x2e\x34\x33\x33\x31\x33\x35\x20\x32\x37\x2e\x31\x33\x33\ +\x35\x32\x33\x2c\x32\x31\x2e\x32\x35\x38\x35\x32\x33\x20\x43\x20\ +\x32\x32\x2e\x38\x30\x31\x35\x30\x36\x2c\x32\x31\x2e\x30\x38\x33\ +\x39\x31\x20\x31\x39\x2e\x31\x35\x31\x38\x38\x37\x2c\x32\x34\x2e\ +\x34\x35\x37\x37\x35\x36\x20\x31\x38\x2e\x39\x37\x37\x32\x37\x33\ +\x2c\x32\x38\x2e\x37\x38\x39\x37\x37\x33\x20\x43\x20\x31\x38\x2e\ +\x38\x39\x32\x32\x32\x2c\x33\x30\x2e\x38\x39\x39\x38\x37\x35\x20\ +\x31\x39\x2e\x36\x34\x36\x35\x34\x31\x2c\x33\x32\x2e\x38\x35\x35\ +\x35\x34\x20\x32\x30\x2e\x39\x34\x36\x30\x32\x33\x2c\x33\x34\x2e\ +\x33\x32\x31\x30\x32\x33\x20\x4c\x20\x31\x34\x2e\x36\x39\x36\x30\ +\x32\x33\x2c\x34\x35\x2e\x31\x36\x34\x37\x37\x33\x20\x43\x20\x31\ +\x34\x2e\x33\x34\x31\x39\x30\x39\x2c\x34\x35\x2e\x31\x30\x36\x36\ +\x39\x39\x20\x31\x34\x2e\x30\x30\x32\x33\x34\x37\x2c\x34\x35\x2e\ +\x30\x34\x38\x39\x20\x31\x33\x2e\x36\x33\x33\x35\x32\x33\x2c\x34\ +\x35\x2e\x30\x33\x39\x37\x37\x33\x20\x43\x20\x39\x2e\x32\x39\x39\ +\x33\x31\x35\x37\x2c\x34\x34\x2e\x39\x33\x32\x35\x31\x35\x20\x35\ +\x2e\x36\x37\x38\x32\x38\x30\x37\x2c\x34\x38\x2e\x33\x36\x31\x38\ +\x31\x36\x20\x35\x2e\x35\x37\x31\x30\x32\x32\x37\x2c\x35\x32\x2e\ +\x36\x39\x36\x30\x32\x33\x20\x43\x20\x35\x2e\x34\x36\x33\x37\x36\ +\x34\x37\x2c\x35\x37\x2e\x30\x33\x30\x32\x33\x20\x38\x2e\x38\x39\ +\x33\x30\x36\x35\x37\x2c\x36\x30\x2e\x36\x35\x31\x32\x36\x35\x20\ +\x31\x33\x2e\x32\x32\x37\x32\x37\x33\x2c\x36\x30\x2e\x37\x35\x38\ +\x35\x32\x33\x20\x43\x20\x31\x37\x2e\x35\x36\x31\x34\x38\x2c\x36\ +\x30\x2e\x38\x36\x35\x37\x38\x31\x20\x32\x31\x2e\x31\x38\x32\x35\ +\x31\x36\x2c\x35\x37\x2e\x34\x33\x36\x34\x38\x20\x32\x31\x2e\x32\ +\x38\x39\x37\x37\x33\x2c\x35\x33\x2e\x31\x30\x32\x32\x37\x33\x20\ +\x43\x20\x32\x31\x2e\x33\x34\x34\x36\x32\x2c\x35\x30\x2e\x38\x38\ +\x35\x39\x36\x32\x20\x32\x30\x2e\x34\x35\x31\x36\x31\x36\x2c\x34\ +\x38\x2e\x38\x34\x38\x32\x31\x39\x20\x31\x39\x2e\x30\x30\x38\x35\ +\x32\x33\x2c\x34\x37\x2e\x33\x38\x33\x35\x32\x33\x20\x4c\x20\x32\ +\x35\x2e\x31\x33\x33\x35\x32\x33\x2c\x33\x36\x2e\x37\x35\x38\x35\ +\x32\x33\x20\x43\x20\x32\x35\x2e\x35\x38\x31\x35\x32\x36\x2c\x33\ +\x36\x2e\x38\x35\x37\x34\x38\x37\x20\x32\x36\x2e\x30\x33\x34\x31\ +\x34\x36\x2c\x33\x36\x2e\x39\x32\x36\x39\x30\x32\x20\x32\x36\x2e\ +\x35\x30\x38\x35\x32\x33\x2c\x33\x36\x2e\x39\x34\x36\x30\x32\x33\ +\x20\x43\x20\x32\x37\x2e\x37\x36\x34\x39\x39\x39\x2c\x33\x36\x2e\ +\x39\x39\x36\x36\x36\x39\x20\x32\x38\x2e\x39\x36\x35\x33\x30\x33\ +\x2c\x33\x36\x2e\x37\x34\x31\x37\x34\x20\x33\x30\x2e\x30\x33\x39\ +\x37\x37\x33\x2c\x33\x36\x2e\x32\x35\x38\x35\x32\x33\x20\x4c\x20\ +\x33\x38\x2e\x36\x36\x34\x37\x37\x33\x2c\x34\x37\x2e\x36\x33\x33\ +\x35\x32\x33\x20\x43\x20\x33\x38\x2e\x31\x39\x35\x33\x32\x39\x2c\ +\x34\x38\x2e\x34\x38\x38\x34\x36\x38\x20\x33\x37\x2e\x38\x35\x30\ +\x37\x36\x33\x2c\x34\x39\x2e\x34\x31\x38\x38\x30\x33\x20\x33\x37\ +\x2e\x37\x32\x37\x32\x37\x33\x2c\x35\x30\x2e\x34\x34\x36\x30\x32\ +\x33\x20\x43\x20\x33\x37\x2e\x32\x30\x39\x37\x38\x39\x2c\x35\x34\ +\x2e\x37\x35\x30\x35\x36\x33\x20\x34\x30\x2e\x32\x39\x37\x37\x33\ +\x34\x2c\x35\x38\x2e\x36\x37\x38\x35\x33\x39\x20\x34\x34\x2e\x36\ +\x30\x32\x32\x37\x33\x2c\x35\x39\x2e\x31\x39\x36\x30\x32\x33\x20\ +\x43\x20\x34\x38\x2e\x39\x30\x36\x38\x31\x33\x2c\x35\x39\x2e\x37\ +\x31\x33\x35\x30\x37\x20\x35\x32\x2e\x38\x30\x33\x35\x33\x39\x2c\ +\x35\x36\x2e\x36\x32\x35\x35\x36\x33\x20\x35\x33\x2e\x33\x32\x31\ +\x30\x32\x33\x2c\x35\x32\x2e\x33\x32\x31\x30\x32\x33\x20\x43\x20\ +\x35\x33\x2e\x36\x36\x33\x34\x33\x37\x2c\x34\x39\x2e\x34\x37\x32\ +\x37\x35\x34\x20\x35\x32\x2e\x34\x33\x39\x34\x32\x39\x2c\x34\x36\ +\x2e\x38\x30\x30\x30\x36\x20\x35\x30\x2e\x33\x32\x31\x30\x32\x33\ +\x2c\x34\x35\x2e\x31\x36\x34\x37\x37\x33\x20\x4c\x20\x35\x38\x2e\ +\x35\x30\x38\x35\x32\x33\x2c\x32\x31\x2e\x31\x30\x32\x32\x37\x33\ +\x20\x43\x20\x35\x38\x2e\x36\x35\x32\x36\x35\x37\x2c\x32\x31\x2e\ +\x31\x31\x30\x31\x36\x20\x35\x38\x2e\x37\x39\x39\x39\x33\x31\x2c\ +\x32\x31\x2e\x31\x33\x33\x35\x32\x33\x20\x35\x38\x2e\x39\x34\x36\ +\x30\x32\x33\x2c\x32\x31\x2e\x31\x33\x33\x35\x32\x33\x20\x43\x20\ +\x36\x33\x2e\x32\x38\x31\x35\x35\x37\x2c\x32\x31\x2e\x31\x33\x33\ +\x35\x32\x33\x20\x36\x36\x2e\x37\x38\x39\x37\x37\x33\x2c\x31\x37\ +\x2e\x36\x32\x35\x33\x30\x36\x20\x36\x36\x2e\x37\x38\x39\x37\x37\ +\x33\x2c\x31\x33\x2e\x32\x38\x39\x37\x37\x33\x20\x43\x20\x36\x36\ +\x2e\x37\x38\x39\x37\x37\x33\x2c\x38\x2e\x39\x35\x34\x32\x33\x39\ +\x20\x36\x33\x2e\x32\x38\x31\x35\x35\x37\x2c\x35\x2e\x34\x31\x34\ +\x37\x37\x32\x37\x20\x35\x38\x2e\x39\x34\x36\x30\x32\x33\x2c\x35\ +\x2e\x34\x31\x34\x37\x37\x32\x37\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\x34\x39\x33\x37\x37\x35\x39\x37\x3b\x66\ +\x69\x6c\x6c\x3a\x23\x30\x33\x30\x33\x30\x33\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\x30\x2e\x39\x33\x37\x38\x38\x37\x37\x33\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\ +\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\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\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x30\x2e\x31\x36\x31\x37\x30\x34\x37\x2c\x30\x2c\x30\x2c\x30\x2e\ +\x31\x36\x31\x37\x30\x34\x37\x2c\x2d\x36\x38\x2e\x35\x35\x34\x32\ +\x34\x39\x2c\x2d\x35\x38\x2e\x35\x39\x36\x37\x33\x32\x29\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x34\x33\ +\x30\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x72\x65\ +\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x30\x2e\x38\x36\x36\x38\x38\x39\x34\x2c\x30\x2e\x34\x39\x38\x35\ +\x30\x30\x35\x2c\x2d\x30\x2e\x34\x39\x38\x35\x30\x30\x35\x2c\x30\ +\x2e\x38\x36\x36\x38\x38\x39\x34\x2c\x30\x2c\x30\x29\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x39\x31\ +\x2e\x36\x38\x31\x39\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x78\x3d\x22\x37\x33\x36\x2e\x37\x35\x32\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\ +\x74\x3d\x22\x31\x34\x36\x2e\x38\x32\x30\x38\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\ +\x33\x30\x2e\x30\x30\x30\x30\x30\x34\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x34\x32\ +\x36\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\x66\x66\x66\ +\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\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\ +\x35\x2e\x38\x30\x30\x30\x30\x32\x35\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\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\x20\x20\x3c\x72\ +\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\ +\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ +\x28\x30\x2e\x39\x34\x36\x33\x38\x30\x35\x2c\x30\x2e\x33\x32\x33\ +\x30\x35\x34\x32\x2c\x2d\x30\x2e\x33\x32\x33\x30\x35\x34\x32\x2c\ +\x30\x2e\x39\x34\x36\x33\x38\x30\x35\x2c\x30\x2c\x30\x29\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x35\ +\x36\x2e\x36\x38\x38\x35\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x78\x3d\x22\x38\x34\x33\x2e\x35\x32\x38\x38\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\ +\x67\x68\x74\x3d\x22\x32\x36\x39\x2e\x34\x36\x30\x36\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\ +\x3d\x22\x33\x30\x2e\x30\x30\x30\x30\x36\x33\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\ +\x34\x32\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\x66\ +\x66\x66\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\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\x35\x2e\x38\x30\x30\x30\x31\x30\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\x20\x20\x3c\ +\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ +\x78\x28\x2d\x30\x2e\x37\x39\x37\x34\x33\x33\x37\x2c\x30\x2e\x36\ +\x30\x33\x34\x30\x36\x36\x2c\x2d\x30\x2e\x36\x30\x33\x34\x30\x36\ +\x36\x2c\x2d\x30\x2e\x37\x39\x37\x34\x33\x33\x37\x2c\x30\x2c\x30\ +\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\x3d\ +\x22\x2d\x39\x35\x38\x2e\x33\x38\x30\x35\x35\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x31\x34\x38\x2e\ +\x30\x38\x35\x37\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x31\x37\x2e\x31\x36\ +\x32\x33\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x77\x69\x64\x74\x68\x3d\x22\x33\x30\x2e\x30\x30\x30\x30\x31\x35\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x72\x65\x63\x74\x34\x32\x37\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ +\x6c\x3a\x23\x66\x66\x66\x66\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\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\x35\x2e\x38\x30\x30\x30\x30\x32\x35\ +\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\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\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x67\x32\x31\x38\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\ +\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\x2e\x39\x39\ +\x39\x36\x39\x33\x39\x2c\x2d\x32\x2e\x34\x37\x33\x39\x32\x38\x65\ +\x2d\x32\x2c\x32\x2e\x34\x37\x33\x39\x32\x38\x65\x2d\x32\x2c\x2d\ +\x30\x2e\x39\x39\x39\x36\x39\x33\x39\x2c\x36\x36\x30\x2e\x38\x37\ +\x32\x38\x36\x2c\x31\x33\x33\x37\x2e\x32\x35\x38\x31\x29\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ +\x22\x4d\x20\x32\x34\x35\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\ +\x2e\x32\x31\x39\x33\x20\x41\x20\x34\x38\x2e\x35\x37\x31\x34\x33\ +\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\ +\x31\x34\x38\x2e\x35\x37\x31\x34\x32\x2c\x36\x35\x35\x2e\x32\x31\ +\x39\x33\x20\x41\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\ +\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x32\x34\x35\ +\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\ +\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x34\x38\x2e\ +\x35\x37\x31\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\ +\x22\x34\x38\x2e\x35\x37\x31\x34\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x63\x79\x3d\x22\x36\x35\x35\x2e\x32\x31\x39\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x31\x39\x37\x2e\x31\x34\x32\ +\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x31\x38\x32\x22\x0a\x20\ +\x20\x20\x20\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\x66\x66\x61\x39\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\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x37\x39\x39\x39\x39\x39\x37\ +\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\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x74\x79\x70\x65\x3d\x22\x61\x72\x63\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\ +\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x38\ +\x35\x31\x33\x30\x32\x33\x2c\x2d\x30\x2e\x35\x32\x34\x36\x37\x35\ +\x34\x2c\x30\x2e\x35\x32\x34\x36\x37\x35\x34\x2c\x30\x2e\x38\x35\ +\x31\x33\x30\x32\x33\x2c\x2d\x33\x33\x38\x2e\x36\x39\x36\x39\x32\ +\x2c\x32\x31\x34\x2e\x31\x39\x33\x32\x38\x29\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\ +\x35\x39\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\ +\x33\x36\x20\x41\x20\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\ +\x33\x2e\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\x20\x31\x20\x31\ +\x39\x30\x2e\x39\x31\x38\x38\x33\x2c\x36\x37\x32\x2e\x37\x39\x37\ +\x33\x36\x20\x41\x20\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\ +\x33\x2e\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\x20\x31\x20\x32\ +\x35\x39\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\ +\x33\x36\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\ +\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x72\x78\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\ +\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x32\ +\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\ +\x31\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\ +\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x33\x32\x36\x33\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\ +\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\ +\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\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\x63\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x32\x31\x38\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\ +\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\x2e\x39\ +\x39\x39\x31\x38\x38\x36\x2c\x2d\x34\x2e\x30\x32\x37\x34\x39\x36\ +\x31\x65\x2d\x32\x2c\x34\x2e\x30\x32\x37\x34\x39\x36\x31\x65\x2d\ +\x32\x2c\x2d\x30\x2e\x39\x39\x39\x31\x38\x38\x36\x2c\x37\x33\x33\ +\x2e\x34\x35\x31\x31\x31\x2c\x31\x31\x39\x32\x2e\x38\x34\x36\x39\ +\x29\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x4d\x20\x32\x34\x35\x2e\x37\x31\x34\x32\x38\x2c\ +\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x41\x20\x34\x38\x2e\x35\x37\ +\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\ +\x20\x31\x20\x31\x34\x38\x2e\x35\x37\x31\x34\x32\x2c\x36\x35\x35\ +\x2e\x32\x31\x39\x33\x20\x41\x20\x34\x38\x2e\x35\x37\x31\x34\x33\ +\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\ +\x32\x34\x35\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\ +\x39\x33\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\ +\x34\x38\x2e\x35\x37\x31\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x72\x78\x3d\x22\x34\x38\x2e\x35\x37\x31\x34\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x63\x79\x3d\x22\x36\x35\x35\x2e\x32\x31\x39\x33\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x31\x39\x37\x2e\ +\x31\x34\x32\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x31\x38\x38\ +\x22\x0a\x20\x20\x20\x20\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\x66\x66\x61\x39\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\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x37\x39\x39\x39\ +\x39\x39\x37\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\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\x63\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x30\x2e\x38\x35\x31\x33\x30\x32\x33\x2c\x2d\x30\x2e\x35\x32\x34\ +\x36\x37\x35\x34\x2c\x30\x2e\x35\x32\x34\x36\x37\x35\x34\x2c\x30\ +\x2e\x38\x35\x31\x33\x30\x32\x33\x2c\x2d\x33\x33\x38\x2e\x36\x39\ +\x36\x39\x32\x2c\x32\x31\x34\x2e\x31\x39\x33\x32\x38\x29\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ +\x4d\x20\x32\x35\x39\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\ +\x37\x39\x37\x33\x36\x20\x41\x20\x33\x34\x2e\x33\x34\x35\x31\x38\ +\x38\x2c\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\x20\ +\x31\x20\x31\x39\x30\x2e\x39\x31\x38\x38\x33\x2c\x36\x37\x32\x2e\ +\x37\x39\x37\x33\x36\x20\x41\x20\x33\x34\x2e\x33\x34\x35\x31\x38\ +\x38\x2c\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\x20\ +\x31\x20\x32\x35\x39\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\ +\x37\x39\x37\x33\x36\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\ +\x79\x3d\x22\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x72\x78\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\x36\x37\x32\ +\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\ +\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ +\x74\x68\x32\x31\x39\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ +\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x33\x32\x36\x35\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ +\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3a\x30\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\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\x63\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x32\x31\x39\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\ +\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\ +\x30\x2e\x39\x39\x32\x38\x35\x31\x32\x2c\x2d\x30\x2e\x31\x31\x39\ +\x33\x35\x38\x38\x2c\x30\x2e\x31\x31\x39\x33\x35\x38\x38\x2c\x2d\ +\x30\x2e\x39\x39\x32\x38\x35\x31\x32\x2c\x37\x39\x36\x2e\x30\x39\ +\x38\x37\x33\x2c\x31\x33\x34\x32\x2e\x31\x34\x32\x35\x29\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ +\x22\x4d\x20\x32\x34\x35\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\ +\x2e\x32\x31\x39\x33\x20\x41\x20\x34\x38\x2e\x35\x37\x31\x34\x33\ +\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\ +\x31\x34\x38\x2e\x35\x37\x31\x34\x32\x2c\x36\x35\x35\x2e\x32\x31\ +\x39\x33\x20\x41\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\ +\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x32\x34\x35\ +\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\ +\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x34\x38\x2e\ +\x35\x37\x31\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\ +\x22\x34\x38\x2e\x35\x37\x31\x34\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x63\x79\x3d\x22\x36\x35\x35\x2e\x32\x31\x39\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x31\x39\x37\x2e\x31\x34\x32\ +\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x31\x39\x38\x22\x0a\x20\ +\x20\x20\x20\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\x66\x66\x61\x39\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\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x37\x39\x39\x39\x39\x39\x37\ +\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\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x74\x79\x70\x65\x3d\x22\x61\x72\x63\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\ +\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x38\ +\x35\x31\x33\x30\x32\x33\x2c\x2d\x30\x2e\x35\x32\x34\x36\x37\x35\ +\x34\x2c\x30\x2e\x35\x32\x34\x36\x37\x35\x34\x2c\x30\x2e\x38\x35\ +\x31\x33\x30\x32\x33\x2c\x2d\x33\x33\x38\x2e\x36\x39\x36\x39\x32\ +\x2c\x32\x31\x34\x2e\x31\x39\x33\x32\x38\x29\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\ +\x35\x39\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\ +\x33\x36\x20\x41\x20\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\ +\x33\x2e\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\x20\x31\x20\x31\ +\x39\x30\x2e\x39\x31\x38\x38\x33\x2c\x36\x37\x32\x2e\x37\x39\x37\ +\x33\x36\x20\x41\x20\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\ +\x33\x2e\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\x20\x31\x20\x32\ +\x35\x39\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\ +\x33\x36\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\ +\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x72\x78\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\ +\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x32\ +\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\ +\x32\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\ +\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x33\x32\x36\x37\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\ +\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\ +\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\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\x63\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x32\x32\x30\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\ +\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x31\x2c\x30\ +\x2c\x30\x2c\x2d\x31\x2c\x39\x35\x38\x2e\x35\x37\x31\x34\x33\x2c\ +\x31\x30\x38\x37\x2e\x35\x38\x31\x35\x29\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\ +\x34\x35\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\ +\x33\x20\x41\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\ +\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x31\x34\x38\x2e\ +\x35\x37\x31\x34\x32\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x41\ +\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\x31\ +\x34\x33\x20\x30\x20\x31\x20\x31\x20\x32\x34\x35\x2e\x37\x31\x34\ +\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x7a\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x34\x38\x2e\x35\x37\x31\x34\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\x34\x38\x2e\ +\x35\x37\x31\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\ +\x22\x36\x35\x35\x2e\x32\x31\x39\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x63\x78\x3d\x22\x31\x39\x37\x2e\x31\x34\x32\x38\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x61\x74\x68\x32\x32\x30\x36\x22\x0a\x20\x20\x20\x20\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\x66\ +\x66\x61\x39\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\x23\x30\ +\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ +\x74\x68\x3a\x35\x2e\x37\x39\x39\x39\x39\x39\x37\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\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\ +\x3d\x22\x61\x72\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x38\x35\x31\x33\x30\ +\x32\x33\x2c\x2d\x30\x2e\x35\x32\x34\x36\x37\x35\x34\x2c\x30\x2e\ +\x35\x32\x34\x36\x37\x35\x34\x2c\x30\x2e\x38\x35\x31\x33\x30\x32\ +\x33\x2c\x2d\x33\x33\x38\x2e\x36\x39\x36\x39\x32\x2c\x32\x31\x34\ +\x2e\x31\x39\x33\x32\x38\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x35\x39\x2e\x36\ +\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x41\ +\x20\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\x33\x2e\x39\x39\ +\x31\x31\x32\x33\x20\x30\x20\x31\x20\x31\x20\x31\x39\x30\x2e\x39\ +\x31\x38\x38\x33\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x41\ +\x20\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\x33\x2e\x39\x39\ +\x31\x31\x32\x33\x20\x30\x20\x31\x20\x31\x20\x32\x35\x39\x2e\x36\ +\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x7a\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x32\x33\x2e\x39\ +\x39\x31\x31\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\ +\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\ +\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x32\x30\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\ +\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x32\x36\ +\x39\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\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\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\ +\x79\x70\x65\x3d\x22\x61\x72\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\ +\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ \x00\x00\x12\x92\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ @@ -27497,591 +58201,2364 @@ qt_resource_data = "\ \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\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\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\x28\x03\ +\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\x38\x36\x39\ +\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\x61\x72\x63\ +\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\x38\x37\x31\ +\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\ +\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\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\x32\x33\x37\x38\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\ +\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\ +\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ +\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ +\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\ +\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\ +\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\ +\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\ +\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\ +\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\ +\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\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\x32\x33\x36\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\ +\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\ +\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ +\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\ +\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\ +\x36\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\ +\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\ +\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\ +\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\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\x33\x31\x34\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\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\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\ +\x31\x34\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\ +\x66\x66\x66\x66\x66\x66\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\x33\x31\x34\ +\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\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\ +\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x31\x34\x34\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\x32\x33\x37\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ +\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\ +\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\ +\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\x30\ +\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x37\ +\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\ +\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\ +\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\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\x38\x37\x37\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\ +\x2d\x31\x37\x2e\x37\x31\x39\x30\x32\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x34\x32\ +\x2e\x37\x32\x34\x32\x30\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\x32\x38\ +\x37\x34\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\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\x61\x72\ +\x63\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\x37\x34\x38\x30\x33\x33\x35\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\x37\x34\ +\x38\x30\x33\x33\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\x34\x36\x35\x36\x37\x2c\x30\x2c\x30\x2c\x30\x2e\x31\ +\x34\x36\x35\x36\x37\x2c\x37\x30\x2e\x34\x30\x32\x33\x35\x39\x2c\ +\x2d\x35\x35\x2e\x31\x32\x39\x36\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\x33\x35\x34\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x2d\x33\ +\x36\x34\x2e\x35\x30\x39\x34\x34\x2c\x34\x35\x33\x2e\x31\x32\x38\ +\x37\x20\x43\x20\x2d\x33\x38\x38\x2e\x39\x34\x34\x34\x38\x2c\x34\ +\x35\x33\x2e\x38\x31\x33\x34\x20\x2d\x34\x30\x38\x2e\x38\x35\x34\ +\x32\x32\x2c\x34\x37\x33\x2e\x35\x39\x31\x30\x35\x20\x2d\x34\x30\ +\x39\x2e\x34\x31\x35\x36\x37\x2c\x34\x39\x38\x2e\x33\x30\x32\x35\ +\x38\x20\x43\x20\x2d\x34\x30\x39\x2e\x39\x39\x35\x32\x31\x2c\x35\ +\x32\x33\x2e\x38\x31\x31\x32\x34\x20\x2d\x33\x38\x39\x2e\x37\x35\ +\x30\x34\x34\x2c\x35\x34\x34\x2e\x39\x37\x38\x36\x37\x20\x2d\x33\ +\x36\x34\x2e\x32\x34\x31\x37\x39\x2c\x35\x34\x35\x2e\x35\x35\x38\ +\x32\x32\x20\x43\x20\x2d\x33\x34\x36\x2e\x36\x34\x32\x38\x32\x2c\ +\x35\x34\x35\x2e\x39\x35\x38\x30\x35\x20\x2d\x33\x33\x31\x2e\x30\ +\x39\x36\x32\x34\x2c\x35\x33\x36\x2e\x34\x36\x34\x33\x34\x20\x2d\ +\x33\x32\x32\x2e\x39\x36\x33\x37\x34\x2c\x35\x32\x32\x2e\x31\x35\ +\x33\x34\x34\x20\x43\x20\x2d\x32\x32\x33\x2e\x38\x33\x36\x35\x36\ +\x2c\x35\x33\x38\x2e\x38\x35\x35\x31\x37\x20\x2d\x31\x34\x35\x2e\ +\x31\x35\x37\x31\x31\x2c\x36\x31\x31\x2e\x39\x39\x31\x32\x39\x20\ +\x2d\x31\x32\x35\x2e\x30\x37\x38\x39\x33\x2c\x37\x30\x35\x2e\x33\ +\x34\x37\x30\x38\x20\x43\x20\x2d\x31\x33\x38\x2e\x33\x31\x32\x36\ +\x37\x2c\x37\x31\x33\x2e\x37\x38\x38\x32\x39\x20\x2d\x31\x34\x36\ +\x2e\x39\x31\x31\x38\x36\x2c\x37\x32\x38\x2e\x37\x36\x31\x31\x32\ +\x20\x2d\x31\x34\x36\x2e\x34\x36\x31\x34\x33\x2c\x37\x34\x35\x2e\ +\x35\x38\x34\x32\x36\x20\x43\x20\x2d\x31\x34\x35\x2e\x37\x37\x38\ +\x35\x31\x2c\x37\x37\x31\x2e\x30\x39\x30\x33\x35\x20\x2d\x31\x32\ +\x34\x2e\x35\x33\x33\x34\x37\x2c\x37\x39\x31\x2e\x32\x33\x32\x38\ +\x36\x20\x2d\x39\x39\x2e\x30\x32\x37\x33\x36\x2c\x37\x39\x30\x2e\ +\x35\x34\x39\x39\x37\x20\x43\x20\x2d\x37\x33\x2e\x35\x32\x31\x32\ +\x37\x2c\x37\x38\x39\x2e\x38\x36\x37\x30\x35\x20\x2d\x35\x33\x2e\ +\x33\x37\x38\x37\x32\x37\x2c\x37\x36\x38\x2e\x35\x39\x32\x32\x34\ +\x20\x2d\x35\x34\x2e\x30\x36\x31\x36\x35\x34\x2c\x37\x34\x33\x2e\ +\x30\x38\x36\x31\x36\x20\x43\x20\x2d\x35\x34\x2e\x36\x38\x36\x30\ +\x31\x36\x2c\x37\x31\x39\x2e\x37\x36\x36\x39\x34\x20\x2d\x37\x32\ +\x2e\x34\x39\x39\x32\x38\x2c\x37\x30\x30\x2e\x39\x35\x35\x30\x34\ +\x20\x2d\x39\x35\x2e\x30\x34\x32\x33\x31\x2c\x36\x39\x38\x2e\x34\ +\x31\x37\x38\x34\x20\x43\x20\x2d\x31\x31\x37\x2e\x32\x39\x39\x35\ +\x37\x2c\x35\x39\x32\x2e\x38\x32\x35\x38\x35\x20\x2d\x32\x30\x35\ +\x2e\x39\x37\x32\x32\x38\x2c\x35\x31\x30\x2e\x31\x33\x30\x39\x39\ +\x20\x2d\x33\x31\x37\x2e\x35\x38\x30\x39\x34\x2c\x34\x39\x31\x2e\ +\x38\x34\x39\x31\x37\x20\x43\x20\x2d\x33\x32\x31\x2e\x31\x30\x36\ +\x31\x38\x2c\x34\x37\x30\x2e\x33\x32\x37\x34\x35\x20\x2d\x33\x33\ +\x39\x2e\x35\x34\x31\x31\x37\x2c\x34\x35\x33\x2e\x36\x34\x31\x39\ +\x31\x20\x2d\x33\x36\x32\x2e\x31\x33\x30\x33\x2c\x34\x35\x33\x2e\ +\x31\x32\x38\x37\x20\x43\x20\x2d\x33\x36\x32\x2e\x39\x32\x37\x34\ +\x35\x2c\x34\x35\x33\x2e\x31\x31\x30\x35\x39\x20\x2d\x33\x36\x33\ +\x2e\x37\x32\x31\x32\x31\x2c\x34\x35\x33\x2e\x31\x30\x36\x36\x31\ +\x20\x2d\x33\x36\x34\x2e\x35\x30\x39\x34\x34\x2c\x34\x35\x33\x2e\ +\x31\x32\x38\x37\x20\x7a\x20\x4d\x20\x2d\x33\x36\x39\x2e\x33\x32\ +\x37\x32\x2c\x36\x39\x38\x2e\x31\x32\x30\x34\x35\x20\x43\x20\x2d\ +\x33\x39\x34\x2e\x38\x33\x33\x32\x39\x2c\x36\x39\x38\x2e\x38\x30\ +\x33\x33\x37\x20\x2d\x34\x31\x34\x2e\x39\x37\x35\x38\x35\x2c\x37\ +\x32\x30\x2e\x30\x37\x38\x31\x36\x20\x2d\x34\x31\x34\x2e\x32\x39\ +\x32\x39\x31\x2c\x37\x34\x35\x2e\x35\x38\x34\x32\x36\x20\x43\x20\ +\x2d\x34\x31\x33\x2e\x36\x30\x39\x39\x39\x2c\x37\x37\x31\x2e\x30\ +\x39\x30\x33\x35\x20\x2d\x33\x39\x32\x2e\x33\x36\x34\x39\x32\x2c\ +\x37\x39\x31\x2e\x32\x33\x32\x38\x36\x20\x2d\x33\x36\x36\x2e\x38\ +\x35\x38\x38\x34\x2c\x37\x39\x30\x2e\x35\x34\x39\x39\x37\x20\x43\ +\x20\x2d\x33\x34\x31\x2e\x33\x35\x32\x37\x35\x2c\x37\x38\x39\x2e\ +\x38\x36\x37\x30\x35\x20\x2d\x33\x32\x31\x2e\x32\x31\x30\x32\x32\ +\x2c\x37\x36\x38\x2e\x35\x39\x32\x32\x34\x20\x2d\x33\x32\x31\x2e\ +\x38\x39\x33\x31\x33\x2c\x37\x34\x33\x2e\x30\x38\x36\x31\x36\x20\ +\x43\x20\x2d\x33\x32\x32\x2e\x35\x37\x36\x30\x35\x2c\x37\x31\x37\ +\x2e\x35\x38\x30\x30\x37\x20\x2d\x33\x34\x33\x2e\x38\x32\x31\x30\ +\x39\x2c\x36\x39\x37\x2e\x34\x33\x37\x35\x34\x20\x2d\x33\x36\x39\ +\x2e\x33\x32\x37\x32\x2c\x36\x39\x38\x2e\x31\x32\x30\x34\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\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x35\x30\x39\x38\x30\x33\x38\ +\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\x35\x2e\x38\x30\ +\x30\x30\x30\x30\x31\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\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\x67\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\x73\x74\x79\x6c\x65\x3d\x22\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\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\x35\x2e\x38\x30\x30\x30\x30\x30\x31\x39\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ +\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ +\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x6d\x61\x72\x6b\x65\x72\x3a\ +\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x73\x74\x61\x72\ +\x74\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x6d\x69\ +\x64\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x65\x6e\ +\x64\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ +\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\ +\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\ +\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\ +\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\ +\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\ +\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\ +\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x64\x3d\x22\x4d\x20\x2d\x34\x31\x32\x2c\x34\x34\x32\x2e\ +\x39\x33\x37\x35\x20\x4c\x20\x2d\x34\x31\x32\x2c\x34\x37\x34\x2e\ +\x39\x36\x38\x37\x35\x20\x43\x20\x2d\x32\x37\x30\x2e\x31\x39\x32\ +\x30\x32\x2c\x34\x37\x35\x2e\x39\x39\x35\x37\x32\x20\x2d\x31\x35\ +\x35\x2e\x34\x33\x37\x35\x2c\x35\x38\x35\x2e\x36\x35\x38\x37\x39\ +\x20\x2d\x31\x35\x35\x2e\x34\x33\x37\x35\x2c\x37\x32\x30\x2e\x36\ +\x35\x36\x32\x35\x20\x43\x20\x2d\x31\x35\x35\x2e\x34\x33\x37\x35\ +\x2c\x37\x32\x30\x2e\x38\x31\x31\x32\x32\x20\x2d\x31\x35\x35\x2e\ +\x34\x33\x37\x32\x34\x2c\x37\x32\x30\x2e\x39\x34\x35\x38\x32\x20\ +\x2d\x31\x35\x35\x2e\x34\x33\x37\x35\x2c\x37\x32\x31\x2e\x30\x39\ +\x33\x37\x35\x20\x4c\x20\x2d\x31\x32\x33\x2e\x34\x33\x37\x35\x2c\ +\x37\x32\x31\x2e\x34\x30\x36\x32\x35\x20\x43\x20\x2d\x31\x32\x33\ +\x2e\x34\x32\x37\x33\x36\x2c\x37\x32\x30\x2e\x34\x33\x37\x34\x33\ +\x20\x2d\x31\x32\x33\x2e\x34\x33\x37\x35\x2c\x37\x31\x39\x2e\x36\ +\x32\x35\x30\x39\x20\x2d\x31\x32\x33\x2e\x34\x33\x37\x35\x2c\x37\ +\x31\x38\x2e\x36\x35\x36\x32\x35\x20\x43\x20\x2d\x31\x32\x33\x2e\ +\x34\x33\x37\x35\x2c\x35\x36\x36\x2e\x34\x36\x31\x39\x38\x20\x2d\ +\x32\x35\x32\x2e\x37\x30\x38\x36\x2c\x34\x34\x32\x2e\x39\x33\x37\ +\x35\x31\x20\x2d\x34\x31\x32\x2c\x34\x34\x32\x2e\x39\x33\x37\x35\ +\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x70\x61\x74\x68\x32\x33\x38\x30\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x32\x33\x33\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\ +\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\ +\x2e\x39\x39\x39\x36\x34\x31\x37\x2c\x32\x2e\x36\x37\x36\x35\x31\ +\x35\x33\x65\x2d\x32\x2c\x2d\x32\x2e\x36\x37\x36\x35\x31\x35\x33\ +\x65\x2d\x32\x2c\x2d\x30\x2e\x39\x39\x39\x36\x34\x31\x37\x2c\x2d\ +\x32\x30\x31\x2e\x34\x31\x37\x35\x39\x2c\x31\x33\x36\x31\x2e\x39\ +\x34\x32\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ +\x2d\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x2f\x68\x6f\x6d\x65\ +\x2f\x79\x6f\x72\x69\x6b\x2f\x44\x6f\x63\x75\x6d\x65\x6e\x74\x73\ +\x2f\x4c\x61\x62\x2f\x44\x72\x61\x66\x74\x2f\x69\x63\x6f\x6e\x73\ +\x2f\x6c\x69\x6e\x65\x2e\x70\x6e\x67\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\ +\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x37\x2e\x30\x37\ +\x32\x31\x39\x35\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\ +\x74\x2d\x79\x64\x70\x69\x3d\x22\x37\x2e\x30\x37\x32\x31\x39\x35\ +\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x4d\x20\x32\x34\x35\x2e\x37\x31\x34\x32\x38\x2c\ +\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x41\x20\x34\x38\x2e\x35\x37\ +\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\ +\x20\x31\x20\x31\x34\x38\x2e\x35\x37\x31\x34\x32\x2c\x36\x35\x35\ +\x2e\x32\x31\x39\x33\x20\x41\x20\x34\x38\x2e\x35\x37\x31\x34\x33\ +\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\ +\x32\x34\x35\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\ +\x39\x33\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\ +\x34\x38\x2e\x35\x37\x31\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x72\x78\x3d\x22\x34\x38\x2e\x35\x37\x31\x34\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x63\x79\x3d\x22\x36\x35\x35\x2e\x32\x31\x39\x33\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x31\x39\x37\x2e\ +\x31\x34\x32\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x33\x33\x33\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\x66\x61\x39\ +\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\x35\x2e\ +\x38\x30\x30\x30\x30\x30\x31\x39\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\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\ +\x22\x61\x72\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ +\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x38\x35\x31\x33\x30\x32\ +\x33\x2c\x2d\x30\x2e\x35\x32\x34\x36\x37\x35\x34\x2c\x30\x2e\x35\ +\x32\x34\x36\x37\x35\x34\x2c\x30\x2e\x38\x35\x31\x33\x30\x32\x33\ +\x2c\x2d\x33\x33\x38\x2e\x36\x39\x36\x39\x32\x2c\x32\x31\x34\x2e\ +\x31\x39\x33\x32\x38\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x35\x39\x2e\x36\x30\ +\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x41\x20\ +\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\x33\x2e\x39\x39\x31\ +\x31\x32\x33\x20\x30\x20\x31\x20\x31\x20\x31\x39\x30\x2e\x39\x31\ +\x38\x38\x33\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x41\x20\ +\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\x33\x2e\x39\x39\x31\ +\x31\x32\x33\x20\x30\x20\x31\x20\x31\x20\x32\x35\x39\x2e\x36\x30\ +\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x7a\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x32\x33\x2e\x39\x39\ +\x31\x31\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\ +\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\ +\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x33\x33\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\ +\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x33\x37\x30\ +\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\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\x30\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\x20\ +\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\ +\x70\x65\x3d\x22\x61\x72\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x67\x32\x33\x33\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ +\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\x2e\x39\x39\x39\x37\x34\x32\ +\x2c\x2d\x32\x2e\x32\x37\x31\x33\x35\x31\x34\x65\x2d\x32\x2c\x32\ +\x2e\x32\x37\x31\x33\x35\x31\x34\x65\x2d\x32\x2c\x2d\x30\x2e\x39\ +\x39\x39\x37\x34\x32\x2c\x2d\x32\x32\x38\x2e\x36\x37\x34\x33\x33\ +\x2c\x31\x31\x31\x34\x2e\x33\x33\x33\x37\x29\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x65\x78\x70\x6f\x72\x74\x2d\x66\x69\x6c\x65\x6e\x61\x6d\x65\ +\x3d\x22\x2f\x68\x6f\x6d\x65\x2f\x79\x6f\x72\x69\x6b\x2f\x44\x6f\ +\x63\x75\x6d\x65\x6e\x74\x73\x2f\x4c\x61\x62\x2f\x44\x72\x61\x66\ +\x74\x2f\x69\x63\x6f\x6e\x73\x2f\x6c\x69\x6e\x65\x2e\x70\x6e\x67\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\ +\x69\x3d\x22\x37\x2e\x30\x37\x32\x31\x39\x35\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x37\ +\x2e\x30\x37\x32\x31\x39\x35\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x34\x35\ +\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\ +\x41\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\ +\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x31\x34\x38\x2e\x35\x37\ +\x31\x34\x32\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x41\x20\x34\ +\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\ +\x20\x30\x20\x31\x20\x31\x20\x32\x34\x35\x2e\x37\x31\x34\x32\x38\ +\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x7a\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x72\x79\x3d\x22\x34\x38\x2e\x35\x37\x31\x34\x33\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\x34\x38\x2e\x35\x37\ +\x31\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\x36\ +\x35\x35\x2e\x32\x31\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\ +\x78\x3d\x22\x31\x39\x37\x2e\x31\x34\x32\x38\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x61\x74\x68\x32\x33\x33\x39\x22\x0a\x20\x20\x20\x20\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\x66\x66\x61\ +\x39\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\x23\x30\x30\x30\ +\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ +\x3a\x35\x2e\x38\x30\x30\x30\x30\x30\x31\x39\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ +\x6d\x69\x74\x65\x72\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\ +\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x73\x74\x61\x72\x74\x3a\x6e\ +\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x6d\x69\x64\x3a\x6e\ +\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x65\x6e\x64\x3a\x6e\ +\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ +\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ +\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\ +\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\ +\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\ +\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\ +\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\ +\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\ +\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\ +\x61\x72\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ +\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x38\x35\x31\x33\x30\x32\x33\ +\x2c\x2d\x30\x2e\x35\x32\x34\x36\x37\x35\x34\x2c\x30\x2e\x35\x32\ +\x34\x36\x37\x35\x34\x2c\x30\x2e\x38\x35\x31\x33\x30\x32\x33\x2c\ +\x2d\x33\x33\x38\x2e\x36\x39\x36\x39\x32\x2c\x32\x31\x34\x2e\x31\ +\x39\x33\x32\x38\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x35\x39\x2e\x36\x30\x39\ +\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x41\x20\x33\ +\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\x33\x2e\x39\x39\x31\x31\ +\x32\x33\x20\x30\x20\x31\x20\x31\x20\x31\x39\x30\x2e\x39\x31\x38\ +\x38\x33\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x41\x20\x33\ +\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\x33\x2e\x39\x39\x31\x31\ +\x32\x33\x20\x30\x20\x31\x20\x31\x20\x32\x35\x39\x2e\x36\x30\x39\ +\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x7a\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x32\x33\x2e\x39\x39\x31\ +\x31\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\x33\ +\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\ +\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x33\x34\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\ +\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x33\x36\x38\x29\ +\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\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\x30\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\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\ +\x65\x3d\x22\x61\x72\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x67\x32\x33\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ +\x61\x74\x72\x69\x78\x28\x2d\x30\x2e\x39\x39\x39\x36\x34\x31\x37\ +\x2c\x32\x2e\x36\x37\x36\x35\x31\x35\x33\x65\x2d\x32\x2c\x2d\x32\ +\x2e\x36\x37\x36\x35\x31\x35\x33\x65\x2d\x32\x2c\x2d\x30\x2e\x39\ +\x39\x39\x36\x34\x31\x37\x2c\x38\x30\x2e\x30\x31\x30\x39\x37\x33\ +\x2c\x31\x33\x36\x31\x2e\x39\x34\x32\x33\x29\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x65\x78\x70\x6f\x72\x74\x2d\x66\x69\x6c\x65\x6e\x61\x6d\x65\ +\x3d\x22\x2f\x68\x6f\x6d\x65\x2f\x79\x6f\x72\x69\x6b\x2f\x44\x6f\ +\x63\x75\x6d\x65\x6e\x74\x73\x2f\x4c\x61\x62\x2f\x44\x72\x61\x66\ +\x74\x2f\x69\x63\x6f\x6e\x73\x2f\x6c\x69\x6e\x65\x2e\x70\x6e\x67\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\ +\x69\x3d\x22\x37\x2e\x30\x37\x32\x31\x39\x35\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x37\ +\x2e\x30\x37\x32\x31\x39\x35\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x34\x35\ +\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\ +\x41\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\ +\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x31\x34\x38\x2e\x35\x37\ +\x31\x34\x32\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x41\x20\x34\ +\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\ +\x20\x30\x20\x31\x20\x31\x20\x32\x34\x35\x2e\x37\x31\x34\x32\x38\ +\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x7a\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x72\x79\x3d\x22\x34\x38\x2e\x35\x37\x31\x34\x33\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\x34\x38\x2e\x35\x37\ +\x31\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\x36\ +\x35\x35\x2e\x32\x31\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\ +\x78\x3d\x22\x31\x39\x37\x2e\x31\x34\x32\x38\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x61\x74\x68\x32\x33\x37\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ +\x6c\x3a\x23\x66\x66\x61\x39\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\x35\x2e\x38\x30\x30\x30\x30\x30\x31\x39\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\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\x63\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\ +\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\ +\x2e\x38\x35\x31\x33\x30\x32\x33\x2c\x2d\x30\x2e\x35\x32\x34\x36\ +\x37\x35\x34\x2c\x30\x2e\x35\x32\x34\x36\x37\x35\x34\x2c\x30\x2e\ +\x38\x35\x31\x33\x30\x32\x33\x2c\x2d\x33\x33\x38\x2e\x36\x39\x36\ +\x39\x32\x2c\x32\x31\x34\x2e\x31\x39\x33\x32\x38\x29\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\ +\x20\x32\x35\x39\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\ +\x39\x37\x33\x36\x20\x41\x20\x33\x34\x2e\x33\x34\x35\x31\x38\x38\ +\x2c\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\x20\x31\ +\x20\x31\x39\x30\x2e\x39\x31\x38\x38\x33\x2c\x36\x37\x32\x2e\x37\ +\x39\x37\x33\x36\x20\x41\x20\x33\x34\x2e\x33\x34\x35\x31\x38\x38\ +\x2c\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\x20\x31\ +\x20\x32\x35\x39\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\ +\x39\x37\x33\x36\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\ +\x3d\x22\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x72\x78\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\x36\x37\x32\x2e\ +\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\ +\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ +\x68\x32\x33\x37\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ +\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x32\x33\x37\x38\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\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\x30\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\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\x63\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x3c\ +\x2f\x67\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\ +\x3e\x0a\ +\x00\x00\x49\xa9\ +\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\x36\x37\x36\ +\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\x44\x72\x61\ +\x66\x74\x5f\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\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\x36\x37\x38\x22\x3e\x0a\x20\ +\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\ +\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\ +\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x38\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\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\ +\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\ +\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\ +\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\ +\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ +\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ +\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\ +\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x38\x31\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\ +\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ +\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ +\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\ +\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\ +\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\ +\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\ +\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\ +\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\ +\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x39\x39\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\ +\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ +\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ +\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\ +\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\ +\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\ +\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\ +\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\ +\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ +\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ +\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x31\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\ +\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\ +\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ +\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\ +\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\ +\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\ +\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\ +\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\ +\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\ +\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x33\x31\x34\x34\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\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x73\x74\x6f\x70\x33\x31\x34\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\ +\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x33\x31\x34\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\ +\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x3b\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ +\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\ +\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x33\x31\x34\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x33\x38\x30\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\ +\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\ +\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\ +\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\ +\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\ +\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\ +\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\ +\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\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\x36\x38\x34\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\x36\x34\ +\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\ +\x36\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\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\x39\x33\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\x36\x38\x31\ +\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\ +\x39\x36\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\ +\x39\x34\x36\x33\x30\x39\x34\x2c\x30\x2c\x30\x2c\x30\x2e\x39\x34\ +\x36\x33\x30\x39\x34\x2c\x2d\x34\x32\x33\x2e\x39\x34\x39\x39\x31\ +\x2c\x2d\x30\x2e\x38\x37\x30\x35\x33\x34\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\x38\x33\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\ +\x34\x36\x36\x2e\x32\x39\x38\x38\x34\x2c\x37\x2e\x34\x37\x33\x38\ +\x32\x36\x33\x20\x43\x20\x34\x36\x35\x2e\x39\x31\x31\x30\x32\x2c\ +\x38\x2e\x35\x31\x36\x31\x34\x34\x35\x20\x34\x36\x35\x2e\x33\x39\ +\x31\x32\x2c\x39\x2e\x33\x38\x38\x38\x36\x37\x33\x20\x34\x36\x34\ +\x2e\x37\x30\x35\x30\x39\x2c\x31\x30\x2e\x30\x39\x38\x38\x32\x36\ +\x20\x43\x20\x34\x36\x34\x2e\x30\x31\x38\x39\x35\x2c\x31\x30\x2e\ +\x38\x30\x38\x38\x31\x34\x20\x34\x36\x33\x2e\x30\x33\x39\x38\x36\ +\x2c\x31\x31\x2e\x34\x33\x36\x35\x34\x34\x20\x34\x36\x31\x2e\x37\ +\x39\x38\x38\x34\x2c\x31\x31\x2e\x39\x34\x32\x35\x37\x36\x20\x4c\ +\x20\x34\x36\x31\x2e\x37\x39\x38\x38\x34\x2c\x31\x35\x2e\x37\x32\ +\x33\x38\x32\x36\x20\x43\x20\x34\x36\x32\x2e\x36\x34\x30\x30\x39\ +\x2c\x31\x35\x2e\x33\x39\x39\x30\x36\x20\x34\x36\x33\x2e\x33\x33\ +\x37\x36\x39\x2c\x31\x35\x2e\x30\x34\x37\x35\x37\x32\x20\x34\x36\ +\x33\x2e\x38\x39\x32\x35\x39\x2c\x31\x34\x2e\x36\x39\x32\x35\x37\ +\x36\x20\x43\x20\x34\x36\x34\x2e\x34\x35\x33\x34\x32\x2c\x31\x34\ +\x2e\x33\x33\x37\x35\x39\x39\x20\x34\x36\x35\x2e\x30\x34\x35\x39\ +\x33\x2c\x31\x33\x2e\x38\x36\x30\x33\x35\x39\x20\x34\x36\x35\x2e\ +\x36\x34\x32\x35\x39\x2c\x31\x33\x2e\x32\x38\x36\x33\x32\x36\x20\ +\x4c\x20\x34\x36\x35\x2e\x36\x34\x32\x35\x39\x2c\x32\x34\x2e\x33\ +\x38\x30\x30\x37\x36\x20\x4c\x20\x34\x36\x39\x2e\x33\x33\x30\x30\ +\x39\x2c\x32\x34\x2e\x33\x38\x30\x30\x37\x36\x20\x4c\x20\x34\x36\ +\x39\x2e\x33\x33\x30\x30\x39\x2c\x37\x2e\x34\x37\x33\x38\x32\x36\ +\x33\x20\x4c\x20\x34\x36\x36\x2e\x32\x39\x38\x38\x34\x2c\x37\x2e\ +\x34\x37\x33\x38\x32\x36\x33\x20\x7a\x20\x4d\x20\x34\x38\x34\x2e\ +\x38\x39\x32\x35\x39\x2c\x37\x2e\x34\x37\x33\x38\x32\x36\x33\x20\ +\x43\x20\x34\x38\x33\x2e\x30\x35\x34\x39\x34\x2c\x37\x2e\x34\x37\ +\x33\x38\x34\x33\x33\x20\x34\x38\x31\x2e\x36\x36\x38\x35\x32\x2c\ +\x38\x2e\x31\x31\x38\x37\x35\x35\x37\x20\x34\x38\x30\x2e\x37\x36\ +\x37\x35\x39\x2c\x39\x2e\x33\x38\x30\x30\x37\x36\x33\x20\x43\x20\ +\x34\x37\x39\x2e\x38\x37\x32\x36\x33\x2c\x31\x30\x2e\x36\x34\x31\ +\x34\x32\x37\x20\x34\x37\x39\x2e\x34\x32\x33\x38\x32\x2c\x31\x32\ +\x2e\x38\x34\x37\x39\x36\x39\x20\x34\x37\x39\x2e\x34\x32\x33\x38\ +\x34\x2c\x31\x36\x2e\x30\x30\x35\x30\x37\x36\x20\x43\x20\x34\x37\ +\x39\x2e\x34\x32\x33\x38\x34\x2c\x31\x37\x2e\x32\x38\x39\x30\x37\ +\x39\x20\x34\x37\x39\x2e\x35\x30\x30\x38\x32\x2c\x31\x38\x2e\x34\ +\x37\x31\x33\x37\x20\x34\x37\x39\x2e\x36\x37\x33\x38\x34\x2c\x31\ +\x39\x2e\x35\x33\x36\x33\x32\x36\x20\x43\x20\x34\x37\x39\x2e\x38\ +\x35\x32\x38\x33\x2c\x32\x30\x2e\x35\x39\x33\x37\x33\x38\x20\x34\ +\x38\x30\x2e\x31\x30\x37\x36\x34\x2c\x32\x31\x2e\x34\x32\x34\x35\ +\x34\x34\x20\x34\x38\x30\x2e\x34\x32\x33\x38\x34\x2c\x32\x32\x2e\ +\x30\x33\x36\x33\x32\x36\x20\x43\x20\x34\x38\x30\x2e\x38\x35\x39\ +\x33\x38\x2c\x32\x32\x2e\x38\x39\x37\x33\x36\x20\x34\x38\x31\x2e\ +\x34\x33\x31\x31\x37\x2c\x32\x33\x2e\x35\x32\x38\x32\x30\x33\x20\ +\x34\x38\x32\x2e\x31\x31\x31\x33\x34\x2c\x32\x33\x2e\x39\x37\x33\ +\x38\x32\x36\x20\x43\x20\x34\x38\x32\x2e\x37\x39\x31\x35\x2c\x32\ +\x34\x2e\x34\x31\x39\x34\x34\x38\x20\x34\x38\x33\x2e\x36\x36\x33\ +\x38\x31\x2c\x32\x34\x2e\x36\x36\x31\x33\x32\x35\x20\x34\x38\x34\ +\x2e\x37\x36\x37\x35\x39\x2c\x32\x34\x2e\x36\x36\x31\x33\x32\x36\ +\x20\x43\x20\x34\x38\x36\x2e\x37\x33\x36\x34\x38\x2c\x32\x34\x2e\ +\x36\x36\x31\x33\x32\x36\x20\x34\x38\x38\x2e\x31\x34\x39\x36\x32\ +\x2c\x32\x33\x2e\x39\x36\x34\x38\x36\x35\x20\x34\x38\x38\x2e\x39\ +\x35\x35\x30\x39\x2c\x32\x32\x2e\x35\x36\x37\x35\x37\x36\x20\x43\ +\x20\x34\x38\x39\x2e\x37\x36\x30\x35\x34\x2c\x32\x31\x2e\x31\x37\ +\x30\x32\x39\x20\x34\x39\x30\x2e\x31\x34\x32\x35\x37\x2c\x31\x38\ +\x2e\x39\x35\x36\x31\x39\x34\x20\x34\x39\x30\x2e\x31\x34\x32\x35\ +\x39\x2c\x31\x35\x2e\x39\x34\x32\x35\x37\x36\x20\x43\x20\x34\x39\ +\x30\x2e\x31\x34\x32\x35\x38\x2c\x31\x34\x2e\x35\x39\x38\x31\x36\ +\x36\x20\x34\x39\x30\x2e\x30\x31\x32\x32\x2c\x31\x33\x2e\x33\x30\ +\x36\x32\x36\x35\x20\x34\x38\x39\x2e\x37\x36\x37\x35\x39\x2c\x31\ +\x32\x2e\x30\x36\x37\x35\x37\x36\x20\x43\x20\x34\x38\x39\x2e\x36\ +\x34\x32\x32\x38\x2c\x31\x31\x2e\x34\x31\x38\x30\x33\x38\x20\x34\ +\x38\x39\x2e\x34\x37\x36\x33\x39\x2c\x31\x30\x2e\x38\x36\x33\x34\ +\x37\x36\x20\x34\x38\x39\x2e\x32\x36\x37\x35\x39\x2c\x31\x30\x2e\ +\x33\x38\x30\x30\x37\x36\x20\x43\x20\x34\x38\x39\x2e\x30\x36\x34\ +\x37\x32\x2c\x39\x2e\x38\x38\x39\x31\x35\x31\x33\x20\x34\x38\x38\ +\x2e\x38\x31\x33\x30\x34\x2c\x39\x2e\x34\x31\x31\x39\x31\x30\x35\ +\x20\x34\x38\x38\x2e\x34\x35\x35\x30\x39\x2c\x38\x2e\x39\x37\x33\ +\x38\x32\x36\x33\x20\x43\x20\x34\x38\x38\x2e\x30\x39\x37\x31\x2c\ +\x38\x2e\x35\x32\x38\x32\x32\x30\x32\x20\x34\x38\x37\x2e\x36\x31\ +\x35\x36\x34\x2c\x38\x2e\x31\x38\x33\x32\x34\x37\x33\x20\x34\x38\ +\x37\x2e\x30\x34\x38\x38\x34\x2c\x37\x2e\x39\x31\x31\x33\x32\x36\ +\x33\x20\x43\x20\x34\x38\x36\x2e\x34\x38\x32\x30\x32\x2c\x37\x2e\ +\x36\x33\x31\x38\x38\x35\x31\x20\x34\x38\x35\x2e\x37\x37\x35\x36\ +\x31\x2c\x37\x2e\x34\x37\x33\x38\x34\x33\x34\x20\x34\x38\x34\x2e\ +\x38\x39\x32\x35\x39\x2c\x37\x2e\x34\x37\x33\x38\x32\x36\x33\x20\ +\x7a\x20\x4d\x20\x34\x39\x37\x2e\x31\x31\x31\x33\x34\x2c\x37\x2e\ +\x34\x37\x33\x38\x32\x36\x33\x20\x43\x20\x34\x39\x35\x2e\x32\x37\ +\x33\x36\x39\x2c\x37\x2e\x34\x37\x33\x38\x34\x33\x33\x20\x34\x39\ +\x33\x2e\x39\x31\x38\x35\x33\x2c\x38\x2e\x31\x31\x38\x37\x35\x35\ +\x37\x20\x34\x39\x33\x2e\x30\x31\x37\x35\x39\x2c\x39\x2e\x33\x38\ +\x30\x30\x37\x36\x33\x20\x43\x20\x34\x39\x32\x2e\x31\x32\x32\x36\ +\x33\x2c\x31\x30\x2e\x36\x34\x31\x34\x32\x37\x20\x34\x39\x31\x2e\ +\x36\x37\x33\x38\x33\x2c\x31\x32\x2e\x38\x34\x37\x39\x36\x39\x20\ +\x34\x39\x31\x2e\x36\x37\x33\x38\x34\x2c\x31\x36\x2e\x30\x30\x35\ +\x30\x37\x36\x20\x43\x20\x34\x39\x31\x2e\x36\x37\x33\x38\x34\x2c\ +\x31\x37\x2e\x32\x38\x39\x30\x37\x39\x20\x34\x39\x31\x2e\x37\x35\ +\x30\x38\x33\x2c\x31\x38\x2e\x34\x37\x31\x33\x37\x20\x34\x39\x31\ +\x2e\x39\x32\x33\x38\x34\x2c\x31\x39\x2e\x35\x33\x36\x33\x32\x36\ +\x20\x43\x20\x34\x39\x32\x2e\x31\x30\x32\x38\x33\x2c\x32\x30\x2e\ +\x35\x39\x33\x37\x33\x38\x20\x34\x39\x32\x2e\x33\x35\x37\x36\x35\ +\x2c\x32\x31\x2e\x34\x32\x34\x35\x34\x34\x20\x34\x39\x32\x2e\x36\ +\x37\x33\x38\x34\x2c\x32\x32\x2e\x30\x33\x36\x33\x32\x36\x20\x43\ +\x20\x34\x39\x33\x2e\x31\x30\x39\x33\x39\x2c\x32\x32\x2e\x38\x39\ +\x37\x33\x36\x20\x34\x39\x33\x2e\x36\x38\x31\x31\x37\x2c\x32\x33\ +\x2e\x35\x32\x38\x32\x30\x33\x20\x34\x39\x34\x2e\x33\x36\x31\x33\ +\x34\x2c\x32\x33\x2e\x39\x37\x33\x38\x32\x36\x20\x43\x20\x34\x39\ +\x35\x2e\x30\x34\x31\x35\x2c\x32\x34\x2e\x34\x31\x39\x34\x34\x38\ +\x20\x34\x39\x35\x2e\x39\x31\x33\x38\x32\x2c\x32\x34\x2e\x36\x36\ +\x31\x33\x32\x35\x20\x34\x39\x37\x2e\x30\x31\x37\x35\x39\x2c\x32\ +\x34\x2e\x36\x36\x31\x33\x32\x36\x20\x43\x20\x34\x39\x38\x2e\x39\ +\x38\x36\x34\x38\x2c\x32\x34\x2e\x36\x36\x31\x33\x32\x36\x20\x35\ +\x30\x30\x2e\x33\x36\x38\x33\x37\x2c\x32\x33\x2e\x39\x36\x34\x38\ +\x36\x35\x20\x35\x30\x31\x2e\x31\x37\x33\x38\x34\x2c\x32\x32\x2e\ +\x35\x36\x37\x35\x37\x36\x20\x43\x20\x35\x30\x31\x2e\x39\x37\x39\ +\x32\x39\x2c\x32\x31\x2e\x31\x37\x30\x32\x39\x20\x35\x30\x32\x2e\ +\x33\x39\x32\x35\x38\x2c\x31\x38\x2e\x39\x35\x36\x31\x39\x34\x20\ +\x35\x30\x32\x2e\x33\x39\x32\x35\x39\x2c\x31\x35\x2e\x39\x34\x32\ +\x35\x37\x36\x20\x43\x20\x35\x30\x32\x2e\x33\x39\x32\x35\x38\x2c\ +\x31\x34\x2e\x35\x39\x38\x31\x36\x36\x20\x35\x30\x32\x2e\x32\x36\ +\x32\x32\x32\x2c\x31\x33\x2e\x33\x30\x36\x32\x36\x35\x20\x35\x30\ +\x32\x2e\x30\x31\x37\x35\x39\x2c\x31\x32\x2e\x30\x36\x37\x35\x37\ +\x36\x20\x43\x20\x35\x30\x31\x2e\x38\x39\x32\x32\x38\x2c\x31\x31\ +\x2e\x34\x31\x38\x30\x33\x38\x20\x35\x30\x31\x2e\x37\x32\x36\x34\ +\x2c\x31\x30\x2e\x38\x36\x33\x34\x37\x36\x20\x35\x30\x31\x2e\x35\ +\x31\x37\x35\x39\x2c\x31\x30\x2e\x33\x38\x30\x30\x37\x36\x20\x43\ +\x20\x35\x30\x31\x2e\x33\x31\x34\x37\x32\x2c\x39\x2e\x38\x38\x39\ +\x31\x35\x31\x33\x20\x35\x30\x31\x2e\x30\x33\x31\x38\x2c\x39\x2e\ +\x34\x31\x31\x39\x31\x30\x35\x20\x35\x30\x30\x2e\x36\x37\x33\x38\ +\x34\x2c\x38\x2e\x39\x37\x33\x38\x32\x36\x33\x20\x43\x20\x35\x30\ +\x30\x2e\x33\x31\x35\x38\x35\x2c\x38\x2e\x35\x32\x38\x32\x32\x30\ +\x32\x20\x34\x39\x39\x2e\x38\x36\x35\x36\x35\x2c\x38\x2e\x31\x38\ +\x33\x32\x34\x37\x33\x20\x34\x39\x39\x2e\x32\x39\x38\x38\x34\x2c\ +\x37\x2e\x39\x31\x31\x33\x32\x36\x33\x20\x43\x20\x34\x39\x38\x2e\ +\x37\x33\x32\x30\x32\x2c\x37\x2e\x36\x33\x31\x38\x38\x35\x31\x20\ +\x34\x39\x37\x2e\x39\x39\x34\x33\x37\x2c\x37\x2e\x34\x37\x33\x38\ +\x34\x33\x34\x20\x34\x39\x37\x2e\x31\x31\x31\x33\x34\x2c\x37\x2e\ +\x34\x37\x33\x38\x32\x36\x33\x20\x7a\x20\x4d\x20\x34\x38\x34\x2e\ +\x37\x36\x37\x35\x39\x2c\x31\x30\x2e\x35\x33\x36\x33\x32\x36\x20\ +\x43\x20\x34\x38\x35\x2e\x33\x35\x38\x32\x36\x2c\x31\x30\x2e\x35\ +\x33\x36\x33\x34\x20\x34\x38\x35\x2e\x37\x38\x37\x36\x39\x2c\x31\ +\x30\x2e\x39\x32\x39\x37\x34\x35\x20\x34\x38\x36\x2e\x30\x38\x30\ +\x30\x39\x2c\x31\x31\x2e\x36\x39\x32\x35\x37\x36\x20\x43\x20\x34\ +\x38\x36\x2e\x33\x37\x38\x33\x39\x2c\x31\x32\x2e\x34\x34\x37\x38\ +\x38\x20\x34\x38\x36\x2e\x35\x31\x37\x35\x38\x2c\x31\x33\x2e\x39\ +\x32\x34\x36\x33\x34\x20\x34\x38\x36\x2e\x35\x31\x37\x35\x39\x2c\ +\x31\x36\x2e\x31\x33\x30\x30\x37\x36\x20\x43\x20\x34\x38\x36\x2e\ +\x35\x31\x37\x35\x38\x2c\x31\x37\x2e\x36\x33\x33\x31\x31\x33\x20\ +\x34\x38\x36\x2e\x34\x36\x31\x33\x34\x2c\x31\x38\x2e\x37\x33\x32\ +\x36\x30\x39\x20\x34\x38\x36\x2e\x33\x33\x30\x30\x39\x2c\x31\x39\ +\x2e\x34\x34\x32\x35\x37\x36\x20\x43\x20\x34\x38\x36\x2e\x32\x30\ +\x34\x37\x39\x2c\x32\x30\x2e\x31\x35\x32\x35\x35\x35\x20\x34\x38\ +\x36\x2e\x30\x31\x30\x37\x38\x2c\x32\x30\x2e\x36\x37\x32\x37\x35\ +\x31\x20\x34\x38\x35\x2e\x37\x33\x36\x33\x34\x2c\x32\x31\x2e\x30\ +\x30\x35\x30\x37\x36\x20\x43\x20\x34\x38\x35\x2e\x34\x36\x37\x38\ +\x35\x2c\x32\x31\x2e\x33\x32\x39\x38\x35\x33\x20\x34\x38\x35\x2e\ +\x31\x33\x37\x34\x37\x2c\x32\x31\x2e\x35\x30\x35\x30\x37\x39\x20\ +\x34\x38\x34\x2e\x37\x36\x37\x35\x39\x2c\x32\x31\x2e\x35\x30\x35\ +\x30\x37\x36\x20\x43\x20\x34\x38\x34\x2e\x32\x30\x36\x37\x35\x2c\ +\x32\x31\x2e\x35\x30\x35\x30\x37\x38\x20\x34\x38\x33\x2e\x37\x38\ +\x34\x36\x35\x2c\x32\x31\x2e\x31\x31\x39\x32\x32\x37\x20\x34\x38\ +\x33\x2e\x34\x38\x36\x33\x34\x2c\x32\x30\x2e\x33\x34\x38\x38\x32\ +\x36\x20\x43\x20\x34\x38\x33\x2e\x31\x39\x33\x39\x38\x2c\x31\x39\ +\x2e\x35\x37\x30\x38\x38\x20\x34\x38\x33\x2e\x30\x34\x38\x38\x34\ +\x2c\x31\x38\x2e\x31\x31\x39\x38\x39\x39\x20\x34\x38\x33\x2e\x30\ +\x34\x38\x38\x34\x2c\x31\x36\x2e\x30\x30\x35\x30\x37\x36\x20\x43\ +\x20\x34\x38\x33\x2e\x30\x34\x38\x38\x33\x2c\x31\x33\x2e\x39\x31\ +\x32\x39\x32\x39\x20\x34\x38\x33\x2e\x31\x38\x36\x36\x32\x2c\x31\ +\x32\x2e\x34\x39\x34\x32\x33\x36\x20\x34\x38\x33\x2e\x34\x35\x35\ +\x30\x39\x2c\x31\x31\x2e\x37\x32\x33\x38\x32\x36\x20\x43\x20\x34\ +\x38\x33\x2e\x37\x32\x33\x35\x37\x2c\x31\x30\x2e\x39\x34\x35\x38\ +\x39\x20\x34\x38\x34\x2e\x31\x36\x35\x2c\x31\x30\x2e\x35\x33\x36\ +\x33\x34\x20\x34\x38\x34\x2e\x37\x36\x37\x35\x39\x2c\x31\x30\x2e\ +\x35\x33\x36\x33\x32\x36\x20\x7a\x20\x4d\x20\x34\x39\x36\x2e\x39\ +\x38\x36\x33\x34\x2c\x31\x30\x2e\x35\x33\x36\x33\x32\x36\x20\x43\ +\x20\x34\x39\x37\x2e\x35\x37\x37\x30\x31\x2c\x31\x30\x2e\x35\x33\ +\x36\x33\x34\x20\x34\x39\x38\x2e\x30\x33\x37\x37\x2c\x31\x30\x2e\ +\x39\x32\x39\x37\x34\x35\x20\x34\x39\x38\x2e\x33\x33\x30\x30\x39\ +\x2c\x31\x31\x2e\x36\x39\x32\x35\x37\x36\x20\x43\x20\x34\x39\x38\ +\x2e\x36\x32\x38\x33\x39\x2c\x31\x32\x2e\x34\x34\x37\x38\x38\x20\ +\x34\x39\x38\x2e\x37\x36\x37\x35\x39\x2c\x31\x33\x2e\x39\x32\x34\ +\x36\x33\x34\x20\x34\x39\x38\x2e\x37\x36\x37\x35\x39\x2c\x31\x36\ +\x2e\x31\x33\x30\x30\x37\x36\x20\x43\x20\x34\x39\x38\x2e\x37\x36\ +\x37\x35\x38\x2c\x31\x37\x2e\x36\x33\x33\x31\x31\x33\x20\x34\x39\ +\x38\x2e\x37\x31\x31\x33\x35\x2c\x31\x38\x2e\x37\x33\x32\x36\x30\ +\x39\x20\x34\x39\x38\x2e\x35\x38\x30\x30\x39\x2c\x31\x39\x2e\x34\ +\x34\x32\x35\x37\x36\x20\x43\x20\x34\x39\x38\x2e\x34\x35\x34\x37\ +\x39\x2c\x32\x30\x2e\x31\x35\x32\x35\x35\x35\x20\x34\x39\x38\x2e\ +\x32\x36\x30\x37\x39\x2c\x32\x30\x2e\x36\x37\x32\x37\x35\x31\x20\ +\x34\x39\x37\x2e\x39\x38\x36\x33\x34\x2c\x32\x31\x2e\x30\x30\x35\ +\x30\x37\x36\x20\x43\x20\x34\x39\x37\x2e\x37\x31\x37\x38\x35\x2c\ +\x32\x31\x2e\x33\x32\x39\x38\x35\x33\x20\x34\x39\x37\x2e\x33\x38\ +\x37\x34\x38\x2c\x32\x31\x2e\x35\x30\x35\x30\x37\x39\x20\x34\x39\ +\x37\x2e\x30\x31\x37\x35\x39\x2c\x32\x31\x2e\x35\x30\x35\x30\x37\ +\x36\x20\x43\x20\x34\x39\x36\x2e\x34\x35\x36\x37\x35\x2c\x32\x31\ +\x2e\x35\x30\x35\x30\x37\x38\x20\x34\x39\x36\x2e\x30\x33\x34\x36\ +\x36\x2c\x32\x31\x2e\x31\x31\x39\x32\x32\x37\x20\x34\x39\x35\x2e\ +\x37\x33\x36\x33\x34\x2c\x32\x30\x2e\x33\x34\x38\x38\x32\x36\x20\ +\x43\x20\x34\x39\x35\x2e\x34\x34\x33\x39\x38\x2c\x31\x39\x2e\x35\ +\x37\x30\x38\x38\x20\x34\x39\x35\x2e\x32\x39\x38\x38\x34\x2c\x31\ +\x38\x2e\x31\x31\x39\x38\x39\x39\x20\x34\x39\x35\x2e\x32\x39\x38\ +\x38\x34\x2c\x31\x36\x2e\x30\x30\x35\x30\x37\x36\x20\x43\x20\x34\ +\x39\x35\x2e\x32\x39\x38\x38\x33\x2c\x31\x33\x2e\x39\x31\x32\x39\ +\x32\x39\x20\x34\x39\x35\x2e\x34\x30\x35\x33\x38\x2c\x31\x32\x2e\ +\x34\x39\x34\x32\x33\x36\x20\x34\x39\x35\x2e\x36\x37\x33\x38\x34\ +\x2c\x31\x31\x2e\x37\x32\x33\x38\x32\x36\x20\x43\x20\x34\x39\x35\ +\x2e\x39\x34\x32\x33\x32\x2c\x31\x30\x2e\x39\x34\x35\x38\x39\x20\ +\x34\x39\x36\x2e\x33\x38\x33\x37\x36\x2c\x31\x30\x2e\x35\x33\x36\ +\x33\x34\x20\x34\x39\x36\x2e\x39\x38\x36\x33\x34\x2c\x31\x30\x2e\ +\x35\x33\x36\x33\x32\x36\x20\x7a\x20\x4d\x20\x34\x37\x33\x2e\x36\ +\x37\x33\x38\x34\x2c\x31\x39\x2e\x37\x35\x35\x30\x37\x36\x20\x4c\ +\x20\x34\x37\x33\x2e\x36\x37\x33\x38\x34\x2c\x32\x34\x2e\x33\x38\ +\x30\x30\x37\x36\x20\x4c\x20\x34\x37\x37\x2e\x35\x34\x38\x38\x34\ +\x2c\x32\x34\x2e\x33\x38\x30\x30\x37\x36\x20\x4c\x20\x34\x37\x37\ +\x2e\x35\x34\x38\x38\x34\x2c\x31\x39\x2e\x37\x35\x35\x30\x37\x36\ +\x20\x4c\x20\x34\x37\x33\x2e\x36\x37\x33\x38\x34\x2c\x31\x39\x2e\ +\x37\x35\x35\x30\x37\x36\x20\x7a\x20\x4d\x20\x34\x38\x32\x2e\x35\ +\x31\x37\x35\x39\x2c\x32\x36\x2e\x38\x38\x30\x30\x37\x36\x20\x43\ +\x20\x34\x37\x39\x2e\x36\x39\x31\x39\x37\x2c\x32\x36\x2e\x39\x39\ +\x30\x39\x31\x37\x20\x34\x37\x37\x2e\x33\x36\x33\x36\x37\x2c\x32\ +\x38\x2e\x38\x39\x35\x35\x35\x35\x20\x34\x37\x36\x2e\x35\x34\x38\ +\x38\x34\x2c\x33\x31\x2e\x34\x34\x32\x35\x37\x36\x20\x4c\x20\x34\ +\x36\x35\x2e\x30\x34\x38\x38\x34\x2c\x33\x31\x2e\x34\x31\x31\x33\ +\x32\x36\x20\x43\x20\x34\x36\x34\x2e\x38\x32\x33\x33\x2c\x33\x31\ +\x2e\x30\x37\x31\x34\x31\x33\x20\x34\x36\x34\x2e\x35\x36\x31\x38\ +\x39\x2c\x33\x30\x2e\x37\x35\x31\x37\x36\x37\x20\x34\x36\x34\x2e\ +\x32\x33\x36\x33\x34\x2c\x33\x30\x2e\x34\x37\x33\x38\x32\x36\x20\ +\x43\x20\x34\x36\x32\x2e\x33\x35\x31\x38\x34\x2c\x32\x38\x2e\x38\ +\x36\x34\x39\x33\x34\x20\x34\x35\x39\x2e\x35\x33\x32\x37\x33\x2c\ +\x32\x39\x2e\x30\x38\x39\x33\x32\x33\x20\x34\x35\x37\x2e\x39\x32\ +\x33\x38\x34\x2c\x33\x30\x2e\x39\x37\x33\x38\x32\x36\x20\x43\x20\ +\x34\x35\x36\x2e\x33\x31\x34\x39\x35\x2c\x33\x32\x2e\x38\x35\x38\ +\x33\x32\x38\x20\x34\x35\x36\x2e\x35\x33\x39\x33\x36\x2c\x33\x35\ +\x2e\x37\x30\x38\x36\x38\x33\x20\x34\x35\x38\x2e\x34\x32\x33\x38\ +\x34\x2c\x33\x37\x2e\x33\x31\x37\x35\x37\x36\x20\x43\x20\x34\x35\ +\x38\x2e\x37\x34\x39\x32\x35\x2c\x33\x37\x2e\x35\x39\x35\x33\x39\ +\x38\x20\x34\x35\x39\x2e\x30\x38\x34\x31\x39\x2c\x33\x37\x2e\x37\ +\x37\x33\x31\x35\x37\x20\x34\x35\x39\x2e\x34\x35\x35\x30\x39\x2c\ +\x33\x37\x2e\x39\x34\x32\x35\x37\x36\x20\x4c\x20\x34\x35\x39\x2e\ +\x34\x32\x33\x38\x34\x2c\x35\x32\x2e\x37\x38\x36\x33\x32\x36\x20\ +\x43\x20\x34\x35\x36\x2e\x35\x38\x32\x37\x33\x2c\x35\x33\x2e\x35\ +\x39\x31\x33\x34\x32\x20\x34\x35\x34\x2e\x35\x35\x33\x30\x32\x2c\ +\x35\x36\x2e\x32\x36\x38\x38\x33\x31\x20\x34\x35\x34\x2e\x36\x37\ +\x33\x38\x34\x2c\x35\x39\x2e\x33\x34\x38\x38\x32\x36\x20\x43\x20\ +\x34\x35\x34\x2e\x38\x31\x35\x34\x35\x2c\x36\x32\x2e\x39\x35\x38\ +\x37\x31\x34\x20\x34\x35\x37\x2e\x38\x34\x35\x31\x38\x2c\x36\x35\ +\x2e\x37\x37\x31\x36\x38\x31\x20\x34\x36\x31\x2e\x34\x35\x35\x30\ +\x39\x2c\x36\x35\x2e\x36\x33\x30\x30\x37\x36\x20\x43\x20\x34\x36\ +\x35\x2e\x30\x36\x34\x39\x38\x2c\x36\x35\x2e\x34\x38\x38\x34\x37\ +\x20\x34\x36\x37\x2e\x39\x30\x39\x32\x32\x2c\x36\x32\x2e\x34\x35\ +\x38\x37\x31\x32\x20\x34\x36\x37\x2e\x37\x36\x37\x35\x39\x2c\x35\ +\x38\x2e\x38\x34\x38\x38\x32\x36\x20\x43\x20\x34\x36\x37\x2e\x36\ +\x35\x35\x38\x36\x2c\x35\x36\x2e\x30\x30\x30\x35\x33\x36\x20\x34\ +\x36\x35\x2e\x37\x32\x30\x36\x2c\x35\x33\x2e\x36\x34\x35\x34\x37\ +\x36\x20\x34\x36\x33\x2e\x31\x34\x32\x35\x39\x2c\x35\x32\x2e\x38\ +\x34\x38\x38\x32\x36\x20\x4c\x20\x34\x36\x33\x2e\x31\x37\x33\x38\ +\x34\x2c\x33\x37\x2e\x39\x37\x33\x38\x32\x36\x20\x43\x20\x34\x36\ +\x33\x2e\x37\x35\x34\x34\x33\x2c\x33\x37\x2e\x37\x31\x30\x33\x37\ +\x37\x20\x34\x36\x34\x2e\x32\x39\x35\x32\x35\x2c\x33\x37\x2e\x33\ +\x33\x34\x32\x33\x35\x20\x34\x36\x34\x2e\x37\x33\x36\x33\x34\x2c\ +\x33\x36\x2e\x38\x31\x37\x35\x37\x36\x20\x43\x20\x34\x36\x35\x2e\ +\x31\x38\x32\x37\x33\x2c\x33\x36\x2e\x32\x39\x34\x37\x31\x39\x20\ +\x34\x36\x35\x2e\x34\x37\x34\x36\x37\x2c\x33\x35\x2e\x36\x39\x30\ +\x33\x30\x36\x20\x34\x36\x35\x2e\x36\x34\x32\x35\x39\x2c\x33\x35\ +\x2e\x30\x36\x37\x35\x37\x36\x20\x4c\x20\x34\x37\x36\x2e\x34\x35\ +\x35\x30\x39\x2c\x33\x35\x2e\x30\x39\x38\x38\x32\x36\x20\x43\x20\ +\x34\x37\x37\x2e\x32\x31\x36\x38\x2c\x33\x38\x2e\x30\x30\x34\x34\ +\x34\x34\x20\x34\x37\x39\x2e\x39\x32\x34\x33\x35\x2c\x34\x30\x2e\ +\x30\x39\x36\x33\x39\x31\x20\x34\x38\x33\x2e\x30\x34\x38\x38\x34\ +\x2c\x33\x39\x2e\x39\x37\x33\x38\x32\x36\x20\x43\x20\x34\x38\x35\ +\x2e\x39\x39\x32\x37\x32\x2c\x33\x39\x2e\x38\x35\x38\x33\x34\x36\ +\x20\x34\x38\x38\x2e\x33\x39\x37\x31\x38\x2c\x33\x37\x2e\x38\x30\ +\x37\x37\x33\x35\x20\x34\x38\x39\x2e\x31\x31\x31\x33\x34\x2c\x33\ +\x35\x2e\x30\x39\x38\x38\x32\x36\x20\x4c\x20\x34\x39\x39\x2e\x37\ +\x33\x36\x33\x34\x2c\x33\x35\x2e\x31\x33\x30\x30\x37\x36\x20\x43\ +\x20\x34\x39\x39\x2e\x39\x38\x35\x30\x34\x2c\x33\x35\x2e\x38\x39\ +\x36\x32\x37\x36\x20\x35\x30\x30\x2e\x33\x39\x30\x36\x32\x2c\x33\ +\x36\x2e\x36\x33\x32\x34\x39\x35\x20\x35\x30\x31\x2e\x30\x31\x37\ +\x35\x39\x2c\x33\x37\x2e\x32\x32\x33\x38\x32\x36\x20\x43\x20\x35\ +\x30\x31\x2e\x36\x31\x35\x33\x38\x2c\x33\x37\x2e\x37\x38\x37\x36\ +\x33\x36\x20\x35\x30\x32\x2e\x33\x34\x30\x35\x32\x2c\x33\x38\x2e\ +\x31\x33\x37\x37\x30\x32\x20\x35\x30\x33\x2e\x30\x38\x30\x30\x39\ +\x2c\x33\x38\x2e\x33\x34\x38\x38\x32\x36\x20\x4c\x20\x35\x30\x33\ +\x2e\x30\x34\x38\x38\x34\x2c\x35\x33\x2e\x32\x38\x36\x33\x32\x36\ +\x20\x43\x20\x35\x30\x30\x2e\x35\x38\x31\x31\x36\x2c\x35\x34\x2e\ +\x33\x30\x31\x38\x32\x31\x20\x34\x39\x38\x2e\x38\x37\x35\x37\x31\ +\x2c\x35\x36\x2e\x37\x37\x38\x36\x30\x31\x20\x34\x39\x38\x2e\x39\ +\x38\x36\x33\x34\x2c\x35\x39\x2e\x35\x39\x38\x38\x32\x36\x20\x43\ +\x20\x34\x39\x39\x2e\x31\x32\x37\x39\x35\x2c\x36\x33\x2e\x32\x30\ +\x38\x37\x31\x34\x20\x35\x30\x32\x2e\x31\x38\x38\x39\x34\x2c\x36\ +\x36\x2e\x30\x32\x31\x36\x38\x32\x20\x35\x30\x35\x2e\x37\x39\x38\ +\x38\x34\x2c\x36\x35\x2e\x38\x38\x30\x30\x37\x36\x20\x43\x20\x35\ +\x30\x39\x2e\x34\x30\x38\x37\x33\x2c\x36\x35\x2e\x37\x33\x38\x34\ +\x37\x20\x35\x31\x32\x2e\x32\x32\x31\x37\x32\x2c\x36\x32\x2e\x37\ +\x30\x38\x37\x31\x34\x20\x35\x31\x32\x2e\x30\x38\x30\x30\x39\x2c\ +\x35\x39\x2e\x30\x39\x38\x38\x32\x36\x20\x43\x20\x35\x31\x31\x2e\ +\x39\x35\x38\x37\x39\x2c\x35\x36\x2e\x30\x30\x36\x35\x33\x32\x20\ +\x35\x30\x39\x2e\x37\x31\x31\x31\x32\x2c\x35\x33\x2e\x34\x37\x38\ +\x32\x30\x33\x20\x35\x30\x36\x2e\x37\x39\x38\x38\x34\x2c\x35\x32\ +\x2e\x39\x31\x31\x33\x32\x36\x20\x4c\x20\x35\x30\x36\x2e\x38\x33\ +\x30\x30\x39\x2c\x33\x37\x2e\x39\x34\x32\x35\x37\x36\x20\x43\x20\ +\x35\x30\x37\x2e\x32\x37\x34\x31\x39\x2c\x33\x37\x2e\x36\x39\x39\ +\x30\x38\x20\x35\x30\x37\x2e\x36\x38\x32\x37\x34\x2c\x33\x37\x2e\ +\x33\x39\x33\x32\x35\x33\x20\x35\x30\x38\x2e\x30\x34\x38\x38\x34\ +\x2c\x33\x37\x2e\x30\x30\x35\x30\x37\x36\x20\x43\x20\x35\x30\x39\ +\x2e\x39\x32\x39\x35\x31\x2c\x33\x35\x2e\x30\x31\x31\x30\x35\x20\ +\x35\x30\x39\x2e\x38\x32\x34\x31\x31\x2c\x33\x31\x2e\x38\x38\x35\ +\x37\x34\x35\x20\x35\x30\x37\x2e\x38\x33\x30\x30\x39\x2c\x33\x30\ +\x2e\x30\x30\x35\x30\x37\x36\x20\x43\x20\x35\x30\x35\x2e\x38\x33\ +\x36\x30\x36\x2c\x32\x38\x2e\x31\x32\x34\x34\x30\x38\x20\x35\x30\ +\x32\x2e\x37\x31\x30\x37\x38\x2c\x32\x38\x2e\x31\x39\x38\x35\x34\ +\x39\x20\x35\x30\x30\x2e\x38\x33\x30\x30\x39\x2c\x33\x30\x2e\x31\ +\x39\x32\x35\x37\x36\x20\x43\x20\x35\x30\x30\x2e\x34\x36\x38\x39\ +\x35\x2c\x33\x30\x2e\x35\x37\x35\x34\x37\x39\x20\x35\x30\x30\x2e\ +\x32\x30\x32\x35\x2c\x33\x31\x2e\x30\x32\x33\x31\x36\x33\x20\x34\ +\x39\x39\x2e\x39\x38\x36\x33\x34\x2c\x33\x31\x2e\x34\x37\x33\x38\ +\x32\x36\x20\x4c\x20\x34\x38\x39\x2e\x30\x31\x37\x35\x39\x2c\x33\ +\x31\x2e\x34\x34\x32\x35\x37\x36\x20\x43\x20\x34\x38\x38\x2e\x31\ +\x35\x30\x33\x2c\x32\x38\x2e\x37\x30\x30\x32\x33\x36\x20\x34\x38\ +\x35\x2e\x35\x32\x39\x32\x38\x2c\x32\x36\x2e\x37\x36\x31\x39\x33\ +\x36\x20\x34\x38\x32\x2e\x35\x31\x37\x35\x39\x2c\x32\x36\x2e\x38\ +\x38\x30\x30\x37\x36\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\x35\x32\x33\x36\x30\x35\x31\x37\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\x2e\x31\x36\x39\x30\x30\x30\x30\x33\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\ +\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ +\x6e\x3a\x6d\x69\x74\x65\x72\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\ +\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\ +\x33\x39\x34\x36\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\ +\x73\x74\x79\x6c\x65\x3d\x22\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\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\x2e\x31\x36\x39\x30\x30\x30\x30\x33\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ +\x6d\x69\x74\x65\x72\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\ +\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x73\x74\x61\x72\x74\x3a\x6e\ +\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x6d\x69\x64\x3a\x6e\ +\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x65\x6e\x64\x3a\x6e\ +\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ +\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ +\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\ +\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\ +\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\ +\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\ +\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\ +\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\ +\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\ +\x3d\x22\x4d\x20\x34\x35\x38\x2e\x39\x33\x37\x35\x2c\x32\x39\x2e\ +\x31\x38\x37\x35\x20\x4c\x20\x34\x35\x38\x2e\x39\x33\x37\x35\x2c\ +\x33\x32\x2e\x37\x35\x20\x4c\x20\x34\x35\x36\x2e\x33\x34\x33\x37\ +\x35\x2c\x33\x32\x2e\x37\x35\x20\x4c\x20\x34\x35\x36\x2e\x32\x38\ +\x31\x32\x35\x2c\x35\x38\x2e\x33\x31\x32\x35\x20\x4c\x20\x34\x36\ +\x30\x2e\x30\x33\x31\x32\x35\x2c\x35\x38\x2e\x33\x31\x32\x35\x20\ +\x4c\x20\x34\x36\x30\x2e\x30\x36\x32\x35\x2c\x33\x32\x2e\x38\x34\ +\x33\x37\x35\x20\x4c\x20\x34\x39\x39\x2e\x31\x35\x36\x32\x35\x2c\ +\x33\x32\x2e\x39\x30\x36\x32\x35\x20\x4c\x20\x34\x39\x39\x2e\x31\ +\x35\x36\x32\x35\x2c\x32\x39\x2e\x32\x35\x20\x4c\x20\x34\x35\x38\ +\x2e\x39\x33\x37\x35\x2c\x32\x39\x2e\x31\x38\x37\x35\x20\x7a\x20\ +\x4d\x20\x34\x39\x39\x2e\x39\x36\x38\x37\x35\x2c\x33\x31\x2e\x39\ +\x30\x36\x32\x35\x20\x4c\x20\x34\x39\x39\x2e\x39\x33\x37\x35\x2c\ +\x35\x37\x2e\x34\x36\x38\x37\x35\x20\x4c\x20\x35\x30\x33\x2e\x36\ +\x35\x36\x32\x35\x2c\x35\x37\x2e\x34\x36\x38\x37\x35\x20\x4c\x20\ +\x35\x30\x33\x2e\x37\x31\x38\x37\x35\x2c\x33\x31\x2e\x39\x30\x36\ +\x32\x35\x20\x4c\x20\x34\x39\x39\x2e\x39\x36\x38\x37\x35\x2c\x33\ +\x31\x2e\x39\x30\x36\x32\x35\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\ +\x33\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x67\x33\x38\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\ +\x74\x72\x69\x78\x28\x30\x2e\x37\x35\x38\x33\x39\x37\x34\x2c\x30\ +\x2c\x30\x2c\x30\x2e\x37\x35\x38\x33\x39\x37\x34\x2c\x31\x31\x30\ +\x2e\x37\x30\x35\x37\x33\x2c\x37\x2e\x36\x34\x37\x37\x35\x34\x32\ +\x29\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ +\x69\x78\x28\x2d\x39\x2e\x32\x36\x37\x38\x36\x37\x34\x65\x2d\x32\ +\x2c\x2d\x37\x2e\x39\x31\x32\x34\x33\x33\x38\x65\x2d\x32\x2c\x37\ +\x2e\x39\x31\x32\x34\x33\x33\x38\x65\x2d\x32\x2c\x2d\x39\x2e\x32\ +\x36\x37\x38\x36\x37\x34\x65\x2d\x32\x2c\x34\x32\x34\x2e\x36\x34\ +\x31\x33\x35\x2c\x31\x30\x37\x2e\x39\x37\x37\x39\x33\x29\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ +\x4d\x20\x32\x34\x35\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\ +\x32\x31\x39\x33\x20\x41\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\ +\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x31\ +\x34\x38\x2e\x35\x37\x31\x34\x32\x2c\x36\x35\x35\x2e\x32\x31\x39\ +\x33\x20\x41\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\ +\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x32\x34\x35\x2e\ +\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x7a\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x34\x38\x2e\x35\ +\x37\x31\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\ +\x34\x38\x2e\x35\x37\x31\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x63\x79\x3d\x22\x36\x35\x35\x2e\x32\x31\x39\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x63\x78\x3d\x22\x31\x39\x37\x2e\x31\x34\x32\x38\ +\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x30\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x66\x69\x6c\x6c\x3a\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\x35\x2e\x38\x30\x30\x30\ +\x30\x30\x31\x39\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\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\x63\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ +\x72\x69\x78\x28\x2d\x30\x2e\x31\x32\x30\x34\x31\x32\x32\x2c\x2d\ +\x31\x2e\x38\x37\x33\x32\x35\x31\x31\x65\x2d\x32\x2c\x31\x2e\x38\ +\x37\x33\x32\x35\x31\x31\x65\x2d\x32\x2c\x2d\x30\x2e\x31\x32\x30\ +\x34\x31\x32\x32\x2c\x34\x37\x32\x2e\x39\x37\x39\x32\x33\x2c\x31\ +\x31\x34\x2e\x39\x32\x35\x39\x35\x29\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x35\x39\ +\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\ +\x20\x41\x20\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\x33\x2e\ +\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\x20\x31\x20\x31\x39\x30\ +\x2e\x39\x31\x38\x38\x33\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\ +\x20\x41\x20\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\x33\x2e\ +\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\x20\x31\x20\x32\x35\x39\ +\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\ +\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x32\x33\ +\x2e\x39\x39\x31\x31\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\ +\x78\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x32\x32\x35\ +\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x30\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\ +\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\ +\x38\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\x6e\x6f\x6e\x65\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\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\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\x63\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x67\x33\x38\x30\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\ +\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x38\x33\x38\x39\ +\x32\x38\x37\x2c\x30\x2c\x30\x2c\x30\x2e\x38\x33\x38\x39\x32\x38\ +\x37\x2c\x38\x30\x2e\x37\x34\x39\x36\x38\x32\x2c\x35\x2e\x30\x35\ +\x32\x39\x37\x34\x35\x29\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ +\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x38\x2e\x38\x36\x35\x31\x34\ +\x35\x35\x65\x2d\x32\x2c\x2d\x38\x2e\x33\x36\x31\x31\x37\x31\x65\ +\x2d\x32\x2c\x38\x2e\x33\x36\x31\x31\x37\x31\x65\x2d\x32\x2c\x2d\ +\x38\x2e\x38\x36\x35\x31\x34\x35\x35\x65\x2d\x32\x2c\x34\x36\x34\ +\x2e\x30\x32\x31\x38\x34\x2c\x31\x30\x35\x2e\x39\x34\x30\x36\x34\ +\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x64\x3d\x22\x4d\x20\x32\x34\x35\x2e\x37\x31\x34\x32\x38\x2c\x36\ +\x35\x35\x2e\x32\x31\x39\x33\x20\x41\x20\x34\x38\x2e\x35\x37\x31\ +\x34\x33\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\ +\x31\x20\x31\x34\x38\x2e\x35\x37\x31\x34\x32\x2c\x36\x35\x35\x2e\ +\x32\x31\x39\x33\x20\x41\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\ +\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x32\ +\x34\x35\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\ +\x33\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x34\ +\x38\x2e\x35\x37\x31\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\ +\x78\x3d\x22\x34\x38\x2e\x35\x37\x31\x34\x33\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x63\x79\x3d\x22\x36\x35\x35\x2e\x32\x31\x39\x33\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x31\x39\x37\x2e\x31\ +\x34\x32\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x30\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\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\x23\x30\x30\x30\x30\x30\ +\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\ +\x2e\x38\x30\x30\x30\x30\x30\x31\x39\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\ +\x74\x65\x72\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\ +\x6d\x61\x72\x6b\x65\x72\x2d\x73\x74\x61\x72\x74\x3a\x6e\x6f\x6e\ +\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x6d\x69\x64\x3a\x6e\x6f\x6e\ +\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x65\x6e\x64\x3a\x6e\x6f\x6e\ +\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ +\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ +\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\ +\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\ +\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\ +\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\ +\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\ +\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\ +\x74\x72\x69\x78\x28\x2d\x30\x2e\x31\x31\x39\x33\x33\x38\x32\x2c\ +\x2d\x32\x2e\x34\x36\x36\x35\x36\x30\x33\x65\x2d\x32\x2c\x32\x2e\ +\x34\x36\x36\x35\x36\x30\x33\x65\x2d\x32\x2c\x2d\x30\x2e\x31\x31\ +\x39\x33\x33\x38\x32\x2c\x35\x31\x31\x2e\x39\x35\x36\x38\x38\x2c\ +\x31\x31\x35\x2e\x32\x37\x31\x31\x33\x29\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x35\ +\x39\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\ +\x36\x20\x41\x20\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\x33\ +\x2e\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\x20\x31\x20\x31\x39\ +\x30\x2e\x39\x31\x38\x38\x33\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\ +\x36\x20\x41\x20\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\x33\ +\x2e\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\x20\x31\x20\x32\x35\ +\x39\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\ +\x36\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x32\ +\x33\x2e\x39\x39\x31\x31\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x72\x78\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\ +\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x32\x32\ +\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x39\ +\x30\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\ +\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x33\x38\x31\x31\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\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\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\x63\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x74\x65\x78\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\ +\x22\x70\x72\x65\x73\x65\x72\x76\x65\x22\x0a\x20\x20\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\x32\x30\x2e\x36\x32\x32\x31\x33\x33\ +\x32\x36\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\x77\x65\x69\x67\ +\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\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\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\ +\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3a\x31\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x42\x69\x74\ +\x73\x74\x72\x65\x61\x6d\x20\x56\x65\x72\x61\x20\x53\x61\x6e\x73\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ +\x35\x31\x34\x2e\x34\x31\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x39\x2e\x36\x36\x39\x34\x39\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x74\x65\x78\x74\x33\x37\x33\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x3d\x22\x73\x63\x61\x6c\x65\x28\x30\x2e\x38\x38\x38\x37\x38\x37\ +\x31\x2c\x31\x2e\x31\x32\x35\x31\x32\x38\x38\x29\x22\x3e\x3c\x74\ +\x73\x70\x61\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x6f\x6c\x65\x3d\ +\x22\x6c\x69\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x74\x73\x70\x61\x6e\x33\x37\x33\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x78\x3d\x22\x35\x31\x34\x2e\x34\x31\x31\x35\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x39\x2e\ +\x36\x36\x39\x34\x39\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\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\x66\ +\x66\x66\x66\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\ +\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\x41\x72\ +\x69\x61\x6c\x20\x42\x6c\x61\x63\x6b\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\x41\x72\x69\x61\x6c\x20\x42\x6c\ +\x61\x63\x6b\x2c\x20\x42\x6f\x6c\x64\x27\x22\x3e\x31\x2e\x30\x30\ +\x3c\x2f\x74\x73\x70\x61\x6e\x3e\x3c\x2f\x74\x65\x78\x74\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x33\x37\x35\x35\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\ +\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\ +\x2e\x31\x33\x34\x36\x33\x39\x39\x2c\x35\x2e\x32\x38\x31\x35\x35\ +\x31\x35\x65\x2d\x33\x2c\x2d\x35\x2e\x32\x38\x31\x35\x35\x31\x35\ +\x65\x2d\x33\x2c\x2d\x30\x2e\x31\x33\x34\x36\x33\x39\x39\x2c\x35\ +\x30\x39\x2e\x36\x37\x36\x35\x36\x2c\x31\x31\x38\x2e\x33\x36\x36\ +\x37\x32\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ +\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x2f\x68\x6f\x6d\x65\x2f\ +\x79\x6f\x72\x69\x6b\x2f\x44\x6f\x63\x75\x6d\x65\x6e\x74\x73\x2f\ +\x4c\x61\x62\x2f\x44\x72\x61\x66\x74\x2f\x69\x63\x6f\x6e\x73\x2f\ +\x63\x69\x72\x63\x6c\x65\x2e\x70\x6e\x67\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x37\x2e\x32\ +\x39\x33\x34\x31\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\ +\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x37\x2e\x32\x39\x33\x34\x31\ +\x34\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x64\x3d\x22\x4d\x20\x32\x34\x35\x2e\x37\x31\x34\x32\x38\ +\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x41\x20\x34\x38\x2e\x35\ +\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\ +\x31\x20\x31\x20\x31\x34\x38\x2e\x35\x37\x31\x34\x32\x2c\x36\x35\ +\x35\x2e\x32\x31\x39\x33\x20\x41\x20\x34\x38\x2e\x35\x37\x31\x34\ +\x33\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\ +\x20\x32\x34\x35\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\x32\ +\x31\x39\x33\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\ +\x22\x34\x38\x2e\x35\x37\x31\x34\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x72\x78\x3d\x22\x34\x38\x2e\x35\x37\x31\x34\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\x36\x35\x35\x2e\x32\x31\x39\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x31\x39\x37\ +\x2e\x31\x34\x32\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x35\ +\x37\x22\x0a\x20\x20\x20\x20\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\x66\x66\x61\x39\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\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x37\x39\x39\ +\x39\x39\x39\x37\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\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\x63\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\ +\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\ +\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ +\x28\x30\x2e\x38\x35\x31\x33\x30\x32\x33\x2c\x2d\x30\x2e\x35\x32\ +\x34\x36\x37\x35\x34\x2c\x30\x2e\x35\x32\x34\x36\x37\x35\x34\x2c\ +\x30\x2e\x38\x35\x31\x33\x30\x32\x33\x2c\x2d\x33\x33\x38\x2e\x36\ +\x39\x36\x39\x32\x2c\x32\x31\x34\x2e\x31\x39\x33\x32\x38\x29\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ +\x22\x4d\x20\x32\x35\x39\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\ +\x2e\x37\x39\x37\x33\x36\x20\x41\x20\x33\x34\x2e\x33\x34\x35\x31\ +\x38\x38\x2c\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\ +\x20\x31\x20\x31\x39\x30\x2e\x39\x31\x38\x38\x33\x2c\x36\x37\x32\ +\x2e\x37\x39\x37\x33\x36\x20\x41\x20\x33\x34\x2e\x33\x34\x35\x31\ +\x38\x38\x2c\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\ +\x20\x31\x20\x32\x35\x39\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\ +\x2e\x37\x39\x37\x33\x36\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x72\x79\x3d\x22\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\ +\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\x36\x37\ +\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\ +\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x61\x74\x68\x33\x37\x35\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ +\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x37\x39\x39\x29\x3b\x66\x69\x6c\x6c\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\ +\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ +\x74\x68\x3a\x30\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\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\x63\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x33\x38\x31\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x2d\x30\x2e\x31\x33\x34\x36\x33\x39\x39\x2c\x35\x2e\x32\x38\x31\ +\x35\x35\x31\x35\x65\x2d\x33\x2c\x2d\x35\x2e\x32\x38\x31\x35\x35\ +\x31\x35\x65\x2d\x33\x2c\x2d\x30\x2e\x31\x33\x34\x36\x33\x39\x39\ +\x2c\x34\x38\x38\x2e\x31\x30\x38\x30\x35\x2c\x31\x34\x34\x2e\x30\ +\x32\x38\x39\x32\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\ +\x74\x2d\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x2f\x68\x6f\x6d\ +\x65\x2f\x79\x6f\x72\x69\x6b\x2f\x44\x6f\x63\x75\x6d\x65\x6e\x74\ +\x73\x2f\x4c\x61\x62\x2f\x44\x72\x61\x66\x74\x2f\x69\x63\x6f\x6e\ +\x73\x2f\x63\x69\x72\x63\x6c\x65\x2e\x70\x6e\x67\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x37\ +\x2e\x32\x39\x33\x34\x31\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\ +\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x37\x2e\x32\x39\x33\ +\x34\x31\x34\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x34\x35\x2e\x37\x31\x34\ +\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x41\x20\x34\x38\ +\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\x20\ +\x30\x20\x31\x20\x31\x20\x31\x34\x38\x2e\x35\x37\x31\x34\x32\x2c\ +\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x41\x20\x34\x38\x2e\x35\x37\ +\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\ +\x20\x31\x20\x32\x34\x35\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\ +\x2e\x32\x31\x39\x33\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\ +\x79\x3d\x22\x34\x38\x2e\x35\x37\x31\x34\x33\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x72\x78\x3d\x22\x34\x38\x2e\x35\x37\x31\x34\x33\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\x36\x35\x35\x2e\x32\ +\x31\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x31\ +\x39\x37\x2e\x31\x34\x32\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\ +\x38\x31\x35\x22\x0a\x20\x20\x20\x20\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\x66\x66\x61\x39\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\x23\x30\x30\x30\x30\x30\x30\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x37\ +\x39\x39\x39\x39\x39\x37\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\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\x63\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\ +\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ +\x69\x78\x28\x30\x2e\x38\x35\x31\x33\x30\x32\x33\x2c\x2d\x30\x2e\ +\x35\x32\x34\x36\x37\x35\x34\x2c\x30\x2e\x35\x32\x34\x36\x37\x35\ +\x34\x2c\x30\x2e\x38\x35\x31\x33\x30\x32\x33\x2c\x2d\x33\x33\x38\ +\x2e\x36\x39\x36\x39\x32\x2c\x32\x31\x34\x2e\x31\x39\x33\x32\x38\ +\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x64\x3d\x22\x4d\x20\x32\x35\x39\x2e\x36\x30\x39\x32\x31\x2c\x36\ +\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x41\x20\x33\x34\x2e\x33\x34\ +\x35\x31\x38\x38\x2c\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x20\x30\ +\x20\x31\x20\x31\x20\x31\x39\x30\x2e\x39\x31\x38\x38\x33\x2c\x36\ +\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x41\x20\x33\x34\x2e\x33\x34\ +\x35\x31\x38\x38\x2c\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x20\x30\ +\x20\x31\x20\x31\x20\x32\x35\x39\x2e\x36\x30\x39\x32\x31\x2c\x36\ +\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x7a\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x72\x79\x3d\x22\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\x33\x34\x2e\x33\x34\ +\x35\x31\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\ +\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x61\x74\x68\x33\x38\x31\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ +\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x31\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\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x30\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\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\ +\x72\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x2f\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x33\ +\x38\x32\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ +\x78\x28\x2d\x30\x2e\x31\x33\x34\x36\x33\x39\x39\x2c\x35\x2e\x32\ +\x38\x31\x35\x35\x31\x35\x65\x2d\x33\x2c\x2d\x35\x2e\x32\x38\x31\ +\x35\x35\x31\x35\x65\x2d\x33\x2c\x2d\x30\x2e\x31\x33\x34\x36\x33\ +\x39\x39\x2c\x35\x33\x32\x2e\x34\x32\x38\x34\x39\x2c\x31\x34\x34\ +\x2e\x32\x38\x31\x34\x37\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\ +\x6f\x72\x74\x2d\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x2f\x68\ +\x6f\x6d\x65\x2f\x79\x6f\x72\x69\x6b\x2f\x44\x6f\x63\x75\x6d\x65\ +\x6e\x74\x73\x2f\x4c\x61\x62\x2f\x44\x72\x61\x66\x74\x2f\x69\x63\ +\x6f\x6e\x73\x2f\x63\x69\x72\x63\x6c\x65\x2e\x70\x6e\x67\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\ +\x22\x37\x2e\x32\x39\x33\x34\x31\x34\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x37\x2e\x32\ +\x39\x33\x34\x31\x34\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x34\x35\x2e\x37\ +\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x41\x20\ +\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\x31\x34\ +\x33\x20\x30\x20\x31\x20\x31\x20\x31\x34\x38\x2e\x35\x37\x31\x34\ +\x32\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x41\x20\x34\x38\x2e\ +\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x30\ +\x20\x31\x20\x31\x20\x32\x34\x35\x2e\x37\x31\x34\x32\x38\x2c\x36\ +\x35\x35\x2e\x32\x31\x39\x33\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x72\x79\x3d\x22\x34\x38\x2e\x35\x37\x31\x34\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\x34\x38\x2e\x35\x37\x31\x34\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\x36\x35\x35\ +\x2e\x32\x31\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\ +\x22\x31\x39\x37\x2e\x31\x34\x32\x38\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ +\x68\x33\x38\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\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\x66\x66\x61\x39\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\x23\x30\x30\x30\x30\x30\ +\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\ +\x2e\x37\x39\x39\x39\x39\x39\x37\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\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\ +\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\ +\x74\x72\x69\x78\x28\x30\x2e\x38\x35\x31\x33\x30\x32\x33\x2c\x2d\ +\x30\x2e\x35\x32\x34\x36\x37\x35\x34\x2c\x30\x2e\x35\x32\x34\x36\ +\x37\x35\x34\x2c\x30\x2e\x38\x35\x31\x33\x30\x32\x33\x2c\x2d\x33\ +\x33\x38\x2e\x36\x39\x36\x39\x32\x2c\x32\x31\x34\x2e\x31\x39\x33\ +\x32\x38\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x64\x3d\x22\x4d\x20\x32\x35\x39\x2e\x36\x30\x39\x32\x31\ +\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x41\x20\x33\x34\x2e\ +\x33\x34\x35\x31\x38\x38\x2c\x32\x33\x2e\x39\x39\x31\x31\x32\x33\ +\x20\x30\x20\x31\x20\x31\x20\x31\x39\x30\x2e\x39\x31\x38\x38\x33\ +\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x41\x20\x33\x34\x2e\ +\x33\x34\x35\x31\x38\x38\x2c\x32\x33\x2e\x39\x39\x31\x31\x32\x33\ +\x20\x30\x20\x31\x20\x31\x20\x32\x35\x39\x2e\x36\x30\x39\x32\x31\ +\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x7a\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x72\x79\x3d\x22\x32\x33\x2e\x39\x39\x31\x31\x32\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\x33\x34\x2e\ +\x33\x34\x35\x31\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\ +\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x32\x35\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\ +\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x32\x37\x29\x3b\x66\ +\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\ +\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x30\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\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\ +\x22\x61\x72\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\ +\x0a\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\ +\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x21\x35\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x70\x78\ +\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x70\ +\x78\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x36\x31\ +\x32\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\ +\x2e\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x34\x38\x2e\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\x44\x72\x61\x66\ +\x74\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x2e\x73\x76\x67\x22\x3e\x0a\ +\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x64\x65\x66\x73\x33\x36\x31\x34\x22\x3e\x0a\x20\x20\x20\x20\ +\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\ +\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\ +\x5f\x78\x3d\x22\x30\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\ +\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x36\x34\x20\x3a\x20\x33\ +\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\ +\x72\x69\x67\x69\x6e\x3d\x22\x33\x32\x20\x3a\x20\x32\x31\x2e\x33\ +\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\ +\x65\x33\x36\x32\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\ +\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x35\x38\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\ +\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\ +\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\ +\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\ +\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ +\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\ +\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x33\x31\x34\x34\x2d\x33\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x36\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\ +\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\ +\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\ +\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\ +\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\ +\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\ +\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x2d\ +\x33\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\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x33\x31\x34\x36\x2d\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x33\x31\x34\x38\x2d\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x3b\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\ +\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\ +\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x33\x31\x34\x34\x2d\x33\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x35\x39\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\ +\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\ +\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\ +\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\ +\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\ +\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\ +\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\ +\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\x67\x33\x34\x34\x38\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\x37\x22\x3e\x0a\x20\x20\x20\x20\x3c\ +\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\ +\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\ +\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\ +\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\ +\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\ +\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\ +\x6c\x65\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\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x3d\x22\x74\x72\x61\x6e\x73\x6c\x61\x74\x65\x28\x30\x2e\x38\x36\ +\x36\x37\x38\x32\x36\x34\x2c\x2d\x31\x33\x32\x2e\x31\x37\x31\x32\ +\x37\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\ +\x33\x34\x34\x38\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\x35\x34\x2d\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x35\x39\x2e\x33\x32\x33\ +\x37\x35\x2c\x31\x36\x37\x2e\x30\x30\x32\x31\x34\x20\x63\x20\x2d\ +\x30\x2e\x31\x30\x36\x35\x32\x2c\x2d\x33\x2e\x39\x37\x38\x33\x35\ +\x20\x2d\x33\x2e\x33\x37\x39\x35\x38\x2c\x2d\x37\x2e\x31\x33\x32\ +\x39\x32\x20\x2d\x37\x2e\x33\x34\x33\x37\x35\x2c\x2d\x37\x2e\x30\ +\x39\x33\x37\x35\x20\x6c\x20\x2d\x31\x30\x2e\x36\x38\x37\x35\x2c\ +\x2d\x31\x38\x2e\x34\x36\x38\x37\x35\x20\x2d\x33\x30\x2e\x37\x38\ +\x31\x32\x35\x2c\x36\x2e\x35\x33\x31\x32\x35\x20\x2d\x33\x2e\x32\ +\x38\x31\x32\x35\x2c\x33\x31\x2e\x33\x31\x32\x35\x20\x32\x38\x2e\ +\x37\x35\x2c\x31\x32\x2e\x37\x38\x31\x32\x35\x20\x31\x35\x2e\x38\ +\x37\x35\x2c\x2d\x31\x37\x2e\x36\x32\x35\x20\x63\x20\x30\x2e\x31\ +\x32\x34\x34\x35\x2c\x30\x2e\x30\x30\x33\x20\x30\x2e\x32\x34\x39\ +\x31\x35\x2c\x30\x2e\x30\x33\x34\x36\x20\x30\x2e\x33\x37\x35\x2c\ +\x30\x2e\x30\x33\x31\x32\x20\x34\x2e\x30\x32\x30\x32\x33\x2c\x2d\ +\x30\x2e\x31\x30\x37\x36\x34\x20\x37\x2e\x32\x30\x31\x33\x39\x2c\ +\x2d\x33\x2e\x34\x34\x38\x35\x33\x20\x37\x2e\x30\x39\x33\x37\x35\ +\x2c\x2d\x37\x2e\x34\x36\x38\x37\x35\x20\x7a\x20\x6d\x20\x2d\x31\ +\x32\x2c\x2d\x35\x2e\x33\x37\x35\x20\x63\x20\x2d\x31\x2e\x36\x32\ +\x30\x33\x37\x2c\x31\x2e\x33\x37\x38\x36\x33\x20\x2d\x32\x2e\x36\ +\x32\x33\x38\x38\x2c\x33\x2e\x34\x35\x37\x37\x20\x2d\x32\x2e\x35\ +\x36\x32\x35\x2c\x35\x2e\x37\x35\x20\x30\x2e\x30\x35\x35\x37\x2c\ +\x32\x2e\x30\x38\x30\x39\x39\x20\x31\x2e\x30\x30\x31\x39\x35\x2c\ +\x33\x2e\x39\x32\x39\x35\x39\x20\x32\x2e\x34\x33\x37\x35\x2c\x35\ +\x2e\x32\x31\x38\x37\x35\x20\x6c\x20\x2d\x31\x32\x2e\x31\x32\x35\ +\x2c\x31\x33\x2e\x35\x20\x2d\x32\x31\x2e\x39\x36\x38\x37\x35\x2c\ +\x2d\x39\x2e\x37\x38\x31\x32\x35\x20\x32\x2e\x35\x2c\x2d\x32\x33\ +\x2e\x39\x30\x36\x32\x35\x20\x32\x33\x2e\x35\x33\x31\x32\x35\x2c\ +\x2d\x35\x20\x38\x2e\x31\x38\x37\x35\x2c\x31\x34\x2e\x32\x31\x38\ +\x37\x35\x20\x7a\x20\x6d\x20\x2d\x39\x2e\x38\x37\x35\x2c\x34\x2e\ +\x38\x37\x35\x20\x63\x20\x30\x2e\x30\x39\x31\x33\x2c\x2d\x34\x2e\ +\x30\x32\x30\x36\x33\x20\x2d\x33\x2e\x31\x30\x34\x33\x37\x2c\x2d\ +\x37\x2e\x33\x37\x37\x34\x31\x20\x2d\x37\x2e\x31\x32\x35\x2c\x2d\ +\x37\x2e\x34\x36\x38\x37\x35\x20\x2d\x34\x2e\x30\x32\x30\x36\x33\ +\x2c\x2d\x30\x2e\x30\x39\x31\x34\x20\x2d\x37\x2e\x33\x34\x36\x31\ +\x35\x2c\x33\x2e\x31\x30\x34\x33\x37\x20\x2d\x37\x2e\x34\x33\x37\ +\x35\x2c\x37\x2e\x31\x32\x35\x20\x2d\x30\x2e\x30\x39\x31\x33\x2c\ +\x34\x2e\x30\x32\x30\x36\x33\x20\x33\x2e\x30\x37\x33\x31\x32\x2c\ +\x37\x2e\x33\x34\x36\x31\x35\x20\x37\x2e\x30\x39\x33\x37\x35\x2c\ +\x37\x2e\x34\x33\x37\x35\x20\x34\x2e\x30\x32\x30\x36\x33\x2c\x30\ +\x2e\x30\x39\x31\x34\x20\x37\x2e\x33\x37\x37\x34\x2c\x2d\x33\x2e\ +\x30\x37\x33\x31\x32\x20\x37\x2e\x34\x36\x38\x37\x35\x2c\x2d\x37\ +\x2e\x30\x39\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\x30\x2e\x36\x30\x33\x30\x35\x33\x34\x33\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\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\x30\x2e\x31\x34\x39\x39\x32\x30\x38\x32\x3b\x6d\x61\x72\ +\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\ +\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\ +\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\ +\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\ +\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\ +\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x34\x35\x34\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x35\x34\ +\x2e\x36\x34\x31\x35\x34\x2c\x31\x36\x34\x2e\x36\x38\x39\x36\x34\ +\x20\x63\x20\x30\x2c\x30\x20\x2d\x37\x2e\x32\x33\x39\x39\x32\x37\ +\x2c\x2d\x31\x32\x2e\x35\x32\x36\x32\x32\x20\x2d\x39\x2e\x38\x36\ +\x34\x39\x32\x37\x2c\x2d\x31\x37\x2e\x30\x36\x37\x38\x39\x20\x2d\ +\x32\x2e\x36\x32\x35\x2c\x2d\x34\x2e\x35\x34\x31\x36\x37\x20\x2d\ +\x35\x2e\x38\x38\x35\x30\x37\x33\x2c\x2d\x31\x30\x2e\x31\x38\x32\ +\x31\x31\x20\x2d\x35\x2e\x38\x38\x35\x30\x37\x33\x2c\x2d\x31\x30\ +\x2e\x31\x38\x32\x31\x31\x20\x30\x2c\x30\x20\x2d\x31\x30\x2e\x38\ +\x32\x35\x35\x30\x32\x2c\x32\x2e\x32\x39\x36\x39\x38\x20\x2d\x31\ +\x35\x2e\x39\x35\x35\x37\x31\x2c\x33\x2e\x33\x38\x35\x35\x33\x20\ +\x2d\x35\x2e\x31\x33\x30\x32\x30\x38\x2c\x31\x2e\x30\x38\x38\x35\ +\x34\x20\x2d\x31\x34\x2e\x38\x32\x35\x35\x34\x2c\x33\x2e\x31\x34\ +\x35\x37\x32\x20\x2d\x31\x34\x2e\x38\x32\x35\x35\x34\x2c\x33\x2e\ +\x31\x34\x35\x37\x32\x20\x6c\x20\x2d\x33\x2e\x32\x38\x31\x32\x35\ +\x30\x32\x2c\x33\x31\x2e\x33\x31\x32\x35\x20\x63\x20\x30\x2c\x30\ +\x20\x39\x2e\x35\x30\x36\x33\x30\x36\x32\x2c\x34\x2e\x32\x32\x36\ +\x31\x37\x20\x31\x34\x2e\x32\x39\x37\x39\x37\x33\x32\x2c\x36\x2e\ +\x33\x35\x36\x33\x38\x20\x34\x2e\x37\x39\x31\x36\x36\x37\x2c\x32\ +\x2e\x31\x33\x30\x32\x31\x20\x31\x34\x2e\x34\x35\x32\x30\x32\x37\ +\x2c\x36\x2e\x34\x32\x34\x38\x37\x20\x31\x34\x2e\x34\x35\x32\x30\ +\x32\x37\x2c\x36\x2e\x34\x32\x34\x38\x37\x20\x7a\x20\x6d\x20\x2d\ +\x35\x2e\x39\x30\x36\x32\x35\x2c\x2d\x30\x2e\x34\x36\x38\x37\x35\ +\x20\x63\x20\x30\x2c\x30\x20\x2d\x35\x2e\x36\x31\x30\x39\x39\x39\ +\x2c\x36\x2e\x32\x34\x34\x31\x35\x20\x2d\x38\x2e\x32\x38\x38\x30\ +\x38\x33\x2c\x39\x2e\x32\x32\x33\x33\x31\x20\x2d\x32\x2e\x36\x37\ +\x37\x30\x38\x33\x2c\x32\x2e\x39\x37\x39\x31\x37\x20\x2d\x37\x2e\ +\x37\x37\x34\x34\x31\x37\x2c\x38\x2e\x36\x35\x31\x36\x39\x20\x2d\ +\x37\x2e\x37\x37\x34\x34\x31\x37\x2c\x38\x2e\x36\x35\x31\x36\x39\ +\x20\x6c\x20\x2d\x32\x31\x2e\x39\x36\x38\x37\x35\x2c\x2d\x39\x2e\ +\x37\x38\x31\x32\x35\x20\x63\x20\x30\x2c\x30\x20\x30\x2e\x39\x31\ +\x34\x33\x32\x36\x2c\x2d\x38\x2e\x37\x34\x33\x32\x34\x20\x31\x2e\ +\x33\x33\x30\x39\x39\x32\x2c\x2d\x31\x32\x2e\x37\x32\x37\x36\x31\ +\x20\x30\x2e\x34\x31\x36\x36\x36\x37\x2c\x2d\x33\x2e\x39\x38\x34\ +\x33\x38\x20\x31\x2e\x31\x36\x39\x30\x30\x38\x2c\x2d\x31\x31\x2e\ +\x31\x37\x38\x36\x34\x20\x31\x2e\x31\x36\x39\x30\x30\x38\x2c\x2d\ +\x31\x31\x2e\x31\x37\x38\x36\x34\x20\x30\x2c\x30\x20\x37\x2e\x34\ +\x36\x31\x38\x36\x35\x2c\x2d\x31\x2e\x35\x38\x35\x35\x32\x20\x31\ +\x31\x2e\x33\x38\x33\x37\x34\x2c\x2d\x32\x2e\x34\x31\x38\x38\x36\ +\x20\x33\x2e\x39\x32\x31\x38\x37\x35\x2c\x2d\x30\x2e\x38\x33\x33\ +\x33\x33\x20\x31\x32\x2e\x31\x34\x37\x35\x31\x2c\x2d\x32\x2e\x35\ +\x38\x31\x31\x34\x20\x31\x32\x2e\x31\x34\x37\x35\x31\x2c\x2d\x32\ +\x2e\x35\x38\x31\x31\x34\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\x66\x66\ +\x66\x66\x66\x66\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\x2e\x35\x39\x36\x31\x39\x37\x38\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\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\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\ +\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\ +\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x7a\x63\x7a\x63\x63\x7a\x63\ +\x63\x63\x7a\x63\x63\x7a\x63\x7a\x63\x63\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ +\x2d\x79\x64\x70\x69\x3d\x22\x37\x2e\x30\x37\x32\x31\x39\x35\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\ +\x22\x37\x2e\x30\x37\x32\x31\x39\x35\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\ +\x70\x6f\x72\x74\x2d\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x2f\ +\x68\x6f\x6d\x65\x2f\x79\x6f\x72\x69\x6b\x2f\x44\x6f\x63\x75\x6d\ +\x65\x6e\x74\x73\x2f\x4c\x61\x62\x2f\x44\x72\x61\x66\x74\x2f\x69\ +\x63\x6f\x6e\x73\x2f\x6c\x69\x6e\x65\x2e\x70\x6e\x67\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\x2d\x30\x2e\x30\x30\x34\ +\x30\x31\x32\x36\x35\x2c\x2d\x30\x2e\x31\x34\x39\x38\x36\x37\x31\ +\x2c\x30\x2e\x31\x34\x39\x38\x36\x37\x31\x2c\x2d\x30\x2e\x30\x30\ +\x34\x30\x31\x32\x36\x35\x2c\x2d\x34\x37\x2e\x37\x37\x34\x35\x34\ +\x2c\x31\x39\x35\x2e\x33\x34\x37\x32\x35\x29\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x33\x31\x35\x34\x2d\ +\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\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\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\x66\x61\x39\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\x35\x2e\x38\x30\x30\ +\x30\x30\x30\x31\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ +\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x61\x74\x68\x32\x31\x36\x32\x2d\x35\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x63\x78\x3d\x22\x31\x39\x37\x2e\x31\x34\x32\x38\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x63\x79\x3d\x22\x36\x35\x35\x2e\x32\x31\x39\x33\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\x34\x38\x2e\x35\x37\x31\ +\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x34\x38\x2e\x35\ +\x37\x31\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x6d\x20\x32\x34\x35\x2e\x37\x31\x34\x32\x38\x2c\ +\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x63\x20\x30\x2c\x32\x36\x2e\ +\x38\x32\x35\x32\x36\x20\x2d\x32\x31\x2e\x37\x34\x36\x31\x37\x2c\ +\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x2d\x34\x38\x2e\x35\x37\x31\ +\x34\x33\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x2d\x32\x36\x2e\ +\x38\x32\x35\x32\x36\x2c\x30\x20\x2d\x34\x38\x2e\x35\x37\x31\x34\ +\x33\x2c\x2d\x32\x31\x2e\x37\x34\x36\x31\x37\x20\x2d\x34\x38\x2e\ +\x35\x37\x31\x34\x33\x2c\x2d\x34\x38\x2e\x35\x37\x31\x34\x33\x20\ +\x30\x2c\x2d\x32\x36\x2e\x38\x32\x35\x32\x36\x20\x32\x31\x2e\x37\ +\x34\x36\x31\x37\x2c\x2d\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x34\ +\x38\x2e\x35\x37\x31\x34\x33\x2c\x2d\x34\x38\x2e\x35\x37\x31\x34\ +\x33\x20\x32\x36\x2e\x38\x32\x35\x32\x36\x2c\x30\x20\x34\x38\x2e\ +\x35\x37\x31\x34\x33\x2c\x32\x31\x2e\x37\x34\x36\x31\x37\x20\x34\ +\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\ +\x20\x7a\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\ +\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\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\ +\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x36\ +\x30\x30\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x61\x74\x68\x33\x31\x33\x34\x2d\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\ +\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\ +\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x32\x33\x2e\x39\ +\x39\x31\x31\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x64\x3d\x22\x6d\x20\x32\x35\x39\x2e\x36\x30\x39\x32\x31\ +\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x63\x20\x30\x2c\x31\ +\x33\x2e\x32\x34\x39\x39\x33\x20\x2d\x31\x35\x2e\x33\x37\x36\x38\ +\x36\x2c\x32\x33\x2e\x39\x39\x31\x31\x33\x20\x2d\x33\x34\x2e\x33\ +\x34\x35\x31\x39\x2c\x32\x33\x2e\x39\x39\x31\x31\x33\x20\x2d\x31\ +\x38\x2e\x39\x36\x38\x33\x32\x2c\x30\x20\x2d\x33\x34\x2e\x33\x34\ +\x35\x31\x39\x2c\x2d\x31\x30\x2e\x37\x34\x31\x32\x20\x2d\x33\x34\ +\x2e\x33\x34\x35\x31\x39\x2c\x2d\x32\x33\x2e\x39\x39\x31\x31\x33\ +\x20\x30\x2c\x2d\x31\x33\x2e\x32\x34\x39\x39\x33\x20\x31\x35\x2e\ +\x33\x37\x36\x38\x37\x2c\x2d\x32\x33\x2e\x39\x39\x31\x31\x32\x20\ +\x33\x34\x2e\x33\x34\x35\x31\x39\x2c\x2d\x32\x33\x2e\x39\x39\x31\ +\x31\x32\x20\x31\x38\x2e\x39\x36\x38\x33\x33\x2c\x30\x20\x33\x34\ +\x2e\x33\x34\x35\x31\x39\x2c\x31\x30\x2e\x37\x34\x31\x31\x39\x20\ +\x33\x34\x2e\x33\x34\x35\x31\x39\x2c\x32\x33\x2e\x39\x39\x31\x31\ +\x32\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ +\x78\x28\x30\x2e\x38\x35\x31\x33\x30\x32\x33\x2c\x2d\x30\x2e\x35\ +\x32\x34\x36\x37\x35\x34\x2c\x30\x2e\x35\x32\x34\x36\x37\x35\x34\ +\x2c\x30\x2e\x38\x35\x31\x33\x30\x32\x33\x2c\x2d\x33\x33\x38\x2e\ +\x36\x39\x36\x39\x32\x2c\x32\x31\x34\x2e\x31\x39\x33\x32\x38\x29\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\ +\x74\x2d\x79\x64\x70\x69\x3d\x22\x37\x2e\x30\x37\x32\x31\x39\x35\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\ +\x3d\x22\x37\x2e\x30\x37\x32\x31\x39\x35\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\ +\x78\x70\x6f\x72\x74\x2d\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\ +\x2f\x68\x6f\x6d\x65\x2f\x79\x6f\x72\x69\x6b\x2f\x44\x6f\x63\x75\ +\x6d\x65\x6e\x74\x73\x2f\x4c\x61\x62\x2f\x44\x72\x61\x66\x74\x2f\ +\x69\x63\x6f\x6e\x73\x2f\x6c\x69\x6e\x65\x2e\x70\x6e\x67\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\ +\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x30\x30\x33\ +\x34\x30\x35\x32\x33\x2c\x2d\x30\x2e\x31\x34\x39\x38\x38\x32\x31\ +\x34\x2c\x30\x2e\x31\x34\x39\x38\x38\x32\x31\x34\x2c\x30\x2e\x30\ +\x30\x33\x34\x30\x35\x32\x33\x2c\x2d\x37\x31\x2e\x31\x33\x32\x37\ +\x31\x2c\x31\x38\x39\x2e\x36\x33\x33\x38\x38\x29\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x33\x31\x36\x30\ +\x2d\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\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\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\x66\x61\x39\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\x23\x30\x30\x30\x30\x30\x30\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\ +\x38\x30\x30\x30\x30\x30\x31\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\ +\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ +\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ +\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\ +\x30\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\ +\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\ +\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\ +\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\ +\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\ +\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ +\x74\x68\x33\x31\x36\x32\x2d\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\ +\x3d\x22\x31\x39\x37\x2e\x31\x34\x32\x38\x35\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x63\x79\x3d\x22\x36\x35\x35\x2e\x32\x31\x39\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x72\x78\x3d\x22\x34\x38\x2e\x35\x37\x31\x34\x33\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x34\x38\x2e\x35\x37\x31\x34\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ +\x22\x6d\x20\x32\x34\x35\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\ +\x2e\x32\x31\x39\x33\x20\x63\x20\x30\x2c\x32\x36\x2e\x38\x32\x35\ +\x32\x36\x20\x2d\x32\x31\x2e\x37\x34\x36\x31\x37\x2c\x34\x38\x2e\ +\x35\x37\x31\x34\x33\x20\x2d\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\ +\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x2d\x32\x36\x2e\x38\x32\x35\ +\x32\x36\x2c\x30\x20\x2d\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x2d\ +\x32\x31\x2e\x37\x34\x36\x31\x37\x20\x2d\x34\x38\x2e\x35\x37\x31\ +\x34\x33\x2c\x2d\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x2c\x2d\ +\x32\x36\x2e\x38\x32\x35\x32\x36\x20\x32\x31\x2e\x37\x34\x36\x31\ +\x37\x2c\x2d\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x34\x38\x2e\x35\ +\x37\x31\x34\x33\x2c\x2d\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x32\ +\x36\x2e\x38\x32\x35\x32\x36\x2c\x30\x20\x34\x38\x2e\x35\x37\x31\ +\x34\x33\x2c\x32\x31\x2e\x37\x34\x36\x31\x37\x20\x34\x38\x2e\x35\ +\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x7a\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\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\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\ +\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x35\x39\x38\x29\ +\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ +\x33\x31\x36\x34\x2d\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\ +\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\ +\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x72\x78\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x32\x33\x2e\x39\x39\x31\x31\ +\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\ +\x3d\x22\x6d\x20\x32\x35\x39\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\ +\x32\x2e\x37\x39\x37\x33\x36\x20\x63\x20\x30\x2c\x31\x33\x2e\x32\ +\x34\x39\x39\x33\x20\x2d\x31\x35\x2e\x33\x37\x36\x38\x36\x2c\x32\ +\x33\x2e\x39\x39\x31\x31\x33\x20\x2d\x33\x34\x2e\x33\x34\x35\x31\ +\x39\x2c\x32\x33\x2e\x39\x39\x31\x31\x33\x20\x2d\x31\x38\x2e\x39\ +\x36\x38\x33\x32\x2c\x30\x20\x2d\x33\x34\x2e\x33\x34\x35\x31\x39\ +\x2c\x2d\x31\x30\x2e\x37\x34\x31\x32\x20\x2d\x33\x34\x2e\x33\x34\ +\x35\x31\x39\x2c\x2d\x32\x33\x2e\x39\x39\x31\x31\x33\x20\x30\x2c\ +\x2d\x31\x33\x2e\x32\x34\x39\x39\x33\x20\x31\x35\x2e\x33\x37\x36\ +\x38\x37\x2c\x2d\x32\x33\x2e\x39\x39\x31\x31\x32\x20\x33\x34\x2e\ +\x33\x34\x35\x31\x39\x2c\x2d\x32\x33\x2e\x39\x39\x31\x31\x32\x20\ +\x31\x38\x2e\x39\x36\x38\x33\x33\x2c\x30\x20\x33\x34\x2e\x33\x34\ +\x35\x31\x39\x2c\x31\x30\x2e\x37\x34\x31\x31\x39\x20\x33\x34\x2e\ +\x33\x34\x35\x31\x39\x2c\x32\x33\x2e\x39\x39\x31\x31\x32\x20\x7a\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\ +\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\ +\x2e\x38\x35\x31\x33\x30\x32\x33\x2c\x2d\x30\x2e\x35\x32\x34\x36\ +\x37\x35\x34\x2c\x30\x2e\x35\x32\x34\x36\x37\x35\x34\x2c\x30\x2e\ +\x38\x35\x31\x33\x30\x32\x33\x2c\x2d\x33\x33\x38\x2e\x36\x39\x36\ +\x39\x32\x2c\x32\x31\x34\x2e\x31\x39\x33\x32\x38\x29\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\ +\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\ +\x76\x67\x3e\x0a\ \x00\x00\x11\xb4\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ @@ -28368,801 +60845,3312 @@ qt_resource_data = "\ \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\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\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\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\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\x13\xbe\ +\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\x31\x33\ +\x36\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\x32\x20\x72\x39\x38\x31\x39\x22\ +\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\ +\x6e\x61\x6d\x65\x3d\x22\x44\x72\x61\x66\x74\x5f\x4f\x66\x66\x73\ +\x65\x74\x2e\x6e\x6f\x74\x2e\x73\x76\x67\x2e\x7a\x69\x70\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6f\x75\x74\x70\ +\x75\x74\x5f\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x3d\x22\x6f\x72\ +\x67\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x75\x74\x70\x75\ +\x74\x2e\x73\x76\x67\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\ +\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\ +\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x64\x65\x66\x73\x33\x31\x33\x38\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\x34\x32\x33\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x38\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x33\x31\x2e\x37\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x35\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x33\x31\x2e\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\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\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\ +\x34\x32\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\ +\x22\x31\x39\x2e\x32\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\ +\x31\x3d\x22\x33\x31\x2e\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x78\x32\x3d\x22\x33\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x79\x32\x3d\x22\x33\x31\x2e\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\ +\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\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\x34\x32\x34\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\ +\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\ +\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\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\x31\x33\x39\x30\x38\x39\x31\ +\x2c\x30\x2c\x30\x2c\x30\x2e\x31\x33\x39\x30\x38\x39\x31\x2c\x2d\ +\x31\x31\x36\x2e\x36\x35\x33\x36\x36\x2c\x2d\x33\x32\x35\x2e\x33\ +\x33\x35\x32\x38\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\ +\x3d\x22\x38\x34\x34\x2e\x39\x31\x36\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x79\x31\x3d\x22\x32\x35\x36\x30\x2e\x32\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x31\x32\x37\x30\x2e\ +\x37\x30\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\ +\x22\x32\x35\x36\x30\x2e\x32\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\x32\x2e\x38\x32\x38\x34\ +\x32\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x78\x3d\x22\x32\x37\x2e\x36\x33\x31\x30\x33\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x79\x3d\x22\x32\x38\x2e\x30\x30\x31\x30\x35\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\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\ +\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\ +\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ +\x77\x69\x64\x74\x68\x3d\x22\x31\x32\x38\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x39\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\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\x33\x30\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\ +\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x75\x69\x64\x65\ +\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\ +\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\ +\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\ +\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x67\x72\x69\x64\x34\x31\x36\x37\x22\x20\x2f\x3e\ +\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ +\x6d\x65\x64\x76\x69\x65\x77\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\x34\x31\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\x69\x64\x3d\x22\x70\x61\x74\x68\x34\x32\x31\ +\x30\x22\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\x3b\x66\x69\x6c\ +\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\ +\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ +\x74\x68\x3a\x37\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\x6d\x69\x74\x65\x72\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ +\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ +\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x64\x3d\x22\x6d\x20\x33\x31\x2c\x34\x33\x20\x63\x20\ +\x34\x2e\x31\x34\x32\x31\x34\x2c\x30\x20\x37\x2e\x35\x2c\x2d\x33\ +\x2e\x33\x35\x37\x38\x36\x35\x20\x37\x2e\x35\x2c\x2d\x37\x2e\x35\ +\x20\x6c\x20\x30\x2c\x2d\x31\x30\x20\x2d\x31\x32\x2e\x35\x2c\x30\ +\x20\x2d\x36\x2e\x32\x35\x2c\x36\x2e\x32\x35\x20\x4d\x20\x38\x2e\ +\x35\x2c\x32\x30\x2e\x35\x30\x30\x30\x30\x31\x20\x31\x38\x2e\x35\ +\x2c\x31\x30\x2e\x35\x20\x6c\x20\x33\x35\x2c\x30\x20\x30\x2c\x32\ +\x35\x20\x43\x20\x35\x33\x2e\x35\x2c\x34\x37\x2e\x39\x32\x36\x34\ +\x30\x36\x20\x34\x33\x2e\x34\x32\x36\x34\x30\x38\x2c\x35\x38\x20\ +\x33\x31\x2c\x35\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\ +\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\ +\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x73\x63\x63\x63\x63\ +\x63\x63\x73\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\ +\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ +\x74\x68\x34\x31\x37\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\ +\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ +\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\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\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\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\x37\x2c\x31\x38\x2e\x30\x30\x30\x30\x30\x31\x20\ +\x31\x30\x2c\x2d\x31\x30\x2e\x30\x30\x30\x30\x30\x31\x32\x20\x33\ +\x35\x2c\x30\x20\x4c\x20\x35\x32\x2c\x33\x33\x20\x43\x20\x35\x32\ +\x2c\x34\x35\x2e\x34\x32\x36\x34\x30\x36\x20\x34\x31\x2e\x39\x32\ +\x36\x34\x30\x38\x2c\x35\x35\x2e\x35\x20\x32\x39\x2e\x35\x2c\x35\ +\x35\x2e\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\ +\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\ +\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x63\x63\x63\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x34\x31\x39\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ +\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ +\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x37\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\ +\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ +\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x39\x2e\x35\x2c\x34\x30\ +\x2e\x35\x20\x63\x20\x34\x2e\x31\x34\x32\x31\x34\x2c\x30\x20\x37\ +\x2e\x35\x2c\x2d\x33\x2e\x33\x35\x37\x38\x36\x35\x20\x37\x2e\x35\ +\x2c\x2d\x37\x2e\x35\x20\x6c\x20\x30\x2c\x2d\x31\x30\x20\x2d\x31\ +\x32\x2e\x35\x2c\x30\x20\x2d\x36\x2e\x32\x35\x2c\x36\x2e\x32\x35\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ +\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\ +\x70\x65\x73\x3d\x22\x63\x63\x63\x63\x63\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\ +\x65\x73\x3d\x22\x63\x63\x63\x63\x63\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\ +\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\ +\x39\x2e\x35\x2c\x34\x30\x2e\x35\x20\x63\x20\x34\x2e\x31\x34\x32\ +\x31\x34\x2c\x30\x20\x37\x2e\x35\x2c\x2d\x33\x2e\x33\x35\x37\x38\ +\x36\x35\x20\x37\x2e\x35\x2c\x2d\x37\x2e\x35\x20\x6c\x20\x30\x2c\ +\x2d\x31\x30\x20\x2d\x31\x32\x2e\x35\x2c\x30\x20\x2d\x36\x2e\x32\ +\x35\x2c\x36\x2e\x32\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\ +\x73\x74\x72\x6f\x6b\x65\x3a\x75\x72\x6c\x28\x23\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\x34\x33\x29\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\x73\x71\ +\x75\x61\x72\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ +\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ +\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x34\x32\x31\x37\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\ +\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x63\x63\x63\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\ +\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ +\x22\x6d\x20\x37\x2c\x31\x38\x2e\x30\x30\x30\x30\x30\x31\x20\x31\ +\x30\x2c\x2d\x31\x30\x2e\x30\x30\x30\x30\x30\x31\x32\x20\x33\x35\ +\x2c\x30\x20\x4c\x20\x35\x32\x2c\x33\x33\x20\x43\x20\x35\x32\x2c\ +\x34\x35\x2e\x34\x32\x36\x34\x30\x36\x20\x34\x31\x2e\x39\x32\x36\ +\x34\x30\x38\x2c\x35\x35\x2e\x35\x20\x32\x39\x2e\x35\x2c\x35\x35\ +\x2e\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ +\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ +\x3a\x75\x72\x6c\x28\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x34\x32\x33\x35\x29\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\x73\x71\x75\x61\x72\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\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\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\x70\x61\x74\x68\x34\x32\x31\x39\x22\x20\x2f\x3e\x0a\x20\ +\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x2d\x39\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x70\x78\ +\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x70\ +\x78\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x36\x31\ +\x32\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\ +\x2e\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x34\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\x44\x72\x61\x66\x74\ +\x5f\x50\x6f\x6c\x79\x67\x6f\x6e\x2e\x73\x76\x67\x22\x3e\x0a\x20\ +\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x64\x65\x66\x73\x33\x36\x31\x34\x22\x3e\x0a\x20\x20\x20\x20\x3c\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\ +\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ +\x78\x3d\x22\x30\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\ +\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x36\x34\x20\x3a\x20\x33\x32\ +\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\ +\x69\x67\x69\x6e\x3d\x22\x33\x32\x20\x3a\x20\x32\x31\x2e\x33\x33\ +\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\ +\x33\x36\x32\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\ +\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\ +\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x35\x38\x38\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\ +\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\ +\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\ +\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\ +\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\ +\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\ +\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ +\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ +\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\ +\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x33\x31\x34\x34\x2d\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x33\x36\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ +\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\ +\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\ +\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\x30\ +\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x37\ +\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\ +\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\ +\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x2d\x33\ +\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\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x33\x31\x34\x36\x2d\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\ +\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x33\x31\x34\x38\x2d\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\ +\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x3b\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ +\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\ +\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x33\x31\x34\x34\x2d\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x33\x35\x39\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ +\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\ +\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\ +\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\x30\ +\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x37\ +\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\ +\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\ +\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ +\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x36\x39\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\ +\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\ +\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\ +\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\ +\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\ +\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\ +\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x2d\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x36\x38\x34\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\ +\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ +\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ +\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\ +\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\ +\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\ +\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\ +\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\ +\x34\x34\x2d\x36\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x73\x74\x6f\x70\x33\x31\x34\x36\x2d\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x33\x31\x34\x38\x2d\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\ +\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\ +\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\ +\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\ +\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x33\x31\x34\x34\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x36\x38\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\ +\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\ +\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\ +\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\ +\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\ +\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\ +\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x30\x31\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\ +\x37\x30\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ +\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x30\x35\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\ +\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ +\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ +\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x2d\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\ +\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x36\x38\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\ +\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\ +\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ +\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\ +\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\ +\x36\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\ +\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\ +\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\ +\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x33\x37\x30\x38\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x73\x74\x6f\x70\x33\x37\x31\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x33\x37\x31\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\ +\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\ +\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ +\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\ +\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\ +\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\ +\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\ +\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\ +\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\ +\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x32\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\ +\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x33\x31\x34\x34\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\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\x37\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\ +\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\ +\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\ +\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\ +\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\ +\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\ +\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\ +\x65\x3e\x3c\x2f\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\ +\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\ +\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\ +\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ +\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\ +\x0a\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x44\x72\x61\x66\x74\x5f\x62\x73\x70\x6c\x69\x6e\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\ +\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x38\x39\x37\ +\x31\x31\x32\x32\x35\x2c\x30\x2e\x35\x32\x30\x36\x35\x33\x39\x32\ +\x2c\x2d\x30\x2e\x35\x31\x32\x33\x35\x39\x37\x2c\x30\x2e\x39\x31\ +\x31\x36\x33\x34\x39\x34\x2c\x33\x32\x2e\x31\x30\x33\x31\x37\x36\ +\x2c\x2d\x31\x36\x34\x2e\x36\x34\x39\x39\x29\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\x2d\x73\ +\x69\x7a\x65\x3a\x6d\x65\x64\x69\x75\x6d\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\x6e\x6f\x72\ +\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x72\x65\x74\x63\x68\ +\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x74\x65\x78\x74\x2d\x69\x6e\x64\ +\x65\x6e\x74\x3a\x30\x3b\x74\x65\x78\x74\x2d\x61\x6c\x69\x67\x6e\ +\x3a\x73\x74\x61\x72\x74\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\ +\x72\x61\x74\x69\x6f\x6e\x3a\x6e\x6f\x6e\x65\x3b\x6c\x69\x6e\x65\ +\x2d\x68\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x6c\ +\x65\x74\x74\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\ +\x72\x6d\x61\x6c\x3b\x77\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\ +\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x74\x65\x78\x74\x2d\x74\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3a\x6e\x6f\x6e\x65\x3b\x64\x69\x72\ +\x65\x63\x74\x69\x6f\x6e\x3a\x6c\x74\x72\x3b\x62\x6c\x6f\x63\x6b\ +\x2d\x70\x72\x6f\x67\x72\x65\x73\x73\x69\x6f\x6e\x3a\x74\x62\x3b\ +\x77\x72\x69\x74\x69\x6e\x67\x2d\x6d\x6f\x64\x65\x3a\x6c\x72\x2d\ +\x74\x62\x3b\x74\x65\x78\x74\x2d\x61\x6e\x63\x68\x6f\x72\x3a\x73\ +\x74\x61\x72\x74\x3b\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x35\ +\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\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\x31\x32\x35\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\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\ +\x79\x3a\x42\x69\x74\x73\x74\x72\x65\x61\x6d\x20\x56\x65\x72\x61\ +\x20\x53\x61\x6e\x73\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\x42\x69\x74\x73\x74\x72\x65\x61\x6d\x20\x56\x65\x72\ +\x61\x20\x53\x61\x6e\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x31\x34\x2d\x35\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x38\ +\x37\x2e\x39\x39\x35\x35\x33\x36\x2c\x31\x34\x33\x2e\x31\x34\x32\ +\x38\x36\x20\x63\x20\x2d\x33\x2e\x36\x35\x37\x38\x34\x37\x2c\x30\ +\x2e\x32\x32\x33\x31\x32\x20\x2d\x36\x2e\x36\x33\x30\x34\x37\x37\ +\x2c\x33\x2e\x31\x39\x36\x39\x36\x20\x2d\x36\x2e\x37\x38\x31\x32\ +\x35\x2c\x36\x2e\x39\x33\x37\x35\x20\x2d\x30\x2e\x30\x32\x35\x36\ +\x31\x2c\x30\x2e\x36\x33\x35\x34\x33\x20\x30\x2e\x30\x35\x37\x31\ +\x2c\x31\x2e\x32\x35\x30\x34\x35\x20\x30\x2e\x31\x38\x37\x35\x2c\ +\x31\x2e\x38\x34\x33\x37\x35\x20\x2d\x33\x2e\x30\x34\x33\x38\x36\ +\x33\x2c\x33\x2e\x34\x32\x34\x35\x36\x20\x2d\x34\x2e\x36\x33\x39\ +\x30\x30\x35\x2c\x37\x2e\x34\x36\x36\x33\x36\x20\x2d\x34\x2e\x39\ +\x30\x36\x32\x35\x2c\x31\x31\x2e\x37\x38\x31\x32\x35\x20\x2d\x30\ +\x2e\x32\x36\x32\x32\x39\x33\x2c\x34\x2e\x32\x33\x34\x39\x33\x20\ +\x30\x2e\x36\x35\x32\x30\x37\x37\x2c\x38\x2e\x36\x39\x36\x38\x31\ +\x20\x32\x2e\x32\x35\x2c\x31\x33\x2e\x32\x35\x20\x2d\x31\x2e\x31\ +\x38\x34\x38\x33\x39\x2c\x31\x2e\x32\x35\x32\x31\x35\x20\x2d\x31\ +\x2e\x39\x35\x33\x39\x39\x35\x2c\x32\x2e\x39\x32\x32\x32\x32\x20\ +\x2d\x32\x2c\x34\x2e\x37\x38\x31\x32\x35\x20\x2d\x30\x2e\x30\x39\ +\x38\x37\x39\x2c\x33\x2e\x39\x39\x31\x39\x33\x20\x33\x2e\x30\x37\ +\x30\x35\x37\x31\x2c\x37\x2e\x33\x30\x37\x34\x36\x20\x37\x2e\x30\ +\x36\x32\x35\x2c\x37\x2e\x34\x30\x36\x32\x35\x20\x33\x2e\x39\x39\ +\x31\x39\x32\x39\x2c\x30\x2e\x30\x39\x38\x38\x20\x37\x2e\x33\x30\ +\x37\x34\x36\x32\x2c\x2d\x33\x2e\x30\x37\x30\x35\x37\x20\x37\x2e\ +\x34\x30\x36\x32\x35\x2c\x2d\x37\x2e\x30\x36\x32\x35\x20\x30\x2e\ +\x30\x39\x38\x37\x39\x2c\x2d\x33\x2e\x39\x39\x31\x39\x33\x20\x2d\ +\x33\x2e\x30\x37\x30\x35\x37\x31\x2c\x2d\x37\x2e\x33\x30\x37\x34\ +\x36\x20\x2d\x37\x2e\x30\x36\x32\x35\x2c\x2d\x37\x2e\x34\x30\x36\ +\x32\x35\x20\x2d\x30\x2e\x35\x32\x33\x30\x30\x39\x2c\x2d\x30\x2e\ +\x30\x31\x32\x39\x20\x2d\x31\x2e\x30\x33\x37\x31\x35\x36\x2c\x30\ +\x2e\x30\x36\x32\x39\x20\x2d\x31\x2e\x35\x33\x31\x32\x35\x2c\x30\ +\x2e\x31\x35\x36\x32\x35\x20\x2d\x31\x2e\x32\x39\x37\x36\x34\x39\ +\x2c\x2d\x33\x2e\x39\x31\x36\x34\x39\x20\x2d\x31\x2e\x39\x35\x30\ +\x39\x37\x36\x2c\x2d\x37\x2e\x35\x39\x38\x38\x32\x20\x2d\x31\x2e\ +\x37\x35\x2c\x2d\x31\x30\x2e\x38\x34\x33\x37\x35\x20\x30\x2e\x31\ +\x38\x38\x34\x30\x37\x2c\x2d\x33\x2e\x30\x34\x31\x39\x39\x20\x31\ +\x2e\x30\x36\x32\x36\x36\x2c\x2d\x35\x2e\x37\x32\x33\x35\x31\x20\ +\x32\x2e\x38\x37\x35\x2c\x2d\x38\x2e\x31\x32\x35\x20\x31\x2e\x31\ +\x39\x31\x36\x33\x34\x2c\x31\x2e\x30\x32\x32\x37\x37\x20\x32\x2e\ +\x37\x31\x35\x33\x33\x33\x2c\x31\x2e\x36\x35\x30\x35\x39\x20\x34\ +\x2e\x34\x30\x36\x32\x35\x2c\x31\x2e\x37\x31\x38\x37\x35\x20\x33\ +\x2e\x39\x38\x39\x39\x31\x32\x2c\x30\x2e\x31\x36\x30\x38\x32\x20\ +\x37\x2e\x33\x37\x30\x34\x32\x36\x2c\x2d\x32\x2e\x39\x31\x36\x33\ +\x34\x20\x37\x2e\x35\x33\x31\x32\x35\x2c\x2d\x36\x2e\x39\x30\x36\ +\x32\x35\x20\x30\x2e\x30\x32\x34\x30\x34\x2c\x2d\x30\x2e\x35\x39\ +\x36\x34\x32\x20\x2d\x30\x2e\x30\x34\x32\x33\x33\x2c\x2d\x31\x2e\ +\x31\x39\x30\x31\x33\x20\x2d\x30\x2e\x31\x35\x36\x32\x35\x2c\x2d\ +\x31\x2e\x37\x35\x20\x32\x2e\x37\x31\x39\x32\x36\x2c\x2d\x30\x2e\ +\x32\x31\x31\x39\x34\x20\x35\x2e\x32\x31\x39\x37\x34\x34\x2c\x30\ +\x2e\x36\x33\x33\x36\x37\x20\x37\x2e\x38\x37\x35\x30\x30\x34\x2c\ +\x32\x2e\x33\x31\x32\x35\x20\x33\x2e\x32\x37\x30\x30\x39\x2c\x32\ +\x2e\x30\x36\x37\x35\x38\x20\x36\x2e\x35\x38\x34\x32\x33\x2c\x35\ +\x2e\x36\x30\x39\x33\x36\x20\x39\x2e\x39\x33\x37\x35\x2c\x31\x30\ +\x20\x2d\x31\x2e\x30\x35\x36\x30\x38\x2c\x31\x2e\x30\x39\x34\x30\ +\x31\x20\x2d\x31\x2e\x37\x37\x33\x32\x36\x2c\x32\x2e\x35\x33\x30\ +\x31\x34\x20\x2d\x31\x2e\x39\x36\x38\x37\x35\x2c\x34\x2e\x31\x35\ +\x36\x32\x35\x20\x2d\x30\x2e\x34\x37\x36\x36\x32\x2c\x33\x2e\x39\ +\x36\x34\x36\x31\x20\x32\x2e\x33\x34\x37\x38\x39\x2c\x37\x2e\x35\ +\x35\x34\x36\x33\x20\x36\x2e\x33\x31\x32\x35\x2c\x38\x2e\x30\x33\ +\x31\x32\x35\x20\x33\x2e\x39\x36\x34\x36\x31\x2c\x30\x2e\x34\x37\ +\x36\x36\x32\x20\x37\x2e\x35\x35\x34\x36\x33\x2c\x2d\x32\x2e\x33\ +\x34\x37\x38\x39\x20\x38\x2e\x30\x33\x31\x32\x35\x2c\x2d\x36\x2e\ +\x33\x31\x32\x35\x20\x30\x2e\x34\x37\x36\x36\x32\x2c\x2d\x33\x2e\ +\x39\x36\x34\x36\x31\x20\x2d\x32\x2e\x33\x34\x37\x38\x39\x2c\x2d\ +\x37\x2e\x35\x35\x34\x36\x33\x20\x2d\x36\x2e\x33\x31\x32\x35\x2c\ +\x2d\x38\x2e\x30\x33\x31\x32\x35\x20\x2d\x30\x2e\x37\x32\x32\x31\ +\x38\x2c\x2d\x30\x2e\x30\x38\x36\x38\x20\x2d\x31\x2e\x34\x34\x33\ +\x36\x38\x2c\x2d\x30\x2e\x30\x35\x36\x39\x20\x2d\x32\x2e\x31\x32\ +\x35\x2c\x30\x2e\x30\x36\x32\x35\x20\x2d\x33\x2e\x36\x33\x37\x39\ +\x38\x2c\x2d\x34\x2e\x38\x37\x38\x32\x33\x20\x2d\x37\x2e\x33\x37\ +\x39\x31\x31\x2c\x2d\x38\x2e\x39\x36\x38\x34\x39\x20\x2d\x31\x31\ +\x2e\x35\x33\x31\x32\x35\x2c\x2d\x31\x31\x2e\x35\x39\x33\x37\x35\ +\x20\x2d\x32\x2e\x38\x31\x32\x32\x2c\x2d\x31\x2e\x37\x37\x38\x30\ +\x36\x20\x2d\x35\x2e\x38\x38\x33\x39\x31\x34\x2c\x2d\x32\x2e\x38\ +\x33\x31\x38\x39\x20\x2d\x39\x2e\x30\x39\x33\x37\x35\x34\x2c\x2d\ +\x32\x2e\x39\x30\x36\x32\x35\x20\x2d\x31\x2e\x31\x33\x33\x38\x35\ +\x39\x2c\x2d\x30\x2e\x30\x32\x36\x33\x20\x2d\x32\x2e\x32\x37\x35\ +\x32\x36\x35\x2c\x30\x2e\x30\x39\x30\x39\x20\x2d\x33\x2e\x34\x33\ +\x37\x35\x2c\x30\x2e\x33\x31\x32\x35\x20\x2d\x31\x2e\x32\x30\x30\ +\x34\x32\x39\x2c\x2d\x31\x2e\x30\x35\x34\x35\x33\x20\x2d\x32\x2e\ +\x37\x34\x37\x38\x34\x34\x2c\x2d\x31\x2e\x37\x34\x33\x31\x33\x20\ +\x2d\x34\x2e\x34\x36\x38\x37\x35\x2c\x2d\x31\x2e\x38\x31\x32\x35\ +\x20\x2d\x30\x2e\x32\x34\x39\x33\x36\x39\x2c\x2d\x30\x2e\x30\x31\ +\x30\x31\x20\x2d\x30\x2e\x35\x30\x36\x31\x34\x34\x2c\x2d\x30\x2e\ +\x30\x31\x34\x39\x20\x2d\x30\x2e\x37\x35\x2c\x30\x20\x7a\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ +\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x6d\x65\x64\x69\x75\x6d\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\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x74\ +\x72\x65\x74\x63\x68\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x74\x65\x78\ +\x74\x2d\x69\x6e\x64\x65\x6e\x74\x3a\x30\x3b\x74\x65\x78\x74\x2d\ +\x61\x6c\x69\x67\x6e\x3a\x73\x74\x61\x72\x74\x3b\x74\x65\x78\x74\ +\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x3a\x6e\x6f\x6e\x65\ +\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\ +\x6d\x61\x6c\x3b\x6c\x65\x74\x74\x65\x72\x2d\x73\x70\x61\x63\x69\ +\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x77\x6f\x72\x64\x2d\x73\ +\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x74\x65\ +\x78\x74\x2d\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3a\x6e\x6f\x6e\ +\x65\x3b\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x3a\x6c\x74\x72\x3b\ +\x62\x6c\x6f\x63\x6b\x2d\x70\x72\x6f\x67\x72\x65\x73\x73\x69\x6f\ +\x6e\x3a\x74\x62\x3b\x77\x72\x69\x74\x69\x6e\x67\x2d\x6d\x6f\x64\ +\x65\x3a\x6c\x72\x2d\x74\x62\x3b\x74\x65\x78\x74\x2d\x61\x6e\x63\ +\x68\x6f\x72\x3a\x73\x74\x61\x72\x74\x3b\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\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\x34\x34\x30\x33\x31\x30\x39\x36\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\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\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x42\x69\ +\x74\x73\x74\x72\x65\x61\x6d\x20\x56\x65\x72\x61\x20\x53\x61\x6e\ +\x73\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\x42\ +\x69\x74\x73\x74\x72\x65\x61\x6d\x20\x56\x65\x72\x61\x20\x53\x61\ +\x6e\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x61\x74\x68\x33\x37\x31\x34\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x39\x32\x2e\x33\x34\x33\x37\ +\x35\x2c\x31\x34\x33\x2e\x37\x38\x31\x32\x35\x20\x63\x20\x2d\x33\ +\x2e\x32\x30\x39\x38\x34\x32\x2c\x2d\x30\x2e\x30\x37\x34\x34\x20\ +\x2d\x36\x2e\x35\x35\x37\x35\x37\x34\x2c\x30\x2e\x38\x31\x31\x37\ +\x38\x20\x2d\x39\x2e\x39\x30\x36\x32\x35\x2c\x32\x2e\x38\x34\x33\ +\x37\x35\x20\x2d\x36\x2e\x36\x32\x39\x38\x33\x38\x2c\x34\x2e\x30\ +\x32\x32\x39\x37\x20\x2d\x39\x2e\x38\x35\x35\x35\x2c\x39\x2e\x38\ +\x34\x39\x32\x33\x20\x2d\x31\x30\x2e\x32\x35\x2c\x31\x36\x2e\x32\ +\x31\x38\x37\x35\x20\x2d\x30\x2e\x33\x39\x34\x35\x2c\x36\x2e\x33\ +\x36\x39\x35\x32\x20\x31\x2e\x37\x36\x33\x34\x39\x31\x2c\x31\x33\ +\x2e\x32\x32\x30\x30\x31\x20\x35\x2e\x31\x32\x35\x2c\x32\x30\x2e\ +\x31\x38\x37\x35\x20\x4c\x20\x38\x31\x2e\x32\x35\x2c\x31\x38\x31\ +\x2e\x31\x32\x35\x20\x63\x20\x2d\x33\x2e\x31\x38\x36\x31\x31\x2c\ +\x2d\x36\x2e\x36\x30\x33\x39\x34\x20\x2d\x35\x2e\x30\x30\x37\x32\ +\x38\x36\x2c\x2d\x31\x32\x2e\x38\x33\x36\x37\x39\x20\x2d\x34\x2e\ +\x36\x38\x37\x35\x2c\x2d\x31\x38\x20\x30\x2e\x33\x31\x39\x37\x38\ +\x36\x2c\x2d\x35\x2e\x31\x36\x33\x32\x31\x20\x32\x2e\x35\x32\x34\ +\x31\x38\x34\x2c\x2d\x39\x2e\x33\x33\x32\x34\x38\x20\x38\x2e\x31\ +\x35\x36\x32\x35\x2c\x2d\x31\x32\x2e\x37\x35\x20\x35\x2e\x35\x36\ +\x34\x35\x35\x33\x2c\x2d\x33\x2e\x33\x37\x36\x35\x36\x20\x39\x2e\ +\x37\x36\x31\x32\x39\x35\x2c\x2d\x32\x2e\x39\x31\x37\x31\x20\x31\ +\x34\x2e\x33\x37\x35\x2c\x30\x20\x34\x2e\x36\x31\x33\x37\x2c\x32\ +\x2e\x39\x31\x37\x31\x20\x39\x2e\x33\x33\x34\x33\x31\x2c\x38\x2e\ +\x36\x37\x31\x34\x38\x20\x31\x34\x2e\x30\x39\x33\x37\x35\x2c\x31\ +\x35\x2e\x37\x38\x31\x32\x35\x20\x6c\x20\x33\x2e\x36\x32\x35\x2c\ +\x2d\x32\x2e\x34\x33\x37\x35\x20\x63\x20\x2d\x34\x2e\x38\x38\x33\ +\x34\x32\x2c\x2d\x37\x2e\x32\x39\x34\x39\x39\x20\x2d\x39\x2e\x37\ +\x35\x30\x36\x31\x2c\x2d\x31\x33\x2e\x34\x37\x35\x31\x33\x20\x2d\ +\x31\x35\x2e\x33\x37\x35\x2c\x2d\x31\x37\x2e\x30\x33\x31\x32\x35\ +\x20\x2d\x32\x2e\x38\x31\x32\x31\x39\x35\x2c\x2d\x31\x2e\x37\x37\ +\x38\x30\x36\x20\x2d\x35\x2e\x38\x38\x33\x39\x30\x38\x2c\x2d\x32\ +\x2e\x38\x33\x31\x38\x39\x20\x2d\x39\x2e\x30\x39\x33\x37\x35\x2c\ +\x2d\x32\x2e\x39\x30\x36\x32\x35\x20\x7a\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ +\x23\x66\x66\x61\x39\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\ +\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x35\x2e\x35\x36\x39\x32\x30\x31\x39\x35\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\ +\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\ +\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\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\x32\x31\x38\x32\x2d\x36\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\x2d\x30\x2e\x31\x34\x38\ +\x38\x31\x32\x33\x32\x2c\x2d\x30\x2e\x30\x30\x33\x36\x38\x32\x36\ +\x34\x2c\x30\x2e\x30\x30\x33\x36\x38\x32\x36\x34\x2c\x2d\x30\x2e\ +\x31\x34\x38\x38\x31\x32\x33\x32\x2c\x31\x30\x36\x2e\x35\x38\x30\ +\x39\x35\x2c\x32\x37\x39\x2e\x32\x37\x34\x35\x32\x29\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x34\x35\ +\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\ +\x61\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\ +\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x2d\x39\x37\x2e\x31\x34\ +\x32\x38\x36\x2c\x30\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\ +\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x39\x37\ +\x2e\x31\x34\x32\x38\x36\x2c\x30\x20\x7a\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ +\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x36\x38\x34\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\ +\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x61\x74\x68\x32\x31\x38\x34\x2d\x38\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\x2e\x31\x32\x38\x36\ +\x31\x36\x34\x36\x2c\x30\x2e\x30\x37\x34\x39\x34\x33\x31\x32\x2c\ +\x2d\x30\x2e\x30\x37\x34\x39\x34\x33\x31\x32\x2c\x2d\x30\x2e\x31\ +\x32\x38\x36\x31\x36\x34\x36\x2c\x31\x35\x37\x2e\x37\x37\x32\x30\ +\x32\x2c\x32\x34\x38\x2e\x36\x34\x37\x32\x32\x29\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x35\x39\x2e\ +\x36\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\ +\x61\x20\x33\x34\x2e\x33\x34\x35\x31\x39\x2c\x32\x33\x2e\x39\x39\ +\x31\x31\x32\x34\x20\x30\x20\x31\x20\x31\x20\x2d\x36\x38\x2e\x36\ +\x39\x30\x33\x38\x2c\x30\x20\x33\x34\x2e\x33\x34\x35\x31\x39\x2c\ +\x32\x33\x2e\x39\x39\x31\x31\x32\x34\x20\x30\x20\x31\x20\x31\x20\ +\x36\x38\x2e\x36\x39\x30\x33\x38\x2c\x30\x20\x7a\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ +\x6c\x3a\x23\x66\x66\x61\x39\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\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x35\x36\x39\x32\x30\x31\x39\ +\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ +\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\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\x32\x31\x38\x38\x2d\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\ +\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\x2e\x31\ +\x34\x38\x37\x33\x37\x31\x31\x2c\x2d\x30\x2e\x30\x30\x35\x39\x39\ +\x35\x32\x35\x2c\x30\x2e\x30\x30\x35\x39\x39\x35\x32\x35\x2c\x2d\ +\x30\x2e\x31\x34\x38\x37\x33\x37\x31\x31\x2c\x31\x30\x39\x2e\x35\ +\x32\x37\x36\x35\x2c\x32\x34\x38\x2e\x31\x33\x34\x39\x31\x29\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\ +\x34\x35\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\ +\x33\x20\x61\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\ +\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x2d\x39\x37\x2e\ +\x31\x34\x32\x38\x36\x2c\x30\x20\x34\x38\x2e\x35\x37\x31\x34\x33\ +\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\ +\x39\x37\x2e\x31\x34\x32\x38\x36\x2c\x30\x20\x7a\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ +\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x36\x38\x36\x29\x3b\x66\x69\x6c\x6c\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\ +\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x31\x39\x30\x2d\x31\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\x2d\x30\x2e\x31\x32\ +\x39\x37\x36\x35\x38\x2c\x30\x2e\x30\x37\x32\x39\x33\x34\x39\x33\ +\x2c\x2d\x30\x2e\x30\x37\x32\x39\x33\x34\x39\x33\x2c\x2d\x30\x2e\ +\x31\x32\x39\x37\x36\x35\x38\x2c\x31\x36\x31\x2e\x31\x38\x38\x35\ +\x39\x2c\x32\x31\x38\x2e\x33\x30\x36\x39\x39\x29\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x35\x39\x2e\ +\x36\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\ +\x61\x20\x33\x34\x2e\x33\x34\x35\x31\x39\x2c\x32\x33\x2e\x39\x39\ +\x31\x31\x32\x34\x20\x30\x20\x31\x20\x31\x20\x2d\x36\x38\x2e\x36\ +\x39\x30\x33\x38\x2c\x30\x20\x33\x34\x2e\x33\x34\x35\x31\x39\x2c\ +\x32\x33\x2e\x39\x39\x31\x31\x32\x34\x20\x30\x20\x31\x20\x31\x20\ +\x36\x38\x2e\x36\x39\x30\x33\x38\x2c\x30\x20\x7a\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ +\x6c\x3a\x23\x66\x66\x61\x39\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\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x35\x36\x39\x32\x30\x31\x39\ +\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ +\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\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\x32\x31\x39\x38\x2d\x35\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\x2d\x30\x2e\x31\ +\x34\x37\x37\x39\x33\x37\x33\x2c\x2d\x30\x2e\x30\x31\x37\x37\x36\ +\x37\x35\x2c\x30\x2e\x30\x31\x37\x37\x36\x37\x35\x2c\x2d\x30\x2e\ +\x31\x34\x37\x37\x39\x33\x37\x33\x2c\x31\x33\x31\x2e\x37\x31\x30\ +\x33\x39\x2c\x32\x36\x35\x2e\x37\x31\x35\x38\x39\x29\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x34\x35\ +\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\ +\x61\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\ +\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x2d\x39\x37\x2e\x31\x34\ +\x32\x38\x36\x2c\x30\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\ +\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x39\x37\ +\x2e\x31\x34\x32\x38\x36\x2c\x30\x20\x7a\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ +\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x37\x32\x33\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\ +\x6f\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x61\x74\x68\x32\x32\x30\x30\x2d\x31\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\x2d\x30\x2e\x31\x33\x35\x31\ +\x33\x39\x33\x31\x2c\x30\x2e\x30\x36\x32\x34\x31\x38\x32\x32\x2c\ +\x2d\x30\x2e\x30\x36\x32\x34\x31\x38\x32\x32\x2c\x2d\x30\x2e\x31\ +\x33\x35\x31\x33\x39\x33\x31\x2c\x31\x38\x35\x2e\x35\x37\x33\x33\ +\x35\x2c\x32\x34\x30\x2e\x30\x37\x37\x32\x36\x29\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x35\x39\x2e\ +\x36\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\ +\x61\x20\x33\x34\x2e\x33\x34\x35\x31\x39\x2c\x32\x33\x2e\x39\x39\ +\x31\x31\x32\x34\x20\x30\x20\x31\x20\x31\x20\x2d\x36\x38\x2e\x36\ +\x39\x30\x33\x38\x2c\x30\x20\x33\x34\x2e\x33\x34\x35\x31\x39\x2c\ +\x32\x33\x2e\x39\x39\x31\x31\x32\x34\x20\x30\x20\x31\x20\x31\x20\ +\x36\x38\x2e\x36\x39\x30\x33\x38\x2c\x30\x20\x7a\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\x52\x9a\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x70\x78\ +\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x70\ +\x78\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x36\x31\ +\x32\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\ +\x2e\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x34\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\x44\x72\x61\x66\x74\ +\x5f\x53\x65\x6c\x65\x63\x74\x50\x6c\x61\x6e\x65\x2e\x73\x76\x67\ +\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x36\x31\x34\x22\x3e\x0a\x20\ +\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\ +\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x33\x32\x20\x3a\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\ +\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x36\x34\x20\ +\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\ +\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x33\x32\x20\x3a\x20\x32\ +\x31\x2e\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\ +\x74\x69\x76\x65\x33\x36\x32\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ +\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x35\x38\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\ +\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\ +\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\ +\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\ +\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ +\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x36\ +\x39\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\ +\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\ +\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\ +\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ +\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\ +\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\ +\x2d\x36\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x33\x31\x34\x36\x2d\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ +\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\ +\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x33\x31\x34\x38\x2d\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x37\x30\x31\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x30\x33\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\ +\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x30\x35\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\ +\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\ +\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\ +\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x33\x31\x34\x34\x2d\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x36\x38\x38\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\ +\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ +\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ +\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\ +\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\ +\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\ +\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\ +\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ +\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x30\ +\x38\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x33\x37\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ +\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\ +\x31\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\ +\x74\x69\x76\x65\x33\x38\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\ +\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\ +\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\ +\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\ +\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\ +\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\ +\x2d\x30\x2d\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\ +\x39\x33\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ +\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\ +\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\ +\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x32\x32\ +\x31\x30\x32\x34\x36\x2c\x2d\x30\x2e\x35\x37\x38\x39\x32\x36\x31\ +\x2c\x2d\x30\x2e\x37\x31\x36\x39\x39\x36\x39\x33\x2c\x2d\x30\x2e\ +\x33\x35\x33\x34\x36\x37\x30\x35\x2c\x35\x31\x39\x2e\x39\x38\x30\ +\x38\x35\x2c\x34\x36\x34\x2e\x31\x39\x32\x34\x33\x29\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x36\x39\x36\x2e\x36\x37\ +\x33\x32\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\ +\x37\x37\x2e\x30\x34\x36\x32\x33\x34\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x78\x32\x3d\x22\x36\x35\x34\x2e\x38\x30\x30\x32\x33\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x31\x31\x35\x2e\ +\x30\x31\x39\x37\x34\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x2d\x30\x2d\x30\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\ +\x38\x36\x36\x2d\x35\x2d\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\ +\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x33\x38\x36\x38\x2d\x37\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\ +\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\ +\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\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\x39\x34\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x31\x3d\x22\x35\x39\x37\x2e\x37\x37\x32\x38\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x34\x34\x2e\x30\x32\x34\x33\ +\x34\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x36\ +\x31\x39\x2e\x33\x30\x33\x32\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x79\x32\x3d\x22\x33\x30\x2e\x32\x37\x34\x33\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\ +\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\ +\x55\x73\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x33\x37\x37\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x33\x37\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\ +\x66\x61\x61\x30\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x33\x33\x38\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x61\x66\ +\x66\x32\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\ +\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\ +\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\ +\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x2d\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x36\x35\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\ +\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\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\x32\x32\x31\x30\x32\x34\x36\x2c\x2d\x30\x2e\ +\x35\x37\x38\x39\x32\x36\x31\x2c\x2d\x30\x2e\x37\x31\x36\x39\x39\ +\x36\x39\x33\x2c\x2d\x30\x2e\x33\x35\x33\x34\x36\x37\x30\x35\x2c\ +\x35\x33\x36\x2e\x34\x31\x32\x35\x31\x2c\x34\x37\x32\x2e\x33\x36\ +\x31\x32\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\ +\x36\x39\x36\x2e\x36\x37\x33\x32\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x79\x31\x3d\x22\x37\x37\x2e\x30\x34\x36\x32\x33\x34\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x36\x35\x30\x2e\ +\x37\x30\x34\x35\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\ +\x3d\x22\x31\x33\x39\x2e\x34\x30\x39\x38\x32\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\ +\x34\x2d\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x33\x38\x36\x36\x2d\x35\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\ +\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x33\x38\x36\x38\x2d\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\ +\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\ +\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\ +\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x39\x30\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\ +\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\ +\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\ +\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\ +\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\ +\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\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\x35\x30\x34\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x35\x30\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\ +\x32\x2e\x37\x37\x34\x33\x38\x39\x2c\x30\x2c\x30\x2c\x31\x2e\x39\ +\x36\x39\x37\x30\x36\x2c\x2d\x31\x38\x39\x32\x2e\x31\x37\x39\x2c\ +\x2d\x38\x37\x32\x2e\x38\x38\x35\x34\x29\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x31\x3d\x22\x33\x30\x32\x2e\x38\x35\x37\x31\x35\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x33\x36\x36\ +\x2e\x36\x34\x37\x38\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x32\x3d\x22\x33\x30\x32\x2e\x38\x35\x37\x31\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x36\x30\x39\x2e\x35\x30\x35\ +\x30\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x35\x30\x34\x38\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ +\x72\x3a\x62\x6c\x61\x63\x6b\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x30\ +\x35\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x73\x74\x6f\x70\x35\x30\x35\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\x6c\x61\x63\x6b\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\x6c\x61\x63\ +\x6b\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\ +\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x30\x35\x32\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\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\x35\x30\ +\x36\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\ +\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x30\x32\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ +\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\ +\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\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\x32\x2e\x37\x37\x34\x33\ +\x38\x39\x2c\x30\x2c\x30\x2c\x31\x2e\x39\x36\x39\x37\x30\x36\x2c\ +\x2d\x31\x38\x39\x31\x2e\x36\x33\x33\x2c\x2d\x38\x37\x32\x2e\x38\ +\x38\x35\x34\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\ +\x22\x36\x30\x35\x2e\x37\x31\x34\x32\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x63\x79\x3d\x22\x34\x38\x36\x2e\x36\x34\x37\x38\x39\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x36\x30\x35\ +\x2e\x37\x31\x34\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ +\x79\x3d\x22\x34\x38\x36\x2e\x36\x34\x37\x38\x39\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x72\x3d\x22\x31\x31\x37\x2e\x31\x34\x32\x38\ +\x36\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\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x35\x30\x36\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\x62\x6c\x61\x63\x6b\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\x35\x30\ +\x36\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\x62\x6c\ +\x61\x63\x6b\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x30\x36\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\x72\x61\ +\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x72\x3d\x22\x31\x31\x37\x2e\x31\x34\x32\x38\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x34\x38\x36\ +\x2e\x36\x34\x37\x38\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ +\x78\x3d\x22\x36\x30\x35\x2e\x37\x31\x34\x32\x39\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x34\x38\x36\x2e\x36\x34\x37\ +\x38\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x36\ +\x30\x35\x2e\x37\x31\x34\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\ +\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x32\x2e\x37\x37\ +\x34\x33\x38\x39\x2c\x30\x2c\x30\x2c\x31\x2e\x39\x36\x39\x37\x30\ +\x36\x2c\x31\x31\x32\x2e\x37\x36\x32\x33\x2c\x2d\x38\x37\x32\x2e\ +\x38\x38\x35\x34\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ +\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\ +\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x35\x33\x39\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x30\ +\x36\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\x20\x20\x3c\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\ +\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x31\x30\x37\ +\x36\x2e\x36\x31\x37\x34\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\x31\x3d\x22\x31\x32\x38\x36\x2e\x37\x32\ +\x39\x31\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\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x38\x34\x37\x2d\x37\x2d\x35\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\x2d\x30\x2d\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\ +\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x34\x31\x2d\x30\ +\x2d\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x33\x38\x34\x33\x2d\x31\x2d\x33\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x36\x31\x39\ +\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x73\x74\x6f\x70\x33\x38\x34\x35\x2d\x30\x2d\x38\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x33\x37\ +\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\ +\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\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\x61\x69\x67\x72\x64\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\ +\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x32\x38\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\ +\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\ +\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\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\x32\x32\x39\x37\x30\x33\x2c\x30\ +\x2c\x30\x2c\x30\x2e\x32\x32\x39\x37\x30\x33\x2c\x34\x2e\x36\x31\ +\x33\x35\x32\x39\x2c\x33\x2e\x39\x37\x39\x38\x30\x38\x29\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x30\x2e\x38\x39\ +\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\ +\x22\x31\x31\x34\x2e\x35\x36\x38\x34\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x66\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\x30\x39\x39\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x31\x31\x34\x2e\ +\x35\x36\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\ +\x35\x2e\x32\x35\x36\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\ +\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\ +\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x31\ +\x31\x34\x2e\x35\x36\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x66\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x35\x2e\x32\x35\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x31\x31\x34\x2e\x35\ +\x36\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\ +\x32\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x61\x69\x67\x72\x64\x32\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x36\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x46\ +\x30\x46\x30\x46\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x36\x38\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x39\x61\ +\x39\x61\x39\x61\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\ +\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x2f\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\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\x61\x69\x67\x72\ +\x64\x33\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\x32\x32\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\x32\x32\x39\x37\ +\x30\x33\x2c\x30\x2c\x30\x2c\x30\x2e\x32\x32\x39\x37\x30\x33\x2c\ +\x34\x2e\x36\x31\x33\x35\x32\x39\x2c\x33\x2e\x39\x37\x39\x38\x30\ +\x38\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\ +\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x63\x79\x3d\x22\x36\x34\x2e\x35\x36\x37\x39\x30\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x30\x2e\x38\x39\ +\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\ +\x22\x36\x34\x2e\x35\x36\x37\x39\x30\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x72\x3d\x22\x35\x2e\x32\x35\x37\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ +\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\ +\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x66\x79\x3d\x22\x36\x34\x2e\x35\x36\x37\x39\x30\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x30\x2e\x38\x39\ +\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\ +\x35\x2e\x32\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\ +\x3d\x22\x36\x34\x2e\x35\x36\x37\x39\x30\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\x30\x39\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x61\x69\ +\x67\x72\x64\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x73\x74\x6f\x70\x31\x35\x35\x37\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\ +\x63\x6f\x6c\x6f\x72\x3a\x23\x46\x30\x46\x30\x46\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x31\x35\x35\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ +\x6f\x6c\x6f\x72\x3a\x23\x39\x61\x39\x61\x39\x61\x3b\x73\x74\x6f\ +\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\ +\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x61\x64\x69\x61\ +\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\ +\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x38\x2e\x31\x35\x38\x36\ +\x39\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x37\ +\x2e\x32\x36\x37\x38\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x66\x78\x3d\x22\x38\x2e\x31\x34\x33\x35\x35\x36\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x37\x2e\x32\x36\x37\ +\x38\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\ +\x22\x38\x2e\x31\x34\x33\x35\x35\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\ +\x36\x38\x32\x37\x32\x39\x37\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x33\ +\x32\x37\x36\x37\x2c\x31\x32\x2e\x30\x34\x30\x35\x34\x32\x2c\x2d\ +\x36\x31\x2e\x30\x36\x37\x32\x37\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\x72\x61\x64\ +\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x31\x35\x36\x36\x38\ +\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\x31\x35\x36\x36\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\ +\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x31\x35\x36\x36\ +\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\ +\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\ +\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x36\x36\x34\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x38\x66\x38\x66\ +\x38\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\ +\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x36\x36\x36\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\ +\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x72\x3d\x22\x38\x36\x2e\x37\x30\x38\x34\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x33\x35\x2e\x37\x33\ +\x36\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\ +\x22\x33\x33\x2e\x39\x36\x36\x36\x37\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x63\x79\x3d\x22\x33\x35\x2e\x37\x33\x36\x39\x31\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x33\x33\x2e\ +\x39\x36\x36\x36\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x36\x30\x34\x39\ +\x32\x39\x37\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x34\x31\x31\x33\x32\ +\x2c\x2d\x35\x32\x2e\x31\x34\x34\x32\x34\x39\x2c\x2d\x37\x30\x32\ +\x2e\x33\x33\x31\x35\x38\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\ +\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x34\x35\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\ +\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x32\x35\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\ +\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x32\x35\x39\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x66\x61\x66\x61\x66\x61\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\ +\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x32\x36\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ +\x23\x62\x62\x62\x62\x62\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ +\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\x36\ +\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\ +\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x37\x2e\x37\x35\x31\ +\x37\x31\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\ +\x33\x2e\x37\x35\x36\x31\x32\x38\x35\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x66\x78\x3d\x22\x38\x2e\x38\x32\x34\x34\x31\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x33\x2e\x37\x35\x36\ +\x31\x32\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\ +\x22\x38\x2e\x38\x32\x34\x34\x31\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\ +\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x36\ +\x38\x32\x37\x32\x39\x37\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x33\x32\ +\x37\x36\x37\x2c\x2d\x34\x38\x2e\x37\x39\x30\x36\x39\x39\x2c\x2d\ +\x37\x30\x31\x2e\x36\x38\x35\x31\x33\x29\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\ +\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\ +\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x34\x35\x34\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\ +\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x32\x36\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\ +\x22\x61\x6c\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x36\x39\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\ +\x63\x6f\x6c\x6f\x72\x3a\x23\x61\x33\x61\x33\x61\x33\x3b\x73\x74\ +\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\ +\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x73\x74\x6f\x70\x32\x37\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x34\x63\x34\x63\x34\x63\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\ +\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x32\x37\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\ +\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x38\x36\x2e\ +\x37\x30\x38\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\ +\x3d\x22\x33\x35\x2e\x37\x33\x36\x39\x31\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x66\x78\x3d\x22\x33\x33\x2e\x39\x36\x36\x36\x37\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x33\x35\ +\x2e\x37\x33\x36\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x63\x78\x3d\x22\x33\x33\x2e\x39\x36\x36\x36\x37\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x30\x2e\x39\x36\x30\x34\x39\x32\x39\x37\x2c\x30\x2c\x30\x2c\x31\ +\x2e\x30\x34\x31\x31\x33\x32\x2c\x38\x2e\x36\x38\x36\x39\x39\x32\ +\x31\x2c\x2d\x36\x31\x2e\x37\x31\x33\x37\x32\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\ +\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x39\ +\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\ +\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x32\x35\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\ +\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x37\x2e\ +\x37\x35\x31\x37\x31\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ +\x79\x3d\x22\x33\x2e\x37\x35\x36\x31\x32\x38\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x38\x2e\x38\x32\x34\x34\x31\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x33\x2e\ +\x37\x35\x36\x31\x32\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x63\x78\x3d\x22\x38\x2e\x38\x32\x34\x34\x31\x39\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\ +\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\ +\x2e\x39\x36\x38\x32\x37\x32\x39\x37\x2c\x30\x2c\x30\x2c\x31\x2e\ +\x30\x33\x32\x37\x36\x37\x2c\x31\x32\x2e\x30\x34\x30\x35\x34\x32\ +\x2c\x2d\x36\x31\x2e\x30\x36\x37\x32\x37\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\x72\ +\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x39\x37\ +\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\ +\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x32\x36\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\ +\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\ +\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\x37\x22\x3e\x0a\x20\x20\x20\x20\ +\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\ +\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\ +\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\ +\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\ +\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\ +\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\ +\x74\x6c\x65\x3e\x3c\x2f\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\ +\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\ +\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\ +\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\ +\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\ +\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x72\x79\x3d\x22\x31\x2e\x31\x34\x39\x30\x34\x38\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x2d\x35\x38\ +\x2e\x30\x36\x36\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x78\x3d\x22\x31\x35\x2e\x32\x39\x30\x35\x34\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x34\x30\x2e\ +\x39\x32\x30\x34\x39\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\ +\x69\x64\x74\x68\x3d\x22\x33\x34\x2e\x38\x37\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x31\x35\x33\ +\x39\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ +\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x39\x37\x32\x29\x3b\x66\x69\ +\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\ +\x6c\x2d\x72\x75\x6c\x65\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\x3b\x73\ +\x74\x72\x6f\x6b\x65\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\ +\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x39\x37\x34\x29\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\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\x62\ +\x6c\x6f\x63\x6b\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\ +\x73\x69\x62\x6c\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\ +\x3d\x22\x31\x2e\x31\x34\x39\x30\x34\x38\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\x33\x2e\x37\x34\x34\x33\x37\x32\x37\x65\ +\x2d\x34\x2c\x30\x2e\x39\x39\x39\x39\x39\x39\x39\x33\x2c\x2d\x30\ +\x2e\x39\x39\x39\x39\x39\x39\x39\x33\x2c\x33\x2e\x37\x34\x34\x33\ +\x37\x32\x37\x65\x2d\x34\x2c\x30\x2c\x30\x29\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x72\x78\x3d\x22\x30\x2e\x31\x34\x39\x30\x34\x38\x35\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x30\x2e\x31\x34\ +\x39\x30\x34\x38\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\ +\x3d\x22\x2d\x35\x37\x2e\x31\x32\x39\x32\x36\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x36\x2e\x33\x35\x33\x30\x34\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\ +\x3d\x22\x33\x38\x2e\x39\x34\x36\x33\x38\x34\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x32\x2e\x37\x37\ +\x35\x38\x38\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x72\x65\x63\x74\x31\x35\x36\x36\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\ +\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\ +\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x75\x72\x6c\x28\x23\x72\x61\ +\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x31\x35\x36\x36\ +\x38\x29\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ +\x30\x2e\x39\x39\x39\x39\x39\x39\x39\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\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\x62\x6c\x6f\x63\x6b\x3b\x6f\x76\x65\x72\ +\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ +\x6d\x61\x74\x72\x69\x78\x28\x33\x2e\x37\x34\x34\x33\x37\x32\x37\ +\x65\x2d\x34\x2c\x30\x2e\x39\x39\x39\x39\x39\x39\x39\x33\x2c\x2d\ +\x30\x2e\x39\x39\x39\x39\x39\x39\x39\x33\x2c\x33\x2e\x37\x34\x34\ +\x33\x37\x32\x37\x65\x2d\x34\x2c\x30\x2c\x30\x29\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\ +\x6c\x69\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x67\x32\x32\x37\x30\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\x33\x2e\x37\x34\x34\x33\x37\x32\x36\x65\x2d\x34\x2c\x30\x2e\ +\x39\x39\x39\x39\x39\x39\x39\x2c\x2d\x30\x2e\x39\x39\x39\x39\x39\ +\x39\x39\x2c\x33\x2e\x37\x34\x34\x33\x37\x32\x36\x65\x2d\x34\x2c\ +\x36\x31\x2e\x37\x35\x35\x31\x36\x37\x2c\x39\x2e\x33\x31\x30\x33\ +\x32\x30\x36\x29\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\ +\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x32\x32\x39\ +\x37\x30\x33\x2c\x30\x2c\x30\x2c\x30\x2e\x32\x32\x39\x37\x30\x33\ +\x2c\x34\x2e\x39\x36\x37\x30\x38\x31\x2c\x34\x2e\x32\x34\x34\x39\ +\x37\x32\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\x66\x66\x66\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\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\x6d\x69\x74\x65\x72\x6c\x69\ +\x6d\x69\x74\x3a\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x67\x31\x34\x34\x30\x22\x3e\x0a\x20\x20\x20\x20\ +\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\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\x20\x20\x20\x20\x66\x79\x3d\x22\x31\x31\x34\ +\x2e\x35\x36\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x66\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\x30\x39\x39\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x35\ +\x2e\x32\x35\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x63\x79\x3d\x22\x31\x31\x34\x2e\x35\x36\x38\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x30\ +\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x31\x34\x34\x32\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x31\x34\x34\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x46\x30\x46\x30\x46\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ +\x31\x34\x34\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ +\x6f\x6c\x6f\x72\x3a\x23\x34\x37\x34\x37\x34\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x70\x61\x74\x68\x31\x34\x34\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x33\x2e\x34\x32\x38\ +\x2c\x31\x31\x33\x2e\x30\x37\x20\x63\x20\x30\x2c\x31\x2e\x39\x37\ +\x33\x20\x2d\x31\x2e\x36\x2c\x33\x2e\x35\x37\x32\x20\x2d\x33\x2e\ +\x35\x37\x33\x2c\x33\x2e\x35\x37\x32\x20\x2d\x31\x2e\x39\x37\x34\ +\x2c\x30\x20\x2d\x33\x2e\x35\x37\x33\x2c\x2d\x31\x2e\x36\x20\x2d\ +\x33\x2e\x35\x37\x33\x2c\x2d\x33\x2e\x35\x37\x32\x20\x30\x2c\x2d\ +\x31\x2e\x39\x37\x34\x20\x31\x2e\x36\x2c\x2d\x33\x2e\x35\x37\x33\ +\x20\x33\x2e\x35\x37\x33\x2c\x2d\x33\x2e\x35\x37\x33\x20\x31\x2e\ +\x39\x37\x33\x2c\x30\x20\x33\x2e\x35\x37\x33\x2c\x31\x2e\x36\x20\ +\x33\x2e\x35\x37\x33\x2c\x33\x2e\x35\x37\x33\x20\x7a\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\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\ +\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\x20\x20\x20\x20\x66\x79\ +\x3d\x22\x36\x34\x2e\x35\x36\x37\x39\x30\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x30\x2e\x38\ +\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x72\x3d\x22\x35\x2e\x32\x35\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x34\x2e\x35\x36\ +\x37\x39\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x63\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\ +\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x31\x34\x35\ +\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x34\x35\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x46\ +\x30\x46\x30\x46\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x31\x34\x35\x34\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x34\x37\x34\ +\x37\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x72\x61\x64\x69\x61\x6c\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x31\x34\x35\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\ +\x20\x32\x33\x2e\x34\x32\x38\x2c\x36\x33\x2e\x30\x37\x20\x63\x20\ +\x30\x2c\x31\x2e\x39\x37\x33\x20\x2d\x31\x2e\x36\x2c\x33\x2e\x35\ +\x37\x33\x20\x2d\x33\x2e\x35\x37\x33\x2c\x33\x2e\x35\x37\x33\x20\ +\x2d\x31\x2e\x39\x37\x34\x2c\x30\x20\x2d\x33\x2e\x35\x37\x33\x2c\ +\x2d\x31\x2e\x36\x20\x2d\x33\x2e\x35\x37\x33\x2c\x2d\x33\x2e\x35\ +\x37\x33\x20\x30\x2c\x2d\x31\x2e\x39\x37\x34\x20\x31\x2e\x36\x2c\ +\x2d\x33\x2e\x35\x37\x33\x20\x33\x2e\x35\x37\x33\x2c\x2d\x33\x2e\ +\x35\x37\x33\x20\x31\x2e\x39\x37\x33\x2c\x30\x20\x33\x2e\x35\x37\ +\x33\x2c\x31\x2e\x36\x20\x33\x2e\x35\x37\x33\x2c\x33\x2e\x35\x37\ +\x33\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\ +\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\ +\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\x31\ +\x35\x35\x37\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\ +\x3d\x22\x6d\x20\x39\x2e\x39\x39\x35\x30\x31\x30\x39\x2c\x32\x39\ +\x2e\x39\x35\x32\x33\x32\x36\x20\x63\x20\x30\x2c\x30\x2e\x34\x35\ +\x33\x32\x30\x34\x20\x2d\x30\x2e\x33\x36\x37\x35\x32\x34\x38\x2c\ +\x30\x2e\x38\x32\x30\x34\x39\x39\x20\x2d\x30\x2e\x38\x32\x30\x37\ +\x32\x38\x38\x2c\x30\x2e\x38\x32\x30\x34\x39\x39\x20\x2d\x30\x2e\ +\x34\x35\x33\x34\x33\x33\x38\x2c\x30\x20\x2d\x30\x2e\x38\x32\x30\ +\x37\x32\x38\x39\x2c\x2d\x30\x2e\x33\x36\x37\x35\x32\x34\x20\x2d\ +\x30\x2e\x38\x32\x30\x37\x32\x38\x39\x2c\x2d\x30\x2e\x38\x32\x30\ +\x34\x39\x39\x20\x30\x2c\x2d\x30\x2e\x34\x35\x33\x34\x33\x34\x20\ +\x30\x2e\x33\x36\x37\x35\x32\x34\x38\x2c\x2d\x30\x2e\x38\x32\x30\ +\x37\x32\x39\x20\x30\x2e\x38\x32\x30\x37\x32\x38\x39\x2c\x2d\x30\ +\x2e\x38\x32\x30\x37\x32\x39\x20\x30\x2e\x34\x35\x33\x32\x30\x34\ +\x2c\x30\x20\x30\x2e\x38\x32\x30\x37\x32\x38\x38\x2c\x30\x2e\x33\ +\x36\x37\x35\x32\x35\x20\x30\x2e\x38\x32\x30\x37\x32\x38\x38\x2c\ +\x30\x2e\x38\x32\x30\x37\x32\x39\x20\x7a\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ +\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x32\x32\x38\x33\x29\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\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\x31\x35\x35\x37\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x39\x2e\ +\x39\x39\x35\x30\x31\x30\x39\x2c\x31\x38\x2e\x34\x36\x37\x31\x37\ +\x36\x20\x63\x20\x30\x2c\x30\x2e\x34\x35\x33\x32\x30\x34\x20\x2d\ +\x30\x2e\x33\x36\x37\x35\x32\x34\x38\x2c\x30\x2e\x38\x32\x30\x37\ +\x32\x39\x20\x2d\x30\x2e\x38\x32\x30\x37\x32\x38\x38\x2c\x30\x2e\ +\x38\x32\x30\x37\x32\x39\x20\x2d\x30\x2e\x34\x35\x33\x34\x33\x33\ +\x38\x2c\x30\x20\x2d\x30\x2e\x38\x32\x30\x37\x32\x38\x39\x2c\x2d\ +\x30\x2e\x33\x36\x37\x35\x32\x35\x20\x2d\x30\x2e\x38\x32\x30\x37\ +\x32\x38\x39\x2c\x2d\x30\x2e\x38\x32\x30\x37\x32\x39\x20\x30\x2c\ +\x2d\x30\x2e\x34\x35\x33\x34\x33\x34\x20\x30\x2e\x33\x36\x37\x35\ +\x32\x34\x38\x2c\x2d\x30\x2e\x38\x32\x30\x37\x32\x39\x20\x30\x2e\ +\x38\x32\x30\x37\x32\x38\x39\x2c\x2d\x30\x2e\x38\x32\x30\x37\x32\ +\x39\x20\x30\x2e\x34\x35\x33\x32\x30\x34\x2c\x30\x20\x30\x2e\x38\ +\x32\x30\x37\x32\x38\x38\x2c\x30\x2e\x33\x36\x37\x35\x32\x35\x20\ +\x30\x2e\x38\x32\x30\x37\x32\x38\x38\x2c\x30\x2e\x38\x32\x30\x37\ +\x32\x39\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\ +\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x32\ +\x38\x35\x29\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\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\ +\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\ +\x65\x73\x3d\x22\x63\x63\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x70\x61\x74\x68\x31\x35\x36\x37\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x35\x36\x2e\x32\x32\x36\ +\x39\x36\x37\x2c\x32\x30\x2e\x31\x37\x31\x36\x36\x37\x20\x2d\x33\ +\x37\x2e\x39\x30\x36\x35\x38\x39\x2c\x30\x2e\x30\x31\x34\x31\x39\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ +\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3a\x30\x2e\x39\x38\x38\x35\x35\x33\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\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\x30\x2e\ +\x30\x31\x37\x35\x34\x33\x38\x34\x3b\x64\x69\x73\x70\x6c\x61\x79\ +\x3a\x69\x6e\x6c\x69\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ +\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\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\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x35\x32\ +\x2e\x35\x32\x34\x32\x32\x37\x2c\x32\x35\x2e\x34\x38\x31\x39\x35\ +\x33\x20\x63\x20\x30\x2c\x30\x20\x30\x2c\x37\x2e\x32\x31\x38\x32\ +\x30\x33\x20\x30\x2c\x31\x30\x2e\x35\x31\x37\x37\x32\x38\x20\x30\ +\x2c\x33\x2e\x32\x39\x39\x35\x32\x35\x20\x30\x2c\x39\x2e\x32\x37\ +\x39\x34\x32\x33\x20\x30\x2c\x39\x2e\x32\x37\x39\x34\x32\x33\x20\ +\x30\x2c\x30\x20\x2d\x35\x2e\x32\x38\x32\x33\x2c\x30\x20\x2d\x38\ +\x2e\x31\x31\x39\x32\x37\x2c\x30\x20\x2d\x32\x2e\x38\x33\x36\x39\ +\x38\x2c\x30\x20\x2d\x38\x2e\x39\x30\x32\x35\x37\x39\x2c\x30\x20\ +\x2d\x38\x2e\x39\x30\x32\x35\x37\x39\x2c\x30\x20\x30\x2c\x30\x20\ +\x35\x2e\x33\x37\x31\x34\x39\x39\x2c\x2d\x36\x2e\x32\x34\x37\x32\ +\x38\x32\x20\x38\x2e\x32\x30\x38\x34\x36\x39\x2c\x2d\x39\x2e\x35\ +\x34\x36\x38\x30\x38\x20\x32\x2e\x38\x33\x36\x39\x38\x2c\x2d\x33\ +\x2e\x32\x39\x39\x35\x32\x35\x20\x38\x2e\x38\x31\x33\x33\x38\x2c\ +\x2d\x31\x30\x2e\x32\x35\x30\x33\x34\x33\x20\x38\x2e\x38\x31\x33\ +\x33\x38\x2c\x2d\x31\x30\x2e\x32\x35\x30\x33\x34\x33\x20\x7a\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ +\x34\x30\x31\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\ +\x22\x63\x7a\x63\x7a\x63\x7a\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\ +\x3d\x22\x63\x63\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x61\x74\x68\x31\x35\x36\x37\x34\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x64\x3d\x22\x6d\x20\x35\x36\x2e\x37\x30\x31\x31\x30\ +\x37\x2c\x32\x31\x2e\x31\x36\x35\x37\x36\x37\x20\x2d\x33\x38\x2e\ +\x30\x31\x37\x37\x30\x39\x2c\x30\x2e\x30\x31\x34\x32\x33\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ +\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ +\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ +\x64\x74\x68\x3a\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\ +\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\x30\x2e\x32\x30\x34\x36\x37\x38\x32\x38\x3b\x64\x69\ +\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\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\x20\x20\x69\ +\x64\x3d\x22\x44\x72\x61\x66\x74\x5f\x75\x70\x67\x72\x61\x64\x65\ +\x2d\x31\x2d\x33\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\ +\x2c\x30\x2e\x36\x31\x35\x34\x31\x31\x31\x2c\x2d\x30\x2e\x36\x31\ +\x35\x34\x31\x31\x31\x2c\x30\x2c\x34\x31\x2e\x31\x37\x34\x32\x35\ +\x37\x2c\x37\x2e\x33\x39\x39\x33\x31\x35\x29\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x72\x6f\x6b\ +\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x33\x2e\x32\x34\x39\x38\x36\x30\x30\ +\x35\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\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\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\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\ +\x74\x2d\x79\x64\x70\x69\x3d\x22\x38\x2e\x37\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x38\x2e\x37\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x66\x69\x6c\x65\ +\x6e\x61\x6d\x65\x3d\x22\x2f\x68\x6f\x6d\x65\x2f\x79\x6f\x72\x69\ +\x6b\x2f\x44\x6f\x63\x75\x6d\x65\x6e\x74\x73\x2f\x4c\x61\x62\x2f\ +\x44\x72\x61\x66\x74\x2f\x69\x63\x6f\x6e\x73\x2f\x75\x70\x67\x72\ +\x61\x64\x65\x2e\x70\x6e\x67\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x67\x33\x38\x35\x33\x2d\x33\x2d\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x38\x2e\ +\x37\x37\x32\x38\x38\x32\x34\x36\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\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\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\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x38\x2e\x37\x37\x32\x38\ +\x38\x32\x34\x36\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\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\x20\x20\x64\x3d\ +\x22\x6d\x20\x33\x38\x37\x35\x2e\x39\x33\x31\x31\x2c\x31\x30\x32\ +\x38\x2e\x30\x39\x36\x31\x20\x2d\x31\x34\x39\x2e\x35\x2c\x31\x35\ +\x35\x2e\x35\x36\x32\x35\x20\x38\x34\x2e\x38\x34\x33\x37\x2c\x30\ +\x20\x30\x2c\x31\x33\x39\x2e\x34\x30\x36\x33\x20\x31\x32\x37\x2e\ +\x32\x38\x31\x33\x2c\x30\x20\x30\x2c\x2d\x31\x33\x39\x2e\x34\x30\ +\x36\x33\x20\x37\x36\x2e\x37\x38\x31\x33\x2c\x30\x20\x2d\x31\x33\ +\x39\x2e\x34\x30\x36\x33\x2c\x2d\x31\x35\x35\x2e\x35\x36\x32\x35\ +\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x34\x39\x2d\x37\x2d\x39\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\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\x38\x34\x37\ +\x2d\x37\x2d\x35\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\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\x38\x2e\x37\x37\x32\x38\x38\x32\x34\x36\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ +\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ +\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ +\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\ +\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\ +\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\ +\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\ +\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\ +\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\ +\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\ +\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x64\x3d\x22\x6d\x20\x33\x38\x34\x38\x2e\x36\x38\x37\x35\x2c\x39\ +\x39\x39\x2e\x38\x34\x33\x37\x35\x20\x63\x20\x30\x2c\x30\x20\x2d\ +\x34\x35\x2e\x34\x36\x34\x33\x2c\x34\x37\x2e\x33\x30\x37\x39\x35\ +\x20\x2d\x37\x30\x2e\x33\x38\x31\x2c\x37\x33\x2e\x32\x33\x35\x30\ +\x35\x20\x2d\x32\x34\x2e\x39\x31\x36\x37\x2c\x32\x35\x2e\x39\x32\ +\x37\x31\x20\x2d\x37\x39\x2e\x31\x31\x39\x2c\x38\x32\x2e\x33\x32\ +\x37\x34\x20\x2d\x37\x39\x2e\x31\x31\x39\x2c\x38\x32\x2e\x33\x32\ +\x37\x34\x20\x6c\x20\x38\x34\x2e\x38\x34\x33\x37\x2c\x30\x20\x30\ +\x2c\x31\x33\x39\x2e\x34\x30\x36\x33\x20\x63\x20\x30\x2c\x30\x20\ +\x34\x31\x2e\x30\x37\x31\x38\x2c\x30\x20\x36\x32\x2e\x32\x38\x35\ +\x34\x2c\x30\x20\x32\x31\x2e\x32\x31\x33\x35\x2c\x30\x20\x36\x34\ +\x2e\x39\x39\x35\x39\x2c\x30\x20\x36\x34\x2e\x39\x39\x35\x39\x2c\ +\x30\x20\x6c\x20\x30\x2c\x2d\x31\x33\x39\x2e\x34\x30\x36\x33\x20\ +\x37\x36\x2e\x37\x38\x31\x33\x2c\x30\x20\x2d\x31\x33\x39\x2e\x34\ +\x30\x36\x33\x2c\x2d\x31\x35\x35\x2e\x35\x36\x32\x34\x35\x20\x7a\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x72\x65\x63\x74\x33\x30\x36\x36\x2d\x37\x2d\x33\x22\x0a\x20\ +\x20\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\x7a\ +\x63\x63\x63\x7a\x63\x63\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x67\x3e\ +\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\ +\x22\x61\x72\x63\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\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\x62\x66\x66\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x34\x36\x36\x38\x39\x33\ +\x30\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\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\x70\x61\x74\x68\x34\x30\x31\x34\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\ +\x3d\x22\x36\x36\x34\x2e\x36\x38\x30\x33\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\ +\x22\x33\x30\x2e\x35\x38\x37\x35\x32\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\ +\x38\x2e\x38\x33\x38\x38\x33\x34\x38\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x38\ +\x2e\x38\x33\x38\x38\x33\x34\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x6d\x20\x36\x37\x33\x2e\x35\x31\x39\x31\x39\x2c\ +\x33\x30\x2e\x35\x38\x37\x35\x32\x31\x20\x61\x20\x38\x2e\x38\x33\ +\x38\x38\x33\x34\x38\x2c\x38\x2e\x38\x33\x38\x38\x33\x34\x38\x20\ +\x30\x20\x31\x20\x31\x20\x2d\x31\x37\x2e\x36\x37\x37\x36\x37\x2c\ +\x30\x20\x38\x2e\x38\x33\x38\x38\x33\x34\x38\x2c\x38\x2e\x38\x33\ +\x38\x38\x33\x34\x38\x20\x30\x20\x31\x20\x31\x20\x31\x37\x2e\x36\ +\x37\x37\x36\x37\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ +\x69\x78\x28\x30\x2e\x36\x38\x31\x37\x31\x32\x39\x32\x2c\x30\x2c\ +\x30\x2c\x30\x2e\x36\x38\x31\x37\x31\x32\x39\x32\x2c\x2d\x34\x31\ +\x31\x2e\x32\x38\x35\x36\x38\x2c\x31\x34\x2e\x34\x34\x32\x31\x34\ +\x34\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x64\x69\x73\x70\ +\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x67\x35\x30\x32\x32\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\x30\x32\x31\x36\x35\x31\x35\ +\x32\x2c\x30\x2c\x30\x2c\x30\x2e\x30\x31\x34\x38\x35\x37\x34\x33\ +\x2c\x35\x36\x2e\x35\x31\x39\x37\x33\x37\x2c\x35\x32\x2e\x38\x32\ +\x37\x39\x32\x36\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\x79\x3d\x22\ +\x2d\x31\x35\x30\x2e\x36\x39\x36\x38\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x31\x35\x35\x39\x2e\x32\x35\ +\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\ +\x67\x68\x74\x3d\x22\x34\x37\x38\x2e\x33\x35\x37\x31\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\ +\x31\x33\x33\x39\x2e\x36\x33\x33\x35\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x34\x31\x37\x33\ +\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\x34\x30\x32\x30\ +\x36\x31\x38\x35\x3b\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\ +\x30\x30\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\x35\x30\x32\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\x6e\x6f\x6e\x65\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\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\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\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ +\x35\x30\x35\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\ +\x3d\x22\x6d\x20\x2d\x32\x31\x39\x2e\x36\x31\x38\x37\x36\x2c\x2d\ +\x31\x35\x30\x2e\x36\x38\x30\x33\x38\x20\x63\x20\x30\x2c\x30\x20\ +\x30\x2c\x34\x37\x38\x2e\x33\x33\x30\x37\x39\x20\x30\x2c\x34\x37\ +\x38\x2e\x33\x33\x30\x37\x39\x20\x31\x34\x32\x2e\x38\x37\x34\x31\ +\x36\x36\x2c\x30\x2e\x39\x30\x30\x34\x35\x20\x33\x34\x35\x2e\x34\ +\x30\x30\x32\x32\x2c\x2d\x31\x30\x37\x2e\x31\x36\x39\x36\x36\x20\ +\x33\x34\x35\x2e\x34\x30\x30\x31\x34\x2c\x2d\x32\x33\x39\x2e\x31\ +\x39\x36\x31\x37\x35\x20\x30\x2c\x2d\x31\x33\x32\x2e\x30\x32\x36\ +\x35\x33\x37\x20\x2d\x31\x35\x39\x2e\x34\x33\x36\x38\x31\x36\x2c\ +\x2d\x32\x33\x39\x2e\x31\x33\x34\x35\x39\x35\x20\x2d\x33\x34\x35\ +\x2e\x34\x30\x30\x31\x34\x2c\x2d\x32\x33\x39\x2e\x31\x33\x34\x36\ +\x31\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\x30\x2e\ +\x34\x30\x32\x30\x36\x31\x38\x35\x3b\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\ +\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\ +\x30\x32\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\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\ +\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\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x34\x30\x32\x30\x36\x31\ +\x38\x35\x3b\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\ +\x3b\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\ +\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x33\x39\x32\x29\x3b\x66\ +\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\ +\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\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\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\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x2d\x31\x35\x35\x39\x2e\x32\ +\x35\x32\x33\x2c\x2d\x31\x35\x30\x2e\x36\x38\x30\x33\x38\x20\x63\ +\x20\x30\x2c\x30\x20\x30\x2c\x34\x37\x38\x2e\x33\x33\x30\x37\x39\ +\x20\x30\x2c\x34\x37\x38\x2e\x33\x33\x30\x37\x39\x20\x2d\x31\x34\ +\x32\x2e\x38\x37\x34\x32\x2c\x30\x2e\x39\x30\x30\x34\x35\x20\x2d\ +\x33\x34\x35\x2e\x34\x30\x30\x32\x2c\x2d\x31\x30\x37\x2e\x31\x36\ +\x39\x36\x36\x20\x2d\x33\x34\x35\x2e\x34\x30\x30\x32\x2c\x2d\x32\ +\x33\x39\x2e\x31\x39\x36\x31\x37\x35\x20\x30\x2c\x2d\x31\x33\x32\ +\x2e\x30\x32\x36\x35\x33\x37\x20\x31\x35\x39\x2e\x34\x33\x36\x38\ +\x2c\x2d\x32\x33\x39\x2e\x31\x33\x34\x35\x39\x35\x20\x33\x34\x35\ +\x2e\x34\x30\x30\x32\x2c\x2d\x32\x33\x39\x2e\x31\x33\x34\x36\x31\ +\x35\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x61\x74\x68\x35\x30\x31\x38\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\ +\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x63\x63\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\x1f\x52\ +\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\x37\x32\x36\ +\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\x6c\x69\x6e\ +\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\x37\x32\ +\x38\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\ +\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\ +\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\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\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ +\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\ +\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\ +\x36\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\ +\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\ +\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\ +\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\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\x33\x31\x34\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\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\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\ +\x31\x34\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\ +\x66\x66\x66\x66\x66\x66\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\x33\x31\x34\ +\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\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\ +\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x34\x32\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ +\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\ +\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\ +\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\x30\ +\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x37\ +\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\ +\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\ +\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ +\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\ +\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\ +\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x36\x34\x20\x3a\x20\ +\x33\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\ +\x6f\x72\x69\x67\x69\x6e\x3d\x22\x33\x32\x20\x3a\x20\x32\x31\x2e\ +\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\ +\x76\x65\x32\x37\x33\x34\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\x39\x2e\x31\x33\x38\x38\x35\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\ +\x3d\x22\x32\x35\x2e\x38\x30\x36\x38\x37\x34\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\x37\x33\x31\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\x32\x38\x39\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\x32\x31\x32\x38\x32\x2c\x30\x2c\ +\x30\x2c\x30\x2e\x31\x36\x32\x31\x32\x38\x32\x2c\x36\x2e\x33\x36\ +\x30\x35\x39\x38\x36\x2c\x2d\x36\x36\x2e\x31\x30\x38\x38\x30\x36\ +\x29\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ +\x22\x74\x72\x61\x6e\x73\x6c\x61\x74\x65\x28\x34\x33\x2e\x37\x31\ +\x34\x33\x32\x34\x2c\x36\x38\x2e\x37\x31\x34\x32\x34\x37\x29\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x33\ +\x32\x35\x35\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\x69\ +\x64\x3d\x22\x72\x65\x63\x74\x33\x32\x35\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x34\x36\ +\x2e\x39\x31\x30\x34\x34\x2c\x34\x34\x38\x2e\x39\x35\x36\x39\x33\ +\x20\x43\x20\x32\x32\x35\x2e\x39\x37\x37\x38\x2c\x34\x34\x39\x2e\ +\x35\x34\x32\x38\x39\x20\x32\x30\x38\x2e\x39\x31\x39\x35\x39\x2c\ +\x34\x36\x36\x2e\x34\x36\x31\x38\x38\x20\x32\x30\x38\x2e\x34\x33\ +\x38\x36\x2c\x34\x38\x37\x2e\x36\x33\x32\x35\x39\x20\x43\x20\x32\ +\x30\x38\x2e\x33\x32\x38\x37\x31\x2c\x34\x39\x32\x2e\x34\x36\x39\ +\x34\x38\x20\x32\x30\x39\x2e\x31\x31\x31\x35\x36\x2c\x34\x39\x37\ +\x2e\x31\x31\x39\x37\x33\x20\x32\x31\x30\x2e\x36\x30\x34\x32\x34\ +\x2c\x35\x30\x31\x2e\x34\x34\x31\x36\x38\x20\x4c\x20\x35\x32\x2e\ +\x32\x30\x37\x32\x39\x33\x2c\x36\x34\x33\x2e\x38\x36\x33\x39\x31\ +\x20\x43\x20\x34\x35\x2e\x30\x35\x31\x39\x38\x35\x2c\x36\x33\x37\ +\x2e\x38\x34\x38\x34\x33\x20\x33\x35\x2e\x37\x35\x37\x31\x32\x32\ +\x2c\x36\x33\x34\x2e\x33\x34\x35\x36\x39\x20\x32\x35\x2e\x36\x38\ +\x34\x36\x35\x37\x2c\x36\x33\x34\x2e\x36\x31\x35\x33\x38\x20\x43\ +\x20\x33\x2e\x38\x33\x33\x32\x30\x36\x39\x2c\x36\x33\x35\x2e\x32\ +\x30\x30\x34\x34\x20\x2d\x31\x33\x2e\x34\x32\x33\x32\x2c\x36\x35\ +\x33\x2e\x34\x30\x31\x33\x37\x20\x2d\x31\x32\x2e\x38\x33\x38\x31\ +\x33\x33\x2c\x36\x37\x35\x2e\x32\x35\x32\x38\x35\x20\x43\x20\x2d\ +\x31\x32\x2e\x32\x35\x33\x30\x36\x36\x2c\x36\x39\x37\x2e\x31\x30\ +\x34\x32\x39\x20\x35\x2e\x39\x34\x37\x38\x38\x32\x35\x2c\x37\x31\ +\x34\x2e\x33\x36\x30\x37\x31\x20\x32\x37\x2e\x37\x39\x39\x33\x33\ +\x34\x2c\x37\x31\x33\x2e\x37\x37\x35\x36\x34\x20\x43\x20\x34\x39\ +\x2e\x36\x35\x30\x37\x38\x32\x2c\x37\x31\x33\x2e\x31\x39\x30\x35\ +\x37\x20\x36\x36\x2e\x39\x30\x37\x31\x39\x2c\x36\x39\x34\x2e\x39\ +\x38\x39\x36\x34\x20\x36\x36\x2e\x33\x32\x32\x31\x32\x34\x2c\x36\ +\x37\x33\x2e\x31\x33\x38\x31\x37\x20\x43\x20\x36\x36\x2e\x32\x34\ +\x37\x35\x2c\x36\x37\x30\x2e\x33\x35\x31\x30\x37\x20\x36\x35\x2e\ +\x38\x37\x31\x30\x39\x34\x2c\x36\x36\x37\x2e\x36\x34\x36\x33\x35\ +\x20\x36\x35\x2e\x32\x35\x32\x30\x34\x37\x2c\x36\x36\x35\x2e\x30\ +\x33\x36\x31\x35\x20\x4c\x20\x32\x32\x35\x2e\x34\x30\x36\x39\x38\ +\x2c\x35\x32\x31\x2e\x30\x33\x34\x32\x39\x20\x43\x20\x32\x33\x31\ +\x2e\x35\x38\x30\x36\x34\x2c\x35\x32\x35\x2e\x33\x34\x32\x33\x31\ +\x20\x32\x33\x39\x2e\x30\x35\x34\x37\x2c\x35\x32\x37\x2e\x39\x33\ +\x33\x34\x39\x20\x32\x34\x37\x2e\x31\x33\x39\x37\x34\x2c\x35\x32\ +\x38\x2e\x31\x31\x37\x31\x39\x20\x43\x20\x32\x36\x38\x2e\x39\x39\ +\x33\x33\x38\x2c\x35\x32\x38\x2e\x36\x31\x33\x36\x39\x20\x32\x38\ +\x37\x2e\x31\x32\x37\x38\x33\x2c\x35\x31\x31\x2e\x32\x39\x35\x31\ +\x36\x20\x32\x38\x37\x2e\x36\x32\x34\x33\x34\x2c\x34\x38\x39\x2e\ +\x34\x34\x31\x35\x33\x20\x43\x20\x32\x38\x38\x2e\x31\x32\x30\x38\ +\x34\x2c\x34\x36\x37\x2e\x35\x38\x37\x38\x39\x20\x32\x37\x30\x2e\ +\x38\x30\x32\x33\x33\x2c\x34\x34\x39\x2e\x34\x35\x33\x34\x33\x20\ +\x32\x34\x38\x2e\x39\x34\x38\x36\x38\x2c\x34\x34\x38\x2e\x39\x35\ +\x36\x39\x33\x20\x43\x20\x32\x34\x38\x2e\x32\x36\x35\x37\x36\x2c\ +\x34\x34\x38\x2e\x39\x34\x31\x34\x32\x20\x32\x34\x37\x2e\x35\x38\ +\x35\x36\x38\x2c\x34\x34\x38\x2e\x39\x33\x38\x30\x33\x20\x32\x34\ +\x36\x2e\x39\x31\x30\x34\x34\x2c\x34\x34\x38\x2e\x39\x35\x36\x39\ +\x33\x20\x7a\x22\x0a\x20\x20\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\x38\x34\ +\x36\x39\x39\x34\x34\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\x35\x2e\x38\x30\x30\x30\x30\x31\x31\x34\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ +\x6d\x69\x74\x65\x72\x3b\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\x2f\x67\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x33\x32\x34\x32\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\ +\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\ +\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\ +\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\x35\x2e\x38\x30\x30\x30\x30\x31\x31\x34\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ +\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ +\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x6d\x61\x72\x6b\x65\x72\x3a\ +\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x73\x74\x61\x72\ +\x74\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x6d\x69\ +\x64\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x65\x6e\ +\x64\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ +\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\ +\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\ +\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\ +\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\ +\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\ +\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\ +\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x32\x36\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\ +\x3d\x22\x33\x30\x2e\x30\x30\x30\x30\x30\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x33\x33\x30\x2e\x30\x30\x30\x30\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x35\x33\x34\x2e\x31\x30\x31\ +\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\ +\x3d\x22\x31\x31\x39\x2e\x38\x37\x30\x39\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\ +\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x36\x36\x38\x35\ +\x39\x31\x2c\x30\x2e\x37\x34\x33\x36\x33\x30\x34\x2c\x2d\x30\x2e\ +\x37\x34\x33\x36\x33\x30\x34\x2c\x30\x2e\x36\x36\x38\x35\x39\x31\ +\x2c\x30\x2c\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x67\x33\x31\x35\x34\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ +\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\x2e\x39\x39\x39\x36\x34\ +\x31\x37\x2c\x32\x2e\x36\x37\x36\x35\x31\x35\x33\x65\x2d\x32\x2c\ +\x2d\x32\x2e\x36\x37\x36\x35\x31\x35\x33\x65\x2d\x32\x2c\x2d\x30\ +\x2e\x39\x39\x39\x36\x34\x31\x37\x2c\x32\x33\x38\x2e\x30\x33\x37\ +\x38\x33\x2c\x31\x33\x35\x39\x2e\x37\x38\x34\x35\x29\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x66\x69\x6c\x65\x6e\x61\ +\x6d\x65\x3d\x22\x2f\x68\x6f\x6d\x65\x2f\x79\x6f\x72\x69\x6b\x2f\ +\x44\x6f\x63\x75\x6d\x65\x6e\x74\x73\x2f\x4c\x61\x62\x2f\x44\x72\ +\x61\x66\x74\x2f\x69\x63\x6f\x6e\x73\x2f\x6c\x69\x6e\x65\x2e\x70\ +\x6e\x67\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\ +\x64\x70\x69\x3d\x22\x37\x2e\x30\x37\x32\x31\x39\x35\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\ +\x22\x37\x2e\x30\x37\x32\x31\x39\x35\x31\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\ +\x34\x35\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\ +\x33\x20\x41\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\ +\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x31\x34\x38\x2e\ +\x35\x37\x31\x34\x32\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x41\ +\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\x31\ +\x34\x33\x20\x30\x20\x31\x20\x31\x20\x32\x34\x35\x2e\x37\x31\x34\ +\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x7a\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x34\x38\x2e\x35\x37\x31\x34\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\x34\x38\x2e\ +\x35\x37\x31\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\ +\x22\x36\x35\x35\x2e\x32\x31\x39\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x63\x78\x3d\x22\x31\x39\x37\x2e\x31\x34\x32\x38\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x61\x74\x68\x32\x31\x36\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ +\x69\x6c\x6c\x3a\x23\x66\x66\x61\x39\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\x35\x2e\x38\x30\x30\x30\x30\x30\x31\ +\x39\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\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\x63\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\ +\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\ +\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ +\x28\x30\x2e\x38\x35\x31\x33\x30\x32\x33\x2c\x2d\x30\x2e\x35\x32\ +\x34\x36\x37\x35\x34\x2c\x30\x2e\x35\x32\x34\x36\x37\x35\x34\x2c\ +\x30\x2e\x38\x35\x31\x33\x30\x32\x33\x2c\x2d\x33\x33\x38\x2e\x36\ +\x39\x36\x39\x32\x2c\x32\x31\x34\x2e\x31\x39\x33\x32\x38\x29\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ +\x22\x4d\x20\x32\x35\x39\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\ +\x2e\x37\x39\x37\x33\x36\x20\x41\x20\x33\x34\x2e\x33\x34\x35\x31\ +\x38\x38\x2c\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\ +\x20\x31\x20\x31\x39\x30\x2e\x39\x31\x38\x38\x33\x2c\x36\x37\x32\ +\x2e\x37\x39\x37\x33\x36\x20\x41\x20\x33\x34\x2e\x33\x34\x35\x31\ +\x38\x38\x2c\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\ +\x20\x31\x20\x32\x35\x39\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\ +\x2e\x37\x39\x37\x33\x36\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x72\x79\x3d\x22\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\ +\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\x36\x37\ +\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\ +\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x61\x74\x68\x33\x31\x33\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ +\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x34\x32\x37\x32\x29\x3b\x66\x69\x6c\x6c\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\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\x30\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\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\x63\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x33\x31\x36\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x2d\x30\x2e\x39\x39\x39\x37\x34\x32\x2c\x2d\x32\x2e\x32\x37\x31\ +\x33\x35\x31\x34\x65\x2d\x32\x2c\x32\x2e\x32\x37\x31\x33\x35\x31\ +\x34\x65\x2d\x32\x2c\x2d\x30\x2e\x39\x39\x39\x37\x34\x32\x2c\x34\ +\x37\x35\x2e\x30\x36\x36\x38\x2c\x31\x31\x33\x37\x2e\x38\x39\x30\ +\x32\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x66\ +\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\x2f\x68\x6f\x6d\x65\x2f\x79\ +\x6f\x72\x69\x6b\x2f\x44\x6f\x63\x75\x6d\x65\x6e\x74\x73\x2f\x4c\ +\x61\x62\x2f\x44\x72\x61\x66\x74\x2f\x69\x63\x6f\x6e\x73\x2f\x6c\ +\x69\x6e\x65\x2e\x70\x6e\x67\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\ +\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x37\x2e\x30\x37\x32\x31\ +\x39\x35\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ +\x79\x64\x70\x69\x3d\x22\x37\x2e\x30\x37\x32\x31\x39\x35\x31\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\ +\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\ +\x3d\x22\x4d\x20\x32\x34\x35\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\ +\x35\x2e\x32\x31\x39\x33\x20\x41\x20\x34\x38\x2e\x35\x37\x31\x34\ +\x33\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\ +\x20\x31\x34\x38\x2e\x35\x37\x31\x34\x32\x2c\x36\x35\x35\x2e\x32\ +\x31\x39\x33\x20\x41\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\ +\x38\x2e\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x32\x34\ +\x35\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\ +\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x34\x38\ +\x2e\x35\x37\x31\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\ +\x3d\x22\x34\x38\x2e\x35\x37\x31\x34\x33\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x63\x79\x3d\x22\x36\x35\x35\x2e\x32\x31\x39\x33\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x31\x39\x37\x2e\x31\x34\ +\x32\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x31\x36\x32\x22\x0a\ +\x20\x20\x20\x20\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\x66\x66\x61\x39\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\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x38\x30\x30\x30\x30\x30\ +\x31\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ +\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x6d\x61\x72\ +\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\ +\x73\x74\x61\x72\x74\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\ +\x72\x2d\x6d\x69\x64\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\ +\x72\x2d\x65\x6e\x64\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ +\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ +\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x76\x69\x73\x69\x62\x69\ +\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\ +\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\ +\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\ +\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\ +\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\x63\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\ +\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\ +\x38\x35\x31\x33\x30\x32\x33\x2c\x2d\x30\x2e\x35\x32\x34\x36\x37\ +\x35\x34\x2c\x30\x2e\x35\x32\x34\x36\x37\x35\x34\x2c\x30\x2e\x38\ +\x35\x31\x33\x30\x32\x33\x2c\x2d\x33\x33\x38\x2e\x36\x39\x36\x39\ +\x32\x2c\x32\x31\x34\x2e\x31\x39\x33\x32\x38\x29\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\ +\x32\x35\x39\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\ +\x37\x33\x36\x20\x41\x20\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\ +\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\x20\x31\x20\ +\x31\x39\x30\x2e\x39\x31\x38\x38\x33\x2c\x36\x37\x32\x2e\x37\x39\ +\x37\x33\x36\x20\x41\x20\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\ +\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x20\x30\x20\x31\x20\x31\x20\ +\x32\x35\x39\x2e\x36\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\ +\x37\x33\x36\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\ +\x22\x32\x33\x2e\x39\x39\x31\x31\x32\x33\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x72\x78\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\ +\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\ +\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ +\x33\x31\x36\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\ +\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x34\x32\x37\x34\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\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\ +\x30\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\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x61\x72\x63\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x3c\x2f\ +\x67\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\ +\x0a\ +\x00\x00\x1a\xf4\ +\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\x37\x36\x36\ +\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\x44\x72\x61\ +\x66\x74\x5f\x53\x63\x61\x6c\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\x37\x36\x38\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\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\ +\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x33\x38\x36\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x33\x35\x32\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ +\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\ +\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x78\x31\x3d\x22\x36\x30\x35\x2e\x39\x34\x36\x35\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x39\x32\ +\x2e\x37\x31\x31\x38\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x78\x32\x3d\x22\x36\x32\x36\x2e\x33\x31\x33\x32\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x39\x32\x2e\x37\x31\x31\ +\x38\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x37\x38\x37\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x38\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\ +\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x39\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x33\x37\x39\ +\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\ +\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\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\x37\x38\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\x35\x32\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ +\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x35\x38\x31\x2e\x33\ +\x31\x38\x37\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\ +\x22\x31\x30\x30\x2e\x38\x31\x32\x35\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x78\x32\x3d\x22\x36\x33\x34\x2e\x32\x31\x32\x35\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x31\x30\x30\x2e\ +\x38\x31\x32\x35\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x38\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x33\x37\ +\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\ +\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\ +\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\ +\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x35\x32\x34\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\ +\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x35\x38\x31\x2e\ +\x32\x36\x33\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\ +\x3d\x22\x31\x32\x36\x2e\x37\x39\x36\x32\x35\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x78\x32\x3d\x22\x36\x30\x39\x2e\x35\x34\x39\x31\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x31\x30\ +\x30\x2e\x31\x30\x37\x30\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\ +\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\ +\x5f\x78\x3d\x22\x30\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\ +\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x36\x34\x20\x3a\x20\x33\ +\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\ +\x72\x69\x67\x69\x6e\x3d\x22\x33\x32\x20\x3a\x20\x32\x31\x2e\x33\ +\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\ +\x65\x32\x37\x37\x34\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\x36\ +\x34\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\x36\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\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\x39\x33\x22\x20\x2f\x3e\x0a\ +\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x37\x37\ +\x31\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\x35\x31\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\ +\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\ +\x2e\x30\x36\x31\x34\x39\x33\x31\x2c\x30\x2c\x30\x2c\x31\x2c\x2d\ +\x36\x31\x32\x2e\x39\x36\x39\x34\x31\x2c\x2d\x36\x39\x2e\x31\x39\ +\x34\x36\x30\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\x35\x30\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x36\x31\x37\x2e\x30\x36\x36\ +\x39\x36\x2c\x38\x35\x2e\x30\x33\x31\x32\x35\x20\x4c\x20\x36\x31\ +\x39\x2e\x35\x39\x38\x32\x31\x2c\x38\x37\x2e\x36\x38\x37\x35\x20\ +\x4c\x20\x36\x31\x30\x2e\x32\x35\x34\x34\x36\x2c\x39\x36\x2e\x34\ +\x30\x36\x32\x35\x20\x4c\x20\x36\x31\x37\x2e\x39\x37\x33\x32\x31\ +\x2c\x31\x30\x34\x2e\x32\x35\x20\x4c\x20\x36\x32\x37\x2e\x30\x36\ +\x36\x39\x36\x2c\x39\x35\x2e\x32\x38\x31\x32\x35\x20\x4c\x20\x36\ +\x32\x39\x2e\x33\x31\x36\x39\x36\x2c\x39\x37\x2e\x36\x35\x36\x32\ +\x35\x20\x4c\x20\x36\x32\x39\x2e\x30\x36\x36\x39\x36\x2c\x38\x35\ +\x2e\x30\x33\x31\x32\x35\x20\x4c\x20\x36\x31\x37\x2e\x30\x36\x36\ +\x39\x36\x2c\x38\x35\x2e\x30\x33\x31\x32\x35\x20\x7a\x20\x4d\x20\ +\x35\x38\x35\x2e\x35\x39\x38\x32\x31\x2c\x31\x30\x32\x2e\x37\x31\ +\x38\x37\x35\x20\x4c\x20\x35\x38\x35\x2e\x35\x39\x38\x32\x31\x2c\ +\x31\x33\x30\x20\x4c\x20\x36\x31\x32\x2e\x35\x33\x35\x37\x31\x2c\ +\x31\x33\x30\x20\x4c\x20\x36\x31\x32\x2e\x35\x33\x35\x37\x31\x2c\ +\x31\x30\x32\x2e\x37\x31\x38\x37\x35\x20\x4c\x20\x35\x38\x35\x2e\ +\x35\x39\x38\x32\x31\x2c\x31\x30\x32\x2e\x37\x31\x38\x37\x35\x20\ +\x7a\x20\x4d\x20\x35\x39\x31\x2e\x31\x36\x30\x37\x31\x2c\x31\x30\ +\x38\x2e\x38\x31\x32\x35\x20\x4c\x20\x36\x30\x36\x2e\x38\x37\x39\ +\x34\x36\x2c\x31\x30\x38\x2e\x38\x31\x32\x35\x20\x4c\x20\x36\x30\ +\x36\x2e\x38\x37\x39\x34\x36\x2c\x31\x32\x34\x2e\x37\x31\x38\x37\ +\x35\x20\x4c\x20\x35\x39\x31\x2e\x31\x36\x30\x37\x31\x2c\x31\x32\ +\x34\x2e\x37\x31\x38\x37\x35\x20\x4c\x20\x35\x39\x31\x2e\x31\x36\ +\x30\x37\x31\x2c\x31\x30\x38\x2e\x38\x31\x32\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\x30\x2e\x36\x33\x30\x39\x30\x31\ +\x32\x36\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\x2e\x32\x39\x39\x39\ +\x39\x39\x39\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x6d\ +\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\ +\x72\x2d\x73\x74\x61\x72\x74\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\ +\x6b\x65\x72\x2d\x6d\x69\x64\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\ +\x6b\x65\x72\x2d\x65\x6e\x64\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ +\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ +\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x76\x69\x73\x69\ +\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\ +\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\ +\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\ +\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ +\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\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\x32\x36\x36\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\ +\x20\x35\x38\x31\x2e\x39\x33\x37\x35\x2c\x31\x30\x30\x2e\x37\x38\ +\x31\x32\x35\x20\x4c\x20\x35\x38\x31\x2e\x39\x33\x37\x35\x2c\x31\ +\x32\x38\x2e\x30\x36\x32\x35\x20\x4c\x20\x36\x30\x38\x2e\x38\x37\ +\x35\x2c\x31\x32\x38\x2e\x30\x36\x32\x35\x20\x4c\x20\x36\x30\x38\ +\x2e\x38\x37\x35\x2c\x31\x30\x30\x2e\x37\x38\x31\x32\x35\x20\x4c\ +\x20\x35\x38\x31\x2e\x39\x33\x37\x35\x2c\x31\x30\x30\x2e\x37\x38\ +\x31\x32\x35\x20\x7a\x20\x4d\x20\x35\x38\x37\x2e\x35\x2c\x31\x30\ +\x36\x2e\x38\x37\x35\x20\x4c\x20\x36\x30\x33\x2e\x32\x31\x38\x37\ +\x35\x2c\x31\x30\x36\x2e\x38\x37\x35\x20\x4c\x20\x36\x30\x33\x2e\ +\x32\x31\x38\x37\x35\x2c\x31\x32\x32\x2e\x37\x38\x31\x32\x35\x20\ +\x4c\x20\x35\x38\x37\x2e\x35\x2c\x31\x32\x32\x2e\x37\x38\x31\x32\ +\x35\x20\x4c\x20\x35\x38\x37\x2e\x35\x2c\x31\x30\x36\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\x33\x35\x32\x34\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\x2e\x32\x39\x39\x39\ +\x39\x39\x39\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x6d\ +\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\ +\x72\x2d\x73\x74\x61\x72\x74\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\ +\x6b\x65\x72\x2d\x6d\x69\x64\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\ +\x6b\x65\x72\x2d\x65\x6e\x64\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ +\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ +\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x76\x69\x73\x69\ +\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\ +\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\ +\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\ +\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ +\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\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\x34\x34\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\ +\x20\x35\x38\x31\x2e\x39\x36\x38\x37\x35\x2c\x37\x33\x2e\x38\x34\ +\x33\x37\x35\x20\x4c\x20\x35\x38\x31\x2e\x39\x36\x38\x37\x35\x2c\ +\x38\x36\x2e\x39\x30\x36\x32\x35\x20\x4c\x20\x35\x38\x37\x2e\x36\ +\x38\x37\x35\x2c\x38\x36\x2e\x39\x30\x36\x32\x35\x20\x4c\x20\x35\ +\x38\x37\x2e\x36\x38\x37\x35\x2c\x38\x30\x2e\x30\x39\x33\x37\x35\ +\x20\x4c\x20\x35\x38\x39\x2e\x34\x36\x38\x37\x35\x2c\x38\x30\x2e\ +\x30\x39\x33\x37\x35\x20\x4c\x20\x35\x38\x39\x2e\x34\x36\x38\x37\ +\x35\x2c\x37\x33\x2e\x38\x34\x33\x37\x35\x20\x4c\x20\x35\x38\x31\ +\x2e\x39\x36\x38\x37\x35\x2c\x37\x33\x2e\x38\x34\x33\x37\x35\x20\ +\x7a\x20\x4d\x20\x35\x39\x32\x2e\x35\x2c\x37\x33\x2e\x38\x34\x33\ +\x37\x35\x20\x4c\x20\x35\x39\x32\x2e\x35\x2c\x38\x30\x2e\x30\x39\ +\x33\x37\x35\x20\x4c\x20\x35\x39\x39\x2e\x38\x31\x32\x35\x2c\x38\ +\x30\x2e\x30\x39\x33\x37\x35\x20\x4c\x20\x35\x39\x39\x2e\x38\x31\ +\x32\x35\x2c\x37\x33\x2e\x38\x34\x33\x37\x35\x20\x4c\x20\x35\x39\ +\x32\x2e\x35\x2c\x37\x33\x2e\x38\x34\x33\x37\x35\x20\x7a\x20\x4d\ +\x20\x36\x30\x32\x2e\x35\x2c\x37\x33\x2e\x38\x34\x33\x37\x35\x20\ +\x4c\x20\x36\x30\x32\x2e\x35\x2c\x38\x30\x2e\x30\x39\x33\x37\x35\ +\x20\x4c\x20\x36\x31\x30\x2e\x31\x38\x37\x35\x2c\x38\x30\x2e\x30\ +\x39\x33\x37\x35\x20\x4c\x20\x36\x31\x30\x2e\x31\x38\x37\x35\x2c\ +\x37\x33\x2e\x38\x34\x33\x37\x35\x20\x4c\x20\x36\x30\x32\x2e\x35\ +\x2c\x37\x33\x2e\x38\x34\x33\x37\x35\x20\x7a\x20\x4d\x20\x36\x31\ +\x33\x2e\x30\x33\x31\x32\x35\x2c\x37\x33\x2e\x38\x34\x33\x37\x35\ +\x20\x4c\x20\x36\x31\x33\x2e\x30\x33\x31\x32\x35\x2c\x38\x30\x2e\ +\x30\x39\x33\x37\x35\x20\x4c\x20\x36\x32\x31\x2e\x30\x36\x32\x35\ +\x2c\x38\x30\x2e\x30\x39\x33\x37\x35\x20\x4c\x20\x36\x32\x31\x2e\ +\x30\x36\x32\x35\x2c\x37\x33\x2e\x38\x34\x33\x37\x35\x20\x4c\x20\ +\x36\x31\x33\x2e\x30\x33\x31\x32\x35\x2c\x37\x33\x2e\x38\x34\x33\ +\x37\x35\x20\x7a\x20\x4d\x20\x36\x32\x33\x2e\x39\x33\x37\x35\x2c\ +\x37\x33\x2e\x38\x34\x33\x37\x35\x20\x4c\x20\x36\x32\x33\x2e\x39\ +\x33\x37\x35\x2c\x38\x30\x2e\x30\x39\x33\x37\x35\x20\x4c\x20\x36\ +\x32\x38\x2e\x30\x33\x31\x32\x35\x2c\x38\x30\x2e\x30\x39\x33\x37\ +\x35\x20\x4c\x20\x36\x32\x38\x2e\x30\x33\x31\x32\x35\x2c\x38\x33\ +\x2e\x35\x20\x4c\x20\x36\x33\x33\x2e\x35\x36\x32\x35\x2c\x38\x33\ +\x2e\x35\x20\x4c\x20\x36\x33\x33\x2e\x35\x36\x32\x35\x2c\x37\x33\ +\x2e\x38\x34\x33\x37\x35\x20\x4c\x20\x36\x32\x33\x2e\x39\x33\x37\ +\x35\x2c\x37\x33\x2e\x38\x34\x33\x37\x35\x20\x7a\x20\x4d\x20\x36\ +\x32\x38\x2e\x30\x33\x31\x32\x35\x2c\x38\x37\x2e\x30\x36\x32\x35\ +\x20\x4c\x20\x36\x32\x38\x2e\x30\x33\x31\x32\x35\x2c\x39\x34\x2e\ +\x34\x30\x36\x32\x35\x20\x4c\x20\x36\x33\x33\x2e\x35\x36\x32\x35\ +\x2c\x39\x34\x2e\x34\x30\x36\x32\x35\x20\x4c\x20\x36\x33\x33\x2e\ +\x35\x36\x32\x35\x2c\x38\x37\x2e\x30\x36\x32\x35\x20\x4c\x20\x36\ +\x32\x38\x2e\x30\x33\x31\x32\x35\x2c\x38\x37\x2e\x30\x36\x32\x35\ +\x20\x7a\x20\x4d\x20\x35\x38\x31\x2e\x39\x36\x38\x37\x35\x2c\x38\ +\x39\x2e\x39\x33\x37\x35\x20\x4c\x20\x35\x38\x31\x2e\x39\x36\x38\ +\x37\x35\x2c\x39\x36\x20\x4c\x20\x35\x38\x37\x2e\x36\x38\x37\x35\ +\x2c\x39\x36\x20\x4c\x20\x35\x38\x37\x2e\x36\x38\x37\x35\x2c\x38\ +\x39\x2e\x39\x33\x37\x35\x20\x4c\x20\x35\x38\x31\x2e\x39\x36\x38\ +\x37\x35\x2c\x38\x39\x2e\x39\x33\x37\x35\x20\x7a\x20\x4d\x20\x36\ +\x32\x38\x2e\x30\x33\x31\x32\x35\x2c\x39\x37\x2e\x32\x35\x20\x4c\ +\x20\x36\x32\x38\x2e\x30\x33\x31\x32\x35\x2c\x31\x30\x35\x2e\x34\ +\x36\x38\x37\x35\x20\x4c\x20\x36\x33\x33\x2e\x35\x36\x32\x35\x2c\ +\x31\x30\x35\x2e\x34\x36\x38\x37\x35\x20\x4c\x20\x36\x33\x33\x2e\ +\x35\x36\x32\x35\x2c\x39\x37\x2e\x32\x35\x20\x4c\x20\x36\x32\x38\ +\x2e\x30\x33\x31\x32\x35\x2c\x39\x37\x2e\x32\x35\x20\x7a\x20\x4d\ +\x20\x36\x32\x38\x2e\x30\x33\x31\x32\x35\x2c\x31\x30\x38\x2e\x31\ +\x35\x36\x32\x35\x20\x4c\x20\x36\x32\x38\x2e\x30\x33\x31\x32\x35\ +\x2c\x31\x31\x36\x2e\x37\x31\x38\x37\x35\x20\x4c\x20\x36\x33\x33\ +\x2e\x35\x36\x32\x35\x2c\x31\x31\x36\x2e\x37\x31\x38\x37\x35\x20\ +\x4c\x20\x36\x33\x33\x2e\x35\x36\x32\x35\x2c\x31\x30\x38\x2e\x31\ +\x35\x36\x32\x35\x20\x4c\x20\x36\x32\x38\x2e\x30\x33\x31\x32\x35\ +\x2c\x31\x30\x38\x2e\x31\x35\x36\x32\x35\x20\x7a\x20\x4d\x20\x36\ +\x32\x38\x2e\x30\x33\x31\x32\x35\x2c\x31\x31\x39\x2e\x32\x31\x38\ +\x37\x35\x20\x4c\x20\x36\x32\x38\x2e\x30\x33\x31\x32\x35\x2c\x31\ +\x32\x32\x2e\x35\x39\x33\x37\x35\x20\x4c\x20\x36\x32\x34\x2e\x30\ +\x39\x33\x37\x35\x2c\x31\x32\x32\x2e\x35\x39\x33\x37\x35\x20\x4c\ +\x20\x36\x32\x34\x2e\x30\x39\x33\x37\x35\x2c\x31\x32\x37\x2e\x37\ +\x38\x31\x32\x35\x20\x4c\x20\x36\x33\x33\x2e\x35\x36\x32\x35\x2c\ +\x31\x32\x37\x2e\x37\x38\x31\x32\x35\x20\x4c\x20\x36\x33\x33\x2e\ +\x35\x36\x32\x35\x2c\x31\x31\x39\x2e\x32\x31\x38\x37\x35\x20\x4c\ +\x20\x36\x32\x38\x2e\x30\x33\x31\x32\x35\x2c\x31\x31\x39\x2e\x32\ +\x31\x38\x37\x35\x20\x7a\x20\x4d\x20\x36\x31\x33\x2e\x35\x36\x32\ +\x35\x2c\x31\x32\x32\x2e\x35\x39\x33\x37\x35\x20\x4c\x20\x36\x31\ +\x33\x2e\x35\x36\x32\x35\x2c\x31\x32\x37\x2e\x37\x38\x31\x32\x35\ +\x20\x4c\x20\x36\x32\x31\x2e\x35\x39\x33\x37\x35\x2c\x31\x32\x37\ +\x2e\x37\x38\x31\x32\x35\x20\x4c\x20\x36\x32\x31\x2e\x35\x39\x33\ +\x37\x35\x2c\x31\x32\x32\x2e\x35\x39\x33\x37\x35\x20\x4c\x20\x36\ +\x31\x33\x2e\x35\x36\x32\x35\x2c\x31\x32\x32\x2e\x35\x39\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\x35\x32\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\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\x2e\x32\x39\x39\x39\x39\x39\x39\ +\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ +\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x6d\x61\x72\x6b\ +\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x73\ +\x74\x61\x72\x74\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\ +\x2d\x6d\x69\x64\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\ +\x2d\x65\x6e\x64\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ +\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\ +\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x76\x69\x73\x69\x62\x69\x6c\ +\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\ +\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\ +\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\ +\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\ +\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\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\x34\x38\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x36\x32\ +\x35\x2e\x34\x31\x30\x37\x2c\x38\x33\x2e\x31\x31\x35\x34\x35\x33\ +\x20\x4c\x20\x36\x31\x33\x2e\x34\x31\x35\x31\x34\x2c\x38\x33\x2e\ +\x31\x31\x35\x34\x35\x33\x20\x4c\x20\x36\x31\x35\x2e\x39\x34\x30\ +\x35\x32\x2c\x38\x35\x2e\x37\x36\x37\x31\x30\x33\x20\x4c\x20\x36\ +\x30\x36\x2e\x35\x39\x36\x36\x31\x2c\x39\x34\x2e\x34\x37\x39\x36\ +\x36\x39\x20\x4c\x20\x36\x31\x34\x2e\x32\x39\x39\x30\x32\x2c\x31\ +\x30\x32\x2e\x33\x30\x38\x33\x35\x20\x4c\x20\x36\x32\x33\x2e\x33\ +\x39\x30\x33\x39\x2c\x39\x33\x2e\x33\x34\x33\x32\x34\x37\x20\x4c\ +\x20\x36\x32\x35\x2e\x36\x36\x33\x32\x34\x2c\x39\x35\x2e\x37\x34\ +\x32\x33\x35\x39\x20\x4c\x20\x36\x32\x35\x2e\x34\x31\x30\x37\x2c\ +\x38\x33\x2e\x31\x31\x35\x34\x35\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\x35\x32\x38\x29\x3b\x66\x69\x6c\x6c\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\ +\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\ +\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x32\x39\x39\x39\x39\x39\ +\x39\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ +\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\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\x15\x00\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ @@ -29832,165 +64820,871 @@ qt_resource_data = "\ \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\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\x35\xea\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x70\x78\ +\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x70\ +\x78\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x36\x31\ +\x32\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\ +\x2e\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x34\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\x44\x72\x61\x66\x74\ +\x5f\x53\x65\x6c\x65\x63\x74\x47\x72\x6f\x75\x70\x2e\x73\x76\x67\ +\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x64\x65\x66\x73\x33\x36\x31\x34\x22\x3e\x0a\x20\ +\x20\x20\x20\x3c\x6d\x61\x72\x6b\x65\x72\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x74\x6f\x63\x6b\ +\x69\x64\x3d\x22\x41\x72\x72\x6f\x77\x31\x4c\x73\x74\x61\x72\x74\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x65\x6e\x74\x3d\ +\x22\x61\x75\x74\x6f\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x65\ +\x66\x59\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x72\x65\x66\x58\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x41\x72\x72\x6f\x77\x31\x4c\x73\x74\x61\ +\x72\x74\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\ +\x6c\x65\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ +\x74\x68\x33\x38\x30\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x4d\x20\x30\x2e\x30\x2c\x30\x2e\x30\x20\x4c\x20\ +\x35\x2e\x30\x2c\x2d\x35\x2e\x30\x20\x4c\x20\x2d\x31\x32\x2e\x35\ +\x2c\x30\x2e\x30\x20\x4c\x20\x35\x2e\x30\x2c\x35\x2e\x30\x20\x4c\ +\x20\x30\x2e\x30\x2c\x30\x2e\x30\x20\x7a\x20\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ +\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\ +\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x70\x74\ +\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x73\x74\x61\x72\x74\x3a\x6e\x6f\ +\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\ +\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x73\x63\x61\x6c\x65\x28\x30\x2e\ +\x38\x29\x20\x74\x72\x61\x6e\x73\x6c\x61\x74\x65\x28\x31\x32\x2e\ +\x35\x2c\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6d\ +\x61\x72\x6b\x65\x72\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x65\x72\x73\x70\x33\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\ +\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\ +\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\ +\x70\x5f\x7a\x3d\x22\x36\x34\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\ +\x3d\x22\x33\x32\x20\x3a\x20\x32\x31\x2e\x33\x33\x33\x33\x33\x33\ +\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x36\x32\x30\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\ +\x63\x74\x69\x76\x65\x33\x35\x38\x38\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ +\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\ +\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\ +\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\ +\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\ +\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\ +\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\ +\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\ +\x65\x63\x74\x69\x76\x65\x33\x36\x39\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ +\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\ +\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\ +\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\ +\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\ +\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\ +\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ +\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x33\x31\x34\x34\x2d\x36\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x31\x34\x36\x2d\x39\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\ +\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x31\x34\x38\x2d\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\ +\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\ +\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\ +\x30\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x33\x37\x30\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\ +\x37\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ +\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\ +\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\ +\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\ +\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x36\x38\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ +\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\ +\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\ +\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\ +\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\ +\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\ +\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\ +\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\ +\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\ +\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x37\x30\x38\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x31\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\ +\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x73\x74\x6f\x70\x33\x37\x31\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\ +\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\ +\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x38\x30\x35\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\ +\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\ +\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\ +\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\ +\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\ +\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x2d\x30\ +\x2d\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x33\x38\x36\x36\x2d\x35\x2d\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x36\x31\x39\ +\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x73\x74\x6f\x70\x33\x38\x36\x38\x2d\x37\x2d\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x33\x37\ +\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\ +\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x33\x37\x37\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ +\x33\x33\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ +\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x61\x61\x30\x30\x3b\x73\x74\x6f\ +\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x33\ +\x38\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x66\x61\x66\x66\x32\x62\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x33\x38\x36\x34\x2d\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x36\x2d\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x38\x2d\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\ +\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\ +\x65\x33\x39\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\ +\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\ +\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ +\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\ +\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\ +\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x35\ +\x30\x34\x38\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\x6c\x61\ +\x63\x6b\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x30\x35\x30\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\ +\x30\x35\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x30\x2e\x35\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\ +\x63\x6f\x6c\x6f\x72\x3a\x62\x6c\x61\x63\x6b\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\x6c\x61\x63\x6b\x3b\x73\x74\x6f\ +\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x35\x30\x35\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\ +\x38\x34\x31\x2d\x30\x2d\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x34\x33\x2d\x31\x2d\x33\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ +\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ +\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x34\x35\x2d\x30\x2d\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ +\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ +\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x31\x31\x34\x2e\x35\x36\x38\ +\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x30\ +\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x72\x3d\x22\x35\x2e\x32\x35\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x63\x79\x3d\x22\x31\x31\x34\x2e\x35\x36\x38\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\ +\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x61\x69\x67\x72\x64\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x36\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x46\x30\x46\x30\x46\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ +\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x73\x74\x6f\x70\x31\x35\x35\x36\x38\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x39\x61\x39\x61\x39\x61\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\ +\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\ +\x30\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x61\x64\ +\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\ +\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ +\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\ +\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\ +\x3d\x22\x36\x34\x2e\x35\x36\x37\x39\x30\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\x30\x39\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x35\x2e\x32\ +\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\ +\x34\x2e\x35\x36\x37\x39\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x63\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x61\x69\x67\x72\x64\ +\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x31\x35\x35\x37\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x46\x30\x46\x30\x46\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ +\x31\x35\x35\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ +\x72\x3a\x23\x39\x61\x39\x61\x39\x61\x3b\x73\x74\x6f\x70\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\ +\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x61\x64\x69\x61\x6c\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x31\x35\x36\x36\x32\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\ +\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x31\x35\x36\x36\x34\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x66\x38\x66\x38\x66\x38\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\ +\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x31\x35\x36\x36\x36\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\ +\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x38\ +\x36\x2e\x37\x30\x38\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x66\x79\x3d\x22\x33\x35\x2e\x37\x33\x36\x39\x31\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x33\x33\x2e\x39\x36\x36\ +\x36\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\ +\x33\x35\x2e\x37\x33\x36\x39\x31\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x63\x78\x3d\x22\x33\x33\x2e\x39\x36\x36\x36\x37\x39\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ +\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ +\x78\x28\x30\x2e\x39\x36\x30\x34\x39\x32\x39\x37\x2c\x30\x2c\x30\ +\x2c\x31\x2e\x30\x34\x31\x31\x33\x32\x2c\x2d\x35\x32\x2e\x31\x34\ +\x34\x32\x34\x39\x2c\x2d\x37\x30\x32\x2e\x33\x33\x31\x35\x38\x29\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ +\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\ +\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x34\x34\x35\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ +\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x35\x39\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ +\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x32\ +\x35\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x61\x66\ +\x61\x66\x61\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\ +\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\x36\x30\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x62\x62\x62\x62\x62\x62\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\ +\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\ +\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x32\x36\x31\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x72\x3d\x22\x33\x37\x2e\x37\x35\x31\x37\x31\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x33\x2e\x37\x35\x36\x31\x32\ +\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x38\ +\x2e\x38\x32\x34\x34\x31\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x63\x79\x3d\x22\x33\x2e\x37\x35\x36\x31\x32\x38\x35\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x38\x2e\x38\x32\x34\x34\ +\x31\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ +\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\ +\x74\x72\x69\x78\x28\x30\x2e\x39\x36\x38\x32\x37\x32\x39\x37\x2c\ +\x30\x2c\x30\x2c\x31\x2e\x30\x33\x32\x37\x36\x37\x2c\x2d\x34\x38\ +\x2e\x37\x39\x30\x36\x39\x39\x2c\x2d\x37\x30\x31\x2e\x36\x38\x35\ +\x31\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ +\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\ +\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x34\x34\x35\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x36\x39\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x32\x36\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x61\x33\x61\x33\x61\x33\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\x37\x30\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x34\x63\x34\ +\x63\x34\x63\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\ +\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\x37\x31\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\ +\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\ +\x73\x70\x65\x63\x74\x69\x76\x65\x34\x39\x34\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ +\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\ +\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\ +\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\ +\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\ +\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\ +\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\ +\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\ +\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x34\x30\x39\x35\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x30\x30\x35\x62\x66\x66\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x34\x30\x39\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ +\x72\x3a\x23\x63\x31\x65\x33\x66\x37\x3b\x73\x74\x6f\x70\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ +\x34\x30\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\ +\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\ +\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x35\ +\x30\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\ +\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\ +\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\ +\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\ +\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\ +\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ +\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\ +\x35\x30\x37\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\ +\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\ +\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\ +\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\ +\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\ +\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\ +\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\ +\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\x34\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x34\x32\x35\x33\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x78\x31\x3d\x22\x33\x39\x34\x2e\x31\x35\x37\x38\ +\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x31\x38\ +\x35\x2e\x31\x33\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x32\x3d\x22\x34\x33\x34\x2e\x37\x33\x39\x34\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x31\x34\x30\x2e\x32\x32\x37\ +\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ +\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\ +\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\ +\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x34\x32\ +\x33\x31\x38\x32\x36\x2c\x30\x2c\x30\x2c\x30\x2e\x39\x34\x32\x33\ +\x31\x38\x32\x36\x2c\x32\x33\x2e\x37\x32\x37\x35\x34\x39\x2c\x38\ +\x2e\x38\x32\x36\x32\x35\x33\x36\x29\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\x34\x37\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x32\x65\x38\x32\x30\x37\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x34\x32\x34\x39\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x35\x32\x66\x66\x30\x30\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x73\x74\x6f\x70\x34\x32\x35\x31\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x79\ +\x32\x3d\x22\x31\x34\x30\x2e\x32\x32\x37\x33\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x34\x33\x34\x2e\x37\x33\x39\ +\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x31\ +\x38\x35\x2e\x31\x33\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x78\x31\x3d\x22\x33\x39\x34\x2e\x31\x35\x37\x38\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x30\x2e\x39\x34\x32\x33\x31\x38\x32\x36\x2c\x30\x2c\x30\x2c\x30\ +\x2e\x39\x34\x32\x33\x31\x38\x32\x36\x2c\x32\x33\x2e\x37\x32\x37\ +\x35\x34\x39\x2c\x38\x2e\x38\x32\x36\x32\x35\x33\x36\x29\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\ +\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\ +\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x35\ +\x30\x38\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\ +\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x34\x32\x34\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\ +\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\ +\x65\x35\x31\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\ +\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\ +\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ +\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\ +\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\ +\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\ +\x3e\x0a\x20\x20\x3c\x2f\x64\x65\x66\x73\x3e\x0a\x20\x20\x3c\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\ +\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\ +\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\ +\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\ +\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\ +\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\ +\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\ +\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\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\x30\x2e\x31\ +\x32\x37\x36\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x36\x2e\x32\x30\x34\x36\ +\x34\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\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\ +\x37\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\ +\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\ +\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\ +\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ +\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\ +\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\ +\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\ +\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\ +\x3a\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\ +\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\ +\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\ +\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\ +\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\ +\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\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\x32\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\x39\ +\x2e\x38\x33\x30\x39\x37\x2c\x38\x2e\x35\x38\x37\x30\x35\x20\x30\ +\x2c\x39\x2e\x36\x32\x35\x20\x33\x32\x2e\x31\x32\x35\x2c\x30\x20\ +\x30\x2c\x2d\x39\x2e\x36\x32\x35\x20\x2d\x33\x32\x2e\x31\x32\x35\ +\x2c\x30\x20\x7a\x20\x6d\x20\x31\x34\x2c\x32\x31\x2e\x38\x31\x38\ +\x31\x38\x32\x20\x30\x2c\x39\x2e\x36\x32\x35\x20\x33\x32\x2e\x31\ +\x32\x35\x2c\x30\x20\x30\x2c\x2d\x39\x2e\x36\x32\x35\x20\x2d\x33\ +\x32\x2e\x31\x32\x35\x2c\x30\x20\x7a\x20\x6d\x20\x30\x2c\x31\x34\ +\x2e\x35\x34\x35\x34\x35\x34\x20\x30\x2c\x39\x2e\x36\x32\x35\x20\ +\x33\x32\x2e\x31\x32\x35\x2c\x30\x20\x30\x2c\x2d\x39\x2e\x36\x32\ +\x35\x20\x2d\x33\x32\x2e\x31\x32\x35\x2c\x30\x20\x7a\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x34\x32\ +\x35\x38\x2d\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\ +\x22\x63\x63\x63\x63\x63\x63\x63\x63\x63\x63\x63\x63\x63\x63\x63\ +\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\x36\x32\x61\x34\x66\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ +\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ +\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\ +\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ +\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\ +\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\ +\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\ +\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\ +\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\ +\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ +\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x34\x32\x35\x38\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\ +\x33\x32\x2e\x31\x34\x32\x38\x35\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x39\x2e\x36\x34\x32\x38\ +\x35\x37\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x32\ +\x31\x2e\x30\x34\x34\x30\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x79\x3d\x22\x34\x31\x2e\x38\x37\x38\x38\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x72\x79\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\x36\x32\x61\x34\x66\x66\x3b\ +\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\ +\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\ +\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ +\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ +\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ +\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\ +\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\ +\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\ +\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\ +\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\ +\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\ +\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\ +\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x72\x65\x63\x74\x34\x32\x35\x38\x2d\x31\x2d\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x32\x2e\x31\ +\x34\x32\x38\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\ +\x69\x67\x68\x74\x3d\x22\x39\x2e\x36\x34\x32\x38\x35\x37\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x32\x30\x2e\x38\x36\ +\x32\x32\x32\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\ +\x32\x36\x2e\x37\x38\x37\x39\x35\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x72\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x72\x79\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\x66\x66\x66\x66\x66\x66\x3b\x66\x69\x6c\ +\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\ +\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\ +\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ +\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ +\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\ +\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\ +\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\ +\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\ +\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\ +\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\ +\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\ +\x74\x34\x32\x35\x38\x2d\x31\x2d\x37\x2d\x34\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x32\x2e\x31\x34\ +\x32\x38\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\ +\x67\x68\x74\x3d\x22\x39\x2e\x36\x34\x32\x38\x35\x37\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x36\x2e\x38\x36\x32\x32\ +\x32\x34\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x34\ +\x2e\x37\x38\x37\x39\x35\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x72\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ +\x79\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\ +\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ +\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\ +\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ +\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ +\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x31\x2e\x32\x31\ +\x39\x33\x36\x2c\x31\x34\x2e\x36\x34\x35\x30\x38\x20\x30\x2c\x33\ +\x31\x2e\x38\x37\x30\x31\x33\x33\x20\x39\x2e\x32\x38\x35\x37\x31\ +\x2c\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x61\x74\x68\x35\x30\x39\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\ +\x65\x73\x3d\x22\x63\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ +\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ +\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ +\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x31\ +\x2e\x30\x34\x30\x37\x39\x2c\x33\x31\x2e\x39\x33\x30\x38\x20\x2d\ +\x39\x2e\x36\x34\x32\x38\x36\x2c\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x35\x31\x30\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\x6e\x6f\ +\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x33\x36\x64\ +\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x34\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\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\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\x38\x2c\x34\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\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\ +\x69\x74\x65\x72\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x72\x65\x63\x74\x33\x30\x33\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x34\x35\x2e\x33\x33\x30\x30\ +\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\ +\x74\x3d\x22\x33\x38\x2e\x37\x38\x34\x36\x31\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x35\x2e\x36\x30\x37\x36\x39\ +\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x30\x2e\ +\x33\x33\x34\x39\x36\x35\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\ +\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ \x00\x00\x16\xaf\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ @@ -30660,329 +66354,1237 @@ qt_resource_data = "\ \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\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\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\x29\x34\ +\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\x32\x33\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\x6c\x6f\x63\ +\x6b\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\x32\x33\ +\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\ +\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\x33\x32\x37\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\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\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x32\ +\x37\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\x66\ +\x66\x66\x66\x66\x66\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\x33\x32\x37\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\ +\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\ +\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x33\x32\x37\x33\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\x32\x34\x31\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ +\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\ +\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\ +\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\ +\x30\x2c\x30\x2c\x31\x2e\x30\x38\x30\x37\x34\x39\x39\x2c\x30\x2c\ +\x2d\x34\x34\x2e\x36\x34\x36\x34\x30\x37\x29\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x37\x38\x37\x2e\x35\x39\x39\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x35\x35\ +\x32\x2e\x38\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x66\x78\x3d\x22\x32\x37\x38\x37\x2e\x35\x39\x39\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x35\x35\x32\x2e\x38\x39\ +\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\ +\x38\x2e\x38\x32\x39\x33\x36\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\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\x32\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\x32\x34\x30\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\ +\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\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\x2d\x31\x2c\x35\x36\x35\x36\x2e\x38\ +\x33\x33\x38\x2c\x31\x34\x30\x38\x2e\x32\x32\x31\x36\x29\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x32\x37\x35\x34\x2e\ +\x36\x38\x35\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\ +\x22\x36\x37\x31\x2e\x31\x31\x30\x38\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x32\x3d\x22\x32\x39\x30\x30\x2e\x31\x34\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x36\x37\x31\x2e\ +\x31\x31\x30\x38\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\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\x32\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\ +\x32\x34\x30\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\x2d\x31\x2c\ +\x30\x2c\x30\x2c\x2d\x31\x2c\x35\x36\x35\x36\x2e\x38\x33\x33\x38\ +\x2c\x31\x33\x37\x36\x2e\x32\x32\x31\x36\x29\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x78\x31\x3d\x22\x32\x37\x35\x34\x2e\x36\x38\x35\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x36\x37\ +\x31\x2e\x31\x31\x30\x38\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x78\x32\x3d\x22\x32\x39\x30\x30\x2e\x31\x34\x38\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x36\x37\x31\x2e\x31\x31\x30\ +\x38\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\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\x33\x32\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\x38\x30\x38\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\x33\x32\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\x38\x30\x38\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\x33\ +\x32\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\x32\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\x32\x34\x30\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\x2d\x31\x2c\x35\x36\x35\x36\x2e\ +\x38\x33\x33\x38\x2c\x31\x33\x34\x34\x2e\x32\x32\x31\x36\x29\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x32\x37\x35\x34\ +\x2e\x36\x38\x35\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\ +\x3d\x22\x36\x37\x31\x2e\x31\x31\x30\x38\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x78\x32\x3d\x22\x32\x39\x30\x30\x2e\x31\x34\x38\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x36\x37\x31\ +\x2e\x31\x31\x30\x38\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\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\x33\x32\x35\x35\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\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\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x73\x74\x6f\x70\x33\x32\x35\x37\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ +\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\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\x33\x32\x35\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x3e\x0a\x20\x20\x20\x20\x3c\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\x32\x35\x35\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x34\x30\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\ +\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\ +\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\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\x37\x38\x30\x32\x32\x33\x34\x2c\x30\ +\x2c\x30\x2c\x31\x2c\x35\x39\x39\x2e\x38\x35\x31\x35\x36\x2c\x30\ +\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x32\x37\ +\x33\x32\x2e\x33\x35\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x79\x31\x3d\x22\x37\x31\x31\x2e\x31\x31\x32\x31\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x32\x38\x33\x39\x2e\x30\ +\x37\x31\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\ +\x37\x31\x31\x2e\x31\x31\x32\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\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\x32\x33\x38\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\ +\x64\x65\x66\x73\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\ +\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\ +\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\ +\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\ +\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\ +\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\ +\x32\x36\x2e\x32\x32\x39\x30\x32\x34\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x32\x36\x2e\ +\x34\x31\x39\x32\x31\x38\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\x32\x33\x38\x33\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\x30\ +\x31\x32\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\x31\x30\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\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\ +\x32\x33\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\x32\x33\x38\x33\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\x39\x33\x37\x38\x37\x35\x2c\x30\x2c\x30\x2c\x30\ +\x2e\x31\x39\x33\x37\x38\x37\x35\x2c\x2d\x35\x31\x35\x2e\x30\x31\ +\x36\x35\x31\x2c\x2d\x39\x33\x2e\x37\x37\x37\x36\x31\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\x63\x6c\x6f\x73\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\ +\x34\x2e\x34\x39\x36\x31\x34\x36\x32\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\x34\x39\x36\x31\x34\x36\ +\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\ +\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x2e\x35\x30\ +\x31\x39\x36\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ +\x78\x64\x70\x69\x3d\x22\x36\x2e\x35\x30\x31\x39\x36\x37\x39\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x66\x69\x6c\x65\x6e\x61\ +\x6d\x65\x3d\x22\x2f\x68\x6f\x6d\x65\x2f\x79\x6f\x72\x69\x6b\x2f\ +\x44\x6f\x63\x75\x6d\x65\x6e\x74\x73\x2f\x4c\x61\x62\x2f\x44\x72\ +\x61\x66\x74\x2f\x69\x63\x6f\x6e\x73\x2f\x63\x6c\x6f\x73\x65\x2e\ +\x70\x6e\x67\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x74\x72\x61\x6e\x73\x6c\x61\ +\x74\x65\x28\x2d\x36\x2c\x2d\x38\x29\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x32\x33\x38\x35\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\x73\x74\x79\x6c\x65\x3d\x22\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x3a\x23\ +\x66\x66\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\x37\x2e\x37\x34\x30\x34\x33\x37\x33\x33\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ +\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ +\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x6d\x61\x72\x6b\x65\x72\x3a\ +\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x73\x74\x61\x72\ +\x74\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x6d\x69\ +\x64\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x65\x6e\ +\x64\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ +\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\ +\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\ +\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\ +\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\ +\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\ +\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\ +\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x64\x3d\x22\x4d\x20\x32\x38\x33\x30\x2e\x38\x38\x38\x38\ +\x2c\x35\x31\x36\x2e\x34\x38\x35\x32\x20\x43\x20\x32\x37\x38\x38\ +\x2e\x31\x36\x33\x38\x2c\x35\x31\x36\x2e\x34\x38\x35\x31\x39\x20\ +\x32\x37\x35\x33\x2e\x33\x38\x39\x34\x2c\x35\x35\x31\x2e\x32\x34\ +\x30\x39\x38\x20\x32\x37\x35\x32\x2e\x35\x35\x37\x33\x2c\x35\x39\ +\x34\x2e\x33\x39\x33\x38\x32\x20\x4c\x20\x32\x37\x35\x32\x2e\x35\ +\x33\x32\x35\x2c\x35\x39\x34\x2e\x33\x39\x33\x38\x32\x20\x4c\x20\ +\x32\x37\x35\x32\x2e\x35\x33\x32\x35\x2c\x35\x39\x35\x2e\x39\x38\ +\x35\x33\x31\x20\x4c\x20\x32\x37\x35\x32\x2e\x35\x33\x32\x35\x2c\ +\x36\x36\x33\x2e\x31\x35\x31\x33\x35\x20\x4c\x20\x32\x37\x38\x32\ +\x2e\x30\x37\x34\x36\x2c\x36\x36\x33\x2e\x31\x35\x31\x33\x35\x20\ +\x4c\x20\x32\x37\x38\x32\x2e\x30\x37\x34\x36\x2c\x35\x39\x34\x2e\ +\x33\x39\x33\x38\x32\x20\x4c\x20\x32\x37\x38\x32\x2e\x30\x32\x34\ +\x39\x2c\x35\x39\x34\x2e\x33\x39\x33\x38\x32\x20\x43\x20\x32\x37\ +\x38\x33\x2e\x32\x39\x35\x34\x2c\x35\x36\x37\x2e\x35\x36\x31\x34\ +\x36\x20\x32\x38\x30\x35\x2e\x31\x35\x31\x38\x2c\x35\x34\x36\x2e\ +\x31\x37\x36\x35\x32\x20\x32\x38\x33\x31\x2e\x39\x30\x38\x33\x2c\ +\x35\x34\x36\x2e\x31\x37\x36\x35\x32\x20\x43\x20\x32\x38\x35\x39\ +\x2e\x30\x31\x33\x36\x2c\x35\x34\x36\x2e\x31\x37\x36\x35\x31\x20\ +\x32\x38\x38\x31\x2e\x30\x35\x38\x33\x2c\x35\x36\x38\x2e\x30\x38\ +\x36\x38\x39\x20\x32\x38\x38\x31\x2e\x37\x39\x31\x37\x2c\x35\x39\ +\x35\x2e\x34\x36\x33\x31\x20\x4c\x20\x32\x38\x38\x32\x2e\x30\x31\ +\x35\x35\x2c\x35\x39\x35\x2e\x34\x36\x33\x31\x20\x4c\x20\x32\x38\ +\x38\x32\x2e\x30\x31\x35\x35\x2c\x36\x36\x32\x2e\x38\x32\x38\x30\ +\x37\x20\x4c\x20\x32\x39\x30\x39\x2e\x33\x31\x39\x35\x2c\x36\x36\ +\x32\x2e\x38\x32\x38\x30\x37\x20\x4c\x20\x32\x39\x30\x39\x2e\x33\ +\x31\x39\x35\x2c\x35\x39\x33\x2e\x38\x37\x31\x36\x31\x20\x4c\x20\ +\x32\x39\x30\x39\x2e\x31\x39\x35\x32\x2c\x35\x39\x33\x2e\x38\x37\ +\x31\x36\x31\x20\x43\x20\x32\x39\x30\x38\x2e\x30\x37\x37\x33\x2c\ +\x35\x35\x30\x2e\x39\x30\x33\x38\x38\x20\x32\x38\x37\x33\x2e\x34\ +\x32\x33\x34\x2c\x35\x31\x36\x2e\x34\x38\x35\x32\x31\x20\x32\x38\ +\x33\x30\x2e\x38\x38\x38\x38\x2c\x35\x31\x36\x2e\x34\x38\x35\x32\ +\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x70\x61\x74\x68\x32\x33\x38\x37\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\ +\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\ +\x66\x66\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\x37\x2e\x37\x34\x30\x34\x33\x37\x33\x33\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ +\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ +\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x6d\x61\x72\x6b\x65\x72\x3a\ +\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x73\x74\x61\x72\ +\x74\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x6d\x69\ +\x64\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x65\x6e\ +\x64\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ +\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\ +\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\ +\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\ +\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\ +\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\ +\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\ +\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x33\x38\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\ +\x3d\x22\x31\x39\x30\x2e\x31\x35\x34\x39\x34\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x31\x34\x35\x2e\x36\x37\x34\x33\x35\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x32\x37\x33\x36\x2e\x35\x30\ +\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\ +\x3d\x22\x36\x34\x36\x2e\x33\x33\x32\x32\x31\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\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\x73\x73\x63\x63\x63\x63\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x33\ +\x39\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ +\x4d\x20\x32\x38\x31\x34\x2e\x35\x37\x31\x33\x2c\x36\x34\x30\x2e\ +\x35\x37\x36\x34\x38\x20\x43\x20\x32\x38\x31\x34\x2e\x35\x37\x31\ +\x33\x2c\x36\x34\x30\x2e\x35\x37\x36\x34\x38\x20\x32\x37\x39\x39\ +\x2e\x30\x34\x37\x34\x2c\x36\x35\x38\x2e\x35\x38\x39\x36\x34\x20\ +\x32\x37\x39\x37\x2e\x30\x31\x36\x34\x2c\x36\x37\x38\x2e\x30\x37\ +\x36\x34\x38\x20\x43\x20\x32\x37\x39\x34\x2e\x34\x38\x30\x34\x2c\ +\x37\x30\x32\x2e\x34\x30\x37\x32\x36\x20\x32\x38\x30\x35\x2e\x30\ +\x39\x37\x32\x2c\x37\x30\x39\x2e\x31\x34\x37\x39\x31\x20\x32\x38\ +\x30\x37\x2e\x33\x32\x36\x34\x2c\x37\x33\x35\x2e\x35\x37\x36\x34\ +\x38\x20\x43\x20\x32\x38\x30\x39\x2e\x35\x35\x35\x36\x2c\x37\x36\ +\x32\x2e\x30\x30\x35\x30\x35\x20\x32\x38\x30\x30\x2e\x30\x38\x31\ +\x35\x2c\x37\x38\x31\x2e\x36\x34\x37\x39\x31\x20\x32\x38\x30\x30\ +\x2e\x30\x38\x31\x35\x2c\x37\x38\x31\x2e\x36\x34\x37\x39\x31\x20\ +\x4c\x20\x32\x37\x33\x32\x2e\x33\x36\x39\x33\x2c\x37\x38\x31\x2e\ +\x36\x34\x37\x39\x31\x20\x4c\x20\x32\x37\x33\x32\x2e\x30\x39\x30\ +\x36\x2c\x36\x34\x30\x2e\x39\x33\x33\x36\x33\x20\x4c\x20\x32\x38\ +\x31\x34\x2e\x35\x37\x31\x33\x2c\x36\x34\x30\x2e\x35\x37\x36\x34\ +\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\x32\x34\x30\ +\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\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\x70\x78\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\ +\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x74\x72\x61\ +\x6e\x73\x6c\x61\x74\x65\x28\x30\x2c\x38\x29\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x32\x33\x39\x33\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\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\x32\x34\x30\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\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ +\x64\x74\x68\x3a\x35\x2e\x37\x39\x39\x39\x39\x39\x37\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\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x64\x3d\x22\x4d\x20\x32\x37\x36\x37\x2e\x31\x38\x37\x35\ +\x2c\x36\x36\x31\x2e\x35\x20\x43\x20\x32\x37\x36\x32\x2e\x35\x36\ +\x39\x39\x2c\x36\x36\x31\x2e\x35\x20\x32\x37\x35\x38\x2e\x36\x35\ +\x39\x2c\x36\x36\x34\x2e\x35\x31\x31\x33\x39\x20\x32\x37\x35\x37\ +\x2e\x32\x35\x2c\x36\x36\x38\x2e\x37\x31\x38\x37\x35\x20\x43\x20\ +\x32\x37\x35\x37\x2e\x39\x37\x32\x35\x2c\x36\x36\x38\x2e\x35\x35\ +\x39\x35\x32\x20\x32\x37\x35\x38\x2e\x36\x39\x38\x31\x2c\x36\x36\ +\x38\x2e\x34\x36\x38\x37\x35\x20\x32\x37\x35\x39\x2e\x34\x36\x38\ +\x38\x2c\x36\x36\x38\x2e\x34\x36\x38\x37\x35\x20\x4c\x20\x32\x38\ +\x38\x33\x2e\x39\x36\x38\x38\x2c\x36\x36\x38\x2e\x34\x36\x38\x37\ +\x35\x20\x43\x20\x32\x38\x38\x39\x2e\x37\x38\x30\x39\x2c\x36\x36\ +\x38\x2e\x34\x36\x38\x37\x34\x20\x32\x38\x39\x34\x2e\x34\x33\x37\ +\x35\x2c\x36\x37\x33\x2e\x32\x33\x33\x32\x36\x20\x32\x38\x39\x34\ +\x2e\x34\x33\x37\x35\x2c\x36\x37\x39\x2e\x31\x35\x36\x32\x35\x20\ +\x4c\x20\x32\x38\x39\x34\x2e\x34\x33\x37\x35\x2c\x36\x38\x31\x20\ +\x43\x20\x32\x38\x39\x34\x2e\x34\x33\x37\x35\x2c\x36\x38\x32\x2e\ +\x32\x31\x34\x33\x35\x20\x32\x38\x39\x34\x2e\x32\x33\x37\x38\x2c\ +\x36\x38\x33\x2e\x33\x38\x32\x36\x32\x20\x32\x38\x39\x33\x2e\x38\ +\x37\x35\x2c\x36\x38\x34\x2e\x34\x36\x38\x37\x35\x20\x43\x20\x32\ +\x38\x39\x38\x2e\x36\x31\x35\x31\x2c\x36\x38\x33\x2e\x34\x33\x37\ +\x31\x36\x20\x32\x39\x30\x32\x2e\x31\x35\x36\x32\x2c\x36\x37\x39\ +\x2e\x31\x37\x38\x35\x20\x32\x39\x30\x32\x2e\x31\x35\x36\x32\x2c\ +\x36\x37\x34\x2e\x30\x33\x31\x32\x35\x20\x4c\x20\x32\x39\x30\x32\ +\x2e\x31\x35\x36\x32\x2c\x36\x37\x32\x2e\x31\x38\x37\x35\x20\x43\ +\x20\x32\x39\x30\x32\x2e\x31\x35\x36\x33\x2c\x36\x36\x36\x2e\x32\ +\x36\x34\x35\x31\x20\x32\x38\x39\x37\x2e\x34\x36\x38\x34\x2c\x36\ +\x36\x31\x2e\x34\x39\x39\x39\x39\x20\x32\x38\x39\x31\x2e\x36\x35\ +\x36\x32\x2c\x36\x36\x31\x2e\x35\x20\x4c\x20\x32\x37\x36\x37\x2e\ +\x31\x38\x37\x35\x2c\x36\x36\x31\x2e\x35\x20\x7a\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ +\x68\x32\x33\x39\x35\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\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\x32\x34\x30\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\x6e\x6f\x6e\x65\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x37\x39\ +\x39\x39\x39\x39\x37\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\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\ +\x37\x36\x37\x2e\x31\x38\x37\x35\x2c\x36\x39\x33\x2e\x35\x20\x43\ +\x20\x32\x37\x36\x32\x2e\x35\x36\x39\x39\x2c\x36\x39\x33\x2e\x35\ +\x20\x32\x37\x35\x38\x2e\x36\x35\x39\x2c\x36\x39\x36\x2e\x35\x31\ +\x31\x33\x39\x20\x32\x37\x35\x37\x2e\x32\x35\x2c\x37\x30\x30\x2e\ +\x37\x31\x38\x37\x35\x20\x43\x20\x32\x37\x35\x37\x2e\x39\x37\x32\ +\x35\x2c\x37\x30\x30\x2e\x35\x35\x39\x35\x32\x20\x32\x37\x35\x38\ +\x2e\x36\x39\x38\x31\x2c\x37\x30\x30\x2e\x34\x36\x38\x37\x35\x20\ +\x32\x37\x35\x39\x2e\x34\x36\x38\x38\x2c\x37\x30\x30\x2e\x34\x36\ +\x38\x37\x35\x20\x4c\x20\x32\x38\x38\x33\x2e\x39\x36\x38\x38\x2c\ +\x37\x30\x30\x2e\x34\x36\x38\x37\x35\x20\x43\x20\x32\x38\x38\x39\ +\x2e\x37\x38\x30\x39\x2c\x37\x30\x30\x2e\x34\x36\x38\x37\x34\x20\ +\x32\x38\x39\x34\x2e\x34\x33\x37\x35\x2c\x37\x30\x35\x2e\x32\x33\ +\x33\x32\x36\x20\x32\x38\x39\x34\x2e\x34\x33\x37\x35\x2c\x37\x31\ +\x31\x2e\x31\x35\x36\x32\x35\x20\x4c\x20\x32\x38\x39\x34\x2e\x34\ +\x33\x37\x35\x2c\x37\x31\x33\x20\x43\x20\x32\x38\x39\x34\x2e\x34\ +\x33\x37\x35\x2c\x37\x31\x34\x2e\x32\x31\x34\x33\x35\x20\x32\x38\ +\x39\x34\x2e\x32\x33\x37\x38\x2c\x37\x31\x35\x2e\x33\x38\x32\x36\ +\x32\x20\x32\x38\x39\x33\x2e\x38\x37\x35\x2c\x37\x31\x36\x2e\x34\ +\x36\x38\x37\x35\x20\x43\x20\x32\x38\x39\x38\x2e\x36\x31\x35\x31\ +\x2c\x37\x31\x35\x2e\x34\x33\x37\x31\x36\x20\x32\x39\x30\x32\x2e\ +\x31\x35\x36\x32\x2c\x37\x31\x31\x2e\x31\x37\x38\x35\x20\x32\x39\ +\x30\x32\x2e\x31\x35\x36\x32\x2c\x37\x30\x36\x2e\x30\x33\x31\x32\ +\x35\x20\x4c\x20\x32\x39\x30\x32\x2e\x31\x35\x36\x32\x2c\x37\x30\ +\x34\x2e\x31\x38\x37\x35\x20\x43\x20\x32\x39\x30\x32\x2e\x31\x35\ +\x36\x33\x2c\x36\x39\x38\x2e\x32\x36\x34\x35\x31\x20\x32\x38\x39\ +\x37\x2e\x34\x36\x38\x34\x2c\x36\x39\x33\x2e\x34\x39\x39\x39\x39\ +\x20\x32\x38\x39\x31\x2e\x36\x35\x36\x32\x2c\x36\x39\x33\x2e\x35\ +\x20\x4c\x20\x32\x37\x36\x37\x2e\x31\x38\x37\x35\x2c\x36\x39\x33\ +\x2e\x35\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x33\x39\x37\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\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\x32\x34\x30\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\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\x35\x2e\x37\x39\x39\x39\x39\x39\x37\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\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x64\x3d\x22\x4d\x20\x32\x37\x36\x37\x2e\x31\x38\x37\x35\ +\x2c\x37\x32\x35\x2e\x35\x20\x43\x20\x32\x37\x36\x32\x2e\x35\x36\ +\x39\x39\x2c\x37\x32\x35\x2e\x35\x20\x32\x37\x35\x38\x2e\x36\x35\ +\x39\x2c\x37\x32\x38\x2e\x35\x31\x31\x33\x39\x20\x32\x37\x35\x37\ +\x2e\x32\x35\x2c\x37\x33\x32\x2e\x37\x31\x38\x37\x35\x20\x43\x20\ +\x32\x37\x35\x37\x2e\x39\x37\x32\x35\x2c\x37\x33\x32\x2e\x35\x35\ +\x39\x35\x32\x20\x32\x37\x35\x38\x2e\x36\x39\x38\x31\x2c\x37\x33\ +\x32\x2e\x34\x36\x38\x37\x35\x20\x32\x37\x35\x39\x2e\x34\x36\x38\ +\x38\x2c\x37\x33\x32\x2e\x34\x36\x38\x37\x35\x20\x4c\x20\x32\x38\ +\x38\x33\x2e\x39\x36\x38\x38\x2c\x37\x33\x32\x2e\x34\x36\x38\x37\ +\x35\x20\x43\x20\x32\x38\x38\x39\x2e\x37\x38\x30\x39\x2c\x37\x33\ +\x32\x2e\x34\x36\x38\x37\x34\x20\x32\x38\x39\x34\x2e\x34\x33\x37\ +\x35\x2c\x37\x33\x37\x2e\x32\x33\x33\x32\x36\x20\x32\x38\x39\x34\ +\x2e\x34\x33\x37\x35\x2c\x37\x34\x33\x2e\x31\x35\x36\x32\x35\x20\ +\x4c\x20\x32\x38\x39\x34\x2e\x34\x33\x37\x35\x2c\x37\x34\x35\x20\ +\x43\x20\x32\x38\x39\x34\x2e\x34\x33\x37\x35\x2c\x37\x34\x36\x2e\ +\x32\x31\x34\x33\x35\x20\x32\x38\x39\x34\x2e\x32\x33\x37\x38\x2c\ +\x37\x34\x37\x2e\x33\x38\x32\x36\x32\x20\x32\x38\x39\x33\x2e\x38\ +\x37\x35\x2c\x37\x34\x38\x2e\x34\x36\x38\x37\x35\x20\x43\x20\x32\ +\x38\x39\x38\x2e\x36\x31\x35\x31\x2c\x37\x34\x37\x2e\x34\x33\x37\ +\x31\x36\x20\x32\x39\x30\x32\x2e\x31\x35\x36\x32\x2c\x37\x34\x33\ +\x2e\x31\x37\x38\x35\x20\x32\x39\x30\x32\x2e\x31\x35\x36\x32\x2c\ +\x37\x33\x38\x2e\x30\x33\x31\x32\x35\x20\x4c\x20\x32\x39\x30\x32\ +\x2e\x31\x35\x36\x32\x2c\x37\x33\x36\x2e\x31\x38\x37\x35\x20\x43\ +\x20\x32\x39\x30\x32\x2e\x31\x35\x36\x33\x2c\x37\x33\x30\x2e\x32\ +\x36\x34\x35\x31\x20\x32\x38\x39\x37\x2e\x34\x36\x38\x34\x2c\x37\ +\x32\x35\x2e\x34\x39\x39\x39\x39\x20\x32\x38\x39\x31\x2e\x36\x35\ +\x36\x32\x2c\x37\x32\x35\x2e\x35\x20\x4c\x20\x32\x37\x36\x37\x2e\ +\x31\x38\x37\x35\x2c\x37\x32\x35\x2e\x35\x20\x7a\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ +\x68\x32\x33\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x67\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\x73\ +\x73\x63\x63\x7a\x7a\x7a\x63\x63\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x34\x30\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\ +\x38\x32\x36\x2e\x34\x32\x38\x35\x2c\x35\x31\x30\x2e\x39\x33\x33\ +\x36\x33\x20\x43\x20\x32\x38\x32\x36\x2e\x34\x32\x38\x35\x2c\x35\ +\x31\x30\x2e\x39\x33\x33\x36\x33\x20\x32\x38\x30\x31\x2e\x37\x38\ +\x35\x36\x2c\x35\x31\x30\x2e\x35\x37\x36\x34\x38\x20\x32\x37\x38\ +\x34\x2e\x36\x34\x32\x38\x2c\x35\x32\x32\x2e\x37\x31\x39\x33\x34\ +\x20\x43\x20\x32\x37\x36\x37\x2e\x34\x39\x39\x39\x2c\x35\x33\x34\ +\x2e\x38\x36\x32\x32\x20\x32\x37\x35\x38\x2e\x39\x32\x38\x35\x2c\ +\x35\x34\x35\x2e\x39\x33\x33\x36\x33\x20\x32\x37\x35\x33\x2e\x32\ +\x31\x34\x32\x2c\x35\x36\x33\x2e\x30\x37\x36\x34\x38\x20\x43\x20\ +\x32\x37\x34\x37\x2e\x34\x39\x39\x39\x2c\x35\x38\x30\x2e\x32\x31\ +\x39\x33\x34\x20\x32\x37\x34\x38\x2e\x39\x32\x38\x35\x2c\x35\x39\ +\x30\x2e\x39\x33\x33\x36\x32\x20\x32\x37\x34\x38\x2e\x39\x32\x38\ +\x35\x2c\x35\x39\x30\x2e\x39\x33\x33\x36\x32\x20\x4c\x20\x32\x37\ +\x36\x31\x2e\x34\x32\x38\x35\x2c\x35\x39\x34\x2e\x38\x36\x32\x32\ +\x20\x43\x20\x32\x37\x36\x31\x2e\x34\x32\x38\x35\x2c\x35\x39\x34\ +\x2e\x38\x36\x32\x32\x20\x32\x37\x37\x31\x2e\x38\x37\x34\x39\x2c\ +\x35\x39\x35\x2e\x38\x34\x34\x33\x34\x20\x32\x37\x37\x33\x2e\x35\ +\x37\x31\x33\x2c\x35\x38\x34\x2e\x31\x34\x37\x39\x31\x20\x43\x20\ +\x32\x37\x37\x35\x2e\x32\x36\x31\x32\x2c\x35\x37\x32\x2e\x34\x39\ +\x36\x39\x36\x20\x32\x37\x37\x36\x2e\x36\x30\x37\x31\x2c\x35\x36\ +\x35\x2e\x32\x31\x39\x33\x33\x20\x32\x37\x38\x36\x2e\x37\x38\x35\ +\x37\x2c\x35\x35\x33\x2e\x37\x39\x30\x37\x36\x20\x43\x20\x32\x37\ +\x39\x36\x2e\x39\x36\x34\x32\x2c\x35\x34\x32\x2e\x33\x36\x32\x31\ +\x39\x20\x32\x38\x31\x30\x2e\x34\x34\x36\x33\x2c\x35\x33\x37\x2e\ +\x32\x37\x32\x39\x31\x20\x32\x38\x31\x39\x2e\x39\x39\x39\x39\x2c\ +\x35\x33\x35\x2e\x39\x33\x33\x36\x33\x20\x43\x20\x32\x38\x32\x39\ +\x2e\x35\x31\x30\x38\x2c\x35\x33\x34\x2e\x36\x30\x30\x33\x32\x20\ +\x32\x38\x32\x38\x2e\x32\x31\x34\x32\x2c\x35\x32\x35\x2e\x39\x33\ +\x33\x36\x33\x20\x32\x38\x32\x38\x2e\x32\x31\x34\x32\x2c\x35\x32\ +\x35\x2e\x39\x33\x33\x36\x33\x20\x4c\x20\x32\x38\x32\x36\x2e\x34\ +\x32\x38\x35\x2c\x35\x31\x30\x2e\x39\x33\x33\x36\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\x72\x61\x64\x69\x61\ +\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x34\x31\x31\x29\x3b\x66\ +\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\ +\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\ +\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x70\x78\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ +\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\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\x23\x6d\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\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\x31\x38\ +\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\x63\x69\x72\ +\x63\x6c\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\x32\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\ +\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\ +\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\ +\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\ +\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x39\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ +\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\ +\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x30\ +\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\x30\x2c\x32\x30\x32\x2e\x38\ +\x32\x38\x36\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\ +\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x32\ +\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x34\x2e\x33\x34\x35\x31\ +\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\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\x33\x31\x34\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\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\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x33\x31\x34\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\x66\x66\x66\x66\x66\x66\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\x33\ +\x31\x34\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\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\ +\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\ +\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x33\x31\x38\x33\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ +\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\ +\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ +\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\ +\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\ +\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\ +\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\ +\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\ +\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\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\x32\x36\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\x31\x30\x2e\x39\x38\x34\x30\x32\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x79\x3d\x22\x2d\x33\x31\x2e\x35\x36\x32\x31\x39\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\x32\x39\x32\x33\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\x34\x37\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\x63\x69\x72\x63\x6c\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\ +\x37\x38\x35\x30\x37\x30\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\x37\x38\x35\x30\x37\x30\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\x34\x36\x30\ +\x33\x34\x36\x2c\x30\x2c\x30\x2c\x30\x2e\x31\x34\x36\x30\x33\x34\ +\x36\x2c\x2d\x32\x32\x30\x2e\x31\x30\x32\x39\x38\x2c\x2d\x35\x36\ +\x2e\x32\x39\x36\x32\x33\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\x34\x34\x33\x39\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x31\x37\x32\x31\ +\x2e\x38\x31\x32\x35\x2c\x34\x34\x32\x2e\x39\x39\x35\x35\x34\x20\ +\x43\x20\x31\x36\x32\x32\x2e\x30\x32\x37\x32\x2c\x34\x34\x32\x2e\ +\x39\x39\x35\x35\x34\x20\x31\x35\x34\x31\x2e\x30\x33\x31\x32\x2c\ +\x35\x32\x33\x2e\x39\x39\x31\x35\x36\x20\x31\x35\x34\x31\x2e\x30\ +\x33\x31\x32\x2c\x36\x32\x33\x2e\x37\x37\x36\x37\x39\x20\x43\x20\ +\x31\x35\x34\x31\x2e\x30\x33\x31\x32\x2c\x37\x32\x33\x2e\x35\x36\ +\x32\x30\x34\x20\x31\x36\x32\x32\x2e\x30\x32\x37\x32\x2c\x38\x30\ +\x34\x2e\x35\x35\x38\x30\x34\x20\x31\x37\x32\x31\x2e\x38\x31\x32\ +\x35\x2c\x38\x30\x34\x2e\x35\x35\x38\x30\x34\x20\x43\x20\x31\x38\ +\x30\x32\x2e\x35\x30\x36\x2c\x38\x30\x34\x2e\x35\x35\x38\x30\x34\ +\x20\x31\x38\x37\x30\x2e\x39\x30\x32\x38\x2c\x37\x35\x31\x2e\x35\ +\x39\x35\x39\x33\x20\x31\x38\x39\x34\x2e\x31\x32\x35\x2c\x36\x37\ +\x38\x2e\x35\x35\x38\x30\x34\x20\x43\x20\x31\x39\x31\x36\x2e\x39\ +\x30\x35\x38\x2c\x36\x37\x34\x2e\x30\x36\x33\x31\x35\x20\x31\x39\ +\x33\x33\x2e\x38\x32\x31\x37\x2c\x36\x35\x33\x2e\x37\x30\x36\x31\ +\x39\x20\x31\x39\x33\x33\x2e\x32\x31\x38\x38\x2c\x36\x32\x39\x2e\ +\x37\x31\x34\x32\x39\x20\x43\x20\x31\x39\x33\x32\x2e\x36\x37\x34\ +\x33\x2c\x36\x30\x38\x2e\x30\x35\x31\x31\x32\x20\x31\x39\x31\x38\ +\x2e\x30\x30\x38\x34\x2c\x35\x39\x30\x2e\x30\x33\x30\x37\x32\x20\ +\x31\x38\x39\x38\x2e\x32\x35\x2c\x35\x38\x34\x2e\x32\x37\x36\x37\ +\x39\x20\x43\x20\x31\x38\x38\x30\x2e\x32\x32\x36\x33\x2c\x35\x30\ +\x33\x2e\x31\x34\x36\x35\x35\x20\x31\x38\x30\x38\x2e\x30\x30\x35\ +\x36\x2c\x34\x34\x32\x2e\x39\x39\x35\x35\x34\x20\x31\x37\x32\x31\ +\x2e\x38\x31\x32\x35\x2c\x34\x34\x32\x2e\x39\x39\x35\x35\x34\x20\ +\x7a\x20\x4d\x20\x31\x37\x32\x30\x2e\x33\x37\x35\x2c\x34\x37\x38\ +\x2e\x37\x31\x34\x32\x39\x20\x43\x20\x31\x37\x38\x38\x2e\x32\x35\ +\x31\x39\x2c\x34\x37\x38\x2e\x37\x31\x34\x32\x38\x20\x31\x38\x34\ +\x35\x2e\x33\x35\x31\x35\x2c\x35\x32\x35\x2e\x32\x30\x33\x37\x31\ +\x20\x31\x38\x36\x31\x2e\x31\x32\x35\x2c\x35\x38\x38\x2e\x34\x36\ +\x34\x32\x39\x20\x43\x20\x31\x38\x34\x35\x2e\x38\x33\x36\x33\x2c\ +\x35\x39\x36\x2e\x39\x36\x38\x38\x34\x20\x31\x38\x33\x35\x2e\x36\ +\x35\x35\x33\x2c\x36\x31\x33\x2e\x34\x36\x30\x36\x35\x20\x31\x38\ +\x33\x36\x2e\x31\x32\x35\x2c\x36\x33\x32\x2e\x31\x35\x31\x37\x39\ +\x20\x43\x20\x31\x38\x33\x36\x2e\x35\x33\x34\x39\x2c\x36\x34\x38\ +\x2e\x34\x36\x30\x30\x35\x20\x31\x38\x34\x34\x2e\x39\x33\x34\x36\ +\x2c\x36\x36\x32\x2e\x36\x38\x36\x35\x34\x20\x31\x38\x35\x37\x2e\ +\x35\x2c\x36\x37\x31\x2e\x31\x38\x33\x30\x34\x20\x43\x20\x31\x38\ +\x33\x37\x2e\x38\x34\x35\x37\x2c\x37\x32\x38\x2e\x30\x30\x38\x35\ +\x31\x20\x31\x37\x38\x33\x2e\x38\x35\x34\x2c\x37\x36\x38\x2e\x38\ +\x33\x39\x32\x39\x20\x31\x37\x32\x30\x2e\x33\x37\x35\x2c\x37\x36\ +\x38\x2e\x38\x33\x39\x32\x39\x20\x43\x20\x31\x36\x34\x30\x2e\x33\ +\x30\x34\x31\x2c\x37\x36\x38\x2e\x38\x33\x39\x33\x20\x31\x35\x37\ +\x35\x2e\x33\x31\x32\x35\x2c\x37\x30\x33\x2e\x38\x34\x37\x37\x35\ +\x20\x31\x35\x37\x35\x2e\x33\x31\x32\x35\x2c\x36\x32\x33\x2e\x37\ +\x37\x36\x37\x39\x20\x43\x20\x31\x35\x37\x35\x2e\x33\x31\x32\x35\ +\x2c\x35\x34\x33\x2e\x37\x30\x35\x38\x34\x20\x31\x36\x34\x30\x2e\ +\x33\x30\x34\x31\x2c\x34\x37\x38\x2e\x37\x31\x34\x32\x39\x20\x31\ +\x37\x32\x30\x2e\x33\x37\x35\x2c\x34\x37\x38\x2e\x37\x31\x34\x32\ +\x39\x20\x7a\x20\x4d\x20\x31\x37\x31\x36\x2e\x39\x36\x38\x38\x2c\ +\x35\x37\x37\x2e\x37\x37\x36\x37\x39\x20\x43\x20\x31\x37\x31\x36\ +\x2e\x31\x34\x30\x33\x2c\x35\x37\x37\x2e\x37\x36\x37\x32\x37\x20\ +\x31\x37\x31\x35\x2e\x33\x33\x37\x32\x2c\x35\x37\x37\x2e\x38\x30\ +\x36\x34\x35\x20\x31\x37\x31\x34\x2e\x35\x2c\x35\x37\x37\x2e\x38\ +\x33\x39\x32\x39\x20\x43\x20\x31\x36\x38\x37\x2e\x37\x30\x39\x32\ +\x2c\x35\x37\x38\x2e\x38\x39\x30\x32\x32\x20\x31\x36\x36\x36\x2e\ +\x37\x39\x32\x39\x2c\x36\x30\x31\x2e\x34\x38\x35\x39\x37\x20\x31\ +\x36\x36\x37\x2e\x38\x34\x33\x38\x2c\x36\x32\x38\x2e\x32\x37\x36\ +\x37\x39\x20\x43\x20\x31\x36\x36\x38\x2e\x38\x39\x34\x37\x2c\x36\ +\x35\x35\x2e\x30\x36\x37\x36\x31\x20\x31\x36\x39\x31\x2e\x34\x39\ +\x30\x34\x2c\x36\x37\x35\x2e\x39\x35\x32\x37\x32\x20\x31\x37\x31\ +\x38\x2e\x32\x38\x31\x32\x2c\x36\x37\x34\x2e\x39\x30\x31\x37\x39\ +\x20\x43\x20\x31\x37\x34\x35\x2e\x30\x37\x32\x31\x2c\x36\x37\x33\ +\x2e\x38\x35\x30\x38\x36\x20\x31\x37\x36\x35\x2e\x39\x38\x38\x34\ +\x2c\x36\x35\x31\x2e\x32\x35\x35\x31\x34\x20\x31\x37\x36\x34\x2e\ +\x39\x33\x37\x35\x2c\x36\x32\x34\x2e\x34\x36\x34\x32\x39\x20\x43\ +\x20\x31\x37\x36\x33\x2e\x39\x31\x39\x34\x2c\x35\x39\x38\x2e\x35\ +\x31\x30\x36\x38\x20\x31\x37\x34\x32\x2e\x36\x35\x32\x2c\x35\x37\ +\x38\x2e\x30\x37\x31\x39\x38\x20\x31\x37\x31\x36\x2e\x39\x36\x38\ +\x38\x2c\x35\x37\x37\x2e\x37\x37\x36\x37\x39\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\x38\x34\x36\x39\ +\x39\x34\x34\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\x35\ +\x2e\x38\x30\x30\x30\x30\x30\x31\x39\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\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\x67\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x34\x34\x32\x38\ +\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\x73\x74\x79\x6c\ +\x65\x3d\x22\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\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\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\x35\x2e\x38\x30\x30\x30\x30\x30\x31\ +\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ +\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x6d\x61\x72\x6b\ +\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x73\ +\x74\x61\x72\x74\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\ +\x2d\x6d\x69\x64\x3a\x6e\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\ +\x2d\x65\x6e\x64\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ +\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\ +\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x76\x69\x73\x69\x62\x69\x6c\ +\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\ +\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\ +\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\ +\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\ +\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x31\x37\x30\x35\x2e\x37\ +\x31\x38\x38\x2c\x34\x31\x30\x2e\x31\x35\x36\x32\x35\x20\x43\x20\ +\x31\x36\x30\x35\x2e\x39\x33\x33\x35\x2c\x34\x31\x30\x2e\x31\x35\ +\x36\x32\x35\x20\x31\x35\x32\x34\x2e\x39\x33\x37\x35\x2c\x34\x39\ +\x31\x2e\x31\x35\x32\x32\x37\x20\x31\x35\x32\x34\x2e\x39\x33\x37\ +\x35\x2c\x35\x39\x30\x2e\x39\x33\x37\x35\x20\x43\x20\x31\x35\x32\ +\x34\x2e\x39\x33\x37\x35\x2c\x36\x39\x30\x2e\x37\x32\x32\x37\x35\ +\x20\x31\x36\x30\x35\x2e\x39\x33\x33\x35\x2c\x37\x37\x31\x2e\x37\ +\x31\x38\x37\x35\x20\x31\x37\x30\x35\x2e\x37\x31\x38\x38\x2c\x37\ +\x37\x31\x2e\x37\x31\x38\x37\x35\x20\x43\x20\x31\x38\x30\x35\x2e\ +\x35\x30\x34\x2c\x37\x37\x31\x2e\x37\x31\x38\x37\x35\x20\x31\x38\ +\x38\x36\x2e\x34\x39\x39\x39\x2c\x36\x39\x30\x2e\x37\x32\x32\x37\ +\x36\x20\x31\x38\x38\x36\x2e\x35\x2c\x35\x39\x30\x2e\x39\x33\x37\ +\x35\x20\x4c\x20\x31\x38\x38\x36\x2e\x34\x30\x36\x32\x2c\x35\x38\ +\x35\x2e\x39\x36\x38\x37\x35\x20\x43\x20\x31\x38\x38\x33\x2e\x37\ +\x31\x33\x39\x2c\x34\x38\x37\x2e\x39\x36\x35\x31\x38\x20\x31\x38\ +\x30\x33\x2e\x37\x35\x39\x32\x2c\x34\x31\x30\x2e\x31\x35\x36\x32\ +\x35\x20\x31\x37\x30\x35\x2e\x37\x31\x38\x38\x2c\x34\x31\x30\x2e\ +\x31\x35\x36\x32\x35\x20\x7a\x20\x4d\x20\x31\x37\x30\x34\x2e\x32\ +\x38\x31\x32\x2c\x34\x34\x35\x2e\x38\x37\x35\x20\x43\x20\x31\x37\ +\x38\x32\x2e\x39\x35\x32\x32\x2c\x34\x34\x35\x2e\x38\x37\x34\x39\ +\x39\x20\x31\x38\x34\x37\x2e\x31\x32\x30\x38\x2c\x35\x30\x38\x2e\ +\x32\x39\x36\x32\x32\x20\x31\x38\x34\x39\x2e\x32\x38\x31\x32\x2c\ +\x35\x38\x36\x2e\x39\x33\x37\x35\x20\x4c\x20\x31\x38\x34\x39\x2e\ +\x33\x34\x33\x38\x2c\x35\x39\x30\x2e\x39\x33\x37\x35\x20\x43\x20\ +\x31\x38\x34\x39\x2e\x33\x34\x33\x38\x2c\x36\x37\x31\x2e\x30\x30\ +\x38\x34\x38\x20\x31\x37\x38\x34\x2e\x33\x35\x32\x32\x2c\x37\x33\ +\x36\x20\x31\x37\x30\x34\x2e\x32\x38\x31\x32\x2c\x37\x33\x36\x20\ +\x43\x20\x31\x36\x32\x34\x2e\x32\x31\x30\x33\x2c\x37\x33\x36\x2e\ +\x30\x30\x30\x30\x31\x20\x31\x35\x35\x39\x2e\x32\x31\x38\x38\x2c\ +\x36\x37\x31\x2e\x30\x30\x38\x34\x36\x20\x31\x35\x35\x39\x2e\x32\ +\x31\x38\x38\x2c\x35\x39\x30\x2e\x39\x33\x37\x35\x20\x43\x20\x31\ +\x35\x35\x39\x2e\x32\x31\x38\x38\x2c\x35\x31\x30\x2e\x38\x36\x36\ +\x35\x35\x20\x31\x36\x32\x34\x2e\x32\x31\x30\x33\x2c\x34\x34\x35\ +\x2e\x38\x37\x35\x20\x31\x37\x30\x34\x2e\x32\x38\x31\x32\x2c\x34\ +\x34\x35\x2e\x38\x37\x35\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x34\x34\x32\ +\x35\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x67\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x67\x33\x31\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ +\x72\x69\x78\x28\x2d\x30\x2e\x39\x39\x39\x36\x38\x34\x33\x2c\x32\ +\x2e\x35\x31\x32\x35\x32\x37\x32\x65\x2d\x32\x2c\x2d\x32\x2e\x35\ +\x31\x32\x35\x32\x37\x32\x65\x2d\x32\x2c\x2d\x30\x2e\x39\x39\x39\ +\x36\x38\x34\x33\x2c\x32\x30\x38\x32\x2e\x31\x31\x34\x36\x2c\x31\ +\x32\x34\x38\x2e\x31\x33\x35\x37\x29\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\ +\x78\x70\x6f\x72\x74\x2d\x66\x69\x6c\x65\x6e\x61\x6d\x65\x3d\x22\ +\x2f\x68\x6f\x6d\x65\x2f\x79\x6f\x72\x69\x6b\x2f\x44\x6f\x63\x75\ +\x6d\x65\x6e\x74\x73\x2f\x4c\x61\x62\x2f\x44\x72\x61\x66\x74\x2f\ +\x69\x63\x6f\x6e\x73\x2f\x63\x69\x72\x63\x6c\x65\x2e\x70\x6e\x67\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\ +\x69\x3d\x22\x37\x2e\x32\x39\x33\x34\x31\x34\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x37\ +\x2e\x32\x39\x33\x34\x31\x34\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x34\x35\ +\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\ +\x41\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\ +\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x31\x34\x38\x2e\x35\x37\ +\x31\x34\x32\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x41\x20\x34\ +\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\ +\x20\x30\x20\x31\x20\x31\x20\x32\x34\x35\x2e\x37\x31\x34\x32\x38\ +\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x7a\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x72\x79\x3d\x22\x34\x38\x2e\x35\x37\x31\x34\x33\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\x34\x38\x2e\x35\x37\ +\x31\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\x22\x36\ +\x35\x35\x2e\x32\x31\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\ +\x78\x3d\x22\x31\x39\x37\x2e\x31\x34\x32\x38\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x61\x74\x68\x33\x31\x37\x39\x22\x0a\x20\x20\x20\x20\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\x66\x66\x61\ +\x39\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\x23\x30\x30\x30\ +\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ +\x3a\x35\x2e\x38\x30\x30\x30\x30\x30\x31\x39\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ +\x6d\x69\x74\x65\x72\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\ +\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x73\x74\x61\x72\x74\x3a\x6e\ +\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x6d\x69\x64\x3a\x6e\ +\x6f\x6e\x65\x3b\x6d\x61\x72\x6b\x65\x72\x2d\x65\x6e\x64\x3a\x6e\ +\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ +\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ +\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\ +\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\ +\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\ +\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\ +\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\ +\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\ +\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\ +\x61\x72\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ +\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x38\x35\x31\x33\x30\x32\x33\ +\x2c\x2d\x30\x2e\x35\x32\x34\x36\x37\x35\x34\x2c\x30\x2e\x35\x32\ +\x34\x36\x37\x35\x34\x2c\x30\x2e\x38\x35\x31\x33\x30\x32\x33\x2c\ +\x2d\x33\x33\x38\x2e\x36\x39\x36\x39\x32\x2c\x32\x31\x34\x2e\x31\ +\x39\x33\x32\x38\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x35\x39\x2e\x36\x30\x39\ +\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x41\x20\x33\ +\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\x33\x2e\x39\x39\x31\x31\ +\x32\x33\x20\x30\x20\x31\x20\x31\x20\x31\x39\x30\x2e\x39\x31\x38\ +\x38\x33\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x41\x20\x33\ +\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\x33\x2e\x39\x39\x31\x31\ +\x32\x33\x20\x30\x20\x31\x20\x31\x20\x32\x35\x39\x2e\x36\x30\x39\ +\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x7a\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x32\x33\x2e\x39\x39\x31\ +\x31\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\x33\ +\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\ +\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x31\x38\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\ +\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x38\x33\x29\ +\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\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\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\ +\x65\x3d\x22\x61\x72\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x67\x33\x31\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ +\x61\x74\x72\x69\x78\x28\x2d\x30\x2e\x39\x39\x39\x32\x33\x31\x35\ +\x2c\x33\x2e\x39\x31\x39\x37\x30\x37\x38\x65\x2d\x32\x2c\x2d\x33\ +\x2e\x39\x31\x39\x37\x30\x37\x38\x65\x2d\x32\x2c\x2d\x30\x2e\x39\ +\x39\x39\x32\x33\x31\x35\x2c\x31\x39\x32\x32\x2e\x39\x35\x39\x38\ +\x2c\x31\x32\x34\x30\x2e\x34\x39\x33\x34\x29\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x65\x78\x70\x6f\x72\x74\x2d\x66\x69\x6c\x65\x6e\x61\x6d\x65\ +\x3d\x22\x2f\x68\x6f\x6d\x65\x2f\x79\x6f\x72\x69\x6b\x2f\x44\x6f\ +\x63\x75\x6d\x65\x6e\x74\x73\x2f\x4c\x61\x62\x2f\x44\x72\x61\x66\ +\x74\x2f\x69\x63\x6f\x6e\x73\x2f\x63\x69\x72\x63\x6c\x65\x2e\x70\ +\x6e\x67\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\ +\x64\x70\x69\x3d\x22\x37\x2e\x32\x39\x33\x34\x31\x34\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\ +\x22\x37\x2e\x32\x39\x33\x34\x31\x34\x31\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\ +\x34\x35\x2e\x37\x31\x34\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\ +\x33\x20\x41\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\ +\x35\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x31\x34\x38\x2e\ +\x35\x37\x31\x34\x32\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x41\ +\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\x31\ +\x34\x33\x20\x30\x20\x31\x20\x31\x20\x32\x34\x35\x2e\x37\x31\x34\ +\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x7a\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x34\x38\x2e\x35\x37\x31\x34\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\x22\x34\x38\x2e\ +\x35\x37\x31\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x63\x79\x3d\ +\x22\x36\x35\x35\x2e\x32\x31\x39\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x63\x78\x3d\x22\x31\x39\x37\x2e\x31\x34\x32\x38\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x61\x74\x68\x33\x31\x38\x37\x22\x0a\x20\x20\x20\x20\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\x66\ +\x66\x61\x39\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\x23\x30\ +\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ +\x74\x68\x3a\x35\x2e\x37\x39\x39\x39\x39\x39\x37\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\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\ +\x3d\x22\x61\x72\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x38\x35\x31\x33\x30\ +\x32\x33\x2c\x2d\x30\x2e\x35\x32\x34\x36\x37\x35\x34\x2c\x30\x2e\ +\x35\x32\x34\x36\x37\x35\x34\x2c\x30\x2e\x38\x35\x31\x33\x30\x32\ +\x33\x2c\x2d\x33\x33\x38\x2e\x36\x39\x36\x39\x32\x2c\x32\x31\x34\ +\x2e\x31\x39\x33\x32\x38\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x35\x39\x2e\x36\ +\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x41\ +\x20\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\x33\x2e\x39\x39\ +\x31\x31\x32\x33\x20\x30\x20\x31\x20\x31\x20\x31\x39\x30\x2e\x39\ +\x31\x38\x38\x33\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x41\ +\x20\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x2c\x32\x33\x2e\x39\x39\ +\x31\x31\x32\x33\x20\x30\x20\x31\x20\x31\x20\x32\x35\x39\x2e\x36\ +\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\x7a\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x79\x3d\x22\x32\x33\x2e\x39\ +\x39\x31\x31\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x78\x3d\ +\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x63\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\ +\x36\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x31\x38\x39\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\ +\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x39\ +\x31\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\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\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\ +\x79\x70\x65\x3d\x22\x61\x72\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\ +\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ \x00\x00\x08\x89\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ @@ -31295,368 +67897,1823 @@ qt_resource_data = "\ \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\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\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\x39\x49\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x70\x78\ +\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x70\ +\x78\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x36\x31\ +\x32\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\ +\x2e\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x34\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\x44\x72\x61\x66\x74\ +\x5f\x41\x64\x64\x50\x6f\x69\x6e\x74\x2e\x73\x76\x67\x22\x3e\x0a\ +\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x64\x65\x66\x73\x33\x36\x31\x34\x22\x3e\x0a\x20\x20\x20\x20\ +\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\ +\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\ +\x5f\x78\x3d\x22\x30\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\ +\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x36\x34\x20\x3a\x20\x33\ +\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\ +\x72\x69\x67\x69\x6e\x3d\x22\x33\x32\x20\x3a\x20\x32\x31\x2e\x33\ +\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\ +\x65\x33\x36\x32\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\ +\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x35\x38\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\ +\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\ +\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\ +\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\ +\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ +\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\ +\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x33\x36\x39\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\ +\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\ +\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\ +\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\ +\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\ +\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x2d\x36\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\ +\x31\x34\x36\x2d\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ +\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x31\ +\x34\x38\x2d\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x37\x30\x31\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x30\x33\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\ +\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x73\x74\x6f\x70\x33\x37\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ +\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\ +\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ +\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\ +\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x33\x31\x34\x34\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x33\x36\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ +\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\ +\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\ +\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\x30\ +\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x37\ +\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\x39\ +\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x33\ +\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x30\x38\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\ +\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x31\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\ +\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\ +\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\ +\x65\x33\x38\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\ +\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\ +\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ +\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\ +\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\ +\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\ +\x38\x36\x34\x2d\x30\x2d\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x36\x2d\x35\x2d\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ +\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ +\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x38\x2d\x37\x2d\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ +\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x33\x33\x37\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x73\x74\x6f\x70\x33\x33\x37\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x61\x61\x30\ +\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x33\x33\x38\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x61\x66\x66\x32\x62\x3b\ +\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x2d\x30\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\ +\x36\x2d\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\ +\x38\x2d\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\ +\x65\x63\x74\x69\x76\x65\x33\x39\x30\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\ +\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\ +\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\ +\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\ +\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\ +\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\ +\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ +\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x35\x30\x34\x38\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\ +\x72\x3a\x62\x6c\x61\x63\x6b\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x30\ +\x35\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x73\x74\x6f\x70\x35\x30\x35\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\x6c\x61\x63\x6b\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x62\x6c\x61\x63\ +\x6b\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\ +\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x30\x35\x32\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x33\x38\x34\x31\x2d\x30\x2d\x33\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x34\x33\ +\x2d\x31\x2d\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ +\x6f\x6c\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\ +\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\ +\x34\x35\x2d\x30\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\ +\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\ +\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x31\x31\ +\x34\x2e\x35\x36\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ +\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x72\x3d\x22\x35\x2e\x32\x35\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x31\x31\x34\x2e\x35\x36\ +\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\ +\x30\x2e\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x61\x69\x67\x72\x64\x32\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x36\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x46\x30\ +\x46\x30\x46\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x36\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x39\x61\x39\ +\x61\x39\x61\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\ +\x30\x30\x30\x30\x30\x30\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x2f\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\ +\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x66\x79\x3d\x22\x36\x34\x2e\x35\x36\x37\x39\x30\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x32\x30\x2e\ +\x38\x39\x32\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ +\x3d\x22\x35\x2e\x32\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x63\x79\x3d\x22\x36\x34\x2e\x35\x36\x37\x39\x30\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x30\x2e\x38\x39\x32\ +\x30\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x61\x69\x67\x72\x64\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x73\x74\x6f\x70\x31\x35\x35\x37\x33\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x46\x30\x46\x30\x46\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ +\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x73\x74\x6f\x70\x31\x35\x35\x37\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x39\x61\x39\x61\x39\x61\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\ +\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\ +\x30\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x61\x64\ +\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\ +\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x31\x35\x36\x36\x32\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\ +\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\ +\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x31\x35\x36\x36\x34\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x38\x66\x38\x66\x38\x3b\ +\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\ +\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\ +\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x73\x74\x6f\x70\x31\x35\x36\x36\x36\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\ +\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x72\x3d\x22\x38\x36\x2e\x37\x30\x38\x34\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x33\x35\x2e\x37\x33\x36\x39\ +\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x33\ +\x33\x2e\x39\x36\x36\x36\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x63\x79\x3d\x22\x33\x35\x2e\x37\x33\x36\x39\x31\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x33\x33\x2e\x39\x36\ +\x36\x36\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ +\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x36\x30\x34\x39\x32\x39\ +\x37\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x34\x31\x31\x33\x32\x2c\x2d\ +\x35\x32\x2e\x31\x34\x34\x32\x34\x39\x2c\x2d\x37\x30\x32\x2e\x33\ +\x33\x31\x35\x38\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ +\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\ +\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x34\x34\x35\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x32\x35\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\ +\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x32\x35\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x66\x61\x66\x61\x66\x61\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\ +\x36\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x62\ +\x62\x62\x62\x62\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\x36\x31\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x72\x3d\x22\x33\x37\x2e\x37\x35\x31\x37\x31\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x33\x2e\ +\x37\x35\x36\x31\x32\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x66\x78\x3d\x22\x38\x2e\x38\x32\x34\x34\x31\x39\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x33\x2e\x37\x35\x36\x31\x32\ +\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x38\ +\x2e\x38\x32\x34\x34\x31\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\ +\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x36\x38\x32\ +\x37\x32\x39\x37\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x33\x32\x37\x36\ +\x37\x2c\x2d\x34\x38\x2e\x37\x39\x30\x36\x39\x39\x2c\x2d\x37\x30\ +\x31\x2e\x36\x38\x35\x31\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ +\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\ +\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x34\x35\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\ +\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x32\x36\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ +\x6c\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x32\x36\x39\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x61\x33\x61\x33\x61\x33\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\ +\x30\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x30\x2e\x30\x30\x30\x30\x30\x30\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x32\x37\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x34\x63\x34\x63\x34\x63\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x3b\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x31\x2e\x30\x30\x30\x30\x30\x30\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x32\ +\x37\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\ +\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ +\x65\x63\x74\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x34\x39\x34\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\ +\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\ +\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\ +\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\ +\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x30\x39\x35\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x35\x62\x66\x66\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x34\x30\x39\x37\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x63\x31\x65\x33\x66\x37\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x73\x74\x6f\x70\x34\x30\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\x63\ +\x74\x69\x76\x65\x35\x30\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\ +\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\x20\ +\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\x30\ +\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\x3a\ +\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\x22\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\x64\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\x72\x73\x70\x65\ +\x63\x74\x69\x76\x65\x35\x30\x37\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\ +\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\x2e\x35\x20\x3a\ +\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\x3a\x20\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\x2e\x35\x20\x3a\ +\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\x3a\x20\x31\x30\ +\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\x20\ +\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\x79\x70\x65\x3d\ +\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x33\ +\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\ +\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\x34\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x32\x35\x33\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x33\x39\x34\ +\x2e\x31\x35\x37\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\ +\x31\x3d\x22\x31\x38\x35\x2e\x31\x33\x30\x34\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x78\x32\x3d\x22\x34\x33\x34\x2e\x37\x33\x39\x34\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x31\x34\ +\x30\x2e\x32\x32\x37\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\ +\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x30\x2e\x39\x34\x32\x33\x31\x38\x32\x36\x2c\x30\x2c\x30\x2c\x30\ +\x2e\x39\x34\x32\x33\x31\x38\x32\x36\x2c\x32\x33\x2e\x37\x32\x37\ +\x35\x34\x39\x2c\x38\x2e\x38\x32\x36\x32\x35\x33\x36\x29\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x34\x32\x34\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x32\ +\x65\x38\x32\x30\x37\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x32\x34\x39\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x35\x32\x66\ +\x66\x30\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x34\x32\x35\x31\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\ +\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\ +\x72\x73\x70\x65\x63\x74\x69\x76\x65\x35\x31\x34\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\ +\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\ +\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\ +\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\ +\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\ +\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\ +\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ +\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\ +\x69\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x35\x32\x32\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\ +\x30\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\ +\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\ +\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\ +\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\ +\x78\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x65\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\ +\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x33\x31\x34\x34\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x34\x33\x31\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\ +\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\x2c\ +\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\ +\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\ +\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\x37\ +\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\ +\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\x2d\ +\x38\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x33\x31\x34\x36\x2d\x39\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ +\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\ +\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x33\x31\x34\x38\x2d\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\ +\x76\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x65\ +\x72\x73\x70\x65\x63\x74\x69\x76\x65\x35\x33\x30\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\x3d\x22\x30\ +\x2e\x35\x20\x3a\x20\x30\x2e\x33\x33\x33\x33\x33\x33\x33\x33\x20\ +\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x76\x70\x5f\x7a\x3d\x22\x31\x20\x3a\x20\x30\ +\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\x22\x30\x20\ +\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\ +\x3d\x22\x30\x20\x3a\x20\x30\x2e\x35\x20\x3a\x20\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x74\ +\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x65\ +\x72\x73\x70\x33\x64\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ +\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\ +\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x33\x31\x34\x34\x2d\x38\x2d\x34\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x34\x33\x33\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\ +\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\ +\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ +\x28\x31\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x39\x38\x35\x32\x39\x34\ +\x2c\x30\x2c\x32\x30\x32\x2e\x38\x32\x38\x36\x33\x29\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\ +\x34\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\ +\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x66\x78\x3d\x22\x32\x32\x35\x2e\x32\x36\x34\x30\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x36\x37\x32\x2e\ +\x37\x39\x37\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\ +\x22\x33\x34\x2e\x33\x34\x35\x31\x38\x38\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x34\x34\ +\x2d\x38\x2d\x34\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x73\x74\x6f\x70\x33\x31\x34\x36\x2d\x39\x36\x2d\x38\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\x66\ +\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x73\x74\x6f\x70\x33\x31\x34\x38\x2d\x34\x2d\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x66\x66\x66\ +\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\ +\x20\x20\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\x37\x22\x3e\x0a\x20\x20\ +\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\ +\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\ +\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\ +\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\ +\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\ +\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ +\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\x3a\x74\x69\x74\x6c\x65\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\ +\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\ +\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\ +\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\ +\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\ +\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\ +\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x74\x72\ +\x61\x6e\x73\x6c\x61\x74\x65\x28\x2d\x31\x39\x32\x2e\x31\x34\x36\ +\x32\x39\x2c\x2d\x31\x33\x32\x2e\x38\x37\x33\x33\x36\x29\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x35\x32\x30\x38\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x34\x35\x3b\x66\x69\x6c\x6c\ +\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\ +\x65\x3a\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\x30\x2e\x38\x36\x39\x35\x34\x31\x30\x35\x3b\x6d\x61\ +\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\ +\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\ +\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\ +\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\ +\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\ +\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x32\x35\x2e\x38\x37\x31\ +\x38\x38\x2c\x31\x37\x33\x2e\x31\x38\x39\x32\x36\x20\x61\x20\x37\ +\x2e\x31\x30\x34\x36\x37\x37\x31\x2c\x37\x2e\x32\x38\x33\x37\x39\ +\x35\x34\x20\x30\x20\x30\x20\x30\x20\x2d\x34\x2e\x39\x36\x39\x38\ +\x2c\x32\x2e\x35\x33\x31\x39\x32\x20\x37\x2e\x31\x30\x34\x36\x37\ +\x37\x31\x2c\x37\x2e\x32\x38\x33\x37\x39\x35\x34\x20\x30\x20\x30\ +\x20\x30\x20\x2d\x31\x2e\x34\x39\x33\x39\x39\x2c\x32\x2e\x39\x33\ +\x38\x32\x37\x20\x6c\x20\x2d\x32\x30\x2e\x33\x30\x36\x30\x37\x2c\ +\x2d\x30\x2e\x30\x33\x31\x32\x20\x2d\x30\x2e\x30\x33\x30\x34\x2c\ +\x34\x2e\x35\x30\x31\x31\x39\x20\x32\x30\x2e\x36\x37\x31\x39\x34\ +\x2c\x30\x2e\x30\x36\x32\x35\x20\x61\x20\x37\x2e\x31\x30\x34\x36\ +\x37\x37\x31\x2c\x37\x2e\x32\x38\x33\x37\x39\x35\x34\x20\x30\x20\ +\x30\x20\x30\x20\x31\x31\x2e\x39\x35\x31\x39\x32\x2c\x32\x2e\x30\ +\x30\x30\x35\x33\x20\x37\x2e\x31\x30\x34\x36\x37\x37\x31\x2c\x37\ +\x2e\x32\x38\x33\x37\x39\x35\x34\x20\x30\x20\x30\x20\x30\x20\x31\ +\x2e\x31\x38\x39\x30\x39\x2c\x2d\x32\x2e\x30\x30\x30\x35\x33\x20\ +\x6c\x20\x32\x30\x2e\x36\x34\x31\x34\x35\x2c\x30\x2e\x30\x36\x32\ +\x35\x20\x30\x2c\x2d\x34\x2e\x35\x30\x31\x31\x39\x20\x2d\x32\x30\ +\x2e\x33\x33\x36\x35\x35\x2c\x2d\x30\x2e\x30\x33\x31\x32\x20\x61\ +\x20\x37\x2e\x31\x30\x34\x36\x37\x37\x31\x2c\x37\x2e\x32\x38\x33\ +\x37\x39\x35\x34\x20\x30\x20\x30\x20\x30\x20\x2d\x37\x2e\x33\x31\ +\x37\x35\x2c\x2d\x35\x2e\x35\x33\x32\x37\x31\x20\x7a\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ +\x34\x33\x35\x33\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\ +\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x34\x38\x66\x66\x3b\ +\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\ +\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\ +\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ +\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ +\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ +\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\ +\x66\x66\x73\x65\x74\x3a\x30\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\ +\x6f\x6e\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\ +\x69\x73\x69\x62\x6c\x65\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\ +\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\ +\x69\x73\x69\x62\x6c\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\ +\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\ +\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x72\x65\x63\x74\x33\x35\x35\x38\x2d\x38\x2d\x33\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\ +\x37\x2e\x30\x37\x30\x38\x35\x31\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x33\x2e\x34\ +\x39\x39\x34\x32\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x78\x3d\x22\x2d\x31\x35\x33\x2e\x33\x37\x34\x37\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x31\x32\x2e\x39\ +\x38\x32\x34\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\ +\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ +\x28\x30\x2c\x2d\x31\x2c\x31\x2c\x30\x2c\x30\x2c\x30\x29\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\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\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\x2e\x35\x30\x30\x30\x30\ +\x30\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\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\x34\x33\x32\x39\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\x2d\x30\x2e\x30\ +\x30\x32\x39\x30\x33\x36\x34\x2c\x30\x2e\x39\x39\x39\x39\x39\x35\ +\x37\x38\x2c\x2d\x30\x2e\x39\x39\x39\x39\x39\x37\x31\x32\x2c\x2d\ +\x30\x2e\x30\x30\x32\x33\x39\x39\x34\x35\x2c\x30\x2c\x30\x29\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x2d\x32\x35\ +\x31\x2e\x32\x30\x30\x30\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x78\x3d\x22\x31\x37\x33\x2e\x35\x39\x35\x31\x34\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\ +\x22\x35\x34\x2e\x34\x33\x38\x35\x30\x33\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x34\x2e\x34\x39\ +\x38\x38\x31\x39\x34\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x67\x34\x33\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ +\x78\x28\x30\x2e\x39\x37\x35\x35\x35\x31\x39\x36\x2c\x30\x2e\x30\ +\x31\x35\x33\x34\x37\x36\x33\x2c\x2d\x30\x2e\x30\x31\x34\x39\x37\ +\x30\x32\x31\x2c\x31\x2e\x30\x30\x30\x31\x34\x36\x39\x2c\x39\x31\ +\x2e\x35\x36\x34\x36\x30\x32\x2c\x2d\x35\x31\x2e\x36\x33\x38\x31\ +\x31\x36\x29\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x67\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\ +\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\ +\x2e\x31\x31\x35\x33\x35\x34\x34\x2c\x2d\x30\x2e\x30\x39\x35\x37\ +\x35\x38\x30\x39\x2c\x30\x2e\x30\x39\x35\x37\x35\x38\x30\x39\x2c\ +\x2d\x30\x2e\x31\x31\x35\x33\x35\x34\x34\x2c\x39\x38\x2e\x36\x36\ +\x37\x37\x37\x37\x2c\x33\x31\x39\x2e\x38\x33\x36\x38\x37\x29\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x67\x34\x33\x33\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x34\x35\x2e\x37\x31\ +\x34\x32\x38\x2c\x36\x35\x35\x2e\x32\x31\x39\x33\x20\x61\x20\x34\ +\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\x37\x31\x34\x33\ +\x20\x30\x20\x31\x20\x31\x20\x2d\x39\x37\x2e\x31\x34\x32\x38\x36\ +\x2c\x30\x20\x34\x38\x2e\x35\x37\x31\x34\x33\x2c\x34\x38\x2e\x35\ +\x37\x31\x34\x33\x20\x30\x20\x31\x20\x31\x20\x39\x37\x2e\x31\x34\ +\x32\x38\x36\x2c\x30\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x34\x33\ +\x33\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\ +\x34\x38\x66\x66\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\ +\x35\x2e\x38\x30\x30\x30\x30\x30\x31\x39\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\ +\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x35\x39\x2e\ +\x36\x30\x39\x32\x31\x2c\x36\x37\x32\x2e\x37\x39\x37\x33\x36\x20\ +\x61\x20\x33\x34\x2e\x33\x34\x35\x31\x39\x2c\x32\x33\x2e\x39\x39\ +\x31\x31\x32\x34\x20\x30\x20\x31\x20\x31\x20\x2d\x36\x38\x2e\x36\ +\x39\x30\x33\x38\x2c\x30\x20\x33\x34\x2e\x33\x34\x35\x31\x39\x2c\ +\x32\x33\x2e\x39\x39\x31\x31\x32\x34\x20\x30\x20\x31\x20\x31\x20\ +\x36\x38\x2e\x36\x39\x30\x33\x38\x2c\x30\x20\x7a\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\ +\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x38\ +\x35\x31\x33\x30\x32\x33\x2c\x2d\x30\x2e\x35\x32\x34\x36\x37\x35\ +\x34\x2c\x30\x2e\x35\x32\x34\x36\x37\x35\x34\x2c\x30\x2e\x38\x35\ +\x31\x33\x30\x32\x33\x2c\x2d\x33\x33\x38\x2e\x36\x39\x36\x39\x32\ +\x2c\x32\x31\x34\x2e\x31\x39\x33\x32\x38\x29\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ +\x74\x68\x34\x33\x33\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ +\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x34\x33\x33\x39\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ +\x6e\x6f\x6e\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\ +\x0a\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\ +\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x37\xfe\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x34\x70\x78\ +\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x34\x70\ +\x78\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x37\x36\ +\x36\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\x44\x72\x61\x66\x74\x5f\x32\x44\x53\x68\ +\x61\x70\x65\x56\x69\x65\x77\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6f\x75\x74\x70\x75\x74\x5f\ +\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x3d\x22\x6f\x72\x67\x2e\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x75\x74\x70\x75\x74\x2e\x73\ +\x76\x67\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x3e\x0a\x20\ +\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x64\x65\x66\x73\x32\x37\x36\x38\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\x37\x38\x37\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x38\x39\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x39\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\ +\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\ +\x36\x34\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x33\x38\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ +\x33\x38\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ +\x6f\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\ +\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x74\x79\x70\x65\x3d\x22\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x65\x72\x73\x70\x33\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x78\x3d\x22\x30\ +\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x70\x5f\x79\x3d\ +\x22\x30\x20\x3a\x20\x31\x30\x30\x30\x20\x3a\x20\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\ +\x70\x5f\x7a\x3d\x22\x36\x34\x20\x3a\x20\x33\x32\x20\x3a\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x65\x72\x73\x70\x33\x64\x2d\x6f\x72\x69\x67\x69\x6e\ +\x3d\x22\x33\x32\x20\x3a\x20\x32\x31\x2e\x33\x33\x33\x33\x33\x33\ +\x20\x3a\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x65\x72\x73\x70\x65\x63\x74\x69\x76\x65\x32\x37\x37\x34\ +\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\x33\x38\x36\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\x31\x38\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ +\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\ +\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\ +\x3d\x22\x35\x38\x31\x2e\x32\x36\x33\x33\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x79\x31\x3d\x22\x31\x32\x36\x2e\x37\x39\x36\x32\ +\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x36\x30\ +\x39\x2e\x35\x34\x39\x31\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x79\x32\x3d\x22\x31\x30\x30\x2e\x31\x30\x37\x30\x38\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x31\x2e\x30\x36\x31\x34\x39\x33\x31\x2c\x30\x2c\x30\x2c\x31\x2c\ +\x2d\x35\x34\x30\x2e\x39\x36\x39\x34\x31\x2c\x2d\x37\x33\x2e\x33\ +\x37\x36\x34\x32\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ +\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\ +\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x33\x38\x36\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x33\x31\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\ +\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\ +\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\x2e\ +\x37\x32\x31\x34\x30\x35\x37\x39\x2c\x30\x2e\x37\x37\x38\x36\x37\ +\x39\x31\x39\x2c\x2d\x30\x2e\x37\x33\x33\x35\x36\x39\x37\x32\x2c\ +\x2d\x30\x2e\x36\x37\x39\x36\x31\x34\x32\x31\x2c\x35\x34\x35\x2e\ +\x33\x35\x30\x37\x32\x2c\x2d\x33\x38\x39\x2e\x34\x36\x36\x35\x36\ +\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x36\x30\ +\x35\x2e\x39\x34\x36\x35\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x79\x31\x3d\x22\x39\x32\x2e\x37\x31\x31\x38\x39\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x36\x32\x36\x2e\x33\x31\ +\x33\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\ +\x39\x32\x2e\x37\x31\x31\x38\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x2d\ +\x30\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x33\x38\x36\x36\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\ +\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x33\x38\x36\x38\x2d\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\ +\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x39\x32\x2e\x37\x31\x31\x38\ +\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x36\ +\x32\x36\x2e\x33\x31\x33\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x79\x31\x3d\x22\x39\x32\x2e\x37\x31\x31\x38\x39\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x36\x30\x35\x2e\x39\ +\x34\x36\x35\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ +\x6d\x61\x74\x72\x69\x78\x28\x31\x2e\x30\x36\x31\x34\x39\x33\x31\ +\x2c\x30\x2c\x30\x2c\x31\x2c\x2d\x36\x34\x33\x2e\x32\x32\x38\x34\ +\x33\x2c\x2d\x38\x32\x2e\x34\x34\x35\x37\x36\x36\x29\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\ +\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\ +\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x32\ +\x31\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\ +\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x2d\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\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\x36\x34\x2d\x30\x2d\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x31\x38\x34\ +\x2d\x34\x2d\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\ +\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\ +\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2e\x31\ +\x39\x31\x35\x30\x39\x31\x2c\x30\x2c\x30\x2c\x31\x2c\x2d\x37\x37\ +\x32\x2e\x31\x33\x32\x36\x35\x2c\x2d\x38\x34\x2e\x35\x33\x32\x35\ +\x39\x36\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\ +\x36\x30\x35\x2e\x39\x34\x36\x35\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x79\x31\x3d\x22\x39\x32\x2e\x37\x31\x31\x38\x39\x39\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x36\x32\x36\x2e\ +\x33\x31\x33\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\ +\x3d\x22\x39\x32\x2e\x37\x31\x31\x38\x39\x39\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\ +\x34\x2d\x30\x2d\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x73\x74\x6f\x70\x33\x38\x36\x36\x2d\x36\x2d\x38\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\ +\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x38\x2d\x32\x2d\x33\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ +\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ +\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\ +\x22\x31\x30\x30\x2e\x32\x37\x32\x35\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x78\x32\x3d\x22\x36\x37\x32\x2e\x37\x33\x31\x35\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x31\x30\x30\x2e\ +\x37\x39\x32\x36\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\ +\x3d\x22\x36\x33\x35\x2e\x34\x30\x37\x36\x35\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\ +\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2e\ +\x35\x30\x36\x32\x31\x2c\x2d\x30\x2e\x38\x34\x30\x36\x30\x30\x30\ +\x33\x2c\x30\x2c\x30\x2e\x39\x34\x32\x39\x37\x37\x2c\x2d\x39\x35\ +\x30\x2e\x32\x39\x34\x36\x32\x2c\x34\x38\x37\x2e\x34\x31\x33\x33\ +\x35\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\x34\x30\x31\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x2d\ +\x30\x2d\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\ +\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\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\x36\x34\x2d\x30\x2d\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x31\x38\x34\x2d\x34\x2d\x34\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\ +\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ +\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ +\x72\x69\x78\x28\x31\x2e\x31\x39\x31\x35\x30\x39\x31\x2c\x30\x2c\ +\x30\x2c\x31\x2c\x2d\x37\x37\x32\x2e\x31\x33\x32\x36\x35\x2c\x2d\ +\x38\x34\x2e\x35\x33\x32\x35\x39\x36\x29\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x31\x3d\x22\x36\x30\x35\x2e\x39\x34\x36\x35\x39\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x39\x32\x2e\ +\x37\x31\x31\x38\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x32\x3d\x22\x36\x32\x36\x2e\x33\x31\x33\x32\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x39\x32\x2e\x37\x31\x31\x38\ +\x39\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x33\x38\x36\x34\x2d\x30\x2d\x39\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x36\ +\x2d\x36\x2d\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ +\x6f\x6c\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\ +\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\ +\x36\x38\x2d\x32\x2d\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x79\x32\x3d\x22\x31\x30\x32\x2e\x38\x38\x36\x32\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x36\x37\ +\x39\x2e\x30\x36\x39\x30\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x79\x31\x3d\x22\x39\x31\x2e\x35\x39\x37\x35\x32\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x36\x33\x34\x2e\x32\x30\ +\x38\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ +\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ +\x61\x74\x72\x69\x78\x28\x31\x2e\x35\x30\x36\x32\x31\x2c\x30\x2e\ +\x35\x31\x30\x33\x36\x34\x32\x38\x2c\x30\x2c\x30\x2e\x39\x34\x32\ +\x39\x37\x37\x2c\x2d\x39\x38\x32\x2e\x39\x37\x34\x38\x39\x2c\x2d\ +\x34\x32\x35\x2e\x34\x32\x38\x32\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\x34\x30\x35\x34\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\ +\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x38\x36\x34\x2d\x30\x2d\x39\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\ +\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\ +\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\ +\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x2d\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\x30\x37\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\ +\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\ +\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ +\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ +\x61\x74\x72\x69\x78\x28\x31\x2e\x35\x30\x36\x32\x31\x2c\x30\x2e\ +\x35\x31\x30\x33\x36\x34\x32\x38\x2c\x30\x2c\x30\x2e\x39\x34\x32\ +\x39\x37\x37\x2c\x2d\x39\x38\x32\x2e\x39\x35\x32\x36\x37\x2c\x2d\ +\x34\x30\x34\x2e\x37\x31\x38\x32\x33\x29\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x31\x3d\x22\x36\x36\x33\x2e\x33\x32\x37\x31\x35\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x31\x31\x34\ +\x2e\x35\x36\x35\x30\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x32\x3d\x22\x37\x30\x39\x2e\x30\x34\x34\x30\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x34\x38\x2e\x31\x31\x37\x36\ +\x30\x33\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\x79\x32\x3d\x22\x31\x30\x32\x2e\x38\x38\x36\x32\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x36\x37\x39\x2e\ +\x30\x36\x39\x30\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\ +\x3d\x22\x39\x31\x2e\x35\x39\x37\x35\x32\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x78\x31\x3d\x22\x36\x33\x34\x2e\x32\x30\x38\x36\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ +\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ +\x72\x69\x78\x28\x31\x2e\x30\x36\x31\x34\x39\x33\x31\x2c\x30\x2e\ +\x35\x34\x31\x32\x32\x36\x36\x35\x2c\x30\x2c\x31\x2c\x2d\x36\x39\ +\x32\x2e\x35\x32\x32\x34\x36\x2c\x2d\x34\x35\x31\x2e\x31\x38\x33\ +\x30\x35\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\x34\x30\x35\x34\x2d\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\ +\x36\x34\x2d\x30\x2d\x39\x2d\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\ +\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x2d\ +\x30\x2d\x39\x2d\x35\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x73\x74\x6f\x70\x33\x38\x36\x36\x2d\x36\x2d\x39\x2d\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ +\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ +\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x38\x2d\x32\x2d\ +\x34\x2d\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x79\x32\x3d\x22\x31\x30\x32\x2e\x38\x38\x36\x32\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x36\x37\x39\x2e\x30\ +\x36\x39\x30\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\ +\x22\x39\x31\x2e\x35\x39\x37\x35\x32\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x31\x3d\x22\x36\x33\x34\x2e\x32\x30\x38\x36\x38\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ +\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ +\x69\x78\x28\x31\x2e\x30\x36\x31\x34\x39\x33\x31\x2c\x30\x2e\x35\ +\x34\x31\x32\x32\x36\x36\x35\x2c\x30\x2c\x31\x2c\x2d\x36\x38\x37\ +\x2e\x37\x33\x31\x31\x38\x2c\x2d\x34\x31\x35\x2e\x34\x39\x36\x33\ +\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\x34\x30\x39\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x2d\ +\x30\x2d\x39\x2d\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\ +\x61\x6c\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x31\x30\x32\x2e\x38\x38\ +\x36\x32\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\ +\x36\x37\x39\x2e\x30\x36\x39\x30\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x79\x31\x3d\x22\x39\x31\x2e\x35\x39\x37\x35\x32\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x36\x33\x34\x2e\ +\x32\x30\x38\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ +\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ +\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2e\x30\x36\x31\x34\x39\x33\ +\x31\x2c\x30\x2e\x35\x34\x31\x32\x32\x36\x36\x35\x2c\x30\x2c\x31\ +\x2c\x2d\x36\x38\x37\x2e\x37\x33\x31\x31\x38\x2c\x2d\x34\x31\x35\ +\x2e\x34\x39\x36\x33\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\x34\x30\x39\x30\x2d\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\ +\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x33\x38\x36\x34\x2d\x30\x2d\x39\x2d\x35\x2d\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\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x33\x38\x36\x34\x2d\x30\x2d\x39\x2d\x35\x2d\x30\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\ +\x36\x2d\x36\x2d\x39\x2d\x30\x2d\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\ +\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x33\x38\x36\x38\x2d\x32\x2d\x34\x2d\x30\x2d\x35\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ +\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ +\x23\x33\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\ +\x22\x31\x30\x32\x2e\x38\x38\x36\x32\x38\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x32\x3d\x22\x36\x37\x39\x2e\x30\x36\x39\x30\x39\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x39\x31\x2e\ +\x35\x39\x37\x35\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x31\x3d\x22\x36\x33\x34\x2e\x32\x30\x38\x36\x38\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\x38\x30\x38\x31\x37\x34\x38\x31\x2c\x30\x2e\x34\x31\x32\x30\ +\x36\x36\x35\x2c\x30\x2c\x30\x2e\x37\x36\x31\x33\x35\x36\x36\x33\ +\x2c\x2d\x35\x31\x37\x2e\x33\x34\x39\x37\x34\x2c\x2d\x33\x30\x34\ +\x2e\x34\x34\x32\x36\x32\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\ +\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\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\x34\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\ +\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x33\x38\x36\x34\x2d\x30\x2d\x39\x2d\x35\x2d\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\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\x30\x2e\x32\x37\x32\x35\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x78\x32\x3d\x22\x36\x37\x32\x2e\x37\x33\x31\x35\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x31\x30\x30\x2e\ +\x37\x39\x32\x36\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\ +\x3d\x22\x36\x33\x35\x2e\x34\x30\x37\x36\x35\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\ +\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2e\ +\x35\x33\x38\x35\x36\x38\x33\x2c\x2d\x30\x2e\x38\x36\x30\x35\x35\ +\x31\x39\x36\x2c\x30\x2c\x30\x2e\x39\x36\x35\x33\x35\x38\x38\x38\ +\x2c\x2d\x38\x37\x39\x2e\x33\x38\x30\x34\x33\x2c\x35\x31\x37\x2e\ +\x32\x36\x32\x34\x39\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\x34\x30\x31\x38\x2d\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\ +\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x33\x38\x36\x34\x2d\x30\x2d\x32\x2d\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\ +\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\ +\x36\x34\x2d\x30\x2d\x32\x2d\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x36\x2d\x36\x2d\x38\ +\x2d\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x38\ +\x2d\x32\x2d\x33\x2d\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\ +\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\ +\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x33\x38\x36\x34\x2d\x30\x2d\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\x34\x30\x37\x33\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\ +\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ +\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ +\x78\x28\x31\x2e\x35\x33\x38\x35\x36\x38\x33\x2c\x30\x2e\x35\x32\ +\x32\x34\x37\x37\x39\x35\x2c\x30\x2c\x30\x2e\x39\x36\x35\x33\x35\ +\x38\x38\x38\x2c\x2d\x39\x31\x32\x2e\x37\x34\x30\x31\x2c\x2d\x33\ +\x39\x36\x2e\x30\x34\x34\x31\x34\x29\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x78\x31\x3d\x22\x36\x36\x33\x2e\x33\x32\x37\x31\x35\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x31\x31\x34\x2e\ +\x35\x36\x35\x30\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\ +\x3d\x22\x37\x30\x39\x2e\x30\x34\x34\x30\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x79\x32\x3d\x22\x34\x38\x2e\x31\x31\x37\x36\x30\ +\x33\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x38\x36\x34\x2d\x30\x2d\x31\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\x36\x2d\ +\x36\x2d\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\x30\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x36\ +\x38\x2d\x32\x2d\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x33\x37\x39\x63\x66\x62\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\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\x32\x2e\x38\x38\x36\x32\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x36\x37\ +\x39\x2e\x30\x36\x39\x30\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x79\x31\x3d\x22\x39\x31\x2e\x35\x39\x37\x35\x32\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x36\x33\x34\x2e\x32\x30\ +\x38\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ +\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ +\x61\x74\x72\x69\x78\x28\x31\x2e\x35\x33\x38\x35\x36\x38\x33\x2c\ +\x30\x2e\x35\x32\x32\x34\x37\x37\x39\x35\x2c\x30\x2c\x30\x2e\x39\ +\x36\x35\x33\x35\x38\x38\x38\x2c\x2d\x39\x31\x32\x2e\x37\x36\x32\ +\x38\x2c\x2d\x34\x31\x37\x2e\x32\x34\x35\x36\x38\x29\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\ +\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\ +\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x30\ +\x35\x34\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\ +\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x2d\x30\x2d\x39\ +\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ +\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x33\x38\x36\x34\x2d\x30\x2d\x39\x2d\x36\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\ +\x38\x36\x36\x2d\x36\x2d\x39\x2d\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x36\x31\x39\x63\ +\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\ +\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x33\x38\x36\x38\x2d\x32\x2d\x34\x2d\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x33\ +\x37\x39\x63\x66\x62\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\ +\x20\x20\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\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x78\x3d\x22\x32\x32\x2e\x33\x35\x30\x33\x39\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\ +\x32\x34\x2e\x32\x35\x30\x35\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\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\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x74\ +\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x73\x6e\x61\x70\x2d\x6e\x6f\x64\x65\x73\x3d\x22\x66\ +\x61\x6c\x73\x65\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\ +\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\ +\x74\x61\x64\x61\x74\x61\x32\x37\x37\x31\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\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\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x35\x33\x37\ +\x35\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\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x35\x34\x38\x38\ +\x37\x31\x30\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\x64\x3d\x22\x4d\x20\x33\x31\x2e\x30\x30\x30\x37\x34\ +\x36\x2c\x34\x2e\x37\x36\x34\x33\x31\x35\x36\x20\x35\x2e\x37\x39\ +\x32\x33\x30\x36\x37\x2c\x31\x38\x2e\x39\x35\x38\x36\x35\x37\x20\ +\x6c\x20\x2d\x30\x2e\x30\x33\x30\x35\x39\x33\x2c\x30\x20\x30\x2c\ +\x30\x2e\x30\x33\x30\x35\x33\x20\x30\x2c\x32\x30\x2e\x36\x39\x36\ +\x32\x36\x37\x20\x31\x35\x2e\x34\x37\x39\x39\x34\x30\x33\x2c\x34\ +\x2e\x38\x35\x33\x35\x34\x35\x20\x2d\x31\x34\x2e\x33\x34\x38\x30\ +\x30\x37\x37\x2c\x38\x2e\x30\x38\x39\x32\x34\x39\x20\x32\x38\x2e\ +\x36\x30\x34\x32\x33\x36\x37\x2c\x38\x2e\x39\x37\x34\x34\x38\x38\ +\x20\x32\x35\x2e\x32\x36\x39\x36\x32\x36\x2c\x2d\x31\x34\x2e\x32\ +\x32\x34\x38\x36\x38\x20\x2d\x31\x35\x2e\x33\x32\x36\x39\x37\x37\ +\x2c\x2d\x34\x2e\x37\x39\x32\x34\x39\x39\x20\x31\x34\x2e\x31\x33\ +\x33\x38\x35\x39\x2c\x2d\x38\x2e\x30\x32\x38\x31\x39\x38\x20\x30\ +\x2c\x2d\x32\x30\x2e\x37\x35\x37\x33\x31\x38\x20\x2d\x32\x35\x2e\ +\x30\x32\x34\x38\x38\x34\x2c\x31\x34\x2e\x32\x32\x34\x38\x36\x38\ +\x20\x30\x2c\x31\x31\x2e\x31\x34\x31\x37\x39\x36\x20\x2d\x30\x2e\ +\x31\x35\x32\x39\x36\x33\x2c\x2d\x30\x2e\x30\x36\x31\x30\x35\x20\ +\x30\x2c\x2d\x31\x31\x2e\x31\x37\x32\x33\x32\x31\x20\x32\x35\x2e\ +\x32\x33\x39\x30\x33\x32\x2c\x2d\x31\x34\x2e\x32\x32\x34\x38\x36\ +\x38\x20\x2d\x32\x38\x2e\x36\x33\x34\x38\x33\x2c\x2d\x38\x2e\x39\ +\x34\x33\x39\x36\x31\x34\x20\x7a\x20\x6d\x20\x33\x2e\x33\x39\x35\ +\x37\x39\x38\x2c\x33\x36\x2e\x39\x39\x36\x38\x36\x36\x34\x20\x30\ +\x2e\x31\x35\x32\x39\x36\x33\x2c\x30\x2e\x30\x36\x31\x30\x35\x20\ +\x30\x2c\x36\x2e\x39\x32\x39\x32\x38\x32\x20\x37\x2e\x38\x39\x32\ +\x39\x33\x34\x2c\x2d\x34\x2e\x34\x38\x37\x32\x34\x34\x20\x31\x31\ +\x2e\x39\x30\x30\x35\x38\x37\x2c\x33\x2e\x37\x32\x34\x31\x30\x37\ +\x20\x2d\x31\x39\x2e\x32\x34\x32\x38\x35\x31\x2c\x31\x30\x2e\x38\ +\x33\x36\x35\x34\x31\x20\x2d\x32\x31\x2e\x37\x38\x32\x30\x35\x2c\ +\x2d\x36\x2e\x38\x30\x37\x31\x37\x39\x20\x31\x31\x2e\x33\x34\x39\ +\x39\x31\x37\x2c\x2d\x36\x2e\x34\x31\x30\x33\x34\x39\x20\x39\x2e\ +\x37\x32\x38\x35\x2c\x33\x2e\x30\x35\x32\x35\x34\x37\x20\x30\x2c\ +\x2d\x36\x2e\x38\x39\x38\x37\x35\x35\x20\x7a\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x32\x30\x30\ +\x2d\x35\x2d\x33\x2d\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\ +\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\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\x35\x34\x38\x38\x37\x31\x30\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\x64\x3d\x22\x6d\ +\x20\x32\x39\x2e\x35\x32\x35\x30\x36\x2c\x33\x35\x2e\x34\x34\x37\ +\x35\x39\x37\x20\x63\x20\x30\x2c\x30\x20\x2d\x31\x34\x2e\x38\x39\ +\x37\x30\x35\x39\x2c\x38\x2e\x31\x39\x31\x32\x34\x31\x20\x2d\x32\ +\x35\x2e\x32\x33\x30\x37\x37\x36\x34\x2c\x31\x34\x2e\x32\x33\x33\ +\x30\x35\x39\x20\x31\x33\x2e\x30\x32\x39\x39\x31\x39\x34\x2c\x34\ +\x2e\x31\x33\x32\x37\x32\x37\x20\x32\x38\x2e\x36\x30\x30\x37\x39\ +\x32\x34\x2c\x38\x2e\x39\x35\x38\x32\x38\x31\x20\x32\x38\x2e\x36\ +\x30\x30\x37\x39\x32\x34\x2c\x38\x2e\x39\x35\x38\x32\x38\x31\x20\ +\x30\x2c\x30\x20\x31\x34\x2e\x35\x37\x37\x36\x36\x36\x2c\x2d\x38\ +\x2e\x30\x38\x36\x37\x35\x35\x20\x32\x35\x2e\x32\x37\x35\x31\x31\ +\x39\x2c\x2d\x31\x34\x2e\x32\x33\x33\x30\x35\x39\x20\x43\x20\x34\ +\x38\x2e\x39\x35\x38\x35\x35\x37\x2c\x34\x31\x2e\x31\x36\x38\x36\ +\x36\x35\x20\x32\x39\x2e\x35\x32\x35\x30\x36\x2c\x33\x35\x2e\x34\ +\x34\x37\x35\x39\x37\x20\x32\x39\x2e\x35\x32\x35\x30\x36\x2c\x33\ +\x35\x2e\x34\x34\x37\x35\x39\x37\x20\x7a\x20\x6d\x20\x30\x2e\x33\ +\x39\x39\x30\x38\x2c\x32\x2e\x37\x36\x39\x39\x39\x35\x20\x63\x20\ +\x30\x2c\x30\x20\x31\x34\x2e\x37\x35\x36\x30\x32\x2c\x34\x2e\x36\ +\x33\x30\x38\x31\x35\x20\x32\x31\x2e\x38\x31\x36\x34\x31\x39\x2c\ +\x36\x2e\x38\x30\x37\x31\x31\x35\x20\x2d\x35\x2e\x37\x35\x37\x37\ +\x38\x33\x2c\x33\x2e\x31\x37\x36\x33\x20\x2d\x31\x39\x2e\x32\x34\ +\x34\x35\x36\x34\x2c\x31\x30\x2e\x38\x34\x34\x32\x33\x35\x20\x2d\ +\x31\x39\x2e\x32\x34\x34\x35\x36\x34\x2c\x31\x30\x2e\x38\x34\x34\ +\x32\x33\x35\x20\x30\x2c\x30\x20\x2d\x38\x2e\x31\x37\x36\x34\x34\ +\x38\x2c\x2d\x32\x2e\x35\x34\x35\x31\x31\x35\x20\x2d\x31\x31\x2e\ +\x38\x30\x35\x31\x32\x37\x2c\x2d\x33\x2e\x36\x37\x39\x36\x33\x34\ +\x20\x43\x20\x31\x37\x2e\x30\x36\x32\x31\x38\x39\x2c\x35\x31\x2e\ +\x30\x35\x34\x37\x38\x39\x20\x31\x35\x2e\x31\x30\x39\x39\x36\x35\ +\x2c\x35\x30\x2e\x35\x33\x39\x30\x36\x37\x20\x31\x30\x2e\x37\x32\ +\x33\x39\x31\x39\x2c\x34\x39\x2e\x30\x36\x31\x38\x32\x37\x20\x31\ +\x39\x2e\x35\x31\x39\x36\x39\x31\x2c\x34\x34\x2e\x34\x39\x33\x36\ +\x37\x38\x20\x32\x39\x2e\x39\x32\x34\x31\x34\x2c\x33\x38\x2e\x32\ +\x31\x37\x35\x39\x32\x20\x32\x39\x2e\x39\x32\x34\x31\x34\x2c\x33\ +\x38\x2e\x32\x31\x37\x35\x39\x32\x20\x7a\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x32\x30\x30\x2d\ +\x35\x2d\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\ +\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\ +\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x63\x63\x63\x63\x63\x63\ +\x7a\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\ +\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\ +\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x34\x30\x37\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\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\x35\x34\x38\x38\x37\ +\x31\x30\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\x64\x3d\x22\x6d\x20\x33\x2e\x31\x37\x36\x39\x36\x32\x34\ +\x2c\x31\x35\x2e\x39\x39\x31\x31\x31\x33\x20\x63\x20\x30\x2c\x30\ +\x20\x32\x32\x2e\x37\x38\x37\x38\x33\x34\x36\x2c\x37\x2e\x33\x33\ +\x39\x39\x34\x38\x20\x32\x38\x2e\x36\x33\x37\x30\x37\x30\x36\x2c\ +\x38\x2e\x39\x35\x37\x32\x35\x32\x20\x30\x2e\x31\x32\x31\x39\x36\ +\x33\x2c\x35\x2e\x32\x35\x33\x36\x36\x37\x20\x30\x2e\x30\x39\x30\ +\x39\x31\x2c\x37\x2e\x31\x33\x39\x35\x30\x37\x20\x30\x2e\x30\x39\ +\x30\x39\x31\x2c\x31\x30\x2e\x35\x39\x37\x30\x39\x20\x30\x2c\x33\ +\x2e\x34\x35\x37\x35\x38\x32\x20\x2d\x30\x2e\x30\x39\x30\x39\x31\ +\x2c\x31\x30\x2e\x31\x34\x38\x34\x30\x34\x20\x2d\x30\x2e\x30\x39\ +\x30\x39\x31\x2c\x31\x30\x2e\x31\x34\x38\x34\x30\x34\x20\x4c\x20\ +\x33\x2e\x31\x37\x36\x39\x36\x32\x34\x2c\x33\x36\x2e\x37\x33\x36\ +\x36\x30\x39\x20\x63\x20\x30\x2c\x30\x20\x2d\x31\x30\x65\x2d\x38\ +\x2c\x2d\x37\x2e\x32\x37\x39\x30\x32\x37\x20\x2d\x31\x30\x65\x2d\ +\x38\x2c\x2d\x31\x30\x2e\x37\x33\x36\x36\x31\x20\x30\x2c\x2d\x33\ +\x2e\x34\x35\x37\x35\x38\x32\x20\x31\x30\x65\x2d\x38\x2c\x2d\x31\ +\x30\x2e\x30\x30\x38\x38\x38\x36\x20\x31\x30\x65\x2d\x38\x2c\x2d\ +\x31\x30\x2e\x30\x30\x38\x38\x38\x36\x20\x7a\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x32\x30\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ +\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\ +\x70\x65\x73\x3d\x22\x63\x63\x7a\x63\x63\x7a\x63\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\ +\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\ +\x30\x31\x38\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\ +\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\ +\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3a\x31\x2e\x35\x34\x38\x38\x37\x31\x30\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\x64\x3d\x22\x6d\x20\ +\x33\x31\x2e\x39\x36\x35\x31\x36\x34\x2c\x32\x35\x2e\x30\x34\x37\ +\x34\x31\x34\x20\x63\x20\x38\x2e\x31\x35\x33\x33\x34\x35\x2c\x2d\ +\x34\x2e\x35\x38\x36\x32\x38\x31\x20\x32\x35\x2e\x30\x32\x35\x31\ +\x38\x37\x2c\x2d\x31\x34\x2e\x31\x39\x38\x34\x32\x38\x20\x32\x35\ +\x2e\x30\x32\x35\x31\x38\x37\x2c\x2d\x31\x34\x2e\x31\x39\x38\x34\ +\x32\x38\x20\x30\x2c\x30\x20\x30\x2c\x37\x2e\x38\x37\x35\x32\x35\ +\x20\x30\x2c\x31\x31\x2e\x33\x33\x32\x38\x33\x32\x20\x30\x2c\x33\ +\x2e\x34\x35\x37\x35\x38\x33\x20\x30\x2e\x30\x32\x30\x39\x38\x2c\ +\x35\x2e\x34\x35\x38\x35\x37\x33\x20\x30\x2c\x39\x2e\x34\x31\x32\ +\x36\x36\x33\x20\x2d\x37\x2e\x34\x37\x35\x35\x32\x36\x2c\x34\x2e\ +\x30\x34\x34\x39\x39\x39\x20\x2d\x32\x35\x2e\x30\x32\x35\x31\x38\ +\x37\x2c\x31\x34\x2e\x31\x39\x38\x34\x32\x37\x20\x2d\x32\x35\x2e\ +\x30\x32\x35\x31\x38\x37\x2c\x31\x34\x2e\x31\x39\x38\x34\x32\x37\ +\x20\x30\x2c\x30\x20\x2d\x30\x2e\x30\x36\x32\x34\x34\x2c\x2d\x31\ +\x31\x2e\x37\x39\x35\x35\x37\x37\x20\x30\x2c\x2d\x32\x30\x2e\x37\ +\x34\x35\x34\x39\x34\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x32\x30\x30\x2d\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ +\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\ +\x73\x3d\x22\x63\x63\x7a\x63\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\ +\x30\x30\x30\x3b\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x34\x30\x35\x34\ +\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\ +\x2e\x35\x34\x38\x38\x37\x31\x30\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\x64\x3d\x22\x4d\x20\x32\x38\x2e\ +\x34\x30\x36\x37\x30\x39\x2c\x31\x2e\x37\x39\x36\x32\x34\x31\x36\ +\x20\x43\x20\x34\x37\x2e\x34\x36\x32\x30\x38\x38\x2c\x37\x2e\x38\ +\x37\x32\x30\x30\x34\x39\x20\x35\x37\x2e\x30\x34\x33\x37\x38\x32\ +\x2c\x31\x30\x2e\x37\x35\x33\x34\x39\x33\x20\x35\x37\x2e\x30\x34\ +\x33\x37\x38\x32\x2c\x31\x30\x2e\x37\x35\x33\x34\x39\x33\x20\x4c\ +\x20\x33\x31\x2e\x37\x39\x31\x39\x30\x32\x2c\x32\x34\x2e\x39\x38\ +\x33\x38\x37\x34\x20\x33\x2e\x31\x35\x34\x38\x32\x39\x31\x2c\x31\ +\x36\x2e\x30\x32\x36\x36\x32\x33\x20\x63\x20\x30\x2c\x30\x20\x31\ +\x30\x2e\x32\x30\x36\x36\x39\x33\x39\x2c\x2d\x35\x2e\x33\x38\x38\ +\x32\x31\x39\x20\x31\x34\x2e\x34\x31\x35\x33\x34\x30\x39\x2c\x2d\ +\x37\x2e\x37\x35\x39\x39\x34\x38\x37\x20\x34\x2e\x32\x30\x38\x36\ +\x34\x36\x2c\x2d\x32\x2e\x33\x37\x31\x37\x33\x30\x32\x20\x35\x2e\ +\x33\x32\x36\x36\x31\x34\x2c\x2d\x33\x2e\x31\x38\x32\x35\x35\x39\ +\x36\x20\x31\x30\x2e\x38\x33\x36\x35\x33\x39\x2c\x2d\x36\x2e\x34\ +\x37\x30\x34\x33\x32\x37\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x32\x30\x30\x2d\x35\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\ +\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\ +\x65\x73\x3d\x22\x63\x63\x63\x63\x7a\x63\x22\x20\x2f\x3e\x0a\x20\ +\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ " qt_resource_name = "\ @@ -31952,68 +70009,68 @@ qt_resource_struct = "\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x27\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\x02\x72\x00\x00\x00\x00\x00\x01\x00\x0a\x12\xe5\ +\x00\x00\x01\xe6\x00\x00\x00\x00\x00\x01\x00\x06\x98\x60\ +\x00\x00\x01\x76\x00\x00\x00\x00\x00\x01\x00\x03\xd8\x3a\ +\x00\x00\x02\x3a\x00\x00\x00\x00\x00\x01\x00\x08\xa7\xeb\ +\x00\x00\x02\x1e\x00\x00\x00\x00\x00\x01\x00\x07\xf4\xd4\ +\x00\x00\x01\x3e\x00\x00\x00\x00\x00\x01\x00\x02\x9a\xfe\ +\x00\x00\x02\x02\x00\x00\x00\x00\x00\x01\x00\x07\x42\xe5\ +\x00\x00\x00\xce\x00\x00\x00\x00\x00\x01\x00\x00\x1b\x34\ +\x00\x00\x02\x56\x00\x00\x00\x00\x00\x01\x00\x09\x61\x44\ +\x00\x00\x01\x22\x00\x00\x00\x00\x00\x01\x00\x01\xf2\x87\ +\x00\x00\x01\x92\x00\x00\x00\x00\x00\x01\x00\x04\x88\x61\ +\x00\x00\x01\x5a\x00\x00\x00\x00\x00\x01\x00\x03\x42\x89\ +\x00\x00\x01\x06\x00\x00\x00\x00\x00\x01\x00\x01\x3b\xe4\ +\x00\x00\x00\xea\x00\x00\x00\x00\x00\x01\x00\x00\x90\x1f\ +\x00\x00\x01\xca\x00\x00\x00\x00\x00\x01\x00\x05\xeb\x6f\ +\x00\x00\x01\xae\x00\x00\x00\x00\x00\x01\x00\x05\x3a\xa0\ \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\xb0\x00\x00\x00\x00\x00\x01\x00\x00\x06\x29\ \x00\x00\x00\x64\x00\x00\x00\x00\x00\x01\x00\x00\x01\x64\ \x00\x00\x00\x96\x00\x00\x00\x00\x00\x01\x00\x00\x04\xc4\ \x00\x00\x00\x7c\x00\x00\x00\x00\x00\x01\x00\x00\x03\x12\ -\x00\x00\x05\x78\x00\x01\x00\x00\x00\x01\x00\x06\x83\x76\ -\x00\x00\x03\x70\x00\x00\x00\x00\x00\x01\x00\x05\xfa\x81\ -\x00\x00\x06\xf8\x00\x01\x00\x00\x00\x01\x00\x07\x07\x04\ -\x00\x00\x04\x58\x00\x01\x00\x00\x00\x01\x00\x06\x32\x49\ -\x00\x00\x05\xc0\x00\x00\x00\x00\x00\x01\x00\x06\xa0\xc0\ -\x00\x00\x06\x82\x00\x01\x00\x00\x00\x01\x00\x06\xe5\xf8\ -\x00\x00\x08\xc8\x00\x01\x00\x00\x00\x01\x00\x07\xa5\xa0\ -\x00\x00\x03\xb6\x00\x01\x00\x00\x00\x01\x00\x06\x13\xa3\ -\x00\x00\x05\x9a\x00\x00\x00\x00\x00\x01\x00\x06\x8e\x2a\ -\x00\x00\x06\x08\x00\x01\x00\x00\x00\x01\x00\x06\xb9\x85\ -\x00\x00\x03\x92\x00\x01\x00\x00\x00\x01\x00\x06\x09\x37\ -\x00\x00\x08\x52\x00\x00\x00\x00\x00\x01\x00\x07\x87\xe6\ -\x00\x00\x03\x14\x00\x01\x00\x00\x00\x01\x00\x05\xe9\xeb\ -\x00\x00\x04\xa8\x00\x01\x00\x00\x00\x01\x00\x06\x4d\x68\ -\x00\x00\x08\x0a\x00\x01\x00\x00\x00\x01\x00\x07\x73\xf0\ -\x00\x00\x08\x2c\x00\x01\x00\x00\x00\x01\x00\x07\x7e\x52\ -\x00\x00\x04\x86\x00\x00\x00\x00\x00\x01\x00\x06\x3b\x4f\ -\x00\x00\x02\xe2\x00\x01\x00\x00\x00\x01\x00\x05\xe2\x32\ -\x00\x00\x07\xc2\x00\x00\x00\x00\x00\x01\x00\x07\x4a\x66\ -\x00\x00\x04\xfc\x00\x01\x00\x00\x00\x01\x00\x06\x5e\xd8\ -\x00\x00\x07\xe6\x00\x00\x00\x00\x00\x01\x00\x07\x61\x19\ -\x00\x00\x06\x5c\x00\x00\x00\x00\x00\x01\x00\x06\xd4\x40\ -\x00\x00\x04\x0a\x00\x01\x00\x00\x00\x01\x00\x06\x21\x6b\ -\x00\x00\x03\x40\x00\x01\x00\x00\x00\x01\x00\x05\xf1\xf2\ -\x00\x00\x07\x1a\x00\x01\x00\x00\x00\x01\x00\x07\x0f\xad\ -\x00\x00\x08\x78\x00\x00\x00\x00\x00\x01\x00\x07\x90\x73\ -\x00\x00\x05\x56\x00\x01\x00\x00\x00\x01\x00\x06\x76\x17\ -\x00\x00\x06\x34\x00\x01\x00\x00\x00\x01\x00\x06\xca\x8f\ -\x00\x00\x07\x70\x00\x00\x00\x00\x00\x01\x00\x07\x2c\x02\ -\x00\x00\x04\x2e\x00\x01\x00\x00\x00\x01\x00\x06\x28\x08\ -\x00\x00\x04\xdc\x00\x01\x00\x00\x00\x01\x00\x06\x59\x59\ -\x00\x00\x07\x92\x00\x01\x00\x00\x00\x01\x00\x07\x40\x93\ -\x00\x00\x06\xa8\x00\x01\x00\x00\x00\x01\x00\x06\xeb\xbc\ -\x00\x00\x06\xd0\x00\x01\x00\x00\x00\x01\x00\x06\xf7\x2e\ -\x00\x00\x08\x9e\x00\x01\x00\x00\x00\x01\x00\x07\x9b\x1e\ -\x00\x00\x03\xda\x00\x01\x00\x00\x00\x01\x00\x06\x19\x22\ -\x00\x00\x05\x2a\x00\x00\x00\x00\x00\x01\x00\x06\x66\xbd\ -\x00\x00\x05\xe8\x00\x01\x00\x00\x00\x01\x00\x06\xb0\x11\ -\x00\x00\x07\x3e\x00\x00\x00\x00\x00\x01\x00\x07\x16\xfe\ -\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\xa8\ +\x00\x00\x05\x78\x00\x00\x00\x00\x00\x01\x00\x0d\xd3\xb3\ +\x00\x00\x03\x70\x00\x00\x00\x00\x00\x01\x00\x0b\xe5\x15\ +\x00\x00\x06\xf8\x00\x00\x00\x00\x00\x01\x00\x0f\x67\x5d\ +\x00\x00\x04\x58\x00\x00\x00\x00\x00\x01\x00\x0c\xba\x09\ +\x00\x00\x05\xc0\x00\x00\x00\x00\x00\x01\x00\x0e\x1f\xca\ +\x00\x00\x06\x82\x00\x00\x00\x00\x00\x01\x00\x0e\xd3\xc0\ +\x00\x00\x08\xc8\x00\x00\x00\x00\x00\x01\x00\x10\xc3\xe6\ +\x00\x00\x03\xb6\x00\x00\x00\x00\x00\x01\x00\x0c\x26\x79\ +\x00\x00\x05\x9a\x00\x00\x00\x00\x00\x01\x00\x0e\x0d\x34\ +\x00\x00\x06\x08\x00\x00\x00\x00\x00\x01\x00\x0e\x57\x22\ +\x00\x00\x03\x92\x00\x00\x00\x00\x00\x01\x00\x0b\xf3\xcb\ +\x00\x00\x08\x52\x00\x00\x00\x00\x00\x01\x00\x10\x77\x61\ +\x00\x00\x03\x14\x00\x00\x00\x00\x00\x01\x00\x0b\xaa\x38\ +\x00\x00\x04\xa8\x00\x00\x00\x00\x00\x01\x00\x0d\x01\x93\ +\x00\x00\x08\x0a\x00\x00\x00\x00\x00\x01\x00\x10\x2a\xb8\ +\x00\x00\x08\x2c\x00\x00\x00\x00\x00\x01\x00\x10\x53\xf0\ +\x00\x00\x04\x86\x00\x00\x00\x00\x00\x01\x00\x0c\xef\x7a\ +\x00\x00\x02\xe2\x00\x00\x00\x00\x00\x01\x00\x0b\x8f\xc6\ +\x00\x00\x07\xc2\x00\x00\x00\x00\x00\x01\x00\x10\x01\x2e\ +\x00\x00\x04\xfc\x00\x00\x00\x00\x00\x01\x00\x0d\x58\x68\ +\x00\x00\x07\xe6\x00\x00\x00\x00\x00\x01\x00\x10\x17\xe1\ +\x00\x00\x06\x5c\x00\x00\x00\x00\x00\x01\x00\x0e\xc2\x08\ +\x00\x00\x04\x0a\x00\x00\x00\x00\x00\x01\x00\x0c\x67\x98\ +\x00\x00\x03\x40\x00\x00\x00\x00\x00\x01\x00\x0b\xc8\x73\ +\x00\x00\x07\x1a\x00\x00\x00\x00\x00\x01\x00\x0f\x86\xb3\ +\x00\x00\x08\x78\x00\x00\x00\x00\x00\x01\x00\x10\x7f\xee\ +\x00\x00\x05\x56\x00\x00\x00\x00\x00\x01\x00\x0d\x90\x54\ +\x00\x00\x06\x34\x00\x00\x00\x00\x00\x01\x00\x0e\xa0\xcf\ +\x00\x00\x07\x70\x00\x00\x00\x00\x00\x01\x00\x0f\xb6\xaf\ +\x00\x00\x04\x2e\x00\x00\x00\x00\x00\x01\x00\x0c\x84\x51\ +\x00\x00\x04\xdc\x00\x00\x00\x00\x00\x01\x00\x0d\x3e\x49\ +\x00\x00\x07\x92\x00\x00\x00\x00\x00\x01\x00\x0f\xcb\x40\ +\x00\x00\x06\xa8\x00\x00\x00\x00\x00\x01\x00\x0e\xe7\x82\ +\x00\x00\x06\xd0\x00\x00\x00\x00\x00\x01\x00\x0f\x14\xbf\ +\x00\x00\x08\x9e\x00\x00\x00\x00\x00\x01\x00\x10\x8a\x99\ +\x00\x00\x03\xda\x00\x00\x00\x00\x00\x01\x00\x0c\x40\x99\ +\x00\x00\x05\x2a\x00\x00\x00\x00\x00\x01\x00\x0d\x80\xfa\ +\x00\x00\x05\xe8\x00\x00\x00\x00\x00\x01\x00\x0e\x2f\x1b\ +\x00\x00\x07\x3e\x00\x00\x00\x00\x00\x01\x00\x0f\xa1\xab\ +\x00\x00\x02\x8e\x00\x00\x00\x00\x00\x01\x00\x0a\xbf\x1e\ +\x00\x00\x02\xba\x00\x00\x00\x00\x00\x01\x00\x0a\xfb\x07\ " def qInitResources(): diff --git a/src/Mod/Draft/Resources/ui/userprefs-import.ui b/src/Mod/Draft/Resources/ui/userprefs-import.ui index 6e7af997b..918ce31a1 100755 --- a/src/Mod/Draft/Resources/ui/userprefs-import.ui +++ b/src/Mod/Draft/Resources/ui/userprefs-import.ui @@ -356,6 +356,43 @@ If color mapping is choosed, you must choose a color mapping file containing a t + + + + + + Export Style + + + + + + + Style of SVG file to write when exporting a Sketch. + + + 0 + + + svg_export_style + + + Mod/Draft + + + + Translated (for print & display) + + + + + Raw (for CAM) + + + + + + diff --git a/src/Mod/Draft/importSVG.py b/src/Mod/Draft/importSVG.py index e071ebf20..bf00d0732 100644 --- a/src/Mod/Draft/importSVG.py +++ b/src/Mod/Draft/importSVG.py @@ -938,6 +938,11 @@ def insert(filename,docname): def export(exportList,filename): "called when freecad exports a file" + svg_export_style = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Draft").GetInt("svg_export_style") + if svg_export_style != 0 and svg_export_style != 1: + print "unknown svg export style, switching to Translated" + svg_export_style = 0 + # finding sheet size minx = 10000 miny = 10000 @@ -950,7 +955,13 @@ def export(exportList,filename): if v.Point.x > maxx: maxx = v.Point.x if v.Point.y < miny: miny = v.Point.y if v.Point.y > maxy: maxy = v.Point.y - margin = (maxx-minx)*.01 + if svg_export_style == 0: + # translated-style exports get a bit of a margin + margin = (maxx-minx)*.01 + else: + # raw-style exports get no margin + margin = 0 + minx -= margin maxx += margin miny -= margin @@ -969,13 +980,25 @@ def export(exportList,filename): svg.write(' "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">\n') svg.write('\n') # writing paths for ob in exportList: - svg.write('\n') + if svg_export_style == 0: + # translated-style exports have the entire sketch translated to fit in the X>0, Y>0 quadrant + svg.write('\n') + else: + # raw-style exports do not translate the sketch + svg.write('\n') svg.write(Draft.getSVG(ob)) svg.write('\n') From a0e7e4bfcc1a1c0a7c957c96c87b642718c92993 Mon Sep 17 00:00:00 2001 From: Sebastian Kuzminsky Date: Fri, 10 Feb 2012 00:32:02 -0700 Subject: [PATCH 15/18] remove some old dead code --- src/Mod/Draft/importSVG.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Mod/Draft/importSVG.py b/src/Mod/Draft/importSVG.py index bf00d0732..ce8c2cfb3 100644 --- a/src/Mod/Draft/importSVG.py +++ b/src/Mod/Draft/importSVG.py @@ -969,7 +969,6 @@ def export(exportList,filename): sizex = maxx-minx sizey = maxy-miny miny += margin - boty = sizey+miny # writing header # we specify the svg width and height in FreeCAD's physical units (mm), @@ -1005,4 +1004,3 @@ def export(exportList,filename): # closing svg.write('') svg.close() - FreeCAD.Console.PrintMessage("successfully exported "+filename) From 4b815347f237b48e347ea5823e1d41d06c351fec Mon Sep 17 00:00:00 2001 From: Sebastian Hoogen Date: Mon, 16 Jan 2012 21:01:26 +0100 Subject: [PATCH 16/18] importSVG multiple changes reordered path command control structure adding rounded rect and elliptical arc support --- src/Mod/Draft/importSVG.py | 788 ++++++++++++++++++++----------------- 1 file changed, 431 insertions(+), 357 deletions(-) diff --git a/src/Mod/Draft/importSVG.py b/src/Mod/Draft/importSVG.py index ce8c2cfb3..71e0103ce 100644 --- a/src/Mod/Draft/importSVG.py +++ b/src/Mod/Draft/importSVG.py @@ -28,12 +28,15 @@ __url__ = ["http://free-cad.sourceforge.net"] ''' This script imports SVG files in FreeCAD. Currently only reads the following entities: paths, lines, circular arcs ,rects, circles, ellipses, polygons, polylines. -currently unsupported: image, rounded rect(rx,ry), elliptical arcs +currently unsupported: use, image ''' #ToDo: -# elliptical arc segments -# rounded rects (elliptical arcs) # ignoring CDATA +# handle image element (external references and inline base64) +# debug Problem with 'Sans' font from Inkscape +# debug Problem with fill color +# implement inherting fill style from group +# handle viewbox and units import xml.sax, string, FreeCAD, os, math, re, Draft from draftlibs import fcvec @@ -48,154 +51,154 @@ except: draftui = None pythonopen = open svgcolors = { - 'Pink': [255, 192, 203], - 'Blue': [0, 0, 255], - 'Honeydew': [240, 255, 240], - 'Purple': [128, 0, 128], - 'Fuchsia': [255, 0, 255], - 'LawnGreen': [124, 252, 0], - 'Amethyst': [153, 102, 204], - 'Crimson': [220, 20, 60], - 'White': [255, 255, 255], - 'NavajoWhite': [255, 222, 173], - 'Cornsilk': [255, 248, 220], - 'Bisque': [255, 228, 196], - 'PaleGreen': [152, 251, 152], - 'Brown': [165, 42, 42], - 'DarkTurquoise': [0, 206, 209], - 'DarkGreen': [0, 100, 0], - 'MediumOrchid': [186, 85, 211], - 'Chocolate': [210, 105, 30], - 'PapayaWhip': [255, 239, 213], - 'Olive': [128, 128, 0], - 'Silver': [192, 192, 192], - 'PeachPuff': [255, 218, 185], - 'Plum': [221, 160, 221], - 'DarkGoldenrod': [184, 134, 11], - 'SlateGrey': [112, 128, 144], - 'MintCream': [245, 255, 250], - 'CornflowerBlue': [100, 149, 237], - 'Gold': [255, 215, 0], - 'HotPink': [255, 105, 180], - 'DarkBlue': [0, 0, 139], - 'LimeGreen': [50, 205, 50], - 'DeepSkyBlue': [0, 191, 255], - 'DarkKhaki': [189, 183, 107], - 'LightGrey': [211, 211, 211], - 'Yellow': [255, 255, 0], - 'Gainsboro': [220, 220, 220], - 'MistyRose': [255, 228, 225], - 'SandyBrown': [244, 164, 96], - 'DeepPink': [255, 20, 147], - 'Magenta': [255, 0, 255], - 'AliceBlue': [240, 248, 255], - 'DarkCyan': [0, 139, 139], - 'DarkSlateGrey': [47, 79, 79], - 'GreenYellow': [173, 255, 47], - 'DarkOrchid': [153, 50, 204], - 'OliveDrab': [107, 142, 35], - 'Chartreuse': [127, 255, 0], - 'Peru': [205, 133, 63], - 'Orange': [255, 165, 0], - 'Red': [255, 0, 0], - 'Wheat': [245, 222, 179], - 'LightCyan': [224, 255, 255], - 'LightSeaGreen': [32, 178, 170], - 'BlueViolet': [138, 43, 226], - 'LightSlateGrey': [119, 136, 153], - 'Cyan': [0, 255, 255], - 'MediumPurple': [147, 112, 219], - 'MidnightBlue': [25, 25, 112], - 'FireBrick': [178, 34, 34], - 'PaleTurquoise': [175, 238, 238], - 'PaleGoldenrod': [238, 232, 170], - 'Gray': [128, 128, 128], - 'MediumSeaGreen': [60, 179, 113], - 'Moccasin': [255, 228, 181], - 'Ivory': [255, 255, 240], - 'DarkSlateBlue': [72, 61, 139], - 'Beige': [245, 245, 220], - 'Green': [0, 128, 0], - 'SlateBlue': [106, 90, 205], - 'Teal': [0, 128, 128], - 'Azure': [240, 255, 255], - 'LightSteelBlue': [176, 196, 222], - 'DimGrey': [105, 105, 105], - 'Tan': [210, 180, 140], - 'AntiqueWhite': [250, 235, 215], - 'SkyBlue': [135, 206, 235], - 'GhostWhite': [248, 248, 255], - 'MediumTurquoise': [72, 209, 204], - 'FloralWhite': [255, 250, 240], - 'LavenderBlush': [255, 240, 245], - 'SeaGreen': [46, 139, 87], - 'Lavender': [230, 230, 250], - 'BlanchedAlmond': [255, 235, 205], - 'DarkOliveGreen': [85, 107, 47], - 'DarkSeaGreen': [143, 188, 143], - 'SpringGreen': [0, 255, 127], - 'Navy': [0, 0, 128], - 'Orchid': [218, 112, 214], - 'SaddleBrown': [139, 69, 19], - 'IndianRed': [205, 92, 92], - 'Snow': [255, 250, 250], - 'SteelBlue': [70, 130, 180], - 'MediumSlateBlue': [123, 104, 238], - 'Black': [0, 0, 0], - 'LightBlue': [173, 216, 230], - 'Turquoise': [64, 224, 208], - 'MediumVioletRed': [199, 21, 133], - 'DarkViolet': [148, 0, 211], - 'DarkGray': [169, 169, 169], - 'Salmon': [250, 128, 114], - 'DarkMagenta': [139, 0, 139], - 'Tomato': [255, 99, 71], - 'WhiteSmoke': [245, 245, 245], - 'Goldenrod': [218, 165, 32], - 'MediumSpringGreen': [0, 250, 154], - 'DodgerBlue': [30, 144, 255], - 'Aqua': [0, 255, 255], - 'ForestGreen': [34, 139, 34], - 'LemonChiffon': [255, 250, 205], - 'LightSlateGray': [119, 136, 153], - 'SlateGray': [112, 128, 144], - 'LightGray': [211, 211, 211], - 'Indigo': [75, 0, 130], - 'CadetBlue': [95, 158, 160], - 'LightYellow': [255, 255, 224], - 'DarkOrange': [255, 140, 0], - 'PowderBlue': [176, 224, 230], - 'RoyalBlue': [65, 105, 225], - 'Sienna': [160, 82, 45], - 'Thistle': [216, 191, 216], - 'Lime': [0, 255, 0], - 'Seashell': [255, 245, 238], - 'DarkRed': [139, 0, 0], - 'LightSkyBlue': [135, 206, 250], - 'YellowGreen': [154, 205, 50], - 'Aquamarine': [127, 255, 212], - 'LightCoral': [240, 128, 128], - 'DarkSlateGray': [47, 79, 79], - 'Khaki': [240, 230, 140], - 'DarkGrey': [169, 169, 169], - 'BurlyWood': [222, 184, 135], - 'LightGoldenrodYellow': [250, 250, 210], - 'MediumBlue': [0, 0, 205], - 'DarkSalmon': [233, 150, 122], - 'RosyBrown': [188, 143, 143], - 'LightSalmon': [255, 160, 122], - 'PaleVioletRed': [219, 112, 147], - 'Coral': [255, 127, 80], - 'Violet': [238, 130, 238], - 'Grey': [128, 128, 128], - 'LightGreen': [144, 238, 144], - 'Linen': [250, 240, 230], - 'OrangeRed': [255, 69, 0], - 'DimGray': [105, 105, 105], - 'Maroon': [128, 0, 0], - 'LightPink': [255, 182, 193], - 'MediumAquamarine': [102, 205, 170], - 'OldLace': [253, 245, 230] + 'Pink': (255, 192, 203), + 'Blue': (0, 0, 255), + 'Honeydew': (240, 255, 240), + 'Purple': (128, 0, 128), + 'Fuchsia': (255, 0, 255), + 'LawnGreen': (124, 252, 0), + 'Amethyst': (153, 102, 204), + 'Crimson': (220, 20, 60), + 'White': (255, 255, 255), + 'NavajoWhite': (255, 222, 173), + 'Cornsilk': (255, 248, 220), + 'Bisque': (255, 228, 196), + 'PaleGreen': (152, 251, 152), + 'Brown': (165, 42, 42), + 'DarkTurquoise': (0, 206, 209), + 'DarkGreen': (0, 100, 0), + 'MediumOrchid': (186, 85, 211), + 'Chocolate': (210, 105, 30), + 'PapayaWhip': (255, 239, 213), + 'Olive': (128, 128, 0), + 'Silver': (192, 192, 192), + 'PeachPuff': (255, 218, 185), + 'Plum': (221, 160, 221), + 'DarkGoldenrod': (184, 134, 11), + 'SlateGrey': (112, 128, 144), + 'MintCream': (245, 255, 250), + 'CornflowerBlue': (100, 149, 237), + 'Gold': (255, 215, 0), + 'HotPink': (255, 105, 180), + 'DarkBlue': (0, 0, 139), + 'LimeGreen': (50, 205, 50), + 'DeepSkyBlue': (0, 191, 255), + 'DarkKhaki': (189, 183, 107), + 'LightGrey': (211, 211, 211), + 'Yellow': (255, 255, 0), + 'Gainsboro': (220, 220, 220), + 'MistyRose': (255, 228, 225), + 'SandyBrown': (244, 164, 96), + 'DeepPink': (255, 20, 147), + 'Magenta': (255, 0, 255), + 'AliceBlue': (240, 248, 255), + 'DarkCyan': (0, 139, 139), + 'DarkSlateGrey': (47, 79, 79), + 'GreenYellow': (173, 255, 47), + 'DarkOrchid': (153, 50, 204), + 'OliveDrab': (107, 142, 35), + 'Chartreuse': (127, 255, 0), + 'Peru': (205, 133, 63), + 'Orange': (255, 165, 0), + 'Red': (255, 0, 0), + 'Wheat': (245, 222, 179), + 'LightCyan': (224, 255, 255), + 'LightSeaGreen': (32, 178, 170), + 'BlueViolet': (138, 43, 226), + 'LightSlateGrey': (119, 136, 153), + 'Cyan': (0, 255, 255), + 'MediumPurple': (147, 112, 219), + 'MidnightBlue': (25, 25, 112), + 'FireBrick': (178, 34, 34), + 'PaleTurquoise': (175, 238, 238), + 'PaleGoldenrod': (238, 232, 170), + 'Gray': (128, 128, 128), + 'MediumSeaGreen': (60, 179, 113), + 'Moccasin': (255, 228, 181), + 'Ivory': (255, 255, 240), + 'DarkSlateBlue': (72, 61, 139), + 'Beige': (245, 245, 220), + 'Green': (0, 128, 0), + 'SlateBlue': (106, 90, 205), + 'Teal': (0, 128, 128), + 'Azure': (240, 255, 255), + 'LightSteelBlue': (176, 196, 222), + 'DimGrey': (105, 105, 105), + 'Tan': (210, 180, 140), + 'AntiqueWhite': (250, 235, 215), + 'SkyBlue': (135, 206, 235), + 'GhostWhite': (248, 248, 255), + 'MediumTurquoise': (72, 209, 204), + 'FloralWhite': (255, 250, 240), + 'LavenderBlush': (255, 240, 245), + 'SeaGreen': (46, 139, 87), + 'Lavender': (230, 230, 250), + 'BlanchedAlmond': (255, 235, 205), + 'DarkOliveGreen': (85, 107, 47), + 'DarkSeaGreen': (143, 188, 143), + 'SpringGreen': (0, 255, 127), + 'Navy': (0, 0, 128), + 'Orchid': (218, 112, 214), + 'SaddleBrown': (139, 69, 19), + 'IndianRed': (205, 92, 92), + 'Snow': (255, 250, 250), + 'SteelBlue': (70, 130, 180), + 'MediumSlateBlue': (123, 104, 238), + 'Black': (0, 0, 0), + 'LightBlue': (173, 216, 230), + 'Turquoise': (64, 224, 208), + 'MediumVioletRed': (199, 21, 133), + 'DarkViolet': (148, 0, 211), + 'DarkGray': (169, 169, 169), + 'Salmon': (250, 128, 114), + 'DarkMagenta': (139, 0, 139), + 'Tomato': (255, 99, 71), + 'WhiteSmoke': (245, 245, 245), + 'Goldenrod': (218, 165, 32), + 'MediumSpringGreen': (0, 250, 154), + 'DodgerBlue': (30, 144, 255), + 'Aqua': (0, 255, 255), + 'ForestGreen': (34, 139, 34), + 'LemonChiffon': (255, 250, 205), + 'LightSlateGray': (119, 136, 153), + 'SlateGray': (112, 128, 144), + 'LightGray': (211, 211, 211), + 'Indigo': (75, 0, 130), + 'CadetBlue': (95, 158, 160), + 'LightYellow': (255, 255, 224), + 'DarkOrange': (255, 140, 0), + 'PowderBlue': (176, 224, 230), + 'RoyalBlue': (65, 105, 225), + 'Sienna': (160, 82, 45), + 'Thistle': (216, 191, 216), + 'Lime': (0, 255, 0), + 'Seashell': (255, 245, 238), + 'DarkRed': (139, 0, 0), + 'LightSkyBlue': (135, 206, 250), + 'YellowGreen': (154, 205, 50), + 'Aquamarine': (127, 255, 212), + 'LightCoral': (240, 128, 128), + 'DarkSlateGray': (47, 79, 79), + 'Khaki': (240, 230, 140), + 'DarkGrey': (169, 169, 169), + 'BurlyWood': (222, 184, 135), + 'LightGoldenrodYellow': (250, 250, 210), + 'MediumBlue': (0, 0, 205), + 'DarkSalmon': (233, 150, 122), + 'RosyBrown': (188, 143, 143), + 'LightSalmon': (255, 160, 122), + 'PaleVioletRed': (219, 112, 147), + 'Coral': (255, 127, 80), + 'Violet': (238, 130, 238), + 'Grey': (128, 128, 128), + 'LightGreen': (144, 238, 144), + 'Linen': (250, 240, 230), + 'OrangeRed': (255, 69, 0), + 'DimGray': (105, 105, 105), + 'Maroon': (128, 0, 0), + 'LightPink': (255, 182, 193), + 'MediumAquamarine': (102, 205, 170), + 'OldLace': (253, 245, 230) } def getcolor(color): @@ -227,6 +230,85 @@ def getsize(width): except ValueError: return width +def makewire(path,checkclosed=False,donttry=False): + '''try to make a wire out of the list of edges. If the 'Wire' functions fails or the wire is not + closed if required the 'connectEdgesToWires' function is used''' + #ToDo Do not catch all exceptions + if not donttry: + try: + sh = Part.Wire(path) + isok = (not checkclosed) or sh.isClosed() + except:# BRep_API:command not done + isok = False + if donttry or not isok: + #Code from wmayer forum p15549 to fix the tolerance problem + #original tolerance = 0.00001 + comp=Part.Compound(path) + sh = comp.connectEdgesToWires(False,10**(-1*(Draft.precision()-2))).Wires[0] + return sh + +def arccenter2end(center,rx,ry,angle1,angledelta,xrotation=0.0): + '''calculate start and end vector and flags of an arc given in center parametrization + see http://www.w3.org/TR/SVG/implnote.html#ArcImplementationNotes + returns (v1,v2,largerc,sweep)''' + vr1=Vector(rx*math.cos(angle1),ry*math.sin(angle1),0) + vr2=Vector(rx*math.cos(angle1+angledelta),ry*math.sin(angle1+angledelta),0) + mxrot=FreeCAD.Matrix() + mxrot.rotateZ(xrotation) + v1 = mxrot.multiply(vr1).add(center) + v2 = mxrot.multiply(vr2).add(center) + fa = ((abs(angledelta) / math.pi) % 2) > 1 # <180deg + fs = angledelta < 0 + return v1,v2,fa,fs + +def arcend2center(lastvec,currentvec,rx,ry,xrotation=0.0,correction=False): + '''calculate (positive and negative) possible centers for an arc in endpoint parameterization + see http://www.w3.org/TR/SVG/implnote.html#ArcImplementationNotes + rotation or x-axis has to be specified in radians (CCW) + the sweepflag is interpreted as: sweepflag <==> arc is travelled clockwise + returns [(vcenter+,angle1+,angledelta+),(...-)]''' + #scalefacsign = 1 if (largeflag != sweepflag) else -1 + rx = float(rx) + ry = float(ry) + v0 = lastvec.sub(currentvec) + v0 = v0.multiply(0.5) + m1=FreeCAD.Matrix() + m1.rotateZ(-xrotation) #Formular 6.5.1 + v1=m1.multiply(v0) + if correction: + eparam = v1.x**2 / rx**2 + v1.y**2 / ry**2 + if eparam > 1: + eproot = math.sqrt(eparam) + rx = eproot * rx + ry = eproot * ry + denom = rx**2 * v1.y**2+ ry**2 * v1.x**2 + numer = rx**2 * ry**2 -denom + results=[] + if abs(numer/denom) < 10**(-1*(Draft.precision())): + scalefacpos = 0 + else: + try: + scalefacpos = math.sqrt(numer/denom) + except ValueError: + print 'sqrt(%f/%f)' % (numer,denom) + scalefacpos = 0 + for scalefacsign in (1,-1): + scalefac = scalefacpos * scalefacsign + vcx1 = Vector(v1.y*rx/ry,-v1.x*ry/rx,0).multiply(scalefac) # Step2 F.6.5.2 + m2=FreeCAD.Matrix() + m2.rotateZ(xrotation) + centeroff = currentvec.add(lastvec) + centeroff = fcvec.scale(centeroff,.5) + vcenter = m2.multiply(vcx1).add(centeroff) # Step3 F.6.5.3 + #angle1 = Vector(1,0,0).getAngle(Vector((v1.x-vcx1.x)/rx,(v1.y-vcx1.y)/ry,0)) # F.6.5.5 + #angledelta = Vector((v1.x-vcx1.x)/rx,(v1.y-vcx1.y)/ry,0).getAngle(Vector((-v1.x-vcx1.x)/rx,(-v1.y-vcx1.y)/ry,0)) # F.6.5.6 + #we need the right sign for the angle + angle1 = fcvec.angle(Vector(1,0,0),Vector((v1.x-vcx1.x)/rx,(v1.y-vcx1.y)/ry,0)) # F.6.5.5 + angledelta = fcvec.angle(Vector((v1.x-vcx1.x)/rx,(v1.y-vcx1.y)/ry,0),Vector((-v1.x-vcx1.x)/rx,(-v1.y-vcx1.y)/ry,0)) # F.6.5.6 + results.append((vcenter,angle1,angledelta)) + return results,(rx,ry) + + def getrgb(color): "returns a rgb value #000000 from a freecad color" r = str(hex(int(color[0]*255)))[2:].zfill(2) @@ -364,203 +446,159 @@ class svgHandler(xml.sax.ContentHandler): obj = Draft.makeDimension(p1,p2,p3) self.applyTrans(obj) self.format(obj) - pathdata = [] self.lastdim = obj + data['d']=[] pathcommandsre=re.compile('\s*?([mMlLhHvVaAcCqQsStTzZ])\s*?([^mMlLhHvVaAcCqQsStTzZ]*)\s*?',re.DOTALL) for d,pointsstr in pathcommandsre.findall(' '.join(data['d'])): - #for d in pathdata: - if (d == "M"): - command = "move" - relative = False - point = [] - elif (d == "m"): - command = "move" - relative = True - point = [] - elif (d == "L"): - command = "line" - relative = False - point = [] - elif (d == "l"): - command = "line" - relative = True - point = [] - elif (d == "H"): - command = "horizontal" - relative = False - point = [] - elif (d == "h"): - command = "horizontal" - relative = True - point = [] - elif (d == "V"): - command = "vertical" - relative = False - point = [] - elif (d == "v"): - command = "vertical" - relative = True - point = [] - elif (d == "A"): - command = "arc" - relative = False - point = [] - elif (d == "a"): - command = "arc" - relative = True - point = [] - elif (d == "Z") or (d == "z"): - command = "close" - point = [] - elif (d == "C"): - command = "cubic" - relative = False - smooth = False - point = [] - elif (d == "c"): - command = "cubic" - relative = True - smooth = False - point = [] - elif (d == "Q"): - command = "quadratic" - relative = False - smooth = False - point = [] - elif (d == "q"): - command = "quadratic" - relative = True - smooth = False - point = [] - elif (d == "S"): - command = "cubic" - relative = False - smooth = True - point = [] - elif (d == "s"): - command = "cubic" - relative = True - smooth = True - point = [] - elif (d == "T"): - command = "quadratic" - relative = False - smooth = True - point = [] - elif (d == "t"): - command = "quadratic" - relative = True - smooth = True - point = [] - pointlist = pointsstr.replace(',',' ').split() - while pointlist: - if pointlist: - point.append(float(pointlist.pop(0))) - print "command: ",command, ' point: ',point - - if (len(point)==2) and (command=="move"): - if path: - sh = Part.Wire(path) - if self.fill: sh = Part.Face(sh) - sh = self.applyTrans(sh) - obj = self.doc.addObject("Part::Feature",pathname) - obj.Shape = sh - self.format(obj) - path = [] - if firstvec: - lastvec = firstvec #Move relative to last move command not last draw command + relative = d.islower() + pointlist = [float(str1) for str1 in pointsstr.replace(',',' ').split()] + if (d == "M" or d == "m"): + x = pointlist.pop(0) + y = pointlist.pop(0) + if path: + #sh = Part.Wire(path) + sh = makewire(path) + if self.fill: sh = Part.Face(sh) + sh = self.applyTrans(sh) + obj = self.doc.addObject("Part::Feature",pathname) + obj.Shape = sh + self.format(obj) + path = [] + #if firstvec: + # lastvec = firstvec #Move relative to last move command not last draw command + if relative: + lastvec = lastvec.add(Vector(x,-y,0)) + else: + lastvec = Vector(x,-y,0) + firstvec = lastvec + print "move ",lastvec + lastpole = None + if (d == "L" or d == "l") or \ + ((d == 'm' or d == 'M') and pointlist) : + for x,y in zip(pointlist[0::2],pointlist[1::2]): if relative: - lastvec = lastvec.add(Vector(point[0],-point[1],0)) - command="line" + currentvec = lastvec.add(Vector(x,-y,0)) else: - lastvec = Vector(point[0],-point[1],0) - firstvec = lastvec - print "move ",lastvec - command = "line" - lastpole = None - point = [] - elif (len(point)==2) and (command=="line"): - if relative: - currentvec = lastvec.add(Vector(point[0],-point[1],0)) - else: - currentvec = Vector(point[0],-point[1],0) + currentvec = Vector(x,-y,0) if not fcvec.equals(lastvec,currentvec): seg = Part.Line(lastvec,currentvec).toShape() print "line ",lastvec,currentvec lastvec = currentvec path.append(seg) lastpole = None - point = [] - elif (len(point)==1) and (command=="horizontal"): + elif (d == "H" or d == "h"): + for x in pointlist: if relative: - currentvec = lastvec.add(Vector(point[0],0,0)) + currentvec = lastvec.add(Vector(x,0,0)) else: lasty = path[-1].y - currentvec = Vector(point[0],lasty,0) + currentvec = Vector(x,lasty,0) seg = Part.Line(lastvec,currentvec).toShape() lastvec = currentvec lastpole = None path.append(seg) - point = [] - elif (len(point)==1) and (command=="vertical"): + elif (d == "V" or d == "v"): + for y in pointlist: if relative: - currentvec = lastvec.add(Vector(0,-point[0],0)) + currentvec = lastvec.add(Vector(0,-y,0)) else: lastx = path[-1].x - currentvec = Vector(lastx,-point[0],0) + currentvec = Vector(lastx,-y,0) seg = Part.Line(lastvec,currentvec).toShape() lastvec = currentvec lastpole = None path.append(seg) - point = [] - elif (len(point)==7) and (command=="arc"): + elif (d == "A" or d == "a"): + for rx,ry,xrotation, largeflag, sweepflag,x,y in \ + zip(pointlist[0::7],pointlist[1::7],pointlist[2::7],pointlist[3::7],pointlist[4::7],pointlist[5::7],pointlist[6::7]): + #support for large-arc and x-rotation are missing - rx,ry,xrotation, largeflag, sweepflag = point[0:5] if relative: - currentvec = lastvec.add(Vector(point[-2],-point[-1],0)) + currentvec = lastvec.add(Vector(x,-y,0)) else: - currentvec = Vector(point[-2],-point[-1],0) + currentvec = Vector(x,-y,0) chord = currentvec.sub(lastvec) - # perp = chord.cross(Vector(0,0,-1)) - # here is a better way to find the perpendicular - if sweepflag == 1: - # clockwise - perp = fcvec.rotate2D(chord,-math.pi/2) - else: - # anticlockwise - perp = fcvec.rotate2D(chord,math.pi/2) - chord = fcvec.scale(chord,.5) - if chord.Length > rx: a = 0 - else: a = math.sqrt(rx**2-chord.Length**2) - s = rx - a - perp = fcvec.scale(perp,s/perp.Length) - midpoint = lastvec.add(chord.add(perp)) - seg = Part.Arc(lastvec,midpoint,currentvec).toShape() + if (not largeflag) and abs(rx-ry) < 10**(-1*Draft.precision()): # small circular arc + # perp = chord.cross(Vector(0,0,-1)) + # here is a better way to find the perpendicular + if sweepflag == 1: + # clockwise + perp = fcvec.rotate2D(chord,-math.pi/2) + else: + # anticlockwise + perp = fcvec.rotate2D(chord,math.pi/2) + chord = fcvec.scale(chord,.5) + if chord.Length > rx: a = 0 + else: a = math.sqrt(rx**2-chord.Length**2) + s = rx - a + perp = fcvec.scale(perp,s/perp.Length) + midpoint = lastvec.add(chord.add(perp)) + seg = Part.Arc(lastvec,midpoint,currentvec).toShape() + else:# big arc or elliptical arc + solution,(rx,ry) = arcend2center(lastvec,currentvec,rx,ry,math.radians(-xrotation),True) + negsol = (largeflag != sweepflag) + vcenter,angle1,angledelta = solution[negsol] + print angle1 + print angledelta + if ry > rx: + rx,ry=ry,rx + swapaxis = True + else: + swapaxis = False + print 'Elliptical arc %s rx=%f ry=%f' % (vcenter,rx,ry) + e1 = Part.Ellipse(vcenter,rx,ry) + if sweepflag: + #angledelta=-(-angledelta % (math.pi *2)) # Step4 + #angledelta=(-angledelta % (math.pi *2)) # Step4 + angle1 = angle1-angledelta + #angle1 = math.pi - angle1 + + e1a = Part.Arc(e1,angle1-swapaxis*math.radians(90),\ + angle1+angledelta-swapaxis*math.radians(90)) + #e1a = Part.Arc(e1,angle1-0*swapaxis*math.radians(90),angle1+angledelta-0*swapaxis*math.radians(90)) + if swapaxis or xrotation > 10**(-1*Draft.precision()): + m3=FreeCAD.Matrix() + m3.move(vcenter) + rot90=FreeCAD.Matrix(0,-1,0,0,1,0) #90 + #swapaxism=FreeCAD.Matrix(0,1,0,0,1,0) + if swapaxis: + m3=m3.multiply(rot90) + m3.rotateZ(math.radians(-xrotation)) + m3.move(vcenter.multiply(-1)) + e1a.transform(m3) + seg = e1a.toShape() + if sweepflag: + seg.reverse() + #obj = self.doc.addObject("Part::Feature",'DEBUG %s'%pathname) #DEBUG + #obj.Shape = seg #DEBUG + #seg = Part.Line(lastvec,currentvec).toShape() #DEBUG lastvec = currentvec lastpole = None path.append(seg) - point = [] - elif (command=="cubic") and (((smooth==False) and (len(point)==6)) or (smooth==True and (len(point)==4))) : + elif (d == "C" or d == "c") or\ + (d =="S" or d == "s"): + smooth = (d == 'S' or d == 's') + if smooth: + piter = zip(pointlist[2::4],pointlist[3::4],pointlist[0::4],pointlist[1::4],pointlist[2::4],pointlist[3::4]) + else: + piter = zip(pointlist[0::6],pointlist[1::6],pointlist[2::6],pointlist[3::6],pointlist[4::6],pointlist[5::6]) + for p1x,p1y,p2x,p2y,x,y in piter: if smooth: - if relative: - currentvec = lastvec.add(Vector(point[2],-point[3],0)) - pole2 = lastvec.add(Vector(point[0],-point[1],0)) - else: - currentvec = Vector(point[2],-point[3],0) - pole2 = Vector(point[0],-point[1],0) if lastpole is not None and lastpole[0]=='cubic': pole1 = lastvec.sub(lastpole[1]).add(lastvec) else: pole1 = lastvec - else: #not smooth + else: if relative: - currentvec = lastvec.add(Vector(point[4],-point[5],0)) - pole1 = lastvec.add(Vector(point[0],-point[1],0)) - pole2 = lastvec.add(Vector(point[2],-point[3],0)) + pole1 = lastvec.add(Vector(p1x,-p1y,0)) else: - currentvec = Vector(point[4],-point[5],0) - pole1 = Vector(point[0],-point[1],0) - pole2 = Vector(point[2],-point[3],0) + pole1 = Vector(p1x,-p1y,0) + if relative: + currentvec = lastvec.add(Vector(x,-y,0)) + pole2 = lastvec.add(Vector(p2x,-p2y,0)) + else: + currentvec = Vector(x,-y,0) + pole2 = Vector(p2x,-p2y,0) if not fcvec.equals(currentvec,lastvec): mainv = currentvec.sub(lastvec) @@ -568,8 +606,8 @@ class svgHandler(xml.sax.ContentHandler): pole2v = currentvec.add(pole2) print "cubic curve data:",mainv.normalize(),pole1v.normalize(),pole2v.normalize() if True and \ - pole1.distanceToLine(lastvec,currentvec) < 20**(-1*Draft.precision()) and \ - pole2.distanceToLine(lastvec,currentvec) < 20**(-1*Draft.precision()): + pole1.distanceToLine(lastvec,currentvec) < 10**(-1*(2+Draft.precision())) and \ + pole2.distanceToLine(lastvec,currentvec) < 10**(-1*(2+Draft.precision())): print "straight segment" seg = Part.Line(lastvec,currentvec).toShape() else: @@ -581,66 +619,63 @@ class svgHandler(xml.sax.ContentHandler): lastvec = currentvec lastpole = ('cubic',pole2) path.append(seg) - point = [] - - elif (command=="quadratic") and (((smooth==False) and (len(point)==4)) or (smooth==True and (len(point)==2))) : + elif (d == "Q" or d == "q") or\ + (d =="T" or d == "t"): + smooth = (d == 'T' or d == 't') + if smooth: + piter = zip(pointlist[1::2],pointlist[1::2],pointlist[0::2],pointlist[1::2]) + else: + piter = zip(pointlist[0::4],pointlist[1::4],pointlist[2::4],pointlist[3::4]) + for px,py,x,y in piter: if smooth: - if relative: - currentvec = lastvec.add(Vector(point[0],-point[1],0)) - else: - currentvec = Vector(point[0],-point[1],0) if lastpole is not None and lastpole[0]=='quadratic': - pole1 = lastvec.sub(lastpole[1]).add(lastvec) + pole = lastvec.sub(lastpole[1]).add(lastvec) else: - pole1 = lastvec - else: #not smooth + pole = lastvec + else: if relative: - currentvec = lastvec.add(Vector(point[2],-point[3],0)) - pole1 = lastvec.add(Vector(point[0],-point[1],0)) + pole = lastvec.add(Vector(px,-py,0)) else: - currentvec = Vector(point[2],-point[3],0) - pole1 = Vector(point[0],-point[1],0) + pole = Vector(px,-py,0) + if relative: + currentvec = lastvec.add(Vector(x,-y,0)) + else: + currentvec = Vector(x,-y,0) if not fcvec.equals(currentvec,lastvec): - if True and pole1.distanceToLine(lastvec,currentvec) < 20**(-1*Draft.precision()): + if True and \ + pole.distanceToLine(lastvec,currentvec) < 20**(-1*(2+Draft.precision())): print "straight segment" seg = Part.Line(lastvec,currentvec).toShape() else: print "quadratic bezier segment" b = Part.BezierCurve() - b.setPoles([lastvec,pole1,currentvec]) + b.setPoles([lastvec,pole,currentvec]) seg = b.toShape() print "connect ",lastvec,currentvec lastvec = currentvec - lastpole = ('quadratic',pole1) + lastpole = ('quadratic',pole) path.append(seg) - point = [] - - #while pointlist or command: - else: - - if (command == "close"): - if not fcvec.equals(lastvec,firstvec): - seg = Part.Line(lastvec,firstvec).toShape() - path.append(seg) - if path: #the path should be closed by now - sh = Part.Wire(path) - if not sh.isClosed: - #Code from wmayer forum p15549 to fix the tolerance problem - comp=Part.Compound(path) - sh = comp.connectEdgesToWires(False,10**(-1*Draft.precision())).Wires[0] #original tolerance = 0.00001 - if self.fill: sh = Part.Face(sh) - sh = self.applyTrans(sh) - obj = self.doc.addObject("Part::Feature",pathname) - obj.Shape = sh - self.format(obj) - path = [] - if firstvec: - lastvec = firstvec #Move relative to last move command not last draw command + elif (d == "Z") or (d == "z"): + if not fcvec.equals(lastvec,firstvec): + seg = Part.Line(lastvec,firstvec).toShape() + path.append(seg) + if path: #the path should be closed by now + #sh=makewire(path,True) + sh=makewire(path,donttry=True) + if self.fill: sh = Part.Face(sh) + sh = self.applyTrans(sh) + obj = self.doc.addObject("Part::Feature",pathname) + obj.Shape = sh + self.format(obj) + path = [] + if firstvec: + lastvec = firstvec #Move relative to recent draw command point = [] command = None if path: - sh = Part.Wire(path) + sh=makewire(path,checkclosed=False) + #sh = Part.Wire(path) if self.fill: sh = Part.Face(sh) sh = self.applyTrans(sh) obj = self.doc.addObject("Part::Feature",pathname) @@ -653,9 +688,9 @@ class svgHandler(xml.sax.ContentHandler): if name == "rect": if not pathname: pathname = 'Rectangle' edges = [] -# if ('rx' not in data or data['rx'] < 10**(-1*Draft.precision())) and \ -# ('ry' not in data or data['ry'] < 10**(-1*Draft.precision())): #negative values are invalid - if True: + if ('rx' not in data or data['rx'] < 10**(-1*Draft.precision())) and \ + ('ry' not in data or data['ry'] < 10**(-1*Draft.precision())): #negative values are invalid +# if True: p1 = Vector(data['x'],-data['y'],0) p2 = Vector(data['x']+data['width'],-data['y'],0) p3 = Vector(data['x']+data['width'],-data['y']-data['height'],0) @@ -665,6 +700,7 @@ class svgHandler(xml.sax.ContentHandler): edges.append(Part.Line(p3,p4).toShape()) edges.append(Part.Line(p4,p1).toShape()) else: #rounded edges + #ToTo: check for ry>rx !!!! rx = data.get('rx') ry = data.get('ry') or rx rx = rx or ry @@ -672,8 +708,46 @@ class svgHandler(xml.sax.ContentHandler): rx = data['width'] / 2.0 if ry > 2 * data['height']: ry = data['height'] / 2.0 - #TBD - # Part.Ellipse(c,rx,ry).toShape() #needs a proxy object + if rx > ry: + mj = rx + mi = ry + else: + mj = ry + mi = rx + p1=Vector(data['x']+rx,-data['y']-data['height']+ry,0) + e1=Part.Ellipse(p1,mj,mi) + p2=Vector(data['x']+data['width']-rx,-data['y']-data['height']+ry,0) + e2=Part.Ellipse(p2,mj,mi) + p3=Vector(data['x']+data['width']-rx,-data['y']-ry,0) + e3=Part.Ellipse(p3,mj,mi) + p4=Vector(data['x']+rx,-data['y']-ry,0) + e4=Part.Ellipse(p4,mj,mi) + if rx > ry: + e1a=Part.Arc(e1,math.radians(180),math.radians(270)) + e2a=Part.Arc(e2,math.radians(270),math.radians(360)) + e3a=Part.Arc(e3,math.radians(0),math.radians(90)) + e4a=Part.Arc(e4,math.radians(90),math.radians(180)) + esh=[e1a.toShape(),e2a.toShape(),e3a.toShape(),e4a.toShape()] + else: + e1a=Part.Arc(e1,math.radians(90),math.radians(180)) + e2a=Part.Arc(e2,math.radians(180),math.radians(270)) + e3a=Part.Arc(e3,math.radians(270),math.radians(360)) + e4a=Part.Arc(e4,math.radians(0),math.radians(90)) + rot90=FreeCAD.Matrix(0,-1,0,0,1,0) + esh=[] + for arc,point in ((e1a,p1),(e2a,p2),(e3a,p3),(e4a,p4)): + m1=FreeCAD.Matrix() + m1.move(point.multiply(1)) + m1=m1.multiply(rot90) + m1.move(point.multiply(-1)) + #m1.move(point) + arc.transform(m1) + esh.append(arc.toShape()) + for esh1,esh2 in zip(esh[-1:]+esh[:-1],esh): + p1,p2 = esh1.Vertexes[-1].Point,esh2.Vertexes[0].Point + if not fcvec.equals(p1,p2): + edges.append(Part.Line(esh1.Vertexes[-1].Point,esh2.Vertexes[0].Point).toShape()) #straight segments + edges.append(esh2) # elliptical segments sh = Part.Wire(edges) if self.fill: sh = Part.Face(sh) sh = self.applyTrans(sh) From 0dc635f04ff3d6ce95f827ed3debabcbb5302f8f Mon Sep 17 00:00:00 2001 From: wmayer Date: Fri, 10 Feb 2012 15:29:23 +0100 Subject: [PATCH 17/18] 0000598: New version treats some objects as immutable --- src/Mod/Part/App/TopoShapePy.xml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/Mod/Part/App/TopoShapePy.xml b/src/Mod/Part/App/TopoShapePy.xml index f31f99f56..eb612ab73 100644 --- a/src/Mod/Part/App/TopoShapePy.xml +++ b/src/Mod/Part/App/TopoShapePy.xml @@ -53,7 +53,7 @@ Sub-elements such as vertices, edges or faces are accessible as: Import the content to this shape of a string in BREP format. - + Extrude the shape along a direction. @@ -71,22 +71,22 @@ Part.revolve(Vector(0,0,0),Vector(0,0,1),360) - revolves the shape around the Z This is a more detailed check as done in isValid(). - + Union of this and a given topo shape. - + Union of this and a given topo shape (old algorithm). - + Intersection of this and a given topo shape. - + Section of this with a given topo shape. @@ -101,7 +101,7 @@ This is a more detailed check as done in isValid(). Make single slice of this shape. - + Difference of this and a given topo shape. @@ -116,13 +116,13 @@ This is a more detailed check as done in isValid(). Removes internal wires (also holes) from the shape. - + Mirror this shape on a given plane. The plane is given with its base point and its normal direction. - + Apply geometric transformation on a copy of the shape. The transformation to be applied is defined as a 4x4 matrix. @@ -177,14 +177,14 @@ the underlying geometry. Make chamfer. - + A hollowed solid is built from an initial solid and a set of faces on this solid, which are to be removed. The remaining faces of the solid become the walls of the hollowed solid, their thickness defined at the time of construction. - + Offset a given shape @@ -247,7 +247,7 @@ Orientation is not taken into account. Tessellate the the shape and return a list of vertices and face indices - + Project a shape on this shape From 88370f19dd45c561ae9627cb472f88a56ce96719 Mon Sep 17 00:00:00 2001 From: wmayer Date: Fri, 10 Feb 2012 15:58:11 +0100 Subject: [PATCH 18/18] apply SVN commit 5432 to Git --- src/Gui/View3DPy.cpp | 4 +- src/Mod/Idf/CMakeLists.txt | 3 + src/Mod/Idf/Idf.py | 24 +- src/Mod/Idf/Init.py | 4 +- src/Mod/Idf/lib/0603_SMD.stp | 24373 ++++++++++--------- src/Mod/Idf/lib/RLF_12545.igs | 2702 ++ src/Mod/Idf/lib/SOD_323.igs | 8249 +++---- src/Mod/Idf/lib/SOT23.igs | 9026 +++++++ src/Mod/Idf/lib/SOT404.igs | 4419 ++++ src/Mod/Idf/lib/footprints_models.csv | 8 +- src/Mod/Sketcher/Gui/DrawSketchHandler.cpp | 2 +- src/WindowsInstaller/ModPart.wxi | 2 + src/WindowsInstaller/ModPartDesign.wxi | 2 + src/WindowsInstaller/ModSketcher.wxi | 2 +- 14 files changed, 32644 insertions(+), 16176 deletions(-) create mode 100644 src/Mod/Idf/lib/RLF_12545.igs create mode 100644 src/Mod/Idf/lib/SOT23.igs create mode 100644 src/Mod/Idf/lib/SOT404.igs diff --git a/src/Gui/View3DPy.cpp b/src/Gui/View3DPy.cpp index b1e1e51a6..14ab2e623 100644 --- a/src/Gui/View3DPy.cpp +++ b/src/Gui/View3DPy.cpp @@ -419,7 +419,7 @@ Py::Object View3DInventorPy::viewRotateLeft(const Py::Tuple& args) SbRotation rot = cam->orientation.getValue(); SbVec3f vdir(0, 0, -1); rot.multVec(vdir, vdir); - SbRotation nrot(vdir, M_PI/2); + SbRotation nrot(vdir,float( M_PI/2)); cam->orientation.setValue(rot*nrot); } catch (const Base::Exception& e) { @@ -445,7 +445,7 @@ Py::Object View3DInventorPy::viewRotateRight(const Py::Tuple& args) SbRotation rot = cam->orientation.getValue(); SbVec3f vdir(0, 0, -1); rot.multVec(vdir, vdir); - SbRotation nrot(vdir, -M_PI/2); + SbRotation nrot(vdir, float(-M_PI/2)); cam->orientation.setValue(rot*nrot); } catch (const Base::Exception& e) { diff --git a/src/Mod/Idf/CMakeLists.txt b/src/Mod/Idf/CMakeLists.txt index 7e0e8062a..124b8f3e6 100644 --- a/src/Mod/Idf/CMakeLists.txt +++ b/src/Mod/Idf/CMakeLists.txt @@ -36,6 +36,9 @@ SET(IdfLibs_SRCS lib/TSM_104_01_L_DV_A.stp lib/TSS0P_8.stp lib/VC0603_SMD.stp + lib/RLF_12545.igs + lib/SOT23.igs + lib/SOT404.igs ) SOURCE_GROUP("Idflibs" FILES ${IdfLibs_SRCS}) diff --git a/src/Mod/Idf/Idf.py b/src/Mod/Idf/Idf.py index 668aa6eae..c8c2ed072 100644 --- a/src/Mod/Idf/Idf.py +++ b/src/Mod/Idf/Idf.py @@ -25,6 +25,7 @@ import FreeCAD, Part, os, FreeCADGui, __builtin__ from FreeCAD import Base from math import * +import ImportGui ########################################################## # Script version dated 19-Jan-2012 # @@ -45,7 +46,7 @@ EmpDisplayMode=2 # 0='Flat Lines', 1='Shaded', 2='Wireframe', 3='Points'; recomm IDF_sort=0 # 0-sort per refdes [1 - part number (not preffered)/refdes] 2-sort per footprint/refdes -IDF_diag=1 # 0/1=disabled/enabled output (footprint.lst/missing_models.lst) +IDF_diag=0 # 0/1=disabled/enabled output (footprint.lst/missing_models.lst) IDF_diag_path="/tmp" # path for output of footprint.lst and missing_models.lst @@ -330,7 +331,8 @@ def place_steps(doc,placement,board_thickness): model_lines=model_file.readlines() model_file.close() model_dict=[] - model_file=pythonopen(IDF_diag_path+"/missing_models.lst", "w") + if IDF_diag==1: + model_file=pythonopen(IDF_diag_path+"/missing_models.lst", "w") keys=[] #prev_step="*?.*?" #hope nobody will insert this step filename step_dict=[] @@ -342,11 +344,20 @@ def place_steps(doc,placement,board_thickness): model_dict=dict(model_dict) validkeys=filter(lambda x:x in [place_item[2] for place_item in placement], model_dict.keys()) FreeCAD.Console.PrintMessage("Step models to be loaded for footprints: "+str(validkeys)+"\n") - grp=doc.addObject("App::DocumentObjectGroup", "Step Models") + grp=doc.addObject("App::DocumentObjectGroup", "Step Lib") for validkey in validkeys: - step_dict.append((validkey,Part.read(step_path+model_dict[validkey]))) + ImportGui.insert(step_path+model_dict[validkey],FreeCAD.ActiveDocument.Name) + #partName=FreeCAD.ActiveDocument.ActiveObject.Name + impPart=FreeCAD.ActiveDocument.ActiveObject + #impPart.Shape=FreeCAD.ActiveDocument.ActiveObject.Shape + #impPart.ViewObject.DiffuseColor=FreeCAD.ActiveDocument.ActiveObject.ViewObject.DiffuseColor + impPart.ViewObject.Visibility=0 + impPart.Label=validkey + grp.addObject(impPart) + step_dict.append((validkey,impPart)) FreeCAD.Console.PrintMessage("Reading step file "+str(model_dict[validkey])+" for footprint "+str(validkey)+"\n") step_dict=dict(step_dict) + grp=doc.addObject("App::DocumentObjectGroup", "Step Models") for place_item in placement: if step_dict.has_key(place_item[2]): step_model=doc.addObject("Part::Feature",place_item[0]+"_s") @@ -354,7 +365,8 @@ def place_steps(doc,placement,board_thickness): #if prev_step!=place_item[2]: # model0=Part.read(step_path+"/"+model_dict[place_item[2]]) # prev_step=place_item[2] - step_model.Shape=step_dict[place_item[2]] + step_model.Shape=step_dict[place_item[2]].Shape + step_model.ViewObject.DiffuseColor=step_dict[place_item[2]].ViewObject.DiffuseColor z_pos=0 rotateY=0 if place_item[6]=='BOTTOM': @@ -366,7 +378,7 @@ def place_steps(doc,placement,board_thickness): else: if IDF_diag==1: model_file.writelines(str(place_item[0])+" "+str(place_item[2])+"\n") - model_file.close() + model_file.close() def toQuaternion(heading, attitude,bank): # rotation heading=arround Y, attitude =arround Z, bank attitude =arround X """toQuaternion(heading, attitude,bank)->FreeCAD.Base.Rotation(Quternion)""" diff --git a/src/Mod/Idf/Init.py b/src/Mod/Idf/Init.py index 0dcfb4053..00cb75566 100644 --- a/src/Mod/Idf/Init.py +++ b/src/Mod/Idf/Init.py @@ -31,6 +31,6 @@ -# an option for IDF added by Milos Koutny (12-Feb-2010) +# two options for IDF added by Milos Koutny (12-Feb-2010) FreeCAD.addImportType("IDF emn file File Type (*.emn)","Idf") - +#FreeCAD.addImportType("IDF emp File Type (*.emp)","Import_Emp") diff --git a/src/Mod/Idf/lib/0603_SMD.stp b/src/Mod/Idf/lib/0603_SMD.stp index 992adeeb2..376deffce 100644 --- a/src/Mod/Idf/lib/0603_SMD.stp +++ b/src/Mod/Idf/lib/0603_SMD.stp @@ -1,11969 +1,12404 @@ -ISO-10303-21; -HEADER; -FILE_DESCRIPTION(('Open CASCADE Model'),'2;1'); -FILE_NAME('Open CASCADE Shape Model','2010-03-15T12:41:41',('Author'),( - 'Open CASCADE'),'Open CASCADE STEP processor 6.3','Open CASCADE 6.3' - ,'Unknown'); -FILE_SCHEMA(('AUTOMOTIVE_DESIGN_CC2 { 1 2 10303 214 -1 1 5 4 }')); -ENDSEC; -DATA; -#1 = APPLICATION_PROTOCOL_DEFINITION('committee draft', - 'automotive_design',1997,#2); -#2 = APPLICATION_CONTEXT( - 'core data for automotive mechanical design processes'); -#3 = SHAPE_DEFINITION_REPRESENTATION(#4,#10); -#4 = PRODUCT_DEFINITION_SHAPE('','',#5); -#5 = PRODUCT_DEFINITION('design','',#6,#9); -#6 = PRODUCT_DEFINITION_FORMATION('','',#7); -#7 = PRODUCT('Open CASCADE STEP translator 6.3 2', - 'Open CASCADE STEP translator 6.3 2','',(#8)); -#8 = MECHANICAL_CONTEXT('',#2,'mechanical'); -#9 = PRODUCT_DEFINITION_CONTEXT('part definition',#2,'design'); -#10 = ADVANCED_BREP_SHAPE_REPRESENTATION('',(#11,#15),#8621); -#11 = AXIS2_PLACEMENT_3D('',#12,#13,#14); -#12 = CARTESIAN_POINT('',(0.E+000,0.E+000,0.E+000)); -#13 = DIRECTION('',(0.E+000,0.E+000,1.)); -#14 = DIRECTION('',(1.,0.E+000,-0.E+000)); -#15 = MANIFOLD_SOLID_BREP('',#16); -#16 = CLOSED_SHELL('',(#17,#2553,#2670,#2782,#2860,#2938,#2988,#3038, - #3121,#3199,#3310,#3416,#3495,#3569,#3625,#3676,#3726,#3776,#3872, - #3917,#4013,#4058,#4103,#4194,#4265,#4336,#4408,#4415,#4460,#4467, - #4493,#4584,#4590,#4615,#4640,#4646,#4653,#4725,#4751,#4758,#4783, - #4808,#4815,#5669,#5713,#5738,#5763,#5788,#5813,#5838,#5863,#5888, - #5913,#5938,#5964,#5971,#6067,#6138,#6217,#6276,#6283,#6982,#7025, - #7050,#7075,#7100,#7107,#7195,#7274,#7353,#7432,#7475,#7483,#7588, - #7667,#7738,#7801,#7872,#7952,#8000,#8063,#8126,#8197,#8249,#8297, - #8352,#8423,#8494,#8574,#8601)); -#17 = ADVANCED_FACE('',(#18,#1145,#1633,#1745),#48,.T.); -#18 = FACE_BOUND('',#19,.T.); -#19 = EDGE_LOOP('',(#20,#121,#149,#243,#321,#399,#445,#473,#511,#589, - #651,#713,#741,#835,#913,#975,#1053)); -#20 = ORIENTED_EDGE('',*,*,#21,.T.); -#21 = EDGE_CURVE('',#22,#24,#26,.T.); -#22 = VERTEX_POINT('',#23); -#23 = CARTESIAN_POINT('',(0.120718951103,1.170728373731E-002,0.3)); -#24 = VERTEX_POINT('',#25); -#25 = CARTESIAN_POINT('',(7.914840828659E-002,8.414704151643E-002,0.3)); -#26 = SURFACE_CURVE('',#27,(#47,#75),.PCURVE_S1.); -#27 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#28,#29,#30,#31,#32,#33,#34,#35, - #36,#37,#38,#39,#40,#41,#42,#43,#44,#45,#46),.UNSPECIFIED.,.F.,.F.,( - 4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000,4.642480551308E-002, - 9.17550650813E-002,0.137365792969,0.184234865116,0.233618047719, - 0.286345281489,0.342702560112,0.403812353687,0.468458845429, - 0.535483138438,0.604766914307,0.676822993412,0.7525824976, - 0.831578559803,0.913949260602,1.),.UNSPECIFIED.); -#28 = CARTESIAN_POINT('',(0.120718951103,1.170728373731E-002,0.3)); -#29 = CARTESIAN_POINT('',(0.119305687764,1.175807442949E-002,0.3)); -#30 = CARTESIAN_POINT('',(0.11651248124,1.18584583345E-002,0.3)); -#31 = CARTESIAN_POINT('',(0.112453586066,1.292290438905E-002,0.3)); -#32 = CARTESIAN_POINT('',(0.108535791536,1.443462285821E-002,0.3)); -#33 = CARTESIAN_POINT('',(0.104861886428,1.672324153894E-002,0.3)); -#34 = CARTESIAN_POINT('',(0.101321294393,1.956124176099E-002,0.3)); -#35 = CARTESIAN_POINT('',(9.806195466378E-002,2.312005656402E-002,0.3)); -#36 = CARTESIAN_POINT('',(9.488067483072E-002,2.720206212183E-002,0.3)); -#37 = CARTESIAN_POINT('',(9.199215450085E-002,3.193240674378E-002,0.3)); -#38 = CARTESIAN_POINT('',(8.935789793798E-002,3.716463006663E-002,0.3)); -#39 = CARTESIAN_POINT('',(8.69143155312E-002,4.276332812003E-002,0.3)); -#40 = CARTESIAN_POINT('',(8.487547001018E-002,4.876108493811E-002,0.3)); -#41 = CARTESIAN_POINT('',(8.313158049113E-002,5.512284571882E-002,0.3)); -#42 = CARTESIAN_POINT('',(8.164238908048E-002,6.185160062136E-002,0.3)); -#43 = CARTESIAN_POINT('',(8.045121467697E-002,6.895846489487E-002,0.3)); -#44 = CARTESIAN_POINT('',(7.965207367774E-002,7.643426271059E-002,0.3)); -#45 = CARTESIAN_POINT('',(7.931872466218E-002,8.153893590695E-002,0.3)); -#46 = CARTESIAN_POINT('',(7.914840828659E-002,8.414704151643E-002,0.3)); -#47 = PCURVE('',#48,#53); -#48 = PLANE('',#49); -#49 = AXIS2_PLACEMENT_3D('',#50,#51,#52); -#50 = CARTESIAN_POINT('',(-0.8,-0.4,0.3)); -#51 = DIRECTION('',(0.E+000,2.22044604925E-016,1.)); -#52 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#53 = DEFINITIONAL_REPRESENTATION('',(#54),#74); -#54 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#55,#56,#57,#58,#59,#60,#61,#62, - #63,#64,#65,#66,#67,#68,#69,#70,#71,#72,#73),.UNSPECIFIED.,.F.,.F.,( - 4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000,4.642480551308E-002, - 9.17550650813E-002,0.137365792969,0.184234865116,0.233618047719, - 0.286345281489,0.342702560112,0.403812353687,0.468458845429, - 0.535483138438,0.604766914307,0.676822993412,0.7525824976, - 0.831578559803,0.913949260602,1.),.UNSPECIFIED.); -#55 = CARTESIAN_POINT('',(-0.411707283737,0.920718951103)); -#56 = CARTESIAN_POINT('',(-0.411758074429,0.919305687764)); -#57 = CARTESIAN_POINT('',(-0.411858458334,0.91651248124)); -#58 = CARTESIAN_POINT('',(-0.412922904389,0.912453586066)); -#59 = CARTESIAN_POINT('',(-0.414434622858,0.908535791536)); -#60 = CARTESIAN_POINT('',(-0.416723241539,0.904861886428)); -#61 = CARTESIAN_POINT('',(-0.419561241761,0.901321294393)); -#62 = CARTESIAN_POINT('',(-0.423120056564,0.898061954664)); -#63 = CARTESIAN_POINT('',(-0.427202062122,0.894880674831)); -#64 = CARTESIAN_POINT('',(-0.431932406744,0.891992154501)); -#65 = CARTESIAN_POINT('',(-0.437164630067,0.889357897938)); -#66 = CARTESIAN_POINT('',(-0.44276332812,0.886914315531)); -#67 = CARTESIAN_POINT('',(-0.448761084938,0.88487547001)); -#68 = CARTESIAN_POINT('',(-0.455122845719,0.883131580491)); -#69 = CARTESIAN_POINT('',(-0.461851600621,0.88164238908)); -#70 = CARTESIAN_POINT('',(-0.468958464895,0.880451214677)); -#71 = CARTESIAN_POINT('',(-0.476434262711,0.879652073678)); -#72 = CARTESIAN_POINT('',(-0.481538935907,0.879318724662)); -#73 = CARTESIAN_POINT('',(-0.484147041516,0.879148408287)); -#74 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#75 = PCURVE('',#76,#115); -#76 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#77,#78) - ,(#79,#80) - ,(#81,#82) - ,(#83,#84) - ,(#85,#86) - ,(#87,#88) - ,(#89,#90) - ,(#91,#92) - ,(#93,#94) - ,(#95,#96) - ,(#97,#98) - ,(#99,#100) - ,(#101,#102) - ,(#103,#104) - ,(#105,#106) - ,(#107,#108) - ,(#109,#110) - ,(#111,#112) - ,(#113,#114 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, - 2),(0.E+000,4.642480551308E-002,9.17550650813E-002,0.137365792969, - 0.184234865116,0.233618047719,0.286345281489,0.342702560112, - 0.403812353687,0.468458845429,0.535483138438,0.604766914307, - 0.676822993412,0.7525824976,0.831578559803,0.913949260602,1.),( - 0.E+000,1.),.UNSPECIFIED.); -#77 = CARTESIAN_POINT('',(0.120718951103,1.170728373731E-002,0.302)); -#78 = CARTESIAN_POINT('',(0.120718951103,1.170728373731E-002,0.3)); -#79 = CARTESIAN_POINT('',(0.119305687764,1.175807442949E-002,0.302)); -#80 = CARTESIAN_POINT('',(0.119305687764,1.175807442949E-002,0.3)); -#81 = CARTESIAN_POINT('',(0.11651248124,1.18584583345E-002,0.302)); -#82 = CARTESIAN_POINT('',(0.11651248124,1.18584583345E-002,0.3)); -#83 = CARTESIAN_POINT('',(0.112453586066,1.292290438905E-002,0.302)); -#84 = CARTESIAN_POINT('',(0.112453586066,1.292290438905E-002,0.3)); -#85 = CARTESIAN_POINT('',(0.108535791536,1.443462285821E-002,0.302)); -#86 = CARTESIAN_POINT('',(0.108535791536,1.443462285821E-002,0.3)); -#87 = CARTESIAN_POINT('',(0.104861886428,1.672324153894E-002,0.302)); -#88 = CARTESIAN_POINT('',(0.104861886428,1.672324153894E-002,0.3)); -#89 = CARTESIAN_POINT('',(0.101321294393,1.956124176099E-002,0.302)); -#90 = CARTESIAN_POINT('',(0.101321294393,1.956124176099E-002,0.3)); -#91 = CARTESIAN_POINT('',(9.806195466378E-002,2.312005656402E-002,0.302) - ); -#92 = CARTESIAN_POINT('',(9.806195466378E-002,2.312005656402E-002,0.3)); -#93 = CARTESIAN_POINT('',(9.488067483072E-002,2.720206212183E-002,0.302) - ); -#94 = CARTESIAN_POINT('',(9.488067483072E-002,2.720206212183E-002,0.3)); -#95 = CARTESIAN_POINT('',(9.199215450085E-002,3.193240674378E-002,0.302) - ); -#96 = CARTESIAN_POINT('',(9.199215450085E-002,3.193240674378E-002,0.3)); -#97 = CARTESIAN_POINT('',(8.935789793798E-002,3.716463006663E-002,0.302) - ); -#98 = CARTESIAN_POINT('',(8.935789793798E-002,3.716463006663E-002,0.3)); -#99 = CARTESIAN_POINT('',(8.69143155312E-002,4.276332812003E-002,0.302) - ); -#100 = CARTESIAN_POINT('',(8.69143155312E-002,4.276332812003E-002,0.3)); -#101 = CARTESIAN_POINT('',(8.487547001018E-002,4.876108493811E-002,0.302 - )); -#102 = CARTESIAN_POINT('',(8.487547001018E-002,4.876108493811E-002,0.3) - ); -#103 = CARTESIAN_POINT('',(8.313158049113E-002,5.512284571882E-002,0.302 - )); -#104 = CARTESIAN_POINT('',(8.313158049113E-002,5.512284571882E-002,0.3) - ); -#105 = CARTESIAN_POINT('',(8.164238908048E-002,6.185160062136E-002,0.302 - )); -#106 = CARTESIAN_POINT('',(8.164238908048E-002,6.185160062136E-002,0.3) - ); -#107 = CARTESIAN_POINT('',(8.045121467697E-002,6.895846489487E-002,0.302 - )); -#108 = CARTESIAN_POINT('',(8.045121467697E-002,6.895846489487E-002,0.3) - ); -#109 = CARTESIAN_POINT('',(7.965207367774E-002,7.643426271059E-002,0.302 - )); -#110 = CARTESIAN_POINT('',(7.965207367774E-002,7.643426271059E-002,0.3) - ); -#111 = CARTESIAN_POINT('',(7.931872466218E-002,8.153893590695E-002,0.302 - )); -#112 = CARTESIAN_POINT('',(7.931872466218E-002,8.153893590695E-002,0.3) - ); -#113 = CARTESIAN_POINT('',(7.914840828659E-002,8.414704151643E-002,0.302 - )); -#114 = CARTESIAN_POINT('',(7.914840828659E-002,8.414704151643E-002,0.3) - ); -#115 = DEFINITIONAL_REPRESENTATION('',(#116),#120); -#116 = LINE('',#117,#118); -#117 = CARTESIAN_POINT('',(0.E+000,1.)); -#118 = VECTOR('',#119,1.); -#119 = DIRECTION('',(1.,0.E+000)); -#120 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#121 = ORIENTED_EDGE('',*,*,#122,.T.); -#122 = EDGE_CURVE('',#24,#123,#125,.T.); -#123 = VERTEX_POINT('',#124); -#124 = CARTESIAN_POINT('',(9.561198960003E-002,8.743975777911E-002,0.3) - ); -#125 = SURFACE_CURVE('',#126,(#130,#137),.PCURVE_S1.); -#126 = LINE('',#127,#128); -#127 = CARTESIAN_POINT('',(7.914840828659E-002,8.414704151643E-002,0.3) - ); -#128 = VECTOR('',#129,1.); -#129 = DIRECTION('',(0.980580675691,0.196116135138,-4.354652974618E-017) - ); -#130 = PCURVE('',#48,#131); -#131 = DEFINITIONAL_REPRESENTATION('',(#132),#136); -#132 = LINE('',#133,#134); -#133 = CARTESIAN_POINT('',(-0.484147041516,0.879148408287)); -#134 = VECTOR('',#135,1.); -#135 = DIRECTION('',(-0.196116135138,0.980580675691)); -#136 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#137 = PCURVE('',#138,#143); -#138 = PLANE('',#139); -#139 = AXIS2_PLACEMENT_3D('',#140,#141,#142); -#140 = CARTESIAN_POINT('',(7.914840828659E-002,8.414704151643E-002,0.302 - )); -#141 = DIRECTION('',(-0.196116135138,0.980580675691,-2.177326487309E-016 - )); -#142 = DIRECTION('',(-0.980580675691,-0.196116135138,4.354652974618E-017 - )); -#143 = DEFINITIONAL_REPRESENTATION('',(#144),#148); -#144 = LINE('',#145,#146); -#145 = CARTESIAN_POINT('',(-8.709305949236E-020,-2.E-003)); -#146 = VECTOR('',#147,1.); -#147 = DIRECTION('',(-1.,0.E+000)); -#148 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#149 = ORIENTED_EDGE('',*,*,#150,.T.); -#150 = EDGE_CURVE('',#123,#151,#153,.T.); -#151 = VERTEX_POINT('',#152); -#152 = CARTESIAN_POINT('',(0.121284886711,4.13417301015E-002,0.3)); -#153 = SURFACE_CURVE('',#154,(#174,#197),.PCURVE_S1.); -#154 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#155,#156,#157,#158,#159,#160, - #161,#162,#163,#164,#165,#166,#167,#168,#169,#170,#171,#172,#173), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 0.103069259507,0.198581093589,0.288104012431,0.369260730991, - 0.444795013232,0.512889413837,0.575173782836,0.631287508826, - 0.682403817013,0.731174513293,0.776469925506,0.82042617274, - 0.863811476537,0.908277975275,0.952771167262,1.),.UNSPECIFIED.); -#155 = CARTESIAN_POINT('',(9.561198960003E-002,8.743975777911E-002,0.3) - ); -#156 = CARTESIAN_POINT('',(9.58331660904E-002,8.546491820448E-002,0.3)); -#157 = CARTESIAN_POINT('',(9.625930157972E-002,8.166004171398E-002,0.3) - ); -#158 = CARTESIAN_POINT('',(9.718318549401E-002,7.618252689124E-002,0.3) - ); -#159 = CARTESIAN_POINT('',(9.806114316162E-002,7.112665692875E-002,0.3) - ); -#160 = CARTESIAN_POINT('',(9.910517892659E-002,6.649438780876E-002,0.3) - ); -#161 = CARTESIAN_POINT('',(0.100234444179,6.231145522484E-002,0.3)); -#162 = CARTESIAN_POINT('',(0.101382941481,5.850791139632E-002,0.3)); -#163 = CARTESIAN_POINT('',(0.10274714875,5.517900986752E-002,0.3)); -#164 = CARTESIAN_POINT('',(0.104103663994,5.220318259453E-002,0.3)); -#165 = CARTESIAN_POINT('',(0.105672205288,4.962663458115E-002,0.3)); -#166 = CARTESIAN_POINT('',(0.10741831521,4.743453940787E-002,0.3)); -#167 = CARTESIAN_POINT('',(0.109277678164,4.551763073201E-002,0.3)); -#168 = CARTESIAN_POINT('',(0.111370712665,4.403031641049E-002,0.3)); -#169 = CARTESIAN_POINT('',(0.113611633956,4.281801636844E-002,0.3)); -#170 = CARTESIAN_POINT('',(0.116020922513,4.195428509365E-002,0.3)); -#171 = CARTESIAN_POINT('',(0.118602406096,4.140923332536E-002,0.3)); -#172 = CARTESIAN_POINT('',(0.120373122432,4.136467417343E-002,0.3)); -#173 = CARTESIAN_POINT('',(0.121284886711,4.13417301015E-002,0.3)); -#174 = PCURVE('',#48,#175); -#175 = DEFINITIONAL_REPRESENTATION('',(#176),#196); -#176 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#177,#178,#179,#180,#181,#182, - #183,#184,#185,#186,#187,#188,#189,#190,#191,#192,#193,#194,#195), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 0.103069259507,0.198581093589,0.288104012431,0.369260730991, - 0.444795013232,0.512889413837,0.575173782836,0.631287508826, - 0.682403817013,0.731174513293,0.776469925506,0.82042617274, - 0.863811476537,0.908277975275,0.952771167262,1.),.UNSPECIFIED.); -#177 = CARTESIAN_POINT('',(-0.487439757779,0.8956119896)); -#178 = CARTESIAN_POINT('',(-0.485464918204,0.89583316609)); -#179 = CARTESIAN_POINT('',(-0.481660041714,0.89625930158)); -#180 = CARTESIAN_POINT('',(-0.476182526891,0.897183185494)); -#181 = CARTESIAN_POINT('',(-0.471126656929,0.898061143162)); -#182 = CARTESIAN_POINT('',(-0.466494387809,0.899105178927)); -#183 = CARTESIAN_POINT('',(-0.462311455225,0.900234444179)); -#184 = CARTESIAN_POINT('',(-0.458507911396,0.901382941481)); -#185 = CARTESIAN_POINT('',(-0.455179009868,0.90274714875)); -#186 = CARTESIAN_POINT('',(-0.452203182595,0.904103663994)); -#187 = CARTESIAN_POINT('',(-0.449626634581,0.905672205288)); -#188 = CARTESIAN_POINT('',(-0.447434539408,0.90741831521)); -#189 = CARTESIAN_POINT('',(-0.445517630732,0.909277678164)); -#190 = CARTESIAN_POINT('',(-0.44403031641,0.911370712665)); -#191 = CARTESIAN_POINT('',(-0.442818016368,0.913611633956)); -#192 = CARTESIAN_POINT('',(-0.441954285094,0.916020922513)); -#193 = CARTESIAN_POINT('',(-0.441409233325,0.918602406096)); -#194 = CARTESIAN_POINT('',(-0.441364674173,0.920373122432)); -#195 = CARTESIAN_POINT('',(-0.441341730101,0.921284886711)); -#196 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#197 = PCURVE('',#198,#237); -#198 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#199,#200) - ,(#201,#202) - ,(#203,#204) - ,(#205,#206) - ,(#207,#208) - ,(#209,#210) - ,(#211,#212) - ,(#213,#214) - ,(#215,#216) - ,(#217,#218) - ,(#219,#220) - ,(#221,#222) - ,(#223,#224) - ,(#225,#226) - ,(#227,#228) - ,(#229,#230) - ,(#231,#232) - ,(#233,#234) - ,(#235,#236 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, - 2),(0.E+000,0.103069259507,0.198581093589,0.288104012431, - 0.369260730991,0.444795013232,0.512889413837,0.575173782836, - 0.631287508826,0.682403817013,0.731174513293,0.776469925506, - 0.82042617274,0.863811476537,0.908277975275,0.952771167262,1.),( - 0.E+000,1.),.UNSPECIFIED.); -#199 = CARTESIAN_POINT('',(9.561198960003E-002,8.743975777911E-002,0.302 - )); -#200 = CARTESIAN_POINT('',(9.561198960003E-002,8.743975777911E-002,0.3) - ); -#201 = CARTESIAN_POINT('',(9.58331660904E-002,8.546491820448E-002,0.302) - ); -#202 = CARTESIAN_POINT('',(9.58331660904E-002,8.546491820448E-002,0.3)); -#203 = CARTESIAN_POINT('',(9.625930157972E-002,8.166004171398E-002,0.302 - )); -#204 = CARTESIAN_POINT('',(9.625930157972E-002,8.166004171398E-002,0.3) - ); -#205 = CARTESIAN_POINT('',(9.718318549401E-002,7.618252689124E-002,0.302 - )); -#206 = CARTESIAN_POINT('',(9.718318549401E-002,7.618252689124E-002,0.3) - ); -#207 = CARTESIAN_POINT('',(9.806114316162E-002,7.112665692875E-002,0.302 - )); -#208 = CARTESIAN_POINT('',(9.806114316162E-002,7.112665692875E-002,0.3) - ); -#209 = CARTESIAN_POINT('',(9.910517892659E-002,6.649438780876E-002,0.302 - )); -#210 = CARTESIAN_POINT('',(9.910517892659E-002,6.649438780876E-002,0.3) - ); -#211 = CARTESIAN_POINT('',(0.100234444179,6.231145522484E-002,0.302)); -#212 = CARTESIAN_POINT('',(0.100234444179,6.231145522484E-002,0.3)); -#213 = CARTESIAN_POINT('',(0.101382941481,5.850791139632E-002,0.302)); -#214 = CARTESIAN_POINT('',(0.101382941481,5.850791139632E-002,0.3)); -#215 = CARTESIAN_POINT('',(0.10274714875,5.517900986752E-002,0.302)); -#216 = CARTESIAN_POINT('',(0.10274714875,5.517900986752E-002,0.3)); -#217 = CARTESIAN_POINT('',(0.104103663994,5.220318259453E-002,0.302)); -#218 = CARTESIAN_POINT('',(0.104103663994,5.220318259453E-002,0.3)); -#219 = CARTESIAN_POINT('',(0.105672205288,4.962663458115E-002,0.302)); -#220 = CARTESIAN_POINT('',(0.105672205288,4.962663458115E-002,0.3)); -#221 = CARTESIAN_POINT('',(0.10741831521,4.743453940787E-002,0.302)); -#222 = CARTESIAN_POINT('',(0.10741831521,4.743453940787E-002,0.3)); -#223 = CARTESIAN_POINT('',(0.109277678164,4.551763073201E-002,0.302)); -#224 = CARTESIAN_POINT('',(0.109277678164,4.551763073201E-002,0.3)); -#225 = CARTESIAN_POINT('',(0.111370712665,4.403031641049E-002,0.302)); -#226 = CARTESIAN_POINT('',(0.111370712665,4.403031641049E-002,0.3)); -#227 = CARTESIAN_POINT('',(0.113611633956,4.281801636844E-002,0.302)); -#228 = CARTESIAN_POINT('',(0.113611633956,4.281801636844E-002,0.3)); -#229 = CARTESIAN_POINT('',(0.116020922513,4.195428509365E-002,0.302)); -#230 = CARTESIAN_POINT('',(0.116020922513,4.195428509365E-002,0.3)); -#231 = CARTESIAN_POINT('',(0.118602406096,4.140923332536E-002,0.302)); -#232 = CARTESIAN_POINT('',(0.118602406096,4.140923332536E-002,0.3)); -#233 = CARTESIAN_POINT('',(0.120373122432,4.136467417343E-002,0.302)); -#234 = CARTESIAN_POINT('',(0.120373122432,4.136467417343E-002,0.3)); -#235 = CARTESIAN_POINT('',(0.121284886711,4.13417301015E-002,0.302)); -#236 = CARTESIAN_POINT('',(0.121284886711,4.13417301015E-002,0.3)); -#237 = DEFINITIONAL_REPRESENTATION('',(#238),#242); -#238 = LINE('',#239,#240); -#239 = CARTESIAN_POINT('',(0.E+000,1.)); -#240 = VECTOR('',#241,1.); -#241 = DIRECTION('',(1.,0.E+000)); -#242 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#243 = ORIENTED_EDGE('',*,*,#244,.T.); -#244 = EDGE_CURVE('',#151,#245,#247,.T.); -#245 = VERTEX_POINT('',#246); -#246 = CARTESIAN_POINT('',(0.148295449803,9.253317824796E-002,0.3)); -#247 = SURFACE_CURVE('',#248,(#264,#283),.PCURVE_S1.); -#248 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#249,#250,#251,#252,#253,#254, - #255,#256,#257,#258,#259,#260,#261,#262,#263),.UNSPECIFIED.,.F.,.F., - (4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000,4.93101218056E-002, - 9.743831139595E-002,0.144472535587,0.193038110235,0.242820989692, - 0.295406850972,0.351784480369,0.413136124838,0.544950472915, - 0.684634992183,0.836126946877,1.),.UNSPECIFIED.); -#249 = CARTESIAN_POINT('',(0.121284886711,4.13417301015E-002,0.3)); -#250 = CARTESIAN_POINT('',(0.122336056738,4.137057674468E-002,0.3)); -#251 = CARTESIAN_POINT('',(0.124413200916,4.142757859539E-002,0.3)); -#252 = CARTESIAN_POINT('',(0.127405345822,4.220252447435E-002,0.3)); -#253 = CARTESIAN_POINT('',(0.13025971214,4.332430696126E-002,0.3)); -#254 = CARTESIAN_POINT('',(0.132871823768,4.500762147459E-002,0.3)); -#255 = CARTESIAN_POINT('',(0.135328422966,4.708568576713E-002,0.3)); -#256 = CARTESIAN_POINT('',(0.137549434903,4.964433445327E-002,0.3)); -#257 = CARTESIAN_POINT('',(0.139552396567,5.266963746697E-002,0.3)); -#258 = CARTESIAN_POINT('',(0.142046902581,5.735839433306E-002,0.3)); -#259 = CARTESIAN_POINT('',(0.14462069159,6.398153661176E-002,0.3)); -#260 = CARTESIAN_POINT('',(0.146738220012,7.273753671046E-002,0.3)); -#261 = CARTESIAN_POINT('',(0.148113631722,8.233722895259E-002,0.3)); -#262 = CARTESIAN_POINT('',(0.148233278022,8.904672448583E-002,0.3)); -#263 = CARTESIAN_POINT('',(0.148295449803,9.253317824796E-002,0.3)); -#264 = PCURVE('',#48,#265); -#265 = DEFINITIONAL_REPRESENTATION('',(#266),#282); -#266 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#267,#268,#269,#270,#271,#272, - #273,#274,#275,#276,#277,#278,#279,#280,#281),.UNSPECIFIED.,.F.,.F., - (4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000,4.93101218056E-002, - 9.743831139595E-002,0.144472535587,0.193038110235,0.242820989692, - 0.295406850972,0.351784480369,0.413136124838,0.544950472915, - 0.684634992183,0.836126946877,1.),.UNSPECIFIED.); -#267 = CARTESIAN_POINT('',(-0.441341730101,0.921284886711)); -#268 = CARTESIAN_POINT('',(-0.441370576745,0.922336056738)); -#269 = CARTESIAN_POINT('',(-0.441427578595,0.924413200916)); -#270 = CARTESIAN_POINT('',(-0.442202524474,0.927405345822)); -#271 = CARTESIAN_POINT('',(-0.443324306961,0.93025971214)); -#272 = CARTESIAN_POINT('',(-0.445007621475,0.932871823768)); -#273 = CARTESIAN_POINT('',(-0.447085685767,0.935328422966)); -#274 = CARTESIAN_POINT('',(-0.449644334453,0.937549434903)); -#275 = CARTESIAN_POINT('',(-0.452669637467,0.939552396567)); -#276 = CARTESIAN_POINT('',(-0.457358394333,0.942046902581)); -#277 = CARTESIAN_POINT('',(-0.463981536612,0.94462069159)); -#278 = CARTESIAN_POINT('',(-0.47273753671,0.946738220012)); -#279 = CARTESIAN_POINT('',(-0.482337228953,0.948113631722)); -#280 = CARTESIAN_POINT('',(-0.489046724486,0.948233278022)); -#281 = CARTESIAN_POINT('',(-0.492533178248,0.948295449803)); -#282 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#283 = PCURVE('',#284,#315); -#284 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#285,#286) - ,(#287,#288) - ,(#289,#290) - ,(#291,#292) - ,(#293,#294) - ,(#295,#296) - ,(#297,#298) - ,(#299,#300) - ,(#301,#302) - ,(#303,#304) - ,(#305,#306) - ,(#307,#308) - ,(#309,#310) - ,(#311,#312) - ,(#313,#314 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(2,2),( - 0.E+000,4.93101218056E-002,9.743831139595E-002,0.144472535587, - 0.193038110235,0.242820989692,0.295406850972,0.351784480369, - 0.413136124838,0.544950472915,0.684634992183,0.836126946877,1.),( - 0.E+000,1.),.UNSPECIFIED.); -#285 = CARTESIAN_POINT('',(0.121284886711,4.13417301015E-002,0.302)); -#286 = CARTESIAN_POINT('',(0.121284886711,4.13417301015E-002,0.3)); -#287 = CARTESIAN_POINT('',(0.122336056738,4.137057674468E-002,0.302)); -#288 = CARTESIAN_POINT('',(0.122336056738,4.137057674468E-002,0.3)); -#289 = CARTESIAN_POINT('',(0.124413200916,4.142757859539E-002,0.302)); -#290 = CARTESIAN_POINT('',(0.124413200916,4.142757859539E-002,0.3)); -#291 = CARTESIAN_POINT('',(0.127405345822,4.220252447435E-002,0.302)); -#292 = CARTESIAN_POINT('',(0.127405345822,4.220252447435E-002,0.3)); -#293 = CARTESIAN_POINT('',(0.13025971214,4.332430696126E-002,0.302)); -#294 = CARTESIAN_POINT('',(0.13025971214,4.332430696126E-002,0.3)); -#295 = CARTESIAN_POINT('',(0.132871823768,4.500762147459E-002,0.302)); -#296 = CARTESIAN_POINT('',(0.132871823768,4.500762147459E-002,0.3)); -#297 = CARTESIAN_POINT('',(0.135328422966,4.708568576713E-002,0.302)); -#298 = CARTESIAN_POINT('',(0.135328422966,4.708568576713E-002,0.3)); -#299 = CARTESIAN_POINT('',(0.137549434903,4.964433445327E-002,0.302)); -#300 = CARTESIAN_POINT('',(0.137549434903,4.964433445327E-002,0.3)); -#301 = CARTESIAN_POINT('',(0.139552396567,5.266963746697E-002,0.302)); -#302 = CARTESIAN_POINT('',(0.139552396567,5.266963746697E-002,0.3)); -#303 = CARTESIAN_POINT('',(0.142046902581,5.735839433306E-002,0.302)); -#304 = CARTESIAN_POINT('',(0.142046902581,5.735839433306E-002,0.3)); -#305 = CARTESIAN_POINT('',(0.14462069159,6.398153661176E-002,0.302)); -#306 = CARTESIAN_POINT('',(0.14462069159,6.398153661176E-002,0.3)); -#307 = CARTESIAN_POINT('',(0.146738220012,7.273753671046E-002,0.302)); -#308 = CARTESIAN_POINT('',(0.146738220012,7.273753671046E-002,0.3)); -#309 = CARTESIAN_POINT('',(0.148113631722,8.233722895259E-002,0.302)); -#310 = CARTESIAN_POINT('',(0.148113631722,8.233722895259E-002,0.3)); -#311 = CARTESIAN_POINT('',(0.148233278022,8.904672448583E-002,0.302)); -#312 = CARTESIAN_POINT('',(0.148233278022,8.904672448583E-002,0.3)); -#313 = CARTESIAN_POINT('',(0.148295449803,9.253317824796E-002,0.302)); -#314 = CARTESIAN_POINT('',(0.148295449803,9.253317824796E-002,0.3)); -#315 = DEFINITIONAL_REPRESENTATION('',(#316),#320); -#316 = LINE('',#317,#318); -#317 = CARTESIAN_POINT('',(0.E+000,1.)); -#318 = VECTOR('',#319,1.); -#319 = DIRECTION('',(1.,0.E+000)); -#320 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#321 = ORIENTED_EDGE('',*,*,#322,.T.); -#322 = EDGE_CURVE('',#245,#323,#325,.T.); -#323 = VERTEX_POINT('',#324); -#324 = CARTESIAN_POINT('',(0.122622552692,0.140329012749,0.3)); -#325 = SURFACE_CURVE('',#326,(#342,#361),.PCURVE_S1.); -#326 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#327,#328,#329,#330,#331,#332, - #333,#334,#335,#336,#337,#338,#339,#340,#341),.UNSPECIFIED.,.F.,.F., - (4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000,0.167218280874,0.320338966676, - 0.462287496645,0.594804197661,0.65685341656,0.713804069478, - 0.766491554291,0.81624698513,0.863310073343,0.908654710773, - 0.953999348203,1.),.UNSPECIFIED.); -#327 = CARTESIAN_POINT('',(0.148295449803,9.253317824796E-002,0.3)); -#328 = CARTESIAN_POINT('',(0.148210787884,9.584806670104E-002,0.3)); -#329 = CARTESIAN_POINT('',(0.148048601601,0.102198376824,0.3)); -#330 = CARTESIAN_POINT('',(0.146707389096,0.111282834249,0.3)); -#331 = CARTESIAN_POINT('',(0.14449699858,0.119491199434,0.3)); -#332 = CARTESIAN_POINT('',(0.141761615503,0.125597979613,0.3)); -#333 = CARTESIAN_POINT('',(0.139305739012,0.129942816573,0.3)); -#334 = CARTESIAN_POINT('',(0.137274202193,0.132680105907,0.3)); -#335 = CARTESIAN_POINT('',(0.135166012471,0.135041055005,0.3)); -#336 = CARTESIAN_POINT('',(0.13289013485,0.136953823277,0.3)); -#337 = CARTESIAN_POINT('',(0.130504993201,0.138467578871,0.3)); -#338 = CARTESIAN_POINT('',(0.128001855009,0.139586867053,0.3)); -#339 = CARTESIAN_POINT('',(0.125345363678,0.140208977662,0.3)); -#340 = CARTESIAN_POINT('',(0.123534491401,0.140288809942,0.3)); -#341 = CARTESIAN_POINT('',(0.122622552692,0.140329012749,0.3)); -#342 = PCURVE('',#48,#343); -#343 = DEFINITIONAL_REPRESENTATION('',(#344),#360); -#344 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#345,#346,#347,#348,#349,#350, - #351,#352,#353,#354,#355,#356,#357,#358,#359),.UNSPECIFIED.,.F.,.F., - (4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000,0.167218280874,0.320338966676, - 0.462287496645,0.594804197661,0.65685341656,0.713804069478, - 0.766491554291,0.81624698513,0.863310073343,0.908654710773, - 0.953999348203,1.),.UNSPECIFIED.); -#345 = CARTESIAN_POINT('',(-0.492533178248,0.948295449803)); -#346 = CARTESIAN_POINT('',(-0.495848066701,0.948210787884)); -#347 = CARTESIAN_POINT('',(-0.502198376824,0.948048601601)); -#348 = CARTESIAN_POINT('',(-0.511282834249,0.946707389096)); -#349 = CARTESIAN_POINT('',(-0.519491199434,0.94449699858)); -#350 = CARTESIAN_POINT('',(-0.525597979613,0.941761615503)); -#351 = CARTESIAN_POINT('',(-0.529942816573,0.939305739012)); -#352 = CARTESIAN_POINT('',(-0.532680105907,0.937274202193)); -#353 = CARTESIAN_POINT('',(-0.535041055005,0.935166012471)); -#354 = CARTESIAN_POINT('',(-0.536953823277,0.93289013485)); -#355 = CARTESIAN_POINT('',(-0.538467578871,0.930504993201)); -#356 = CARTESIAN_POINT('',(-0.539586867053,0.928001855009)); -#357 = CARTESIAN_POINT('',(-0.540208977662,0.925345363678)); -#358 = CARTESIAN_POINT('',(-0.540288809942,0.923534491401)); -#359 = CARTESIAN_POINT('',(-0.540329012749,0.922622552692)); -#360 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#361 = PCURVE('',#362,#393); -#362 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#363,#364) - ,(#365,#366) - ,(#367,#368) - ,(#369,#370) - ,(#371,#372) - ,(#373,#374) - ,(#375,#376) - ,(#377,#378) - ,(#379,#380) - ,(#381,#382) - ,(#383,#384) - ,(#385,#386) - ,(#387,#388) - ,(#389,#390) - ,(#391,#392 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(2,2),( - 0.E+000,0.167218280874,0.320338966676,0.462287496645,0.594804197661, - 0.65685341656,0.713804069478,0.766491554291,0.81624698513, - 0.863310073343,0.908654710773,0.953999348203,1.),(0.E+000,1.), - .UNSPECIFIED.); -#363 = CARTESIAN_POINT('',(0.148295449803,9.253317824796E-002,0.302)); -#364 = CARTESIAN_POINT('',(0.148295449803,9.253317824796E-002,0.3)); -#365 = CARTESIAN_POINT('',(0.148210787884,9.584806670104E-002,0.302)); -#366 = CARTESIAN_POINT('',(0.148210787884,9.584806670104E-002,0.3)); -#367 = CARTESIAN_POINT('',(0.148048601601,0.102198376824,0.302)); -#368 = CARTESIAN_POINT('',(0.148048601601,0.102198376824,0.3)); -#369 = CARTESIAN_POINT('',(0.146707389096,0.111282834249,0.302)); -#370 = CARTESIAN_POINT('',(0.146707389096,0.111282834249,0.3)); -#371 = CARTESIAN_POINT('',(0.14449699858,0.119491199434,0.302)); -#372 = CARTESIAN_POINT('',(0.14449699858,0.119491199434,0.3)); -#373 = CARTESIAN_POINT('',(0.141761615503,0.125597979613,0.302)); -#374 = CARTESIAN_POINT('',(0.141761615503,0.125597979613,0.3)); -#375 = CARTESIAN_POINT('',(0.139305739012,0.129942816573,0.302)); -#376 = CARTESIAN_POINT('',(0.139305739012,0.129942816573,0.3)); -#377 = CARTESIAN_POINT('',(0.137274202193,0.132680105907,0.302)); -#378 = CARTESIAN_POINT('',(0.137274202193,0.132680105907,0.3)); -#379 = CARTESIAN_POINT('',(0.135166012471,0.135041055005,0.302)); -#380 = CARTESIAN_POINT('',(0.135166012471,0.135041055005,0.3)); -#381 = CARTESIAN_POINT('',(0.13289013485,0.136953823277,0.302)); -#382 = CARTESIAN_POINT('',(0.13289013485,0.136953823277,0.3)); -#383 = CARTESIAN_POINT('',(0.130504993201,0.138467578871,0.302)); -#384 = CARTESIAN_POINT('',(0.130504993201,0.138467578871,0.3)); -#385 = CARTESIAN_POINT('',(0.128001855009,0.139586867053,0.302)); -#386 = CARTESIAN_POINT('',(0.128001855009,0.139586867053,0.3)); -#387 = CARTESIAN_POINT('',(0.125345363678,0.140208977662,0.302)); -#388 = CARTESIAN_POINT('',(0.125345363678,0.140208977662,0.3)); -#389 = CARTESIAN_POINT('',(0.123534491401,0.140288809942,0.302)); -#390 = CARTESIAN_POINT('',(0.123534491401,0.140288809942,0.3)); -#391 = CARTESIAN_POINT('',(0.122622552692,0.140329012749,0.302)); -#392 = CARTESIAN_POINT('',(0.122622552692,0.140329012749,0.3)); -#393 = DEFINITIONAL_REPRESENTATION('',(#394),#398); -#394 = LINE('',#395,#396); -#395 = CARTESIAN_POINT('',(0.E+000,1.)); -#396 = VECTOR('',#397,1.); -#397 = DIRECTION('',(1.,0.E+000)); -#398 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#399 = ORIENTED_EDGE('',*,*,#400,.T.); -#400 = EDGE_CURVE('',#323,#401,#403,.T.); -#401 = VERTEX_POINT('',#402); -#402 = CARTESIAN_POINT('',(0.111252391848,0.136830501719,0.3)); -#403 = SURFACE_CURVE('',#404,(#412,#423),.PCURVE_S1.); -#404 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#405,#406,#407,#408,#409,#410, - #411),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.E+000,0.202268972619, - 0.436274764953,0.700784457956,1.),.UNSPECIFIED.); -#405 = CARTESIAN_POINT('',(0.122622552692,0.140329012749,0.3)); -#406 = CARTESIAN_POINT('',(0.121812575502,0.140287168412,0.3)); -#407 = CARTESIAN_POINT('',(0.120065532424,0.140196914193,0.3)); -#408 = CARTESIAN_POINT('',(0.11734777334,0.139452155879,0.3)); -#409 = CARTESIAN_POINT('',(0.114338363161,0.138385122952,0.3)); -#410 = CARTESIAN_POINT('',(0.112322419599,0.137369550107,0.3)); -#411 = CARTESIAN_POINT('',(0.111252391848,0.136830501719,0.3)); -#412 = PCURVE('',#48,#413); -#413 = DEFINITIONAL_REPRESENTATION('',(#414),#422); -#414 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#415,#416,#417,#418,#419,#420, - #421),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.E+000,0.202268972619, - 0.436274764953,0.700784457956,1.),.UNSPECIFIED.); -#415 = CARTESIAN_POINT('',(-0.540329012749,0.922622552692)); -#416 = CARTESIAN_POINT('',(-0.540287168412,0.921812575502)); -#417 = CARTESIAN_POINT('',(-0.540196914193,0.920065532424)); -#418 = CARTESIAN_POINT('',(-0.539452155879,0.91734777334)); -#419 = CARTESIAN_POINT('',(-0.538385122952,0.914338363161)); -#420 = CARTESIAN_POINT('',(-0.537369550107,0.912322419599)); -#421 = CARTESIAN_POINT('',(-0.536830501719,0.911252391848)); -#422 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#423 = PCURVE('',#424,#439); -#424 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#425,#426) - ,(#427,#428) - ,(#429,#430) - ,(#431,#432) - ,(#433,#434) - ,(#435,#436) - ,(#437,#438 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,4),(2,2),(0.E+000, - 0.202268972619,0.436274764953,0.700784457956,1.),(0.E+000,1.), - .UNSPECIFIED.); -#425 = CARTESIAN_POINT('',(0.122622552692,0.140329012749,0.302)); -#426 = CARTESIAN_POINT('',(0.122622552692,0.140329012749,0.3)); -#427 = CARTESIAN_POINT('',(0.121812575502,0.140287168412,0.302)); -#428 = CARTESIAN_POINT('',(0.121812575502,0.140287168412,0.3)); -#429 = CARTESIAN_POINT('',(0.120065532424,0.140196914193,0.302)); -#430 = CARTESIAN_POINT('',(0.120065532424,0.140196914193,0.3)); -#431 = CARTESIAN_POINT('',(0.11734777334,0.139452155879,0.302)); -#432 = CARTESIAN_POINT('',(0.11734777334,0.139452155879,0.3)); -#433 = CARTESIAN_POINT('',(0.114338363161,0.138385122952,0.302)); -#434 = CARTESIAN_POINT('',(0.114338363161,0.138385122952,0.3)); -#435 = CARTESIAN_POINT('',(0.112322419599,0.137369550107,0.302)); -#436 = CARTESIAN_POINT('',(0.112322419599,0.137369550107,0.3)); -#437 = CARTESIAN_POINT('',(0.111252391848,0.136830501719,0.302)); -#438 = CARTESIAN_POINT('',(0.111252391848,0.136830501719,0.3)); -#439 = DEFINITIONAL_REPRESENTATION('',(#440),#444); -#440 = LINE('',#441,#442); -#441 = CARTESIAN_POINT('',(0.E+000,1.)); -#442 = VECTOR('',#443,1.); -#443 = DIRECTION('',(1.,0.E+000)); -#444 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#445 = ORIENTED_EDGE('',*,*,#446,.T.); -#446 = EDGE_CURVE('',#401,#447,#449,.T.); -#447 = VERTEX_POINT('',#448); -#448 = CARTESIAN_POINT('',(0.113053096054,0.166464948084,0.3)); -#449 = SURFACE_CURVE('',#450,(#454,#461),.PCURVE_S1.); -#450 = LINE('',#451,#452); -#451 = CARTESIAN_POINT('',(0.111252391848,0.136830501719,0.3)); -#452 = VECTOR('',#453,1.); -#453 = DIRECTION('',(6.065202083714E-002,0.998158971491, - -2.216358144771E-016)); -#454 = PCURVE('',#48,#455); -#455 = DEFINITIONAL_REPRESENTATION('',(#456),#460); -#456 = LINE('',#457,#458); -#457 = CARTESIAN_POINT('',(-0.536830501719,0.911252391848)); -#458 = VECTOR('',#459,1.); -#459 = DIRECTION('',(-0.998158971491,6.065202083714E-002)); -#460 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#461 = PCURVE('',#462,#467); -#462 = PLANE('',#463); -#463 = AXIS2_PLACEMENT_3D('',#464,#465,#466); -#464 = CARTESIAN_POINT('',(0.111252391848,0.136830501719,0.302)); -#465 = DIRECTION('',(-0.998158971491,6.065202083714E-002, - -1.346745400469E-017)); -#466 = DIRECTION('',(-6.065202083714E-002,-0.998158971491, - 2.216358144771E-016)); -#467 = DEFINITIONAL_REPRESENTATION('',(#468),#472); -#468 = LINE('',#469,#470); -#469 = CARTESIAN_POINT('',(-4.432716289543E-019,-2.E-003)); -#470 = VECTOR('',#471,1.); -#471 = DIRECTION('',(-1.,0.E+000)); -#472 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#473 = ORIENTED_EDGE('',*,*,#474,.T.); -#474 = EDGE_CURVE('',#447,#475,#477,.T.); -#475 = VERTEX_POINT('',#476); -#476 = CARTESIAN_POINT('',(0.115625530634,0.166104807242,0.3)); -#477 = SURFACE_CURVE('',#478,(#484,#493),.PCURVE_S1.); -#478 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#479,#480,#481,#482,#483), - .UNSPECIFIED.,.F.,.F.,(4,1,4),(0.E+000,0.562851224941,1.), - .UNSPECIFIED.); -#479 = CARTESIAN_POINT('',(0.113053096054,0.166464948084,0.3)); -#480 = CARTESIAN_POINT('',(0.1135317099,0.166367496912,0.3)); -#481 = CARTESIAN_POINT('',(0.114382048007,0.166194358493,0.3)); -#482 = CARTESIAN_POINT('',(0.115247290805,0.166132046746,0.3)); -#483 = CARTESIAN_POINT('',(0.115625530634,0.166104807242,0.3)); -#484 = PCURVE('',#48,#485); -#485 = DEFINITIONAL_REPRESENTATION('',(#486),#492); -#486 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#487,#488,#489,#490,#491), - .UNSPECIFIED.,.F.,.F.,(4,1,4),(0.E+000,0.562851224941,1.), - .UNSPECIFIED.); -#487 = CARTESIAN_POINT('',(-0.566464948084,0.913053096054)); -#488 = CARTESIAN_POINT('',(-0.566367496912,0.9135317099)); -#489 = CARTESIAN_POINT('',(-0.566194358493,0.914382048007)); -#490 = CARTESIAN_POINT('',(-0.566132046746,0.915247290805)); -#491 = CARTESIAN_POINT('',(-0.566104807242,0.915625530634)); -#492 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#493 = PCURVE('',#494,#505); -#494 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#495,#496) - ,(#497,#498) - ,(#499,#500) - ,(#501,#502) - ,(#503,#504 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,4),(2,2),(0.E+000,0.562851224941, - 1.),(0.E+000,1.),.UNSPECIFIED.); -#495 = CARTESIAN_POINT('',(0.113053096054,0.166464948084,0.302)); -#496 = CARTESIAN_POINT('',(0.113053096054,0.166464948084,0.3)); -#497 = CARTESIAN_POINT('',(0.1135317099,0.166367496912,0.302)); -#498 = CARTESIAN_POINT('',(0.1135317099,0.166367496912,0.3)); -#499 = CARTESIAN_POINT('',(0.114382048007,0.166194358493,0.302)); -#500 = CARTESIAN_POINT('',(0.114382048007,0.166194358493,0.3)); -#501 = CARTESIAN_POINT('',(0.115247290805,0.166132046746,0.302)); -#502 = CARTESIAN_POINT('',(0.115247290805,0.166132046746,0.3)); -#503 = CARTESIAN_POINT('',(0.115625530634,0.166104807242,0.302)); -#504 = CARTESIAN_POINT('',(0.115625530634,0.166104807242,0.3)); -#505 = DEFINITIONAL_REPRESENTATION('',(#506),#510); -#506 = LINE('',#507,#508); -#507 = CARTESIAN_POINT('',(0.E+000,1.)); -#508 = VECTOR('',#509,1.); -#509 = DIRECTION('',(1.,0.E+000)); -#510 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#511 = ORIENTED_EDGE('',*,*,#512,.T.); -#512 = EDGE_CURVE('',#475,#513,#515,.T.); -#513 = VERTEX_POINT('',#514); -#514 = CARTESIAN_POINT('',(0.141710017278,0.20546305632,0.3)); -#515 = SURFACE_CURVE('',#516,(#532,#551),.PCURVE_S1.); -#516 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#517,#518,#519,#520,#521,#522, - #523,#524,#525,#526,#527,#528,#529,#530,#531),.UNSPECIFIED.,.F.,.F., - (4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000,9.379854088557E-002, - 0.188391653544,0.290002772036,0.402222240451,0.463152701044, - 0.526711567649,0.592953912456,0.664830528427,0.740161879456, - 0.821342102366,0.907899660995,1.),.UNSPECIFIED.); -#517 = CARTESIAN_POINT('',(0.115625530634,0.166104807242,0.3)); -#518 = CARTESIAN_POINT('',(0.117272471936,0.166225253916,0.3)); -#519 = CARTESIAN_POINT('',(0.120580305855,0.166467167572,0.3)); -#520 = CARTESIAN_POINT('',(0.125341910865,0.168429521933,0.3)); -#521 = CARTESIAN_POINT('',(0.129843682841,0.171469171897,0.3)); -#522 = CARTESIAN_POINT('',(0.133167187112,0.174986793086,0.3)); -#523 = CARTESIAN_POINT('',(0.135693374817,0.178285084711,0.3)); -#524 = CARTESIAN_POINT('',(0.137231937725,0.18126051157,0.3)); -#525 = CARTESIAN_POINT('',(0.138678919135,0.184484936833,0.3)); -#526 = CARTESIAN_POINT('',(0.13976124164,0.188070150162,0.3)); -#527 = CARTESIAN_POINT('',(0.140657660072,0.191970219252,0.3)); -#528 = CARTESIAN_POINT('',(0.141232548661,0.196189773595,0.3)); -#529 = CARTESIAN_POINT('',(0.141686387668,0.200720061932,0.3)); -#530 = CARTESIAN_POINT('',(0.141701979498,0.203849693061,0.3)); -#531 = CARTESIAN_POINT('',(0.141710017278,0.20546305632,0.3)); -#532 = PCURVE('',#48,#533); -#533 = DEFINITIONAL_REPRESENTATION('',(#534),#550); -#534 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#535,#536,#537,#538,#539,#540, - #541,#542,#543,#544,#545,#546,#547,#548,#549),.UNSPECIFIED.,.F.,.F., - (4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000,9.379854088557E-002, - 0.188391653544,0.290002772036,0.402222240451,0.463152701044, - 0.526711567649,0.592953912456,0.664830528427,0.740161879456, - 0.821342102366,0.907899660995,1.),.UNSPECIFIED.); -#535 = CARTESIAN_POINT('',(-0.566104807242,0.915625530634)); -#536 = CARTESIAN_POINT('',(-0.566225253916,0.917272471936)); -#537 = CARTESIAN_POINT('',(-0.566467167572,0.920580305855)); -#538 = CARTESIAN_POINT('',(-0.568429521933,0.925341910865)); -#539 = CARTESIAN_POINT('',(-0.571469171897,0.929843682841)); -#540 = CARTESIAN_POINT('',(-0.574986793086,0.933167187112)); -#541 = CARTESIAN_POINT('',(-0.578285084711,0.935693374817)); -#542 = CARTESIAN_POINT('',(-0.58126051157,0.937231937725)); -#543 = CARTESIAN_POINT('',(-0.584484936833,0.938678919135)); -#544 = CARTESIAN_POINT('',(-0.588070150162,0.93976124164)); -#545 = CARTESIAN_POINT('',(-0.591970219252,0.940657660072)); -#546 = CARTESIAN_POINT('',(-0.596189773595,0.941232548661)); -#547 = CARTESIAN_POINT('',(-0.600720061932,0.941686387668)); -#548 = CARTESIAN_POINT('',(-0.603849693061,0.941701979498)); -#549 = CARTESIAN_POINT('',(-0.60546305632,0.941710017278)); -#550 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#551 = PCURVE('',#552,#583); -#552 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#553,#554) - ,(#555,#556) - ,(#557,#558) - ,(#559,#560) - ,(#561,#562) - ,(#563,#564) - ,(#565,#566) - ,(#567,#568) - ,(#569,#570) - ,(#571,#572) - ,(#573,#574) - ,(#575,#576) - ,(#577,#578) - ,(#579,#580) - ,(#581,#582 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(2,2),( - 0.E+000,9.379854088557E-002,0.188391653544,0.290002772036, - 0.402222240451,0.463152701044,0.526711567649,0.592953912456, - 0.664830528427,0.740161879456,0.821342102366,0.907899660995,1.),( - 0.E+000,1.),.UNSPECIFIED.); -#553 = CARTESIAN_POINT('',(0.115625530634,0.166104807242,0.302)); -#554 = CARTESIAN_POINT('',(0.115625530634,0.166104807242,0.3)); -#555 = CARTESIAN_POINT('',(0.117272471936,0.166225253916,0.302)); -#556 = CARTESIAN_POINT('',(0.117272471936,0.166225253916,0.3)); -#557 = CARTESIAN_POINT('',(0.120580305855,0.166467167572,0.302)); -#558 = CARTESIAN_POINT('',(0.120580305855,0.166467167572,0.3)); -#559 = CARTESIAN_POINT('',(0.125341910865,0.168429521933,0.302)); -#560 = CARTESIAN_POINT('',(0.125341910865,0.168429521933,0.3)); -#561 = CARTESIAN_POINT('',(0.129843682841,0.171469171897,0.302)); -#562 = CARTESIAN_POINT('',(0.129843682841,0.171469171897,0.3)); -#563 = CARTESIAN_POINT('',(0.133167187112,0.174986793086,0.302)); -#564 = CARTESIAN_POINT('',(0.133167187112,0.174986793086,0.3)); -#565 = CARTESIAN_POINT('',(0.135693374817,0.178285084711,0.302)); -#566 = CARTESIAN_POINT('',(0.135693374817,0.178285084711,0.3)); -#567 = CARTESIAN_POINT('',(0.137231937725,0.18126051157,0.302)); -#568 = CARTESIAN_POINT('',(0.137231937725,0.18126051157,0.3)); -#569 = CARTESIAN_POINT('',(0.138678919135,0.184484936833,0.302)); -#570 = CARTESIAN_POINT('',(0.138678919135,0.184484936833,0.3)); -#571 = CARTESIAN_POINT('',(0.13976124164,0.188070150162,0.302)); -#572 = CARTESIAN_POINT('',(0.13976124164,0.188070150162,0.3)); -#573 = CARTESIAN_POINT('',(0.140657660072,0.191970219252,0.302)); -#574 = CARTESIAN_POINT('',(0.140657660072,0.191970219252,0.3)); -#575 = CARTESIAN_POINT('',(0.141232548661,0.196189773595,0.302)); -#576 = CARTESIAN_POINT('',(0.141232548661,0.196189773595,0.3)); -#577 = CARTESIAN_POINT('',(0.141686387668,0.200720061932,0.302)); -#578 = CARTESIAN_POINT('',(0.141686387668,0.200720061932,0.3)); -#579 = CARTESIAN_POINT('',(0.141701979498,0.203849693061,0.302)); -#580 = CARTESIAN_POINT('',(0.141701979498,0.203849693061,0.3)); -#581 = CARTESIAN_POINT('',(0.141710017278,0.20546305632,0.302)); -#582 = CARTESIAN_POINT('',(0.141710017278,0.20546305632,0.3)); -#583 = DEFINITIONAL_REPRESENTATION('',(#584),#588); -#584 = LINE('',#585,#586); -#585 = CARTESIAN_POINT('',(0.E+000,1.)); -#586 = VECTOR('',#587,1.); -#587 = DIRECTION('',(1.,0.E+000)); -#588 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#589 = ORIENTED_EDGE('',*,*,#590,.T.); -#590 = EDGE_CURVE('',#513,#591,#593,.T.); -#591 = VERTEX_POINT('',#592); -#592 = CARTESIAN_POINT('',(0.119792874654,0.242197422125,0.3)); -#593 = SURFACE_CURVE('',#594,(#606,#621),.PCURVE_S1.); -#594 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#595,#596,#597,#598,#599,#600, - #601,#602,#603,#604,#605),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,4), - (0.E+000,0.161713776497,0.310105544098,0.44820620169,0.579033460028, - 0.698679440002,0.803098988682,0.900750900152,1.),.UNSPECIFIED.); -#595 = CARTESIAN_POINT('',(0.141710017278,0.20546305632,0.3)); -#596 = CARTESIAN_POINT('',(0.141658192574,0.208006973802,0.3)); -#597 = CARTESIAN_POINT('',(0.141558812494,0.212885240404,0.3)); -#598 = CARTESIAN_POINT('',(0.140327396217,0.219843774437,0.3)); -#599 = CARTESIAN_POINT('',(0.138461069628,0.22614926037,0.3)); -#600 = CARTESIAN_POINT('',(0.135816014373,0.231679174327,0.3)); -#601 = CARTESIAN_POINT('',(0.132609362285,0.236288516346,0.3)); -#602 = CARTESIAN_POINT('',(0.128811784606,0.239691462348,0.3)); -#603 = CARTESIAN_POINT('',(0.124465920513,0.241820390132,0.3)); -#604 = CARTESIAN_POINT('',(0.121358957453,0.242071066995,0.3)); -#605 = CARTESIAN_POINT('',(0.119792874654,0.242197422125,0.3)); -#606 = PCURVE('',#48,#607); -#607 = DEFINITIONAL_REPRESENTATION('',(#608),#620); -#608 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#609,#610,#611,#612,#613,#614, - #615,#616,#617,#618,#619),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,4), - (0.E+000,0.161713776497,0.310105544098,0.44820620169,0.579033460028, - 0.698679440002,0.803098988682,0.900750900152,1.),.UNSPECIFIED.); -#609 = CARTESIAN_POINT('',(-0.60546305632,0.941710017278)); -#610 = CARTESIAN_POINT('',(-0.608006973802,0.941658192574)); -#611 = CARTESIAN_POINT('',(-0.612885240404,0.941558812494)); -#612 = CARTESIAN_POINT('',(-0.619843774437,0.940327396217)); -#613 = CARTESIAN_POINT('',(-0.62614926037,0.938461069628)); -#614 = CARTESIAN_POINT('',(-0.631679174327,0.935816014373)); -#615 = CARTESIAN_POINT('',(-0.636288516346,0.932609362285)); -#616 = CARTESIAN_POINT('',(-0.639691462348,0.928811784606)); -#617 = CARTESIAN_POINT('',(-0.641820390132,0.924465920513)); -#618 = CARTESIAN_POINT('',(-0.642071066995,0.921358957453)); -#619 = CARTESIAN_POINT('',(-0.642197422125,0.919792874654)); -#620 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#621 = PCURVE('',#622,#645); -#622 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#623,#624) - ,(#625,#626) - ,(#627,#628) - ,(#629,#630) - ,(#631,#632) - ,(#633,#634) - ,(#635,#636) - ,(#637,#638) - ,(#639,#640) - ,(#641,#642) - ,(#643,#644 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,4),(2,2),(0.E+000, - 0.161713776497,0.310105544098,0.44820620169,0.579033460028, - 0.698679440002,0.803098988682,0.900750900152,1.),(0.E+000,1.), - .UNSPECIFIED.); -#623 = CARTESIAN_POINT('',(0.141710017278,0.20546305632,0.302)); -#624 = CARTESIAN_POINT('',(0.141710017278,0.20546305632,0.3)); -#625 = CARTESIAN_POINT('',(0.141658192574,0.208006973802,0.302)); -#626 = CARTESIAN_POINT('',(0.141658192574,0.208006973802,0.3)); -#627 = CARTESIAN_POINT('',(0.141558812494,0.212885240404,0.302)); -#628 = CARTESIAN_POINT('',(0.141558812494,0.212885240404,0.3)); -#629 = CARTESIAN_POINT('',(0.140327396217,0.219843774437,0.302)); -#630 = CARTESIAN_POINT('',(0.140327396217,0.219843774437,0.3)); -#631 = CARTESIAN_POINT('',(0.138461069628,0.22614926037,0.302)); -#632 = CARTESIAN_POINT('',(0.138461069628,0.22614926037,0.3)); -#633 = CARTESIAN_POINT('',(0.135816014373,0.231679174327,0.302)); -#634 = CARTESIAN_POINT('',(0.135816014373,0.231679174327,0.3)); -#635 = CARTESIAN_POINT('',(0.132609362285,0.236288516346,0.302)); -#636 = CARTESIAN_POINT('',(0.132609362285,0.236288516346,0.3)); -#637 = CARTESIAN_POINT('',(0.128811784606,0.239691462348,0.302)); -#638 = CARTESIAN_POINT('',(0.128811784606,0.239691462348,0.3)); -#639 = CARTESIAN_POINT('',(0.124465920513,0.241820390132,0.302)); -#640 = CARTESIAN_POINT('',(0.124465920513,0.241820390132,0.3)); -#641 = CARTESIAN_POINT('',(0.121358957453,0.242071066995,0.302)); -#642 = CARTESIAN_POINT('',(0.121358957453,0.242071066995,0.3)); -#643 = CARTESIAN_POINT('',(0.119792874654,0.242197422125,0.302)); -#644 = CARTESIAN_POINT('',(0.119792874654,0.242197422125,0.3)); -#645 = DEFINITIONAL_REPRESENTATION('',(#646),#650); -#646 = LINE('',#647,#648); -#647 = CARTESIAN_POINT('',(0.E+000,1.)); -#648 = VECTOR('',#649,1.); -#649 = DIRECTION('',(1.,0.E+000)); -#650 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#651 = ORIENTED_EDGE('',*,*,#652,.T.); -#652 = EDGE_CURVE('',#591,#653,#655,.T.); -#653 = VERTEX_POINT('',#654); -#654 = CARTESIAN_POINT('',(9.561198960003E-002,0.202684826973,0.3)); -#655 = SURFACE_CURVE('',#656,(#668,#683),.PCURVE_S1.); -#656 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#657,#658,#659,#660,#661,#662, - #663,#664,#665,#666,#667),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,4), - (0.E+000,9.126362437977E-002,0.18227228237,0.27908730912, - 0.387648952183,0.511279668023,0.653335087164,0.815589860134,1.), - .UNSPECIFIED.); -#657 = CARTESIAN_POINT('',(0.119792874654,0.242197422125,0.3)); -#658 = CARTESIAN_POINT('',(0.118246919394,0.242081541327,0.3)); -#659 = CARTESIAN_POINT('',(0.115159327863,0.24185010347,0.3)); -#660 = CARTESIAN_POINT('',(0.110791673482,0.239848280411,0.3)); -#661 = CARTESIAN_POINT('',(0.10691015091,0.236633271892,0.3)); -#662 = CARTESIAN_POINT('',(0.103495010222,0.232201282863,0.3)); -#663 = CARTESIAN_POINT('',(0.100649165418,0.226533137035,0.3)); -#664 = CARTESIAN_POINT('',(9.830207110176E-002,0.21968451525,0.3)); -#665 = CARTESIAN_POINT('',(9.659229936985E-002,0.211596472273,0.3)); -#666 = CARTESIAN_POINT('',(9.595239169733E-002,0.205779300622,0.3)); -#667 = CARTESIAN_POINT('',(9.561198960003E-002,0.202684826973,0.3)); -#668 = PCURVE('',#48,#669); -#669 = DEFINITIONAL_REPRESENTATION('',(#670),#682); -#670 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#671,#672,#673,#674,#675,#676, - #677,#678,#679,#680,#681),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,4), - (0.E+000,9.126362437977E-002,0.18227228237,0.27908730912, - 0.387648952183,0.511279668023,0.653335087164,0.815589860134,1.), - .UNSPECIFIED.); -#671 = CARTESIAN_POINT('',(-0.642197422125,0.919792874654)); -#672 = CARTESIAN_POINT('',(-0.642081541327,0.918246919394)); -#673 = CARTESIAN_POINT('',(-0.64185010347,0.915159327863)); -#674 = CARTESIAN_POINT('',(-0.639848280411,0.910791673482)); -#675 = CARTESIAN_POINT('',(-0.636633271892,0.90691015091)); -#676 = CARTESIAN_POINT('',(-0.632201282863,0.903495010222)); -#677 = CARTESIAN_POINT('',(-0.626533137035,0.900649165418)); -#678 = CARTESIAN_POINT('',(-0.61968451525,0.898302071102)); -#679 = CARTESIAN_POINT('',(-0.611596472273,0.89659229937)); -#680 = CARTESIAN_POINT('',(-0.605779300622,0.895952391697)); -#681 = CARTESIAN_POINT('',(-0.602684826973,0.8956119896)); -#682 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#683 = PCURVE('',#684,#707); -#684 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#685,#686) - ,(#687,#688) - ,(#689,#690) - ,(#691,#692) - ,(#693,#694) - ,(#695,#696) - ,(#697,#698) - ,(#699,#700) - ,(#701,#702) - ,(#703,#704) - ,(#705,#706 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,4),(2,2),(0.E+000, - 9.126362437977E-002,0.18227228237,0.27908730912,0.387648952183, - 0.511279668023,0.653335087164,0.815589860134,1.),(0.E+000,1.), - .UNSPECIFIED.); -#685 = CARTESIAN_POINT('',(0.119792874654,0.242197422125,0.302)); -#686 = CARTESIAN_POINT('',(0.119792874654,0.242197422125,0.3)); -#687 = CARTESIAN_POINT('',(0.118246919394,0.242081541327,0.302)); -#688 = CARTESIAN_POINT('',(0.118246919394,0.242081541327,0.3)); -#689 = CARTESIAN_POINT('',(0.115159327863,0.24185010347,0.302)); -#690 = CARTESIAN_POINT('',(0.115159327863,0.24185010347,0.3)); -#691 = CARTESIAN_POINT('',(0.110791673482,0.239848280411,0.302)); -#692 = CARTESIAN_POINT('',(0.110791673482,0.239848280411,0.3)); -#693 = CARTESIAN_POINT('',(0.10691015091,0.236633271892,0.302)); -#694 = CARTESIAN_POINT('',(0.10691015091,0.236633271892,0.3)); -#695 = CARTESIAN_POINT('',(0.103495010222,0.232201282863,0.302)); -#696 = CARTESIAN_POINT('',(0.103495010222,0.232201282863,0.3)); -#697 = CARTESIAN_POINT('',(0.100649165418,0.226533137035,0.302)); -#698 = CARTESIAN_POINT('',(0.100649165418,0.226533137035,0.3)); -#699 = CARTESIAN_POINT('',(9.830207110176E-002,0.21968451525,0.302)); -#700 = CARTESIAN_POINT('',(9.830207110176E-002,0.21968451525,0.3)); -#701 = CARTESIAN_POINT('',(9.659229936985E-002,0.211596472273,0.302)); -#702 = CARTESIAN_POINT('',(9.659229936985E-002,0.211596472273,0.3)); -#703 = CARTESIAN_POINT('',(9.595239169733E-002,0.205779300622,0.302)); -#704 = CARTESIAN_POINT('',(9.595239169733E-002,0.205779300622,0.3)); -#705 = CARTESIAN_POINT('',(9.561198960003E-002,0.202684826973,0.302)); -#706 = CARTESIAN_POINT('',(9.561198960003E-002,0.202684826973,0.3)); -#707 = DEFINITIONAL_REPRESENTATION('',(#708),#712); -#708 = LINE('',#709,#710); -#709 = CARTESIAN_POINT('',(0.E+000,1.)); -#710 = VECTOR('',#711,1.); -#711 = DIRECTION('',(1.,0.E+000)); -#712 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#713 = ORIENTED_EDGE('',*,*,#714,.T.); -#714 = EDGE_CURVE('',#653,#715,#717,.T.); -#715 = VERTEX_POINT('',#716); -#716 = CARTESIAN_POINT('',(7.914840828659E-002,0.205977543236,0.3)); -#717 = SURFACE_CURVE('',#718,(#722,#729),.PCURVE_S1.); -#718 = LINE('',#719,#720); -#719 = CARTESIAN_POINT('',(9.561198960003E-002,0.202684826973,0.3)); -#720 = VECTOR('',#721,1.); -#721 = DIRECTION('',(-0.980580675691,0.196116135138,-4.354652974618E-017 - )); -#722 = PCURVE('',#48,#723); -#723 = DEFINITIONAL_REPRESENTATION('',(#724),#728); -#724 = LINE('',#725,#726); -#725 = CARTESIAN_POINT('',(-0.602684826973,0.8956119896)); -#726 = VECTOR('',#727,1.); -#727 = DIRECTION('',(-0.196116135138,-0.980580675691)); -#728 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#729 = PCURVE('',#730,#735); -#730 = PLANE('',#731); -#731 = AXIS2_PLACEMENT_3D('',#732,#733,#734); -#732 = CARTESIAN_POINT('',(9.561198960003E-002,0.202684826973,0.302)); -#733 = DIRECTION('',(-0.196116135138,-0.980580675691,2.177326487309E-016 - )); -#734 = DIRECTION('',(0.980580675691,-0.196116135138,4.354652974618E-017) - ); -#735 = DEFINITIONAL_REPRESENTATION('',(#736),#740); -#736 = LINE('',#737,#738); -#737 = CARTESIAN_POINT('',(-8.709305949236E-020,-2.E-003)); -#738 = VECTOR('',#739,1.); -#739 = DIRECTION('',(-1.,0.E+000)); -#740 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#741 = ORIENTED_EDGE('',*,*,#742,.T.); -#742 = EDGE_CURVE('',#715,#743,#745,.T.); -#743 = VERTEX_POINT('',#744); -#744 = CARTESIAN_POINT('',(0.119226939046,0.27183186849,0.3)); -#745 = SURFACE_CURVE('',#746,(#766,#789),.PCURVE_S1.); -#746 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#747,#748,#749,#750,#751,#752, - #753,#754,#755,#756,#757,#758,#759,#760,#761,#762,#763,#764,#765), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 9.122476984126E-002,0.177913863773,0.259697360619,0.336778990913, - 0.409803700408,0.478608773912,0.54408804914,0.605766121966, - 0.664020565669,0.71835496815,0.768590650062,0.816722075277, - 0.863055298693,0.908208072643,0.95397126985,1.),.UNSPECIFIED.); -#747 = CARTESIAN_POINT('',(7.914840828659E-002,0.205977543236,0.3)); -#748 = CARTESIAN_POINT('',(7.942263179121E-002,0.208517790933,0.3)); -#749 = CARTESIAN_POINT('',(7.995744446684E-002,0.213471985759,0.3)); -#750 = CARTESIAN_POINT('',(8.102656814399E-002,0.220668344575,0.3)); -#751 = CARTESIAN_POINT('',(8.234956651353E-002,0.227420410235,0.3)); -#752 = CARTESIAN_POINT('',(8.396370016147E-002,0.233713279684,0.3)); -#753 = CARTESIAN_POINT('',(8.573135924342E-002,0.23958709514,0.3)); -#754 = CARTESIAN_POINT('',(8.779849653291E-002,0.245017929677,0.3)); -#755 = CARTESIAN_POINT('',(9.010282777064E-002,0.250004184549,0.3)); -#756 = CARTESIAN_POINT('',(9.26259501583E-002,0.254546928892,0.3)); -#757 = CARTESIAN_POINT('',(9.531783995478E-002,0.258628423011,0.3)); -#758 = CARTESIAN_POINT('',(9.826109596403E-002,0.262121960092,0.3)); -#759 = CARTESIAN_POINT('',(0.101319031097,0.265125765411,0.3)); -#760 = CARTESIAN_POINT('',(0.104580653649,0.26754877688,0.3)); -#761 = CARTESIAN_POINT('',(0.107988298022,0.269495502836,0.3)); -#762 = CARTESIAN_POINT('',(0.111604056843,0.270834943159,0.3)); -#763 = CARTESIAN_POINT('',(0.11536176041,0.271697887748,0.3)); -#764 = CARTESIAN_POINT('',(0.117936063878,0.271787122197,0.3)); -#765 = CARTESIAN_POINT('',(0.119226939046,0.27183186849,0.3)); -#766 = PCURVE('',#48,#767); -#767 = DEFINITIONAL_REPRESENTATION('',(#768),#788); -#768 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#769,#770,#771,#772,#773,#774, - #775,#776,#777,#778,#779,#780,#781,#782,#783,#784,#785,#786,#787), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 9.122476984126E-002,0.177913863773,0.259697360619,0.336778990913, - 0.409803700408,0.478608773912,0.54408804914,0.605766121966, - 0.664020565669,0.71835496815,0.768590650062,0.816722075277, - 0.863055298693,0.908208072643,0.95397126985,1.),.UNSPECIFIED.); -#769 = CARTESIAN_POINT('',(-0.605977543236,0.879148408287)); -#770 = CARTESIAN_POINT('',(-0.608517790933,0.879422631791)); -#771 = CARTESIAN_POINT('',(-0.613471985759,0.879957444467)); -#772 = CARTESIAN_POINT('',(-0.620668344575,0.881026568144)); -#773 = CARTESIAN_POINT('',(-0.627420410235,0.882349566514)); -#774 = CARTESIAN_POINT('',(-0.633713279684,0.883963700161)); -#775 = CARTESIAN_POINT('',(-0.63958709514,0.885731359243)); -#776 = CARTESIAN_POINT('',(-0.645017929677,0.887798496533)); -#777 = CARTESIAN_POINT('',(-0.650004184549,0.890102827771)); -#778 = CARTESIAN_POINT('',(-0.654546928892,0.892625950158)); -#779 = CARTESIAN_POINT('',(-0.658628423011,0.895317839955)); -#780 = CARTESIAN_POINT('',(-0.662121960092,0.898261095964)); -#781 = CARTESIAN_POINT('',(-0.665125765411,0.901319031097)); -#782 = CARTESIAN_POINT('',(-0.66754877688,0.904580653649)); -#783 = CARTESIAN_POINT('',(-0.669495502836,0.907988298022)); -#784 = CARTESIAN_POINT('',(-0.670834943159,0.911604056843)); -#785 = CARTESIAN_POINT('',(-0.671697887748,0.91536176041)); -#786 = CARTESIAN_POINT('',(-0.671787122197,0.917936063878)); -#787 = CARTESIAN_POINT('',(-0.67183186849,0.919226939046)); -#788 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#789 = PCURVE('',#790,#829); -#790 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#791,#792) - ,(#793,#794) - ,(#795,#796) - ,(#797,#798) - ,(#799,#800) - ,(#801,#802) - ,(#803,#804) - ,(#805,#806) - ,(#807,#808) - ,(#809,#810) - ,(#811,#812) - ,(#813,#814) - ,(#815,#816) - ,(#817,#818) - ,(#819,#820) - ,(#821,#822) - ,(#823,#824) - ,(#825,#826) - ,(#827,#828 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, - 2),(0.E+000,9.122476984126E-002,0.177913863773,0.259697360619, - 0.336778990913,0.409803700408,0.478608773912,0.54408804914, - 0.605766121966,0.664020565669,0.71835496815,0.768590650062, - 0.816722075277,0.863055298693,0.908208072643,0.95397126985,1.),( - 0.E+000,1.),.UNSPECIFIED.); -#791 = CARTESIAN_POINT('',(7.914840828659E-002,0.205977543236,0.302)); -#792 = CARTESIAN_POINT('',(7.914840828659E-002,0.205977543236,0.3)); -#793 = CARTESIAN_POINT('',(7.942263179121E-002,0.208517790933,0.302)); -#794 = CARTESIAN_POINT('',(7.942263179121E-002,0.208517790933,0.3)); -#795 = CARTESIAN_POINT('',(7.995744446684E-002,0.213471985759,0.302)); -#796 = CARTESIAN_POINT('',(7.995744446684E-002,0.213471985759,0.3)); -#797 = CARTESIAN_POINT('',(8.102656814399E-002,0.220668344575,0.302)); -#798 = CARTESIAN_POINT('',(8.102656814399E-002,0.220668344575,0.3)); -#799 = CARTESIAN_POINT('',(8.234956651353E-002,0.227420410235,0.302)); -#800 = CARTESIAN_POINT('',(8.234956651353E-002,0.227420410235,0.3)); -#801 = CARTESIAN_POINT('',(8.396370016147E-002,0.233713279684,0.302)); -#802 = CARTESIAN_POINT('',(8.396370016147E-002,0.233713279684,0.3)); -#803 = CARTESIAN_POINT('',(8.573135924342E-002,0.23958709514,0.302)); -#804 = CARTESIAN_POINT('',(8.573135924342E-002,0.23958709514,0.3)); -#805 = CARTESIAN_POINT('',(8.779849653291E-002,0.245017929677,0.302)); -#806 = CARTESIAN_POINT('',(8.779849653291E-002,0.245017929677,0.3)); -#807 = CARTESIAN_POINT('',(9.010282777064E-002,0.250004184549,0.302)); -#808 = CARTESIAN_POINT('',(9.010282777064E-002,0.250004184549,0.3)); -#809 = CARTESIAN_POINT('',(9.26259501583E-002,0.254546928892,0.302)); -#810 = CARTESIAN_POINT('',(9.26259501583E-002,0.254546928892,0.3)); -#811 = CARTESIAN_POINT('',(9.531783995478E-002,0.258628423011,0.302)); -#812 = CARTESIAN_POINT('',(9.531783995478E-002,0.258628423011,0.3)); -#813 = CARTESIAN_POINT('',(9.826109596403E-002,0.262121960092,0.302)); -#814 = CARTESIAN_POINT('',(9.826109596403E-002,0.262121960092,0.3)); -#815 = CARTESIAN_POINT('',(0.101319031097,0.265125765411,0.302)); -#816 = CARTESIAN_POINT('',(0.101319031097,0.265125765411,0.3)); -#817 = CARTESIAN_POINT('',(0.104580653649,0.26754877688,0.302)); -#818 = CARTESIAN_POINT('',(0.104580653649,0.26754877688,0.3)); -#819 = CARTESIAN_POINT('',(0.107988298022,0.269495502836,0.302)); -#820 = CARTESIAN_POINT('',(0.107988298022,0.269495502836,0.3)); -#821 = CARTESIAN_POINT('',(0.111604056843,0.270834943159,0.302)); -#822 = CARTESIAN_POINT('',(0.111604056843,0.270834943159,0.3)); -#823 = CARTESIAN_POINT('',(0.11536176041,0.271697887748,0.302)); -#824 = CARTESIAN_POINT('',(0.11536176041,0.271697887748,0.3)); -#825 = CARTESIAN_POINT('',(0.117936063878,0.271787122197,0.302)); -#826 = CARTESIAN_POINT('',(0.117936063878,0.271787122197,0.3)); -#827 = CARTESIAN_POINT('',(0.119226939046,0.27183186849,0.302)); -#828 = CARTESIAN_POINT('',(0.119226939046,0.27183186849,0.3)); -#829 = DEFINITIONAL_REPRESENTATION('',(#830),#834); -#830 = LINE('',#831,#832); -#831 = CARTESIAN_POINT('',(0.E+000,1.)); -#832 = VECTOR('',#833,1.); -#833 = DIRECTION('',(1.,0.E+000)); -#834 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#835 = ORIENTED_EDGE('',*,*,#836,.T.); -#836 = EDGE_CURVE('',#743,#837,#839,.T.); -#837 = VERTEX_POINT('',#838); -#838 = CARTESIAN_POINT('',(0.158173598591,0.206543478843,0.3)); -#839 = SURFACE_CURVE('',#840,(#856,#875),.PCURVE_S1.); -#840 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#841,#842,#843,#844,#845,#846, - #847,#848,#849,#850,#851,#852,#853,#854,#855),.UNSPECIFIED.,.F.,.F., - (4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000,6.387538380381E-002,0.12861994085 - ,0.196003510006,0.268720312566,0.345997735741,0.427237937522, - 0.51355471408,0.606225684137,0.702279552613,0.799517688897, - 0.898802923895,1.),.UNSPECIFIED.); -#841 = CARTESIAN_POINT('',(0.119226939046,0.27183186849,0.3)); -#842 = CARTESIAN_POINT('',(0.121005319564,0.27171735703,0.3)); -#843 = CARTESIAN_POINT('',(0.124586279606,0.271486775915,0.3)); -#844 = CARTESIAN_POINT('',(0.129821310946,0.269761218325,0.3)); -#845 = CARTESIAN_POINT('',(0.134777221861,0.266893256078,0.3)); -#846 = CARTESIAN_POINT('',(0.13943575464,0.263000821987,0.3)); -#847 = CARTESIAN_POINT('',(0.14375146343,0.258205698873,0.3)); -#848 = CARTESIAN_POINT('',(0.147571454268,0.25254422923,0.3)); -#849 = CARTESIAN_POINT('',(0.150819844871,0.246054036992,0.3)); -#850 = CARTESIAN_POINT('',(0.153394946348,0.238840613046,0.3)); -#851 = CARTESIAN_POINT('',(0.15558652488,0.231185982165,0.3)); -#852 = CARTESIAN_POINT('',(0.157028092774,0.223168697578,0.3)); -#853 = CARTESIAN_POINT('',(0.158005058872,0.214936606152,0.3)); -#854 = CARTESIAN_POINT('',(0.158117062654,0.209358917945,0.3)); -#855 = CARTESIAN_POINT('',(0.158173598591,0.206543478843,0.3)); -#856 = PCURVE('',#48,#857); -#857 = DEFINITIONAL_REPRESENTATION('',(#858),#874); -#858 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#859,#860,#861,#862,#863,#864, - #865,#866,#867,#868,#869,#870,#871,#872,#873),.UNSPECIFIED.,.F.,.F., - (4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000,6.387538380381E-002,0.12861994085 - ,0.196003510006,0.268720312566,0.345997735741,0.427237937522, - 0.51355471408,0.606225684137,0.702279552613,0.799517688897, - 0.898802923895,1.),.UNSPECIFIED.); -#859 = CARTESIAN_POINT('',(-0.67183186849,0.919226939046)); -#860 = CARTESIAN_POINT('',(-0.67171735703,0.921005319564)); -#861 = CARTESIAN_POINT('',(-0.671486775915,0.924586279606)); -#862 = CARTESIAN_POINT('',(-0.669761218325,0.929821310946)); -#863 = CARTESIAN_POINT('',(-0.666893256078,0.934777221861)); -#864 = CARTESIAN_POINT('',(-0.663000821987,0.93943575464)); -#865 = CARTESIAN_POINT('',(-0.658205698873,0.94375146343)); -#866 = CARTESIAN_POINT('',(-0.65254422923,0.947571454268)); -#867 = CARTESIAN_POINT('',(-0.646054036992,0.950819844871)); -#868 = CARTESIAN_POINT('',(-0.638840613046,0.953394946348)); -#869 = CARTESIAN_POINT('',(-0.631185982165,0.95558652488)); -#870 = CARTESIAN_POINT('',(-0.623168697578,0.957028092774)); -#871 = CARTESIAN_POINT('',(-0.614936606152,0.958005058872)); -#872 = CARTESIAN_POINT('',(-0.609358917945,0.958117062654)); -#873 = CARTESIAN_POINT('',(-0.606543478843,0.958173598591)); -#874 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#875 = PCURVE('',#876,#907); -#876 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#877,#878) - ,(#879,#880) - ,(#881,#882) - ,(#883,#884) - ,(#885,#886) - ,(#887,#888) - ,(#889,#890) - ,(#891,#892) - ,(#893,#894) - ,(#895,#896) - ,(#897,#898) - ,(#899,#900) - ,(#901,#902) - ,(#903,#904) - ,(#905,#906 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(2,2),( - 0.E+000,6.387538380381E-002,0.12861994085,0.196003510006, - 0.268720312566,0.345997735741,0.427237937522,0.51355471408, - 0.606225684137,0.702279552613,0.799517688897,0.898802923895,1.),( - 0.E+000,1.),.UNSPECIFIED.); -#877 = CARTESIAN_POINT('',(0.119226939046,0.27183186849,0.302)); -#878 = CARTESIAN_POINT('',(0.119226939046,0.27183186849,0.3)); -#879 = CARTESIAN_POINT('',(0.121005319564,0.27171735703,0.302)); -#880 = CARTESIAN_POINT('',(0.121005319564,0.27171735703,0.3)); -#881 = CARTESIAN_POINT('',(0.124586279606,0.271486775915,0.302)); -#882 = CARTESIAN_POINT('',(0.124586279606,0.271486775915,0.3)); -#883 = CARTESIAN_POINT('',(0.129821310946,0.269761218325,0.302)); -#884 = CARTESIAN_POINT('',(0.129821310946,0.269761218325,0.3)); -#885 = CARTESIAN_POINT('',(0.134777221861,0.266893256078,0.302)); -#886 = CARTESIAN_POINT('',(0.134777221861,0.266893256078,0.3)); -#887 = CARTESIAN_POINT('',(0.13943575464,0.263000821987,0.302)); -#888 = CARTESIAN_POINT('',(0.13943575464,0.263000821987,0.3)); -#889 = CARTESIAN_POINT('',(0.14375146343,0.258205698873,0.302)); -#890 = CARTESIAN_POINT('',(0.14375146343,0.258205698873,0.3)); -#891 = CARTESIAN_POINT('',(0.147571454268,0.25254422923,0.302)); -#892 = CARTESIAN_POINT('',(0.147571454268,0.25254422923,0.3)); -#893 = CARTESIAN_POINT('',(0.150819844871,0.246054036992,0.302)); -#894 = CARTESIAN_POINT('',(0.150819844871,0.246054036992,0.3)); -#895 = CARTESIAN_POINT('',(0.153394946348,0.238840613046,0.302)); -#896 = CARTESIAN_POINT('',(0.153394946348,0.238840613046,0.3)); -#897 = CARTESIAN_POINT('',(0.15558652488,0.231185982165,0.302)); -#898 = CARTESIAN_POINT('',(0.15558652488,0.231185982165,0.3)); -#899 = CARTESIAN_POINT('',(0.157028092774,0.223168697578,0.302)); -#900 = CARTESIAN_POINT('',(0.157028092774,0.223168697578,0.3)); -#901 = CARTESIAN_POINT('',(0.158005058872,0.214936606152,0.302)); -#902 = CARTESIAN_POINT('',(0.158005058872,0.214936606152,0.3)); -#903 = CARTESIAN_POINT('',(0.158117062654,0.209358917945,0.302)); -#904 = CARTESIAN_POINT('',(0.158117062654,0.209358917945,0.3)); -#905 = CARTESIAN_POINT('',(0.158173598591,0.206543478843,0.302)); -#906 = CARTESIAN_POINT('',(0.158173598591,0.206543478843,0.3)); -#907 = DEFINITIONAL_REPRESENTATION('',(#908),#912); -#908 = LINE('',#909,#910); -#909 = CARTESIAN_POINT('',(0.E+000,1.)); -#910 = VECTOR('',#911,1.); -#911 = DIRECTION('',(1.,0.E+000)); -#912 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#913 = ORIENTED_EDGE('',*,*,#914,.T.); -#914 = EDGE_CURVE('',#837,#915,#917,.T.); -#915 = VERTEX_POINT('',#916); -#916 = CARTESIAN_POINT('',(0.140629594754,0.155609274155,0.3)); -#917 = SURFACE_CURVE('',#918,(#930,#945),.PCURVE_S1.); -#918 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#919,#920,#921,#922,#923,#924, - #925,#926,#927,#928,#929),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,4), - (0.E+000,0.144088321347,0.282399129672,0.414872702475,0.544283974604, - 0.666959324827,0.782935532939,0.893535797687,1.),.UNSPECIFIED.); -#919 = CARTESIAN_POINT('',(0.158173598591,0.206543478843,0.3)); -#920 = CARTESIAN_POINT('',(0.158129792988,0.203883132932,0.3)); -#921 = CARTESIAN_POINT('',(0.158043938255,0.198669113066,0.3)); -#922 = CARTESIAN_POINT('',(0.15720775192,0.191045820859,0.3)); -#923 = CARTESIAN_POINT('',(0.155818746293,0.183782650757,0.3)); -#924 = CARTESIAN_POINT('',(0.153886857386,0.176944626223,0.3)); -#925 = CARTESIAN_POINT('',(0.151461620133,0.170581289722,0.3)); -#926 = CARTESIAN_POINT('',(0.148396002302,0.164897214888,0.3)); -#927 = CARTESIAN_POINT('',(0.144884664636,0.159815365255,0.3)); -#928 = CARTESIAN_POINT('',(0.142029818795,0.156993380654,0.3)); -#929 = CARTESIAN_POINT('',(0.140629594754,0.155609274155,0.3)); -#930 = PCURVE('',#48,#931); -#931 = DEFINITIONAL_REPRESENTATION('',(#932),#944); -#932 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#933,#934,#935,#936,#937,#938, - #939,#940,#941,#942,#943),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,4), - (0.E+000,0.144088321347,0.282399129672,0.414872702475,0.544283974604, - 0.666959324827,0.782935532939,0.893535797687,1.),.UNSPECIFIED.); -#933 = CARTESIAN_POINT('',(-0.606543478843,0.958173598591)); -#934 = CARTESIAN_POINT('',(-0.603883132932,0.958129792988)); -#935 = CARTESIAN_POINT('',(-0.598669113066,0.958043938255)); -#936 = CARTESIAN_POINT('',(-0.591045820859,0.95720775192)); -#937 = CARTESIAN_POINT('',(-0.583782650757,0.955818746293)); -#938 = CARTESIAN_POINT('',(-0.576944626223,0.953886857386)); -#939 = CARTESIAN_POINT('',(-0.570581289722,0.951461620133)); -#940 = CARTESIAN_POINT('',(-0.564897214888,0.948396002302)); -#941 = CARTESIAN_POINT('',(-0.559815365255,0.944884664636)); -#942 = CARTESIAN_POINT('',(-0.556993380654,0.942029818795)); -#943 = CARTESIAN_POINT('',(-0.555609274155,0.940629594754)); -#944 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#945 = PCURVE('',#946,#969); -#946 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#947,#948) - ,(#949,#950) - ,(#951,#952) - ,(#953,#954) - ,(#955,#956) - ,(#957,#958) - ,(#959,#960) - ,(#961,#962) - ,(#963,#964) - ,(#965,#966) - ,(#967,#968 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,4),(2,2),(0.E+000, - 0.144088321347,0.282399129672,0.414872702475,0.544283974604, - 0.666959324827,0.782935532939,0.893535797687,1.),(0.E+000,1.), - .UNSPECIFIED.); -#947 = CARTESIAN_POINT('',(0.158173598591,0.206543478843,0.302)); -#948 = CARTESIAN_POINT('',(0.158173598591,0.206543478843,0.3)); -#949 = CARTESIAN_POINT('',(0.158129792988,0.203883132932,0.302)); -#950 = CARTESIAN_POINT('',(0.158129792988,0.203883132932,0.3)); -#951 = CARTESIAN_POINT('',(0.158043938255,0.198669113066,0.302)); -#952 = CARTESIAN_POINT('',(0.158043938255,0.198669113066,0.3)); -#953 = CARTESIAN_POINT('',(0.15720775192,0.191045820859,0.302)); -#954 = CARTESIAN_POINT('',(0.15720775192,0.191045820859,0.3)); -#955 = CARTESIAN_POINT('',(0.155818746293,0.183782650757,0.302)); -#956 = CARTESIAN_POINT('',(0.155818746293,0.183782650757,0.3)); -#957 = CARTESIAN_POINT('',(0.153886857386,0.176944626223,0.302)); -#958 = CARTESIAN_POINT('',(0.153886857386,0.176944626223,0.3)); -#959 = CARTESIAN_POINT('',(0.151461620133,0.170581289722,0.302)); -#960 = CARTESIAN_POINT('',(0.151461620133,0.170581289722,0.3)); -#961 = CARTESIAN_POINT('',(0.148396002302,0.164897214888,0.302)); -#962 = CARTESIAN_POINT('',(0.148396002302,0.164897214888,0.3)); -#963 = CARTESIAN_POINT('',(0.144884664636,0.159815365255,0.302)); -#964 = CARTESIAN_POINT('',(0.144884664636,0.159815365255,0.3)); -#965 = CARTESIAN_POINT('',(0.142029818795,0.156993380654,0.302)); -#966 = CARTESIAN_POINT('',(0.142029818795,0.156993380654,0.3)); -#967 = CARTESIAN_POINT('',(0.140629594754,0.155609274155,0.302)); -#968 = CARTESIAN_POINT('',(0.140629594754,0.155609274155,0.3)); -#969 = DEFINITIONAL_REPRESENTATION('',(#970),#974); -#970 = LINE('',#971,#972); -#971 = CARTESIAN_POINT('',(0.E+000,1.)); -#972 = VECTOR('',#973,1.); -#973 = DIRECTION('',(1.,0.E+000)); -#974 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#975 = ORIENTED_EDGE('',*,*,#976,.T.); -#976 = EDGE_CURVE('',#915,#977,#979,.T.); -#977 = VERTEX_POINT('',#978); -#978 = CARTESIAN_POINT('',(0.164759031116,9.227593478993E-002,0.3)); -#979 = SURFACE_CURVE('',#980,(#996,#1015),.PCURVE_S1.); -#980 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#981,#982,#983,#984,#985,#986, - #987,#988,#989,#990,#991,#992,#993,#994,#995),.UNSPECIFIED.,.F.,.F., - (4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000,4.377083669217E-002, - 8.899844465675E-002,0.135150860332,0.183350536556,0.234220552737, - 0.287902046026,0.345252071006,0.405945978452,0.53608603193, - 0.677320807104,0.831816088461,1.),.UNSPECIFIED.); -#981 = CARTESIAN_POINT('',(0.140629594754,0.155609274155,0.3)); -#982 = CARTESIAN_POINT('',(0.141550018535,0.155132057108,0.3)); -#983 = CARTESIAN_POINT('',(0.143421499437,0.154161740381,0.3)); -#984 = CARTESIAN_POINT('',(0.146046946904,0.152309286402,0.3)); -#985 = CARTESIAN_POINT('',(0.148454621321,0.150041624586,0.3)); -#986 = CARTESIAN_POINT('',(0.150824794211,0.147540326043,0.3)); -#987 = CARTESIAN_POINT('',(0.152877036644,0.144554406032,0.3)); -#988 = CARTESIAN_POINT('',(0.154945403056,0.141323490153,0.3)); -#989 = CARTESIAN_POINT('',(0.156682055631,0.137640381656,0.3)); -#990 = CARTESIAN_POINT('',(0.159030696008,0.132255325873,0.3)); -#991 = CARTESIAN_POINT('',(0.161389390067,0.124730582974,0.3)); -#992 = CARTESIAN_POINT('',(0.163370584919,0.114833687655,0.3)); -#993 = CARTESIAN_POINT('',(0.164533037871,0.103896571211,0.3)); -#994 = CARTESIAN_POINT('',(0.164681599287,9.625750128022E-002,0.3)); -#995 = CARTESIAN_POINT('',(0.164759031116,9.227593478993E-002,0.3)); -#996 = PCURVE('',#48,#997); -#997 = DEFINITIONAL_REPRESENTATION('',(#998),#1014); -#998 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#999,#1000,#1001,#1002,#1003, - #1004,#1005,#1006,#1007,#1008,#1009,#1010,#1011,#1012,#1013), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 4.377083669217E-002,8.899844465675E-002,0.135150860332, - 0.183350536556,0.234220552737,0.287902046026,0.345252071006, - 0.405945978452,0.53608603193,0.677320807104,0.831816088461,1.), - .UNSPECIFIED.); -#999 = CARTESIAN_POINT('',(-0.555609274155,0.940629594754)); -#1000 = CARTESIAN_POINT('',(-0.555132057108,0.941550018535)); -#1001 = CARTESIAN_POINT('',(-0.554161740381,0.943421499437)); -#1002 = CARTESIAN_POINT('',(-0.552309286402,0.946046946904)); -#1003 = CARTESIAN_POINT('',(-0.550041624586,0.948454621321)); -#1004 = CARTESIAN_POINT('',(-0.547540326043,0.950824794211)); -#1005 = CARTESIAN_POINT('',(-0.544554406032,0.952877036644)); -#1006 = CARTESIAN_POINT('',(-0.541323490153,0.954945403056)); -#1007 = CARTESIAN_POINT('',(-0.537640381656,0.956682055631)); -#1008 = CARTESIAN_POINT('',(-0.532255325873,0.959030696008)); -#1009 = CARTESIAN_POINT('',(-0.524730582974,0.961389390067)); -#1010 = CARTESIAN_POINT('',(-0.514833687655,0.963370584919)); -#1011 = CARTESIAN_POINT('',(-0.503896571211,0.964533037871)); -#1012 = CARTESIAN_POINT('',(-0.49625750128,0.964681599287)); -#1013 = CARTESIAN_POINT('',(-0.49227593479,0.964759031116)); -#1014 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1015 = PCURVE('',#1016,#1047); -#1016 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#1017,#1018) - ,(#1019,#1020) - ,(#1021,#1022) - ,(#1023,#1024) - ,(#1025,#1026) - ,(#1027,#1028) - ,(#1029,#1030) - ,(#1031,#1032) - ,(#1033,#1034) - ,(#1035,#1036) - ,(#1037,#1038) - ,(#1039,#1040) - ,(#1041,#1042) - ,(#1043,#1044) - ,(#1045,#1046 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(2,2),( - 0.E+000,4.377083669217E-002,8.899844465675E-002,0.135150860332, - 0.183350536556,0.234220552737,0.287902046026,0.345252071006, - 0.405945978452,0.53608603193,0.677320807104,0.831816088461,1.),( - 0.E+000,1.),.UNSPECIFIED.); -#1017 = CARTESIAN_POINT('',(0.140629594754,0.155609274155,0.302)); -#1018 = CARTESIAN_POINT('',(0.140629594754,0.155609274155,0.3)); -#1019 = CARTESIAN_POINT('',(0.141550018535,0.155132057108,0.302)); -#1020 = CARTESIAN_POINT('',(0.141550018535,0.155132057108,0.3)); -#1021 = CARTESIAN_POINT('',(0.143421499437,0.154161740381,0.302)); -#1022 = CARTESIAN_POINT('',(0.143421499437,0.154161740381,0.3)); -#1023 = CARTESIAN_POINT('',(0.146046946904,0.152309286402,0.302)); -#1024 = CARTESIAN_POINT('',(0.146046946904,0.152309286402,0.3)); -#1025 = CARTESIAN_POINT('',(0.148454621321,0.150041624586,0.302)); -#1026 = CARTESIAN_POINT('',(0.148454621321,0.150041624586,0.3)); -#1027 = CARTESIAN_POINT('',(0.150824794211,0.147540326043,0.302)); -#1028 = CARTESIAN_POINT('',(0.150824794211,0.147540326043,0.3)); -#1029 = CARTESIAN_POINT('',(0.152877036644,0.144554406032,0.302)); -#1030 = CARTESIAN_POINT('',(0.152877036644,0.144554406032,0.3)); -#1031 = CARTESIAN_POINT('',(0.154945403056,0.141323490153,0.302)); -#1032 = CARTESIAN_POINT('',(0.154945403056,0.141323490153,0.3)); -#1033 = CARTESIAN_POINT('',(0.156682055631,0.137640381656,0.302)); -#1034 = CARTESIAN_POINT('',(0.156682055631,0.137640381656,0.3)); -#1035 = CARTESIAN_POINT('',(0.159030696008,0.132255325873,0.302)); -#1036 = CARTESIAN_POINT('',(0.159030696008,0.132255325873,0.3)); -#1037 = CARTESIAN_POINT('',(0.161389390067,0.124730582974,0.302)); -#1038 = CARTESIAN_POINT('',(0.161389390067,0.124730582974,0.3)); -#1039 = CARTESIAN_POINT('',(0.163370584919,0.114833687655,0.302)); -#1040 = CARTESIAN_POINT('',(0.163370584919,0.114833687655,0.3)); -#1041 = CARTESIAN_POINT('',(0.164533037871,0.103896571211,0.302)); -#1042 = CARTESIAN_POINT('',(0.164533037871,0.103896571211,0.3)); -#1043 = CARTESIAN_POINT('',(0.164681599287,9.625750128022E-002,0.302)); -#1044 = CARTESIAN_POINT('',(0.164681599287,9.625750128022E-002,0.3)); -#1045 = CARTESIAN_POINT('',(0.164759031116,9.227593478993E-002,0.302)); -#1046 = CARTESIAN_POINT('',(0.164759031116,9.227593478993E-002,0.3)); -#1047 = DEFINITIONAL_REPRESENTATION('',(#1048),#1052); -#1048 = LINE('',#1049,#1050); -#1049 = CARTESIAN_POINT('',(0.E+000,1.)); -#1050 = VECTOR('',#1051,1.); -#1051 = DIRECTION('',(1.,0.E+000)); -#1052 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1053 = ORIENTED_EDGE('',*,*,#1054,.T.); -#1054 = EDGE_CURVE('',#977,#22,#1055,.T.); -#1055 = SURFACE_CURVE('',#1056,(#1076,#1099),.PCURVE_S1.); -#1056 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1057,#1058,#1059,#1060,#1061, - #1062,#1063,#1064,#1065,#1066,#1067,#1068,#1069,#1070,#1071,#1072, - #1073,#1074,#1075),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,8.24620414803E-002,0.161515342508,0.237917489154, - 0.311928206459,0.383707237096,0.453658663398,0.521451712787, - 0.588090222416,0.65166842296,0.709643084761,0.763649359456, - 0.813744495021,0.861615745413,0.90793947877,0.953267747783,1.), - .UNSPECIFIED.); -#1057 = CARTESIAN_POINT('',(0.164759031116,9.227593478993E-002,0.3)); -#1058 = CARTESIAN_POINT('',(0.164716643368,8.951391922135E-002,0.3)); -#1059 = CARTESIAN_POINT('',(0.164633620056,8.410406175767E-002,0.3)); -#1060 = CARTESIAN_POINT('',(0.164066970396,7.615102581177E-002,0.3)); -#1061 = CARTESIAN_POINT('',(0.163101736194,6.852155670844E-002,0.3)); -#1062 = CARTESIAN_POINT('',(0.161698187641,6.120921345822E-002,0.3)); -#1063 = CARTESIAN_POINT('',(0.159971168479,5.418787521082E-002,0.3)); -#1064 = CARTESIAN_POINT('',(0.157803241688,4.750755989307E-002,0.3)); -#1065 = CARTESIAN_POINT('',(0.155283758046,4.113716822208E-002,0.3)); -#1066 = CARTESIAN_POINT('',(0.152379773025,3.516670627895E-002,0.3)); -#1067 = CARTESIAN_POINT('',(0.149189941965,2.972410856556E-002,0.3)); -#1068 = CARTESIAN_POINT('',(0.145795946897,2.490751690085E-002,0.3)); -#1069 = CARTESIAN_POINT('',(0.142127426527,2.089017597307E-002,0.3)); -#1070 = CARTESIAN_POINT('',(0.138299010628,1.751336894227E-002,0.3)); -#1071 = CARTESIAN_POINT('',(0.134197002433,1.491831031664E-002,0.3)); -#1072 = CARTESIAN_POINT('',(0.129901343866,1.303707882367E-002,0.3)); -#1073 = CARTESIAN_POINT('',(0.125372855995,1.190522761079E-002,0.3)); -#1074 = CARTESIAN_POINT('',(0.122285945204,1.177393247406E-002,0.3)); -#1075 = CARTESIAN_POINT('',(0.120718951103,1.170728373731E-002,0.3)); -#1076 = PCURVE('',#48,#1077); -#1077 = DEFINITIONAL_REPRESENTATION('',(#1078),#1098); -#1078 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1079,#1080,#1081,#1082,#1083, - #1084,#1085,#1086,#1087,#1088,#1089,#1090,#1091,#1092,#1093,#1094, - #1095,#1096,#1097),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,8.24620414803E-002,0.161515342508,0.237917489154, - 0.311928206459,0.383707237096,0.453658663398,0.521451712787, - 0.588090222416,0.65166842296,0.709643084761,0.763649359456, - 0.813744495021,0.861615745413,0.90793947877,0.953267747783,1.), - .UNSPECIFIED.); -#1079 = CARTESIAN_POINT('',(-0.49227593479,0.964759031116)); -#1080 = CARTESIAN_POINT('',(-0.489513919221,0.964716643368)); -#1081 = CARTESIAN_POINT('',(-0.484104061758,0.964633620056)); -#1082 = CARTESIAN_POINT('',(-0.476151025812,0.964066970396)); -#1083 = CARTESIAN_POINT('',(-0.468521556708,0.963101736194)); -#1084 = CARTESIAN_POINT('',(-0.461209213458,0.961698187641)); -#1085 = CARTESIAN_POINT('',(-0.454187875211,0.959971168479)); -#1086 = CARTESIAN_POINT('',(-0.447507559893,0.957803241688)); -#1087 = CARTESIAN_POINT('',(-0.441137168222,0.955283758046)); -#1088 = CARTESIAN_POINT('',(-0.435166706279,0.952379773025)); -#1089 = CARTESIAN_POINT('',(-0.429724108566,0.949189941965)); -#1090 = CARTESIAN_POINT('',(-0.424907516901,0.945795946897)); -#1091 = CARTESIAN_POINT('',(-0.420890175973,0.942127426527)); -#1092 = CARTESIAN_POINT('',(-0.417513368942,0.938299010628)); -#1093 = CARTESIAN_POINT('',(-0.414918310317,0.934197002433)); -#1094 = CARTESIAN_POINT('',(-0.413037078824,0.929901343866)); -#1095 = CARTESIAN_POINT('',(-0.411905227611,0.925372855995)); -#1096 = CARTESIAN_POINT('',(-0.411773932474,0.922285945204)); -#1097 = CARTESIAN_POINT('',(-0.411707283737,0.920718951103)); -#1098 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1099 = PCURVE('',#1100,#1139); -#1100 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#1101,#1102) - ,(#1103,#1104) - ,(#1105,#1106) - ,(#1107,#1108) - ,(#1109,#1110) - ,(#1111,#1112) - ,(#1113,#1114) - ,(#1115,#1116) - ,(#1117,#1118) - ,(#1119,#1120) - ,(#1121,#1122) - ,(#1123,#1124) - ,(#1125,#1126) - ,(#1127,#1128) - ,(#1129,#1130) - ,(#1131,#1132) - ,(#1133,#1134) - ,(#1135,#1136) - ,(#1137,#1138 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, - 2),(0.E+000,8.24620414803E-002,0.161515342508,0.237917489154, - 0.311928206459,0.383707237096,0.453658663398,0.521451712787, - 0.588090222416,0.65166842296,0.709643084761,0.763649359456, - 0.813744495021,0.861615745413,0.90793947877,0.953267747783,1.),( - 0.E+000,1.),.UNSPECIFIED.); -#1101 = CARTESIAN_POINT('',(0.164759031116,9.227593478993E-002,0.302)); -#1102 = CARTESIAN_POINT('',(0.164759031116,9.227593478993E-002,0.3)); -#1103 = CARTESIAN_POINT('',(0.164716643368,8.951391922135E-002,0.302)); -#1104 = CARTESIAN_POINT('',(0.164716643368,8.951391922135E-002,0.3)); -#1105 = CARTESIAN_POINT('',(0.164633620056,8.410406175767E-002,0.302)); -#1106 = CARTESIAN_POINT('',(0.164633620056,8.410406175767E-002,0.3)); -#1107 = CARTESIAN_POINT('',(0.164066970396,7.615102581177E-002,0.302)); -#1108 = CARTESIAN_POINT('',(0.164066970396,7.615102581177E-002,0.3)); -#1109 = CARTESIAN_POINT('',(0.163101736194,6.852155670844E-002,0.302)); -#1110 = CARTESIAN_POINT('',(0.163101736194,6.852155670844E-002,0.3)); -#1111 = CARTESIAN_POINT('',(0.161698187641,6.120921345822E-002,0.302)); -#1112 = CARTESIAN_POINT('',(0.161698187641,6.120921345822E-002,0.3)); -#1113 = CARTESIAN_POINT('',(0.159971168479,5.418787521082E-002,0.302)); -#1114 = CARTESIAN_POINT('',(0.159971168479,5.418787521082E-002,0.3)); -#1115 = CARTESIAN_POINT('',(0.157803241688,4.750755989307E-002,0.302)); -#1116 = CARTESIAN_POINT('',(0.157803241688,4.750755989307E-002,0.3)); -#1117 = CARTESIAN_POINT('',(0.155283758046,4.113716822208E-002,0.302)); -#1118 = CARTESIAN_POINT('',(0.155283758046,4.113716822208E-002,0.3)); -#1119 = CARTESIAN_POINT('',(0.152379773025,3.516670627895E-002,0.302)); -#1120 = CARTESIAN_POINT('',(0.152379773025,3.516670627895E-002,0.3)); -#1121 = CARTESIAN_POINT('',(0.149189941965,2.972410856556E-002,0.302)); -#1122 = CARTESIAN_POINT('',(0.149189941965,2.972410856556E-002,0.3)); -#1123 = CARTESIAN_POINT('',(0.145795946897,2.490751690085E-002,0.302)); -#1124 = CARTESIAN_POINT('',(0.145795946897,2.490751690085E-002,0.3)); -#1125 = CARTESIAN_POINT('',(0.142127426527,2.089017597307E-002,0.302)); -#1126 = CARTESIAN_POINT('',(0.142127426527,2.089017597307E-002,0.3)); -#1127 = CARTESIAN_POINT('',(0.138299010628,1.751336894227E-002,0.302)); -#1128 = CARTESIAN_POINT('',(0.138299010628,1.751336894227E-002,0.3)); -#1129 = CARTESIAN_POINT('',(0.134197002433,1.491831031664E-002,0.302)); -#1130 = CARTESIAN_POINT('',(0.134197002433,1.491831031664E-002,0.3)); -#1131 = CARTESIAN_POINT('',(0.129901343866,1.303707882367E-002,0.302)); -#1132 = CARTESIAN_POINT('',(0.129901343866,1.303707882367E-002,0.3)); -#1133 = CARTESIAN_POINT('',(0.125372855995,1.190522761079E-002,0.302)); -#1134 = CARTESIAN_POINT('',(0.125372855995,1.190522761079E-002,0.3)); -#1135 = CARTESIAN_POINT('',(0.122285945204,1.177393247406E-002,0.302)); -#1136 = CARTESIAN_POINT('',(0.122285945204,1.177393247406E-002,0.3)); -#1137 = CARTESIAN_POINT('',(0.120718951103,1.170728373731E-002,0.302)); -#1138 = CARTESIAN_POINT('',(0.120718951103,1.170728373731E-002,0.3)); -#1139 = DEFINITIONAL_REPRESENTATION('',(#1140),#1144); -#1140 = LINE('',#1141,#1142); -#1141 = CARTESIAN_POINT('',(0.E+000,1.)); -#1142 = VECTOR('',#1143,1.); -#1143 = DIRECTION('',(1.,0.E+000)); -#1144 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1145 = FACE_BOUND('',#1146,.T.); -#1146 = EDGE_LOOP('',(#1147,#1211,#1337,#1447,#1573)); -#1147 = ORIENTED_EDGE('',*,*,#1148,.T.); -#1148 = EDGE_CURVE('',#1149,#1151,#1153,.T.); -#1149 = VERTEX_POINT('',#1150); -#1150 = CARTESIAN_POINT('',(-6.668009309687E-003,3.645410439907E-002,0.3 - )); -#1151 = VERTEX_POINT('',#1152); -#1152 = CARTESIAN_POINT('',(-1.963307959402E-002,0.14166667873,0.3)); -#1153 = SURFACE_CURVE('',#1154,(#1166,#1181),.PCURVE_S1.); -#1154 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1155,#1156,#1157,#1158,#1159, - #1160,#1161,#1162,#1163,#1164,#1165),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,8.874248781343E-002,0.18749855617,0.295863554394 - ,0.414922527979,0.545071851417,0.685442978585,0.837216579864,1.), - .UNSPECIFIED.); -#1155 = CARTESIAN_POINT('',(-6.668009309687E-003,3.645410439907E-002,0.3 - )); -#1156 = CARTESIAN_POINT('',(-7.72868304737E-003,3.942311516555E-002,0.3) - ); -#1157 = CARTESIAN_POINT('',(-9.969715491732E-003,4.569615579902E-002,0.3 - )); -#1158 = CARTESIAN_POINT('',(-1.24736518448E-002,5.591197426034E-002,0.3) - ); -#1159 = CARTESIAN_POINT('',(-1.47841414487E-002,6.726344921029E-002,0.3) - ); -#1160 = CARTESIAN_POINT('',(-1.650481270486E-002,7.984902738091E-002,0.3 - )); -#1161 = CARTESIAN_POINT('',(-1.79710667163E-002,9.360587304361E-002,0.3) - ); -#1162 = CARTESIAN_POINT('',(-1.888454542454E-002,0.108575532398,0.3)); -#1163 = CARTESIAN_POINT('',(-1.953149962645E-002,0.124717181004,0.3)); -#1164 = CARTESIAN_POINT('',(-1.95984386269E-002,0.135886533221,0.3)); -#1165 = CARTESIAN_POINT('',(-1.963307959402E-002,0.14166667873,0.3)); -#1166 = PCURVE('',#48,#1167); -#1167 = DEFINITIONAL_REPRESENTATION('',(#1168),#1180); -#1168 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1169,#1170,#1171,#1172,#1173, - #1174,#1175,#1176,#1177,#1178,#1179),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,8.874248781343E-002,0.18749855617,0.295863554394 - ,0.414922527979,0.545071851417,0.685442978585,0.837216579864,1.), - .UNSPECIFIED.); -#1169 = CARTESIAN_POINT('',(-0.436454104399,0.79333199069)); -#1170 = CARTESIAN_POINT('',(-0.439423115166,0.792271316953)); -#1171 = CARTESIAN_POINT('',(-0.445696155799,0.790030284508)); -#1172 = CARTESIAN_POINT('',(-0.45591197426,0.787526348155)); -#1173 = CARTESIAN_POINT('',(-0.46726344921,0.785215858551)); -#1174 = CARTESIAN_POINT('',(-0.479849027381,0.783495187295)); -#1175 = CARTESIAN_POINT('',(-0.493605873044,0.782028933284)); -#1176 = CARTESIAN_POINT('',(-0.508575532398,0.781115454575)); -#1177 = CARTESIAN_POINT('',(-0.524717181004,0.780468500374)); -#1178 = CARTESIAN_POINT('',(-0.535886533221,0.780401561373)); -#1179 = CARTESIAN_POINT('',(-0.54166667873,0.780366920406)); -#1180 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1181 = PCURVE('',#1182,#1205); -#1182 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#1183,#1184) - ,(#1185,#1186) - ,(#1187,#1188) - ,(#1189,#1190) - ,(#1191,#1192) - ,(#1193,#1194) - ,(#1195,#1196) - ,(#1197,#1198) - ,(#1199,#1200) - ,(#1201,#1202) - ,(#1203,#1204 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,4),(2,2),(0.E+000, - 8.874248781343E-002,0.18749855617,0.295863554394,0.414922527979, - 0.545071851417,0.685442978585,0.837216579864,1.),(0.E+000,1.), - .UNSPECIFIED.); -#1183 = CARTESIAN_POINT('',(-6.668009309687E-003,3.645410439907E-002, - 0.302)); -#1184 = CARTESIAN_POINT('',(-6.668009309687E-003,3.645410439907E-002,0.3 - )); -#1185 = CARTESIAN_POINT('',(-7.72868304737E-003,3.942311516555E-002, - 0.302)); -#1186 = CARTESIAN_POINT('',(-7.72868304737E-003,3.942311516555E-002,0.3) - ); -#1187 = CARTESIAN_POINT('',(-9.969715491732E-003,4.569615579902E-002, - 0.302)); -#1188 = CARTESIAN_POINT('',(-9.969715491732E-003,4.569615579902E-002,0.3 - )); -#1189 = CARTESIAN_POINT('',(-1.24736518448E-002,5.591197426034E-002, - 0.302)); -#1190 = CARTESIAN_POINT('',(-1.24736518448E-002,5.591197426034E-002,0.3) - ); -#1191 = CARTESIAN_POINT('',(-1.47841414487E-002,6.726344921029E-002, - 0.302)); -#1192 = CARTESIAN_POINT('',(-1.47841414487E-002,6.726344921029E-002,0.3) - ); -#1193 = CARTESIAN_POINT('',(-1.650481270486E-002,7.984902738091E-002, - 0.302)); -#1194 = CARTESIAN_POINT('',(-1.650481270486E-002,7.984902738091E-002,0.3 - )); -#1195 = CARTESIAN_POINT('',(-1.79710667163E-002,9.360587304361E-002, - 0.302)); -#1196 = CARTESIAN_POINT('',(-1.79710667163E-002,9.360587304361E-002,0.3) - ); -#1197 = CARTESIAN_POINT('',(-1.888454542454E-002,0.108575532398,0.302)); -#1198 = CARTESIAN_POINT('',(-1.888454542454E-002,0.108575532398,0.3)); -#1199 = CARTESIAN_POINT('',(-1.953149962645E-002,0.124717181004,0.302)); -#1200 = CARTESIAN_POINT('',(-1.953149962645E-002,0.124717181004,0.3)); -#1201 = CARTESIAN_POINT('',(-1.95984386269E-002,0.135886533221,0.302)); -#1202 = CARTESIAN_POINT('',(-1.95984386269E-002,0.135886533221,0.3)); -#1203 = CARTESIAN_POINT('',(-1.963307959402E-002,0.14166667873,0.302)); -#1204 = CARTESIAN_POINT('',(-1.963307959402E-002,0.14166667873,0.3)); -#1205 = DEFINITIONAL_REPRESENTATION('',(#1206),#1210); -#1206 = LINE('',#1207,#1208); -#1207 = CARTESIAN_POINT('',(0.E+000,1.)); -#1208 = VECTOR('',#1209,1.); -#1209 = DIRECTION('',(1.,0.E+000)); -#1210 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1211 = ORIENTED_EDGE('',*,*,#1212,.T.); -#1212 = EDGE_CURVE('',#1151,#1213,#1215,.T.); -#1213 = VERTEX_POINT('',#1214); -#1214 = CARTESIAN_POINT('',(2.317223182091E-002,0.27183186849,0.3)); -#1215 = SURFACE_CURVE('',#1216,(#1244,#1275),.PCURVE_S1.); -#1216 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1217,#1218,#1219,#1220,#1221, - #1222,#1223,#1224,#1225,#1226,#1227,#1228,#1229,#1230,#1231,#1232, - #1233,#1234,#1235,#1236,#1237,#1238,#1239,#1240,#1241,#1242,#1243), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 - ,4),(0.E+000,7.450630011454E-002,0.145899604363,0.213485915351, - 0.277293604963,0.338041673145,0.395063922884,0.448741026482, - 0.499113145316,0.546571100751,0.59109431188,0.632897743261, - 0.672214769502,0.70856337312,0.743032622937,0.774640169589, - 0.804496490856,0.832141518463,0.85851193,0.883406944232, - 0.907257568986,0.930301741039,0.953206098268,0.976284435161,1.), - .UNSPECIFIED.); -#1217 = CARTESIAN_POINT('',(-1.963307959402E-002,0.14166667873,0.3)); -#1218 = CARTESIAN_POINT('',(-1.963360022099E-002,0.145336920758,0.3)); -#1219 = CARTESIAN_POINT('',(-1.963461972228E-002,0.15252405606,0.3)); -#1220 = CARTESIAN_POINT('',(-1.933867117427E-002,0.163036587208,0.3)); -#1221 = CARTESIAN_POINT('',(-1.900775489684E-002,0.173020239287,0.3)); -#1222 = CARTESIAN_POINT('',(-1.848782389649E-002,0.182471280081,0.3)); -#1223 = CARTESIAN_POINT('',(-1.783102465328E-002,0.191391928233,0.3)); -#1224 = CARTESIAN_POINT('',(-1.701049966734E-002,0.199798120673,0.3)); -#1225 = CARTESIAN_POINT('',(-1.60381465877E-002,0.207673148077,0.3)); -#1226 = CARTESIAN_POINT('',(-1.491576978213E-002,0.215053000057,0.3)); -#1227 = CARTESIAN_POINT('',(-1.360966353286E-002,0.221942574202,0.3)); -#1228 = CARTESIAN_POINT('',(-1.226960744117E-002,0.22839763521,0.3)); -#1229 = CARTESIAN_POINT('',(-1.063166643619E-002,0.234368012293,0.3)); -#1230 = CARTESIAN_POINT('',(-8.985002668513E-003,0.239916989686,0.3)); -#1231 = CARTESIAN_POINT('',(-7.101042681619E-003,0.245008278979,0.3)); -#1232 = CARTESIAN_POINT('',(-5.125272281607E-003,0.249651995329,0.3)); -#1233 = CARTESIAN_POINT('',(-3.016408570688E-003,0.253887416753,0.3)); -#1234 = CARTESIAN_POINT('',(-6.97609789441E-004,0.257618657354,0.3)); -#1235 = CARTESIAN_POINT('',(1.717570301136E-003,0.260980348714,0.3)); -#1236 = CARTESIAN_POINT('',(4.362166959923E-003,0.263835084545,0.3)); -#1237 = CARTESIAN_POINT('',(7.063972533112E-003,0.266380116983,0.3)); -#1238 = CARTESIAN_POINT('',(1.004224203152E-002,0.268311931051,0.3)); -#1239 = CARTESIAN_POINT('',(1.310229603994E-002,0.269892557944,0.3)); -#1240 = CARTESIAN_POINT('',(1.631550404744E-002,0.271035492322,0.3)); -#1241 = CARTESIAN_POINT('',(1.969528636053E-002,0.271729092277,0.3)); -#1242 = CARTESIAN_POINT('',(2.200277572492E-002,0.271797300139,0.3)); -#1243 = CARTESIAN_POINT('',(2.317223182091E-002,0.27183186849,0.3)); -#1244 = PCURVE('',#48,#1245); -#1245 = DEFINITIONAL_REPRESENTATION('',(#1246),#1274); -#1246 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1247,#1248,#1249,#1250,#1251, - #1252,#1253,#1254,#1255,#1256,#1257,#1258,#1259,#1260,#1261,#1262, - #1263,#1264,#1265,#1266,#1267,#1268,#1269,#1270,#1271,#1272,#1273), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 - ,4),(0.E+000,7.450630011454E-002,0.145899604363,0.213485915351, - 0.277293604963,0.338041673145,0.395063922884,0.448741026482, - 0.499113145316,0.546571100751,0.59109431188,0.632897743261, - 0.672214769502,0.70856337312,0.743032622937,0.774640169589, - 0.804496490856,0.832141518463,0.85851193,0.883406944232, - 0.907257568986,0.930301741039,0.953206098268,0.976284435161,1.), - .UNSPECIFIED.); -#1247 = CARTESIAN_POINT('',(-0.54166667873,0.780366920406)); -#1248 = CARTESIAN_POINT('',(-0.545336920758,0.780366399779)); -#1249 = CARTESIAN_POINT('',(-0.55252405606,0.780365380278)); -#1250 = CARTESIAN_POINT('',(-0.563036587208,0.780661328826)); -#1251 = CARTESIAN_POINT('',(-0.573020239287,0.780992245103)); -#1252 = CARTESIAN_POINT('',(-0.582471280081,0.781512176104)); -#1253 = CARTESIAN_POINT('',(-0.591391928233,0.782168975347)); -#1254 = CARTESIAN_POINT('',(-0.599798120673,0.782989500333)); -#1255 = CARTESIAN_POINT('',(-0.607673148077,0.783961853412)); -#1256 = CARTESIAN_POINT('',(-0.615053000057,0.785084230218)); -#1257 = CARTESIAN_POINT('',(-0.621942574202,0.786390336467)); -#1258 = CARTESIAN_POINT('',(-0.62839763521,0.787730392559)); -#1259 = CARTESIAN_POINT('',(-0.634368012293,0.789368333564)); -#1260 = CARTESIAN_POINT('',(-0.639916989686,0.791014997331)); -#1261 = CARTESIAN_POINT('',(-0.645008278979,0.792898957318)); -#1262 = CARTESIAN_POINT('',(-0.649651995329,0.794874727718)); -#1263 = CARTESIAN_POINT('',(-0.653887416753,0.796983591429)); -#1264 = CARTESIAN_POINT('',(-0.657618657354,0.799302390211)); -#1265 = CARTESIAN_POINT('',(-0.660980348714,0.801717570301)); -#1266 = CARTESIAN_POINT('',(-0.663835084545,0.80436216696)); -#1267 = CARTESIAN_POINT('',(-0.666380116983,0.807063972533)); -#1268 = CARTESIAN_POINT('',(-0.668311931051,0.810042242032)); -#1269 = CARTESIAN_POINT('',(-0.669892557944,0.81310229604)); -#1270 = CARTESIAN_POINT('',(-0.671035492322,0.816315504047)); -#1271 = CARTESIAN_POINT('',(-0.671729092277,0.819695286361)); -#1272 = CARTESIAN_POINT('',(-0.671797300139,0.822002775725)); -#1273 = CARTESIAN_POINT('',(-0.67183186849,0.823172231821)); -#1274 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1275 = PCURVE('',#1276,#1331); -#1276 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#1277,#1278) - ,(#1279,#1280) - ,(#1281,#1282) - ,(#1283,#1284) - ,(#1285,#1286) - ,(#1287,#1288) - ,(#1289,#1290) - ,(#1291,#1292) - ,(#1293,#1294) - ,(#1295,#1296) - ,(#1297,#1298) - ,(#1299,#1300) - ,(#1301,#1302) - ,(#1303,#1304) - ,(#1305,#1306) - ,(#1307,#1308) - ,(#1309,#1310) - ,(#1311,#1312) - ,(#1313,#1314) - ,(#1315,#1316) - ,(#1317,#1318) - ,(#1319,#1320) - ,(#1321,#1322) - ,(#1323,#1324) - ,(#1325,#1326) - ,(#1327,#1328) - ,(#1329,#1330 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,1,1,4),(2,2),(0.E+000,7.450630011454E-002,0.145899604363, - 0.213485915351,0.277293604963,0.338041673145,0.395063922884, - 0.448741026482,0.499113145316,0.546571100751,0.59109431188, - 0.632897743261,0.672214769502,0.70856337312,0.743032622937, - 0.774640169589,0.804496490856,0.832141518463,0.85851193, - 0.883406944232,0.907257568986,0.930301741039,0.953206098268, - 0.976284435161,1.),(0.E+000,1.),.UNSPECIFIED.); -#1277 = CARTESIAN_POINT('',(-1.963307959402E-002,0.14166667873,0.302)); -#1278 = CARTESIAN_POINT('',(-1.963307959402E-002,0.14166667873,0.3)); -#1279 = CARTESIAN_POINT('',(-1.963360022099E-002,0.145336920758,0.302)); -#1280 = CARTESIAN_POINT('',(-1.963360022099E-002,0.145336920758,0.3)); -#1281 = CARTESIAN_POINT('',(-1.963461972228E-002,0.15252405606,0.302)); -#1282 = CARTESIAN_POINT('',(-1.963461972228E-002,0.15252405606,0.3)); -#1283 = CARTESIAN_POINT('',(-1.933867117427E-002,0.163036587208,0.302)); -#1284 = CARTESIAN_POINT('',(-1.933867117427E-002,0.163036587208,0.3)); -#1285 = CARTESIAN_POINT('',(-1.900775489684E-002,0.173020239287,0.302)); -#1286 = CARTESIAN_POINT('',(-1.900775489684E-002,0.173020239287,0.3)); -#1287 = CARTESIAN_POINT('',(-1.848782389649E-002,0.182471280081,0.302)); -#1288 = CARTESIAN_POINT('',(-1.848782389649E-002,0.182471280081,0.3)); -#1289 = CARTESIAN_POINT('',(-1.783102465328E-002,0.191391928233,0.302)); -#1290 = CARTESIAN_POINT('',(-1.783102465328E-002,0.191391928233,0.3)); -#1291 = CARTESIAN_POINT('',(-1.701049966734E-002,0.199798120673,0.302)); -#1292 = CARTESIAN_POINT('',(-1.701049966734E-002,0.199798120673,0.3)); -#1293 = CARTESIAN_POINT('',(-1.60381465877E-002,0.207673148077,0.302)); -#1294 = CARTESIAN_POINT('',(-1.60381465877E-002,0.207673148077,0.3)); -#1295 = CARTESIAN_POINT('',(-1.491576978213E-002,0.215053000057,0.302)); -#1296 = CARTESIAN_POINT('',(-1.491576978213E-002,0.215053000057,0.3)); -#1297 = CARTESIAN_POINT('',(-1.360966353286E-002,0.221942574202,0.302)); -#1298 = CARTESIAN_POINT('',(-1.360966353286E-002,0.221942574202,0.3)); -#1299 = CARTESIAN_POINT('',(-1.226960744117E-002,0.22839763521,0.302)); -#1300 = CARTESIAN_POINT('',(-1.226960744117E-002,0.22839763521,0.3)); -#1301 = CARTESIAN_POINT('',(-1.063166643619E-002,0.234368012293,0.302)); -#1302 = CARTESIAN_POINT('',(-1.063166643619E-002,0.234368012293,0.3)); -#1303 = CARTESIAN_POINT('',(-8.985002668513E-003,0.239916989686,0.302)); -#1304 = CARTESIAN_POINT('',(-8.985002668513E-003,0.239916989686,0.3)); -#1305 = CARTESIAN_POINT('',(-7.101042681619E-003,0.245008278979,0.302)); -#1306 = CARTESIAN_POINT('',(-7.101042681619E-003,0.245008278979,0.3)); -#1307 = CARTESIAN_POINT('',(-5.125272281607E-003,0.249651995329,0.302)); -#1308 = CARTESIAN_POINT('',(-5.125272281607E-003,0.249651995329,0.3)); -#1309 = CARTESIAN_POINT('',(-3.016408570688E-003,0.253887416753,0.302)); -#1310 = CARTESIAN_POINT('',(-3.016408570688E-003,0.253887416753,0.3)); -#1311 = CARTESIAN_POINT('',(-6.97609789441E-004,0.257618657354,0.302)); -#1312 = CARTESIAN_POINT('',(-6.97609789441E-004,0.257618657354,0.3)); -#1313 = CARTESIAN_POINT('',(1.717570301136E-003,0.260980348714,0.302)); -#1314 = CARTESIAN_POINT('',(1.717570301136E-003,0.260980348714,0.3)); -#1315 = CARTESIAN_POINT('',(4.362166959923E-003,0.263835084545,0.302)); -#1316 = CARTESIAN_POINT('',(4.362166959923E-003,0.263835084545,0.3)); -#1317 = CARTESIAN_POINT('',(7.063972533112E-003,0.266380116983,0.302)); -#1318 = CARTESIAN_POINT('',(7.063972533112E-003,0.266380116983,0.3)); -#1319 = CARTESIAN_POINT('',(1.004224203152E-002,0.268311931051,0.302)); -#1320 = CARTESIAN_POINT('',(1.004224203152E-002,0.268311931051,0.3)); -#1321 = CARTESIAN_POINT('',(1.310229603994E-002,0.269892557944,0.302)); -#1322 = CARTESIAN_POINT('',(1.310229603994E-002,0.269892557944,0.3)); -#1323 = CARTESIAN_POINT('',(1.631550404744E-002,0.271035492322,0.302)); -#1324 = CARTESIAN_POINT('',(1.631550404744E-002,0.271035492322,0.3)); -#1325 = CARTESIAN_POINT('',(1.969528636053E-002,0.271729092277,0.302)); -#1326 = CARTESIAN_POINT('',(1.969528636053E-002,0.271729092277,0.3)); -#1327 = CARTESIAN_POINT('',(2.200277572492E-002,0.271797300139,0.302)); -#1328 = CARTESIAN_POINT('',(2.200277572492E-002,0.271797300139,0.3)); -#1329 = CARTESIAN_POINT('',(2.317223182091E-002,0.27183186849,0.302)); -#1330 = CARTESIAN_POINT('',(2.317223182091E-002,0.27183186849,0.3)); -#1331 = DEFINITIONAL_REPRESENTATION('',(#1332),#1336); -#1332 = LINE('',#1333,#1334); -#1333 = CARTESIAN_POINT('',(0.E+000,1.)); -#1334 = VECTOR('',#1335,1.); -#1335 = DIRECTION('',(1.,0.E+000)); -#1336 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1337 = ORIENTED_EDGE('',*,*,#1338,.T.); -#1338 = EDGE_CURVE('',#1213,#1339,#1341,.T.); -#1339 = VERTEX_POINT('',#1340); -#1340 = CARTESIAN_POINT('',(6.597754323584E-002,0.14166667873,0.3)); -#1341 = SURFACE_CURVE('',#1342,(#1366,#1393),.PCURVE_S1.); -#1342 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1343,#1344,#1345,#1346,#1347, - #1348,#1349,#1350,#1351,#1352,#1353,#1354,#1355,#1356,#1357,#1358, - #1359,#1360,#1361,#1362,#1363,#1364,#1365),.UNSPECIFIED.,.F.,.F.,(4, - 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000,3.49368870829E-002 - ,7.023339896965E-002,0.106497580507,0.145587588832,0.187189203945, - 0.231348430884,0.279252738402,0.331360897076,0.388442948375, - 0.450964118434,0.518748490246,0.592148889515,0.631731987362, - 0.674661745447,0.720681059568,0.7701442824,0.822678593948, - 0.878317576116,0.937424730831,1.),.UNSPECIFIED.); -#1343 = CARTESIAN_POINT('',(2.317223182091E-002,0.27183186849,0.3)); -#1344 = CARTESIAN_POINT('',(2.489741982901E-002,0.271730260817,0.3)); -#1345 = CARTESIAN_POINT('',(2.836555416458E-002,0.271525999567,0.3)); -#1346 = CARTESIAN_POINT('',(3.343632197499E-002,0.269931461148,0.3)); -#1347 = CARTESIAN_POINT('',(3.817970480349E-002,0.267181372234,0.3)); -#1348 = CARTESIAN_POINT('',(4.27302194525E-002,0.263593923,0.3)); -#1349 = CARTESIAN_POINT('',(4.682603091564E-002,0.258957748406,0.3)); -#1350 = CARTESIAN_POINT('',(5.048710903561E-002,0.253444341624,0.3)); -#1351 = CARTESIAN_POINT('',(5.341302350196E-002,0.246934771821,0.3)); -#1352 = CARTESIAN_POINT('',(5.585192511915E-002,0.239571047505,0.3)); -#1353 = CARTESIAN_POINT('',(5.791769774606E-002,0.231350486514,0.3)); -#1354 = CARTESIAN_POINT('',(5.979333253746E-002,0.222297662332,0.3)); -#1355 = CARTESIAN_POINT('',(6.156170775209E-002,0.21240277796,0.3)); -#1356 = CARTESIAN_POINT('',(6.278159431962E-002,0.203568217913,0.3)); -#1357 = CARTESIAN_POINT('',(6.378050185591E-002,0.195940552837,0.3)); -#1358 = CARTESIAN_POINT('',(6.429762897648E-002,0.189619370572,0.3)); -#1359 = CARTESIAN_POINT('',(6.481801724058E-002,0.182811558967,0.3)); -#1360 = CARTESIAN_POINT('',(6.530213568091E-002,0.175524876557,0.3)); -#1361 = CARTESIAN_POINT('',(6.55888258911E-002,0.16775281078,0.3)); -#1362 = CARTESIAN_POINT('',(6.57801125893E-002,0.159502830022,0.3)); -#1363 = CARTESIAN_POINT('',(6.595397313915E-002,0.150756638007,0.3)); -#1364 = CARTESIAN_POINT('',(6.596953865747E-002,0.144753695826,0.3)); -#1365 = CARTESIAN_POINT('',(6.597754323584E-002,0.14166667873,0.3)); -#1366 = PCURVE('',#48,#1367); -#1367 = DEFINITIONAL_REPRESENTATION('',(#1368),#1392); -#1368 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1369,#1370,#1371,#1372,#1373, - #1374,#1375,#1376,#1377,#1378,#1379,#1380,#1381,#1382,#1383,#1384, - #1385,#1386,#1387,#1388,#1389,#1390,#1391),.UNSPECIFIED.,.F.,.F.,(4, - 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000,3.49368870829E-002 - ,7.023339896965E-002,0.106497580507,0.145587588832,0.187189203945, - 0.231348430884,0.279252738402,0.331360897076,0.388442948375, - 0.450964118434,0.518748490246,0.592148889515,0.631731987362, - 0.674661745447,0.720681059568,0.7701442824,0.822678593948, - 0.878317576116,0.937424730831,1.),.UNSPECIFIED.); -#1369 = CARTESIAN_POINT('',(-0.67183186849,0.823172231821)); -#1370 = CARTESIAN_POINT('',(-0.671730260817,0.824897419829)); -#1371 = CARTESIAN_POINT('',(-0.671525999567,0.828365554165)); -#1372 = CARTESIAN_POINT('',(-0.669931461148,0.833436321975)); -#1373 = CARTESIAN_POINT('',(-0.667181372234,0.838179704803)); -#1374 = CARTESIAN_POINT('',(-0.663593923,0.842730219452)); -#1375 = CARTESIAN_POINT('',(-0.658957748406,0.846826030916)); -#1376 = CARTESIAN_POINT('',(-0.653444341624,0.850487109036)); -#1377 = CARTESIAN_POINT('',(-0.646934771821,0.853413023502)); -#1378 = CARTESIAN_POINT('',(-0.639571047505,0.855851925119)); -#1379 = CARTESIAN_POINT('',(-0.631350486514,0.857917697746)); -#1380 = CARTESIAN_POINT('',(-0.622297662332,0.859793332537)); -#1381 = CARTESIAN_POINT('',(-0.61240277796,0.861561707752)); -#1382 = CARTESIAN_POINT('',(-0.603568217913,0.86278159432)); -#1383 = CARTESIAN_POINT('',(-0.595940552837,0.863780501856)); -#1384 = CARTESIAN_POINT('',(-0.589619370572,0.864297628976)); -#1385 = CARTESIAN_POINT('',(-0.582811558967,0.864818017241)); -#1386 = CARTESIAN_POINT('',(-0.575524876557,0.865302135681)); -#1387 = CARTESIAN_POINT('',(-0.56775281078,0.865588825891)); -#1388 = CARTESIAN_POINT('',(-0.559502830022,0.865780112589)); -#1389 = CARTESIAN_POINT('',(-0.550756638007,0.865953973139)); -#1390 = CARTESIAN_POINT('',(-0.544753695826,0.865969538657)); -#1391 = CARTESIAN_POINT('',(-0.54166667873,0.865977543236)); -#1392 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1393 = PCURVE('',#1394,#1441); -#1394 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#1395,#1396) - ,(#1397,#1398) - ,(#1399,#1400) - ,(#1401,#1402) - ,(#1403,#1404) - ,(#1405,#1406) - ,(#1407,#1408) - ,(#1409,#1410) - ,(#1411,#1412) - ,(#1413,#1414) - ,(#1415,#1416) - ,(#1417,#1418) - ,(#1419,#1420) - ,(#1421,#1422) - ,(#1423,#1424) - ,(#1425,#1426) - ,(#1427,#1428) - ,(#1429,#1430) - ,(#1431,#1432) - ,(#1433,#1434) - ,(#1435,#1436) - ,(#1437,#1438) - ,(#1439,#1440 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, - 1,4),(2,2),(0.E+000,3.49368870829E-002,7.023339896965E-002, - 0.106497580507,0.145587588832,0.187189203945,0.231348430884, - 0.279252738402,0.331360897076,0.388442948375,0.450964118434, - 0.518748490246,0.592148889515,0.631731987362,0.674661745447, - 0.720681059568,0.7701442824,0.822678593948,0.878317576116, - 0.937424730831,1.),(0.E+000,1.),.UNSPECIFIED.); -#1395 = CARTESIAN_POINT('',(2.317223182091E-002,0.27183186849,0.302)); -#1396 = CARTESIAN_POINT('',(2.317223182091E-002,0.27183186849,0.3)); -#1397 = CARTESIAN_POINT('',(2.489741982901E-002,0.271730260817,0.302)); -#1398 = CARTESIAN_POINT('',(2.489741982901E-002,0.271730260817,0.3)); -#1399 = CARTESIAN_POINT('',(2.836555416458E-002,0.271525999567,0.302)); -#1400 = CARTESIAN_POINT('',(2.836555416458E-002,0.271525999567,0.3)); -#1401 = CARTESIAN_POINT('',(3.343632197499E-002,0.269931461148,0.302)); -#1402 = CARTESIAN_POINT('',(3.343632197499E-002,0.269931461148,0.3)); -#1403 = CARTESIAN_POINT('',(3.817970480349E-002,0.267181372234,0.302)); -#1404 = CARTESIAN_POINT('',(3.817970480349E-002,0.267181372234,0.3)); -#1405 = CARTESIAN_POINT('',(4.27302194525E-002,0.263593923,0.302)); -#1406 = CARTESIAN_POINT('',(4.27302194525E-002,0.263593923,0.3)); -#1407 = CARTESIAN_POINT('',(4.682603091564E-002,0.258957748406,0.302)); -#1408 = CARTESIAN_POINT('',(4.682603091564E-002,0.258957748406,0.3)); -#1409 = CARTESIAN_POINT('',(5.048710903561E-002,0.253444341624,0.302)); -#1410 = CARTESIAN_POINT('',(5.048710903561E-002,0.253444341624,0.3)); -#1411 = CARTESIAN_POINT('',(5.341302350196E-002,0.246934771821,0.302)); -#1412 = CARTESIAN_POINT('',(5.341302350196E-002,0.246934771821,0.3)); -#1413 = CARTESIAN_POINT('',(5.585192511915E-002,0.239571047505,0.302)); -#1414 = CARTESIAN_POINT('',(5.585192511915E-002,0.239571047505,0.3)); -#1415 = CARTESIAN_POINT('',(5.791769774606E-002,0.231350486514,0.302)); -#1416 = CARTESIAN_POINT('',(5.791769774606E-002,0.231350486514,0.3)); -#1417 = CARTESIAN_POINT('',(5.979333253746E-002,0.222297662332,0.302)); -#1418 = CARTESIAN_POINT('',(5.979333253746E-002,0.222297662332,0.3)); -#1419 = CARTESIAN_POINT('',(6.156170775209E-002,0.21240277796,0.302)); -#1420 = CARTESIAN_POINT('',(6.156170775209E-002,0.21240277796,0.3)); -#1421 = CARTESIAN_POINT('',(6.278159431962E-002,0.203568217913,0.302)); -#1422 = CARTESIAN_POINT('',(6.278159431962E-002,0.203568217913,0.3)); -#1423 = CARTESIAN_POINT('',(6.378050185591E-002,0.195940552837,0.302)); -#1424 = CARTESIAN_POINT('',(6.378050185591E-002,0.195940552837,0.3)); -#1425 = CARTESIAN_POINT('',(6.429762897648E-002,0.189619370572,0.302)); -#1426 = CARTESIAN_POINT('',(6.429762897648E-002,0.189619370572,0.3)); -#1427 = CARTESIAN_POINT('',(6.481801724058E-002,0.182811558967,0.302)); -#1428 = CARTESIAN_POINT('',(6.481801724058E-002,0.182811558967,0.3)); -#1429 = CARTESIAN_POINT('',(6.530213568091E-002,0.175524876557,0.302)); -#1430 = CARTESIAN_POINT('',(6.530213568091E-002,0.175524876557,0.3)); -#1431 = CARTESIAN_POINT('',(6.55888258911E-002,0.16775281078,0.302)); -#1432 = CARTESIAN_POINT('',(6.55888258911E-002,0.16775281078,0.3)); -#1433 = CARTESIAN_POINT('',(6.57801125893E-002,0.159502830022,0.302)); -#1434 = CARTESIAN_POINT('',(6.57801125893E-002,0.159502830022,0.3)); -#1435 = CARTESIAN_POINT('',(6.595397313915E-002,0.150756638007,0.302)); -#1436 = CARTESIAN_POINT('',(6.595397313915E-002,0.150756638007,0.3)); -#1437 = CARTESIAN_POINT('',(6.596953865747E-002,0.144753695826,0.302)); -#1438 = CARTESIAN_POINT('',(6.596953865747E-002,0.144753695826,0.3)); -#1439 = CARTESIAN_POINT('',(6.597754323584E-002,0.14166667873,0.302)); -#1440 = CARTESIAN_POINT('',(6.597754323584E-002,0.14166667873,0.3)); -#1441 = DEFINITIONAL_REPRESENTATION('',(#1442),#1446); -#1442 = LINE('',#1443,#1444); -#1443 = CARTESIAN_POINT('',(0.E+000,1.)); -#1444 = VECTOR('',#1445,1.); -#1445 = DIRECTION('',(1.,0.E+000)); -#1446 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1447 = ORIENTED_EDGE('',*,*,#1448,.T.); -#1448 = EDGE_CURVE('',#1339,#1449,#1451,.T.); -#1449 = VERTEX_POINT('',#1450); -#1450 = CARTESIAN_POINT('',(2.317223182091E-002,1.170728373731E-002,0.3) - ); -#1451 = SURFACE_CURVE('',#1452,(#1480,#1511),.PCURVE_S1.); -#1452 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1453,#1454,#1455,#1456,#1457, - #1458,#1459,#1460,#1461,#1462,#1463,#1464,#1465,#1466,#1467,#1468, - #1469,#1470,#1471,#1472,#1473,#1474,#1475,#1476,#1477,#1478,#1479), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 - ,4),(0.E+000,7.425127519617E-002,0.145037257032,0.212011713592, - 0.275899532849,0.336376269156,0.393470127391,0.447214638654, - 0.497650014754,0.544761778702,0.589415800961,0.631520666925, - 0.670553822249,0.707275483502,0.741788019776,0.773746666861, - 0.803640481672,0.831601955261,0.858005482741,0.882699108133, - 0.906487914208,0.929872290123,0.952805410626,0.976254653174,1.), - .UNSPECIFIED.); -#1453 = CARTESIAN_POINT('',(6.597754323584E-002,0.14166667873,0.3)); -#1454 = CARTESIAN_POINT('',(6.59781590966E-002,0.13801358504,0.3)); -#1455 = CARTESIAN_POINT('',(6.5979362076E-002,0.13087788687,0.3)); -#1456 = CARTESIAN_POINT('',(6.568386605353E-002,0.120451066329,0.3)); -#1457 = CARTESIAN_POINT('',(6.534902312739E-002,0.110536192324,0.3)); -#1458 = CARTESIAN_POINT('',(6.483487836148E-002,0.101136305097,0.3)); -#1459 = CARTESIAN_POINT('',(6.417318371142E-002,9.223306878761E-002,0.3) - ); -#1460 = CARTESIAN_POINT('',(6.335321090005E-002,8.384431887529E-002,0.3) - ); -#1461 = CARTESIAN_POINT('',(6.238954210199E-002,7.596750341227E-002,0.3) - ); -#1462 = CARTESIAN_POINT('',(6.123951687959E-002,6.861354441172E-002,0.3) - ); -#1463 = CARTESIAN_POINT('',(6.004168775988E-002,6.171890302916E-002,0.3) - ); -#1464 = CARTESIAN_POINT('',(5.856567304436E-002,5.529887812021E-002,0.3) - ); -#1465 = CARTESIAN_POINT('',(5.706880600585E-002,4.929254856317E-002,0.3) - ); -#1466 = CARTESIAN_POINT('',(5.535221745542E-002,4.375155584245E-002,0.3) - ); -#1467 = CARTESIAN_POINT('',(5.351409616657E-002,3.864446330822E-002,0.3) - ); -#1468 = CARTESIAN_POINT('',(5.150385476805E-002,3.39814372612E-002,0.3) - ); -#1469 = CARTESIAN_POINT('',(4.943011845709E-002,2.971103287235E-002,0.3) - ); -#1470 = CARTESIAN_POINT('',(4.707573905087E-002,2.596670538104E-002,0.3) - ); -#1471 = CARTESIAN_POINT('',(4.469182805396E-002,2.256839536119E-002,0.3) - ); -#1472 = CARTESIAN_POINT('',(4.205450112872E-002,1.969534669371E-002,0.3) - ); -#1473 = CARTESIAN_POINT('',(3.930138538622E-002,1.724081704812E-002,0.3) - ); -#1474 = CARTESIAN_POINT('',(3.640843752915E-002,1.518570449081E-002,0.3) - ); -#1475 = CARTESIAN_POINT('',(3.329964953704E-002,1.366659229598E-002,0.3) - ); -#1476 = CARTESIAN_POINT('',(3.0067263023E-002,1.249148670626E-002,0.3)); -#1477 = CARTESIAN_POINT('',(2.666465408093E-002,1.181578354923E-002,0.3) - ); -#1478 = CARTESIAN_POINT('',(2.434123171392E-002,1.174360130119E-002,0.3) - ); -#1479 = CARTESIAN_POINT('',(2.317223182091E-002,1.170728373731E-002,0.3) - ); -#1480 = PCURVE('',#48,#1481); -#1481 = DEFINITIONAL_REPRESENTATION('',(#1482),#1510); -#1482 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1483,#1484,#1485,#1486,#1487, - #1488,#1489,#1490,#1491,#1492,#1493,#1494,#1495,#1496,#1497,#1498, - #1499,#1500,#1501,#1502,#1503,#1504,#1505,#1506,#1507,#1508,#1509), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 - ,4),(0.E+000,7.425127519617E-002,0.145037257032,0.212011713592, - 0.275899532849,0.336376269156,0.393470127391,0.447214638654, - 0.497650014754,0.544761778702,0.589415800961,0.631520666925, - 0.670553822249,0.707275483502,0.741788019776,0.773746666861, - 0.803640481672,0.831601955261,0.858005482741,0.882699108133, - 0.906487914208,0.929872290123,0.952805410626,0.976254653174,1.), - .UNSPECIFIED.); -#1483 = CARTESIAN_POINT('',(-0.54166667873,0.865977543236)); -#1484 = CARTESIAN_POINT('',(-0.53801358504,0.865978159097)); -#1485 = CARTESIAN_POINT('',(-0.53087788687,0.865979362076)); -#1486 = CARTESIAN_POINT('',(-0.520451066329,0.865683866054)); -#1487 = CARTESIAN_POINT('',(-0.510536192324,0.865349023127)); -#1488 = CARTESIAN_POINT('',(-0.501136305097,0.864834878361)); -#1489 = CARTESIAN_POINT('',(-0.492233068788,0.864173183711)); -#1490 = CARTESIAN_POINT('',(-0.483844318875,0.8633532109)); -#1491 = CARTESIAN_POINT('',(-0.475967503412,0.862389542102)); -#1492 = CARTESIAN_POINT('',(-0.468613544412,0.86123951688)); -#1493 = CARTESIAN_POINT('',(-0.461718903029,0.86004168776)); -#1494 = CARTESIAN_POINT('',(-0.45529887812,0.858565673044)); -#1495 = CARTESIAN_POINT('',(-0.449292548563,0.857068806006)); -#1496 = CARTESIAN_POINT('',(-0.443751555842,0.855352217455)); -#1497 = CARTESIAN_POINT('',(-0.438644463308,0.853514096167)); -#1498 = CARTESIAN_POINT('',(-0.433981437261,0.851503854768)); -#1499 = CARTESIAN_POINT('',(-0.429711032872,0.849430118457)); -#1500 = CARTESIAN_POINT('',(-0.425966705381,0.847075739051)); -#1501 = CARTESIAN_POINT('',(-0.422568395361,0.844691828054)); -#1502 = CARTESIAN_POINT('',(-0.419695346694,0.842054501129)); -#1503 = CARTESIAN_POINT('',(-0.417240817048,0.839301385386)); -#1504 = CARTESIAN_POINT('',(-0.415185704491,0.836408437529)); -#1505 = CARTESIAN_POINT('',(-0.413666592296,0.833299649537)); -#1506 = CARTESIAN_POINT('',(-0.412491486706,0.830067263023)); -#1507 = CARTESIAN_POINT('',(-0.411815783549,0.826664654081)); -#1508 = CARTESIAN_POINT('',(-0.411743601301,0.824341231714)); -#1509 = CARTESIAN_POINT('',(-0.411707283737,0.823172231821)); -#1510 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1511 = PCURVE('',#1512,#1567); -#1512 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#1513,#1514) - ,(#1515,#1516) - ,(#1517,#1518) - ,(#1519,#1520) - ,(#1521,#1522) - ,(#1523,#1524) - ,(#1525,#1526) - ,(#1527,#1528) - ,(#1529,#1530) - ,(#1531,#1532) - ,(#1533,#1534) - ,(#1535,#1536) - ,(#1537,#1538) - ,(#1539,#1540) - ,(#1541,#1542) - ,(#1543,#1544) - ,(#1545,#1546) - ,(#1547,#1548) - ,(#1549,#1550) - ,(#1551,#1552) - ,(#1553,#1554) - ,(#1555,#1556) - ,(#1557,#1558) - ,(#1559,#1560) - ,(#1561,#1562) - ,(#1563,#1564) - ,(#1565,#1566 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,1,1,4),(2,2),(0.E+000,7.425127519617E-002,0.145037257032, - 0.212011713592,0.275899532849,0.336376269156,0.393470127391, - 0.447214638654,0.497650014754,0.544761778702,0.589415800961, - 0.631520666925,0.670553822249,0.707275483502,0.741788019776, - 0.773746666861,0.803640481672,0.831601955261,0.858005482741, - 0.882699108133,0.906487914208,0.929872290123,0.952805410626, - 0.976254653174,1.),(0.E+000,1.),.UNSPECIFIED.); -#1513 = CARTESIAN_POINT('',(6.597754323584E-002,0.14166667873,0.302)); -#1514 = CARTESIAN_POINT('',(6.597754323584E-002,0.14166667873,0.3)); -#1515 = CARTESIAN_POINT('',(6.59781590966E-002,0.13801358504,0.302)); -#1516 = CARTESIAN_POINT('',(6.59781590966E-002,0.13801358504,0.3)); -#1517 = CARTESIAN_POINT('',(6.5979362076E-002,0.13087788687,0.302)); -#1518 = CARTESIAN_POINT('',(6.5979362076E-002,0.13087788687,0.3)); -#1519 = CARTESIAN_POINT('',(6.568386605353E-002,0.120451066329,0.302)); -#1520 = CARTESIAN_POINT('',(6.568386605353E-002,0.120451066329,0.3)); -#1521 = CARTESIAN_POINT('',(6.534902312739E-002,0.110536192324,0.302)); -#1522 = CARTESIAN_POINT('',(6.534902312739E-002,0.110536192324,0.3)); -#1523 = CARTESIAN_POINT('',(6.483487836148E-002,0.101136305097,0.302)); -#1524 = CARTESIAN_POINT('',(6.483487836148E-002,0.101136305097,0.3)); -#1525 = CARTESIAN_POINT('',(6.417318371142E-002,9.223306878761E-002, - 0.302)); -#1526 = CARTESIAN_POINT('',(6.417318371142E-002,9.223306878761E-002,0.3) - ); -#1527 = CARTESIAN_POINT('',(6.335321090005E-002,8.384431887529E-002, - 0.302)); -#1528 = CARTESIAN_POINT('',(6.335321090005E-002,8.384431887529E-002,0.3) - ); -#1529 = CARTESIAN_POINT('',(6.238954210199E-002,7.596750341227E-002, - 0.302)); -#1530 = CARTESIAN_POINT('',(6.238954210199E-002,7.596750341227E-002,0.3) - ); -#1531 = CARTESIAN_POINT('',(6.123951687959E-002,6.861354441172E-002, - 0.302)); -#1532 = CARTESIAN_POINT('',(6.123951687959E-002,6.861354441172E-002,0.3) - ); -#1533 = CARTESIAN_POINT('',(6.004168775988E-002,6.171890302916E-002, - 0.302)); -#1534 = CARTESIAN_POINT('',(6.004168775988E-002,6.171890302916E-002,0.3) - ); -#1535 = CARTESIAN_POINT('',(5.856567304436E-002,5.529887812021E-002, - 0.302)); -#1536 = CARTESIAN_POINT('',(5.856567304436E-002,5.529887812021E-002,0.3) - ); -#1537 = CARTESIAN_POINT('',(5.706880600585E-002,4.929254856317E-002, - 0.302)); -#1538 = CARTESIAN_POINT('',(5.706880600585E-002,4.929254856317E-002,0.3) - ); -#1539 = CARTESIAN_POINT('',(5.535221745542E-002,4.375155584245E-002, - 0.302)); -#1540 = CARTESIAN_POINT('',(5.535221745542E-002,4.375155584245E-002,0.3) - ); -#1541 = CARTESIAN_POINT('',(5.351409616657E-002,3.864446330822E-002, - 0.302)); -#1542 = CARTESIAN_POINT('',(5.351409616657E-002,3.864446330822E-002,0.3) - ); -#1543 = CARTESIAN_POINT('',(5.150385476805E-002,3.39814372612E-002,0.302 - )); -#1544 = CARTESIAN_POINT('',(5.150385476805E-002,3.39814372612E-002,0.3) - ); -#1545 = CARTESIAN_POINT('',(4.943011845709E-002,2.971103287235E-002, - 0.302)); -#1546 = CARTESIAN_POINT('',(4.943011845709E-002,2.971103287235E-002,0.3) - ); -#1547 = CARTESIAN_POINT('',(4.707573905087E-002,2.596670538104E-002, - 0.302)); -#1548 = CARTESIAN_POINT('',(4.707573905087E-002,2.596670538104E-002,0.3) - ); -#1549 = CARTESIAN_POINT('',(4.469182805396E-002,2.256839536119E-002, - 0.302)); -#1550 = CARTESIAN_POINT('',(4.469182805396E-002,2.256839536119E-002,0.3) - ); -#1551 = CARTESIAN_POINT('',(4.205450112872E-002,1.969534669371E-002, - 0.302)); -#1552 = CARTESIAN_POINT('',(4.205450112872E-002,1.969534669371E-002,0.3) - ); -#1553 = CARTESIAN_POINT('',(3.930138538622E-002,1.724081704812E-002, - 0.302)); -#1554 = CARTESIAN_POINT('',(3.930138538622E-002,1.724081704812E-002,0.3) - ); -#1555 = CARTESIAN_POINT('',(3.640843752915E-002,1.518570449081E-002, - 0.302)); -#1556 = CARTESIAN_POINT('',(3.640843752915E-002,1.518570449081E-002,0.3) - ); -#1557 = CARTESIAN_POINT('',(3.329964953704E-002,1.366659229598E-002, - 0.302)); -#1558 = CARTESIAN_POINT('',(3.329964953704E-002,1.366659229598E-002,0.3) - ); -#1559 = CARTESIAN_POINT('',(3.0067263023E-002,1.249148670626E-002,0.302) - ); -#1560 = CARTESIAN_POINT('',(3.0067263023E-002,1.249148670626E-002,0.3)); -#1561 = CARTESIAN_POINT('',(2.666465408093E-002,1.181578354923E-002, - 0.302)); -#1562 = CARTESIAN_POINT('',(2.666465408093E-002,1.181578354923E-002,0.3) - ); -#1563 = CARTESIAN_POINT('',(2.434123171392E-002,1.174360130119E-002, - 0.302)); -#1564 = CARTESIAN_POINT('',(2.434123171392E-002,1.174360130119E-002,0.3) - ); -#1565 = CARTESIAN_POINT('',(2.317223182091E-002,1.170728373731E-002, - 0.302)); -#1566 = CARTESIAN_POINT('',(2.317223182091E-002,1.170728373731E-002,0.3) - ); -#1567 = DEFINITIONAL_REPRESENTATION('',(#1568),#1572); -#1568 = LINE('',#1569,#1570); -#1569 = CARTESIAN_POINT('',(0.E+000,1.)); -#1570 = VECTOR('',#1571,1.); -#1571 = DIRECTION('',(1.,0.E+000)); -#1572 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1573 = ORIENTED_EDGE('',*,*,#1574,.T.); -#1574 = EDGE_CURVE('',#1449,#1149,#1575,.T.); -#1575 = SURFACE_CURVE('',#1576,(#1588,#1603),.PCURVE_S1.); -#1576 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1577,#1578,#1579,#1580,#1581, - #1582,#1583,#1584,#1585,#1586,#1587),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.112854647064,0.222519376563,0.333140162926, - 0.446105343461,0.568897005585,0.700571950429,0.84303095511,1.), - .UNSPECIFIED.); -#1577 = CARTESIAN_POINT('',(2.317223182091E-002,1.170728373731E-002,0.3) - ); -#1578 = CARTESIAN_POINT('',(2.162230948923E-002,1.17927506929E-002,0.3) - ); -#1579 = CARTESIAN_POINT('',(1.856627449252E-002,1.196126881925E-002,0.3) - ); -#1580 = CARTESIAN_POINT('',(1.41038243527E-002,1.311682872093E-002,0.3) - ); -#1581 = CARTESIAN_POINT('',(9.957795856105E-003,1.511045280708E-002,0.3) - ); -#1582 = CARTESIAN_POINT('',(6.06522043719E-003,1.787476771453E-002,0.3) - ); -#1583 = CARTESIAN_POINT('',(2.410954475236E-003,2.138261236295E-002,0.3) - ); -#1584 = CARTESIAN_POINT('',(-9.106120123595E-004,2.572022484956E-002,0.3 - )); -#1585 = CARTESIAN_POINT('',(-4.04815170646E-003,3.075511344898E-002,0.3) - ); -#1586 = CARTESIAN_POINT('',(-5.766959432909E-003,3.449404554434E-002,0.3 - )); -#1587 = CARTESIAN_POINT('',(-6.668009309687E-003,3.645410439907E-002,0.3 - )); -#1588 = PCURVE('',#48,#1589); -#1589 = DEFINITIONAL_REPRESENTATION('',(#1590),#1602); -#1590 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1591,#1592,#1593,#1594,#1595, - #1596,#1597,#1598,#1599,#1600,#1601),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.112854647064,0.222519376563,0.333140162926, - 0.446105343461,0.568897005585,0.700571950429,0.84303095511,1.), - .UNSPECIFIED.); -#1591 = CARTESIAN_POINT('',(-0.411707283737,0.823172231821)); -#1592 = CARTESIAN_POINT('',(-0.411792750693,0.821622309489)); -#1593 = CARTESIAN_POINT('',(-0.411961268819,0.818566274493)); -#1594 = CARTESIAN_POINT('',(-0.413116828721,0.814103824353)); -#1595 = CARTESIAN_POINT('',(-0.415110452807,0.809957795856)); -#1596 = CARTESIAN_POINT('',(-0.417874767715,0.806065220437)); -#1597 = CARTESIAN_POINT('',(-0.421382612363,0.802410954475)); -#1598 = CARTESIAN_POINT('',(-0.42572022485,0.799089387988)); -#1599 = CARTESIAN_POINT('',(-0.430755113449,0.795951848294)); -#1600 = CARTESIAN_POINT('',(-0.434494045544,0.794233040567)); -#1601 = CARTESIAN_POINT('',(-0.436454104399,0.79333199069)); -#1602 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1603 = PCURVE('',#1604,#1627); -#1604 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#1605,#1606) - ,(#1607,#1608) - ,(#1609,#1610) - ,(#1611,#1612) - ,(#1613,#1614) - ,(#1615,#1616) - ,(#1617,#1618) - ,(#1619,#1620) - ,(#1621,#1622) - ,(#1623,#1624) - ,(#1625,#1626 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,4),(2,2),(0.E+000, - 0.112854647064,0.222519376563,0.333140162926,0.446105343461, - 0.568897005585,0.700571950429,0.84303095511,1.),(0.E+000,1.), - .UNSPECIFIED.); -#1605 = CARTESIAN_POINT('',(2.317223182091E-002,1.170728373731E-002, - 0.302)); -#1606 = CARTESIAN_POINT('',(2.317223182091E-002,1.170728373731E-002,0.3) - ); -#1607 = CARTESIAN_POINT('',(2.162230948923E-002,1.17927506929E-002,0.302 - )); -#1608 = CARTESIAN_POINT('',(2.162230948923E-002,1.17927506929E-002,0.3) - ); -#1609 = CARTESIAN_POINT('',(1.856627449252E-002,1.196126881925E-002, - 0.302)); -#1610 = CARTESIAN_POINT('',(1.856627449252E-002,1.196126881925E-002,0.3) - ); -#1611 = CARTESIAN_POINT('',(1.41038243527E-002,1.311682872093E-002,0.302 - )); -#1612 = CARTESIAN_POINT('',(1.41038243527E-002,1.311682872093E-002,0.3) - ); -#1613 = CARTESIAN_POINT('',(9.957795856105E-003,1.511045280708E-002, - 0.302)); -#1614 = CARTESIAN_POINT('',(9.957795856105E-003,1.511045280708E-002,0.3) - ); -#1615 = CARTESIAN_POINT('',(6.06522043719E-003,1.787476771453E-002,0.302 - )); -#1616 = CARTESIAN_POINT('',(6.06522043719E-003,1.787476771453E-002,0.3) - ); -#1617 = CARTESIAN_POINT('',(2.410954475236E-003,2.138261236295E-002, - 0.302)); -#1618 = CARTESIAN_POINT('',(2.410954475236E-003,2.138261236295E-002,0.3) - ); -#1619 = CARTESIAN_POINT('',(-9.106120123595E-004,2.572022484956E-002, - 0.302)); -#1620 = CARTESIAN_POINT('',(-9.106120123595E-004,2.572022484956E-002,0.3 - )); -#1621 = CARTESIAN_POINT('',(-4.04815170646E-003,3.075511344898E-002, - 0.302)); -#1622 = CARTESIAN_POINT('',(-4.04815170646E-003,3.075511344898E-002,0.3) - ); -#1623 = CARTESIAN_POINT('',(-5.766959432909E-003,3.449404554434E-002, - 0.302)); -#1624 = CARTESIAN_POINT('',(-5.766959432909E-003,3.449404554434E-002,0.3 - )); -#1625 = CARTESIAN_POINT('',(-6.668009309687E-003,3.645410439907E-002, - 0.302)); -#1626 = CARTESIAN_POINT('',(-6.668009309687E-003,3.645410439907E-002,0.3 - )); -#1627 = DEFINITIONAL_REPRESENTATION('',(#1628),#1632); -#1628 = LINE('',#1629,#1630); -#1629 = CARTESIAN_POINT('',(0.E+000,1.)); -#1630 = VECTOR('',#1631,1.); -#1631 = DIRECTION('',(1.,0.E+000)); -#1632 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1633 = FACE_BOUND('',#1634,.T.); -#1634 = EDGE_LOOP('',(#1635,#1665,#1692,#1720)); -#1635 = ORIENTED_EDGE('',*,*,#1636,.F.); -#1636 = EDGE_CURVE('',#1637,#1639,#1641,.T.); -#1637 = VERTEX_POINT('',#1638); -#1638 = CARTESIAN_POINT('',(-0.4,-0.385,0.3)); -#1639 = VERTEX_POINT('',#1640); -#1640 = CARTESIAN_POINT('',(-0.4,0.385,0.3)); -#1641 = SURFACE_CURVE('',#1642,(#1646,#1653),.PCURVE_S1.); -#1642 = LINE('',#1643,#1644); -#1643 = CARTESIAN_POINT('',(-0.4,-0.4,0.3)); -#1644 = VECTOR('',#1645,1.); -#1645 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#1646 = PCURVE('',#48,#1647); -#1647 = DEFINITIONAL_REPRESENTATION('',(#1648),#1652); -#1648 = LINE('',#1649,#1650); -#1649 = CARTESIAN_POINT('',(0.E+000,0.4)); -#1650 = VECTOR('',#1651,1.); -#1651 = DIRECTION('',(-1.,0.E+000)); -#1652 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1653 = PCURVE('',#1654,#1659); -#1654 = PLANE('',#1655); -#1655 = AXIS2_PLACEMENT_3D('',#1656,#1657,#1658); -#1656 = CARTESIAN_POINT('',(-0.8,-0.4,0.3)); -#1657 = DIRECTION('',(0.E+000,2.22044604925E-016,1.)); -#1658 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#1659 = DEFINITIONAL_REPRESENTATION('',(#1660),#1664); -#1660 = LINE('',#1661,#1662); -#1661 = CARTESIAN_POINT('',(0.E+000,0.4)); -#1662 = VECTOR('',#1663,1.); -#1663 = DIRECTION('',(-1.,0.E+000)); -#1664 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1665 = ORIENTED_EDGE('',*,*,#1666,.T.); -#1666 = EDGE_CURVE('',#1637,#1667,#1669,.T.); -#1667 = VERTEX_POINT('',#1668); -#1668 = CARTESIAN_POINT('',(0.4,-0.385,0.3)); -#1669 = SURFACE_CURVE('',#1670,(#1674,#1681),.PCURVE_S1.); -#1670 = LINE('',#1671,#1672); -#1671 = CARTESIAN_POINT('',(0.8,-0.385,0.3)); -#1672 = VECTOR('',#1673,1.); -#1673 = DIRECTION('',(1.,0.E+000,0.E+000)); -#1674 = PCURVE('',#48,#1675); -#1675 = DEFINITIONAL_REPRESENTATION('',(#1676),#1680); -#1676 = LINE('',#1677,#1678); -#1677 = CARTESIAN_POINT('',(-1.5E-002,1.6)); -#1678 = VECTOR('',#1679,1.); -#1679 = DIRECTION('',(0.E+000,1.)); -#1680 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1681 = PCURVE('',#1682,#1687); -#1682 = CYLINDRICAL_SURFACE('',#1683,1.5E-002); -#1683 = AXIS2_PLACEMENT_3D('',#1684,#1685,#1686); -#1684 = CARTESIAN_POINT('',(-0.8,-0.385,0.285)); -#1685 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#1686 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#1687 = DEFINITIONAL_REPRESENTATION('',(#1688),#1691); -#1688 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#1689,#1690),.UNSPECIFIED.,.F., - .F.,(2,2),(-1.2,-0.4),.PIECEWISE_BEZIER_KNOTS.); -#1689 = CARTESIAN_POINT('',(1.570796326795,-0.4)); -#1690 = CARTESIAN_POINT('',(1.570796326795,-1.2)); -#1691 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1692 = ORIENTED_EDGE('',*,*,#1693,.F.); -#1693 = EDGE_CURVE('',#1694,#1667,#1696,.T.); -#1694 = VERTEX_POINT('',#1695); -#1695 = CARTESIAN_POINT('',(0.4,0.385,0.3)); -#1696 = SURFACE_CURVE('',#1697,(#1701,#1708),.PCURVE_S1.); -#1697 = LINE('',#1698,#1699); -#1698 = CARTESIAN_POINT('',(0.4,-0.4,0.3)); -#1699 = VECTOR('',#1700,1.); -#1700 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#1701 = PCURVE('',#48,#1702); -#1702 = DEFINITIONAL_REPRESENTATION('',(#1703),#1707); -#1703 = LINE('',#1704,#1705); -#1704 = CARTESIAN_POINT('',(0.E+000,1.2)); -#1705 = VECTOR('',#1706,1.); -#1706 = DIRECTION('',(1.,0.E+000)); -#1707 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1708 = PCURVE('',#1709,#1714); -#1709 = PLANE('',#1710); -#1710 = AXIS2_PLACEMENT_3D('',#1711,#1712,#1713); -#1711 = CARTESIAN_POINT('',(-0.8,-0.4,0.3)); -#1712 = DIRECTION('',(0.E+000,2.22044604925E-016,1.)); -#1713 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#1714 = DEFINITIONAL_REPRESENTATION('',(#1715),#1719); -#1715 = LINE('',#1716,#1717); -#1716 = CARTESIAN_POINT('',(0.E+000,1.2)); -#1717 = VECTOR('',#1718,1.); -#1718 = DIRECTION('',(1.,0.E+000)); -#1719 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1720 = ORIENTED_EDGE('',*,*,#1721,.T.); -#1721 = EDGE_CURVE('',#1694,#1639,#1722,.T.); -#1722 = SURFACE_CURVE('',#1723,(#1727,#1734),.PCURVE_S1.); -#1723 = LINE('',#1724,#1725); -#1724 = CARTESIAN_POINT('',(-0.8,0.385,0.3)); -#1725 = VECTOR('',#1726,1.); -#1726 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#1727 = PCURVE('',#48,#1728); -#1728 = DEFINITIONAL_REPRESENTATION('',(#1729),#1733); -#1729 = LINE('',#1730,#1731); -#1730 = CARTESIAN_POINT('',(-0.785,0.E+000)); -#1731 = VECTOR('',#1732,1.); -#1732 = DIRECTION('',(0.E+000,-1.)); -#1733 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1734 = PCURVE('',#1735,#1740); -#1735 = CYLINDRICAL_SURFACE('',#1736,1.5E-002); -#1736 = AXIS2_PLACEMENT_3D('',#1737,#1738,#1739); -#1737 = CARTESIAN_POINT('',(-0.8,0.385,0.285)); -#1738 = DIRECTION('',(1.,0.E+000,0.E+000)); -#1739 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#1740 = DEFINITIONAL_REPRESENTATION('',(#1741),#1744); -#1741 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#1742,#1743),.UNSPECIFIED.,.F., - .F.,(2,2),(-1.2,-0.4),.PIECEWISE_BEZIER_KNOTS.); -#1742 = CARTESIAN_POINT('',(1.570796326795,1.2)); -#1743 = CARTESIAN_POINT('',(1.570796326795,0.4)); -#1744 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1745 = FACE_BOUND('',#1746,.T.); -#1746 = EDGE_LOOP('',(#1747,#1843,#1871,#1917,#1979,#2025,#2103,#2165, - #2259,#2337,#2431,#2493)); -#1747 = ORIENTED_EDGE('',*,*,#1748,.T.); -#1748 = EDGE_CURVE('',#1749,#1751,#1753,.T.); -#1749 = VERTEX_POINT('',#1750); -#1750 = CARTESIAN_POINT('',(-7.247088587182E-002,0.27183186849,0.3)); -#1751 = VERTEX_POINT('',#1752); -#1752 = CARTESIAN_POINT('',(-3.609666090745E-002,0.205977543236,0.3)); -#1753 = SURFACE_CURVE('',#1754,(#1774,#1797),.PCURVE_S1.); -#1754 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1755,#1756,#1757,#1758,#1759, - #1760,#1761,#1762,#1763,#1764,#1765,#1766,#1767,#1768,#1769,#1770, - #1771,#1772,#1773),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,4.524912127705E-002,8.904597190023E-002, - 0.133753272651,0.179019764033,0.226220404522,0.276333290597, - 0.330501923748,0.389318397234,0.451843900854,0.517625875636, - 0.587611593084,0.660911148885,0.73911673359,0.821057935489, - 0.908156625983,1.),.UNSPECIFIED.); -#1755 = CARTESIAN_POINT('',(-7.247088587182E-002,0.27183186849,0.3)); -#1756 = CARTESIAN_POINT('',(-7.123111326146E-002,0.271789034478,0.3)); -#1757 = CARTESIAN_POINT('',(-6.87913585456E-002,0.271704741213,0.3)); -#1758 = CARTESIAN_POINT('',(-6.521400133993E-002,0.270829239128,0.3)); -#1759 = CARTESIAN_POINT('',(-6.181959741819E-002,0.269436686784,0.3)); -#1760 = CARTESIAN_POINT('',(-5.857759922046E-002,0.267513615395,0.3)); -#1761 = CARTESIAN_POINT('',(-5.558955412587E-002,0.264987154949,0.3)); -#1762 = CARTESIAN_POINT('',(-5.273272181847E-002,0.261974988972,0.3)); -#1763 = CARTESIAN_POINT('',(-5.006131531264E-002,0.258390048367,0.3)); -#1764 = CARTESIAN_POINT('',(-4.756613533398E-002,0.254282218988,0.3)); -#1765 = CARTESIAN_POINT('',(-4.52586527869E-002,0.249707537836,0.3)); -#1766 = CARTESIAN_POINT('',(-4.319491037047E-002,0.244685579719,0.3)); -#1767 = CARTESIAN_POINT('',(-4.14179624297E-002,0.239245226009,0.3)); -#1768 = CARTESIAN_POINT('',(-3.987653488647E-002,0.233383334155,0.3)); -#1769 = CARTESIAN_POINT('',(-3.854573071684E-002,0.227135373781,0.3)); -#1770 = CARTESIAN_POINT('',(-3.746397790014E-002,0.220456583909,0.3)); -#1771 = CARTESIAN_POINT('',(-3.665542932565E-002,0.213363880641,0.3)); -#1772 = CARTESIAN_POINT('',(-3.62861806139E-002,0.208482796667,0.3)); -#1773 = CARTESIAN_POINT('',(-3.609666090745E-002,0.205977543236,0.3)); -#1774 = PCURVE('',#48,#1775); -#1775 = DEFINITIONAL_REPRESENTATION('',(#1776),#1796); -#1776 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1777,#1778,#1779,#1780,#1781, - #1782,#1783,#1784,#1785,#1786,#1787,#1788,#1789,#1790,#1791,#1792, - #1793,#1794,#1795),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,4.524912127705E-002,8.904597190023E-002, - 0.133753272651,0.179019764033,0.226220404522,0.276333290597, - 0.330501923748,0.389318397234,0.451843900854,0.517625875636, - 0.587611593084,0.660911148885,0.73911673359,0.821057935489, - 0.908156625983,1.),.UNSPECIFIED.); -#1777 = CARTESIAN_POINT('',(-0.67183186849,0.727529114128)); -#1778 = CARTESIAN_POINT('',(-0.671789034478,0.728768886739)); -#1779 = CARTESIAN_POINT('',(-0.671704741213,0.731208641454)); -#1780 = CARTESIAN_POINT('',(-0.670829239128,0.73478599866)); -#1781 = CARTESIAN_POINT('',(-0.669436686784,0.738180402582)); -#1782 = CARTESIAN_POINT('',(-0.667513615395,0.74142240078)); -#1783 = CARTESIAN_POINT('',(-0.664987154949,0.744410445874)); -#1784 = CARTESIAN_POINT('',(-0.661974988972,0.747267278182)); -#1785 = CARTESIAN_POINT('',(-0.658390048367,0.749938684687)); -#1786 = CARTESIAN_POINT('',(-0.654282218988,0.752433864666)); -#1787 = CARTESIAN_POINT('',(-0.649707537836,0.754741347213)); -#1788 = CARTESIAN_POINT('',(-0.644685579719,0.75680508963)); -#1789 = CARTESIAN_POINT('',(-0.639245226009,0.75858203757)); -#1790 = CARTESIAN_POINT('',(-0.633383334155,0.760123465114)); -#1791 = CARTESIAN_POINT('',(-0.627135373781,0.761454269283)); -#1792 = CARTESIAN_POINT('',(-0.620456583909,0.7625360221)); -#1793 = CARTESIAN_POINT('',(-0.613363880641,0.763344570674)); -#1794 = CARTESIAN_POINT('',(-0.608482796667,0.763713819386)); -#1795 = CARTESIAN_POINT('',(-0.605977543236,0.763903339093)); -#1796 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1797 = PCURVE('',#1798,#1837); -#1798 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#1799,#1800) - ,(#1801,#1802) - ,(#1803,#1804) - ,(#1805,#1806) - ,(#1807,#1808) - ,(#1809,#1810) - ,(#1811,#1812) - ,(#1813,#1814) - ,(#1815,#1816) - ,(#1817,#1818) - ,(#1819,#1820) - ,(#1821,#1822) - ,(#1823,#1824) - ,(#1825,#1826) - ,(#1827,#1828) - ,(#1829,#1830) - ,(#1831,#1832) - ,(#1833,#1834) - ,(#1835,#1836 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, - 2),(0.E+000,4.524912127705E-002,8.904597190023E-002,0.133753272651, - 0.179019764033,0.226220404522,0.276333290597,0.330501923748, - 0.389318397234,0.451843900854,0.517625875636,0.587611593084, - 0.660911148885,0.73911673359,0.821057935489,0.908156625983,1.),( - 0.E+000,1.),.UNSPECIFIED.); -#1799 = CARTESIAN_POINT('',(-7.247088587182E-002,0.27183186849,0.302)); -#1800 = CARTESIAN_POINT('',(-7.247088587182E-002,0.27183186849,0.3)); -#1801 = CARTESIAN_POINT('',(-7.123111326146E-002,0.271789034478,0.302)); -#1802 = CARTESIAN_POINT('',(-7.123111326146E-002,0.271789034478,0.3)); -#1803 = CARTESIAN_POINT('',(-6.87913585456E-002,0.271704741213,0.302)); -#1804 = CARTESIAN_POINT('',(-6.87913585456E-002,0.271704741213,0.3)); -#1805 = CARTESIAN_POINT('',(-6.521400133993E-002,0.270829239128,0.302)); -#1806 = CARTESIAN_POINT('',(-6.521400133993E-002,0.270829239128,0.3)); -#1807 = CARTESIAN_POINT('',(-6.181959741819E-002,0.269436686784,0.302)); -#1808 = CARTESIAN_POINT('',(-6.181959741819E-002,0.269436686784,0.3)); -#1809 = CARTESIAN_POINT('',(-5.857759922046E-002,0.267513615395,0.302)); -#1810 = CARTESIAN_POINT('',(-5.857759922046E-002,0.267513615395,0.3)); -#1811 = CARTESIAN_POINT('',(-5.558955412587E-002,0.264987154949,0.302)); -#1812 = CARTESIAN_POINT('',(-5.558955412587E-002,0.264987154949,0.3)); -#1813 = CARTESIAN_POINT('',(-5.273272181847E-002,0.261974988972,0.302)); -#1814 = CARTESIAN_POINT('',(-5.273272181847E-002,0.261974988972,0.3)); -#1815 = CARTESIAN_POINT('',(-5.006131531264E-002,0.258390048367,0.302)); -#1816 = CARTESIAN_POINT('',(-5.006131531264E-002,0.258390048367,0.3)); -#1817 = CARTESIAN_POINT('',(-4.756613533398E-002,0.254282218988,0.302)); -#1818 = CARTESIAN_POINT('',(-4.756613533398E-002,0.254282218988,0.3)); -#1819 = CARTESIAN_POINT('',(-4.52586527869E-002,0.249707537836,0.302)); -#1820 = CARTESIAN_POINT('',(-4.52586527869E-002,0.249707537836,0.3)); -#1821 = CARTESIAN_POINT('',(-4.319491037047E-002,0.244685579719,0.302)); -#1822 = CARTESIAN_POINT('',(-4.319491037047E-002,0.244685579719,0.3)); -#1823 = CARTESIAN_POINT('',(-4.14179624297E-002,0.239245226009,0.302)); -#1824 = CARTESIAN_POINT('',(-4.14179624297E-002,0.239245226009,0.3)); -#1825 = CARTESIAN_POINT('',(-3.987653488647E-002,0.233383334155,0.302)); -#1826 = CARTESIAN_POINT('',(-3.987653488647E-002,0.233383334155,0.3)); -#1827 = CARTESIAN_POINT('',(-3.854573071684E-002,0.227135373781,0.302)); -#1828 = CARTESIAN_POINT('',(-3.854573071684E-002,0.227135373781,0.3)); -#1829 = CARTESIAN_POINT('',(-3.746397790014E-002,0.220456583909,0.302)); -#1830 = CARTESIAN_POINT('',(-3.746397790014E-002,0.220456583909,0.3)); -#1831 = CARTESIAN_POINT('',(-3.665542932565E-002,0.213363880641,0.302)); -#1832 = CARTESIAN_POINT('',(-3.665542932565E-002,0.213363880641,0.3)); -#1833 = CARTESIAN_POINT('',(-3.62861806139E-002,0.208482796667,0.302)); -#1834 = CARTESIAN_POINT('',(-3.62861806139E-002,0.208482796667,0.3)); -#1835 = CARTESIAN_POINT('',(-3.609666090745E-002,0.205977543236,0.302)); -#1836 = CARTESIAN_POINT('',(-3.609666090745E-002,0.205977543236,0.3)); -#1837 = DEFINITIONAL_REPRESENTATION('',(#1838),#1842); -#1838 = LINE('',#1839,#1840); -#1839 = CARTESIAN_POINT('',(0.E+000,1.)); -#1840 = VECTOR('',#1841,1.); -#1841 = DIRECTION('',(1.,0.E+000)); -#1842 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1843 = ORIENTED_EDGE('',*,*,#1844,.T.); -#1844 = EDGE_CURVE('',#1751,#1845,#1847,.T.); -#1845 = VERTEX_POINT('',#1846); -#1846 = CARTESIAN_POINT('',(-5.256024222089E-002,0.202684826973,0.3)); -#1847 = SURFACE_CURVE('',#1848,(#1852,#1859),.PCURVE_S1.); -#1848 = LINE('',#1849,#1850); -#1849 = CARTESIAN_POINT('',(-3.609666090745E-002,0.205977543236,0.3)); -#1850 = VECTOR('',#1851,1.); -#1851 = DIRECTION('',(-0.980580675691,-0.196116135138, - 4.354652974618E-017)); -#1852 = PCURVE('',#48,#1853); -#1853 = DEFINITIONAL_REPRESENTATION('',(#1854),#1858); -#1854 = LINE('',#1855,#1856); -#1855 = CARTESIAN_POINT('',(-0.605977543236,0.763903339093)); -#1856 = VECTOR('',#1857,1.); -#1857 = DIRECTION('',(0.196116135138,-0.980580675691)); -#1858 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1859 = PCURVE('',#1860,#1865); -#1860 = PLANE('',#1861); -#1861 = AXIS2_PLACEMENT_3D('',#1862,#1863,#1864); -#1862 = CARTESIAN_POINT('',(-3.609666090745E-002,0.205977543236,0.302)); -#1863 = DIRECTION('',(0.196116135138,-0.980580675691,2.177326487309E-016 - )); -#1864 = DIRECTION('',(0.980580675691,0.196116135138,-4.354652974618E-017 - )); -#1865 = DEFINITIONAL_REPRESENTATION('',(#1866),#1870); -#1866 = LINE('',#1867,#1868); -#1867 = CARTESIAN_POINT('',(8.709305949236E-020,-2.E-003)); -#1868 = VECTOR('',#1869,1.); -#1869 = DIRECTION('',(-1.,0.E+000)); -#1870 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1871 = ORIENTED_EDGE('',*,*,#1872,.T.); -#1872 = EDGE_CURVE('',#1845,#1873,#1875,.T.); -#1873 = VERTEX_POINT('',#1874); -#1874 = CARTESIAN_POINT('',(-5.832249568059E-002,0.229026557075,0.3)); -#1875 = SURFACE_CURVE('',#1876,(#1884,#1895),.PCURVE_S1.); -#1876 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1877,#1878,#1879,#1880,#1881, - #1882,#1883),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.E+000, - 0.31467797743,0.585132279047,0.813474950365,1.),.UNSPECIFIED.); -#1877 = CARTESIAN_POINT('',(-5.256024222089E-002,0.202684826973,0.3)); -#1878 = CARTESIAN_POINT('',(-5.291623792002E-002,0.205500322404,0.3)); -#1879 = CARTESIAN_POINT('',(-5.35781990031E-002,0.210735633982,0.3)); -#1880 = CARTESIAN_POINT('',(-5.48055694023E-002,0.217971193731,0.3)); -#1881 = CARTESIAN_POINT('',(-5.635002442134E-002,0.22397092699,0.3)); -#1882 = CARTESIAN_POINT('',(-5.77107236116E-002,0.227458527496,0.3)); -#1883 = CARTESIAN_POINT('',(-5.832249568059E-002,0.229026557075,0.3)); -#1884 = PCURVE('',#48,#1885); -#1885 = DEFINITIONAL_REPRESENTATION('',(#1886),#1894); -#1886 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1887,#1888,#1889,#1890,#1891, - #1892,#1893),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.E+000, - 0.31467797743,0.585132279047,0.813474950365,1.),.UNSPECIFIED.); -#1887 = CARTESIAN_POINT('',(-0.602684826973,0.747439757779)); -#1888 = CARTESIAN_POINT('',(-0.605500322404,0.74708376208)); -#1889 = CARTESIAN_POINT('',(-0.610735633982,0.746421800997)); -#1890 = CARTESIAN_POINT('',(-0.617971193731,0.745194430598)); -#1891 = CARTESIAN_POINT('',(-0.62397092699,0.743649975579)); -#1892 = CARTESIAN_POINT('',(-0.627458527496,0.742289276388)); -#1893 = CARTESIAN_POINT('',(-0.629026557075,0.741677504319)); -#1894 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1895 = PCURVE('',#1896,#1911); -#1896 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#1897,#1898) - ,(#1899,#1900) - ,(#1901,#1902) - ,(#1903,#1904) - ,(#1905,#1906) - ,(#1907,#1908) - ,(#1909,#1910 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,4),(2,2),(0.E+000, - 0.31467797743,0.585132279047,0.813474950365,1.),(0.E+000,1.), - .UNSPECIFIED.); -#1897 = CARTESIAN_POINT('',(-5.256024222089E-002,0.202684826973,0.302)); -#1898 = CARTESIAN_POINT('',(-5.256024222089E-002,0.202684826973,0.3)); -#1899 = CARTESIAN_POINT('',(-5.291623792002E-002,0.205500322404,0.302)); -#1900 = CARTESIAN_POINT('',(-5.291623792002E-002,0.205500322404,0.3)); -#1901 = CARTESIAN_POINT('',(-5.35781990031E-002,0.210735633982,0.302)); -#1902 = CARTESIAN_POINT('',(-5.35781990031E-002,0.210735633982,0.3)); -#1903 = CARTESIAN_POINT('',(-5.48055694023E-002,0.217971193731,0.302)); -#1904 = CARTESIAN_POINT('',(-5.48055694023E-002,0.217971193731,0.3)); -#1905 = CARTESIAN_POINT('',(-5.635002442134E-002,0.22397092699,0.302)); -#1906 = CARTESIAN_POINT('',(-5.635002442134E-002,0.22397092699,0.3)); -#1907 = CARTESIAN_POINT('',(-5.77107236116E-002,0.227458527496,0.302)); -#1908 = CARTESIAN_POINT('',(-5.77107236116E-002,0.227458527496,0.3)); -#1909 = CARTESIAN_POINT('',(-5.832249568059E-002,0.229026557075,0.302)); -#1910 = CARTESIAN_POINT('',(-5.832249568059E-002,0.229026557075,0.3)); -#1911 = DEFINITIONAL_REPRESENTATION('',(#1912),#1916); -#1912 = LINE('',#1913,#1914); -#1913 = CARTESIAN_POINT('',(0.E+000,1.)); -#1914 = VECTOR('',#1915,1.); -#1915 = DIRECTION('',(1.,0.E+000)); -#1916 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1917 = ORIENTED_EDGE('',*,*,#1918,.T.); -#1918 = EDGE_CURVE('',#1873,#1919,#1921,.T.); -#1919 = VERTEX_POINT('',#1920); -#1920 = CARTESIAN_POINT('',(-7.355130839552E-002,0.242197422125,0.3)); -#1921 = SURFACE_CURVE('',#1922,(#1934,#1949),.PCURVE_S1.); -#1922 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1923,#1924,#1925,#1926,#1927, - #1928,#1929,#1930,#1931,#1932,#1933),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.16327665571,0.310892172789,0.44681935319, - 0.569906175247,0.684023518813,0.789987372117,0.89559207171,1.), - .UNSPECIFIED.); -#1923 = CARTESIAN_POINT('',(-5.832249568059E-002,0.229026557075,0.3)); -#1924 = CARTESIAN_POINT('',(-5.884028457047E-002,0.230062546245,0.3)); -#1925 = CARTESIAN_POINT('',(-5.982619717581E-002,0.232035154777,0.3)); -#1926 = CARTESIAN_POINT('',(-6.145963268323E-002,0.234760556423,0.3)); -#1927 = CARTESIAN_POINT('',(-6.327103375237E-002,0.237013087029,0.3)); -#1928 = CARTESIAN_POINT('',(-6.512274675376E-002,0.238914427285,0.3)); -#1929 = CARTESIAN_POINT('',(-6.709097498585E-002,0.240365285804,0.3)); -#1930 = CARTESIAN_POINT('',(-6.914569465816E-002,0.241442329562,0.3)); -#1931 = CARTESIAN_POINT('',(-7.131901586453E-002,0.242074823052,0.3)); -#1932 = CARTESIAN_POINT('',(-7.281004312541E-002,0.242156711316,0.3)); -#1933 = CARTESIAN_POINT('',(-7.355130839552E-002,0.242197422125,0.3)); -#1934 = PCURVE('',#48,#1935); -#1935 = DEFINITIONAL_REPRESENTATION('',(#1936),#1948); -#1936 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1937,#1938,#1939,#1940,#1941, - #1942,#1943,#1944,#1945,#1946,#1947),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.16327665571,0.310892172789,0.44681935319, - 0.569906175247,0.684023518813,0.789987372117,0.89559207171,1.), - .UNSPECIFIED.); -#1937 = CARTESIAN_POINT('',(-0.629026557075,0.741677504319)); -#1938 = CARTESIAN_POINT('',(-0.630062546245,0.74115971543)); -#1939 = CARTESIAN_POINT('',(-0.632035154777,0.740173802824)); -#1940 = CARTESIAN_POINT('',(-0.634760556423,0.738540367317)); -#1941 = CARTESIAN_POINT('',(-0.637013087029,0.736728966248)); -#1942 = CARTESIAN_POINT('',(-0.638914427285,0.734877253246)); -#1943 = CARTESIAN_POINT('',(-0.640365285804,0.732909025014)); -#1944 = CARTESIAN_POINT('',(-0.641442329562,0.730854305342)); -#1945 = CARTESIAN_POINT('',(-0.642074823052,0.728680984135)); -#1946 = CARTESIAN_POINT('',(-0.642156711316,0.727189956875)); -#1947 = CARTESIAN_POINT('',(-0.642197422125,0.726448691604)); -#1948 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1949 = PCURVE('',#1950,#1973); -#1950 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#1951,#1952) - ,(#1953,#1954) - ,(#1955,#1956) - ,(#1957,#1958) - ,(#1959,#1960) - ,(#1961,#1962) - ,(#1963,#1964) - ,(#1965,#1966) - ,(#1967,#1968) - ,(#1969,#1970) - ,(#1971,#1972 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,4),(2,2),(0.E+000, - 0.16327665571,0.310892172789,0.44681935319,0.569906175247, - 0.684023518813,0.789987372117,0.89559207171,1.),(0.E+000,1.), - .UNSPECIFIED.); -#1951 = CARTESIAN_POINT('',(-5.832249568059E-002,0.229026557075,0.302)); -#1952 = CARTESIAN_POINT('',(-5.832249568059E-002,0.229026557075,0.3)); -#1953 = CARTESIAN_POINT('',(-5.884028457047E-002,0.230062546245,0.302)); -#1954 = CARTESIAN_POINT('',(-5.884028457047E-002,0.230062546245,0.3)); -#1955 = CARTESIAN_POINT('',(-5.982619717581E-002,0.232035154777,0.302)); -#1956 = CARTESIAN_POINT('',(-5.982619717581E-002,0.232035154777,0.3)); -#1957 = CARTESIAN_POINT('',(-6.145963268323E-002,0.234760556423,0.302)); -#1958 = CARTESIAN_POINT('',(-6.145963268323E-002,0.234760556423,0.3)); -#1959 = CARTESIAN_POINT('',(-6.327103375237E-002,0.237013087029,0.302)); -#1960 = CARTESIAN_POINT('',(-6.327103375237E-002,0.237013087029,0.3)); -#1961 = CARTESIAN_POINT('',(-6.512274675376E-002,0.238914427285,0.302)); -#1962 = CARTESIAN_POINT('',(-6.512274675376E-002,0.238914427285,0.3)); -#1963 = CARTESIAN_POINT('',(-6.709097498585E-002,0.240365285804,0.302)); -#1964 = CARTESIAN_POINT('',(-6.709097498585E-002,0.240365285804,0.3)); -#1965 = CARTESIAN_POINT('',(-6.914569465816E-002,0.241442329562,0.302)); -#1966 = CARTESIAN_POINT('',(-6.914569465816E-002,0.241442329562,0.3)); -#1967 = CARTESIAN_POINT('',(-7.131901586453E-002,0.242074823052,0.302)); -#1968 = CARTESIAN_POINT('',(-7.131901586453E-002,0.242074823052,0.3)); -#1969 = CARTESIAN_POINT('',(-7.281004312541E-002,0.242156711316,0.302)); -#1970 = CARTESIAN_POINT('',(-7.281004312541E-002,0.242156711316,0.3)); -#1971 = CARTESIAN_POINT('',(-7.355130839552E-002,0.242197422125,0.302)); -#1972 = CARTESIAN_POINT('',(-7.355130839552E-002,0.242197422125,0.3)); -#1973 = DEFINITIONAL_REPRESENTATION('',(#1974),#1978); -#1974 = LINE('',#1975,#1976); -#1975 = CARTESIAN_POINT('',(0.E+000,1.)); -#1976 = VECTOR('',#1977,1.); -#1977 = DIRECTION('',(1.,0.E+000)); -#1978 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#1979 = ORIENTED_EDGE('',*,*,#1980,.T.); -#1980 = EDGE_CURVE('',#1919,#1981,#1983,.T.); -#1981 = VERTEX_POINT('',#1982); -#1982 = CARTESIAN_POINT('',(-8.795694204477E-002,0.234583015768,0.3)); -#1983 = SURFACE_CURVE('',#1984,(#1992,#2003),.PCURVE_S1.); -#1984 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1985,#1986,#1987,#1988,#1989, - #1990,#1991),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.E+000, - 0.216987327124,0.448781830899,0.706307716581,1.),.UNSPECIFIED.); -#1985 = CARTESIAN_POINT('',(-7.355130839552E-002,0.242197422125,0.3)); -#1986 = CARTESIAN_POINT('',(-7.47661802925E-002,0.242107786486,0.3)); -#1987 = CARTESIAN_POINT('',(-7.727882672887E-002,0.241922398486,0.3)); -#1988 = CARTESIAN_POINT('',(-8.09424305875E-002,0.240323687502,0.3)); -#1989 = CARTESIAN_POINT('',(-8.46128525046E-002,0.237923041082,0.3)); -#1990 = CARTESIAN_POINT('',(-8.679453093945E-002,0.235744014141,0.3)); -#1991 = CARTESIAN_POINT('',(-8.795694204477E-002,0.234583015768,0.3)); -#1992 = PCURVE('',#48,#1993); -#1993 = DEFINITIONAL_REPRESENTATION('',(#1994),#2002); -#1994 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1995,#1996,#1997,#1998,#1999, - #2000,#2001),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.E+000, - 0.216987327124,0.448781830899,0.706307716581,1.),.UNSPECIFIED.); -#1995 = CARTESIAN_POINT('',(-0.642197422125,0.726448691604)); -#1996 = CARTESIAN_POINT('',(-0.642107786486,0.725233819708)); -#1997 = CARTESIAN_POINT('',(-0.641922398486,0.722721173271)); -#1998 = CARTESIAN_POINT('',(-0.640323687502,0.719057569412)); -#1999 = CARTESIAN_POINT('',(-0.637923041082,0.715387147495)); -#2000 = CARTESIAN_POINT('',(-0.635744014141,0.713205469061)); -#2001 = CARTESIAN_POINT('',(-0.634583015768,0.712043057955)); -#2002 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2003 = PCURVE('',#2004,#2019); -#2004 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#2005,#2006) - ,(#2007,#2008) - ,(#2009,#2010) - ,(#2011,#2012) - ,(#2013,#2014) - ,(#2015,#2016) - ,(#2017,#2018 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,4),(2,2),(0.E+000, - 0.216987327124,0.448781830899,0.706307716581,1.),(0.E+000,1.), - .UNSPECIFIED.); -#2005 = CARTESIAN_POINT('',(-7.355130839552E-002,0.242197422125,0.302)); -#2006 = CARTESIAN_POINT('',(-7.355130839552E-002,0.242197422125,0.3)); -#2007 = CARTESIAN_POINT('',(-7.47661802925E-002,0.242107786486,0.302)); -#2008 = CARTESIAN_POINT('',(-7.47661802925E-002,0.242107786486,0.3)); -#2009 = CARTESIAN_POINT('',(-7.727882672887E-002,0.241922398486,0.302)); -#2010 = CARTESIAN_POINT('',(-7.727882672887E-002,0.241922398486,0.3)); -#2011 = CARTESIAN_POINT('',(-8.09424305875E-002,0.240323687502,0.302)); -#2012 = CARTESIAN_POINT('',(-8.09424305875E-002,0.240323687502,0.3)); -#2013 = CARTESIAN_POINT('',(-8.46128525046E-002,0.237923041082,0.302)); -#2014 = CARTESIAN_POINT('',(-8.46128525046E-002,0.237923041082,0.3)); -#2015 = CARTESIAN_POINT('',(-8.679453093945E-002,0.235744014141,0.302)); -#2016 = CARTESIAN_POINT('',(-8.679453093945E-002,0.235744014141,0.3)); -#2017 = CARTESIAN_POINT('',(-8.795694204477E-002,0.234583015768,0.302)); -#2018 = CARTESIAN_POINT('',(-8.795694204477E-002,0.234583015768,0.3)); -#2019 = DEFINITIONAL_REPRESENTATION('',(#2020),#2024); -#2020 = LINE('',#2021,#2022); -#2021 = CARTESIAN_POINT('',(0.E+000,1.)); -#2022 = VECTOR('',#2023,1.); -#2023 = DIRECTION('',(1.,0.E+000)); -#2024 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2025 = ORIENTED_EDGE('',*,*,#2026,.T.); -#2026 = EDGE_CURVE('',#1981,#2027,#2029,.T.); -#2027 = VERTEX_POINT('',#2028); -#2028 = CARTESIAN_POINT('',(-0.101950986161,0.149075290321,0.3)); -#2029 = SURFACE_CURVE('',#2030,(#2046,#2065),.PCURVE_S1.); -#2030 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2031,#2032,#2033,#2034,#2035, - #2036,#2037,#2038,#2039,#2040,#2041,#2042,#2043,#2044,#2045), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 6.999263450657E-002,0.151179237049,0.244049347772,0.348788670798, - 0.406942105318,0.471758334761,0.54342234969,0.62140343022, - 0.705702457219,0.796988044797,0.895268939323,1.),.UNSPECIFIED.); -#2031 = CARTESIAN_POINT('',(-8.795694204477E-002,0.234583015768,0.3)); -#2032 = CARTESIAN_POINT('',(-8.888361475323E-002,0.232763596739,0.3)); -#2033 = CARTESIAN_POINT('',(-9.088516354541E-002,0.228833777801,0.3)); -#2034 = CARTESIAN_POINT('',(-9.332785897335E-002,0.222137746434,0.3)); -#2035 = CARTESIAN_POINT('',(-9.569383979249E-002,0.214361845903,0.3)); -#2036 = CARTESIAN_POINT('',(-9.74353279371E-002,0.207108129224,0.3)); -#2037 = CARTESIAN_POINT('',(-9.874307831626E-002,0.200598815029,0.3)); -#2038 = CARTESIAN_POINT('',(-9.953147433189E-002,0.194978001803,0.3)); -#2039 = CARTESIAN_POINT('',(-0.10024490812,0.188767583757,0.3)); -#2040 = CARTESIAN_POINT('',(-0.100872076625,0.1819760159,0.3)); -#2041 = CARTESIAN_POINT('',(-0.101308082223,0.174597013261,0.3)); -#2042 = CARTESIAN_POINT('',(-0.101684829699,0.166622579517,0.3)); -#2043 = CARTESIAN_POINT('',(-0.101869339229,0.158045301859,0.3)); -#2044 = CARTESIAN_POINT('',(-0.101923200088,0.152127963409,0.3)); -#2045 = CARTESIAN_POINT('',(-0.101950986161,0.149075290321,0.3)); -#2046 = PCURVE('',#48,#2047); -#2047 = DEFINITIONAL_REPRESENTATION('',(#2048),#2064); -#2048 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2049,#2050,#2051,#2052,#2053, - #2054,#2055,#2056,#2057,#2058,#2059,#2060,#2061,#2062,#2063), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 6.999263450657E-002,0.151179237049,0.244049347772,0.348788670798, - 0.406942105318,0.471758334761,0.54342234969,0.62140343022, - 0.705702457219,0.796988044797,0.895268939323,1.),.UNSPECIFIED.); -#2049 = CARTESIAN_POINT('',(-0.634583015768,0.712043057955)); -#2050 = CARTESIAN_POINT('',(-0.632763596739,0.711116385247)); -#2051 = CARTESIAN_POINT('',(-0.628833777801,0.709114836455)); -#2052 = CARTESIAN_POINT('',(-0.622137746434,0.706672141027)); -#2053 = CARTESIAN_POINT('',(-0.614361845903,0.704306160208)); -#2054 = CARTESIAN_POINT('',(-0.607108129224,0.702564672063)); -#2055 = CARTESIAN_POINT('',(-0.600598815029,0.701256921684)); -#2056 = CARTESIAN_POINT('',(-0.594978001803,0.700468525668)); -#2057 = CARTESIAN_POINT('',(-0.588767583757,0.69975509188)); -#2058 = CARTESIAN_POINT('',(-0.5819760159,0.699127923375)); -#2059 = CARTESIAN_POINT('',(-0.574597013261,0.698691917777)); -#2060 = CARTESIAN_POINT('',(-0.566622579517,0.698315170301)); -#2061 = CARTESIAN_POINT('',(-0.558045301859,0.698130660771)); -#2062 = CARTESIAN_POINT('',(-0.552127963409,0.698076799912)); -#2063 = CARTESIAN_POINT('',(-0.549075290321,0.698049013839)); -#2064 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2065 = PCURVE('',#2066,#2097); -#2066 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#2067,#2068) - ,(#2069,#2070) - ,(#2071,#2072) - ,(#2073,#2074) - ,(#2075,#2076) - ,(#2077,#2078) - ,(#2079,#2080) - ,(#2081,#2082) - ,(#2083,#2084) - ,(#2085,#2086) - ,(#2087,#2088) - ,(#2089,#2090) - ,(#2091,#2092) - ,(#2093,#2094) - ,(#2095,#2096 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(2,2),( - 0.E+000,6.999263450657E-002,0.151179237049,0.244049347772, - 0.348788670798,0.406942105318,0.471758334761,0.54342234969, - 0.62140343022,0.705702457219,0.796988044797,0.895268939323,1.),( - 0.E+000,1.),.UNSPECIFIED.); -#2067 = CARTESIAN_POINT('',(-8.795694204477E-002,0.234583015768,0.302)); -#2068 = CARTESIAN_POINT('',(-8.795694204477E-002,0.234583015768,0.3)); -#2069 = CARTESIAN_POINT('',(-8.888361475323E-002,0.232763596739,0.302)); -#2070 = CARTESIAN_POINT('',(-8.888361475323E-002,0.232763596739,0.3)); -#2071 = CARTESIAN_POINT('',(-9.088516354541E-002,0.228833777801,0.302)); -#2072 = CARTESIAN_POINT('',(-9.088516354541E-002,0.228833777801,0.3)); -#2073 = CARTESIAN_POINT('',(-9.332785897335E-002,0.222137746434,0.302)); -#2074 = CARTESIAN_POINT('',(-9.332785897335E-002,0.222137746434,0.3)); -#2075 = CARTESIAN_POINT('',(-9.569383979249E-002,0.214361845903,0.302)); -#2076 = CARTESIAN_POINT('',(-9.569383979249E-002,0.214361845903,0.3)); -#2077 = CARTESIAN_POINT('',(-9.74353279371E-002,0.207108129224,0.302)); -#2078 = CARTESIAN_POINT('',(-9.74353279371E-002,0.207108129224,0.3)); -#2079 = CARTESIAN_POINT('',(-9.874307831626E-002,0.200598815029,0.302)); -#2080 = CARTESIAN_POINT('',(-9.874307831626E-002,0.200598815029,0.3)); -#2081 = CARTESIAN_POINT('',(-9.953147433189E-002,0.194978001803,0.302)); -#2082 = CARTESIAN_POINT('',(-9.953147433189E-002,0.194978001803,0.3)); -#2083 = CARTESIAN_POINT('',(-0.10024490812,0.188767583757,0.302)); -#2084 = CARTESIAN_POINT('',(-0.10024490812,0.188767583757,0.3)); -#2085 = CARTESIAN_POINT('',(-0.100872076625,0.1819760159,0.302)); -#2086 = CARTESIAN_POINT('',(-0.100872076625,0.1819760159,0.3)); -#2087 = CARTESIAN_POINT('',(-0.101308082223,0.174597013261,0.302)); -#2088 = CARTESIAN_POINT('',(-0.101308082223,0.174597013261,0.3)); -#2089 = CARTESIAN_POINT('',(-0.101684829699,0.166622579517,0.302)); -#2090 = CARTESIAN_POINT('',(-0.101684829699,0.166622579517,0.3)); -#2091 = CARTESIAN_POINT('',(-0.101869339229,0.158045301859,0.302)); -#2092 = CARTESIAN_POINT('',(-0.101869339229,0.158045301859,0.3)); -#2093 = CARTESIAN_POINT('',(-0.101923200088,0.152127963409,0.302)); -#2094 = CARTESIAN_POINT('',(-0.101923200088,0.152127963409,0.3)); -#2095 = CARTESIAN_POINT('',(-0.101950986161,0.149075290321,0.302)); -#2096 = CARTESIAN_POINT('',(-0.101950986161,0.149075290321,0.3)); -#2097 = DEFINITIONAL_REPRESENTATION('',(#2098),#2102); -#2098 = LINE('',#2099,#2100); -#2099 = CARTESIAN_POINT('',(0.E+000,1.)); -#2100 = VECTOR('',#2101,1.); -#2101 = DIRECTION('',(1.,0.E+000)); -#2102 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2103 = ORIENTED_EDGE('',*,*,#2104,.T.); -#2104 = EDGE_CURVE('',#2027,#2105,#2107,.T.); -#2105 = VERTEX_POINT('',#2106); -#2106 = CARTESIAN_POINT('',(-7.077307904887E-002,0.182928529397,0.3)); -#2107 = SURFACE_CURVE('',#2108,(#2120,#2135),.PCURVE_S1.); -#2108 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2109,#2110,#2111,#2112,#2113, - #2114,#2115,#2116,#2117,#2118,#2119),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.175283835451,0.332299704078,0.472554810512, - 0.598639509241,0.711841262423,0.814222371193,0.907964348435,1.), - .UNSPECIFIED.); -#2109 = CARTESIAN_POINT('',(-0.101950986161,0.149075290321,0.3)); -#2110 = CARTESIAN_POINT('',(-0.100981265585,0.151766974481,0.3)); -#2111 = CARTESIAN_POINT('',(-9.914288807753E-002,0.156869817235,0.3)); -#2112 = CARTESIAN_POINT('',(-9.588301419346E-002,0.163875713967,0.3)); -#2113 = CARTESIAN_POINT('',(-9.22244228133E-002,0.169757395329,0.3)); -#2114 = CARTESIAN_POINT('',(-8.826602994823E-002,0.174548849623,0.3)); -#2115 = CARTESIAN_POINT('',(-8.406865128987E-002,0.17825714053,0.3)); -#2116 = CARTESIAN_POINT('',(-7.977593951963E-002,0.180948913511,0.3)); -#2117 = CARTESIAN_POINT('',(-7.531736418141E-002,0.182628824989,0.3)); -#2118 = CARTESIAN_POINT('',(-7.227853711233E-002,0.182829241521,0.3)); -#2119 = CARTESIAN_POINT('',(-7.077307904887E-002,0.182928529397,0.3)); -#2120 = PCURVE('',#48,#2121); -#2121 = DEFINITIONAL_REPRESENTATION('',(#2122),#2134); -#2122 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2123,#2124,#2125,#2126,#2127, - #2128,#2129,#2130,#2131,#2132,#2133),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.175283835451,0.332299704078,0.472554810512, - 0.598639509241,0.711841262423,0.814222371193,0.907964348435,1.), - .UNSPECIFIED.); -#2123 = CARTESIAN_POINT('',(-0.549075290321,0.698049013839)); -#2124 = CARTESIAN_POINT('',(-0.551766974481,0.699018734415)); -#2125 = CARTESIAN_POINT('',(-0.556869817235,0.700857111922)); -#2126 = CARTESIAN_POINT('',(-0.563875713967,0.704116985807)); -#2127 = CARTESIAN_POINT('',(-0.569757395329,0.707775577187)); -#2128 = CARTESIAN_POINT('',(-0.574548849623,0.711733970052)); -#2129 = CARTESIAN_POINT('',(-0.57825714053,0.71593134871)); -#2130 = CARTESIAN_POINT('',(-0.580948913511,0.72022406048)); -#2131 = CARTESIAN_POINT('',(-0.582628824989,0.724682635819)); -#2132 = CARTESIAN_POINT('',(-0.582829241521,0.727721462888)); -#2133 = CARTESIAN_POINT('',(-0.582928529397,0.729226920951)); -#2134 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2135 = PCURVE('',#2136,#2159); -#2136 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#2137,#2138) - ,(#2139,#2140) - ,(#2141,#2142) - ,(#2143,#2144) - ,(#2145,#2146) - ,(#2147,#2148) - ,(#2149,#2150) - ,(#2151,#2152) - ,(#2153,#2154) - ,(#2155,#2156) - ,(#2157,#2158 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,4),(2,2),(0.E+000, - 0.175283835451,0.332299704078,0.472554810512,0.598639509241, - 0.711841262423,0.814222371193,0.907964348435,1.),(0.E+000,1.), - .UNSPECIFIED.); -#2137 = CARTESIAN_POINT('',(-0.101950986161,0.149075290321,0.302)); -#2138 = CARTESIAN_POINT('',(-0.101950986161,0.149075290321,0.3)); -#2139 = CARTESIAN_POINT('',(-0.100981265585,0.151766974481,0.302)); -#2140 = CARTESIAN_POINT('',(-0.100981265585,0.151766974481,0.3)); -#2141 = CARTESIAN_POINT('',(-9.914288807753E-002,0.156869817235,0.302)); -#2142 = CARTESIAN_POINT('',(-9.914288807753E-002,0.156869817235,0.3)); -#2143 = CARTESIAN_POINT('',(-9.588301419346E-002,0.163875713967,0.302)); -#2144 = CARTESIAN_POINT('',(-9.588301419346E-002,0.163875713967,0.3)); -#2145 = CARTESIAN_POINT('',(-9.22244228133E-002,0.169757395329,0.302)); -#2146 = CARTESIAN_POINT('',(-9.22244228133E-002,0.169757395329,0.3)); -#2147 = CARTESIAN_POINT('',(-8.826602994823E-002,0.174548849623,0.302)); -#2148 = CARTESIAN_POINT('',(-8.826602994823E-002,0.174548849623,0.3)); -#2149 = CARTESIAN_POINT('',(-8.406865128987E-002,0.17825714053,0.302)); -#2150 = CARTESIAN_POINT('',(-8.406865128987E-002,0.17825714053,0.3)); -#2151 = CARTESIAN_POINT('',(-7.977593951963E-002,0.180948913511,0.302)); -#2152 = CARTESIAN_POINT('',(-7.977593951963E-002,0.180948913511,0.3)); -#2153 = CARTESIAN_POINT('',(-7.531736418141E-002,0.182628824989,0.302)); -#2154 = CARTESIAN_POINT('',(-7.531736418141E-002,0.182628824989,0.3)); -#2155 = CARTESIAN_POINT('',(-7.227853711233E-002,0.182829241521,0.302)); -#2156 = CARTESIAN_POINT('',(-7.227853711233E-002,0.182829241521,0.3)); -#2157 = CARTESIAN_POINT('',(-7.077307904887E-002,0.182928529397,0.302)); -#2158 = CARTESIAN_POINT('',(-7.077307904887E-002,0.182928529397,0.3)); -#2159 = DEFINITIONAL_REPRESENTATION('',(#2160),#2164); -#2160 = LINE('',#2161,#2162); -#2161 = CARTESIAN_POINT('',(0.E+000,1.)); -#2162 = VECTOR('',#2163,1.); -#2163 = DIRECTION('',(1.,0.E+000)); -#2164 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2165 = ORIENTED_EDGE('',*,*,#2166,.T.); -#2166 = EDGE_CURVE('',#2105,#2167,#2169,.T.); -#2167 = VERTEX_POINT('',#2168); -#2168 = CARTESIAN_POINT('',(-3.280394464476E-002,9.958164899777E-002,0.3 - )); -#2169 = SURFACE_CURVE('',#2170,(#2190,#2213),.PCURVE_S1.); -#2170 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2171,#2172,#2173,#2174,#2175, - #2176,#2177,#2178,#2179,#2180,#2181,#2182,#2183,#2184,#2185,#2186, - #2187,#2188,#2189),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,3.910024550704E-002,7.852987763084E-002, - 0.118928225578,0.162015044301,0.208996859298,0.25998844003, - 0.31644188856,0.37843020031,0.444681646177,0.513469132587, - 0.585628807811,0.660965273436,0.739817703829,0.822305805272, - 0.909147543882,1.),.UNSPECIFIED.); -#2171 = CARTESIAN_POINT('',(-7.077307904887E-002,0.182928529397,0.3)); -#2172 = CARTESIAN_POINT('',(-6.94803309952E-002,0.18285716252,0.3)); -#2173 = CARTESIAN_POINT('',(-6.688394457495E-002,0.18271382756,0.3)); -#2174 = CARTESIAN_POINT('',(-6.307157847479E-002,0.181604615714,0.3)); -#2175 = CARTESIAN_POINT('',(-5.948510645375E-002,0.179664997778,0.3)); -#2176 = CARTESIAN_POINT('',(-5.597967444796E-002,0.177128289029,0.3)); -#2177 = CARTESIAN_POINT('',(-5.271880050748E-002,0.173775202627,0.3)); -#2178 = CARTESIAN_POINT('',(-4.954265377184E-002,0.169772586474,0.3)); -#2179 = CARTESIAN_POINT('',(-4.658699436977E-002,0.165005793496,0.3)); -#2180 = CARTESIAN_POINT('',(-4.379752068548E-002,0.159574745355,0.3)); -#2181 = CARTESIAN_POINT('',(-4.118311321929E-002,0.153607508054,0.3)); -#2182 = CARTESIAN_POINT('',(-3.891957625667E-002,0.1471403943,0.3)); -#2183 = CARTESIAN_POINT('',(-3.702594451799E-002,0.140244693784,0.3)); -#2184 = CARTESIAN_POINT('',(-3.550503685029E-002,0.132919318513,0.3)); -#2185 = CARTESIAN_POINT('',(-3.425880330968E-002,0.125196618046,0.3)); -#2186 = CARTESIAN_POINT('',(-3.339929777312E-002,0.117038907652,0.3)); -#2187 = CARTESIAN_POINT('',(-3.287637911946E-002,0.108454970433,0.3)); -#2188 = CARTESIAN_POINT('',(-3.282845007022E-002,0.102583596867,0.3)); -#2189 = CARTESIAN_POINT('',(-3.280394464476E-002,9.958164899777E-002,0.3 - )); -#2190 = PCURVE('',#48,#2191); -#2191 = DEFINITIONAL_REPRESENTATION('',(#2192),#2212); -#2192 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2193,#2194,#2195,#2196,#2197, - #2198,#2199,#2200,#2201,#2202,#2203,#2204,#2205,#2206,#2207,#2208, - #2209,#2210,#2211),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,3.910024550704E-002,7.852987763084E-002, - 0.118928225578,0.162015044301,0.208996859298,0.25998844003, - 0.31644188856,0.37843020031,0.444681646177,0.513469132587, - 0.585628807811,0.660965273436,0.739817703829,0.822305805272, - 0.909147543882,1.),.UNSPECIFIED.); -#2193 = CARTESIAN_POINT('',(-0.582928529397,0.729226920951)); -#2194 = CARTESIAN_POINT('',(-0.58285716252,0.730519669005)); -#2195 = CARTESIAN_POINT('',(-0.58271382756,0.733116055425)); -#2196 = CARTESIAN_POINT('',(-0.581604615714,0.736928421525)); -#2197 = CARTESIAN_POINT('',(-0.579664997778,0.740514893546)); -#2198 = CARTESIAN_POINT('',(-0.577128289029,0.744020325552)); -#2199 = CARTESIAN_POINT('',(-0.573775202627,0.747281199493)); -#2200 = CARTESIAN_POINT('',(-0.569772586474,0.750457346228)); -#2201 = CARTESIAN_POINT('',(-0.565005793496,0.75341300563)); -#2202 = CARTESIAN_POINT('',(-0.559574745355,0.756202479315)); -#2203 = CARTESIAN_POINT('',(-0.553607508054,0.758816886781)); -#2204 = CARTESIAN_POINT('',(-0.5471403943,0.761080423743)); -#2205 = CARTESIAN_POINT('',(-0.540244693784,0.762974055482)); -#2206 = CARTESIAN_POINT('',(-0.532919318513,0.76449496315)); -#2207 = CARTESIAN_POINT('',(-0.525196618046,0.76574119669)); -#2208 = CARTESIAN_POINT('',(-0.517038907652,0.766600702227)); -#2209 = CARTESIAN_POINT('',(-0.508454970433,0.767123620881)); -#2210 = CARTESIAN_POINT('',(-0.502583596867,0.76717154993)); -#2211 = CARTESIAN_POINT('',(-0.499581648998,0.767196055355)); -#2212 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2213 = PCURVE('',#2214,#2253); -#2214 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#2215,#2216) - ,(#2217,#2218) - ,(#2219,#2220) - ,(#2221,#2222) - ,(#2223,#2224) - ,(#2225,#2226) - ,(#2227,#2228) - ,(#2229,#2230) - ,(#2231,#2232) - ,(#2233,#2234) - ,(#2235,#2236) - ,(#2237,#2238) - ,(#2239,#2240) - ,(#2241,#2242) - ,(#2243,#2244) - ,(#2245,#2246) - ,(#2247,#2248) - ,(#2249,#2250) - ,(#2251,#2252 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, - 2),(0.E+000,3.910024550704E-002,7.852987763084E-002,0.118928225578, - 0.162015044301,0.208996859298,0.25998844003,0.31644188856, - 0.37843020031,0.444681646177,0.513469132587,0.585628807811, - 0.660965273436,0.739817703829,0.822305805272,0.909147543882,1.),( - 0.E+000,1.),.UNSPECIFIED.); -#2215 = CARTESIAN_POINT('',(-7.077307904887E-002,0.182928529397,0.302)); -#2216 = CARTESIAN_POINT('',(-7.077307904887E-002,0.182928529397,0.3)); -#2217 = CARTESIAN_POINT('',(-6.94803309952E-002,0.18285716252,0.302)); -#2218 = CARTESIAN_POINT('',(-6.94803309952E-002,0.18285716252,0.3)); -#2219 = CARTESIAN_POINT('',(-6.688394457495E-002,0.18271382756,0.302)); -#2220 = CARTESIAN_POINT('',(-6.688394457495E-002,0.18271382756,0.3)); -#2221 = CARTESIAN_POINT('',(-6.307157847479E-002,0.181604615714,0.302)); -#2222 = CARTESIAN_POINT('',(-6.307157847479E-002,0.181604615714,0.3)); -#2223 = CARTESIAN_POINT('',(-5.948510645375E-002,0.179664997778,0.302)); -#2224 = CARTESIAN_POINT('',(-5.948510645375E-002,0.179664997778,0.3)); -#2225 = CARTESIAN_POINT('',(-5.597967444796E-002,0.177128289029,0.302)); -#2226 = CARTESIAN_POINT('',(-5.597967444796E-002,0.177128289029,0.3)); -#2227 = CARTESIAN_POINT('',(-5.271880050748E-002,0.173775202627,0.302)); -#2228 = CARTESIAN_POINT('',(-5.271880050748E-002,0.173775202627,0.3)); -#2229 = CARTESIAN_POINT('',(-4.954265377184E-002,0.169772586474,0.302)); -#2230 = CARTESIAN_POINT('',(-4.954265377184E-002,0.169772586474,0.3)); -#2231 = CARTESIAN_POINT('',(-4.658699436977E-002,0.165005793496,0.302)); -#2232 = CARTESIAN_POINT('',(-4.658699436977E-002,0.165005793496,0.3)); -#2233 = CARTESIAN_POINT('',(-4.379752068548E-002,0.159574745355,0.302)); -#2234 = CARTESIAN_POINT('',(-4.379752068548E-002,0.159574745355,0.3)); -#2235 = CARTESIAN_POINT('',(-4.118311321929E-002,0.153607508054,0.302)); -#2236 = CARTESIAN_POINT('',(-4.118311321929E-002,0.153607508054,0.3)); -#2237 = CARTESIAN_POINT('',(-3.891957625667E-002,0.1471403943,0.302)); -#2238 = CARTESIAN_POINT('',(-3.891957625667E-002,0.1471403943,0.3)); -#2239 = CARTESIAN_POINT('',(-3.702594451799E-002,0.140244693784,0.302)); -#2240 = CARTESIAN_POINT('',(-3.702594451799E-002,0.140244693784,0.3)); -#2241 = CARTESIAN_POINT('',(-3.550503685029E-002,0.132919318513,0.302)); -#2242 = CARTESIAN_POINT('',(-3.550503685029E-002,0.132919318513,0.3)); -#2243 = CARTESIAN_POINT('',(-3.425880330968E-002,0.125196618046,0.302)); -#2244 = CARTESIAN_POINT('',(-3.425880330968E-002,0.125196618046,0.3)); -#2245 = CARTESIAN_POINT('',(-3.339929777312E-002,0.117038907652,0.302)); -#2246 = CARTESIAN_POINT('',(-3.339929777312E-002,0.117038907652,0.3)); -#2247 = CARTESIAN_POINT('',(-3.287637911946E-002,0.108454970433,0.302)); -#2248 = CARTESIAN_POINT('',(-3.287637911946E-002,0.108454970433,0.3)); -#2249 = CARTESIAN_POINT('',(-3.282845007022E-002,0.102583596867,0.302)); -#2250 = CARTESIAN_POINT('',(-3.282845007022E-002,0.102583596867,0.3)); -#2251 = CARTESIAN_POINT('',(-3.280394464476E-002,9.958164899777E-002, - 0.302)); -#2252 = CARTESIAN_POINT('',(-3.280394464476E-002,9.958164899777E-002,0.3 - )); -#2253 = DEFINITIONAL_REPRESENTATION('',(#2254),#2258); -#2254 = LINE('',#2255,#2256); -#2255 = CARTESIAN_POINT('',(0.E+000,1.)); -#2256 = VECTOR('',#2257,1.); -#2257 = DIRECTION('',(1.,0.E+000)); -#2258 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2259 = ORIENTED_EDGE('',*,*,#2260,.T.); -#2260 = EDGE_CURVE('',#2167,#2261,#2263,.T.); -#2261 = VERTEX_POINT('',#2262); -#2262 = CARTESIAN_POINT('',(-7.33969623207E-002,1.170728373731E-002,0.3) - ); -#2263 = SURFACE_CURVE('',#2264,(#2280,#2299),.PCURVE_S1.); -#2264 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2265,#2266,#2267,#2268,#2269, - #2270,#2271,#2272,#2273,#2274,#2275,#2276,#2277,#2278,#2279), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 0.113221785558,0.222436171247,0.328940652496,0.432255130071, - 0.529309240576,0.617114144544,0.696232162944,0.767885488567, - 0.832331289029,0.89049783785,0.945727959046,1.),.UNSPECIFIED.); -#2265 = CARTESIAN_POINT('',(-3.280394464476E-002,9.958164899777E-002,0.3 - )); -#2266 = CARTESIAN_POINT('',(-3.285068247282E-002,9.561742574692E-002,0.3 - )); -#2267 = CARTESIAN_POINT('',(-3.294250387868E-002,8.7829289943E-002,0.3) - ); -#2268 = CARTESIAN_POINT('',(-3.403991993243E-002,7.635791051934E-002,0.3 - )); -#2269 = CARTESIAN_POINT('',(-3.563885897094E-002,6.530119069559E-002,0.3 - )); -#2270 = CARTESIAN_POINT('',(-3.79324977146E-002,5.47980996706E-002,0.3) - ); -#2271 = CARTESIAN_POINT('',(-4.075645693448E-002,4.510629695093E-002,0.3 - )); -#2272 = CARTESIAN_POINT('',(-4.405403756395E-002,3.64614537813E-002,0.3) - ); -#2273 = CARTESIAN_POINT('',(-4.78912469162E-002,2.901693830372E-002,0.3) - ); -#2274 = CARTESIAN_POINT('',(-5.226403765844E-002,2.285668660356E-002,0.3 - )); -#2275 = CARTESIAN_POINT('',(-5.698235805124E-002,1.790570256346E-002,0.3 - )); -#2276 = CARTESIAN_POINT('',(-6.213476331485E-002,1.435456584981E-002,0.3 - )); -#2277 = CARTESIAN_POINT('',(-6.76423631163E-002,1.207195031537E-002,0.3) - ); -#2278 = CARTESIAN_POINT('',(-7.148998406786E-002,1.182812816265E-002,0.3 - )); -#2279 = CARTESIAN_POINT('',(-7.33969623207E-002,1.170728373731E-002,0.3) - ); -#2280 = PCURVE('',#48,#2281); -#2281 = DEFINITIONAL_REPRESENTATION('',(#2282),#2298); -#2282 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2283,#2284,#2285,#2286,#2287, - #2288,#2289,#2290,#2291,#2292,#2293,#2294,#2295,#2296,#2297), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 0.113221785558,0.222436171247,0.328940652496,0.432255130071, - 0.529309240576,0.617114144544,0.696232162944,0.767885488567, - 0.832331289029,0.89049783785,0.945727959046,1.),.UNSPECIFIED.); -#2283 = CARTESIAN_POINT('',(-0.499581648998,0.767196055355)); -#2284 = CARTESIAN_POINT('',(-0.495617425747,0.767149317527)); -#2285 = CARTESIAN_POINT('',(-0.487829289943,0.767057496121)); -#2286 = CARTESIAN_POINT('',(-0.476357910519,0.765960080068)); -#2287 = CARTESIAN_POINT('',(-0.465301190696,0.764361141029)); -#2288 = CARTESIAN_POINT('',(-0.454798099671,0.762067502285)); -#2289 = CARTESIAN_POINT('',(-0.445106296951,0.759243543066)); -#2290 = CARTESIAN_POINT('',(-0.436461453781,0.755945962436)); -#2291 = CARTESIAN_POINT('',(-0.429016938304,0.752108753084)); -#2292 = CARTESIAN_POINT('',(-0.422856686604,0.747735962342)); -#2293 = CARTESIAN_POINT('',(-0.417905702563,0.743017641949)); -#2294 = CARTESIAN_POINT('',(-0.41435456585,0.737865236685)); -#2295 = CARTESIAN_POINT('',(-0.412071950315,0.732357636884)); -#2296 = CARTESIAN_POINT('',(-0.411828128163,0.728510015932)); -#2297 = CARTESIAN_POINT('',(-0.411707283737,0.726603037679)); -#2298 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2299 = PCURVE('',#2300,#2331); -#2300 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#2301,#2302) - ,(#2303,#2304) - ,(#2305,#2306) - ,(#2307,#2308) - ,(#2309,#2310) - ,(#2311,#2312) - ,(#2313,#2314) - ,(#2315,#2316) - ,(#2317,#2318) - ,(#2319,#2320) - ,(#2321,#2322) - ,(#2323,#2324) - ,(#2325,#2326) - ,(#2327,#2328) - ,(#2329,#2330 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(2,2),( - 0.E+000,0.113221785558,0.222436171247,0.328940652496,0.432255130071, - 0.529309240576,0.617114144544,0.696232162944,0.767885488567, - 0.832331289029,0.89049783785,0.945727959046,1.),(0.E+000,1.), - .UNSPECIFIED.); -#2301 = CARTESIAN_POINT('',(-3.280394464476E-002,9.958164899777E-002, - 0.302)); -#2302 = CARTESIAN_POINT('',(-3.280394464476E-002,9.958164899777E-002,0.3 - )); -#2303 = CARTESIAN_POINT('',(-3.285068247282E-002,9.561742574692E-002, - 0.302)); -#2304 = CARTESIAN_POINT('',(-3.285068247282E-002,9.561742574692E-002,0.3 - )); -#2305 = CARTESIAN_POINT('',(-3.294250387868E-002,8.7829289943E-002,0.302 - )); -#2306 = CARTESIAN_POINT('',(-3.294250387868E-002,8.7829289943E-002,0.3) - ); -#2307 = CARTESIAN_POINT('',(-3.403991993243E-002,7.635791051934E-002, - 0.302)); -#2308 = CARTESIAN_POINT('',(-3.403991993243E-002,7.635791051934E-002,0.3 - )); -#2309 = CARTESIAN_POINT('',(-3.563885897094E-002,6.530119069559E-002, - 0.302)); -#2310 = CARTESIAN_POINT('',(-3.563885897094E-002,6.530119069559E-002,0.3 - )); -#2311 = CARTESIAN_POINT('',(-3.79324977146E-002,5.47980996706E-002,0.302 - )); -#2312 = CARTESIAN_POINT('',(-3.79324977146E-002,5.47980996706E-002,0.3) - ); -#2313 = CARTESIAN_POINT('',(-4.075645693448E-002,4.510629695093E-002, - 0.302)); -#2314 = CARTESIAN_POINT('',(-4.075645693448E-002,4.510629695093E-002,0.3 - )); -#2315 = CARTESIAN_POINT('',(-4.405403756395E-002,3.64614537813E-002, - 0.302)); -#2316 = CARTESIAN_POINT('',(-4.405403756395E-002,3.64614537813E-002,0.3) - ); -#2317 = CARTESIAN_POINT('',(-4.78912469162E-002,2.901693830372E-002, - 0.302)); -#2318 = CARTESIAN_POINT('',(-4.78912469162E-002,2.901693830372E-002,0.3) - ); -#2319 = CARTESIAN_POINT('',(-5.226403765844E-002,2.285668660356E-002, - 0.302)); -#2320 = CARTESIAN_POINT('',(-5.226403765844E-002,2.285668660356E-002,0.3 - )); -#2321 = CARTESIAN_POINT('',(-5.698235805124E-002,1.790570256346E-002, - 0.302)); -#2322 = CARTESIAN_POINT('',(-5.698235805124E-002,1.790570256346E-002,0.3 - )); -#2323 = CARTESIAN_POINT('',(-6.213476331485E-002,1.435456584981E-002, - 0.302)); -#2324 = CARTESIAN_POINT('',(-6.213476331485E-002,1.435456584981E-002,0.3 - )); -#2325 = CARTESIAN_POINT('',(-6.76423631163E-002,1.207195031537E-002, - 0.302)); -#2326 = CARTESIAN_POINT('',(-6.76423631163E-002,1.207195031537E-002,0.3) - ); -#2327 = CARTESIAN_POINT('',(-7.148998406786E-002,1.182812816265E-002, - 0.302)); -#2328 = CARTESIAN_POINT('',(-7.148998406786E-002,1.182812816265E-002,0.3 - )); -#2329 = CARTESIAN_POINT('',(-7.33969623207E-002,1.170728373731E-002, - 0.302)); -#2330 = CARTESIAN_POINT('',(-7.33969623207E-002,1.170728373731E-002,0.3) - ); -#2331 = DEFINITIONAL_REPRESENTATION('',(#2332),#2336); -#2332 = LINE('',#2333,#2334); -#2333 = CARTESIAN_POINT('',(0.E+000,1.)); -#2334 = VECTOR('',#2335,1.); -#2335 = DIRECTION('',(1.,0.E+000)); -#2336 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2337 = ORIENTED_EDGE('',*,*,#2338,.T.); -#2338 = EDGE_CURVE('',#2261,#2339,#2341,.T.); -#2339 = VERTEX_POINT('',#2340); -#2340 = CARTESIAN_POINT('',(-0.118414567475,0.13523559228,0.3)); -#2341 = SURFACE_CURVE('',#2342,(#2362,#2385),.PCURVE_S1.); -#2342 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2343,#2344,#2345,#2346,#2347, - #2348,#2349,#2350,#2351,#2352,#2353,#2354,#2355,#2356,#2357,#2358, - #2359,#2360,#2361),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,3.453861246837E-002,6.844561282317E-002, - 0.103088374418,0.139789540524,0.179459960852,0.222893209036, - 0.270937746377,0.323550473319,0.381968236977,0.447495048941, - 0.520046487774,0.600261744899,0.688395601747,0.784195893454, - 0.888150015606,1.),.UNSPECIFIED.); -#2343 = CARTESIAN_POINT('',(-7.33969623207E-002,1.170728373731E-002,0.3) - ); -#2344 = CARTESIAN_POINT('',(-7.503519306888E-002,1.179837087237E-002,0.3 - )); -#2345 = CARTESIAN_POINT('',(-7.828169602576E-002,1.197887942017E-002,0.3 - )); -#2346 = CARTESIAN_POINT('',(-8.301127451811E-002,1.337325584046E-002,0.3 - )); -#2347 = CARTESIAN_POINT('',(-8.744754199493E-002,1.570485771974E-002,0.3 - )); -#2348 = CARTESIAN_POINT('',(-9.164713313458E-002,1.89063949484E-002,0.3) - ); -#2349 = CARTESIAN_POINT('',(-9.564021982336E-002,2.296827736628E-002,0.3 - )); -#2350 = CARTESIAN_POINT('',(-9.933405102836E-002,2.798538248297E-002,0.3 - )); -#2351 = CARTESIAN_POINT('',(-0.102813411505,3.386929490553E-002,0.3)); -#2352 = CARTESIAN_POINT('',(-0.106076879017,4.067427145078E-002,0.3)); -#2353 = CARTESIAN_POINT('',(-0.109014183169,4.851860853335E-002,0.3)); -#2354 = CARTESIAN_POINT('',(-0.111553474109,5.74850114879E-002,0.3)); -#2355 = CARTESIAN_POINT('',(-0.113696339584,6.761074995223E-002,0.3)); -#2356 = CARTESIAN_POINT('',(-0.115402755346,7.890129237136E-002,0.3)); -#2357 = CARTESIAN_POINT('',(-0.116786851914,9.134346423712E-002,0.3)); -#2358 = CARTESIAN_POINT('',(-0.117740632709,0.104954001708,0.3)); -#2359 = CARTESIAN_POINT('',(-0.118292934223,0.119710594478,0.3)); -#2360 = CARTESIAN_POINT('',(-0.118373046011,0.129935885028,0.3)); -#2361 = CARTESIAN_POINT('',(-0.118414567475,0.13523559228,0.3)); -#2362 = PCURVE('',#48,#2363); -#2363 = DEFINITIONAL_REPRESENTATION('',(#2364),#2384); -#2364 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2365,#2366,#2367,#2368,#2369, - #2370,#2371,#2372,#2373,#2374,#2375,#2376,#2377,#2378,#2379,#2380, - #2381,#2382,#2383),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,3.453861246837E-002,6.844561282317E-002, - 0.103088374418,0.139789540524,0.179459960852,0.222893209036, - 0.270937746377,0.323550473319,0.381968236977,0.447495048941, - 0.520046487774,0.600261744899,0.688395601747,0.784195893454, - 0.888150015606,1.),.UNSPECIFIED.); -#2365 = CARTESIAN_POINT('',(-0.411707283737,0.726603037679)); -#2366 = CARTESIAN_POINT('',(-0.411798370872,0.724964806931)); -#2367 = CARTESIAN_POINT('',(-0.41197887942,0.721718303974)); -#2368 = CARTESIAN_POINT('',(-0.41337325584,0.716988725482)); -#2369 = CARTESIAN_POINT('',(-0.41570485772,0.712552458005)); -#2370 = CARTESIAN_POINT('',(-0.418906394948,0.708352866865)); -#2371 = CARTESIAN_POINT('',(-0.422968277366,0.704359780177)); -#2372 = CARTESIAN_POINT('',(-0.427985382483,0.700665948972)); -#2373 = CARTESIAN_POINT('',(-0.433869294906,0.697186588495)); -#2374 = CARTESIAN_POINT('',(-0.440674271451,0.693923120983)); -#2375 = CARTESIAN_POINT('',(-0.448518608533,0.690985816831)); -#2376 = CARTESIAN_POINT('',(-0.457485011488,0.688446525891)); -#2377 = CARTESIAN_POINT('',(-0.467610749952,0.686303660416)); -#2378 = CARTESIAN_POINT('',(-0.478901292371,0.684597244654)); -#2379 = CARTESIAN_POINT('',(-0.491343464237,0.683213148086)); -#2380 = CARTESIAN_POINT('',(-0.504954001708,0.682259367291)); -#2381 = CARTESIAN_POINT('',(-0.519710594478,0.681707065777)); -#2382 = CARTESIAN_POINT('',(-0.529935885028,0.681626953989)); -#2383 = CARTESIAN_POINT('',(-0.53523559228,0.681585432525)); -#2384 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2385 = PCURVE('',#2386,#2425); -#2386 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#2387,#2388) - ,(#2389,#2390) - ,(#2391,#2392) - ,(#2393,#2394) - ,(#2395,#2396) - ,(#2397,#2398) - ,(#2399,#2400) - ,(#2401,#2402) - ,(#2403,#2404) - ,(#2405,#2406) - ,(#2407,#2408) - ,(#2409,#2410) - ,(#2411,#2412) - ,(#2413,#2414) - ,(#2415,#2416) - ,(#2417,#2418) - ,(#2419,#2420) - ,(#2421,#2422) - ,(#2423,#2424 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, - 2),(0.E+000,3.453861246837E-002,6.844561282317E-002,0.103088374418, - 0.139789540524,0.179459960852,0.222893209036,0.270937746377, - 0.323550473319,0.381968236977,0.447495048941,0.520046487774, - 0.600261744899,0.688395601747,0.784195893454,0.888150015606,1.),( - 0.E+000,1.),.UNSPECIFIED.); -#2387 = CARTESIAN_POINT('',(-7.33969623207E-002,1.170728373731E-002, - 0.302)); -#2388 = CARTESIAN_POINT('',(-7.33969623207E-002,1.170728373731E-002,0.3) - ); -#2389 = CARTESIAN_POINT('',(-7.503519306888E-002,1.179837087237E-002, - 0.302)); -#2390 = CARTESIAN_POINT('',(-7.503519306888E-002,1.179837087237E-002,0.3 - )); -#2391 = CARTESIAN_POINT('',(-7.828169602576E-002,1.197887942017E-002, - 0.302)); -#2392 = CARTESIAN_POINT('',(-7.828169602576E-002,1.197887942017E-002,0.3 - )); -#2393 = CARTESIAN_POINT('',(-8.301127451811E-002,1.337325584046E-002, - 0.302)); -#2394 = CARTESIAN_POINT('',(-8.301127451811E-002,1.337325584046E-002,0.3 - )); -#2395 = CARTESIAN_POINT('',(-8.744754199493E-002,1.570485771974E-002, - 0.302)); -#2396 = CARTESIAN_POINT('',(-8.744754199493E-002,1.570485771974E-002,0.3 - )); -#2397 = CARTESIAN_POINT('',(-9.164713313458E-002,1.89063949484E-002, - 0.302)); -#2398 = CARTESIAN_POINT('',(-9.164713313458E-002,1.89063949484E-002,0.3) - ); -#2399 = CARTESIAN_POINT('',(-9.564021982336E-002,2.296827736628E-002, - 0.302)); -#2400 = CARTESIAN_POINT('',(-9.564021982336E-002,2.296827736628E-002,0.3 - )); -#2401 = CARTESIAN_POINT('',(-9.933405102836E-002,2.798538248297E-002, - 0.302)); -#2402 = CARTESIAN_POINT('',(-9.933405102836E-002,2.798538248297E-002,0.3 - )); -#2403 = CARTESIAN_POINT('',(-0.102813411505,3.386929490553E-002,0.302)); -#2404 = CARTESIAN_POINT('',(-0.102813411505,3.386929490553E-002,0.3)); -#2405 = CARTESIAN_POINT('',(-0.106076879017,4.067427145078E-002,0.302)); -#2406 = CARTESIAN_POINT('',(-0.106076879017,4.067427145078E-002,0.3)); -#2407 = CARTESIAN_POINT('',(-0.109014183169,4.851860853335E-002,0.302)); -#2408 = CARTESIAN_POINT('',(-0.109014183169,4.851860853335E-002,0.3)); -#2409 = CARTESIAN_POINT('',(-0.111553474109,5.74850114879E-002,0.302)); -#2410 = CARTESIAN_POINT('',(-0.111553474109,5.74850114879E-002,0.3)); -#2411 = CARTESIAN_POINT('',(-0.113696339584,6.761074995223E-002,0.302)); -#2412 = CARTESIAN_POINT('',(-0.113696339584,6.761074995223E-002,0.3)); -#2413 = CARTESIAN_POINT('',(-0.115402755346,7.890129237136E-002,0.302)); -#2414 = CARTESIAN_POINT('',(-0.115402755346,7.890129237136E-002,0.3)); -#2415 = CARTESIAN_POINT('',(-0.116786851914,9.134346423712E-002,0.302)); -#2416 = CARTESIAN_POINT('',(-0.116786851914,9.134346423712E-002,0.3)); -#2417 = CARTESIAN_POINT('',(-0.117740632709,0.104954001708,0.302)); -#2418 = CARTESIAN_POINT('',(-0.117740632709,0.104954001708,0.3)); -#2419 = CARTESIAN_POINT('',(-0.118292934223,0.119710594478,0.302)); -#2420 = CARTESIAN_POINT('',(-0.118292934223,0.119710594478,0.3)); -#2421 = CARTESIAN_POINT('',(-0.118373046011,0.129935885028,0.302)); -#2422 = CARTESIAN_POINT('',(-0.118373046011,0.129935885028,0.3)); -#2423 = CARTESIAN_POINT('',(-0.118414567475,0.13523559228,0.302)); -#2424 = CARTESIAN_POINT('',(-0.118414567475,0.13523559228,0.3)); -#2425 = DEFINITIONAL_REPRESENTATION('',(#2426),#2430); -#2426 = LINE('',#2427,#2428); -#2427 = CARTESIAN_POINT('',(0.E+000,1.)); -#2428 = VECTOR('',#2429,1.); -#2429 = DIRECTION('',(1.,0.E+000)); -#2430 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2431 = ORIENTED_EDGE('',*,*,#2432,.T.); -#2432 = EDGE_CURVE('',#2339,#2433,#2435,.T.); -#2433 = VERTEX_POINT('',#2434); -#2434 = CARTESIAN_POINT('',(-0.104677766816,0.24266046035,0.3)); -#2435 = SURFACE_CURVE('',#2436,(#2448,#2463),.PCURVE_S1.); -#2436 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2437,#2438,#2439,#2440,#2441, - #2442,#2443,#2444,#2445,#2446,#2447),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.163989851333,0.316278722645,0.457451380616, - 0.587186603505,0.706146478246,0.814209291838,0.9121060393,1.), - .UNSPECIFIED.); -#2437 = CARTESIAN_POINT('',(-0.118414567475,0.13523559228,0.3)); -#2438 = CARTESIAN_POINT('',(-0.11838332671,0.141187250373,0.3)); -#2439 = CARTESIAN_POINT('',(-0.118323074267,0.152665904716,0.3)); -#2440 = CARTESIAN_POINT('',(-0.117632979738,0.169255859138,0.3)); -#2441 = CARTESIAN_POINT('',(-0.116586134114,0.184580864208,0.3)); -#2442 = CARTESIAN_POINT('',(-0.115100658621,0.198653552692,0.3)); -#2443 = CARTESIAN_POINT('',(-0.113255858169,0.211475596551,0.3)); -#2444 = CARTESIAN_POINT('',(-0.110868853378,0.223025395741,0.3)); -#2445 = CARTESIAN_POINT('',(-0.108207837657,0.233369508231,0.3)); -#2446 = CARTESIAN_POINT('',(-0.105811450735,0.239676666687,0.3)); -#2447 = CARTESIAN_POINT('',(-0.104677766816,0.24266046035,0.3)); -#2448 = PCURVE('',#48,#2449); -#2449 = DEFINITIONAL_REPRESENTATION('',(#2450),#2462); -#2450 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2451,#2452,#2453,#2454,#2455, - #2456,#2457,#2458,#2459,#2460,#2461),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.163989851333,0.316278722645,0.457451380616, - 0.587186603505,0.706146478246,0.814209291838,0.9121060393,1.), - .UNSPECIFIED.); -#2451 = CARTESIAN_POINT('',(-0.53523559228,0.681585432525)); -#2452 = CARTESIAN_POINT('',(-0.541187250373,0.68161667329)); -#2453 = CARTESIAN_POINT('',(-0.552665904716,0.681676925733)); -#2454 = CARTESIAN_POINT('',(-0.569255859138,0.682367020262)); -#2455 = CARTESIAN_POINT('',(-0.584580864208,0.683413865886)); -#2456 = CARTESIAN_POINT('',(-0.598653552692,0.684899341379)); -#2457 = CARTESIAN_POINT('',(-0.611475596551,0.686744141831)); -#2458 = CARTESIAN_POINT('',(-0.623025395741,0.689131146622)); -#2459 = CARTESIAN_POINT('',(-0.633369508231,0.691792162343)); -#2460 = CARTESIAN_POINT('',(-0.639676666687,0.694188549265)); -#2461 = CARTESIAN_POINT('',(-0.64266046035,0.695322233184)); -#2462 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2463 = PCURVE('',#2464,#2487); -#2464 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#2465,#2466) - ,(#2467,#2468) - ,(#2469,#2470) - ,(#2471,#2472) - ,(#2473,#2474) - ,(#2475,#2476) - ,(#2477,#2478) - ,(#2479,#2480) - ,(#2481,#2482) - ,(#2483,#2484) - ,(#2485,#2486 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,4),(2,2),(0.E+000, - 0.163989851333,0.316278722645,0.457451380616,0.587186603505, - 0.706146478246,0.814209291838,0.9121060393,1.),(0.E+000,1.), - .UNSPECIFIED.); -#2465 = CARTESIAN_POINT('',(-0.118414567475,0.13523559228,0.302)); -#2466 = CARTESIAN_POINT('',(-0.118414567475,0.13523559228,0.3)); -#2467 = CARTESIAN_POINT('',(-0.11838332671,0.141187250373,0.302)); -#2468 = CARTESIAN_POINT('',(-0.11838332671,0.141187250373,0.3)); -#2469 = CARTESIAN_POINT('',(-0.118323074267,0.152665904716,0.302)); -#2470 = CARTESIAN_POINT('',(-0.118323074267,0.152665904716,0.3)); -#2471 = CARTESIAN_POINT('',(-0.117632979738,0.169255859138,0.302)); -#2472 = CARTESIAN_POINT('',(-0.117632979738,0.169255859138,0.3)); -#2473 = CARTESIAN_POINT('',(-0.116586134114,0.184580864208,0.302)); -#2474 = CARTESIAN_POINT('',(-0.116586134114,0.184580864208,0.3)); -#2475 = CARTESIAN_POINT('',(-0.115100658621,0.198653552692,0.302)); -#2476 = CARTESIAN_POINT('',(-0.115100658621,0.198653552692,0.3)); -#2477 = CARTESIAN_POINT('',(-0.113255858169,0.211475596551,0.302)); -#2478 = CARTESIAN_POINT('',(-0.113255858169,0.211475596551,0.3)); -#2479 = CARTESIAN_POINT('',(-0.110868853378,0.223025395741,0.302)); -#2480 = CARTESIAN_POINT('',(-0.110868853378,0.223025395741,0.3)); -#2481 = CARTESIAN_POINT('',(-0.108207837657,0.233369508231,0.302)); -#2482 = CARTESIAN_POINT('',(-0.108207837657,0.233369508231,0.3)); -#2483 = CARTESIAN_POINT('',(-0.105811450735,0.239676666687,0.302)); -#2484 = CARTESIAN_POINT('',(-0.105811450735,0.239676666687,0.3)); -#2485 = CARTESIAN_POINT('',(-0.104677766816,0.24266046035,0.302)); -#2486 = CARTESIAN_POINT('',(-0.104677766816,0.24266046035,0.3)); -#2487 = DEFINITIONAL_REPRESENTATION('',(#2488),#2492); -#2488 = LINE('',#2489,#2490); -#2489 = CARTESIAN_POINT('',(0.E+000,1.)); -#2490 = VECTOR('',#2491,1.); -#2491 = DIRECTION('',(1.,0.E+000)); -#2492 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2493 = ORIENTED_EDGE('',*,*,#2494,.T.); -#2494 = EDGE_CURVE('',#2433,#1749,#2495,.T.); -#2495 = SURFACE_CURVE('',#2496,(#2508,#2523),.PCURVE_S1.); -#2496 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2497,#2498,#2499,#2500,#2501, - #2502,#2503,#2504,#2505,#2506,#2507),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.162869879318,0.309908072212,0.444611029049, - 0.566630874761,0.679290220773,0.787329317068,0.892674268692,1.), - .UNSPECIFIED.); -#2497 = CARTESIAN_POINT('',(-0.104677766816,0.24266046035,0.3)); -#2498 = CARTESIAN_POINT('',(-0.103670776854,0.244960208711,0.3)); -#2499 = CARTESIAN_POINT('',(-0.101754680893,0.249336159528,0.3)); -#2500 = CARTESIAN_POINT('',(-9.839592632308E-002,0.255320297364,0.3)); -#2501 = CARTESIAN_POINT('',(-9.478009908452E-002,0.260404284456,0.3)); -#2502 = CARTESIAN_POINT('',(-9.082335272275E-002,0.264520866709,0.3)); -#2503 = CARTESIAN_POINT('',(-8.666166759958E-002,0.267805334623,0.3)); -#2504 = CARTESIAN_POINT('',(-8.219684247592E-002,0.270172333349,0.3)); -#2505 = CARTESIAN_POINT('',(-7.740545369794E-002,0.271558280004,0.3)); -#2506 = CARTESIAN_POINT('',(-7.412592348181E-002,0.271740107823,0.3)); -#2507 = CARTESIAN_POINT('',(-7.247088587182E-002,0.27183186849,0.3)); -#2508 = PCURVE('',#48,#2509); -#2509 = DEFINITIONAL_REPRESENTATION('',(#2510),#2522); -#2510 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2511,#2512,#2513,#2514,#2515, - #2516,#2517,#2518,#2519,#2520,#2521),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.162869879318,0.309908072212,0.444611029049, - 0.566630874761,0.679290220773,0.787329317068,0.892674268692,1.), - .UNSPECIFIED.); -#2511 = CARTESIAN_POINT('',(-0.64266046035,0.695322233184)); -#2512 = CARTESIAN_POINT('',(-0.644960208711,0.696329223146)); -#2513 = CARTESIAN_POINT('',(-0.649336159528,0.698245319107)); -#2514 = CARTESIAN_POINT('',(-0.655320297364,0.701604073677)); -#2515 = CARTESIAN_POINT('',(-0.660404284456,0.705219900915)); -#2516 = CARTESIAN_POINT('',(-0.664520866709,0.709176647277)); -#2517 = CARTESIAN_POINT('',(-0.667805334623,0.7133383324)); -#2518 = CARTESIAN_POINT('',(-0.670172333349,0.717803157524)); -#2519 = CARTESIAN_POINT('',(-0.671558280004,0.722594546302)); -#2520 = CARTESIAN_POINT('',(-0.671740107823,0.725874076518)); -#2521 = CARTESIAN_POINT('',(-0.67183186849,0.727529114128)); -#2522 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2523 = PCURVE('',#2524,#2547); -#2524 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#2525,#2526) - ,(#2527,#2528) - ,(#2529,#2530) - ,(#2531,#2532) - ,(#2533,#2534) - ,(#2535,#2536) - ,(#2537,#2538) - ,(#2539,#2540) - ,(#2541,#2542) - ,(#2543,#2544) - ,(#2545,#2546 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,4),(2,2),(0.E+000, - 0.162869879318,0.309908072212,0.444611029049,0.566630874761, - 0.679290220773,0.787329317068,0.892674268692,1.),(0.E+000,1.), - .UNSPECIFIED.); -#2525 = CARTESIAN_POINT('',(-0.104677766816,0.24266046035,0.302)); -#2526 = CARTESIAN_POINT('',(-0.104677766816,0.24266046035,0.3)); -#2527 = CARTESIAN_POINT('',(-0.103670776854,0.244960208711,0.302)); -#2528 = CARTESIAN_POINT('',(-0.103670776854,0.244960208711,0.3)); -#2529 = CARTESIAN_POINT('',(-0.101754680893,0.249336159528,0.302)); -#2530 = CARTESIAN_POINT('',(-0.101754680893,0.249336159528,0.3)); -#2531 = CARTESIAN_POINT('',(-9.839592632308E-002,0.255320297364,0.302)); -#2532 = CARTESIAN_POINT('',(-9.839592632308E-002,0.255320297364,0.3)); -#2533 = CARTESIAN_POINT('',(-9.478009908452E-002,0.260404284456,0.302)); -#2534 = CARTESIAN_POINT('',(-9.478009908452E-002,0.260404284456,0.3)); -#2535 = CARTESIAN_POINT('',(-9.082335272275E-002,0.264520866709,0.302)); -#2536 = CARTESIAN_POINT('',(-9.082335272275E-002,0.264520866709,0.3)); -#2537 = CARTESIAN_POINT('',(-8.666166759958E-002,0.267805334623,0.302)); -#2538 = CARTESIAN_POINT('',(-8.666166759958E-002,0.267805334623,0.3)); -#2539 = CARTESIAN_POINT('',(-8.219684247592E-002,0.270172333349,0.302)); -#2540 = CARTESIAN_POINT('',(-8.219684247592E-002,0.270172333349,0.3)); -#2541 = CARTESIAN_POINT('',(-7.740545369794E-002,0.271558280004,0.302)); -#2542 = CARTESIAN_POINT('',(-7.740545369794E-002,0.271558280004,0.3)); -#2543 = CARTESIAN_POINT('',(-7.412592348181E-002,0.271740107823,0.302)); -#2544 = CARTESIAN_POINT('',(-7.412592348181E-002,0.271740107823,0.3)); -#2545 = CARTESIAN_POINT('',(-7.247088587182E-002,0.27183186849,0.302)); -#2546 = CARTESIAN_POINT('',(-7.247088587182E-002,0.27183186849,0.3)); -#2547 = DEFINITIONAL_REPRESENTATION('',(#2548),#2552); -#2548 = LINE('',#2549,#2550); -#2549 = CARTESIAN_POINT('',(0.E+000,1.)); -#2550 = VECTOR('',#2551,1.); -#2551 = DIRECTION('',(1.,0.E+000)); -#2552 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2553 = ADVANCED_FACE('',(#2554),#2568,.F.); -#2554 = FACE_BOUND('',#2555,.T.); -#2555 = EDGE_LOOP('',(#2556,#2591,#2618,#2645)); -#2556 = ORIENTED_EDGE('',*,*,#2557,.F.); -#2557 = EDGE_CURVE('',#2558,#2560,#2562,.T.); -#2558 = VERTEX_POINT('',#2559); -#2559 = CARTESIAN_POINT('',(-0.4,-0.4,0.285)); -#2560 = VERTEX_POINT('',#2561); -#2561 = CARTESIAN_POINT('',(-0.4,-0.4,1.5E-002)); -#2562 = SURFACE_CURVE('',#2563,(#2567,#2579),.PCURVE_S1.); -#2563 = LINE('',#2564,#2565); -#2564 = CARTESIAN_POINT('',(-0.4,-0.4,0.3)); -#2565 = VECTOR('',#2566,1.); -#2566 = DIRECTION('',(1.807003620809E-016,-2.22044604925E-016,-1.)); -#2567 = PCURVE('',#2568,#2573); -#2568 = PLANE('',#2569); -#2569 = AXIS2_PLACEMENT_3D('',#2570,#2571,#2572); -#2570 = CARTESIAN_POINT('',(-0.8,-0.4,0.3)); -#2571 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#2572 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#2573 = DEFINITIONAL_REPRESENTATION('',(#2574),#2578); -#2574 = LINE('',#2575,#2576); -#2575 = CARTESIAN_POINT('',(-0.4,5.551115123126E-017)); -#2576 = VECTOR('',#2577,1.); -#2577 = DIRECTION('',(-1.807003620809E-016,-1.)); -#2578 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2579 = PCURVE('',#2580,#2585); -#2580 = PLANE('',#2581); -#2581 = AXIS2_PLACEMENT_3D('',#2582,#2583,#2584); -#2582 = CARTESIAN_POINT('',(-0.8,-0.4,0.3)); -#2583 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#2584 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#2585 = DEFINITIONAL_REPRESENTATION('',(#2586),#2590); -#2586 = LINE('',#2587,#2588); -#2587 = CARTESIAN_POINT('',(-0.4,5.551115123126E-017)); -#2588 = VECTOR('',#2589,1.); -#2589 = DIRECTION('',(-1.807003620809E-016,-1.)); -#2590 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2591 = ORIENTED_EDGE('',*,*,#2592,.T.); -#2592 = EDGE_CURVE('',#2558,#2593,#2595,.T.); -#2593 = VERTEX_POINT('',#2594); -#2594 = CARTESIAN_POINT('',(-0.785,-0.4,0.285)); -#2595 = SURFACE_CURVE('',#2596,(#2600,#2607),.PCURVE_S1.); -#2596 = LINE('',#2597,#2598); -#2597 = CARTESIAN_POINT('',(-0.8,-0.4,0.285)); -#2598 = VECTOR('',#2599,1.); -#2599 = DIRECTION('',(-1.,0.E+000,-0.E+000)); -#2600 = PCURVE('',#2568,#2601); -#2601 = DEFINITIONAL_REPRESENTATION('',(#2602),#2606); -#2602 = LINE('',#2603,#2604); -#2603 = CARTESIAN_POINT('',(0.E+000,-1.5E-002)); -#2604 = VECTOR('',#2605,1.); -#2605 = DIRECTION('',(1.,0.E+000)); -#2606 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2607 = PCURVE('',#2608,#2613); -#2608 = CYLINDRICAL_SURFACE('',#2609,1.5E-002); -#2609 = AXIS2_PLACEMENT_3D('',#2610,#2611,#2612); -#2610 = CARTESIAN_POINT('',(-0.8,-0.385,0.285)); -#2611 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#2612 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#2613 = DEFINITIONAL_REPRESENTATION('',(#2614),#2617); -#2614 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2615,#2616),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.4,-1.5E-002),.PIECEWISE_BEZIER_KNOTS.); -#2615 = CARTESIAN_POINT('',(0.E+000,-0.4)); -#2616 = CARTESIAN_POINT('',(0.E+000,-1.5E-002)); -#2617 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2618 = ORIENTED_EDGE('',*,*,#2619,.T.); -#2619 = EDGE_CURVE('',#2593,#2620,#2622,.T.); -#2620 = VERTEX_POINT('',#2621); -#2621 = CARTESIAN_POINT('',(-0.785,-0.4,1.5E-002)); -#2622 = SURFACE_CURVE('',#2623,(#2627,#2634),.PCURVE_S1.); -#2623 = LINE('',#2624,#2625); -#2624 = CARTESIAN_POINT('',(-0.785,-0.4,0.3)); -#2625 = VECTOR('',#2626,1.); -#2626 = DIRECTION('',(0.E+000,-2.22044604925E-016,-1.)); -#2627 = PCURVE('',#2568,#2628); -#2628 = DEFINITIONAL_REPRESENTATION('',(#2629),#2633); -#2629 = LINE('',#2630,#2631); -#2630 = CARTESIAN_POINT('',(-1.5E-002,0.E+000)); -#2631 = VECTOR('',#2632,1.); -#2632 = DIRECTION('',(-0.E+000,-1.)); -#2633 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2634 = PCURVE('',#2635,#2640); -#2635 = CYLINDRICAL_SURFACE('',#2636,1.5E-002); -#2636 = AXIS2_PLACEMENT_3D('',#2637,#2638,#2639); -#2637 = CARTESIAN_POINT('',(-0.785,-0.385,0.3)); -#2638 = DIRECTION('',(0.E+000,-2.22044604925E-016,-1.)); -#2639 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#2640 = DEFINITIONAL_REPRESENTATION('',(#2641),#2644); -#2641 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2642,#2643),.UNSPECIFIED.,.F., - .F.,(2,2),(1.5E-002,0.285),.PIECEWISE_BEZIER_KNOTS.); -#2642 = CARTESIAN_POINT('',(3.14159265359,1.5E-002)); -#2643 = CARTESIAN_POINT('',(3.14159265359,0.285)); -#2644 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2645 = ORIENTED_EDGE('',*,*,#2646,.T.); -#2646 = EDGE_CURVE('',#2620,#2560,#2647,.T.); -#2647 = SURFACE_CURVE('',#2648,(#2652,#2659),.PCURVE_S1.); -#2648 = LINE('',#2649,#2650); -#2649 = CARTESIAN_POINT('',(-0.8,-0.4,1.5E-002)); -#2650 = VECTOR('',#2651,1.); -#2651 = DIRECTION('',(1.,0.E+000,0.E+000)); -#2652 = PCURVE('',#2568,#2653); -#2653 = DEFINITIONAL_REPRESENTATION('',(#2654),#2658); -#2654 = LINE('',#2655,#2656); -#2655 = CARTESIAN_POINT('',(-0.E+000,-0.285)); -#2656 = VECTOR('',#2657,1.); -#2657 = DIRECTION('',(-1.,0.E+000)); -#2658 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2659 = PCURVE('',#2660,#2665); -#2660 = CYLINDRICAL_SURFACE('',#2661,1.5E-002); -#2661 = AXIS2_PLACEMENT_3D('',#2662,#2663,#2664); -#2662 = CARTESIAN_POINT('',(-0.8,-0.385,1.5E-002)); -#2663 = DIRECTION('',(1.,0.E+000,0.E+000)); -#2664 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#2665 = DEFINITIONAL_REPRESENTATION('',(#2666),#2669); -#2666 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2667,#2668),.UNSPECIFIED.,.F., - .F.,(2,2),(1.5E-002,0.4),.PIECEWISE_BEZIER_KNOTS.); -#2667 = CARTESIAN_POINT('',(3.14159265359,1.5E-002)); -#2668 = CARTESIAN_POINT('',(3.14159265359,0.4)); -#2669 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2670 = ADVANCED_FACE('',(#2671),#2685,.F.); -#2671 = FACE_BOUND('',#2672,.T.); -#2672 = EDGE_LOOP('',(#2673,#2703,#2730,#2757)); -#2673 = ORIENTED_EDGE('',*,*,#2674,.F.); -#2674 = EDGE_CURVE('',#2675,#2677,#2679,.T.); -#2675 = VERTEX_POINT('',#2676); -#2676 = CARTESIAN_POINT('',(0.4,-0.4,1.5E-002)); -#2677 = VERTEX_POINT('',#2678); -#2678 = CARTESIAN_POINT('',(0.4,-0.4,0.285)); -#2679 = SURFACE_CURVE('',#2680,(#2684,#2696),.PCURVE_S1.); -#2680 = LINE('',#2681,#2682); -#2681 = CARTESIAN_POINT('',(0.4,-0.4,0.3)); -#2682 = VECTOR('',#2683,1.); -#2683 = DIRECTION('',(1.807003620809E-016,2.22044604925E-016,1.)); -#2684 = PCURVE('',#2685,#2690); -#2685 = PLANE('',#2686); -#2686 = AXIS2_PLACEMENT_3D('',#2687,#2688,#2689); -#2687 = CARTESIAN_POINT('',(-0.8,-0.4,0.3)); -#2688 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#2689 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#2690 = DEFINITIONAL_REPRESENTATION('',(#2691),#2695); -#2691 = LINE('',#2692,#2693); -#2692 = CARTESIAN_POINT('',(-1.2,-2.22044604925E-016)); -#2693 = VECTOR('',#2694,1.); -#2694 = DIRECTION('',(-1.807003620809E-016,1.)); -#2695 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2696 = PCURVE('',#2580,#2697); -#2697 = DEFINITIONAL_REPRESENTATION('',(#2698),#2702); -#2698 = LINE('',#2699,#2700); -#2699 = CARTESIAN_POINT('',(-1.2,-2.22044604925E-016)); -#2700 = VECTOR('',#2701,1.); -#2701 = DIRECTION('',(-1.807003620809E-016,1.)); -#2702 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2703 = ORIENTED_EDGE('',*,*,#2704,.T.); -#2704 = EDGE_CURVE('',#2675,#2705,#2707,.T.); -#2705 = VERTEX_POINT('',#2706); -#2706 = CARTESIAN_POINT('',(0.785,-0.4,1.5E-002)); -#2707 = SURFACE_CURVE('',#2708,(#2712,#2719),.PCURVE_S1.); -#2708 = LINE('',#2709,#2710); -#2709 = CARTESIAN_POINT('',(-0.8,-0.4,1.5E-002)); -#2710 = VECTOR('',#2711,1.); -#2711 = DIRECTION('',(1.,0.E+000,0.E+000)); -#2712 = PCURVE('',#2685,#2713); -#2713 = DEFINITIONAL_REPRESENTATION('',(#2714),#2718); -#2714 = LINE('',#2715,#2716); -#2715 = CARTESIAN_POINT('',(-0.E+000,-0.285)); -#2716 = VECTOR('',#2717,1.); -#2717 = DIRECTION('',(-1.,0.E+000)); -#2718 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2719 = PCURVE('',#2720,#2725); -#2720 = CYLINDRICAL_SURFACE('',#2721,1.5E-002); -#2721 = AXIS2_PLACEMENT_3D('',#2722,#2723,#2724); -#2722 = CARTESIAN_POINT('',(-0.8,-0.385,1.5E-002)); -#2723 = DIRECTION('',(1.,0.E+000,0.E+000)); -#2724 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#2725 = DEFINITIONAL_REPRESENTATION('',(#2726),#2729); -#2726 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2727,#2728),.UNSPECIFIED.,.F., - .F.,(2,2),(1.2,1.585),.PIECEWISE_BEZIER_KNOTS.); -#2727 = CARTESIAN_POINT('',(3.14159265359,1.2)); -#2728 = CARTESIAN_POINT('',(3.14159265359,1.585)); -#2729 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2730 = ORIENTED_EDGE('',*,*,#2731,.T.); -#2731 = EDGE_CURVE('',#2705,#2732,#2734,.T.); -#2732 = VERTEX_POINT('',#2733); -#2733 = CARTESIAN_POINT('',(0.785,-0.4,0.285)); -#2734 = SURFACE_CURVE('',#2735,(#2739,#2746),.PCURVE_S1.); -#2735 = LINE('',#2736,#2737); -#2736 = CARTESIAN_POINT('',(0.785,-0.4,0.3)); -#2737 = VECTOR('',#2738,1.); -#2738 = DIRECTION('',(0.E+000,2.22044604925E-016,1.)); -#2739 = PCURVE('',#2685,#2740); -#2740 = DEFINITIONAL_REPRESENTATION('',(#2741),#2745); -#2741 = LINE('',#2742,#2743); -#2742 = CARTESIAN_POINT('',(-1.585,0.E+000)); -#2743 = VECTOR('',#2744,1.); -#2744 = DIRECTION('',(0.E+000,1.)); -#2745 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2746 = PCURVE('',#2747,#2752); -#2747 = CYLINDRICAL_SURFACE('',#2748,1.5E-002); -#2748 = AXIS2_PLACEMENT_3D('',#2749,#2750,#2751); -#2749 = CARTESIAN_POINT('',(0.785,-0.385,0.3)); -#2750 = DIRECTION('',(0.E+000,-2.22044604925E-016,-1.)); -#2751 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#2752 = DEFINITIONAL_REPRESENTATION('',(#2753),#2756); -#2753 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2754,#2755),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.285,-1.5E-002),.PIECEWISE_BEZIER_KNOTS.); -#2754 = CARTESIAN_POINT('',(3.14159265359,0.285)); -#2755 = CARTESIAN_POINT('',(3.14159265359,1.5E-002)); -#2756 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2757 = ORIENTED_EDGE('',*,*,#2758,.T.); -#2758 = EDGE_CURVE('',#2732,#2677,#2759,.T.); -#2759 = SURFACE_CURVE('',#2760,(#2764,#2771),.PCURVE_S1.); -#2760 = LINE('',#2761,#2762); -#2761 = CARTESIAN_POINT('',(-0.8,-0.4,0.285)); -#2762 = VECTOR('',#2763,1.); -#2763 = DIRECTION('',(-1.,0.E+000,-0.E+000)); -#2764 = PCURVE('',#2685,#2765); -#2765 = DEFINITIONAL_REPRESENTATION('',(#2766),#2770); -#2766 = LINE('',#2767,#2768); -#2767 = CARTESIAN_POINT('',(0.E+000,-1.5E-002)); -#2768 = VECTOR('',#2769,1.); -#2769 = DIRECTION('',(1.,0.E+000)); -#2770 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2771 = PCURVE('',#2772,#2777); -#2772 = CYLINDRICAL_SURFACE('',#2773,1.5E-002); -#2773 = AXIS2_PLACEMENT_3D('',#2774,#2775,#2776); -#2774 = CARTESIAN_POINT('',(-0.8,-0.385,0.285)); -#2775 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#2776 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#2777 = DEFINITIONAL_REPRESENTATION('',(#2778),#2781); -#2778 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2779,#2780),.UNSPECIFIED.,.F., - .F.,(2,2),(-1.585,-1.2),.PIECEWISE_BEZIER_KNOTS.); -#2779 = CARTESIAN_POINT('',(0.E+000,-1.585)); -#2780 = CARTESIAN_POINT('',(0.E+000,-1.2)); -#2781 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2782 = ADVANCED_FACE('',(#2783),#1654,.T.); -#2783 = FACE_BOUND('',#2784,.T.); -#2784 = EDGE_LOOP('',(#2785,#2807,#2808,#2835)); -#2785 = ORIENTED_EDGE('',*,*,#2786,.T.); -#2786 = EDGE_CURVE('',#2787,#1637,#2789,.T.); -#2787 = VERTEX_POINT('',#2788); -#2788 = CARTESIAN_POINT('',(-0.785,-0.385,0.3)); -#2789 = SURFACE_CURVE('',#2790,(#2794,#2801),.PCURVE_S1.); -#2790 = LINE('',#2791,#2792); -#2791 = CARTESIAN_POINT('',(0.8,-0.385,0.3)); -#2792 = VECTOR('',#2793,1.); -#2793 = DIRECTION('',(1.,0.E+000,0.E+000)); -#2794 = PCURVE('',#1654,#2795); -#2795 = DEFINITIONAL_REPRESENTATION('',(#2796),#2800); -#2796 = LINE('',#2797,#2798); -#2797 = CARTESIAN_POINT('',(-1.5E-002,1.6)); -#2798 = VECTOR('',#2799,1.); -#2799 = DIRECTION('',(0.E+000,1.)); -#2800 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2801 = PCURVE('',#2608,#2802); -#2802 = DEFINITIONAL_REPRESENTATION('',(#2803),#2806); -#2803 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2804,#2805),.UNSPECIFIED.,.F., - .F.,(2,2),(-1.585,-1.2),.PIECEWISE_BEZIER_KNOTS.); -#2804 = CARTESIAN_POINT('',(1.570796326795,-1.5E-002)); -#2805 = CARTESIAN_POINT('',(1.570796326795,-0.4)); -#2806 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2807 = ORIENTED_EDGE('',*,*,#1636,.T.); -#2808 = ORIENTED_EDGE('',*,*,#2809,.T.); -#2809 = EDGE_CURVE('',#1639,#2810,#2812,.T.); -#2810 = VERTEX_POINT('',#2811); -#2811 = CARTESIAN_POINT('',(-0.785,0.385,0.3)); -#2812 = SURFACE_CURVE('',#2813,(#2817,#2824),.PCURVE_S1.); -#2813 = LINE('',#2814,#2815); -#2814 = CARTESIAN_POINT('',(-0.8,0.385,0.3)); -#2815 = VECTOR('',#2816,1.); -#2816 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#2817 = PCURVE('',#1654,#2818); -#2818 = DEFINITIONAL_REPRESENTATION('',(#2819),#2823); -#2819 = LINE('',#2820,#2821); -#2820 = CARTESIAN_POINT('',(-0.785,0.E+000)); -#2821 = VECTOR('',#2822,1.); -#2822 = DIRECTION('',(0.E+000,-1.)); -#2823 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2824 = PCURVE('',#2825,#2830); -#2825 = CYLINDRICAL_SURFACE('',#2826,1.5E-002); -#2826 = AXIS2_PLACEMENT_3D('',#2827,#2828,#2829); -#2827 = CARTESIAN_POINT('',(-0.8,0.385,0.285)); -#2828 = DIRECTION('',(1.,0.E+000,0.E+000)); -#2829 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#2830 = DEFINITIONAL_REPRESENTATION('',(#2831),#2834); -#2831 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2832,#2833),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.4,-1.5E-002),.PIECEWISE_BEZIER_KNOTS.); -#2832 = CARTESIAN_POINT('',(1.570796326795,0.4)); -#2833 = CARTESIAN_POINT('',(1.570796326795,1.5E-002)); -#2834 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2835 = ORIENTED_EDGE('',*,*,#2836,.T.); -#2836 = EDGE_CURVE('',#2810,#2787,#2837,.T.); -#2837 = SURFACE_CURVE('',#2838,(#2842,#2849),.PCURVE_S1.); -#2838 = LINE('',#2839,#2840); -#2839 = CARTESIAN_POINT('',(-0.785,-0.4,0.3)); -#2840 = VECTOR('',#2841,1.); -#2841 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#2842 = PCURVE('',#1654,#2843); -#2843 = DEFINITIONAL_REPRESENTATION('',(#2844),#2848); -#2844 = LINE('',#2845,#2846); -#2845 = CARTESIAN_POINT('',(0.E+000,1.5E-002)); -#2846 = VECTOR('',#2847,1.); -#2847 = DIRECTION('',(1.,0.E+000)); -#2848 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2849 = PCURVE('',#2850,#2855); -#2850 = CYLINDRICAL_SURFACE('',#2851,1.5E-002); -#2851 = AXIS2_PLACEMENT_3D('',#2852,#2853,#2854); -#2852 = CARTESIAN_POINT('',(-0.785,-0.4,0.285)); -#2853 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#2854 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#2855 = DEFINITIONAL_REPRESENTATION('',(#2856),#2859); -#2856 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2857,#2858),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.785,-1.5E-002),.PIECEWISE_BEZIER_KNOTS.); -#2857 = CARTESIAN_POINT('',(1.570796326795,0.785)); -#2858 = CARTESIAN_POINT('',(1.570796326795,1.5E-002)); -#2859 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2860 = ADVANCED_FACE('',(#2861),#1709,.T.); -#2861 = FACE_BOUND('',#2862,.T.); -#2862 = EDGE_LOOP('',(#2863,#2890,#2891,#2913)); -#2863 = ORIENTED_EDGE('',*,*,#2864,.T.); -#2864 = EDGE_CURVE('',#2865,#1694,#2867,.T.); -#2865 = VERTEX_POINT('',#2866); -#2866 = CARTESIAN_POINT('',(0.785,0.385,0.3)); -#2867 = SURFACE_CURVE('',#2868,(#2872,#2879),.PCURVE_S1.); -#2868 = LINE('',#2869,#2870); -#2869 = CARTESIAN_POINT('',(-0.8,0.385,0.3)); -#2870 = VECTOR('',#2871,1.); -#2871 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#2872 = PCURVE('',#1709,#2873); -#2873 = DEFINITIONAL_REPRESENTATION('',(#2874),#2878); -#2874 = LINE('',#2875,#2876); -#2875 = CARTESIAN_POINT('',(-0.785,0.E+000)); -#2876 = VECTOR('',#2877,1.); -#2877 = DIRECTION('',(0.E+000,-1.)); -#2878 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2879 = PCURVE('',#2880,#2885); -#2880 = CYLINDRICAL_SURFACE('',#2881,1.5E-002); -#2881 = AXIS2_PLACEMENT_3D('',#2882,#2883,#2884); -#2882 = CARTESIAN_POINT('',(-0.8,0.385,0.285)); -#2883 = DIRECTION('',(1.,0.E+000,0.E+000)); -#2884 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#2885 = DEFINITIONAL_REPRESENTATION('',(#2886),#2889); -#2886 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2887,#2888),.UNSPECIFIED.,.F., - .F.,(2,2),(-1.585,-1.2),.PIECEWISE_BEZIER_KNOTS.); -#2887 = CARTESIAN_POINT('',(1.570796326795,1.585)); -#2888 = CARTESIAN_POINT('',(1.570796326795,1.2)); -#2889 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2890 = ORIENTED_EDGE('',*,*,#1693,.T.); -#2891 = ORIENTED_EDGE('',*,*,#2892,.T.); -#2892 = EDGE_CURVE('',#1667,#2893,#2895,.T.); -#2893 = VERTEX_POINT('',#2894); -#2894 = CARTESIAN_POINT('',(0.785,-0.385,0.3)); -#2895 = SURFACE_CURVE('',#2896,(#2900,#2907),.PCURVE_S1.); -#2896 = LINE('',#2897,#2898); -#2897 = CARTESIAN_POINT('',(0.8,-0.385,0.3)); -#2898 = VECTOR('',#2899,1.); -#2899 = DIRECTION('',(1.,0.E+000,0.E+000)); -#2900 = PCURVE('',#1709,#2901); -#2901 = DEFINITIONAL_REPRESENTATION('',(#2902),#2906); -#2902 = LINE('',#2903,#2904); -#2903 = CARTESIAN_POINT('',(-1.5E-002,1.6)); -#2904 = VECTOR('',#2905,1.); -#2905 = DIRECTION('',(0.E+000,1.)); -#2906 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2907 = PCURVE('',#2772,#2908); -#2908 = DEFINITIONAL_REPRESENTATION('',(#2909),#2912); -#2909 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2910,#2911),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.4,-1.5E-002),.PIECEWISE_BEZIER_KNOTS.); -#2910 = CARTESIAN_POINT('',(1.570796326795,-1.2)); -#2911 = CARTESIAN_POINT('',(1.570796326795,-1.585)); -#2912 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2913 = ORIENTED_EDGE('',*,*,#2914,.T.); -#2914 = EDGE_CURVE('',#2893,#2865,#2915,.T.); -#2915 = SURFACE_CURVE('',#2916,(#2920,#2927),.PCURVE_S1.); -#2916 = LINE('',#2917,#2918); -#2917 = CARTESIAN_POINT('',(0.785,0.4,0.3)); -#2918 = VECTOR('',#2919,1.); -#2919 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#2920 = PCURVE('',#1709,#2921); -#2921 = DEFINITIONAL_REPRESENTATION('',(#2922),#2926); -#2922 = LINE('',#2923,#2924); -#2923 = CARTESIAN_POINT('',(-0.8,1.585)); -#2924 = VECTOR('',#2925,1.); -#2925 = DIRECTION('',(-1.,0.E+000)); -#2926 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2927 = PCURVE('',#2928,#2933); -#2928 = CYLINDRICAL_SURFACE('',#2929,1.5E-002); -#2929 = AXIS2_PLACEMENT_3D('',#2930,#2931,#2932); -#2930 = CARTESIAN_POINT('',(0.785,-0.4,0.285)); -#2931 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#2932 = DIRECTION('',(1.,0.E+000,0.E+000)); -#2933 = DEFINITIONAL_REPRESENTATION('',(#2934),#2937); -#2934 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2935,#2936),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.785,-1.5E-002),.PIECEWISE_BEZIER_KNOTS.); -#2935 = CARTESIAN_POINT('',(1.570796326795,-1.5E-002)); -#2936 = CARTESIAN_POINT('',(1.570796326795,-0.785)); -#2937 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2938 = ADVANCED_FACE('',(#2939),#2608,.T.); -#2939 = FACE_BOUND('',#2940,.T.); -#2940 = EDGE_LOOP('',(#2941,#2942,#2962,#2963)); -#2941 = ORIENTED_EDGE('',*,*,#2592,.F.); -#2942 = ORIENTED_EDGE('',*,*,#2943,.T.); -#2943 = EDGE_CURVE('',#2558,#1637,#2944,.T.); -#2944 = SURFACE_CURVE('',#2945,(#2950,#2956),.PCURVE_S1.); -#2945 = CIRCLE('',#2946,1.5E-002); -#2946 = AXIS2_PLACEMENT_3D('',#2947,#2948,#2949); -#2947 = CARTESIAN_POINT('',(-0.4,-0.385,0.285)); -#2948 = DIRECTION('',(-1.,-4.012354050807E-032,-1.807003620809E-016)); -#2949 = DIRECTION('',(-1.807003620809E-016,2.22044604925E-016,1.)); -#2950 = PCURVE('',#2608,#2951); -#2951 = DEFINITIONAL_REPRESENTATION('',(#2952),#2955); -#2952 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2953,#2954),.UNSPECIFIED.,.F., - .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); -#2953 = CARTESIAN_POINT('',(0.E+000,-0.4)); -#2954 = CARTESIAN_POINT('',(1.570796326795,-0.4)); -#2955 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2956 = PCURVE('',#1682,#2957); -#2957 = DEFINITIONAL_REPRESENTATION('',(#2958),#2961); -#2958 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2959,#2960),.UNSPECIFIED.,.F., - .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); -#2959 = CARTESIAN_POINT('',(0.E+000,-0.4)); -#2960 = CARTESIAN_POINT('',(1.570796326795,-0.4)); -#2961 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2962 = ORIENTED_EDGE('',*,*,#2786,.F.); -#2963 = ORIENTED_EDGE('',*,*,#2964,.F.); -#2964 = EDGE_CURVE('',#2593,#2787,#2965,.T.); -#2965 = SURFACE_CURVE('',#2966,(#2971,#2977),.PCURVE_S1.); -#2966 = CIRCLE('',#2967,1.5E-002); -#2967 = AXIS2_PLACEMENT_3D('',#2968,#2969,#2970); -#2968 = CARTESIAN_POINT('',(-0.785,-0.385,0.285)); -#2969 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#2970 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#2971 = PCURVE('',#2608,#2972); -#2972 = DEFINITIONAL_REPRESENTATION('',(#2973),#2976); -#2973 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2974,#2975),.UNSPECIFIED.,.F., - .F.,(2,2),(0.E+000,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); -#2974 = CARTESIAN_POINT('',(0.E+000,-1.5E-002)); -#2975 = CARTESIAN_POINT('',(1.570796326795,-1.5E-002)); -#2976 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2977 = PCURVE('',#2978,#2983); -#2978 = SPHERICAL_SURFACE('',#2979,1.5E-002); -#2979 = AXIS2_PLACEMENT_3D('',#2980,#2981,#2982); -#2980 = CARTESIAN_POINT('',(-0.785,-0.385,0.285)); -#2981 = DIRECTION('',(0.E+000,2.22044604925E-016,1.)); -#2982 = DIRECTION('',(1.,0.E+000,0.E+000)); -#2983 = DEFINITIONAL_REPRESENTATION('',(#2984),#2987); -#2984 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2985,#2986),.UNSPECIFIED.,.F., - .F.,(2,2),(0.E+000,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); -#2985 = CARTESIAN_POINT('',(4.712388980385,0.E+000)); -#2986 = CARTESIAN_POINT('',(4.712388980385,1.570796326795)); -#2987 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#2988 = ADVANCED_FACE('',(#2989),#2772,.T.); -#2989 = FACE_BOUND('',#2990,.T.); -#2990 = EDGE_LOOP('',(#2991,#2992,#3012,#3013)); -#2991 = ORIENTED_EDGE('',*,*,#2892,.F.); -#2992 = ORIENTED_EDGE('',*,*,#2993,.T.); -#2993 = EDGE_CURVE('',#1667,#2677,#2994,.T.); -#2994 = SURFACE_CURVE('',#2995,(#3000,#3006),.PCURVE_S1.); -#2995 = CIRCLE('',#2996,1.5E-002); -#2996 = AXIS2_PLACEMENT_3D('',#2997,#2998,#2999); -#2997 = CARTESIAN_POINT('',(0.4,-0.385,0.285)); -#2998 = DIRECTION('',(1.,-4.012354050807E-032,-1.807003620809E-016)); -#2999 = DIRECTION('',(-1.807003620809E-016,-2.22044604925E-016,-1.)); -#3000 = PCURVE('',#2772,#3001); -#3001 = DEFINITIONAL_REPRESENTATION('',(#3002),#3005); -#3002 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3003,#3004),.UNSPECIFIED.,.F., - .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); -#3003 = CARTESIAN_POINT('',(1.570796326795,-1.2)); -#3004 = CARTESIAN_POINT('',(0.E+000,-1.2)); -#3005 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3006 = PCURVE('',#1682,#3007); -#3007 = DEFINITIONAL_REPRESENTATION('',(#3008),#3011); -#3008 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3009,#3010),.UNSPECIFIED.,.F., - .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); -#3009 = CARTESIAN_POINT('',(1.570796326795,-1.2)); -#3010 = CARTESIAN_POINT('',(0.E+000,-1.2)); -#3011 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3012 = ORIENTED_EDGE('',*,*,#2758,.F.); -#3013 = ORIENTED_EDGE('',*,*,#3014,.T.); -#3014 = EDGE_CURVE('',#2732,#2893,#3015,.T.); -#3015 = SURFACE_CURVE('',#3016,(#3021,#3027),.PCURVE_S1.); -#3016 = CIRCLE('',#3017,1.5E-002); -#3017 = AXIS2_PLACEMENT_3D('',#3018,#3019,#3020); -#3018 = CARTESIAN_POINT('',(0.785,-0.385,0.285)); -#3019 = DIRECTION('',(-1.,0.E+000,-0.E+000)); -#3020 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#3021 = PCURVE('',#2772,#3022); -#3022 = DEFINITIONAL_REPRESENTATION('',(#3023),#3026); -#3023 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3024,#3025),.UNSPECIFIED.,.F., - .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); -#3024 = CARTESIAN_POINT('',(0.E+000,-1.585)); -#3025 = CARTESIAN_POINT('',(1.570796326795,-1.585)); -#3026 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3027 = PCURVE('',#3028,#3033); -#3028 = SPHERICAL_SURFACE('',#3029,1.5E-002); -#3029 = AXIS2_PLACEMENT_3D('',#3030,#3031,#3032); -#3030 = CARTESIAN_POINT('',(0.785,-0.385,0.285)); -#3031 = DIRECTION('',(0.E+000,2.22044604925E-016,1.)); -#3032 = DIRECTION('',(1.,0.E+000,0.E+000)); -#3033 = DEFINITIONAL_REPRESENTATION('',(#3034),#3037); -#3034 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3035,#3036),.UNSPECIFIED.,.F., - .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); -#3035 = CARTESIAN_POINT('',(4.712388980385,0.E+000)); -#3036 = CARTESIAN_POINT('',(4.712388980385,1.570796326795)); -#3037 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3038 = ADVANCED_FACE('',(#3039),#2660,.T.); -#3039 = FACE_BOUND('',#3040,.T.); -#3040 = EDGE_LOOP('',(#3041,#3070,#3095,#3096)); -#3041 = ORIENTED_EDGE('',*,*,#3042,.F.); -#3042 = EDGE_CURVE('',#3043,#3045,#3047,.T.); -#3043 = VERTEX_POINT('',#3044); -#3044 = CARTESIAN_POINT('',(-0.4,-0.385,8.548717289614E-017)); -#3045 = VERTEX_POINT('',#3046); -#3046 = CARTESIAN_POINT('',(-0.785,-0.385,8.548717289614E-017)); -#3047 = SURFACE_CURVE('',#3048,(#3052,#3058),.PCURVE_S1.); -#3048 = LINE('',#3049,#3050); -#3049 = CARTESIAN_POINT('',(-0.8,-0.385,8.548717289614E-017)); -#3050 = VECTOR('',#3051,1.); -#3051 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#3052 = PCURVE('',#2660,#3053); -#3053 = DEFINITIONAL_REPRESENTATION('',(#3054),#3057); -#3054 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3055,#3056),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.4,-1.5E-002),.PIECEWISE_BEZIER_KNOTS.); -#3055 = CARTESIAN_POINT('',(4.712388980385,0.4)); -#3056 = CARTESIAN_POINT('',(4.712388980385,1.5E-002)); -#3057 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3058 = PCURVE('',#3059,#3064); -#3059 = PLANE('',#3060); -#3060 = AXIS2_PLACEMENT_3D('',#3061,#3062,#3063); -#3061 = CARTESIAN_POINT('',(-0.8,-0.4,8.881784197001E-017)); -#3062 = DIRECTION('',(0.E+000,2.22044604925E-016,1.)); -#3063 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#3064 = DEFINITIONAL_REPRESENTATION('',(#3065),#3069); -#3065 = LINE('',#3066,#3067); -#3066 = CARTESIAN_POINT('',(-1.5E-002,0.E+000)); -#3067 = VECTOR('',#3068,1.); -#3068 = DIRECTION('',(0.E+000,-1.)); -#3069 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3070 = ORIENTED_EDGE('',*,*,#3071,.T.); -#3071 = EDGE_CURVE('',#3043,#2560,#3072,.T.); -#3072 = SURFACE_CURVE('',#3073,(#3078,#3084),.PCURVE_S1.); -#3073 = CIRCLE('',#3074,1.5E-002); -#3074 = AXIS2_PLACEMENT_3D('',#3075,#3076,#3077); -#3075 = CARTESIAN_POINT('',(-0.4,-0.385,1.5E-002)); -#3076 = DIRECTION('',(-1.,-4.012354050807E-032,-1.807003620809E-016)); -#3077 = DIRECTION('',(-1.807003620809E-016,2.22044604925E-016,1.)); -#3078 = PCURVE('',#2660,#3079); -#3079 = DEFINITIONAL_REPRESENTATION('',(#3080),#3083); -#3080 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3081,#3082),.UNSPECIFIED.,.F., - .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); -#3081 = CARTESIAN_POINT('',(4.712388980385,0.4)); -#3082 = CARTESIAN_POINT('',(3.14159265359,0.4)); -#3083 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3084 = PCURVE('',#3085,#3090); -#3085 = CYLINDRICAL_SURFACE('',#3086,1.5E-002); -#3086 = AXIS2_PLACEMENT_3D('',#3087,#3088,#3089); -#3087 = CARTESIAN_POINT('',(-0.8,-0.385,1.5E-002)); -#3088 = DIRECTION('',(1.,0.E+000,0.E+000)); -#3089 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#3090 = DEFINITIONAL_REPRESENTATION('',(#3091),#3094); -#3091 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3092,#3093),.UNSPECIFIED.,.F., - .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); -#3092 = CARTESIAN_POINT('',(4.712388980385,0.4)); -#3093 = CARTESIAN_POINT('',(3.14159265359,0.4)); -#3094 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3095 = ORIENTED_EDGE('',*,*,#2646,.F.); -#3096 = ORIENTED_EDGE('',*,*,#3097,.F.); -#3097 = EDGE_CURVE('',#3045,#2620,#3098,.T.); -#3098 = SURFACE_CURVE('',#3099,(#3104,#3110),.PCURVE_S1.); -#3099 = CIRCLE('',#3100,1.5E-002); -#3100 = AXIS2_PLACEMENT_3D('',#3101,#3102,#3103); -#3101 = CARTESIAN_POINT('',(-0.785,-0.385,1.5E-002)); -#3102 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#3103 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#3104 = PCURVE('',#2660,#3105); -#3105 = DEFINITIONAL_REPRESENTATION('',(#3106),#3109); -#3106 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3107,#3108),.UNSPECIFIED.,.F., - .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); -#3107 = CARTESIAN_POINT('',(4.712388980385,1.5E-002)); -#3108 = CARTESIAN_POINT('',(3.14159265359,1.5E-002)); -#3109 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3110 = PCURVE('',#3111,#3116); -#3111 = SPHERICAL_SURFACE('',#3112,1.5E-002); -#3112 = AXIS2_PLACEMENT_3D('',#3113,#3114,#3115); -#3113 = CARTESIAN_POINT('',(-0.785,-0.385,1.5E-002)); -#3114 = DIRECTION('',(0.E+000,2.22044604925E-016,1.)); -#3115 = DIRECTION('',(1.,0.E+000,0.E+000)); -#3116 = DEFINITIONAL_REPRESENTATION('',(#3117),#3120); -#3117 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3118,#3119),.UNSPECIFIED.,.F., - .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); -#3118 = CARTESIAN_POINT('',(4.712388980385,-1.570796326795)); -#3119 = CARTESIAN_POINT('',(4.712388980385,0.E+000)); -#3120 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3121 = ADVANCED_FACE('',(#3122),#2720,.T.); -#3122 = FACE_BOUND('',#3123,.T.); -#3123 = EDGE_LOOP('',(#3124,#3125,#3147,#3174)); -#3124 = ORIENTED_EDGE('',*,*,#2704,.F.); -#3125 = ORIENTED_EDGE('',*,*,#3126,.T.); -#3126 = EDGE_CURVE('',#2675,#3127,#3129,.T.); -#3127 = VERTEX_POINT('',#3128); -#3128 = CARTESIAN_POINT('',(0.4,-0.385,8.548717289614E-017)); -#3129 = SURFACE_CURVE('',#3130,(#3135,#3141),.PCURVE_S1.); -#3130 = CIRCLE('',#3131,1.5E-002); -#3131 = AXIS2_PLACEMENT_3D('',#3132,#3133,#3134); -#3132 = CARTESIAN_POINT('',(0.4,-0.385,1.5E-002)); -#3133 = DIRECTION('',(1.,-4.012354050807E-032,-1.807003620809E-016)); -#3134 = DIRECTION('',(-1.807003620809E-016,-2.22044604925E-016,-1.)); -#3135 = PCURVE('',#2720,#3136); -#3136 = DEFINITIONAL_REPRESENTATION('',(#3137),#3140); -#3137 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3138,#3139),.UNSPECIFIED.,.F., - .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); -#3138 = CARTESIAN_POINT('',(3.14159265359,1.2)); -#3139 = CARTESIAN_POINT('',(4.712388980385,1.2)); -#3140 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3141 = PCURVE('',#3085,#3142); -#3142 = DEFINITIONAL_REPRESENTATION('',(#3143),#3146); -#3143 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3144,#3145),.UNSPECIFIED.,.F., - .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); -#3144 = CARTESIAN_POINT('',(3.14159265359,1.2)); -#3145 = CARTESIAN_POINT('',(4.712388980385,1.2)); -#3146 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3147 = ORIENTED_EDGE('',*,*,#3148,.F.); -#3148 = EDGE_CURVE('',#3149,#3127,#3151,.T.); -#3149 = VERTEX_POINT('',#3150); -#3150 = CARTESIAN_POINT('',(0.785,-0.385,8.548717289614E-017)); -#3151 = SURFACE_CURVE('',#3152,(#3156,#3162),.PCURVE_S1.); -#3152 = LINE('',#3153,#3154); -#3153 = CARTESIAN_POINT('',(-0.8,-0.385,8.548717289614E-017)); -#3154 = VECTOR('',#3155,1.); -#3155 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#3156 = PCURVE('',#2720,#3157); -#3157 = DEFINITIONAL_REPRESENTATION('',(#3158),#3161); -#3158 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3159,#3160),.UNSPECIFIED.,.F., - .F.,(2,2),(-1.585,-1.2),.PIECEWISE_BEZIER_KNOTS.); -#3159 = CARTESIAN_POINT('',(4.712388980385,1.585)); -#3160 = CARTESIAN_POINT('',(4.712388980385,1.2)); -#3161 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3162 = PCURVE('',#3163,#3168); -#3163 = PLANE('',#3164); -#3164 = AXIS2_PLACEMENT_3D('',#3165,#3166,#3167); -#3165 = CARTESIAN_POINT('',(-0.8,-0.4,8.881784197001E-017)); -#3166 = DIRECTION('',(0.E+000,2.22044604925E-016,1.)); -#3167 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#3168 = DEFINITIONAL_REPRESENTATION('',(#3169),#3173); -#3169 = LINE('',#3170,#3171); -#3170 = CARTESIAN_POINT('',(-1.5E-002,0.E+000)); -#3171 = VECTOR('',#3172,1.); -#3172 = DIRECTION('',(0.E+000,-1.)); -#3173 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3174 = ORIENTED_EDGE('',*,*,#3175,.T.); -#3175 = EDGE_CURVE('',#3149,#2705,#3176,.T.); -#3176 = SURFACE_CURVE('',#3177,(#3182,#3188),.PCURVE_S1.); -#3177 = CIRCLE('',#3178,1.5E-002); -#3178 = AXIS2_PLACEMENT_3D('',#3179,#3180,#3181); -#3179 = CARTESIAN_POINT('',(0.785,-0.385,1.5E-002)); -#3180 = DIRECTION('',(-1.,0.E+000,-0.E+000)); -#3181 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#3182 = PCURVE('',#2720,#3183); -#3183 = DEFINITIONAL_REPRESENTATION('',(#3184),#3187); -#3184 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3185,#3186),.UNSPECIFIED.,.F., - .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); -#3185 = CARTESIAN_POINT('',(4.712388980385,1.585)); -#3186 = CARTESIAN_POINT('',(3.14159265359,1.585)); -#3187 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3188 = PCURVE('',#3189,#3194); -#3189 = SPHERICAL_SURFACE('',#3190,1.5E-002); -#3190 = AXIS2_PLACEMENT_3D('',#3191,#3192,#3193); -#3191 = CARTESIAN_POINT('',(0.785,-0.385,1.5E-002)); -#3192 = DIRECTION('',(0.E+000,2.22044604925E-016,1.)); -#3193 = DIRECTION('',(1.,0.E+000,0.E+000)); -#3194 = DEFINITIONAL_REPRESENTATION('',(#3195),#3198); -#3195 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3196,#3197),.UNSPECIFIED.,.F., - .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); -#3196 = CARTESIAN_POINT('',(4.712388980385,-1.570796326795)); -#3197 = CARTESIAN_POINT('',(4.712388980385,0.E+000)); -#3198 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3199 = ADVANCED_FACE('',(#3200),#3214,.T.); -#3200 = FACE_BOUND('',#3201,.T.); -#3201 = EDGE_LOOP('',(#3202,#3236,#3263,#3285)); -#3202 = ORIENTED_EDGE('',*,*,#3203,.F.); -#3203 = EDGE_CURVE('',#3204,#3206,#3208,.T.); -#3204 = VERTEX_POINT('',#3205); -#3205 = CARTESIAN_POINT('',(-0.4,0.4,1.5E-002)); -#3206 = VERTEX_POINT('',#3207); -#3207 = CARTESIAN_POINT('',(-0.785,0.4,1.5E-002)); -#3208 = SURFACE_CURVE('',#3209,(#3213,#3224),.PCURVE_S1.); -#3209 = LINE('',#3210,#3211); -#3210 = CARTESIAN_POINT('',(-0.8,0.4,1.5E-002)); -#3211 = VECTOR('',#3212,1.); -#3212 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#3213 = PCURVE('',#3214,#3219); -#3214 = CYLINDRICAL_SURFACE('',#3215,1.5E-002); -#3215 = AXIS2_PLACEMENT_3D('',#3216,#3217,#3218); -#3216 = CARTESIAN_POINT('',(-0.8,0.385,1.5E-002)); -#3217 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#3218 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#3219 = DEFINITIONAL_REPRESENTATION('',(#3220),#3223); -#3220 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3221,#3222),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.4,-1.5E-002),.PIECEWISE_BEZIER_KNOTS.); -#3221 = CARTESIAN_POINT('',(3.14159265359,-0.4)); -#3222 = CARTESIAN_POINT('',(3.14159265359,-1.5E-002)); -#3223 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3224 = PCURVE('',#3225,#3230); -#3225 = PLANE('',#3226); -#3226 = AXIS2_PLACEMENT_3D('',#3227,#3228,#3229); -#3227 = CARTESIAN_POINT('',(-0.8,0.4,0.3)); -#3228 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#3229 = DIRECTION('',(1.,0.E+000,0.E+000)); -#3230 = DEFINITIONAL_REPRESENTATION('',(#3231),#3235); -#3231 = LINE('',#3232,#3233); -#3232 = CARTESIAN_POINT('',(0.E+000,-0.285)); -#3233 = VECTOR('',#3234,1.); -#3234 = DIRECTION('',(-1.,0.E+000)); -#3235 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3236 = ORIENTED_EDGE('',*,*,#3237,.T.); -#3237 = EDGE_CURVE('',#3204,#3238,#3240,.T.); -#3238 = VERTEX_POINT('',#3239); -#3239 = CARTESIAN_POINT('',(-0.4,0.385,-8.548717289614E-017)); -#3240 = SURFACE_CURVE('',#3241,(#3246,#3252),.PCURVE_S1.); -#3241 = CIRCLE('',#3242,1.5E-002); -#3242 = AXIS2_PLACEMENT_3D('',#3243,#3244,#3245); -#3243 = CARTESIAN_POINT('',(-0.4,0.385,1.5E-002)); -#3244 = DIRECTION('',(-1.,-4.012354050807E-032,-1.807003620809E-016)); -#3245 = DIRECTION('',(-1.807003620809E-016,2.22044604925E-016,1.)); -#3246 = PCURVE('',#3214,#3247); -#3247 = DEFINITIONAL_REPRESENTATION('',(#3248),#3251); -#3248 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3249,#3250),.UNSPECIFIED.,.F., - .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); -#3249 = CARTESIAN_POINT('',(3.14159265359,-0.4)); -#3250 = CARTESIAN_POINT('',(4.712388980385,-0.4)); -#3251 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3252 = PCURVE('',#3253,#3258); -#3253 = CYLINDRICAL_SURFACE('',#3254,1.5E-002); -#3254 = AXIS2_PLACEMENT_3D('',#3255,#3256,#3257); -#3255 = CARTESIAN_POINT('',(-0.8,0.385,1.5E-002)); -#3256 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#3257 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#3258 = DEFINITIONAL_REPRESENTATION('',(#3259),#3262); -#3259 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3260,#3261),.UNSPECIFIED.,.F., - .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); -#3260 = CARTESIAN_POINT('',(3.14159265359,-0.4)); -#3261 = CARTESIAN_POINT('',(4.712388980385,-0.4)); -#3262 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3263 = ORIENTED_EDGE('',*,*,#3264,.F.); -#3264 = EDGE_CURVE('',#3265,#3238,#3267,.T.); -#3265 = VERTEX_POINT('',#3266); -#3266 = CARTESIAN_POINT('',(-0.785,0.385,-8.548717289614E-017)); -#3267 = SURFACE_CURVE('',#3268,(#3272,#3278),.PCURVE_S1.); -#3268 = LINE('',#3269,#3270); -#3269 = CARTESIAN_POINT('',(-0.8,0.385,-8.548717289614E-017)); -#3270 = VECTOR('',#3271,1.); -#3271 = DIRECTION('',(1.,0.E+000,0.E+000)); -#3272 = PCURVE('',#3214,#3273); -#3273 = DEFINITIONAL_REPRESENTATION('',(#3274),#3277); -#3274 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3275,#3276),.UNSPECIFIED.,.F., - .F.,(2,2),(1.5E-002,0.4),.PIECEWISE_BEZIER_KNOTS.); -#3275 = CARTESIAN_POINT('',(4.712388980385,-1.5E-002)); -#3276 = CARTESIAN_POINT('',(4.712388980385,-0.4)); -#3277 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3278 = PCURVE('',#3059,#3279); -#3279 = DEFINITIONAL_REPRESENTATION('',(#3280),#3284); -#3280 = LINE('',#3281,#3282); -#3281 = CARTESIAN_POINT('',(-0.785,0.E+000)); -#3282 = VECTOR('',#3283,1.); -#3283 = DIRECTION('',(0.E+000,1.)); -#3284 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3285 = ORIENTED_EDGE('',*,*,#3286,.F.); -#3286 = EDGE_CURVE('',#3206,#3265,#3287,.T.); -#3287 = SURFACE_CURVE('',#3288,(#3293,#3299),.PCURVE_S1.); -#3288 = CIRCLE('',#3289,1.5E-002); -#3289 = AXIS2_PLACEMENT_3D('',#3290,#3291,#3292); -#3290 = CARTESIAN_POINT('',(-0.785,0.385,1.5E-002)); -#3291 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#3292 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#3293 = PCURVE('',#3214,#3294); -#3294 = DEFINITIONAL_REPRESENTATION('',(#3295),#3298); -#3295 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3296,#3297),.UNSPECIFIED.,.F., - .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); -#3296 = CARTESIAN_POINT('',(3.14159265359,-1.5E-002)); -#3297 = CARTESIAN_POINT('',(4.712388980385,-1.5E-002)); -#3298 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3299 = PCURVE('',#3300,#3305); -#3300 = SPHERICAL_SURFACE('',#3301,1.5E-002); -#3301 = AXIS2_PLACEMENT_3D('',#3302,#3303,#3304); -#3302 = CARTESIAN_POINT('',(-0.785,0.385,1.5E-002)); -#3303 = DIRECTION('',(0.E+000,2.22044604925E-016,1.)); -#3304 = DIRECTION('',(1.,0.E+000,0.E+000)); -#3305 = DEFINITIONAL_REPRESENTATION('',(#3306),#3309); -#3306 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3307,#3308),.UNSPECIFIED.,.F., - .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); -#3307 = CARTESIAN_POINT('',(1.570796326795,0.E+000)); -#3308 = CARTESIAN_POINT('',(1.570796326795,-1.570796326795)); -#3309 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3310 = ADVANCED_FACE('',(#3311),#3325,.T.); -#3311 = FACE_BOUND('',#3312,.T.); -#3312 = EDGE_LOOP('',(#3313,#3342,#3364,#3391)); -#3313 = ORIENTED_EDGE('',*,*,#3314,.F.); -#3314 = EDGE_CURVE('',#3315,#3317,#3319,.T.); -#3315 = VERTEX_POINT('',#3316); -#3316 = CARTESIAN_POINT('',(0.4,0.385,-8.548717289614E-017)); -#3317 = VERTEX_POINT('',#3318); -#3318 = CARTESIAN_POINT('',(0.785,0.385,-8.548717289614E-017)); -#3319 = SURFACE_CURVE('',#3320,(#3324,#3335),.PCURVE_S1.); -#3320 = LINE('',#3321,#3322); -#3321 = CARTESIAN_POINT('',(-0.8,0.385,-8.548717289614E-017)); -#3322 = VECTOR('',#3323,1.); -#3323 = DIRECTION('',(1.,0.E+000,0.E+000)); -#3324 = PCURVE('',#3325,#3330); -#3325 = CYLINDRICAL_SURFACE('',#3326,1.5E-002); -#3326 = AXIS2_PLACEMENT_3D('',#3327,#3328,#3329); -#3327 = CARTESIAN_POINT('',(-0.8,0.385,1.5E-002)); -#3328 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#3329 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#3330 = DEFINITIONAL_REPRESENTATION('',(#3331),#3334); -#3331 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3332,#3333),.UNSPECIFIED.,.F., - .F.,(2,2),(1.2,1.585),.PIECEWISE_BEZIER_KNOTS.); -#3332 = CARTESIAN_POINT('',(4.712388980385,-1.2)); -#3333 = CARTESIAN_POINT('',(4.712388980385,-1.585)); -#3334 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3335 = PCURVE('',#3163,#3336); -#3336 = DEFINITIONAL_REPRESENTATION('',(#3337),#3341); -#3337 = LINE('',#3338,#3339); -#3338 = CARTESIAN_POINT('',(-0.785,0.E+000)); -#3339 = VECTOR('',#3340,1.); -#3340 = DIRECTION('',(0.E+000,1.)); -#3341 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3342 = ORIENTED_EDGE('',*,*,#3343,.T.); -#3343 = EDGE_CURVE('',#3315,#3344,#3346,.T.); -#3344 = VERTEX_POINT('',#3345); -#3345 = CARTESIAN_POINT('',(0.4,0.4,1.5E-002)); -#3346 = SURFACE_CURVE('',#3347,(#3352,#3358),.PCURVE_S1.); -#3347 = CIRCLE('',#3348,1.5E-002); -#3348 = AXIS2_PLACEMENT_3D('',#3349,#3350,#3351); -#3349 = CARTESIAN_POINT('',(0.4,0.385,1.5E-002)); -#3350 = DIRECTION('',(1.,-4.012354050807E-032,-1.807003620809E-016)); -#3351 = DIRECTION('',(-1.807003620809E-016,-2.22044604925E-016,-1.)); -#3352 = PCURVE('',#3325,#3353); -#3353 = DEFINITIONAL_REPRESENTATION('',(#3354),#3357); -#3354 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3355,#3356),.UNSPECIFIED.,.F., - .F.,(2,2),(0.E+000,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); -#3355 = CARTESIAN_POINT('',(4.712388980385,-1.2)); -#3356 = CARTESIAN_POINT('',(3.14159265359,-1.2)); -#3357 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3358 = PCURVE('',#3253,#3359); -#3359 = DEFINITIONAL_REPRESENTATION('',(#3360),#3363); -#3360 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3361,#3362),.UNSPECIFIED.,.F., - .F.,(2,2),(0.E+000,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); -#3361 = CARTESIAN_POINT('',(4.712388980385,-1.2)); -#3362 = CARTESIAN_POINT('',(3.14159265359,-1.2)); -#3363 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3364 = ORIENTED_EDGE('',*,*,#3365,.F.); -#3365 = EDGE_CURVE('',#3366,#3344,#3368,.T.); -#3366 = VERTEX_POINT('',#3367); -#3367 = CARTESIAN_POINT('',(0.785,0.4,1.5E-002)); -#3368 = SURFACE_CURVE('',#3369,(#3373,#3379),.PCURVE_S1.); -#3369 = LINE('',#3370,#3371); -#3370 = CARTESIAN_POINT('',(-0.8,0.4,1.5E-002)); -#3371 = VECTOR('',#3372,1.); -#3372 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#3373 = PCURVE('',#3325,#3374); -#3374 = DEFINITIONAL_REPRESENTATION('',(#3375),#3378); -#3375 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3376,#3377),.UNSPECIFIED.,.F., - .F.,(2,2),(-1.585,-1.2),.PIECEWISE_BEZIER_KNOTS.); -#3376 = CARTESIAN_POINT('',(3.14159265359,-1.585)); -#3377 = CARTESIAN_POINT('',(3.14159265359,-1.2)); -#3378 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3379 = PCURVE('',#3380,#3385); -#3380 = PLANE('',#3381); -#3381 = AXIS2_PLACEMENT_3D('',#3382,#3383,#3384); -#3382 = CARTESIAN_POINT('',(-0.8,0.4,0.3)); -#3383 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#3384 = DIRECTION('',(1.,0.E+000,0.E+000)); -#3385 = DEFINITIONAL_REPRESENTATION('',(#3386),#3390); -#3386 = LINE('',#3387,#3388); -#3387 = CARTESIAN_POINT('',(0.E+000,-0.285)); -#3388 = VECTOR('',#3389,1.); -#3389 = DIRECTION('',(-1.,0.E+000)); -#3390 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3391 = ORIENTED_EDGE('',*,*,#3392,.T.); -#3392 = EDGE_CURVE('',#3366,#3317,#3393,.T.); -#3393 = SURFACE_CURVE('',#3394,(#3399,#3405),.PCURVE_S1.); -#3394 = CIRCLE('',#3395,1.5E-002); -#3395 = AXIS2_PLACEMENT_3D('',#3396,#3397,#3398); -#3396 = CARTESIAN_POINT('',(0.785,0.385,1.5E-002)); -#3397 = DIRECTION('',(-1.,0.E+000,-0.E+000)); -#3398 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#3399 = PCURVE('',#3325,#3400); -#3400 = DEFINITIONAL_REPRESENTATION('',(#3401),#3404); -#3401 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3402,#3403),.UNSPECIFIED.,.F., - .F.,(2,2),(0.E+000,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); -#3402 = CARTESIAN_POINT('',(3.14159265359,-1.585)); -#3403 = CARTESIAN_POINT('',(4.712388980385,-1.585)); -#3404 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3405 = PCURVE('',#3406,#3411); -#3406 = SPHERICAL_SURFACE('',#3407,1.5E-002); -#3407 = AXIS2_PLACEMENT_3D('',#3408,#3409,#3410); -#3408 = CARTESIAN_POINT('',(0.785,0.385,1.5E-002)); -#3409 = DIRECTION('',(0.E+000,2.22044604925E-016,1.)); -#3410 = DIRECTION('',(1.,0.E+000,0.E+000)); -#3411 = DEFINITIONAL_REPRESENTATION('',(#3412),#3415); -#3412 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3413,#3414),.UNSPECIFIED.,.F., - .F.,(2,2),(0.E+000,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); -#3413 = CARTESIAN_POINT('',(1.570796326795,8.095376221225E-016)); -#3414 = CARTESIAN_POINT('',(1.570796326795,-1.570796326795)); -#3415 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3416 = ADVANCED_FACE('',(#3417),#3225,.F.); -#3417 = FACE_BOUND('',#3418,.T.); -#3418 = EDGE_LOOP('',(#3419,#3447,#3448,#3475)); -#3419 = ORIENTED_EDGE('',*,*,#3420,.F.); -#3420 = EDGE_CURVE('',#3204,#3421,#3423,.T.); -#3421 = VERTEX_POINT('',#3422); -#3422 = CARTESIAN_POINT('',(-0.4,0.4,0.285)); -#3423 = SURFACE_CURVE('',#3424,(#3428,#3435),.PCURVE_S1.); -#3424 = LINE('',#3425,#3426); -#3425 = CARTESIAN_POINT('',(-0.4,0.4,0.3)); -#3426 = VECTOR('',#3427,1.); -#3427 = DIRECTION('',(-1.807003620809E-016,2.22044604925E-016,1.)); -#3428 = PCURVE('',#3225,#3429); -#3429 = DEFINITIONAL_REPRESENTATION('',(#3430),#3434); -#3430 = LINE('',#3431,#3432); -#3431 = CARTESIAN_POINT('',(0.4,5.551115123126E-017)); -#3432 = VECTOR('',#3433,1.); -#3433 = DIRECTION('',(-1.807003620809E-016,1.)); -#3434 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3435 = PCURVE('',#3436,#3441); -#3436 = PLANE('',#3437); -#3437 = AXIS2_PLACEMENT_3D('',#3438,#3439,#3440); -#3438 = CARTESIAN_POINT('',(-0.8,0.4,0.3)); -#3439 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#3440 = DIRECTION('',(1.,0.E+000,0.E+000)); -#3441 = DEFINITIONAL_REPRESENTATION('',(#3442),#3446); -#3442 = LINE('',#3443,#3444); -#3443 = CARTESIAN_POINT('',(0.4,5.551115123126E-017)); -#3444 = VECTOR('',#3445,1.); -#3445 = DIRECTION('',(-1.807003620809E-016,1.)); -#3446 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3447 = ORIENTED_EDGE('',*,*,#3203,.T.); -#3448 = ORIENTED_EDGE('',*,*,#3449,.T.); -#3449 = EDGE_CURVE('',#3206,#3450,#3452,.T.); -#3450 = VERTEX_POINT('',#3451); -#3451 = CARTESIAN_POINT('',(-0.785,0.4,0.285)); -#3452 = SURFACE_CURVE('',#3453,(#3457,#3464),.PCURVE_S1.); -#3453 = LINE('',#3454,#3455); -#3454 = CARTESIAN_POINT('',(-0.785,0.4,0.3)); -#3455 = VECTOR('',#3456,1.); -#3456 = DIRECTION('',(0.E+000,2.22044604925E-016,1.)); -#3457 = PCURVE('',#3225,#3458); -#3458 = DEFINITIONAL_REPRESENTATION('',(#3459),#3463); -#3459 = LINE('',#3460,#3461); -#3460 = CARTESIAN_POINT('',(1.5E-002,0.E+000)); -#3461 = VECTOR('',#3462,1.); -#3462 = DIRECTION('',(0.E+000,1.)); -#3463 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3464 = PCURVE('',#3465,#3470); -#3465 = CYLINDRICAL_SURFACE('',#3466,1.5E-002); -#3466 = AXIS2_PLACEMENT_3D('',#3467,#3468,#3469); -#3467 = CARTESIAN_POINT('',(-0.785,0.385,0.3)); -#3468 = DIRECTION('',(0.E+000,-2.22044604925E-016,-1.)); -#3469 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#3470 = DEFINITIONAL_REPRESENTATION('',(#3471),#3474); -#3471 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3472,#3473),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.285,-1.5E-002),.PIECEWISE_BEZIER_KNOTS.); -#3472 = CARTESIAN_POINT('',(6.28318530718,0.285)); -#3473 = CARTESIAN_POINT('',(6.28318530718,1.5E-002)); -#3474 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3475 = ORIENTED_EDGE('',*,*,#3476,.T.); -#3476 = EDGE_CURVE('',#3450,#3421,#3477,.T.); -#3477 = SURFACE_CURVE('',#3478,(#3482,#3489),.PCURVE_S1.); -#3478 = LINE('',#3479,#3480); -#3479 = CARTESIAN_POINT('',(0.8,0.4,0.285)); -#3480 = VECTOR('',#3481,1.); -#3481 = DIRECTION('',(1.,0.E+000,0.E+000)); -#3482 = PCURVE('',#3225,#3483); -#3483 = DEFINITIONAL_REPRESENTATION('',(#3484),#3488); -#3484 = LINE('',#3485,#3486); -#3485 = CARTESIAN_POINT('',(1.6,-1.5E-002)); -#3486 = VECTOR('',#3487,1.); -#3487 = DIRECTION('',(1.,0.E+000)); -#3488 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3489 = PCURVE('',#2825,#3490); -#3490 = DEFINITIONAL_REPRESENTATION('',(#3491),#3494); -#3491 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3492,#3493),.UNSPECIFIED.,.F., - .F.,(2,2),(-1.585,-1.2),.PIECEWISE_BEZIER_KNOTS.); -#3492 = CARTESIAN_POINT('',(0.E+000,1.5E-002)); -#3493 = CARTESIAN_POINT('',(0.E+000,0.4)); -#3494 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3495 = ADVANCED_FACE('',(#3496),#3380,.F.); -#3496 = FACE_BOUND('',#3497,.T.); -#3497 = EDGE_LOOP('',(#3498,#3521,#3543,#3568)); -#3498 = ORIENTED_EDGE('',*,*,#3499,.F.); -#3499 = EDGE_CURVE('',#3500,#3344,#3502,.T.); -#3500 = VERTEX_POINT('',#3501); -#3501 = CARTESIAN_POINT('',(0.4,0.4,0.285)); -#3502 = SURFACE_CURVE('',#3503,(#3507,#3514),.PCURVE_S1.); -#3503 = LINE('',#3504,#3505); -#3504 = CARTESIAN_POINT('',(0.4,0.4,0.3)); -#3505 = VECTOR('',#3506,1.); -#3506 = DIRECTION('',(-1.807003620809E-016,-2.22044604925E-016,-1.)); -#3507 = PCURVE('',#3380,#3508); -#3508 = DEFINITIONAL_REPRESENTATION('',(#3509),#3513); -#3509 = LINE('',#3510,#3511); -#3510 = CARTESIAN_POINT('',(1.2,-2.22044604925E-016)); -#3511 = VECTOR('',#3512,1.); -#3512 = DIRECTION('',(-1.807003620809E-016,-1.)); -#3513 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3514 = PCURVE('',#3436,#3515); -#3515 = DEFINITIONAL_REPRESENTATION('',(#3516),#3520); -#3516 = LINE('',#3517,#3518); -#3517 = CARTESIAN_POINT('',(1.2,-2.22044604925E-016)); -#3518 = VECTOR('',#3519,1.); -#3519 = DIRECTION('',(-1.807003620809E-016,-1.)); -#3520 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3521 = ORIENTED_EDGE('',*,*,#3522,.T.); -#3522 = EDGE_CURVE('',#3500,#3523,#3525,.T.); -#3523 = VERTEX_POINT('',#3524); -#3524 = CARTESIAN_POINT('',(0.785,0.4,0.285)); -#3525 = SURFACE_CURVE('',#3526,(#3530,#3537),.PCURVE_S1.); -#3526 = LINE('',#3527,#3528); -#3527 = CARTESIAN_POINT('',(0.8,0.4,0.285)); -#3528 = VECTOR('',#3529,1.); -#3529 = DIRECTION('',(1.,0.E+000,0.E+000)); -#3530 = PCURVE('',#3380,#3531); -#3531 = DEFINITIONAL_REPRESENTATION('',(#3532),#3536); -#3532 = LINE('',#3533,#3534); -#3533 = CARTESIAN_POINT('',(1.6,-1.5E-002)); -#3534 = VECTOR('',#3535,1.); -#3535 = DIRECTION('',(1.,0.E+000)); -#3536 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3537 = PCURVE('',#2880,#3538); -#3538 = DEFINITIONAL_REPRESENTATION('',(#3539),#3542); -#3539 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3540,#3541),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.4,-1.5E-002),.PIECEWISE_BEZIER_KNOTS.); -#3540 = CARTESIAN_POINT('',(0.E+000,1.2)); -#3541 = CARTESIAN_POINT('',(0.E+000,1.585)); -#3542 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3543 = ORIENTED_EDGE('',*,*,#3544,.T.); -#3544 = EDGE_CURVE('',#3523,#3366,#3545,.T.); -#3545 = SURFACE_CURVE('',#3546,(#3550,#3557),.PCURVE_S1.); -#3546 = LINE('',#3547,#3548); -#3547 = CARTESIAN_POINT('',(0.785,0.4,0.3)); -#3548 = VECTOR('',#3549,1.); -#3549 = DIRECTION('',(0.E+000,-2.22044604925E-016,-1.)); -#3550 = PCURVE('',#3380,#3551); -#3551 = DEFINITIONAL_REPRESENTATION('',(#3552),#3556); -#3552 = LINE('',#3553,#3554); -#3553 = CARTESIAN_POINT('',(1.585,0.E+000)); -#3554 = VECTOR('',#3555,1.); -#3555 = DIRECTION('',(0.E+000,-1.)); -#3556 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3557 = PCURVE('',#3558,#3563); -#3558 = CYLINDRICAL_SURFACE('',#3559,1.5E-002); -#3559 = AXIS2_PLACEMENT_3D('',#3560,#3561,#3562); -#3560 = CARTESIAN_POINT('',(0.785,0.385,0.3)); -#3561 = DIRECTION('',(0.E+000,-2.22044604925E-016,-1.)); -#3562 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#3563 = DEFINITIONAL_REPRESENTATION('',(#3564),#3567); -#3564 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3565,#3566),.UNSPECIFIED.,.F., - .F.,(2,2),(1.5E-002,0.285),.PIECEWISE_BEZIER_KNOTS.); -#3565 = CARTESIAN_POINT('',(0.E+000,1.5E-002)); -#3566 = CARTESIAN_POINT('',(0.E+000,0.285)); -#3567 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3568 = ORIENTED_EDGE('',*,*,#3365,.T.); -#3569 = ADVANCED_FACE('',(#3570),#3059,.F.); -#3570 = FACE_BOUND('',#3571,.T.); -#3571 = EDGE_LOOP('',(#3572,#3598,#3599,#3624)); -#3572 = ORIENTED_EDGE('',*,*,#3573,.F.); -#3573 = EDGE_CURVE('',#3043,#3238,#3574,.T.); -#3574 = SURFACE_CURVE('',#3575,(#3579,#3586),.PCURVE_S1.); -#3575 = LINE('',#3576,#3577); -#3576 = CARTESIAN_POINT('',(-0.4,-0.4,8.881784197001E-017)); -#3577 = VECTOR('',#3578,1.); -#3578 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#3579 = PCURVE('',#3059,#3580); -#3580 = DEFINITIONAL_REPRESENTATION('',(#3581),#3585); -#3581 = LINE('',#3582,#3583); -#3582 = CARTESIAN_POINT('',(0.E+000,0.4)); -#3583 = VECTOR('',#3584,1.); -#3584 = DIRECTION('',(-1.,0.E+000)); -#3585 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3586 = PCURVE('',#3587,#3592); -#3587 = PLANE('',#3588); -#3588 = AXIS2_PLACEMENT_3D('',#3589,#3590,#3591); -#3589 = CARTESIAN_POINT('',(-0.8,-0.4,8.881784197001E-017)); -#3590 = DIRECTION('',(0.E+000,2.22044604925E-016,1.)); -#3591 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#3592 = DEFINITIONAL_REPRESENTATION('',(#3593),#3597); -#3593 = LINE('',#3594,#3595); -#3594 = CARTESIAN_POINT('',(0.E+000,0.4)); -#3595 = VECTOR('',#3596,1.); -#3596 = DIRECTION('',(-1.,0.E+000)); -#3597 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3598 = ORIENTED_EDGE('',*,*,#3042,.T.); -#3599 = ORIENTED_EDGE('',*,*,#3600,.T.); -#3600 = EDGE_CURVE('',#3045,#3265,#3601,.T.); -#3601 = SURFACE_CURVE('',#3602,(#3606,#3613),.PCURVE_S1.); -#3602 = LINE('',#3603,#3604); -#3603 = CARTESIAN_POINT('',(-0.785,-0.4,8.881784197001E-017)); -#3604 = VECTOR('',#3605,1.); -#3605 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#3606 = PCURVE('',#3059,#3607); -#3607 = DEFINITIONAL_REPRESENTATION('',(#3608),#3612); -#3608 = LINE('',#3609,#3610); -#3609 = CARTESIAN_POINT('',(0.E+000,1.5E-002)); -#3610 = VECTOR('',#3611,1.); -#3611 = DIRECTION('',(-1.,0.E+000)); -#3612 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3613 = PCURVE('',#3614,#3619); -#3614 = CYLINDRICAL_SURFACE('',#3615,1.5E-002); -#3615 = AXIS2_PLACEMENT_3D('',#3616,#3617,#3618); -#3616 = CARTESIAN_POINT('',(-0.785,0.4,1.5E-002)); -#3617 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#3618 = DIRECTION('',(1.,0.E+000,0.E+000)); -#3619 = DEFINITIONAL_REPRESENTATION('',(#3620),#3623); -#3620 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3621,#3622),.UNSPECIFIED.,.F., - .F.,(2,2),(1.5E-002,0.785),.PIECEWISE_BEZIER_KNOTS.); -#3621 = CARTESIAN_POINT('',(4.712388980385,0.785)); -#3622 = CARTESIAN_POINT('',(4.712388980385,1.5E-002)); -#3623 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3624 = ORIENTED_EDGE('',*,*,#3264,.T.); -#3625 = ADVANCED_FACE('',(#3626),#3163,.F.); -#3626 = FACE_BOUND('',#3627,.T.); -#3627 = EDGE_LOOP('',(#3628,#3649,#3650,#3675)); -#3628 = ORIENTED_EDGE('',*,*,#3629,.F.); -#3629 = EDGE_CURVE('',#3315,#3127,#3630,.T.); -#3630 = SURFACE_CURVE('',#3631,(#3635,#3642),.PCURVE_S1.); -#3631 = LINE('',#3632,#3633); -#3632 = CARTESIAN_POINT('',(0.4,-0.4,8.881784197001E-017)); -#3633 = VECTOR('',#3634,1.); -#3634 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#3635 = PCURVE('',#3163,#3636); -#3636 = DEFINITIONAL_REPRESENTATION('',(#3637),#3641); -#3637 = LINE('',#3638,#3639); -#3638 = CARTESIAN_POINT('',(0.E+000,1.2)); -#3639 = VECTOR('',#3640,1.); -#3640 = DIRECTION('',(1.,0.E+000)); -#3641 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3642 = PCURVE('',#3587,#3643); -#3643 = DEFINITIONAL_REPRESENTATION('',(#3644),#3648); -#3644 = LINE('',#3645,#3646); -#3645 = CARTESIAN_POINT('',(0.E+000,1.2)); -#3646 = VECTOR('',#3647,1.); -#3647 = DIRECTION('',(1.,0.E+000)); -#3648 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3649 = ORIENTED_EDGE('',*,*,#3314,.T.); -#3650 = ORIENTED_EDGE('',*,*,#3651,.T.); -#3651 = EDGE_CURVE('',#3317,#3149,#3652,.T.); -#3652 = SURFACE_CURVE('',#3653,(#3657,#3664),.PCURVE_S1.); -#3653 = LINE('',#3654,#3655); -#3654 = CARTESIAN_POINT('',(0.785,-0.4,8.881784197001E-017)); -#3655 = VECTOR('',#3656,1.); -#3656 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#3657 = PCURVE('',#3163,#3658); -#3658 = DEFINITIONAL_REPRESENTATION('',(#3659),#3663); -#3659 = LINE('',#3660,#3661); -#3660 = CARTESIAN_POINT('',(0.E+000,1.585)); -#3661 = VECTOR('',#3662,1.); -#3662 = DIRECTION('',(1.,0.E+000)); -#3663 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3664 = PCURVE('',#3665,#3670); -#3665 = CYLINDRICAL_SURFACE('',#3666,1.5E-002); -#3666 = AXIS2_PLACEMENT_3D('',#3667,#3668,#3669); -#3667 = CARTESIAN_POINT('',(0.785,0.4,1.5E-002)); -#3668 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#3669 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#3670 = DEFINITIONAL_REPRESENTATION('',(#3671),#3674); -#3671 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3672,#3673),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.785,-1.5E-002),.PIECEWISE_BEZIER_KNOTS.); -#3672 = CARTESIAN_POINT('',(4.712388980385,-1.5E-002)); -#3673 = CARTESIAN_POINT('',(4.712388980385,-0.785)); -#3674 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3675 = ORIENTED_EDGE('',*,*,#3148,.T.); -#3676 = ADVANCED_FACE('',(#3677),#2825,.T.); -#3677 = FACE_BOUND('',#3678,.T.); -#3678 = EDGE_LOOP('',(#3679,#3680,#3700,#3701)); -#3679 = ORIENTED_EDGE('',*,*,#2809,.F.); -#3680 = ORIENTED_EDGE('',*,*,#3681,.T.); -#3681 = EDGE_CURVE('',#1639,#3421,#3682,.T.); -#3682 = SURFACE_CURVE('',#3683,(#3688,#3694),.PCURVE_S1.); -#3683 = CIRCLE('',#3684,1.5E-002); -#3684 = AXIS2_PLACEMENT_3D('',#3685,#3686,#3687); -#3685 = CARTESIAN_POINT('',(-0.4,0.385,0.285)); -#3686 = DIRECTION('',(-1.,-4.012354050807E-032,-1.807003620809E-016)); -#3687 = DIRECTION('',(-1.807003620809E-016,2.22044604925E-016,1.)); -#3688 = PCURVE('',#2825,#3689); -#3689 = DEFINITIONAL_REPRESENTATION('',(#3690),#3693); -#3690 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3691,#3692),.UNSPECIFIED.,.F., - .F.,(2,2),(0.E+000,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); -#3691 = CARTESIAN_POINT('',(1.570796326795,0.4)); -#3692 = CARTESIAN_POINT('',(0.E+000,0.4)); -#3693 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3694 = PCURVE('',#1735,#3695); -#3695 = DEFINITIONAL_REPRESENTATION('',(#3696),#3699); -#3696 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3697,#3698),.UNSPECIFIED.,.F., - .F.,(2,2),(0.E+000,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); -#3697 = CARTESIAN_POINT('',(1.570796326795,0.4)); -#3698 = CARTESIAN_POINT('',(0.E+000,0.4)); -#3699 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3700 = ORIENTED_EDGE('',*,*,#3476,.F.); -#3701 = ORIENTED_EDGE('',*,*,#3702,.F.); -#3702 = EDGE_CURVE('',#2810,#3450,#3703,.T.); -#3703 = SURFACE_CURVE('',#3704,(#3709,#3715),.PCURVE_S1.); -#3704 = CIRCLE('',#3705,1.5E-002); -#3705 = AXIS2_PLACEMENT_3D('',#3706,#3707,#3708); -#3706 = CARTESIAN_POINT('',(-0.785,0.385,0.285)); -#3707 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#3708 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#3709 = PCURVE('',#2825,#3710); -#3710 = DEFINITIONAL_REPRESENTATION('',(#3711),#3714); -#3711 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3712,#3713),.UNSPECIFIED.,.F., - .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); -#3712 = CARTESIAN_POINT('',(1.570796326795,1.5E-002)); -#3713 = CARTESIAN_POINT('',(0.E+000,1.5E-002)); -#3714 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3715 = PCURVE('',#3716,#3721); -#3716 = SPHERICAL_SURFACE('',#3717,1.5E-002); -#3717 = AXIS2_PLACEMENT_3D('',#3718,#3719,#3720); -#3718 = CARTESIAN_POINT('',(-0.785,0.385,0.285)); -#3719 = DIRECTION('',(0.E+000,2.22044604925E-016,1.)); -#3720 = DIRECTION('',(1.,0.E+000,0.E+000)); -#3721 = DEFINITIONAL_REPRESENTATION('',(#3722),#3725); -#3722 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3723,#3724),.UNSPECIFIED.,.F., - .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); -#3723 = CARTESIAN_POINT('',(1.570796326795,1.570796326795)); -#3724 = CARTESIAN_POINT('',(1.570796326795,0.E+000)); -#3725 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3726 = ADVANCED_FACE('',(#3727),#2880,.T.); -#3727 = FACE_BOUND('',#3728,.T.); -#3728 = EDGE_LOOP('',(#3729,#3730,#3750,#3751)); -#3729 = ORIENTED_EDGE('',*,*,#3522,.F.); -#3730 = ORIENTED_EDGE('',*,*,#3731,.T.); -#3731 = EDGE_CURVE('',#3500,#1694,#3732,.T.); -#3732 = SURFACE_CURVE('',#3733,(#3738,#3744),.PCURVE_S1.); -#3733 = CIRCLE('',#3734,1.5E-002); -#3734 = AXIS2_PLACEMENT_3D('',#3735,#3736,#3737); -#3735 = CARTESIAN_POINT('',(0.4,0.385,0.285)); -#3736 = DIRECTION('',(1.,-4.012354050807E-032,-1.807003620809E-016)); -#3737 = DIRECTION('',(-1.807003620809E-016,-2.22044604925E-016,-1.)); -#3738 = PCURVE('',#2880,#3739); -#3739 = DEFINITIONAL_REPRESENTATION('',(#3740),#3743); -#3740 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3741,#3742),.UNSPECIFIED.,.F., - .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); -#3741 = CARTESIAN_POINT('',(0.E+000,1.2)); -#3742 = CARTESIAN_POINT('',(1.570796326795,1.2)); -#3743 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3744 = PCURVE('',#1735,#3745); -#3745 = DEFINITIONAL_REPRESENTATION('',(#3746),#3749); -#3746 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3747,#3748),.UNSPECIFIED.,.F., - .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); -#3747 = CARTESIAN_POINT('',(0.E+000,1.2)); -#3748 = CARTESIAN_POINT('',(1.570796326795,1.2)); -#3749 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3750 = ORIENTED_EDGE('',*,*,#2864,.F.); -#3751 = ORIENTED_EDGE('',*,*,#3752,.T.); -#3752 = EDGE_CURVE('',#2865,#3523,#3753,.T.); -#3753 = SURFACE_CURVE('',#3754,(#3759,#3765),.PCURVE_S1.); -#3754 = CIRCLE('',#3755,1.5E-002); -#3755 = AXIS2_PLACEMENT_3D('',#3756,#3757,#3758); -#3756 = CARTESIAN_POINT('',(0.785,0.385,0.285)); -#3757 = DIRECTION('',(-1.,0.E+000,-0.E+000)); -#3758 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#3759 = PCURVE('',#2880,#3760); -#3760 = DEFINITIONAL_REPRESENTATION('',(#3761),#3764); -#3761 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3762,#3763),.UNSPECIFIED.,.F., - .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); -#3762 = CARTESIAN_POINT('',(1.570796326795,1.585)); -#3763 = CARTESIAN_POINT('',(3.552713678801E-015,1.585)); -#3764 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3765 = PCURVE('',#3766,#3771); -#3766 = SPHERICAL_SURFACE('',#3767,1.5E-002); -#3767 = AXIS2_PLACEMENT_3D('',#3768,#3769,#3770); -#3768 = CARTESIAN_POINT('',(0.785,0.385,0.285)); -#3769 = DIRECTION('',(0.E+000,2.22044604925E-016,1.)); -#3770 = DIRECTION('',(1.,0.E+000,0.E+000)); -#3771 = DEFINITIONAL_REPRESENTATION('',(#3772),#3775); -#3772 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3773,#3774),.UNSPECIFIED.,.F., - .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); -#3773 = CARTESIAN_POINT('',(1.570796326795,1.570796326795)); -#3774 = CARTESIAN_POINT('',(1.570796326795,3.552713678801E-015)); -#3775 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3776 = ADVANCED_FACE('',(#3777),#3791,.F.); -#3777 = FACE_BOUND('',#3778,.T.); -#3778 = EDGE_LOOP('',(#3779,#3808,#3830,#3852)); -#3779 = ORIENTED_EDGE('',*,*,#3780,.T.); -#3780 = EDGE_CURVE('',#3781,#3783,#3785,.T.); -#3781 = VERTEX_POINT('',#3782); -#3782 = CARTESIAN_POINT('',(-0.8,-0.385,0.285)); -#3783 = VERTEX_POINT('',#3784); -#3784 = CARTESIAN_POINT('',(-0.8,0.385,0.285)); -#3785 = SURFACE_CURVE('',#3786,(#3790,#3802),.PCURVE_S1.); -#3786 = LINE('',#3787,#3788); -#3787 = CARTESIAN_POINT('',(-0.8,0.4,0.285)); -#3788 = VECTOR('',#3789,1.); -#3789 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#3790 = PCURVE('',#3791,#3796); -#3791 = PLANE('',#3792); -#3792 = AXIS2_PLACEMENT_3D('',#3793,#3794,#3795); -#3793 = CARTESIAN_POINT('',(-0.8,0.4,0.3)); -#3794 = DIRECTION('',(1.,0.E+000,0.E+000)); -#3795 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#3796 = DEFINITIONAL_REPRESENTATION('',(#3797),#3801); -#3797 = LINE('',#3798,#3799); -#3798 = CARTESIAN_POINT('',(3.330669073875E-018,-1.5E-002)); -#3799 = VECTOR('',#3800,1.); -#3800 = DIRECTION('',(1.,0.E+000)); -#3801 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3802 = PCURVE('',#2850,#3803); -#3803 = DEFINITIONAL_REPRESENTATION('',(#3804),#3807); -#3804 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3805,#3806),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.785,-1.5E-002),.PIECEWISE_BEZIER_KNOTS.); -#3805 = CARTESIAN_POINT('',(0.E+000,1.5E-002)); -#3806 = CARTESIAN_POINT('',(0.E+000,0.785)); -#3807 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3808 = ORIENTED_EDGE('',*,*,#3809,.T.); -#3809 = EDGE_CURVE('',#3783,#3810,#3812,.T.); -#3810 = VERTEX_POINT('',#3811); -#3811 = CARTESIAN_POINT('',(-0.8,0.385,1.5E-002)); -#3812 = SURFACE_CURVE('',#3813,(#3817,#3824),.PCURVE_S1.); -#3813 = LINE('',#3814,#3815); -#3814 = CARTESIAN_POINT('',(-0.8,0.385,0.3)); -#3815 = VECTOR('',#3816,1.); -#3816 = DIRECTION('',(0.E+000,-2.22044604925E-016,-1.)); -#3817 = PCURVE('',#3791,#3818); -#3818 = DEFINITIONAL_REPRESENTATION('',(#3819),#3823); -#3819 = LINE('',#3820,#3821); -#3820 = CARTESIAN_POINT('',(-1.5E-002,-3.330669073875E-018)); -#3821 = VECTOR('',#3822,1.); -#3822 = DIRECTION('',(0.E+000,-1.)); -#3823 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3824 = PCURVE('',#3465,#3825); -#3825 = DEFINITIONAL_REPRESENTATION('',(#3826),#3829); -#3826 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3827,#3828),.UNSPECIFIED.,.F., - .F.,(2,2),(1.5E-002,0.285),.PIECEWISE_BEZIER_KNOTS.); -#3827 = CARTESIAN_POINT('',(4.712388980385,1.5E-002)); -#3828 = CARTESIAN_POINT('',(4.712388980385,0.285)); -#3829 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3830 = ORIENTED_EDGE('',*,*,#3831,.T.); -#3831 = EDGE_CURVE('',#3810,#3832,#3834,.T.); -#3832 = VERTEX_POINT('',#3833); -#3833 = CARTESIAN_POINT('',(-0.8,-0.385,1.5E-002)); -#3834 = SURFACE_CURVE('',#3835,(#3839,#3846),.PCURVE_S1.); -#3835 = LINE('',#3836,#3837); -#3836 = CARTESIAN_POINT('',(-0.8,0.4,1.5E-002)); -#3837 = VECTOR('',#3838,1.); -#3838 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#3839 = PCURVE('',#3791,#3840); -#3840 = DEFINITIONAL_REPRESENTATION('',(#3841),#3845); -#3841 = LINE('',#3842,#3843); -#3842 = CARTESIAN_POINT('',(7.771561172376E-018,-0.285)); -#3843 = VECTOR('',#3844,1.); -#3844 = DIRECTION('',(-1.,0.E+000)); -#3845 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3846 = PCURVE('',#3614,#3847); -#3847 = DEFINITIONAL_REPRESENTATION('',(#3848),#3851); -#3848 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3849,#3850),.UNSPECIFIED.,.F., - .F.,(2,2),(1.5E-002,0.785),.PIECEWISE_BEZIER_KNOTS.); -#3849 = CARTESIAN_POINT('',(3.14159265359,1.5E-002)); -#3850 = CARTESIAN_POINT('',(3.14159265359,0.785)); -#3851 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3852 = ORIENTED_EDGE('',*,*,#3853,.T.); -#3853 = EDGE_CURVE('',#3832,#3781,#3854,.T.); -#3854 = SURFACE_CURVE('',#3855,(#3859,#3866),.PCURVE_S1.); -#3855 = LINE('',#3856,#3857); -#3856 = CARTESIAN_POINT('',(-0.8,-0.385,0.3)); -#3857 = VECTOR('',#3858,1.); -#3858 = DIRECTION('',(0.E+000,2.22044604925E-016,1.)); -#3859 = PCURVE('',#3791,#3860); -#3860 = DEFINITIONAL_REPRESENTATION('',(#3861),#3865); -#3861 = LINE('',#3862,#3863); -#3862 = CARTESIAN_POINT('',(-0.785,4.773959005888E-017)); -#3863 = VECTOR('',#3864,1.); -#3864 = DIRECTION('',(0.E+000,1.)); -#3865 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3866 = PCURVE('',#2635,#3867); -#3867 = DEFINITIONAL_REPRESENTATION('',(#3868),#3871); -#3868 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3869,#3870),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.285,-1.5E-002),.PIECEWISE_BEZIER_KNOTS.); -#3869 = CARTESIAN_POINT('',(4.712388980385,0.285)); -#3870 = CARTESIAN_POINT('',(4.712388980385,1.5E-002)); -#3871 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3872 = ADVANCED_FACE('',(#3873),#2580,.F.); -#3873 = FACE_BOUND('',#3874,.T.); -#3874 = EDGE_LOOP('',(#3875,#3895,#3896,#3916)); -#3875 = ORIENTED_EDGE('',*,*,#3876,.T.); -#3876 = EDGE_CURVE('',#2677,#2558,#3877,.T.); -#3877 = SURFACE_CURVE('',#3878,(#3882,#3889),.PCURVE_S1.); -#3878 = LINE('',#3879,#3880); -#3879 = CARTESIAN_POINT('',(-0.8,-0.4,0.285)); -#3880 = VECTOR('',#3881,1.); -#3881 = DIRECTION('',(-1.,0.E+000,-0.E+000)); -#3882 = PCURVE('',#2580,#3883); -#3883 = DEFINITIONAL_REPRESENTATION('',(#3884),#3888); -#3884 = LINE('',#3885,#3886); -#3885 = CARTESIAN_POINT('',(0.E+000,-1.5E-002)); -#3886 = VECTOR('',#3887,1.); -#3887 = DIRECTION('',(1.,0.E+000)); -#3888 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3889 = PCURVE('',#1682,#3890); -#3890 = DEFINITIONAL_REPRESENTATION('',(#3891),#3894); -#3891 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3892,#3893),.UNSPECIFIED.,.F., - .F.,(2,2),(-1.2,-0.4),.PIECEWISE_BEZIER_KNOTS.); -#3892 = CARTESIAN_POINT('',(0.E+000,-1.2)); -#3893 = CARTESIAN_POINT('',(0.E+000,-0.4)); -#3894 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3895 = ORIENTED_EDGE('',*,*,#2557,.T.); -#3896 = ORIENTED_EDGE('',*,*,#3897,.T.); -#3897 = EDGE_CURVE('',#2560,#2675,#3898,.T.); -#3898 = SURFACE_CURVE('',#3899,(#3903,#3910),.PCURVE_S1.); -#3899 = LINE('',#3900,#3901); -#3900 = CARTESIAN_POINT('',(-0.8,-0.4,1.5E-002)); -#3901 = VECTOR('',#3902,1.); -#3902 = DIRECTION('',(1.,0.E+000,0.E+000)); -#3903 = PCURVE('',#2580,#3904); -#3904 = DEFINITIONAL_REPRESENTATION('',(#3905),#3909); -#3905 = LINE('',#3906,#3907); -#3906 = CARTESIAN_POINT('',(-0.E+000,-0.285)); -#3907 = VECTOR('',#3908,1.); -#3908 = DIRECTION('',(-1.,0.E+000)); -#3909 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3910 = PCURVE('',#3085,#3911); -#3911 = DEFINITIONAL_REPRESENTATION('',(#3912),#3915); -#3912 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3913,#3914),.UNSPECIFIED.,.F., - .F.,(2,2),(0.4,1.2),.PIECEWISE_BEZIER_KNOTS.); -#3913 = CARTESIAN_POINT('',(3.14159265359,0.4)); -#3914 = CARTESIAN_POINT('',(3.14159265359,1.2)); -#3915 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3916 = ORIENTED_EDGE('',*,*,#2674,.T.); -#3917 = ADVANCED_FACE('',(#3918),#3932,.F.); -#3918 = FACE_BOUND('',#3919,.T.); -#3919 = EDGE_LOOP('',(#3920,#3949,#3971,#3993)); -#3920 = ORIENTED_EDGE('',*,*,#3921,.T.); -#3921 = EDGE_CURVE('',#3922,#3924,#3926,.T.); -#3922 = VERTEX_POINT('',#3923); -#3923 = CARTESIAN_POINT('',(0.8,-0.385,0.285)); -#3924 = VERTEX_POINT('',#3925); -#3925 = CARTESIAN_POINT('',(0.8,-0.385,1.5E-002)); -#3926 = SURFACE_CURVE('',#3927,(#3931,#3943),.PCURVE_S1.); -#3927 = LINE('',#3928,#3929); -#3928 = CARTESIAN_POINT('',(0.8,-0.385,0.3)); -#3929 = VECTOR('',#3930,1.); -#3930 = DIRECTION('',(0.E+000,-2.22044604925E-016,-1.)); -#3931 = PCURVE('',#3932,#3937); -#3932 = PLANE('',#3933); -#3933 = AXIS2_PLACEMENT_3D('',#3934,#3935,#3936); -#3934 = CARTESIAN_POINT('',(0.8,0.4,0.3)); -#3935 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#3936 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#3937 = DEFINITIONAL_REPRESENTATION('',(#3938),#3942); -#3938 = LINE('',#3939,#3940); -#3939 = CARTESIAN_POINT('',(0.785,4.773959005888E-017)); -#3940 = VECTOR('',#3941,1.); -#3941 = DIRECTION('',(0.E+000,-1.)); -#3942 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3943 = PCURVE('',#2747,#3944); -#3944 = DEFINITIONAL_REPRESENTATION('',(#3945),#3948); -#3945 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3946,#3947),.UNSPECIFIED.,.F., - .F.,(2,2),(1.5E-002,0.285),.PIECEWISE_BEZIER_KNOTS.); -#3946 = CARTESIAN_POINT('',(1.570796326795,1.5E-002)); -#3947 = CARTESIAN_POINT('',(1.570796326795,0.285)); -#3948 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3949 = ORIENTED_EDGE('',*,*,#3950,.T.); -#3950 = EDGE_CURVE('',#3924,#3951,#3953,.T.); -#3951 = VERTEX_POINT('',#3952); -#3952 = CARTESIAN_POINT('',(0.8,0.385,1.5E-002)); -#3953 = SURFACE_CURVE('',#3954,(#3958,#3965),.PCURVE_S1.); -#3954 = LINE('',#3955,#3956); -#3955 = CARTESIAN_POINT('',(0.8,0.4,1.5E-002)); -#3956 = VECTOR('',#3957,1.); -#3957 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#3958 = PCURVE('',#3932,#3959); -#3959 = DEFINITIONAL_REPRESENTATION('',(#3960),#3964); -#3960 = LINE('',#3961,#3962); -#3961 = CARTESIAN_POINT('',(-7.771561172376E-018,-0.285)); -#3962 = VECTOR('',#3963,1.); -#3963 = DIRECTION('',(-1.,0.E+000)); -#3964 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3965 = PCURVE('',#3665,#3966); -#3966 = DEFINITIONAL_REPRESENTATION('',(#3967),#3970); -#3967 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3968,#3969),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.785,-1.5E-002),.PIECEWISE_BEZIER_KNOTS.); -#3968 = CARTESIAN_POINT('',(3.14159265359,-0.785)); -#3969 = CARTESIAN_POINT('',(3.14159265359,-1.5E-002)); -#3970 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3971 = ORIENTED_EDGE('',*,*,#3972,.T.); -#3972 = EDGE_CURVE('',#3951,#3973,#3975,.T.); -#3973 = VERTEX_POINT('',#3974); -#3974 = CARTESIAN_POINT('',(0.8,0.385,0.285)); -#3975 = SURFACE_CURVE('',#3976,(#3980,#3987),.PCURVE_S1.); -#3976 = LINE('',#3977,#3978); -#3977 = CARTESIAN_POINT('',(0.8,0.385,0.3)); -#3978 = VECTOR('',#3979,1.); -#3979 = DIRECTION('',(0.E+000,2.22044604925E-016,1.)); -#3980 = PCURVE('',#3932,#3981); -#3981 = DEFINITIONAL_REPRESENTATION('',(#3982),#3986); -#3982 = LINE('',#3983,#3984); -#3983 = CARTESIAN_POINT('',(1.5E-002,-3.330669073875E-018)); -#3984 = VECTOR('',#3985,1.); -#3985 = DIRECTION('',(0.E+000,1.)); -#3986 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3987 = PCURVE('',#3558,#3988); -#3988 = DEFINITIONAL_REPRESENTATION('',(#3989),#3992); -#3989 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3990,#3991),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.285,-1.5E-002),.PIECEWISE_BEZIER_KNOTS.); -#3990 = CARTESIAN_POINT('',(1.570796326795,0.285)); -#3991 = CARTESIAN_POINT('',(1.570796326795,1.5E-002)); -#3992 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#3993 = ORIENTED_EDGE('',*,*,#3994,.T.); -#3994 = EDGE_CURVE('',#3973,#3922,#3995,.T.); -#3995 = SURFACE_CURVE('',#3996,(#4000,#4007),.PCURVE_S1.); -#3996 = LINE('',#3997,#3998); -#3997 = CARTESIAN_POINT('',(0.8,-0.4,0.285)); -#3998 = VECTOR('',#3999,1.); -#3999 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#4000 = PCURVE('',#3932,#4001); -#4001 = DEFINITIONAL_REPRESENTATION('',(#4002),#4006); -#4002 = LINE('',#4003,#4004); -#4003 = CARTESIAN_POINT('',(0.8,-1.5E-002)); -#4004 = VECTOR('',#4005,1.); -#4005 = DIRECTION('',(1.,0.E+000)); -#4006 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4007 = PCURVE('',#2928,#4008); -#4008 = DEFINITIONAL_REPRESENTATION('',(#4009),#4012); -#4009 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4010,#4011),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.785,-1.5E-002),.PIECEWISE_BEZIER_KNOTS.); -#4010 = CARTESIAN_POINT('',(0.E+000,-0.785)); -#4011 = CARTESIAN_POINT('',(0.E+000,-1.5E-002)); -#4012 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4013 = ADVANCED_FACE('',(#4014),#3436,.F.); -#4014 = FACE_BOUND('',#4015,.T.); -#4015 = EDGE_LOOP('',(#4016,#4036,#4037,#4057)); -#4016 = ORIENTED_EDGE('',*,*,#4017,.T.); -#4017 = EDGE_CURVE('',#3344,#3204,#4018,.T.); -#4018 = SURFACE_CURVE('',#4019,(#4023,#4030),.PCURVE_S1.); -#4019 = LINE('',#4020,#4021); -#4020 = CARTESIAN_POINT('',(-0.8,0.4,1.5E-002)); -#4021 = VECTOR('',#4022,1.); -#4022 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#4023 = PCURVE('',#3436,#4024); -#4024 = DEFINITIONAL_REPRESENTATION('',(#4025),#4029); -#4025 = LINE('',#4026,#4027); -#4026 = CARTESIAN_POINT('',(0.E+000,-0.285)); -#4027 = VECTOR('',#4028,1.); -#4028 = DIRECTION('',(-1.,0.E+000)); -#4029 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4030 = PCURVE('',#3253,#4031); -#4031 = DEFINITIONAL_REPRESENTATION('',(#4032),#4035); -#4032 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4033,#4034),.UNSPECIFIED.,.F., - .F.,(2,2),(-1.2,-0.4),.PIECEWISE_BEZIER_KNOTS.); -#4033 = CARTESIAN_POINT('',(3.14159265359,-1.2)); -#4034 = CARTESIAN_POINT('',(3.14159265359,-0.4)); -#4035 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4036 = ORIENTED_EDGE('',*,*,#3420,.T.); -#4037 = ORIENTED_EDGE('',*,*,#4038,.T.); -#4038 = EDGE_CURVE('',#3421,#3500,#4039,.T.); -#4039 = SURFACE_CURVE('',#4040,(#4044,#4051),.PCURVE_S1.); -#4040 = LINE('',#4041,#4042); -#4041 = CARTESIAN_POINT('',(0.8,0.4,0.285)); -#4042 = VECTOR('',#4043,1.); -#4043 = DIRECTION('',(1.,0.E+000,0.E+000)); -#4044 = PCURVE('',#3436,#4045); -#4045 = DEFINITIONAL_REPRESENTATION('',(#4046),#4050); -#4046 = LINE('',#4047,#4048); -#4047 = CARTESIAN_POINT('',(1.6,-1.5E-002)); -#4048 = VECTOR('',#4049,1.); -#4049 = DIRECTION('',(1.,0.E+000)); -#4050 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4051 = PCURVE('',#1735,#4052); -#4052 = DEFINITIONAL_REPRESENTATION('',(#4053),#4056); -#4053 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4054,#4055),.UNSPECIFIED.,.F., - .F.,(2,2),(-1.2,-0.4),.PIECEWISE_BEZIER_KNOTS.); -#4054 = CARTESIAN_POINT('',(0.E+000,0.4)); -#4055 = CARTESIAN_POINT('',(0.E+000,1.2)); -#4056 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4057 = ORIENTED_EDGE('',*,*,#3499,.T.); -#4058 = ADVANCED_FACE('',(#4059),#3587,.F.); -#4059 = FACE_BOUND('',#4060,.T.); -#4060 = EDGE_LOOP('',(#4061,#4081,#4082,#4102)); -#4061 = ORIENTED_EDGE('',*,*,#4062,.T.); -#4062 = EDGE_CURVE('',#3127,#3043,#4063,.T.); -#4063 = SURFACE_CURVE('',#4064,(#4068,#4075),.PCURVE_S1.); -#4064 = LINE('',#4065,#4066); -#4065 = CARTESIAN_POINT('',(-0.8,-0.385,8.548717289614E-017)); -#4066 = VECTOR('',#4067,1.); -#4067 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#4068 = PCURVE('',#3587,#4069); -#4069 = DEFINITIONAL_REPRESENTATION('',(#4070),#4074); -#4070 = LINE('',#4071,#4072); -#4071 = CARTESIAN_POINT('',(-1.5E-002,0.E+000)); -#4072 = VECTOR('',#4073,1.); -#4073 = DIRECTION('',(0.E+000,-1.)); -#4074 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4075 = PCURVE('',#3085,#4076); -#4076 = DEFINITIONAL_REPRESENTATION('',(#4077),#4080); -#4077 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4078,#4079),.UNSPECIFIED.,.F., - .F.,(2,2),(-1.2,-0.4),.PIECEWISE_BEZIER_KNOTS.); -#4078 = CARTESIAN_POINT('',(4.712388980385,1.2)); -#4079 = CARTESIAN_POINT('',(4.712388980385,0.4)); -#4080 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4081 = ORIENTED_EDGE('',*,*,#3573,.T.); -#4082 = ORIENTED_EDGE('',*,*,#4083,.T.); -#4083 = EDGE_CURVE('',#3238,#3315,#4084,.T.); -#4084 = SURFACE_CURVE('',#4085,(#4089,#4096),.PCURVE_S1.); -#4085 = LINE('',#4086,#4087); -#4086 = CARTESIAN_POINT('',(-0.8,0.385,-8.548717289614E-017)); -#4087 = VECTOR('',#4088,1.); -#4088 = DIRECTION('',(1.,0.E+000,0.E+000)); -#4089 = PCURVE('',#3587,#4090); -#4090 = DEFINITIONAL_REPRESENTATION('',(#4091),#4095); -#4091 = LINE('',#4092,#4093); -#4092 = CARTESIAN_POINT('',(-0.785,0.E+000)); -#4093 = VECTOR('',#4094,1.); -#4094 = DIRECTION('',(0.E+000,1.)); -#4095 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4096 = PCURVE('',#3253,#4097); -#4097 = DEFINITIONAL_REPRESENTATION('',(#4098),#4101); -#4098 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4099,#4100),.UNSPECIFIED.,.F., - .F.,(2,2),(0.4,1.2),.PIECEWISE_BEZIER_KNOTS.); -#4099 = CARTESIAN_POINT('',(4.712388980385,-0.4)); -#4100 = CARTESIAN_POINT('',(4.712388980385,-1.2)); -#4101 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4102 = ORIENTED_EDGE('',*,*,#3629,.T.); -#4103 = ADVANCED_FACE('',(#4104),#2747,.T.); -#4104 = FACE_BOUND('',#4105,.T.); -#4105 = EDGE_LOOP('',(#4106,#4149,#4150,#4193)); -#4106 = ORIENTED_EDGE('',*,*,#4107,.F.); -#4107 = EDGE_CURVE('',#2732,#3922,#4108,.T.); -#4108 = SURFACE_CURVE('',#4109,(#4114,#4120),.PCURVE_S1.); -#4109 = CIRCLE('',#4110,1.5E-002); -#4110 = AXIS2_PLACEMENT_3D('',#4111,#4112,#4113); -#4111 = CARTESIAN_POINT('',(0.785,-0.385,0.285)); -#4112 = DIRECTION('',(-0.E+000,2.22044604925E-016,1.)); -#4113 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#4114 = PCURVE('',#2747,#4115); -#4115 = DEFINITIONAL_REPRESENTATION('',(#4116),#4119); -#4116 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4117,#4118),.UNSPECIFIED.,.F., - .F.,(2,2),(0.E+000,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); -#4117 = CARTESIAN_POINT('',(3.14159265359,1.5E-002)); -#4118 = CARTESIAN_POINT('',(1.570796326795,1.5E-002)); -#4119 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4120 = PCURVE('',#3028,#4121); -#4121 = DEFINITIONAL_REPRESENTATION('',(#4122),#4148); -#4122 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4123,#4124,#4125,#4126,#4127, - #4128,#4129,#4130,#4131,#4132,#4133,#4134,#4135,#4136,#4137,#4138, - #4139,#4140,#4141,#4142,#4143,#4144,#4145,#4146,#4147), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), - (0.E+000,7.139983303613E-002,0.142799666072,0.214199499108, - 0.285599332145,0.356999165181,0.428398998217,0.499798831253, - 0.571198664289,0.642598497325,0.713998330361,0.785398163397, - 0.856797996434,0.92819782947,0.999597662506,1.070997495542, - 1.142397328578,1.213797161614,1.28519699465,1.356596827686, - 1.427996660723,1.499396493759,1.570796326795), - .QUASI_UNIFORM_KNOTS.); -#4123 = CARTESIAN_POINT('',(4.712388980385,0.E+000)); -#4124 = CARTESIAN_POINT('',(4.73618892473,0.E+000)); -#4125 = CARTESIAN_POINT('',(4.783788813421,-6.253171281508E-028)); -#4126 = CARTESIAN_POINT('',(4.855188646457,2.188609948528E-027)); -#4127 = CARTESIAN_POINT('',(4.926588479493,-8.12912266596E-027)); -#4128 = CARTESIAN_POINT('',(4.997988312529,3.032788071531E-026)); -#4129 = CARTESIAN_POINT('',(5.069388145565,-1.131824001953E-025)); -#4130 = CARTESIAN_POINT('',(5.140787978601,4.224017200658E-025)); -#4131 = CARTESIAN_POINT('',(5.212187811638,-1.576424480068E-024)); -#4132 = CARTESIAN_POINT('',(5.283587644674,5.883296200207E-024)); -#4133 = CARTESIAN_POINT('',(5.35498747771,-2.195676032076E-023)); -#4134 = CARTESIAN_POINT('',(5.426387310746,8.194374508283E-023)); -#4135 = CARTESIAN_POINT('',(5.497787143782,-3.058182200105E-022)); -#4136 = CARTESIAN_POINT('',(5.569186976818,1.141329134959E-021)); -#4137 = CARTESIAN_POINT('',(5.640586809854,-4.259498319827E-021)); -#4138 = CARTESIAN_POINT('',(5.711986642891,1.589666414435E-020)); -#4139 = CARTESIAN_POINT('',(5.783386475927,-5.932715825757E-020)); -#4140 = CARTESIAN_POINT('',(5.854786308963,2.214119688859E-019)); -#4141 = CARTESIAN_POINT('',(5.926186141999,-8.263207172861E-019)); -#4142 = CARTESIAN_POINT('',(5.997585975035,3.083870900258E-018)); -#4143 = CARTESIAN_POINT('',(6.068985808071,-1.150916288375E-017)); -#4144 = CARTESIAN_POINT('',(6.140385641107,4.295278063473E-017)); -#4145 = CARTESIAN_POINT('',(6.211785474143,-1.603019596552E-016)); -#4146 = CARTESIAN_POINT('',(6.259385362834,3.454027187723E-016)); -#4147 = CARTESIAN_POINT('',(6.28318530718,8.881784197001E-016)); -#4148 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4149 = ORIENTED_EDGE('',*,*,#2731,.F.); -#4150 = ORIENTED_EDGE('',*,*,#4151,.F.); -#4151 = EDGE_CURVE('',#3924,#2705,#4152,.T.); -#4152 = SURFACE_CURVE('',#4153,(#4158,#4164),.PCURVE_S1.); -#4153 = CIRCLE('',#4154,1.5E-002); -#4154 = AXIS2_PLACEMENT_3D('',#4155,#4156,#4157); -#4155 = CARTESIAN_POINT('',(0.785,-0.385,1.5E-002)); -#4156 = DIRECTION('',(0.E+000,-2.22044604925E-016,-1.)); -#4157 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#4158 = PCURVE('',#2747,#4159); -#4159 = DEFINITIONAL_REPRESENTATION('',(#4160),#4163); -#4160 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4161,#4162),.UNSPECIFIED.,.F., - .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); -#4161 = CARTESIAN_POINT('',(1.570796326795,0.285)); -#4162 = CARTESIAN_POINT('',(3.14159265359,0.285)); -#4163 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4164 = PCURVE('',#3189,#4165); -#4165 = DEFINITIONAL_REPRESENTATION('',(#4166),#4192); -#4166 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4167,#4168,#4169,#4170,#4171, - #4172,#4173,#4174,#4175,#4176,#4177,#4178,#4179,#4180,#4181,#4182, - #4183,#4184,#4185,#4186,#4187,#4188,#4189,#4190,#4191), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), - (1.570796326795,1.642196159831,1.713595992867,1.784995825903, - 1.856395658939,1.927795491976,1.999195325012,2.070595158048, - 2.141994991084,2.21339482412,2.284794657156,2.356194490192, - 2.427594323228,2.498994156265,2.570393989301,2.641793822337, - 2.713193655373,2.784593488409,2.855993321445,2.927393154481, - 2.998792987518,3.070192820554,3.14159265359),.QUASI_UNIFORM_KNOTS.); -#4167 = CARTESIAN_POINT('',(6.28318530718,8.881784197001E-016)); -#4168 = CARTESIAN_POINT('',(6.259385362834,2.747287993806E-016)); -#4169 = CARTESIAN_POINT('',(6.211785474143,-2.968228423837E-016)); -#4170 = CARTESIAN_POINT('',(6.140385641107,-6.710264111857E-017)); -#4171 = CARTESIAN_POINT('',(6.068985808071,-1.286559835327E-016)); -#4172 = CARTESIAN_POINT('',(5.997585975035,-1.121628151414E-016)); -#4173 = CARTESIAN_POINT('',(5.926186141999,-1.165821462925E-016)); -#4174 = CARTESIAN_POINT('',(5.854786308963,-1.153979900795E-016)); -#4175 = CARTESIAN_POINT('',(5.783386475927,-1.157152837804E-016)); -#4176 = CARTESIAN_POINT('',(5.711986642891,-1.156302651895E-016)); -#4177 = CARTESIAN_POINT('',(5.640586809854,-1.156530458523E-016)); -#4178 = CARTESIAN_POINT('',(5.569186976818,-1.156469417921E-016)); -#4179 = CARTESIAN_POINT('',(5.497787143782,-1.156485773701E-016)); -#4180 = CARTESIAN_POINT('',(5.426387310746,-1.156481391183E-016)); -#4181 = CARTESIAN_POINT('',(5.35498747771,-1.156482565475E-016)); -#4182 = CARTESIAN_POINT('',(5.283587644674,-1.156482250824E-016)); -#4183 = CARTESIAN_POINT('',(5.212187811638,-1.156482335135E-016)); -#4184 = CARTESIAN_POINT('',(5.140787978601,-1.156482312544E-016)); -#4185 = CARTESIAN_POINT('',(5.069388145565,-1.156482318597E-016)); -#4186 = CARTESIAN_POINT('',(4.997988312529,-1.156482316975E-016)); -#4187 = CARTESIAN_POINT('',(4.926588479493,-1.15648231741E-016)); -#4188 = CARTESIAN_POINT('',(4.855188646457,-1.156482317293E-016)); -#4189 = CARTESIAN_POINT('',(4.783788813421,-1.156482317325E-016)); -#4190 = CARTESIAN_POINT('',(4.73618892473,-1.156482317318E-016)); -#4191 = CARTESIAN_POINT('',(4.712388980385,-1.156482317318E-016)); -#4192 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4193 = ORIENTED_EDGE('',*,*,#3921,.F.); -#4194 = ADVANCED_FACE('',(#4195),#3028,.T.); -#4195 = FACE_BOUND('',#4196,.T.); -#4196 = EDGE_LOOP('',(#4197,#4198,#4199)); -#4197 = ORIENTED_EDGE('',*,*,#3014,.F.); -#4198 = ORIENTED_EDGE('',*,*,#4107,.T.); -#4199 = ORIENTED_EDGE('',*,*,#4200,.F.); -#4200 = EDGE_CURVE('',#2893,#3922,#4201,.T.); -#4201 = SURFACE_CURVE('',#4202,(#4207,#4236),.PCURVE_S1.); -#4202 = CIRCLE('',#4203,1.5E-002); -#4203 = AXIS2_PLACEMENT_3D('',#4204,#4205,#4206); -#4204 = CARTESIAN_POINT('',(0.785,-0.385,0.285)); -#4205 = DIRECTION('',(-0.E+000,1.,-3.836051846543E-015)); -#4206 = DIRECTION('',(0.E+000,-3.836051846543E-015,-1.)); -#4207 = PCURVE('',#3028,#4208); -#4208 = DEFINITIONAL_REPRESENTATION('',(#4209),#4235); -#4209 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4210,#4211,#4212,#4213,#4214, - #4215,#4216,#4217,#4218,#4219,#4220,#4221,#4222,#4223,#4224,#4225, - #4226,#4227,#4228,#4229,#4230,#4231,#4232,#4233,#4234), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), - (3.14159265359,3.212992486626,3.284392319662,3.355792152698, - 3.427191985734,3.49859181877,3.569991651807,3.641391484843, - 3.712791317879,3.784191150915,3.855590983951,3.926990816987, - 3.998390650023,4.06979048306,4.141190316096,4.212590149132, - 4.283989982168,4.355389815204,4.42678964824,4.498189481276, - 4.569589314312,4.640989147349,4.712388980385), - .QUASI_UNIFORM_KNOTS.); -#4210 = CARTESIAN_POINT('',(6.28318530718,1.570796326795)); -#4211 = CARTESIAN_POINT('',(6.28318530718,1.54699638245)); -#4212 = CARTESIAN_POINT('',(6.28318530718,1.499396493759)); -#4213 = CARTESIAN_POINT('',(6.28318530718,1.427996660723)); -#4214 = CARTESIAN_POINT('',(6.28318530718,1.356596827686)); -#4215 = CARTESIAN_POINT('',(6.28318530718,1.28519699465)); -#4216 = CARTESIAN_POINT('',(6.28318530718,1.213797161614)); -#4217 = CARTESIAN_POINT('',(6.28318530718,1.142397328578)); -#4218 = CARTESIAN_POINT('',(6.28318530718,1.070997495542)); -#4219 = CARTESIAN_POINT('',(6.28318530718,0.999597662506)); -#4220 = CARTESIAN_POINT('',(6.28318530718,0.92819782947)); -#4221 = CARTESIAN_POINT('',(6.28318530718,0.856797996434)); -#4222 = CARTESIAN_POINT('',(6.28318530718,0.785398163397)); -#4223 = CARTESIAN_POINT('',(6.28318530718,0.713998330361)); -#4224 = CARTESIAN_POINT('',(6.28318530718,0.642598497325)); -#4225 = CARTESIAN_POINT('',(6.28318530718,0.571198664289)); -#4226 = CARTESIAN_POINT('',(6.28318530718,0.499798831253)); -#4227 = CARTESIAN_POINT('',(6.28318530718,0.428398998217)); -#4228 = CARTESIAN_POINT('',(6.28318530718,0.356999165181)); -#4229 = CARTESIAN_POINT('',(6.28318530718,0.285599332145)); -#4230 = CARTESIAN_POINT('',(6.28318530718,0.214199499108)); -#4231 = CARTESIAN_POINT('',(6.28318530718,0.142799666072)); -#4232 = CARTESIAN_POINT('',(6.28318530718,7.139983303613E-002)); -#4233 = CARTESIAN_POINT('',(6.28318530718,2.379994434538E-002)); -#4234 = CARTESIAN_POINT('',(6.28318530718,8.881784197001E-016)); -#4235 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4236 = PCURVE('',#2928,#4237); -#4237 = DEFINITIONAL_REPRESENTATION('',(#4238),#4264); -#4238 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4239,#4240,#4241,#4242,#4243, - #4244,#4245,#4246,#4247,#4248,#4249,#4250,#4251,#4252,#4253,#4254, - #4255,#4256,#4257,#4258,#4259,#4260,#4261,#4262,#4263), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), - (3.14159265359,3.212992486626,3.284392319662,3.355792152698, - 3.427191985734,3.49859181877,3.569991651807,3.641391484843, - 3.712791317879,3.784191150915,3.855590983951,3.926990816987, - 3.998390650023,4.06979048306,4.141190316096,4.212590149132, - 4.283989982168,4.355389815204,4.42678964824,4.498189481276, - 4.569589314312,4.640989147349,4.712388980385), - .QUASI_UNIFORM_KNOTS.); -#4239 = CARTESIAN_POINT('',(1.570796326795,-1.5E-002)); -#4240 = CARTESIAN_POINT('',(1.54699638245,-1.5E-002)); -#4241 = CARTESIAN_POINT('',(1.499396493759,-1.5E-002)); -#4242 = CARTESIAN_POINT('',(1.427996660723,-1.5E-002)); -#4243 = CARTESIAN_POINT('',(1.356596827686,-1.5E-002)); -#4244 = CARTESIAN_POINT('',(1.28519699465,-1.5E-002)); -#4245 = CARTESIAN_POINT('',(1.213797161614,-1.5E-002)); -#4246 = CARTESIAN_POINT('',(1.142397328578,-1.5E-002)); -#4247 = CARTESIAN_POINT('',(1.070997495542,-1.5E-002)); -#4248 = CARTESIAN_POINT('',(0.999597662506,-1.5E-002)); -#4249 = CARTESIAN_POINT('',(0.92819782947,-1.5E-002)); -#4250 = CARTESIAN_POINT('',(0.856797996434,-1.5E-002)); -#4251 = CARTESIAN_POINT('',(0.785398163397,-1.5E-002)); -#4252 = CARTESIAN_POINT('',(0.713998330361,-1.5E-002)); -#4253 = CARTESIAN_POINT('',(0.642598497325,-1.5E-002)); -#4254 = CARTESIAN_POINT('',(0.571198664289,-1.5E-002)); -#4255 = CARTESIAN_POINT('',(0.499798831253,-1.5E-002)); -#4256 = CARTESIAN_POINT('',(0.428398998217,-1.5E-002)); -#4257 = CARTESIAN_POINT('',(0.356999165181,-1.5E-002)); -#4258 = CARTESIAN_POINT('',(0.285599332145,-1.5E-002)); -#4259 = CARTESIAN_POINT('',(0.214199499108,-1.5E-002)); -#4260 = CARTESIAN_POINT('',(0.142799666072,-1.5E-002)); -#4261 = CARTESIAN_POINT('',(7.139983303613E-002,-1.5E-002)); -#4262 = CARTESIAN_POINT('',(2.379994434538E-002,-1.5E-002)); -#4263 = CARTESIAN_POINT('',(0.E+000,-1.5E-002)); -#4264 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4265 = ADVANCED_FACE('',(#4266),#3189,.T.); -#4266 = FACE_BOUND('',#4267,.T.); -#4267 = EDGE_LOOP('',(#4268,#4334,#4335)); -#4268 = ORIENTED_EDGE('',*,*,#4269,.F.); -#4269 = EDGE_CURVE('',#3924,#3149,#4270,.T.); -#4270 = SURFACE_CURVE('',#4271,(#4276,#4305),.PCURVE_S1.); -#4271 = CIRCLE('',#4272,1.5E-002); -#4272 = AXIS2_PLACEMENT_3D('',#4273,#4274,#4275); -#4273 = CARTESIAN_POINT('',(0.785,-0.385,1.5E-002)); -#4274 = DIRECTION('',(3.614007241618E-015,1.,-2.22044604925E-016)); -#4275 = DIRECTION('',(1.,-3.614007241618E-015,8.024708101613E-031)); -#4276 = PCURVE('',#3189,#4277); -#4277 = DEFINITIONAL_REPRESENTATION('',(#4278),#4304); -#4278 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4279,#4280,#4281,#4282,#4283, - #4284,#4285,#4286,#4287,#4288,#4289,#4290,#4291,#4292,#4293,#4294, - #4295,#4296,#4297,#4298,#4299,#4300,#4301,#4302,#4303), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), - (0.E+000,7.139983303613E-002,0.142799666072,0.214199499108, - 0.285599332145,0.356999165181,0.428398998217,0.499798831253, - 0.571198664289,0.642598497325,0.713998330361,0.785398163397, - 0.856797996434,0.92819782947,0.999597662506,1.070997495542, - 1.142397328578,1.213797161614,1.28519699465,1.356596827687, - 1.427996660723,1.499396493759,1.570796326795), - .QUASI_UNIFORM_KNOTS.); -#4279 = CARTESIAN_POINT('',(6.28318530718,1.7763568394E-015)); -#4280 = CARTESIAN_POINT('',(6.28318530718,-2.379994434538E-002)); -#4281 = CARTESIAN_POINT('',(6.28318530718,-7.139983303613E-002)); -#4282 = CARTESIAN_POINT('',(6.28318530718,-0.142799666072)); -#4283 = CARTESIAN_POINT('',(6.28318530718,-0.214199499108)); -#4284 = CARTESIAN_POINT('',(6.28318530718,-0.285599332145)); -#4285 = CARTESIAN_POINT('',(6.28318530718,-0.356999165181)); -#4286 = CARTESIAN_POINT('',(6.28318530718,-0.428398998217)); -#4287 = CARTESIAN_POINT('',(6.28318530718,-0.499798831253)); -#4288 = CARTESIAN_POINT('',(6.28318530718,-0.571198664289)); -#4289 = CARTESIAN_POINT('',(6.28318530718,-0.642598497325)); -#4290 = CARTESIAN_POINT('',(6.28318530718,-0.713998330361)); -#4291 = CARTESIAN_POINT('',(6.28318530718,-0.785398163397)); -#4292 = CARTESIAN_POINT('',(6.28318530718,-0.856797996434)); -#4293 = CARTESIAN_POINT('',(6.28318530718,-0.92819782947)); -#4294 = CARTESIAN_POINT('',(6.28318530718,-0.999597662506)); -#4295 = CARTESIAN_POINT('',(6.28318530718,-1.070997495542)); -#4296 = CARTESIAN_POINT('',(6.28318530718,-1.142397328578)); -#4297 = CARTESIAN_POINT('',(6.28318530718,-1.213797161614)); -#4298 = CARTESIAN_POINT('',(6.28318530718,-1.28519699465)); -#4299 = CARTESIAN_POINT('',(6.28318530718,-1.356596827686)); -#4300 = CARTESIAN_POINT('',(6.28318530718,-1.427996660723)); -#4301 = CARTESIAN_POINT('',(6.28318530718,-1.499396493759)); -#4302 = CARTESIAN_POINT('',(6.28318530718,-1.54699638245)); -#4303 = CARTESIAN_POINT('',(6.28318530718,-1.570796326795)); -#4304 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4305 = PCURVE('',#3665,#4306); -#4306 = DEFINITIONAL_REPRESENTATION('',(#4307),#4333); -#4307 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4308,#4309,#4310,#4311,#4312, - #4313,#4314,#4315,#4316,#4317,#4318,#4319,#4320,#4321,#4322,#4323, - #4324,#4325,#4326,#4327,#4328,#4329,#4330,#4331,#4332), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), - (0.E+000,7.139983303613E-002,0.142799666072,0.214199499108, - 0.285599332145,0.356999165181,0.428398998217,0.499798831253, - 0.571198664289,0.642598497325,0.713998330361,0.785398163397, - 0.856797996434,0.92819782947,0.999597662506,1.070997495542, - 1.142397328578,1.213797161614,1.28519699465,1.356596827687, - 1.427996660723,1.499396493759,1.570796326795), - .QUASI_UNIFORM_KNOTS.); -#4308 = CARTESIAN_POINT('',(3.14159265359,-0.785)); -#4309 = CARTESIAN_POINT('',(3.165392597935,-0.785)); -#4310 = CARTESIAN_POINT('',(3.212992486626,-0.785)); -#4311 = CARTESIAN_POINT('',(3.284392319662,-0.785)); -#4312 = CARTESIAN_POINT('',(3.355792152698,-0.785)); -#4313 = CARTESIAN_POINT('',(3.427191985734,-0.785)); -#4314 = CARTESIAN_POINT('',(3.49859181877,-0.785)); -#4315 = CARTESIAN_POINT('',(3.569991651807,-0.785)); -#4316 = CARTESIAN_POINT('',(3.641391484843,-0.785)); -#4317 = CARTESIAN_POINT('',(3.712791317879,-0.785)); -#4318 = CARTESIAN_POINT('',(3.784191150915,-0.785)); -#4319 = CARTESIAN_POINT('',(3.855590983951,-0.785)); -#4320 = CARTESIAN_POINT('',(3.926990816987,-0.785)); -#4321 = CARTESIAN_POINT('',(3.998390650023,-0.785)); -#4322 = CARTESIAN_POINT('',(4.06979048306,-0.785)); -#4323 = CARTESIAN_POINT('',(4.141190316096,-0.785)); -#4324 = CARTESIAN_POINT('',(4.212590149132,-0.785)); -#4325 = CARTESIAN_POINT('',(4.283989982168,-0.785)); -#4326 = CARTESIAN_POINT('',(4.355389815204,-0.785)); -#4327 = CARTESIAN_POINT('',(4.42678964824,-0.785)); -#4328 = CARTESIAN_POINT('',(4.498189481276,-0.785)); -#4329 = CARTESIAN_POINT('',(4.569589314312,-0.785)); -#4330 = CARTESIAN_POINT('',(4.640989147349,-0.785)); -#4331 = CARTESIAN_POINT('',(4.688589036039,-0.785)); -#4332 = CARTESIAN_POINT('',(4.712388980385,-0.785)); -#4333 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4334 = ORIENTED_EDGE('',*,*,#4151,.T.); -#4335 = ORIENTED_EDGE('',*,*,#3175,.F.); -#4336 = ADVANCED_FACE('',(#4337),#2928,.T.); -#4337 = FACE_BOUND('',#4338,.T.); -#4338 = EDGE_LOOP('',(#4339,#4340,#4341,#4407)); -#4339 = ORIENTED_EDGE('',*,*,#4200,.T.); -#4340 = ORIENTED_EDGE('',*,*,#3994,.F.); -#4341 = ORIENTED_EDGE('',*,*,#4342,.F.); -#4342 = EDGE_CURVE('',#2865,#3973,#4343,.T.); -#4343 = SURFACE_CURVE('',#4344,(#4349,#4378),.PCURVE_S1.); -#4344 = CIRCLE('',#4345,1.5E-002); -#4345 = AXIS2_PLACEMENT_3D('',#4346,#4347,#4348); -#4346 = CARTESIAN_POINT('',(0.785,0.385,0.285)); -#4347 = DIRECTION('',(3.614007241618E-015,1.,-2.22044604925E-016)); -#4348 = DIRECTION('',(-1.,3.614007241618E-015,-8.024708101613E-031)); -#4349 = PCURVE('',#2928,#4350); -#4350 = DEFINITIONAL_REPRESENTATION('',(#4351),#4377); -#4351 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4352,#4353,#4354,#4355,#4356, - #4357,#4358,#4359,#4360,#4361,#4362,#4363,#4364,#4365,#4366,#4367, - #4368,#4369,#4370,#4371,#4372,#4373,#4374,#4375,#4376), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), - (1.570796326795,1.642196159831,1.713595992867,1.784995825903, - 1.856395658939,1.927795491976,1.999195325012,2.070595158048, - 2.141994991084,2.21339482412,2.284794657156,2.356194490192, - 2.427594323228,2.498994156265,2.570393989301,2.641793822337, - 2.713193655373,2.784593488409,2.855993321445,2.927393154481, - 2.998792987518,3.070192820554,3.14159265359),.QUASI_UNIFORM_KNOTS.); -#4352 = CARTESIAN_POINT('',(1.570796326795,-0.785)); -#4353 = CARTESIAN_POINT('',(1.54699638245,-0.785)); -#4354 = CARTESIAN_POINT('',(1.499396493759,-0.785)); -#4355 = CARTESIAN_POINT('',(1.427996660723,-0.785)); -#4356 = CARTESIAN_POINT('',(1.356596827686,-0.785)); -#4357 = CARTESIAN_POINT('',(1.28519699465,-0.785)); -#4358 = CARTESIAN_POINT('',(1.213797161614,-0.785)); -#4359 = CARTESIAN_POINT('',(1.142397328578,-0.785)); -#4360 = CARTESIAN_POINT('',(1.070997495542,-0.785)); -#4361 = CARTESIAN_POINT('',(0.999597662506,-0.785)); -#4362 = CARTESIAN_POINT('',(0.92819782947,-0.785)); -#4363 = CARTESIAN_POINT('',(0.856797996434,-0.785)); -#4364 = CARTESIAN_POINT('',(0.785398163397,-0.785)); -#4365 = CARTESIAN_POINT('',(0.713998330361,-0.785)); -#4366 = CARTESIAN_POINT('',(0.642598497325,-0.785)); -#4367 = CARTESIAN_POINT('',(0.571198664289,-0.785)); -#4368 = CARTESIAN_POINT('',(0.499798831253,-0.785)); -#4369 = CARTESIAN_POINT('',(0.428398998217,-0.785)); -#4370 = CARTESIAN_POINT('',(0.356999165181,-0.785)); -#4371 = CARTESIAN_POINT('',(0.285599332145,-0.785)); -#4372 = CARTESIAN_POINT('',(0.214199499108,-0.785)); -#4373 = CARTESIAN_POINT('',(0.142799666072,-0.785)); -#4374 = CARTESIAN_POINT('',(7.139983303613E-002,-0.785)); -#4375 = CARTESIAN_POINT('',(2.379994434538E-002,-0.785)); -#4376 = CARTESIAN_POINT('',(0.E+000,-0.785)); -#4377 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4378 = PCURVE('',#3766,#4379); -#4379 = DEFINITIONAL_REPRESENTATION('',(#4380),#4406); -#4380 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4381,#4382,#4383,#4384,#4385, - #4386,#4387,#4388,#4389,#4390,#4391,#4392,#4393,#4394,#4395,#4396, - #4397,#4398,#4399,#4400,#4401,#4402,#4403,#4404,#4405), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), - (1.570796326795,1.642196159831,1.713595992867,1.784995825903, - 1.856395658939,1.927795491976,1.999195325012,2.070595158048, - 2.141994991084,2.21339482412,2.284794657156,2.356194490192, - 2.427594323228,2.498994156265,2.570393989301,2.641793822337, - 2.713193655373,2.784593488409,2.855993321445,2.927393154481, - 2.998792987518,3.070192820554,3.14159265359),.QUASI_UNIFORM_KNOTS.); -#4381 = CARTESIAN_POINT('',(5.18753264259E-014,1.570796326795)); -#4382 = CARTESIAN_POINT('',(6.098154026375E-014,1.54699638245)); -#4383 = CARTESIAN_POINT('',(5.700026755195E-014,1.499396493759)); -#4384 = CARTESIAN_POINT('',(2.027871172796E-014,1.427996660723)); -#4385 = CARTESIAN_POINT('',(1.790839483372E-014,1.356596827686)); -#4386 = CARTESIAN_POINT('',(1.25471930759E-014,1.28519699465)); -#4387 = CARTESIAN_POINT('',(1.071680005711E-014,1.213797161614)); -#4388 = CARTESIAN_POINT('',(8.124194593225E-015,1.142397328578)); -#4389 = CARTESIAN_POINT('',(1.023769270256E-014,1.070997495542)); -#4390 = CARTESIAN_POINT('',(-2.74318149201E-015,0.999597662506)); -#4391 = CARTESIAN_POINT('',(7.35033265476E-016,0.92819782947)); -#4392 = CARTESIAN_POINT('',(-1.969515698943E-016,0.856797996434)); -#4393 = CARTESIAN_POINT('',(5.277301410124E-017,0.785398163397)); -#4394 = CARTESIAN_POINT('',(-1.414048651063E-017,0.713998330361)); -#4395 = CARTESIAN_POINT('',(3.788931941285E-018,0.642598497325)); -#4396 = CARTESIAN_POINT('',(-1.015241254509E-018,0.571198664289)); -#4397 = CARTESIAN_POINT('',(2.720330767516E-019,0.499798831253)); -#4398 = CARTESIAN_POINT('',(-7.289105249731E-020,0.428398998217)); -#4399 = CARTESIAN_POINT('',(1.953113323762E-020,0.356999165181)); -#4400 = CARTESIAN_POINT('',(-5.233480453174E-021,0.285599332145)); -#4401 = CARTESIAN_POINT('',(1.402788575078E-021,0.214199499108)); -#4402 = CARTESIAN_POINT('',(-3.776738471363E-022,0.142799666072)); -#4403 = CARTESIAN_POINT('',(1.079068134675E-022,7.139983303613E-002)); -#4404 = CARTESIAN_POINT('',(0.E+000,2.379994434538E-002)); -#4405 = CARTESIAN_POINT('',(0.E+000,8.881784197001E-016)); -#4406 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4407 = ORIENTED_EDGE('',*,*,#2914,.F.); -#4408 = ADVANCED_FACE('',(#4409),#1682,.T.); -#4409 = FACE_BOUND('',#4410,.T.); -#4410 = EDGE_LOOP('',(#4411,#4412,#4413,#4414)); -#4411 = ORIENTED_EDGE('',*,*,#2943,.F.); -#4412 = ORIENTED_EDGE('',*,*,#3876,.F.); -#4413 = ORIENTED_EDGE('',*,*,#2993,.F.); -#4414 = ORIENTED_EDGE('',*,*,#1666,.F.); -#4415 = ADVANCED_FACE('',(#4416),#2635,.T.); -#4416 = FACE_BOUND('',#4417,.T.); -#4417 = EDGE_LOOP('',(#4418,#4438,#4439,#4459)); -#4418 = ORIENTED_EDGE('',*,*,#4419,.F.); -#4419 = EDGE_CURVE('',#2620,#3832,#4420,.T.); -#4420 = SURFACE_CURVE('',#4421,(#4426,#4432),.PCURVE_S1.); -#4421 = CIRCLE('',#4422,1.5E-002); -#4422 = AXIS2_PLACEMENT_3D('',#4423,#4424,#4425); -#4423 = CARTESIAN_POINT('',(-0.785,-0.385,1.5E-002)); -#4424 = DIRECTION('',(0.E+000,-2.22044604925E-016,-1.)); -#4425 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#4426 = PCURVE('',#2635,#4427); -#4427 = DEFINITIONAL_REPRESENTATION('',(#4428),#4431); -#4428 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4429,#4430),.UNSPECIFIED.,.F., - .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); -#4429 = CARTESIAN_POINT('',(3.14159265359,0.285)); -#4430 = CARTESIAN_POINT('',(4.712388980385,0.285)); -#4431 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4432 = PCURVE('',#3111,#4433); -#4433 = DEFINITIONAL_REPRESENTATION('',(#4434),#4437); -#4434 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4435,#4436),.UNSPECIFIED.,.F., - .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); -#4435 = CARTESIAN_POINT('',(4.712388980385,-9.251858538543E-016)); -#4436 = CARTESIAN_POINT('',(3.14159265359,-9.251858538543E-016)); -#4437 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4438 = ORIENTED_EDGE('',*,*,#2619,.F.); -#4439 = ORIENTED_EDGE('',*,*,#4440,.F.); -#4440 = EDGE_CURVE('',#3781,#2593,#4441,.T.); -#4441 = SURFACE_CURVE('',#4442,(#4447,#4453),.PCURVE_S1.); -#4442 = CIRCLE('',#4443,1.5E-002); -#4443 = AXIS2_PLACEMENT_3D('',#4444,#4445,#4446); -#4444 = CARTESIAN_POINT('',(-0.785,-0.385,0.285)); -#4445 = DIRECTION('',(-0.E+000,2.22044604925E-016,1.)); -#4446 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#4447 = PCURVE('',#2635,#4448); -#4448 = DEFINITIONAL_REPRESENTATION('',(#4449),#4452); -#4449 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4450,#4451),.UNSPECIFIED.,.F., - .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); -#4450 = CARTESIAN_POINT('',(4.712388980385,1.5E-002)); -#4451 = CARTESIAN_POINT('',(3.14159265359,1.5E-002)); -#4452 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4453 = PCURVE('',#2978,#4454); -#4454 = DEFINITIONAL_REPRESENTATION('',(#4455),#4458); -#4455 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4456,#4457),.UNSPECIFIED.,.F., - .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); -#4456 = CARTESIAN_POINT('',(3.14159265359,0.E+000)); -#4457 = CARTESIAN_POINT('',(4.712388980385,0.E+000)); -#4458 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4459 = ORIENTED_EDGE('',*,*,#3853,.F.); -#4460 = ADVANCED_FACE('',(#4461),#3085,.T.); -#4461 = FACE_BOUND('',#4462,.T.); -#4462 = EDGE_LOOP('',(#4463,#4464,#4465,#4466)); -#4463 = ORIENTED_EDGE('',*,*,#3071,.F.); -#4464 = ORIENTED_EDGE('',*,*,#4062,.F.); -#4465 = ORIENTED_EDGE('',*,*,#3126,.F.); -#4466 = ORIENTED_EDGE('',*,*,#3897,.F.); -#4467 = ADVANCED_FACE('',(#4468),#3665,.T.); -#4468 = FACE_BOUND('',#4469,.T.); -#4469 = EDGE_LOOP('',(#4470,#4471,#4472,#4492)); -#4470 = ORIENTED_EDGE('',*,*,#4269,.T.); -#4471 = ORIENTED_EDGE('',*,*,#3651,.F.); -#4472 = ORIENTED_EDGE('',*,*,#4473,.F.); -#4473 = EDGE_CURVE('',#3951,#3317,#4474,.T.); -#4474 = SURFACE_CURVE('',#4475,(#4480,#4486),.PCURVE_S1.); -#4475 = CIRCLE('',#4476,1.5E-002); -#4476 = AXIS2_PLACEMENT_3D('',#4477,#4478,#4479); -#4477 = CARTESIAN_POINT('',(0.785,0.385,1.5E-002)); -#4478 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#4479 = DIRECTION('',(-1.,0.E+000,0.E+000)); -#4480 = PCURVE('',#3665,#4481); -#4481 = DEFINITIONAL_REPRESENTATION('',(#4482),#4485); -#4482 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4483,#4484),.UNSPECIFIED.,.F., - .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); -#4483 = CARTESIAN_POINT('',(3.14159265359,-1.5E-002)); -#4484 = CARTESIAN_POINT('',(4.712388980385,-1.5E-002)); -#4485 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4486 = PCURVE('',#3406,#4487); -#4487 = DEFINITIONAL_REPRESENTATION('',(#4488),#4491); -#4488 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4489,#4490),.UNSPECIFIED.,.F., - .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); -#4489 = CARTESIAN_POINT('',(0.E+000,8.881784197001E-016)); -#4490 = CARTESIAN_POINT('',(0.E+000,-1.570796326795)); -#4491 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4492 = ORIENTED_EDGE('',*,*,#3950,.F.); -#4493 = ADVANCED_FACE('',(#4494),#3558,.T.); -#4494 = FACE_BOUND('',#4495,.T.); -#4495 = EDGE_LOOP('',(#4496,#4539,#4540,#4583)); -#4496 = ORIENTED_EDGE('',*,*,#4497,.F.); -#4497 = EDGE_CURVE('',#3973,#3523,#4498,.T.); -#4498 = SURFACE_CURVE('',#4499,(#4504,#4510),.PCURVE_S1.); -#4499 = CIRCLE('',#4500,1.5E-002); -#4500 = AXIS2_PLACEMENT_3D('',#4501,#4502,#4503); -#4501 = CARTESIAN_POINT('',(0.785,0.385,0.285)); -#4502 = DIRECTION('',(-0.E+000,2.22044604925E-016,1.)); -#4503 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#4504 = PCURVE('',#3558,#4505); -#4505 = DEFINITIONAL_REPRESENTATION('',(#4506),#4509); -#4506 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4507,#4508),.UNSPECIFIED.,.F., - .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); -#4507 = CARTESIAN_POINT('',(1.570796326795,1.5E-002)); -#4508 = CARTESIAN_POINT('',(0.E+000,1.5E-002)); -#4509 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4510 = PCURVE('',#3766,#4511); -#4511 = DEFINITIONAL_REPRESENTATION('',(#4512),#4538); -#4512 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4513,#4514,#4515,#4516,#4517, - #4518,#4519,#4520,#4521,#4522,#4523,#4524,#4525,#4526,#4527,#4528, - #4529,#4530,#4531,#4532,#4533,#4534,#4535,#4536,#4537), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), - (1.570796326795,1.642196159831,1.713595992867,1.784995825903, - 1.856395658939,1.927795491976,1.999195325012,2.070595158048, - 2.141994991084,2.21339482412,2.284794657156,2.356194490192, - 2.427594323228,2.498994156265,2.570393989301,2.641793822337, - 2.713193655373,2.784593488409,2.855993321445,2.927393154481, - 2.998792987518,3.070192820554,3.14159265359),.QUASI_UNIFORM_KNOTS.); -#4513 = CARTESIAN_POINT('',(0.E+000,8.881784197001E-016)); -#4514 = CARTESIAN_POINT('',(2.379994434538E-002,3.454027187723E-016)); -#4515 = CARTESIAN_POINT('',(7.139983303613E-002,-1.603019596552E-016)); -#4516 = CARTESIAN_POINT('',(0.142799666072,4.295278063473E-017)); -#4517 = CARTESIAN_POINT('',(0.214199499108,-1.150916288375E-017)); -#4518 = CARTESIAN_POINT('',(0.285599332145,3.083870900258E-018)); -#4519 = CARTESIAN_POINT('',(0.356999165181,-8.263207172861E-019)); -#4520 = CARTESIAN_POINT('',(0.428398998217,2.214119688859E-019)); -#4521 = CARTESIAN_POINT('',(0.499798831253,-5.932715825757E-020)); -#4522 = CARTESIAN_POINT('',(0.571198664289,1.589666414435E-020)); -#4523 = CARTESIAN_POINT('',(0.642598497325,-4.259498319827E-021)); -#4524 = CARTESIAN_POINT('',(0.713998330361,1.141329134959E-021)); -#4525 = CARTESIAN_POINT('',(0.785398163397,-3.058182200105E-022)); -#4526 = CARTESIAN_POINT('',(0.856797996434,8.194374508283E-023)); -#4527 = CARTESIAN_POINT('',(0.92819782947,-2.195676032076E-023)); -#4528 = CARTESIAN_POINT('',(0.999597662506,5.883296200207E-024)); -#4529 = CARTESIAN_POINT('',(1.070997495542,-1.576424480068E-024)); -#4530 = CARTESIAN_POINT('',(1.142397328578,4.224017200658E-025)); -#4531 = CARTESIAN_POINT('',(1.213797161614,-1.131824001953E-025)); -#4532 = CARTESIAN_POINT('',(1.28519699465,3.032788071531E-026)); -#4533 = CARTESIAN_POINT('',(1.356596827686,-8.12912266596E-027)); -#4534 = CARTESIAN_POINT('',(1.427996660723,2.188609948528E-027)); -#4535 = CARTESIAN_POINT('',(1.499396493759,-6.253171281508E-028)); -#4536 = CARTESIAN_POINT('',(1.54699638245,0.E+000)); -#4537 = CARTESIAN_POINT('',(1.570796326795,0.E+000)); -#4538 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4539 = ORIENTED_EDGE('',*,*,#3972,.F.); -#4540 = ORIENTED_EDGE('',*,*,#4541,.F.); -#4541 = EDGE_CURVE('',#3366,#3951,#4542,.T.); -#4542 = SURFACE_CURVE('',#4543,(#4548,#4554),.PCURVE_S1.); -#4543 = CIRCLE('',#4544,1.5E-002); -#4544 = AXIS2_PLACEMENT_3D('',#4545,#4546,#4547); -#4545 = CARTESIAN_POINT('',(0.785,0.385,1.5E-002)); -#4546 = DIRECTION('',(0.E+000,-2.22044604925E-016,-1.)); -#4547 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#4548 = PCURVE('',#3558,#4549); -#4549 = DEFINITIONAL_REPRESENTATION('',(#4550),#4553); -#4550 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4551,#4552),.UNSPECIFIED.,.F., - .F.,(2,2),(0.E+000,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); -#4551 = CARTESIAN_POINT('',(0.E+000,0.285)); -#4552 = CARTESIAN_POINT('',(1.570796326795,0.285)); -#4553 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4554 = PCURVE('',#3406,#4555); -#4555 = DEFINITIONAL_REPRESENTATION('',(#4556),#4582); -#4556 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4557,#4558,#4559,#4560,#4561, - #4562,#4563,#4564,#4565,#4566,#4567,#4568,#4569,#4570,#4571,#4572, - #4573,#4574,#4575,#4576,#4577,#4578,#4579,#4580,#4581), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), - (0.E+000,7.139983303613E-002,0.142799666072,0.214199499108, - 0.285599332145,0.356999165181,0.428398998217,0.499798831253, - 0.571198664289,0.642598497325,0.713998330361,0.785398163397, - 0.856797996434,0.92819782947,0.999597662506,1.070997495542, - 1.142397328578,1.213797161614,1.28519699465,1.356596827687, - 1.427996660723,1.499396493759,1.570796326795), - .QUASI_UNIFORM_KNOTS.); -#4557 = CARTESIAN_POINT('',(1.570796326795,-1.156482317318E-016)); -#4558 = CARTESIAN_POINT('',(1.54699638245,-1.156482317318E-016)); -#4559 = CARTESIAN_POINT('',(1.499396493759,-1.156482317325E-016)); -#4560 = CARTESIAN_POINT('',(1.427996660723,-1.156482317293E-016)); -#4561 = CARTESIAN_POINT('',(1.356596827686,-1.15648231741E-016)); -#4562 = CARTESIAN_POINT('',(1.28519699465,-1.156482316975E-016)); -#4563 = CARTESIAN_POINT('',(1.213797161614,-1.156482318597E-016)); -#4564 = CARTESIAN_POINT('',(1.142397328578,-1.156482312544E-016)); -#4565 = CARTESIAN_POINT('',(1.070997495542,-1.156482335135E-016)); -#4566 = CARTESIAN_POINT('',(0.999597662506,-1.156482250824E-016)); -#4567 = CARTESIAN_POINT('',(0.92819782947,-1.156482565475E-016)); -#4568 = CARTESIAN_POINT('',(0.856797996434,-1.156481391183E-016)); -#4569 = CARTESIAN_POINT('',(0.785398163397,-1.156485773701E-016)); -#4570 = CARTESIAN_POINT('',(0.713998330361,-1.156469417921E-016)); -#4571 = CARTESIAN_POINT('',(0.642598497325,-1.156530458523E-016)); -#4572 = CARTESIAN_POINT('',(0.571198664289,-1.156302651895E-016)); -#4573 = CARTESIAN_POINT('',(0.499798831253,-1.157152837804E-016)); -#4574 = CARTESIAN_POINT('',(0.428398998217,-1.153979900795E-016)); -#4575 = CARTESIAN_POINT('',(0.356999165181,-1.165821462925E-016)); -#4576 = CARTESIAN_POINT('',(0.285599332145,-1.121628151414E-016)); -#4577 = CARTESIAN_POINT('',(0.214199499108,-1.286559835327E-016)); -#4578 = CARTESIAN_POINT('',(0.142799666072,-6.710264111857E-017)); -#4579 = CARTESIAN_POINT('',(7.139983303613E-002,-2.968228423837E-016)); -#4580 = CARTESIAN_POINT('',(2.379994434538E-002,2.747287993806E-016)); -#4581 = CARTESIAN_POINT('',(0.E+000,8.881784197001E-016)); -#4582 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4583 = ORIENTED_EDGE('',*,*,#3544,.F.); -#4584 = ADVANCED_FACE('',(#4585),#3766,.T.); -#4585 = FACE_BOUND('',#4586,.T.); -#4586 = EDGE_LOOP('',(#4587,#4588,#4589)); -#4587 = ORIENTED_EDGE('',*,*,#4342,.T.); -#4588 = ORIENTED_EDGE('',*,*,#4497,.T.); -#4589 = ORIENTED_EDGE('',*,*,#3752,.F.); -#4590 = ADVANCED_FACE('',(#4591),#2978,.T.); -#4591 = FACE_BOUND('',#4592,.T.); -#4592 = EDGE_LOOP('',(#4593,#4594,#4595)); -#4593 = ORIENTED_EDGE('',*,*,#4440,.T.); -#4594 = ORIENTED_EDGE('',*,*,#2964,.T.); -#4595 = ORIENTED_EDGE('',*,*,#4596,.F.); -#4596 = EDGE_CURVE('',#3781,#2787,#4597,.T.); -#4597 = SURFACE_CURVE('',#4598,(#4603,#4609),.PCURVE_S1.); -#4598 = CIRCLE('',#4599,1.5E-002); -#4599 = AXIS2_PLACEMENT_3D('',#4600,#4601,#4602); -#4600 = CARTESIAN_POINT('',(-0.785,-0.385,0.285)); -#4601 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#4602 = DIRECTION('',(1.,0.E+000,0.E+000)); -#4603 = PCURVE('',#2978,#4604); -#4604 = DEFINITIONAL_REPRESENTATION('',(#4605),#4608); -#4605 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4606,#4607),.UNSPECIFIED.,.F., - .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); -#4606 = CARTESIAN_POINT('',(3.14159265359,0.E+000)); -#4607 = CARTESIAN_POINT('',(3.14159265359,1.570796326795)); -#4608 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4609 = PCURVE('',#2850,#4610); -#4610 = DEFINITIONAL_REPRESENTATION('',(#4611),#4614); -#4611 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4612,#4613),.UNSPECIFIED.,.F., - .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); -#4612 = CARTESIAN_POINT('',(0.E+000,1.5E-002)); -#4613 = CARTESIAN_POINT('',(1.570796326795,1.5E-002)); -#4614 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4615 = ADVANCED_FACE('',(#4616),#3111,.T.); -#4616 = FACE_BOUND('',#4617,.T.); -#4617 = EDGE_LOOP('',(#4618,#4619,#4620)); -#4618 = ORIENTED_EDGE('',*,*,#3097,.T.); -#4619 = ORIENTED_EDGE('',*,*,#4419,.T.); -#4620 = ORIENTED_EDGE('',*,*,#4621,.F.); -#4621 = EDGE_CURVE('',#3045,#3832,#4622,.T.); -#4622 = SURFACE_CURVE('',#4623,(#4628,#4634),.PCURVE_S1.); -#4623 = CIRCLE('',#4624,1.5E-002); -#4624 = AXIS2_PLACEMENT_3D('',#4625,#4626,#4627); -#4625 = CARTESIAN_POINT('',(-0.785,-0.385,1.5E-002)); -#4626 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#4627 = DIRECTION('',(1.,0.E+000,0.E+000)); -#4628 = PCURVE('',#3111,#4629); -#4629 = DEFINITIONAL_REPRESENTATION('',(#4630),#4633); -#4630 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4631,#4632),.UNSPECIFIED.,.F., - .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); -#4631 = CARTESIAN_POINT('',(3.14159265359,-1.570796326795)); -#4632 = CARTESIAN_POINT('',(3.14159265359,0.E+000)); -#4633 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4634 = PCURVE('',#3614,#4635); -#4635 = DEFINITIONAL_REPRESENTATION('',(#4636),#4639); -#4636 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4637,#4638),.UNSPECIFIED.,.F., - .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); -#4637 = CARTESIAN_POINT('',(4.712388980385,0.785)); -#4638 = CARTESIAN_POINT('',(3.14159265359,0.785)); -#4639 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4640 = ADVANCED_FACE('',(#4641),#3406,.T.); -#4641 = FACE_BOUND('',#4642,.T.); -#4642 = EDGE_LOOP('',(#4643,#4644,#4645)); -#4643 = ORIENTED_EDGE('',*,*,#4541,.T.); -#4644 = ORIENTED_EDGE('',*,*,#4473,.T.); -#4645 = ORIENTED_EDGE('',*,*,#3392,.F.); -#4646 = ADVANCED_FACE('',(#4647),#1735,.T.); -#4647 = FACE_BOUND('',#4648,.T.); -#4648 = EDGE_LOOP('',(#4649,#4650,#4651,#4652)); -#4649 = ORIENTED_EDGE('',*,*,#3681,.F.); -#4650 = ORIENTED_EDGE('',*,*,#1721,.F.); -#4651 = ORIENTED_EDGE('',*,*,#3731,.F.); -#4652 = ORIENTED_EDGE('',*,*,#4038,.F.); -#4653 = ADVANCED_FACE('',(#4654),#2850,.T.); -#4654 = FACE_BOUND('',#4655,.T.); -#4655 = EDGE_LOOP('',(#4656,#4657,#4658,#4724)); -#4656 = ORIENTED_EDGE('',*,*,#4596,.T.); -#4657 = ORIENTED_EDGE('',*,*,#2836,.F.); -#4658 = ORIENTED_EDGE('',*,*,#4659,.F.); -#4659 = EDGE_CURVE('',#3783,#2810,#4660,.T.); -#4660 = SURFACE_CURVE('',#4661,(#4666,#4695),.PCURVE_S1.); -#4661 = CIRCLE('',#4662,1.5E-002); -#4662 = AXIS2_PLACEMENT_3D('',#4663,#4664,#4665); -#4663 = CARTESIAN_POINT('',(-0.785,0.385,0.285)); -#4664 = DIRECTION('',(0.E+000,1.,-3.836051846543E-015)); -#4665 = DIRECTION('',(0.E+000,3.836051846543E-015,1.)); -#4666 = PCURVE('',#2850,#4667); -#4667 = DEFINITIONAL_REPRESENTATION('',(#4668),#4694); -#4668 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4669,#4670,#4671,#4672,#4673, - #4674,#4675,#4676,#4677,#4678,#4679,#4680,#4681,#4682,#4683,#4684, - #4685,#4686,#4687,#4688,#4689,#4690,#4691,#4692,#4693), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), - (4.712388980385,4.783788813421,4.855188646457,4.926588479493, - 4.997988312529,5.069388145565,5.140787978601,5.212187811638, - 5.283587644674,5.35498747771,5.426387310746,5.497787143782, - 5.569186976818,5.640586809854,5.711986642891,5.783386475927, - 5.854786308963,5.926186141999,5.997585975035,6.068985808071, - 6.140385641107,6.211785474143,6.28318530718),.QUASI_UNIFORM_KNOTS.); -#4669 = CARTESIAN_POINT('',(0.E+000,0.785)); -#4670 = CARTESIAN_POINT('',(2.379994434538E-002,0.785)); -#4671 = CARTESIAN_POINT('',(7.139983303613E-002,0.785)); -#4672 = CARTESIAN_POINT('',(0.142799666072,0.785)); -#4673 = CARTESIAN_POINT('',(0.214199499108,0.785)); -#4674 = CARTESIAN_POINT('',(0.285599332145,0.785)); -#4675 = CARTESIAN_POINT('',(0.356999165181,0.785)); -#4676 = CARTESIAN_POINT('',(0.428398998217,0.785)); -#4677 = CARTESIAN_POINT('',(0.499798831253,0.785)); -#4678 = CARTESIAN_POINT('',(0.571198664289,0.785)); -#4679 = CARTESIAN_POINT('',(0.642598497325,0.785)); -#4680 = CARTESIAN_POINT('',(0.713998330361,0.785)); -#4681 = CARTESIAN_POINT('',(0.785398163397,0.785)); -#4682 = CARTESIAN_POINT('',(0.856797996434,0.785)); -#4683 = CARTESIAN_POINT('',(0.92819782947,0.785)); -#4684 = CARTESIAN_POINT('',(0.999597662506,0.785)); -#4685 = CARTESIAN_POINT('',(1.070997495542,0.785)); -#4686 = CARTESIAN_POINT('',(1.142397328578,0.785)); -#4687 = CARTESIAN_POINT('',(1.213797161614,0.785)); -#4688 = CARTESIAN_POINT('',(1.28519699465,0.785)); -#4689 = CARTESIAN_POINT('',(1.356596827686,0.785)); -#4690 = CARTESIAN_POINT('',(1.427996660723,0.785)); -#4691 = CARTESIAN_POINT('',(1.499396493759,0.785)); -#4692 = CARTESIAN_POINT('',(1.54699638245,0.785)); -#4693 = CARTESIAN_POINT('',(1.570796326795,0.785)); -#4694 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4695 = PCURVE('',#3716,#4696); -#4696 = DEFINITIONAL_REPRESENTATION('',(#4697),#4723); -#4697 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4698,#4699,#4700,#4701,#4702, - #4703,#4704,#4705,#4706,#4707,#4708,#4709,#4710,#4711,#4712,#4713, - #4714,#4715,#4716,#4717,#4718,#4719,#4720,#4721,#4722), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), - (4.712388980385,4.783788813421,4.855188646457,4.926588479493, - 4.997988312529,5.069388145565,5.140787978601,5.212187811638, - 5.283587644674,5.35498747771,5.426387310746,5.497787143782, - 5.569186976818,5.640586809854,5.711986642891,5.783386475927, - 5.854786308963,5.926186141999,5.997585975035,6.068985808071, - 6.140385641107,6.211785474143,6.28318530718),.QUASI_UNIFORM_KNOTS.); -#4698 = CARTESIAN_POINT('',(3.14159265359,0.E+000)); -#4699 = CARTESIAN_POINT('',(3.14159265359,2.379994434538E-002)); -#4700 = CARTESIAN_POINT('',(3.14159265359,7.139983303613E-002)); -#4701 = CARTESIAN_POINT('',(3.14159265359,0.142799666072)); -#4702 = CARTESIAN_POINT('',(3.14159265359,0.214199499108)); -#4703 = CARTESIAN_POINT('',(3.14159265359,0.285599332145)); -#4704 = CARTESIAN_POINT('',(3.14159265359,0.356999165181)); -#4705 = CARTESIAN_POINT('',(3.14159265359,0.428398998217)); -#4706 = CARTESIAN_POINT('',(3.14159265359,0.499798831253)); -#4707 = CARTESIAN_POINT('',(3.14159265359,0.571198664289)); -#4708 = CARTESIAN_POINT('',(3.14159265359,0.642598497325)); -#4709 = CARTESIAN_POINT('',(3.14159265359,0.713998330361)); -#4710 = CARTESIAN_POINT('',(3.14159265359,0.785398163397)); -#4711 = CARTESIAN_POINT('',(3.14159265359,0.856797996434)); -#4712 = CARTESIAN_POINT('',(3.14159265359,0.92819782947)); -#4713 = CARTESIAN_POINT('',(3.14159265359,0.999597662506)); -#4714 = CARTESIAN_POINT('',(3.14159265359,1.070997495542)); -#4715 = CARTESIAN_POINT('',(3.14159265359,1.142397328578)); -#4716 = CARTESIAN_POINT('',(3.14159265359,1.213797161614)); -#4717 = CARTESIAN_POINT('',(3.14159265359,1.28519699465)); -#4718 = CARTESIAN_POINT('',(3.14159265359,1.356596827686)); -#4719 = CARTESIAN_POINT('',(3.14159265359,1.427996660723)); -#4720 = CARTESIAN_POINT('',(3.14159265359,1.499396493759)); -#4721 = CARTESIAN_POINT('',(3.14159265359,1.54699638245)); -#4722 = CARTESIAN_POINT('',(3.14159265359,1.570796326795)); -#4723 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4724 = ORIENTED_EDGE('',*,*,#3780,.F.); -#4725 = ADVANCED_FACE('',(#4726),#3614,.T.); -#4726 = FACE_BOUND('',#4727,.T.); -#4727 = EDGE_LOOP('',(#4728,#4729,#4730,#4750)); -#4728 = ORIENTED_EDGE('',*,*,#4621,.T.); -#4729 = ORIENTED_EDGE('',*,*,#3831,.F.); -#4730 = ORIENTED_EDGE('',*,*,#4731,.F.); -#4731 = EDGE_CURVE('',#3265,#3810,#4732,.T.); -#4732 = SURFACE_CURVE('',#4733,(#4738,#4744),.PCURVE_S1.); -#4733 = CIRCLE('',#4734,1.5E-002); -#4734 = AXIS2_PLACEMENT_3D('',#4735,#4736,#4737); -#4735 = CARTESIAN_POINT('',(-0.785,0.385,1.5E-002)); -#4736 = DIRECTION('',(-0.E+000,1.,-2.22044604925E-016)); -#4737 = DIRECTION('',(-1.,-0.E+000,0.E+000)); -#4738 = PCURVE('',#3614,#4739); -#4739 = DEFINITIONAL_REPRESENTATION('',(#4740),#4743); -#4740 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4741,#4742),.UNSPECIFIED.,.F., - .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); -#4741 = CARTESIAN_POINT('',(4.712388980385,1.5E-002)); -#4742 = CARTESIAN_POINT('',(3.14159265359,1.5E-002)); -#4743 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4744 = PCURVE('',#3300,#4745); -#4745 = DEFINITIONAL_REPRESENTATION('',(#4746),#4749); -#4746 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4747,#4748),.UNSPECIFIED.,.F., - .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); -#4747 = CARTESIAN_POINT('',(3.14159265359,-1.570796326795)); -#4748 = CARTESIAN_POINT('',(3.14159265359,0.E+000)); -#4749 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4750 = ORIENTED_EDGE('',*,*,#3600,.F.); -#4751 = ADVANCED_FACE('',(#4752),#3253,.T.); -#4752 = FACE_BOUND('',#4753,.T.); -#4753 = EDGE_LOOP('',(#4754,#4755,#4756,#4757)); -#4754 = ORIENTED_EDGE('',*,*,#3237,.F.); -#4755 = ORIENTED_EDGE('',*,*,#4017,.F.); -#4756 = ORIENTED_EDGE('',*,*,#3343,.F.); -#4757 = ORIENTED_EDGE('',*,*,#4083,.F.); -#4758 = ADVANCED_FACE('',(#4759),#3716,.T.); -#4759 = FACE_BOUND('',#4760,.T.); -#4760 = EDGE_LOOP('',(#4761,#4762,#4763)); -#4761 = ORIENTED_EDGE('',*,*,#4659,.T.); -#4762 = ORIENTED_EDGE('',*,*,#3702,.T.); -#4763 = ORIENTED_EDGE('',*,*,#4764,.F.); -#4764 = EDGE_CURVE('',#3783,#3450,#4765,.T.); -#4765 = SURFACE_CURVE('',#4766,(#4771,#4777),.PCURVE_S1.); -#4766 = CIRCLE('',#4767,1.5E-002); -#4767 = AXIS2_PLACEMENT_3D('',#4768,#4769,#4770); -#4768 = CARTESIAN_POINT('',(-0.785,0.385,0.285)); -#4769 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#4770 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#4771 = PCURVE('',#3716,#4772); -#4772 = DEFINITIONAL_REPRESENTATION('',(#4773),#4776); -#4773 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4774,#4775),.UNSPECIFIED.,.F., - .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); -#4774 = CARTESIAN_POINT('',(3.14159265359,0.E+000)); -#4775 = CARTESIAN_POINT('',(1.570796326795,0.E+000)); -#4776 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4777 = PCURVE('',#3465,#4778); -#4778 = DEFINITIONAL_REPRESENTATION('',(#4779),#4782); -#4779 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4780,#4781),.UNSPECIFIED.,.F., - .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); -#4780 = CARTESIAN_POINT('',(4.712388980385,1.5E-002)); -#4781 = CARTESIAN_POINT('',(6.28318530718,1.5E-002)); -#4782 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4783 = ADVANCED_FACE('',(#4784),#3300,.T.); -#4784 = FACE_BOUND('',#4785,.T.); -#4785 = EDGE_LOOP('',(#4786,#4787,#4788)); -#4786 = ORIENTED_EDGE('',*,*,#3286,.T.); -#4787 = ORIENTED_EDGE('',*,*,#4731,.T.); -#4788 = ORIENTED_EDGE('',*,*,#4789,.F.); -#4789 = EDGE_CURVE('',#3206,#3810,#4790,.T.); -#4790 = SURFACE_CURVE('',#4791,(#4796,#4802),.PCURVE_S1.); -#4791 = CIRCLE('',#4792,1.5E-002); -#4792 = AXIS2_PLACEMENT_3D('',#4793,#4794,#4795); -#4793 = CARTESIAN_POINT('',(-0.785,0.385,1.5E-002)); -#4794 = DIRECTION('',(0.E+000,2.22044604925E-016,1.)); -#4795 = DIRECTION('',(0.E+000,1.,-2.22044604925E-016)); -#4796 = PCURVE('',#3300,#4797); -#4797 = DEFINITIONAL_REPRESENTATION('',(#4798),#4801); -#4798 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4799,#4800),.UNSPECIFIED.,.F., - .F.,(2,2),(0.E+000,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); -#4799 = CARTESIAN_POINT('',(1.570796326795,-1.156482317318E-016)); -#4800 = CARTESIAN_POINT('',(3.14159265359,-1.156482317318E-016)); -#4801 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4802 = PCURVE('',#3465,#4803); -#4803 = DEFINITIONAL_REPRESENTATION('',(#4804),#4807); -#4804 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4805,#4806),.UNSPECIFIED.,.F., - .F.,(2,2),(0.E+000,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); -#4805 = CARTESIAN_POINT('',(6.28318530718,0.285)); -#4806 = CARTESIAN_POINT('',(4.712388980385,0.285)); -#4807 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4808 = ADVANCED_FACE('',(#4809),#3465,.T.); -#4809 = FACE_BOUND('',#4810,.T.); -#4810 = EDGE_LOOP('',(#4811,#4812,#4813,#4814)); -#4811 = ORIENTED_EDGE('',*,*,#4764,.T.); -#4812 = ORIENTED_EDGE('',*,*,#3449,.F.); -#4813 = ORIENTED_EDGE('',*,*,#4789,.T.); -#4814 = ORIENTED_EDGE('',*,*,#3809,.F.); -#4815 = ADVANCED_FACE('',(#4816,#5323),#4846,.T.); -#4816 = FACE_BOUND('',#4817,.T.); -#4817 = EDGE_LOOP('',(#4818,#4880,#4919,#4958,#5013,#5060,#5115,#5154, - #5201,#5232,#5271,#5302)); -#4818 = ORIENTED_EDGE('',*,*,#4819,.F.); -#4819 = EDGE_CURVE('',#4820,#4822,#4824,.T.); -#4820 = VERTEX_POINT('',#4821); -#4821 = CARTESIAN_POINT('',(-7.247088587182E-002,0.27183186849,0.302)); -#4822 = VERTEX_POINT('',#4823); -#4823 = CARTESIAN_POINT('',(-3.609666090745E-002,0.205977543236,0.302)); -#4824 = SURFACE_CURVE('',#4825,(#4845,#4873),.PCURVE_S1.); -#4825 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4826,#4827,#4828,#4829,#4830, - #4831,#4832,#4833,#4834,#4835,#4836,#4837,#4838,#4839,#4840,#4841, - #4842,#4843,#4844),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,4.524912127705E-002,8.904597190023E-002, - 0.133753272651,0.179019764033,0.226220404522,0.276333290597, - 0.330501923748,0.389318397234,0.451843900854,0.517625875636, - 0.587611593084,0.660911148885,0.73911673359,0.821057935489, - 0.908156625983,1.),.UNSPECIFIED.); -#4826 = CARTESIAN_POINT('',(-7.247088587182E-002,0.27183186849,0.302)); -#4827 = CARTESIAN_POINT('',(-7.123111326146E-002,0.271789034478,0.302)); -#4828 = CARTESIAN_POINT('',(-6.87913585456E-002,0.271704741213,0.302)); -#4829 = CARTESIAN_POINT('',(-6.521400133993E-002,0.270829239128,0.302)); -#4830 = CARTESIAN_POINT('',(-6.181959741819E-002,0.269436686784,0.302)); -#4831 = CARTESIAN_POINT('',(-5.857759922046E-002,0.267513615395,0.302)); -#4832 = CARTESIAN_POINT('',(-5.558955412587E-002,0.264987154949,0.302)); -#4833 = CARTESIAN_POINT('',(-5.273272181847E-002,0.261974988972,0.302)); -#4834 = CARTESIAN_POINT('',(-5.006131531264E-002,0.258390048367,0.302)); -#4835 = CARTESIAN_POINT('',(-4.756613533398E-002,0.254282218988,0.302)); -#4836 = CARTESIAN_POINT('',(-4.52586527869E-002,0.249707537836,0.302)); -#4837 = CARTESIAN_POINT('',(-4.319491037047E-002,0.244685579719,0.302)); -#4838 = CARTESIAN_POINT('',(-4.14179624297E-002,0.239245226009,0.302)); -#4839 = CARTESIAN_POINT('',(-3.987653488647E-002,0.233383334155,0.302)); -#4840 = CARTESIAN_POINT('',(-3.854573071684E-002,0.227135373781,0.302)); -#4841 = CARTESIAN_POINT('',(-3.746397790014E-002,0.220456583909,0.302)); -#4842 = CARTESIAN_POINT('',(-3.665542932565E-002,0.213363880641,0.302)); -#4843 = CARTESIAN_POINT('',(-3.62861806139E-002,0.208482796667,0.302)); -#4844 = CARTESIAN_POINT('',(-3.609666090745E-002,0.205977543236,0.302)); -#4845 = PCURVE('',#4846,#4851); -#4846 = PLANE('',#4847); -#4847 = AXIS2_PLACEMENT_3D('',#4848,#4849,#4850); -#4848 = CARTESIAN_POINT('',(-4.381409378144E-002,0.246121943925,0.302)); -#4849 = DIRECTION('',(-5.581539966433E-014,-3.496937022928E-013,1.)); -#4850 = DIRECTION('',(0.E+000,-1.,-3.496937022928E-013)); -#4851 = DEFINITIONAL_REPRESENTATION('',(#4852),#4872); -#4852 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4853,#4854,#4855,#4856,#4857, - #4858,#4859,#4860,#4861,#4862,#4863,#4864,#4865,#4866,#4867,#4868, - #4869,#4870,#4871),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,4.524912127705E-002,8.904597190023E-002, - 0.133753272651,0.179019764033,0.226220404522,0.276333290597, - 0.330501923748,0.389318397234,0.451843900854,0.517625875636, - 0.587611593084,0.660911148885,0.73911673359,0.821057935489, - 0.908156625983,1.),.UNSPECIFIED.); -#4853 = CARTESIAN_POINT('',(-2.570992456448E-002,-2.865679209039E-002)); -#4854 = CARTESIAN_POINT('',(-2.566709055302E-002,-2.741701948003E-002)); -#4855 = CARTESIAN_POINT('',(-2.558279728778E-002,-2.497726476416E-002)); -#4856 = CARTESIAN_POINT('',(-2.470729520313E-002,-2.13999075585E-002)); -#4857 = CARTESIAN_POINT('',(-2.331474285863E-002,-1.800550363675E-002)); -#4858 = CARTESIAN_POINT('',(-2.139167147021E-002,-1.476350543903E-002)); -#4859 = CARTESIAN_POINT('',(-1.886521102367E-002,-1.177546034444E-002)); -#4860 = CARTESIAN_POINT('',(-1.585304504689E-002,-8.918628037039E-003)); -#4861 = CARTESIAN_POINT('',(-1.226810444187E-002,-6.247221531208E-003)); -#4862 = CARTESIAN_POINT('',(-8.160275062481E-003,-3.752041552545E-003)); -#4863 = CARTESIAN_POINT('',(-3.585593910492E-003,-1.444559005462E-003)); -#4864 = CARTESIAN_POINT('',(1.436364206355E-003,6.191834109706E-004)); -#4865 = CARTESIAN_POINT('',(6.876717915878E-003,2.396131351738E-003)); -#4866 = CARTESIAN_POINT('',(1.273860976969E-002,3.937558894963E-003)); -#4867 = CARTESIAN_POINT('',(1.898657014377E-002,5.268363064593E-003)); -#4868 = CARTESIAN_POINT('',(2.566536001595E-002,6.350115881294E-003)); -#4869 = CARTESIAN_POINT('',(3.27580632837E-002,7.158664455786E-003)); -#4870 = CARTESIAN_POINT('',(3.76391472582E-002,7.527913167532E-003)); -#4871 = CARTESIAN_POINT('',(4.014440068926E-002,7.717432873984E-003)); -#4872 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4873 = PCURVE('',#1798,#4874); -#4874 = DEFINITIONAL_REPRESENTATION('',(#4875),#4879); -#4875 = LINE('',#4876,#4877); -#4876 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#4877 = VECTOR('',#4878,1.); -#4878 = DIRECTION('',(1.,0.E+000)); -#4879 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4880 = ORIENTED_EDGE('',*,*,#4881,.F.); -#4881 = EDGE_CURVE('',#4882,#4820,#4884,.T.); -#4882 = VERTEX_POINT('',#4883); -#4883 = CARTESIAN_POINT('',(-0.104677766816,0.24266046035,0.302)); -#4884 = SURFACE_CURVE('',#4885,(#4897,#4912),.PCURVE_S1.); -#4885 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4886,#4887,#4888,#4889,#4890, - #4891,#4892,#4893,#4894,#4895,#4896),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.162869879318,0.309908072212,0.444611029049, - 0.566630874761,0.679290220773,0.787329317068,0.892674268692,1.), - .UNSPECIFIED.); -#4886 = CARTESIAN_POINT('',(-0.104677766816,0.24266046035,0.302)); -#4887 = CARTESIAN_POINT('',(-0.103670776854,0.244960208711,0.302)); -#4888 = CARTESIAN_POINT('',(-0.101754680893,0.249336159528,0.302)); -#4889 = CARTESIAN_POINT('',(-9.839592632308E-002,0.255320297364,0.302)); -#4890 = CARTESIAN_POINT('',(-9.478009908452E-002,0.260404284456,0.302)); -#4891 = CARTESIAN_POINT('',(-9.082335272275E-002,0.264520866709,0.302)); -#4892 = CARTESIAN_POINT('',(-8.666166759958E-002,0.267805334623,0.302)); -#4893 = CARTESIAN_POINT('',(-8.219684247592E-002,0.270172333349,0.302)); -#4894 = CARTESIAN_POINT('',(-7.740545369794E-002,0.271558280004,0.302)); -#4895 = CARTESIAN_POINT('',(-7.412592348181E-002,0.271740107823,0.302)); -#4896 = CARTESIAN_POINT('',(-7.247088587182E-002,0.27183186849,0.302)); -#4897 = PCURVE('',#4846,#4898); -#4898 = DEFINITIONAL_REPRESENTATION('',(#4899),#4911); -#4899 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4900,#4901,#4902,#4903,#4904, - #4905,#4906,#4907,#4908,#4909,#4910),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.162869879318,0.309908072212,0.444611029049, - 0.566630874761,0.679290220773,0.787329317068,0.892674268692,1.), - .UNSPECIFIED.); -#4900 = CARTESIAN_POINT('',(3.461483575258E-003,-6.086367303479E-002)); -#4901 = CARTESIAN_POINT('',(1.161735213633E-003,-5.985668307251E-002)); -#4902 = CARTESIAN_POINT('',(-3.214215602491E-003,-5.79405871114E-002)); -#4903 = CARTESIAN_POINT('',(-9.19835343927E-003,-5.458183254165E-002)); -#4904 = CARTESIAN_POINT('',(-1.428234053069E-002,-5.096600530309E-002)); -#4905 = CARTESIAN_POINT('',(-1.83989227834E-002,-4.700925894131E-002)); -#4906 = CARTESIAN_POINT('',(-2.168339069838E-002,-4.284757381814E-002)); -#4907 = CARTESIAN_POINT('',(-2.405038942414E-002,-3.838274869448E-002)); -#4908 = CARTESIAN_POINT('',(-2.543633607849E-002,-3.35913599165E-002)); -#4909 = CARTESIAN_POINT('',(-2.561816389771E-002,-3.031182970037E-002)); -#4910 = CARTESIAN_POINT('',(-2.570992456448E-002,-2.865679209039E-002)); -#4911 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4912 = PCURVE('',#2524,#4913); -#4913 = DEFINITIONAL_REPRESENTATION('',(#4914),#4918); -#4914 = LINE('',#4915,#4916); -#4915 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#4916 = VECTOR('',#4917,1.); -#4917 = DIRECTION('',(1.,0.E+000)); -#4918 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4919 = ORIENTED_EDGE('',*,*,#4920,.F.); -#4920 = EDGE_CURVE('',#4921,#4882,#4923,.T.); -#4921 = VERTEX_POINT('',#4922); -#4922 = CARTESIAN_POINT('',(-0.118414567475,0.13523559228,0.302)); -#4923 = SURFACE_CURVE('',#4924,(#4936,#4951),.PCURVE_S1.); -#4924 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4925,#4926,#4927,#4928,#4929, - #4930,#4931,#4932,#4933,#4934,#4935),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.163989851333,0.316278722645,0.457451380616, - 0.587186603505,0.706146478246,0.814209291838,0.9121060393,1.), - .UNSPECIFIED.); -#4925 = CARTESIAN_POINT('',(-0.118414567475,0.13523559228,0.302)); -#4926 = CARTESIAN_POINT('',(-0.11838332671,0.141187250373,0.302)); -#4927 = CARTESIAN_POINT('',(-0.118323074267,0.152665904716,0.302)); -#4928 = CARTESIAN_POINT('',(-0.117632979738,0.169255859138,0.302)); -#4929 = CARTESIAN_POINT('',(-0.116586134114,0.184580864208,0.302)); -#4930 = CARTESIAN_POINT('',(-0.115100658621,0.198653552692,0.302)); -#4931 = CARTESIAN_POINT('',(-0.113255858169,0.211475596551,0.302)); -#4932 = CARTESIAN_POINT('',(-0.110868853378,0.223025395741,0.302)); -#4933 = CARTESIAN_POINT('',(-0.108207837657,0.233369508231,0.302)); -#4934 = CARTESIAN_POINT('',(-0.105811450735,0.239676666687,0.302)); -#4935 = CARTESIAN_POINT('',(-0.104677766816,0.24266046035,0.302)); -#4936 = PCURVE('',#4846,#4937); -#4937 = DEFINITIONAL_REPRESENTATION('',(#4938),#4950); -#4938 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4939,#4940,#4941,#4942,#4943, - #4944,#4945,#4946,#4947,#4948,#4949),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.163989851333,0.316278722645,0.457451380616, - 0.587186603505,0.706146478246,0.814209291838,0.9121060393,1.), - .UNSPECIFIED.); -#4939 = CARTESIAN_POINT('',(0.110886351645,-7.460047369319E-002)); -#4940 = CARTESIAN_POINT('',(0.104934693552,-7.456923292845E-002)); -#4941 = CARTESIAN_POINT('',(9.345603920924E-002,-7.450898048548E-002)); -#4942 = CARTESIAN_POINT('',(7.686608478684E-002,-7.381888595625E-002)); -#4943 = CARTESIAN_POINT('',(6.154107971688E-002,-7.27720403323E-002)); -#4944 = CARTESIAN_POINT('',(4.746839123276E-002,-7.128656483925E-002)); -#4945 = CARTESIAN_POINT('',(3.464634737405E-002,-6.944176438763E-002)); -#4946 = CARTESIAN_POINT('',(2.309654818436E-002,-6.705475959653E-002)); -#4947 = CARTESIAN_POINT('',(1.275243569459E-002,-6.439374387597E-002)); -#4948 = CARTESIAN_POINT('',(6.445277237641E-003,-6.199735695312E-002)); -#4949 = CARTESIAN_POINT('',(3.461483575258E-003,-6.086367303479E-002)); -#4950 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4951 = PCURVE('',#2464,#4952); -#4952 = DEFINITIONAL_REPRESENTATION('',(#4953),#4957); -#4953 = LINE('',#4954,#4955); -#4954 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#4955 = VECTOR('',#4956,1.); -#4956 = DIRECTION('',(1.,0.E+000)); -#4957 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#4958 = ORIENTED_EDGE('',*,*,#4959,.F.); -#4959 = EDGE_CURVE('',#4960,#4921,#4962,.T.); -#4960 = VERTEX_POINT('',#4961); -#4961 = CARTESIAN_POINT('',(-7.33969623207E-002,1.170728373731E-002, - 0.302)); -#4962 = SURFACE_CURVE('',#4963,(#4983,#5006),.PCURVE_S1.); -#4963 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4964,#4965,#4966,#4967,#4968, - #4969,#4970,#4971,#4972,#4973,#4974,#4975,#4976,#4977,#4978,#4979, - #4980,#4981,#4982),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,3.453861246837E-002,6.844561282317E-002, - 0.103088374418,0.139789540524,0.179459960852,0.222893209036, - 0.270937746377,0.323550473319,0.381968236977,0.447495048941, - 0.520046487774,0.600261744899,0.688395601747,0.784195893454, - 0.888150015606,1.),.UNSPECIFIED.); -#4964 = CARTESIAN_POINT('',(-7.33969623207E-002,1.170728373731E-002, - 0.302)); -#4965 = CARTESIAN_POINT('',(-7.503519306888E-002,1.179837087237E-002, - 0.302)); -#4966 = CARTESIAN_POINT('',(-7.828169602576E-002,1.197887942017E-002, - 0.302)); -#4967 = CARTESIAN_POINT('',(-8.301127451811E-002,1.337325584046E-002, - 0.302)); -#4968 = CARTESIAN_POINT('',(-8.744754199493E-002,1.570485771974E-002, - 0.302)); -#4969 = CARTESIAN_POINT('',(-9.164713313458E-002,1.89063949484E-002, - 0.302)); -#4970 = CARTESIAN_POINT('',(-9.564021982336E-002,2.296827736628E-002, - 0.302)); -#4971 = CARTESIAN_POINT('',(-9.933405102836E-002,2.798538248297E-002, - 0.302)); -#4972 = CARTESIAN_POINT('',(-0.102813411505,3.386929490553E-002,0.302)); -#4973 = CARTESIAN_POINT('',(-0.106076879017,4.067427145078E-002,0.302)); -#4974 = CARTESIAN_POINT('',(-0.109014183169,4.851860853335E-002,0.302)); -#4975 = CARTESIAN_POINT('',(-0.111553474109,5.74850114879E-002,0.302)); -#4976 = CARTESIAN_POINT('',(-0.113696339584,6.761074995223E-002,0.302)); -#4977 = CARTESIAN_POINT('',(-0.115402755346,7.890129237136E-002,0.302)); -#4978 = CARTESIAN_POINT('',(-0.116786851914,9.134346423712E-002,0.302)); -#4979 = CARTESIAN_POINT('',(-0.117740632709,0.104954001708,0.302)); -#4980 = CARTESIAN_POINT('',(-0.118292934223,0.119710594478,0.302)); -#4981 = CARTESIAN_POINT('',(-0.118373046011,0.129935885028,0.302)); -#4982 = CARTESIAN_POINT('',(-0.118414567475,0.13523559228,0.302)); -#4983 = PCURVE('',#4846,#4984); -#4984 = DEFINITIONAL_REPRESENTATION('',(#4985),#5005); -#4985 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4986,#4987,#4988,#4989,#4990, - #4991,#4992,#4993,#4994,#4995,#4996,#4997,#4998,#4999,#5000,#5001, - #5002,#5003,#5004),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,3.453861246837E-002,6.844561282317E-002, - 0.103088374418,0.139789540524,0.179459960852,0.222893209036, - 0.270937746377,0.323550473319,0.381968236977,0.447495048941, - 0.520046487774,0.600261744899,0.688395601747,0.784195893454, - 0.888150015606,1.),.UNSPECIFIED.); -#4986 = CARTESIAN_POINT('',(0.234414660188,-2.958286853927E-002)); -#4987 = CARTESIAN_POINT('',(0.234323573053,-3.122109928745E-002)); -#4988 = CARTESIAN_POINT('',(0.234143064505,-3.446760224432E-002)); -#4989 = CARTESIAN_POINT('',(0.232748688085,-3.919718073667E-002)); -#4990 = CARTESIAN_POINT('',(0.230417086205,-4.36334482135E-002)); -#4991 = CARTESIAN_POINT('',(0.227215548977,-4.783303935314E-002)); -#4992 = CARTESIAN_POINT('',(0.223153666559,-5.182612604193E-002)); -#4993 = CARTESIAN_POINT('',(0.218136561442,-5.551995724693E-002)); -#4994 = CARTESIAN_POINT('',(0.21225264902,-5.899931772338E-002)); -#4995 = CARTESIAN_POINT('',(0.205447672474,-6.226278523562E-002)); -#4996 = CARTESIAN_POINT('',(0.197603335392,-6.52000893873E-002)); -#4997 = CARTESIAN_POINT('',(0.188636932437,-6.773938032776E-002)); -#4998 = CARTESIAN_POINT('',(0.178511193973,-6.988224580222E-002)); -#4999 = CARTESIAN_POINT('',(0.167220651554,-7.158866156426E-002)); -#5000 = CARTESIAN_POINT('',(0.154778479688,-7.297275813208E-002)); -#5001 = CARTESIAN_POINT('',(0.141167942217,-7.392653892773E-002)); -#5002 = CARTESIAN_POINT('',(0.126411349447,-7.447884044135E-002)); -#5003 = CARTESIAN_POINT('',(0.116186058897,-7.455895222986E-002)); -#5004 = CARTESIAN_POINT('',(0.110886351645,-7.460047369319E-002)); -#5005 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5006 = PCURVE('',#2386,#5007); -#5007 = DEFINITIONAL_REPRESENTATION('',(#5008),#5012); -#5008 = LINE('',#5009,#5010); -#5009 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5010 = VECTOR('',#5011,1.); -#5011 = DIRECTION('',(1.,0.E+000)); -#5012 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5013 = ORIENTED_EDGE('',*,*,#5014,.F.); -#5014 = EDGE_CURVE('',#5015,#4960,#5017,.T.); -#5015 = VERTEX_POINT('',#5016); -#5016 = CARTESIAN_POINT('',(-3.280394464476E-002,9.958164899777E-002, - 0.302)); -#5017 = SURFACE_CURVE('',#5018,(#5034,#5053),.PCURVE_S1.); -#5018 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5019,#5020,#5021,#5022,#5023, - #5024,#5025,#5026,#5027,#5028,#5029,#5030,#5031,#5032,#5033), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 0.113221785558,0.222436171247,0.328940652496,0.432255130071, - 0.529309240576,0.617114144544,0.696232162944,0.767885488567, - 0.832331289029,0.89049783785,0.945727959046,1.),.UNSPECIFIED.); -#5019 = CARTESIAN_POINT('',(-3.280394464476E-002,9.958164899777E-002, - 0.302)); -#5020 = CARTESIAN_POINT('',(-3.285068247282E-002,9.561742574692E-002, - 0.302)); -#5021 = CARTESIAN_POINT('',(-3.294250387868E-002,8.7829289943E-002,0.302 - )); -#5022 = CARTESIAN_POINT('',(-3.403991993243E-002,7.635791051934E-002, - 0.302)); -#5023 = CARTESIAN_POINT('',(-3.563885897094E-002,6.530119069559E-002, - 0.302)); -#5024 = CARTESIAN_POINT('',(-3.79324977146E-002,5.47980996706E-002,0.302 - )); -#5025 = CARTESIAN_POINT('',(-4.075645693448E-002,4.510629695093E-002, - 0.302)); -#5026 = CARTESIAN_POINT('',(-4.405403756395E-002,3.64614537813E-002, - 0.302)); -#5027 = CARTESIAN_POINT('',(-4.78912469162E-002,2.901693830372E-002, - 0.302)); -#5028 = CARTESIAN_POINT('',(-5.226403765844E-002,2.285668660356E-002, - 0.302)); -#5029 = CARTESIAN_POINT('',(-5.698235805124E-002,1.790570256346E-002, - 0.302)); -#5030 = CARTESIAN_POINT('',(-6.213476331485E-002,1.435456584981E-002, - 0.302)); -#5031 = CARTESIAN_POINT('',(-6.76423631163E-002,1.207195031537E-002, - 0.302)); -#5032 = CARTESIAN_POINT('',(-7.148998406786E-002,1.182812816265E-002, - 0.302)); -#5033 = CARTESIAN_POINT('',(-7.33969623207E-002,1.170728373731E-002, - 0.302)); -#5034 = PCURVE('',#4846,#5035); -#5035 = DEFINITIONAL_REPRESENTATION('',(#5036),#5052); -#5036 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5037,#5038,#5039,#5040,#5041, - #5042,#5043,#5044,#5045,#5046,#5047,#5048,#5049,#5050,#5051), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 0.113221785558,0.222436171247,0.328940652496,0.432255130071, - 0.529309240576,0.617114144544,0.696232162944,0.767885488567, - 0.832331289029,0.89049783785,0.945727959046,1.),.UNSPECIFIED.); -#5037 = CARTESIAN_POINT('',(0.146540294927,1.101014913667E-002)); -#5038 = CARTESIAN_POINT('',(0.150504518178,1.096341130862E-002)); -#5039 = CARTESIAN_POINT('',(0.158292653982,1.087158990275E-002)); -#5040 = CARTESIAN_POINT('',(0.169764033406,9.774173849005E-003)); -#5041 = CARTESIAN_POINT('',(0.18082075323,8.175234810494E-003)); -#5042 = CARTESIAN_POINT('',(0.191323844254,5.881596066835E-003)); -#5043 = CARTESIAN_POINT('',(0.201015646974,3.057636846953E-003)); -#5044 = CARTESIAN_POINT('',(0.209660490144,-2.399437825131E-004)); -#5045 = CARTESIAN_POINT('',(0.217105005621,-4.077153134767E-003)); -#5046 = CARTESIAN_POINT('',(0.223265257322,-8.449943877001E-003)); -#5047 = CARTESIAN_POINT('',(0.228216241362,-1.316826426981E-002)); -#5048 = CARTESIAN_POINT('',(0.231767378075,-1.832066953342E-002)); -#5049 = CARTESIAN_POINT('',(0.23404999361,-2.382826933486E-002)); -#5050 = CARTESIAN_POINT('',(0.234293815762,-2.767589028642E-002)); -#5051 = CARTESIAN_POINT('',(0.234414660188,-2.958286853927E-002)); -#5052 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5053 = PCURVE('',#2300,#5054); -#5054 = DEFINITIONAL_REPRESENTATION('',(#5055),#5059); -#5055 = LINE('',#5056,#5057); -#5056 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5057 = VECTOR('',#5058,1.); -#5058 = DIRECTION('',(1.,0.E+000)); -#5059 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5060 = ORIENTED_EDGE('',*,*,#5061,.F.); -#5061 = EDGE_CURVE('',#5062,#5015,#5064,.T.); -#5062 = VERTEX_POINT('',#5063); -#5063 = CARTESIAN_POINT('',(-7.077307904887E-002,0.182928529397,0.302)); -#5064 = SURFACE_CURVE('',#5065,(#5085,#5108),.PCURVE_S1.); -#5065 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5066,#5067,#5068,#5069,#5070, - #5071,#5072,#5073,#5074,#5075,#5076,#5077,#5078,#5079,#5080,#5081, - #5082,#5083,#5084),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,3.910024550704E-002,7.852987763084E-002, - 0.118928225578,0.162015044301,0.208996859298,0.25998844003, - 0.31644188856,0.37843020031,0.444681646177,0.513469132587, - 0.585628807811,0.660965273436,0.739817703829,0.822305805272, - 0.909147543882,1.),.UNSPECIFIED.); -#5066 = CARTESIAN_POINT('',(-7.077307904887E-002,0.182928529397,0.302)); -#5067 = CARTESIAN_POINT('',(-6.94803309952E-002,0.18285716252,0.302)); -#5068 = CARTESIAN_POINT('',(-6.688394457495E-002,0.18271382756,0.302)); -#5069 = CARTESIAN_POINT('',(-6.307157847479E-002,0.181604615714,0.302)); -#5070 = CARTESIAN_POINT('',(-5.948510645375E-002,0.179664997778,0.302)); -#5071 = CARTESIAN_POINT('',(-5.597967444796E-002,0.177128289029,0.302)); -#5072 = CARTESIAN_POINT('',(-5.271880050748E-002,0.173775202627,0.302)); -#5073 = CARTESIAN_POINT('',(-4.954265377184E-002,0.169772586474,0.302)); -#5074 = CARTESIAN_POINT('',(-4.658699436977E-002,0.165005793496,0.302)); -#5075 = CARTESIAN_POINT('',(-4.379752068548E-002,0.159574745355,0.302)); -#5076 = CARTESIAN_POINT('',(-4.118311321929E-002,0.153607508054,0.302)); -#5077 = CARTESIAN_POINT('',(-3.891957625667E-002,0.1471403943,0.302)); -#5078 = CARTESIAN_POINT('',(-3.702594451799E-002,0.140244693784,0.302)); -#5079 = CARTESIAN_POINT('',(-3.550503685029E-002,0.132919318513,0.302)); -#5080 = CARTESIAN_POINT('',(-3.425880330968E-002,0.125196618046,0.302)); -#5081 = CARTESIAN_POINT('',(-3.339929777312E-002,0.117038907652,0.302)); -#5082 = CARTESIAN_POINT('',(-3.287637911946E-002,0.108454970433,0.302)); -#5083 = CARTESIAN_POINT('',(-3.282845007022E-002,0.102583596867,0.302)); -#5084 = CARTESIAN_POINT('',(-3.280394464476E-002,9.958164899777E-002, - 0.302)); -#5085 = PCURVE('',#4846,#5086); -#5086 = DEFINITIONAL_REPRESENTATION('',(#5087),#5107); -#5087 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5088,#5089,#5090,#5091,#5092, - #5093,#5094,#5095,#5096,#5097,#5098,#5099,#5100,#5101,#5102,#5103, - #5104,#5105,#5106),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,3.910024550704E-002,7.852987763084E-002, - 0.118928225578,0.162015044301,0.208996859298,0.25998844003, - 0.31644188856,0.37843020031,0.444681646177,0.513469132587, - 0.585628807811,0.660965273436,0.739817703829,0.822305805272, - 0.909147543882,1.),.UNSPECIFIED.); -#5088 = CARTESIAN_POINT('',(6.319341452806E-002,-2.695898526744E-002)); -#5089 = CARTESIAN_POINT('',(6.326478140503E-002,-2.566623721376E-002)); -#5090 = CARTESIAN_POINT('',(6.340811636476E-002,-2.306985079352E-002)); -#5091 = CARTESIAN_POINT('',(6.451732821118E-002,-1.925748469336E-002)); -#5092 = CARTESIAN_POINT('',(6.645694614692E-002,-1.567101267231E-002)); -#5093 = CARTESIAN_POINT('',(6.899365489633E-002,-1.216558066652E-002)); -#5094 = CARTESIAN_POINT('',(7.234674129808E-002,-8.904706726048E-003)); -#5095 = CARTESIAN_POINT('',(7.634935745131E-002,-5.7285599904E-003)); -#5096 = CARTESIAN_POINT('',(8.111615042933E-002,-2.772900588332E-003)); -#5097 = CARTESIAN_POINT('',(8.654719857003E-002,1.657309596061E-005)); -#5098 = CARTESIAN_POINT('',(9.251443587153E-002,2.630980562148E-003)); -#5099 = CARTESIAN_POINT('',(9.898154962501E-002,4.894517524768E-003)); -#5100 = CARTESIAN_POINT('',(0.105877250141,6.788149263441E-003)); -#5101 = CARTESIAN_POINT('',(0.113202625412,8.309056931143E-003)); -#5102 = CARTESIAN_POINT('',(0.120925325879,9.555290471759E-003)); -#5103 = CARTESIAN_POINT('',(0.129083036274,1.041479600832E-002)); -#5104 = CARTESIAN_POINT('',(0.137666973492,1.093771466198E-002)); -#5105 = CARTESIAN_POINT('',(0.143538347058,1.098564371122E-002)); -#5106 = CARTESIAN_POINT('',(0.146540294927,1.101014913667E-002)); -#5107 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5108 = PCURVE('',#2214,#5109); -#5109 = DEFINITIONAL_REPRESENTATION('',(#5110),#5114); -#5110 = LINE('',#5111,#5112); -#5111 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5112 = VECTOR('',#5113,1.); -#5113 = DIRECTION('',(1.,0.E+000)); -#5114 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5115 = ORIENTED_EDGE('',*,*,#5116,.F.); -#5116 = EDGE_CURVE('',#5117,#5062,#5119,.T.); -#5117 = VERTEX_POINT('',#5118); -#5118 = CARTESIAN_POINT('',(-0.101950986161,0.149075290321,0.302)); -#5119 = SURFACE_CURVE('',#5120,(#5132,#5147),.PCURVE_S1.); -#5120 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5121,#5122,#5123,#5124,#5125, - #5126,#5127,#5128,#5129,#5130,#5131),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.175283835451,0.332299704078,0.472554810512, - 0.598639509241,0.711841262423,0.814222371193,0.907964348435,1.), - .UNSPECIFIED.); -#5121 = CARTESIAN_POINT('',(-0.101950986161,0.149075290321,0.302)); -#5122 = CARTESIAN_POINT('',(-0.100981265585,0.151766974481,0.302)); -#5123 = CARTESIAN_POINT('',(-9.914288807753E-002,0.156869817235,0.302)); -#5124 = CARTESIAN_POINT('',(-9.588301419346E-002,0.163875713967,0.302)); -#5125 = CARTESIAN_POINT('',(-9.22244228133E-002,0.169757395329,0.302)); -#5126 = CARTESIAN_POINT('',(-8.826602994823E-002,0.174548849623,0.302)); -#5127 = CARTESIAN_POINT('',(-8.406865128987E-002,0.17825714053,0.302)); -#5128 = CARTESIAN_POINT('',(-7.977593951963E-002,0.180948913511,0.302)); -#5129 = CARTESIAN_POINT('',(-7.531736418141E-002,0.182628824989,0.302)); -#5130 = CARTESIAN_POINT('',(-7.227853711233E-002,0.182829241521,0.302)); -#5131 = CARTESIAN_POINT('',(-7.077307904887E-002,0.182928529397,0.302)); -#5132 = PCURVE('',#4846,#5133); -#5133 = DEFINITIONAL_REPRESENTATION('',(#5134),#5146); -#5134 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5135,#5136,#5137,#5138,#5139, - #5140,#5141,#5142,#5143,#5144,#5145),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.175283835451,0.332299704078,0.472554810512, - 0.598639509241,0.711841262423,0.814222371193,0.907964348435,1.), - .UNSPECIFIED.); -#5135 = CARTESIAN_POINT('',(9.704665360381E-002,-5.813689237976E-002)); -#5136 = CARTESIAN_POINT('',(9.435496944446E-002,-5.716717180354E-002)); -#5137 = CARTESIAN_POINT('',(8.925212669047E-002,-5.53287942961E-002)); -#5138 = CARTESIAN_POINT('',(8.224622995797E-002,-5.206892041202E-002)); -#5139 = CARTESIAN_POINT('',(7.63645485965E-002,-4.841032903187E-002)); -#5140 = CARTESIAN_POINT('',(7.157309430174E-002,-4.44519361668E-002)); -#5141 = CARTESIAN_POINT('',(6.786480339515E-002,-4.025455750843E-002)); -#5142 = CARTESIAN_POINT('',(6.517303041366E-002,-3.596184573819E-002)); -#5143 = CARTESIAN_POINT('',(6.349311893576E-002,-3.150327039997E-002)); -#5144 = CARTESIAN_POINT('',(6.329270240373E-002,-2.846444333089E-002)); -#5145 = CARTESIAN_POINT('',(6.319341452806E-002,-2.695898526744E-002)); -#5146 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5147 = PCURVE('',#2136,#5148); -#5148 = DEFINITIONAL_REPRESENTATION('',(#5149),#5153); -#5149 = LINE('',#5150,#5151); -#5150 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5151 = VECTOR('',#5152,1.); -#5152 = DIRECTION('',(1.,0.E+000)); -#5153 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5154 = ORIENTED_EDGE('',*,*,#5155,.F.); -#5155 = EDGE_CURVE('',#5156,#5117,#5158,.T.); -#5156 = VERTEX_POINT('',#5157); -#5157 = CARTESIAN_POINT('',(-8.795694204477E-002,0.234583015768,0.302)); -#5158 = SURFACE_CURVE('',#5159,(#5175,#5194),.PCURVE_S1.); -#5159 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5160,#5161,#5162,#5163,#5164, - #5165,#5166,#5167,#5168,#5169,#5170,#5171,#5172,#5173,#5174), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 6.999263450657E-002,0.151179237049,0.244049347772,0.348788670798, - 0.406942105318,0.471758334761,0.54342234969,0.62140343022, - 0.705702457219,0.796988044797,0.895268939323,1.),.UNSPECIFIED.); -#5160 = CARTESIAN_POINT('',(-8.795694204477E-002,0.234583015768,0.302)); -#5161 = CARTESIAN_POINT('',(-8.888361475323E-002,0.232763596739,0.302)); -#5162 = CARTESIAN_POINT('',(-9.088516354541E-002,0.228833777801,0.302)); -#5163 = CARTESIAN_POINT('',(-9.332785897335E-002,0.222137746434,0.302)); -#5164 = CARTESIAN_POINT('',(-9.569383979249E-002,0.214361845903,0.302)); -#5165 = CARTESIAN_POINT('',(-9.74353279371E-002,0.207108129224,0.302)); -#5166 = CARTESIAN_POINT('',(-9.874307831626E-002,0.200598815029,0.302)); -#5167 = CARTESIAN_POINT('',(-9.953147433189E-002,0.194978001803,0.302)); -#5168 = CARTESIAN_POINT('',(-0.10024490812,0.188767583757,0.302)); -#5169 = CARTESIAN_POINT('',(-0.100872076625,0.1819760159,0.302)); -#5170 = CARTESIAN_POINT('',(-0.101308082223,0.174597013261,0.302)); -#5171 = CARTESIAN_POINT('',(-0.101684829699,0.166622579517,0.302)); -#5172 = CARTESIAN_POINT('',(-0.101869339229,0.158045301859,0.302)); -#5173 = CARTESIAN_POINT('',(-0.101923200088,0.152127963409,0.302)); -#5174 = CARTESIAN_POINT('',(-0.101950986161,0.149075290321,0.302)); -#5175 = PCURVE('',#4846,#5176); -#5176 = DEFINITIONAL_REPRESENTATION('',(#5177),#5193); -#5177 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5178,#5179,#5180,#5181,#5182, - #5183,#5184,#5185,#5186,#5187,#5188,#5189,#5190,#5191,#5192), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 6.999263450657E-002,0.151179237049,0.244049347772,0.348788670798, - 0.406942105318,0.471758334761,0.54342234969,0.62140343022, - 0.705702457219,0.796988044797,0.895268939323,1.),.UNSPECIFIED.); -#5178 = CARTESIAN_POINT('',(1.153892815716E-002,-4.414284826334E-002)); -#5179 = CARTESIAN_POINT('',(1.335834718593E-002,-4.506952097179E-002)); -#5180 = CARTESIAN_POINT('',(1.728816612447E-002,-4.707106976398E-002)); -#5181 = CARTESIAN_POINT('',(2.398419749061E-002,-4.951376519191E-002)); -#5182 = CARTESIAN_POINT('',(3.17600980219E-002,-5.187974601105E-002)); -#5183 = CARTESIAN_POINT('',(3.901381470099E-002,-5.362123415567E-002)); -#5184 = CARTESIAN_POINT('',(4.552312889648E-002,-5.492898453483E-002)); -#5185 = CARTESIAN_POINT('',(5.11439421221E-002,-5.571738055045E-002)); -#5186 = CARTESIAN_POINT('',(5.735436016788E-002,-5.643081433853E-002)); -#5187 = CARTESIAN_POINT('',(6.414592802529E-002,-5.705798284338E-002)); -#5188 = CARTESIAN_POINT('',(7.152493066432E-002,-5.749398844156E-002)); -#5189 = CARTESIAN_POINT('',(7.949936440805E-002,-5.787073591782E-002)); -#5190 = CARTESIAN_POINT('',(8.807664206632E-002,-5.805524544733E-002)); -#5191 = CARTESIAN_POINT('',(9.399398051578E-002,-5.810910630698E-002)); -#5192 = CARTESIAN_POINT('',(9.704665360381E-002,-5.813689237976E-002)); -#5193 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5194 = PCURVE('',#2066,#5195); -#5195 = DEFINITIONAL_REPRESENTATION('',(#5196),#5200); -#5196 = LINE('',#5197,#5198); -#5197 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5198 = VECTOR('',#5199,1.); -#5199 = DIRECTION('',(1.,0.E+000)); -#5200 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5201 = ORIENTED_EDGE('',*,*,#5202,.F.); -#5202 = EDGE_CURVE('',#5203,#5156,#5205,.T.); -#5203 = VERTEX_POINT('',#5204); -#5204 = CARTESIAN_POINT('',(-7.355130839552E-002,0.242197422125,0.302)); -#5205 = SURFACE_CURVE('',#5206,(#5214,#5225),.PCURVE_S1.); -#5206 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5207,#5208,#5209,#5210,#5211, - #5212,#5213),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.E+000, - 0.216987327124,0.448781830899,0.706307716581,1.),.UNSPECIFIED.); -#5207 = CARTESIAN_POINT('',(-7.355130839552E-002,0.242197422125,0.302)); -#5208 = CARTESIAN_POINT('',(-7.47661802925E-002,0.242107786486,0.302)); -#5209 = CARTESIAN_POINT('',(-7.727882672887E-002,0.241922398486,0.302)); -#5210 = CARTESIAN_POINT('',(-8.09424305875E-002,0.240323687502,0.302)); -#5211 = CARTESIAN_POINT('',(-8.46128525046E-002,0.237923041082,0.302)); -#5212 = CARTESIAN_POINT('',(-8.679453093945E-002,0.235744014141,0.302)); -#5213 = CARTESIAN_POINT('',(-8.795694204477E-002,0.234583015768,0.302)); -#5214 = PCURVE('',#4846,#5215); -#5215 = DEFINITIONAL_REPRESENTATION('',(#5216),#5224); -#5216 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5217,#5218,#5219,#5220,#5221, - #5222,#5223),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.E+000, - 0.216987327124,0.448781830899,0.706307716581,1.),.UNSPECIFIED.); -#5217 = CARTESIAN_POINT('',(3.924521799699E-003,-2.973721461408E-002)); -#5218 = CARTESIAN_POINT('',(4.014157439452E-003,-3.095208651106E-002)); -#5219 = CARTESIAN_POINT('',(4.199545439088E-003,-3.346473294743E-002)); -#5220 = CARTESIAN_POINT('',(5.798256422922E-003,-3.712833680607E-002)); -#5221 = CARTESIAN_POINT('',(8.198902843557E-003,-4.079875872316E-002)); -#5222 = CARTESIAN_POINT('',(1.037792978378E-002,-4.298043715802E-002)); -#5223 = CARTESIAN_POINT('',(1.153892815716E-002,-4.414284826334E-002)); -#5224 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5225 = PCURVE('',#2004,#5226); -#5226 = DEFINITIONAL_REPRESENTATION('',(#5227),#5231); -#5227 = LINE('',#5228,#5229); -#5228 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5229 = VECTOR('',#5230,1.); -#5230 = DIRECTION('',(1.,0.E+000)); -#5231 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5232 = ORIENTED_EDGE('',*,*,#5233,.F.); -#5233 = EDGE_CURVE('',#5234,#5203,#5236,.T.); -#5234 = VERTEX_POINT('',#5235); -#5235 = CARTESIAN_POINT('',(-5.832249568059E-002,0.229026557075,0.302)); -#5236 = SURFACE_CURVE('',#5237,(#5249,#5264),.PCURVE_S1.); -#5237 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5238,#5239,#5240,#5241,#5242, - #5243,#5244,#5245,#5246,#5247,#5248),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.16327665571,0.310892172789,0.44681935319, - 0.569906175247,0.684023518813,0.789987372117,0.89559207171,1.), - .UNSPECIFIED.); -#5238 = CARTESIAN_POINT('',(-5.832249568059E-002,0.229026557075,0.302)); -#5239 = CARTESIAN_POINT('',(-5.884028457047E-002,0.230062546245,0.302)); -#5240 = CARTESIAN_POINT('',(-5.982619717581E-002,0.232035154777,0.302)); -#5241 = CARTESIAN_POINT('',(-6.145963268323E-002,0.234760556423,0.302)); -#5242 = CARTESIAN_POINT('',(-6.327103375237E-002,0.237013087029,0.302)); -#5243 = CARTESIAN_POINT('',(-6.512274675376E-002,0.238914427285,0.302)); -#5244 = CARTESIAN_POINT('',(-6.709097498585E-002,0.240365285804,0.302)); -#5245 = CARTESIAN_POINT('',(-6.914569465816E-002,0.241442329562,0.302)); -#5246 = CARTESIAN_POINT('',(-7.131901586453E-002,0.242074823052,0.302)); -#5247 = CARTESIAN_POINT('',(-7.281004312541E-002,0.242156711316,0.302)); -#5248 = CARTESIAN_POINT('',(-7.355130839552E-002,0.242197422125,0.302)); -#5249 = PCURVE('',#4846,#5250); -#5250 = DEFINITIONAL_REPRESENTATION('',(#5251),#5263); -#5251 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5252,#5253,#5254,#5255,#5256, - #5257,#5258,#5259,#5260,#5261,#5262),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.16327665571,0.310892172789,0.44681935319, - 0.569906175247,0.684023518813,0.789987372117,0.89559207171,1.), - .UNSPECIFIED.); -#5252 = CARTESIAN_POINT('',(1.709538685045E-002,-1.450840189915E-002)); -#5253 = CARTESIAN_POINT('',(1.60593976801E-002,-1.502619078903E-002)); -#5254 = CARTESIAN_POINT('',(1.408678914796E-002,-1.601210339437E-002)); -#5255 = CARTESIAN_POINT('',(1.136138750165E-002,-1.76455389018E-002)); -#5256 = CARTESIAN_POINT('',(9.10885689618E-003,-1.945693997093E-002)); -#5257 = CARTESIAN_POINT('',(7.207516640509E-003,-2.130865297232E-002)); -#5258 = CARTESIAN_POINT('',(5.756658121571E-003,-2.327688120442E-002)); -#5259 = CARTESIAN_POINT('',(4.679614362819E-003,-2.533160087673E-002)); -#5260 = CARTESIAN_POINT('',(4.047120873186E-003,-2.75049220831E-002)); -#5261 = CARTESIAN_POINT('',(3.965232608906E-003,-2.899594934398E-002)); -#5262 = CARTESIAN_POINT('',(3.924521799699E-003,-2.973721461408E-002)); -#5263 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5264 = PCURVE('',#1950,#5265); -#5265 = DEFINITIONAL_REPRESENTATION('',(#5266),#5270); -#5266 = LINE('',#5267,#5268); -#5267 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5268 = VECTOR('',#5269,1.); -#5269 = DIRECTION('',(1.,0.E+000)); -#5270 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5271 = ORIENTED_EDGE('',*,*,#5272,.F.); -#5272 = EDGE_CURVE('',#5273,#5234,#5275,.T.); -#5273 = VERTEX_POINT('',#5274); -#5274 = CARTESIAN_POINT('',(-5.256024222089E-002,0.202684826973,0.302)); -#5275 = SURFACE_CURVE('',#5276,(#5284,#5295),.PCURVE_S1.); -#5276 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5277,#5278,#5279,#5280,#5281, - #5282,#5283),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.E+000, - 0.31467797743,0.585132279047,0.813474950365,1.),.UNSPECIFIED.); -#5277 = CARTESIAN_POINT('',(-5.256024222089E-002,0.202684826973,0.302)); -#5278 = CARTESIAN_POINT('',(-5.291623792002E-002,0.205500322404,0.302)); -#5279 = CARTESIAN_POINT('',(-5.35781990031E-002,0.210735633982,0.302)); -#5280 = CARTESIAN_POINT('',(-5.48055694023E-002,0.217971193731,0.302)); -#5281 = CARTESIAN_POINT('',(-5.635002442134E-002,0.22397092699,0.302)); -#5282 = CARTESIAN_POINT('',(-5.77107236116E-002,0.227458527496,0.302)); -#5283 = CARTESIAN_POINT('',(-5.832249568059E-002,0.229026557075,0.302)); -#5284 = PCURVE('',#4846,#5285); -#5285 = DEFINITIONAL_REPRESENTATION('',(#5286),#5294); -#5286 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5287,#5288,#5289,#5290,#5291, - #5292,#5293),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.E+000, - 0.31467797743,0.585132279047,0.813474950365,1.),.UNSPECIFIED.); -#5287 = CARTESIAN_POINT('',(4.343711695194E-002,-8.746148439451E-003)); -#5288 = CARTESIAN_POINT('',(4.062162152065E-002,-9.102144138581E-003)); -#5289 = CARTESIAN_POINT('',(3.538630994335E-002,-9.764105221668E-003)); -#5290 = CARTESIAN_POINT('',(2.815075019405E-002,-1.099147562086E-002)); -#5291 = CARTESIAN_POINT('',(2.215101693478E-002,-1.25359306399E-002)); -#5292 = CARTESIAN_POINT('',(1.866341642868E-002,-1.389662983017E-002)); -#5293 = CARTESIAN_POINT('',(1.709538685045E-002,-1.450840189915E-002)); -#5294 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5295 = PCURVE('',#1896,#5296); -#5296 = DEFINITIONAL_REPRESENTATION('',(#5297),#5301); -#5297 = LINE('',#5298,#5299); -#5298 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5299 = VECTOR('',#5300,1.); -#5300 = DIRECTION('',(1.,0.E+000)); -#5301 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5302 = ORIENTED_EDGE('',*,*,#5303,.F.); -#5303 = EDGE_CURVE('',#4822,#5273,#5304,.T.); -#5304 = SURFACE_CURVE('',#5305,(#5309,#5316),.PCURVE_S1.); -#5305 = LINE('',#5306,#5307); -#5306 = CARTESIAN_POINT('',(-3.609666090745E-002,0.205977543236,0.302)); -#5307 = VECTOR('',#5308,1.); -#5308 = DIRECTION('',(-0.980580675691,-0.196116135138, - 4.354652974618E-017)); -#5309 = PCURVE('',#4846,#5310); -#5310 = DEFINITIONAL_REPRESENTATION('',(#5311),#5315); -#5311 = LINE('',#5312,#5313); -#5312 = CARTESIAN_POINT('',(4.014440068926E-002,7.717432873984E-003)); -#5313 = VECTOR('',#5314,1.); -#5314 = DIRECTION('',(0.196116135138,-0.980580675691)); -#5315 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5316 = PCURVE('',#1860,#5317); -#5317 = DEFINITIONAL_REPRESENTATION('',(#5318),#5322); -#5318 = LINE('',#5319,#5320); -#5319 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5320 = VECTOR('',#5321,1.); -#5321 = DIRECTION('',(-1.,0.E+000)); -#5322 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5323 = FACE_BOUND('',#5324,.T.); -#5324 = EDGE_LOOP('',(#5325,#5405,#5483,#5577)); -#5325 = ORIENTED_EDGE('',*,*,#5326,.F.); -#5326 = EDGE_CURVE('',#5327,#5329,#5331,.T.); -#5327 = VERTEX_POINT('',#5328); -#5328 = CARTESIAN_POINT('',(-0.101950986161,0.100250481989,0.302)); -#5329 = VERTEX_POINT('',#5330); -#5330 = CARTESIAN_POINT('',(-7.463173091921E-002,4.13417301015E-002, - 0.302)); -#5331 = SURFACE_CURVE('',#5332,(#5348,#5367),.PCURVE_S1.); -#5332 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5333,#5334,#5335,#5336,#5337, - #5338,#5339,#5340,#5341,#5342,#5343,#5344,#5345,#5346,#5347), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 0.109243264963,0.216023149294,0.321968345541,0.426361294985, - 0.524965644475,0.61273172182,0.691523903003,0.761600299833, - 0.824438999256,0.882594851407,0.93994307164,1.),.UNSPECIFIED.); -#5333 = CARTESIAN_POINT('',(-0.101950986161,0.100250481989,0.302)); -#5334 = CARTESIAN_POINT('',(-0.101924104222,9.767572844008E-002,0.302)); -#5335 = CARTESIAN_POINT('',(-0.101870946518,9.258428073938E-002,0.302)); -#5336 = CARTESIAN_POINT('',(-0.101062342672,8.503635691268E-002,0.302)); -#5337 = CARTESIAN_POINT('',(-0.100056852551,7.763101160967E-002,0.302)); -#5338 = CARTESIAN_POINT('',(-9.845525110705E-002,7.05224936676E-002, - 0.302)); -#5339 = CARTESIAN_POINT('',(-9.653808570573E-002,6.394566630728E-002, - 0.302)); -#5340 = CARTESIAN_POINT('',(-9.44232786662E-002,5.805666442772E-002, - 0.302)); -#5341 = CARTESIAN_POINT('',(-9.193209721297E-002,5.306140394613E-002, - 0.302)); -#5342 = CARTESIAN_POINT('',(-8.931652250781E-002,4.879677656191E-002, - 0.302)); -#5343 = CARTESIAN_POINT('',(-8.624072233728E-002,4.546170383601E-002, - 0.302)); -#5344 = CARTESIAN_POINT('',(-8.27577752205E-002,4.305433232873E-002, - 0.302)); -#5345 = CARTESIAN_POINT('',(-7.88238642164E-002,4.158657614539E-002, - 0.302)); -#5346 = CARTESIAN_POINT('',(-7.605043768421E-002,4.142459119255E-002, - 0.302)); -#5347 = CARTESIAN_POINT('',(-7.463173091921E-002,4.13417301015E-002, - 0.302)); -#5348 = PCURVE('',#4846,#5349); -#5349 = DEFINITIONAL_REPRESENTATION('',(#5350),#5366); -#5350 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5351,#5352,#5353,#5354,#5355, - #5356,#5357,#5358,#5359,#5360,#5361,#5362,#5363,#5364,#5365), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 0.109243264963,0.216023149294,0.321968345541,0.426361294985, - 0.524965644475,0.61273172182,0.691523903003,0.761600299833, - 0.824438999256,0.882594851407,0.93994307164,1.),.UNSPECIFIED.); -#5351 = CARTESIAN_POINT('',(0.145871461936,-5.813689237976E-002)); -#5352 = CARTESIAN_POINT('',(0.148446215485,-5.811001044068E-002)); -#5353 = CARTESIAN_POINT('',(0.153537663186,-5.805685273671E-002)); -#5354 = CARTESIAN_POINT('',(0.161085587012,-5.724824889016E-002)); -#5355 = CARTESIAN_POINT('',(0.168490932315,-5.624275876979E-002)); -#5356 = CARTESIAN_POINT('',(0.175599450258,-5.464115732562E-002)); -#5357 = CARTESIAN_POINT('',(0.182176277618,-5.272399192429E-002)); -#5358 = CARTESIAN_POINT('',(0.188065279497,-5.060918488477E-002)); -#5359 = CARTESIAN_POINT('',(0.193060539979,-4.811800343153E-002)); -#5360 = CARTESIAN_POINT('',(0.197325167363,-4.550242872637E-002)); -#5361 = CARTESIAN_POINT('',(0.200660240089,-4.242662855584E-002)); -#5362 = CARTESIAN_POINT('',(0.203067611596,-3.894368143906E-002)); -#5363 = CARTESIAN_POINT('',(0.20453536778,-3.500977043496E-002)); -#5364 = CARTESIAN_POINT('',(0.204697352733,-3.223634390278E-002)); -#5365 = CARTESIAN_POINT('',(0.204780213824,-3.081763713777E-002)); -#5366 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5367 = PCURVE('',#5368,#5399); -#5368 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#5369,#5370) - ,(#5371,#5372) - ,(#5373,#5374) - ,(#5375,#5376) - ,(#5377,#5378) - ,(#5379,#5380) - ,(#5381,#5382) - ,(#5383,#5384) - ,(#5385,#5386) - ,(#5387,#5388) - ,(#5389,#5390) - ,(#5391,#5392) - ,(#5393,#5394) - ,(#5395,#5396) - ,(#5397,#5398 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(2,2),( - 0.E+000,0.109243264963,0.216023149294,0.321968345541,0.426361294985, - 0.524965644475,0.61273172182,0.691523903003,0.761600299833, - 0.824438999256,0.882594851407,0.93994307164,1.),(0.E+000,1.), - .UNSPECIFIED.); -#5369 = CARTESIAN_POINT('',(-0.101950986161,0.100250481989,0.302)); -#5370 = CARTESIAN_POINT('',(-0.101950986161,0.100250481989,0.3)); -#5371 = CARTESIAN_POINT('',(-0.101924104222,9.767572844008E-002,0.302)); -#5372 = CARTESIAN_POINT('',(-0.101924104222,9.767572844008E-002,0.3)); -#5373 = CARTESIAN_POINT('',(-0.101870946518,9.258428073938E-002,0.302)); -#5374 = CARTESIAN_POINT('',(-0.101870946518,9.258428073938E-002,0.3)); -#5375 = CARTESIAN_POINT('',(-0.101062342672,8.503635691268E-002,0.302)); -#5376 = CARTESIAN_POINT('',(-0.101062342672,8.503635691268E-002,0.3)); -#5377 = CARTESIAN_POINT('',(-0.100056852551,7.763101160967E-002,0.302)); -#5378 = CARTESIAN_POINT('',(-0.100056852551,7.763101160967E-002,0.3)); -#5379 = CARTESIAN_POINT('',(-9.845525110705E-002,7.05224936676E-002, - 0.302)); -#5380 = CARTESIAN_POINT('',(-9.845525110705E-002,7.05224936676E-002,0.3) - ); -#5381 = CARTESIAN_POINT('',(-9.653808570573E-002,6.394566630728E-002, - 0.302)); -#5382 = CARTESIAN_POINT('',(-9.653808570573E-002,6.394566630728E-002,0.3 - )); -#5383 = CARTESIAN_POINT('',(-9.44232786662E-002,5.805666442772E-002, - 0.302)); -#5384 = CARTESIAN_POINT('',(-9.44232786662E-002,5.805666442772E-002,0.3) - ); -#5385 = CARTESIAN_POINT('',(-9.193209721297E-002,5.306140394613E-002, - 0.302)); -#5386 = CARTESIAN_POINT('',(-9.193209721297E-002,5.306140394613E-002,0.3 - )); -#5387 = CARTESIAN_POINT('',(-8.931652250781E-002,4.879677656191E-002, - 0.302)); -#5388 = CARTESIAN_POINT('',(-8.931652250781E-002,4.879677656191E-002,0.3 - )); -#5389 = CARTESIAN_POINT('',(-8.624072233728E-002,4.546170383601E-002, - 0.302)); -#5390 = CARTESIAN_POINT('',(-8.624072233728E-002,4.546170383601E-002,0.3 - )); -#5391 = CARTESIAN_POINT('',(-8.27577752205E-002,4.305433232873E-002, - 0.302)); -#5392 = CARTESIAN_POINT('',(-8.27577752205E-002,4.305433232873E-002,0.3) - ); -#5393 = CARTESIAN_POINT('',(-7.88238642164E-002,4.158657614539E-002, - 0.302)); -#5394 = CARTESIAN_POINT('',(-7.88238642164E-002,4.158657614539E-002,0.3) - ); -#5395 = CARTESIAN_POINT('',(-7.605043768421E-002,4.142459119255E-002, - 0.302)); -#5396 = CARTESIAN_POINT('',(-7.605043768421E-002,4.142459119255E-002,0.3 - )); -#5397 = CARTESIAN_POINT('',(-7.463173091921E-002,4.13417301015E-002, - 0.302)); -#5398 = CARTESIAN_POINT('',(-7.463173091921E-002,4.13417301015E-002,0.3) - ); -#5399 = DEFINITIONAL_REPRESENTATION('',(#5400),#5404); -#5400 = LINE('',#5401,#5402); -#5401 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5402 = VECTOR('',#5403,1.); -#5403 = DIRECTION('',(1.,0.E+000)); -#5404 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5405 = ORIENTED_EDGE('',*,*,#5406,.F.); -#5406 = EDGE_CURVE('',#5407,#5327,#5409,.T.); -#5407 = VERTEX_POINT('',#5408); -#5408 = CARTESIAN_POINT('',(-7.530056391007E-002,0.153294083033,0.302)); -#5409 = SURFACE_CURVE('',#5410,(#5426,#5445),.PCURVE_S1.); -#5410 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5411,#5412,#5413,#5414,#5415, - #5416,#5417,#5418,#5419,#5420,#5421,#5422,#5423,#5424,#5425), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 4.226779333469E-002,8.432559633327E-002,0.127039892833, - 0.171814314024,0.219694337501,0.271016843258,0.327501557308, - 0.389152196716,0.521662359695,0.665761784131,0.824900004924,1.), - .UNSPECIFIED.); -#5411 = CARTESIAN_POINT('',(-7.530056391007E-002,0.153294083033,0.302)); -#5412 = CARTESIAN_POINT('',(-7.621516748532E-002,0.153264412118,0.302)); -#5413 = CARTESIAN_POINT('',(-7.803983080003E-002,0.153205217696,0.302)); -#5414 = CARTESIAN_POINT('',(-8.06866425473E-002,0.152415783666,0.302)); -#5415 = CARTESIAN_POINT('',(-8.325072480295E-002,0.151288822602,0.302)); -#5416 = CARTESIAN_POINT('',(-8.568509650074E-002,0.149652877524,0.302)); -#5417 = CARTESIAN_POINT('',(-8.801511932755E-002,0.14758562449,0.302)); -#5418 = CARTESIAN_POINT('',(-9.017142601542E-002,0.145001429604,0.302)); -#5419 = CARTESIAN_POINT('',(-9.228548873588E-002,0.142016496381,0.302)); -#5420 = CARTESIAN_POINT('',(-9.499192822814E-002,0.137330258597,0.302)); -#5421 = CARTESIAN_POINT('',(-9.787439941184E-002,0.130593101157,0.302)); -#5422 = CARTESIAN_POINT('',(-0.100229861275,0.121472416913,0.302)); -#5423 = CARTESIAN_POINT('',(-0.101749343164,0.11124261082,0.302)); -#5424 = CARTESIAN_POINT('',(-0.101881665448,0.10402934967,0.302)); -#5425 = CARTESIAN_POINT('',(-0.101950986161,0.100250481989,0.302)); -#5426 = PCURVE('',#4846,#5427); -#5427 = DEFINITIONAL_REPRESENTATION('',(#5428),#5444); -#5428 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5429,#5430,#5431,#5432,#5433, - #5434,#5435,#5436,#5437,#5438,#5439,#5440,#5441,#5442,#5443), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 4.226779333469E-002,8.432559633327E-002,0.127039892833, - 0.171814314024,0.219694337501,0.271016843258,0.327501557308, - 0.389152196716,0.521662359695,0.665761784131,0.824900004924,1.), - .UNSPECIFIED.); -#5429 = CARTESIAN_POINT('',(9.282786089225E-002,-3.148647012863E-002)); -#5430 = CARTESIAN_POINT('',(9.28575318071E-002,-3.240107370388E-002)); -#5431 = CARTESIAN_POINT('',(9.291672622893E-002,-3.422573701859E-002)); -#5432 = CARTESIAN_POINT('',(9.370616025863E-002,-3.687254876586E-002)); -#5433 = CARTESIAN_POINT('',(9.483312132299E-002,-3.943663102151E-002)); -#5434 = CARTESIAN_POINT('',(9.646906640113E-002,-4.18710027193E-002)); -#5435 = CARTESIAN_POINT('',(9.853631943533E-002,-4.420102554611E-002)); -#5436 = CARTESIAN_POINT('',(0.101120514321,-4.635733223398E-002)); -#5437 = CARTESIAN_POINT('',(0.104105447545,-4.847139495444E-002)); -#5438 = CARTESIAN_POINT('',(0.108791685328,-5.11778344467E-002)); -#5439 = CARTESIAN_POINT('',(0.115528842768,-5.406030563041E-002)); -#5440 = CARTESIAN_POINT('',(0.124649527013,-5.641576749386E-002)); -#5441 = CARTESIAN_POINT('',(0.134879333105,-5.793524938226E-002)); -#5442 = CARTESIAN_POINT('',(0.142092594255,-5.80675716669E-002)); -#5443 = CARTESIAN_POINT('',(0.145871461936,-5.813689237976E-002)); -#5444 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5445 = PCURVE('',#5446,#5477); -#5446 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#5447,#5448) - ,(#5449,#5450) - ,(#5451,#5452) - ,(#5453,#5454) - ,(#5455,#5456) - ,(#5457,#5458) - ,(#5459,#5460) - ,(#5461,#5462) - ,(#5463,#5464) - ,(#5465,#5466) - ,(#5467,#5468) - ,(#5469,#5470) - ,(#5471,#5472) - ,(#5473,#5474) - ,(#5475,#5476 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(2,2),( - 0.E+000,4.226779333469E-002,8.432559633327E-002,0.127039892833, - 0.171814314024,0.219694337501,0.271016843258,0.327501557308, - 0.389152196716,0.521662359695,0.665761784131,0.824900004924,1.),( - 0.E+000,1.),.UNSPECIFIED.); -#5447 = CARTESIAN_POINT('',(-7.530056391007E-002,0.153294083033,0.302)); -#5448 = CARTESIAN_POINT('',(-7.530056391007E-002,0.153294083033,0.3)); -#5449 = CARTESIAN_POINT('',(-7.621516748532E-002,0.153264412118,0.302)); -#5450 = CARTESIAN_POINT('',(-7.621516748532E-002,0.153264412118,0.3)); -#5451 = CARTESIAN_POINT('',(-7.803983080003E-002,0.153205217696,0.302)); -#5452 = CARTESIAN_POINT('',(-7.803983080003E-002,0.153205217696,0.3)); -#5453 = CARTESIAN_POINT('',(-8.06866425473E-002,0.152415783666,0.302)); -#5454 = CARTESIAN_POINT('',(-8.06866425473E-002,0.152415783666,0.3)); -#5455 = CARTESIAN_POINT('',(-8.325072480295E-002,0.151288822602,0.302)); -#5456 = CARTESIAN_POINT('',(-8.325072480295E-002,0.151288822602,0.3)); -#5457 = CARTESIAN_POINT('',(-8.568509650074E-002,0.149652877524,0.302)); -#5458 = CARTESIAN_POINT('',(-8.568509650074E-002,0.149652877524,0.3)); -#5459 = CARTESIAN_POINT('',(-8.801511932755E-002,0.14758562449,0.302)); -#5460 = CARTESIAN_POINT('',(-8.801511932755E-002,0.14758562449,0.3)); -#5461 = CARTESIAN_POINT('',(-9.017142601542E-002,0.145001429604,0.302)); -#5462 = CARTESIAN_POINT('',(-9.017142601542E-002,0.145001429604,0.3)); -#5463 = CARTESIAN_POINT('',(-9.228548873588E-002,0.142016496381,0.302)); -#5464 = CARTESIAN_POINT('',(-9.228548873588E-002,0.142016496381,0.3)); -#5465 = CARTESIAN_POINT('',(-9.499192822814E-002,0.137330258597,0.302)); -#5466 = CARTESIAN_POINT('',(-9.499192822814E-002,0.137330258597,0.3)); -#5467 = CARTESIAN_POINT('',(-9.787439941184E-002,0.130593101157,0.302)); -#5468 = CARTESIAN_POINT('',(-9.787439941184E-002,0.130593101157,0.3)); -#5469 = CARTESIAN_POINT('',(-0.100229861275,0.121472416913,0.302)); -#5470 = CARTESIAN_POINT('',(-0.100229861275,0.121472416913,0.3)); -#5471 = CARTESIAN_POINT('',(-0.101749343164,0.11124261082,0.302)); -#5472 = CARTESIAN_POINT('',(-0.101749343164,0.11124261082,0.3)); -#5473 = CARTESIAN_POINT('',(-0.101881665448,0.10402934967,0.302)); -#5474 = CARTESIAN_POINT('',(-0.101881665448,0.10402934967,0.3)); -#5475 = CARTESIAN_POINT('',(-0.101950986161,0.100250481989,0.302)); -#5476 = CARTESIAN_POINT('',(-0.101950986161,0.100250481989,0.3)); -#5477 = DEFINITIONAL_REPRESENTATION('',(#5478),#5482); -#5478 = LINE('',#5479,#5480); -#5479 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5480 = VECTOR('',#5481,1.); -#5481 = DIRECTION('',(1.,0.E+000)); -#5482 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5483 = ORIENTED_EDGE('',*,*,#5484,.F.); -#5484 = EDGE_CURVE('',#5485,#5407,#5487,.T.); -#5485 = VERTEX_POINT('',#5486); -#5486 = CARTESIAN_POINT('',(-4.92675259582E-002,9.855267516568E-002, - 0.302)); -#5487 = SURFACE_CURVE('',#5488,(#5508,#5531),.PCURVE_S1.); -#5488 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5489,#5490,#5491,#5492,#5493, - #5494,#5495,#5496,#5497,#5498,#5499,#5500,#5501,#5502,#5503,#5504, - #5505,#5506,#5507),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,9.242081121346E-002,0.180329895351,0.263852826636, - 0.341610477782,0.415311914955,0.48516335459,0.550673340517, - 0.612163040493,0.670020610958,0.723416823037,0.772616779675, - 0.818980921461,0.864284136055,0.908474144563,0.952925060694,1.), - .UNSPECIFIED.); -#5489 = CARTESIAN_POINT('',(-4.92675259582E-002,9.855267516568E-002, - 0.302)); -#5490 = CARTESIAN_POINT('',(-4.928614427853E-002,0.100611041805,0.302)); -#5491 = CARTESIAN_POINT('',(-4.932247202454E-002,0.104627291347,0.302)); -#5492 = CARTESIAN_POINT('',(-4.963767284786E-002,0.110496735164,0.302)); -#5493 = CARTESIAN_POINT('',(-5.013548034991E-002,0.11602541934,0.302)); -#5494 = CARTESIAN_POINT('',(-5.085808856057E-002,0.121210612842,0.302)); -#5495 = CARTESIAN_POINT('',(-5.177882522002E-002,0.126054644433,0.302)); -#5496 = CARTESIAN_POINT('',(-5.289788566873E-002,0.130576790858,0.302)); -#5497 = CARTESIAN_POINT('',(-5.422849914395E-002,0.134758115317,0.302)); -#5498 = CARTESIAN_POINT('',(-5.577247968458E-002,0.138577961453,0.302)); -#5499 = CARTESIAN_POINT('',(-5.748869161871E-002,0.142028574223,0.302)); -#5500 = CARTESIAN_POINT('',(-5.945181769915E-002,0.145023464358,0.302)); -#5501 = CARTESIAN_POINT('',(-6.156434267908E-002,0.147592123688,0.302)); -#5502 = CARTESIAN_POINT('',(-6.390745610769E-002,0.149700085877,0.302)); -#5503 = CARTESIAN_POINT('',(-6.649600476558E-002,0.151300103808,0.302)); -#5504 = CARTESIAN_POINT('',(-6.926461702342E-002,0.152427404118,0.302)); -#5505 = CARTESIAN_POINT('',(-7.220441410358E-002,0.153217224023,0.302)); -#5506 = CARTESIAN_POINT('',(-7.424897496E-002,0.153267978325,0.302)); -#5507 = CARTESIAN_POINT('',(-7.530056391007E-002,0.153294083033,0.302)); -#5508 = PCURVE('',#4846,#5509); -#5509 = DEFINITIONAL_REPRESENTATION('',(#5510),#5530); -#5510 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5511,#5512,#5513,#5514,#5515, - #5516,#5517,#5518,#5519,#5520,#5521,#5522,#5523,#5524,#5525,#5526, - #5527,#5528,#5529),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,9.242081121346E-002,0.180329895351,0.263852826636, - 0.341610477782,0.415311914955,0.48516335459,0.550673340517, - 0.612163040493,0.670020610958,0.723416823037,0.772616779675, - 0.818980921461,0.864284136055,0.908474144563,0.952925060694,1.), - .UNSPECIFIED.); -#5511 = CARTESIAN_POINT('',(0.147569268759,-5.453432176764E-003)); -#5512 = CARTESIAN_POINT('',(0.14551090212,-5.472050497092E-003)); -#5513 = CARTESIAN_POINT('',(0.141494652578,-5.508378243107E-003)); -#5514 = CARTESIAN_POINT('',(0.135625208761,-5.82357906642E-003)); -#5515 = CARTESIAN_POINT('',(0.130096524585,-6.321386568471E-003)); -#5516 = CARTESIAN_POINT('',(0.124911331083,-7.043994779136E-003)); -#5517 = CARTESIAN_POINT('',(0.120067299492,-7.964731438587E-003)); -#5518 = CARTESIAN_POINT('',(0.115545153068,-9.083791887299E-003)); -#5519 = CARTESIAN_POINT('',(0.111363828608,-1.041440536251E-002)); -#5520 = CARTESIAN_POINT('',(0.107543982473,-1.195838590314E-002)); -#5521 = CARTESIAN_POINT('',(0.104093369702,-1.367459783728E-002)); -#5522 = CARTESIAN_POINT('',(0.101098479567,-1.563772391772E-002)); -#5523 = CARTESIAN_POINT('',(9.852982023694E-002,-1.775024889765E-002)); -#5524 = CARTESIAN_POINT('',(9.642185804819E-002,-2.009336232625E-002)); -#5525 = CARTESIAN_POINT('',(9.482184011674E-002,-2.268191098414E-002)); -#5526 = CARTESIAN_POINT('',(9.369453980758E-002,-2.545052324199E-002)); -#5527 = CARTESIAN_POINT('',(9.290471990235E-002,-2.839032032214E-002)); -#5528 = CARTESIAN_POINT('',(9.285396559996E-002,-3.043488117857E-002)); -#5529 = CARTESIAN_POINT('',(9.282786089225E-002,-3.148647012863E-002)); -#5530 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5531 = PCURVE('',#5532,#5571); -#5532 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#5533,#5534) - ,(#5535,#5536) - ,(#5537,#5538) - ,(#5539,#5540) - ,(#5541,#5542) - ,(#5543,#5544) - ,(#5545,#5546) - ,(#5547,#5548) - ,(#5549,#5550) - ,(#5551,#5552) - ,(#5553,#5554) - ,(#5555,#5556) - ,(#5557,#5558) - ,(#5559,#5560) - ,(#5561,#5562) - ,(#5563,#5564) - ,(#5565,#5566) - ,(#5567,#5568) - ,(#5569,#5570 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, - 2),(0.E+000,9.242081121346E-002,0.180329895351,0.263852826636, - 0.341610477782,0.415311914955,0.48516335459,0.550673340517, - 0.612163040493,0.670020610958,0.723416823037,0.772616779675, - 0.818980921461,0.864284136055,0.908474144563,0.952925060694,1.),( - 0.E+000,1.),.UNSPECIFIED.); -#5533 = CARTESIAN_POINT('',(-4.92675259582E-002,9.855267516568E-002, - 0.302)); -#5534 = CARTESIAN_POINT('',(-4.92675259582E-002,9.855267516568E-002,0.3) - ); -#5535 = CARTESIAN_POINT('',(-4.928614427853E-002,0.100611041805,0.302)); -#5536 = CARTESIAN_POINT('',(-4.928614427853E-002,0.100611041805,0.3)); -#5537 = CARTESIAN_POINT('',(-4.932247202454E-002,0.104627291347,0.302)); -#5538 = CARTESIAN_POINT('',(-4.932247202454E-002,0.104627291347,0.3)); -#5539 = CARTESIAN_POINT('',(-4.963767284786E-002,0.110496735164,0.302)); -#5540 = CARTESIAN_POINT('',(-4.963767284786E-002,0.110496735164,0.3)); -#5541 = CARTESIAN_POINT('',(-5.013548034991E-002,0.11602541934,0.302)); -#5542 = CARTESIAN_POINT('',(-5.013548034991E-002,0.11602541934,0.3)); -#5543 = CARTESIAN_POINT('',(-5.085808856057E-002,0.121210612842,0.302)); -#5544 = CARTESIAN_POINT('',(-5.085808856057E-002,0.121210612842,0.3)); -#5545 = CARTESIAN_POINT('',(-5.177882522002E-002,0.126054644433,0.302)); -#5546 = CARTESIAN_POINT('',(-5.177882522002E-002,0.126054644433,0.3)); -#5547 = CARTESIAN_POINT('',(-5.289788566873E-002,0.130576790858,0.302)); -#5548 = CARTESIAN_POINT('',(-5.289788566873E-002,0.130576790858,0.3)); -#5549 = CARTESIAN_POINT('',(-5.422849914395E-002,0.134758115317,0.302)); -#5550 = CARTESIAN_POINT('',(-5.422849914395E-002,0.134758115317,0.3)); -#5551 = CARTESIAN_POINT('',(-5.577247968458E-002,0.138577961453,0.302)); -#5552 = CARTESIAN_POINT('',(-5.577247968458E-002,0.138577961453,0.3)); -#5553 = CARTESIAN_POINT('',(-5.748869161871E-002,0.142028574223,0.302)); -#5554 = CARTESIAN_POINT('',(-5.748869161871E-002,0.142028574223,0.3)); -#5555 = CARTESIAN_POINT('',(-5.945181769915E-002,0.145023464358,0.302)); -#5556 = CARTESIAN_POINT('',(-5.945181769915E-002,0.145023464358,0.3)); -#5557 = CARTESIAN_POINT('',(-6.156434267908E-002,0.147592123688,0.302)); -#5558 = CARTESIAN_POINT('',(-6.156434267908E-002,0.147592123688,0.3)); -#5559 = CARTESIAN_POINT('',(-6.390745610769E-002,0.149700085877,0.302)); -#5560 = CARTESIAN_POINT('',(-6.390745610769E-002,0.149700085877,0.3)); -#5561 = CARTESIAN_POINT('',(-6.649600476558E-002,0.151300103808,0.302)); -#5562 = CARTESIAN_POINT('',(-6.649600476558E-002,0.151300103808,0.3)); -#5563 = CARTESIAN_POINT('',(-6.926461702342E-002,0.152427404118,0.302)); -#5564 = CARTESIAN_POINT('',(-6.926461702342E-002,0.152427404118,0.3)); -#5565 = CARTESIAN_POINT('',(-7.220441410358E-002,0.153217224023,0.302)); -#5566 = CARTESIAN_POINT('',(-7.220441410358E-002,0.153217224023,0.3)); -#5567 = CARTESIAN_POINT('',(-7.424897496E-002,0.153267978325,0.302)); -#5568 = CARTESIAN_POINT('',(-7.424897496E-002,0.153267978325,0.3)); -#5569 = CARTESIAN_POINT('',(-7.530056391007E-002,0.153294083033,0.302)); -#5570 = CARTESIAN_POINT('',(-7.530056391007E-002,0.153294083033,0.3)); -#5571 = DEFINITIONAL_REPRESENTATION('',(#5572),#5576); -#5572 = LINE('',#5573,#5574); -#5573 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5574 = VECTOR('',#5575,1.); -#5575 = DIRECTION('',(1.,0.E+000)); -#5576 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5577 = ORIENTED_EDGE('',*,*,#5578,.F.); -#5578 = EDGE_CURVE('',#5329,#5485,#5579,.T.); -#5579 = SURFACE_CURVE('',#5580,(#5600,#5623),.PCURVE_S1.); -#5580 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5581,#5582,#5583,#5584,#5585, - #5586,#5587,#5588,#5589,#5590,#5591,#5592,#5593,#5594,#5595,#5596, - #5597,#5598,#5599),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,4.305891415309E-002,8.431100584057E-002, - 0.126412344501,0.169628791793,0.214862033891,0.264105324653, - 0.317793992402,0.376356096119,0.439245264454,0.506359790794, - 0.576812824148,0.65267291028,0.732387812435,0.816256919086, - 0.905921728012,1.),.UNSPECIFIED.); -#5581 = CARTESIAN_POINT('',(-7.463173091921E-002,4.13417301015E-002, - 0.302)); -#5582 = CARTESIAN_POINT('',(-7.36489444578E-002,4.13909814942E-002,0.302 - )); -#5583 = CARTESIAN_POINT('',(-7.172461086236E-002,4.148741761061E-002, - 0.302)); -#5584 = CARTESIAN_POINT('',(-6.893007938947E-002,4.226139891875E-002, - 0.302)); -#5585 = CARTESIAN_POINT('',(-6.627788929855E-002,4.342726502517E-002, - 0.302)); -#5586 = CARTESIAN_POINT('',(-6.383910156245E-002,4.516758759971E-002, - 0.302)); -#5587 = CARTESIAN_POINT('',(-6.161659080274E-002,4.739228249608E-002, - 0.302)); -#5588 = CARTESIAN_POINT('',(-5.947676231063E-002,5.001697312644E-002, - 0.302)); -#5589 = CARTESIAN_POINT('',(-5.760886593088E-002,5.319918237196E-002, - 0.302)); -#5590 = CARTESIAN_POINT('',(-5.585511740996E-002,5.678892740192E-002, - 0.302)); -#5591 = CARTESIAN_POINT('',(-5.435029965401E-002,6.081846785872E-002, - 0.302)); -#5592 = CARTESIAN_POINT('',(-5.293755803954E-002,6.516610625362E-002, - 0.302)); -#5593 = CARTESIAN_POINT('',(-5.183880023704E-002,6.990800971198E-002, - 0.302)); -#5594 = CARTESIAN_POINT('',(-5.084022508801E-002,7.49630459341E-002, - 0.302)); -#5595 = CARTESIAN_POINT('',(-5.014894616744E-002,8.037925197238E-002, - 0.302)); -#5596 = CARTESIAN_POINT('',(-4.963075664615E-002,8.61279654229E-002, - 0.302)); -#5597 = CARTESIAN_POINT('',(-4.932415532072E-002,9.222114964923E-002, - 0.302)); -#5598 = CARTESIAN_POINT('',(-4.928670228325E-002,9.640863917488E-002, - 0.302)); -#5599 = CARTESIAN_POINT('',(-4.92675259582E-002,9.855267516568E-002, - 0.302)); -#5600 = PCURVE('',#4846,#5601); -#5601 = DEFINITIONAL_REPRESENTATION('',(#5602),#5622); -#5602 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5603,#5604,#5605,#5606,#5607, - #5608,#5609,#5610,#5611,#5612,#5613,#5614,#5615,#5616,#5617,#5618, - #5619,#5620,#5621),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,4.305891415309E-002,8.431100584057E-002, - 0.126412344501,0.169628791793,0.214862033891,0.264105324653, - 0.317793992402,0.376356096119,0.439245264454,0.506359790794, - 0.576812824148,0.65267291028,0.732387812435,0.816256919086, - 0.905921728012,1.),.UNSPECIFIED.); -#5603 = CARTESIAN_POINT('',(0.204780213824,-3.081763713777E-002)); -#5604 = CARTESIAN_POINT('',(0.204730962431,-2.983485067637E-002)); -#5605 = CARTESIAN_POINT('',(0.204634526314,-2.791051708093E-002)); -#5606 = CARTESIAN_POINT('',(0.203860545006,-2.511598560803E-002)); -#5607 = CARTESIAN_POINT('',(0.2026946789,-2.246379551712E-002)); -#5608 = CARTESIAN_POINT('',(0.200954356325,-2.002500778101E-002)); -#5609 = CARTESIAN_POINT('',(0.198729661429,-1.78024970213E-002)); -#5610 = CARTESIAN_POINT('',(0.196104970799,-1.56626685292E-002)); -#5611 = CARTESIAN_POINT('',(0.192922761553,-1.379477214944E-002)); -#5612 = CARTESIAN_POINT('',(0.189333016523,-1.204102362852E-002)); -#5613 = CARTESIAN_POINT('',(0.185303476066,-1.053620587257E-002)); -#5614 = CARTESIAN_POINT('',(0.180955837671,-9.123464258109E-003)); -#5615 = CARTESIAN_POINT('',(0.176213934213,-8.024706455604E-003)); -#5616 = CARTESIAN_POINT('',(0.171158897991,-7.026131306575E-003)); -#5617 = CARTESIAN_POINT('',(0.165742691953,-6.334852386008E-003)); -#5618 = CARTESIAN_POINT('',(0.159993978502,-5.816662864716E-003)); -#5619 = CARTESIAN_POINT('',(0.153900794276,-5.510061539285E-003)); -#5620 = CARTESIAN_POINT('',(0.14971330475,-5.472608501816E-003)); -#5621 = CARTESIAN_POINT('',(0.147569268759,-5.453432176764E-003)); -#5622 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5623 = PCURVE('',#5624,#5663); -#5624 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#5625,#5626) - ,(#5627,#5628) - ,(#5629,#5630) - ,(#5631,#5632) - ,(#5633,#5634) - ,(#5635,#5636) - ,(#5637,#5638) - ,(#5639,#5640) - ,(#5641,#5642) - ,(#5643,#5644) - ,(#5645,#5646) - ,(#5647,#5648) - ,(#5649,#5650) - ,(#5651,#5652) - ,(#5653,#5654) - ,(#5655,#5656) - ,(#5657,#5658) - ,(#5659,#5660) - ,(#5661,#5662 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, - 2),(0.E+000,4.305891415309E-002,8.431100584057E-002,0.126412344501, - 0.169628791793,0.214862033891,0.264105324653,0.317793992402, - 0.376356096119,0.439245264454,0.506359790794,0.576812824148, - 0.65267291028,0.732387812435,0.816256919086,0.905921728012,1.),( - 0.E+000,1.),.UNSPECIFIED.); -#5625 = CARTESIAN_POINT('',(-7.463173091921E-002,4.13417301015E-002, - 0.302)); -#5626 = CARTESIAN_POINT('',(-7.463173091921E-002,4.13417301015E-002,0.3) - ); -#5627 = CARTESIAN_POINT('',(-7.36489444578E-002,4.13909814942E-002,0.302 - )); -#5628 = CARTESIAN_POINT('',(-7.36489444578E-002,4.13909814942E-002,0.3) - ); -#5629 = CARTESIAN_POINT('',(-7.172461086236E-002,4.148741761061E-002, - 0.302)); -#5630 = CARTESIAN_POINT('',(-7.172461086236E-002,4.148741761061E-002,0.3 - )); -#5631 = CARTESIAN_POINT('',(-6.893007938947E-002,4.226139891875E-002, - 0.302)); -#5632 = CARTESIAN_POINT('',(-6.893007938947E-002,4.226139891875E-002,0.3 - )); -#5633 = CARTESIAN_POINT('',(-6.627788929855E-002,4.342726502517E-002, - 0.302)); -#5634 = CARTESIAN_POINT('',(-6.627788929855E-002,4.342726502517E-002,0.3 - )); -#5635 = CARTESIAN_POINT('',(-6.383910156245E-002,4.516758759971E-002, - 0.302)); -#5636 = CARTESIAN_POINT('',(-6.383910156245E-002,4.516758759971E-002,0.3 - )); -#5637 = CARTESIAN_POINT('',(-6.161659080274E-002,4.739228249608E-002, - 0.302)); -#5638 = CARTESIAN_POINT('',(-6.161659080274E-002,4.739228249608E-002,0.3 - )); -#5639 = CARTESIAN_POINT('',(-5.947676231063E-002,5.001697312644E-002, - 0.302)); -#5640 = CARTESIAN_POINT('',(-5.947676231063E-002,5.001697312644E-002,0.3 - )); -#5641 = CARTESIAN_POINT('',(-5.760886593088E-002,5.319918237196E-002, - 0.302)); -#5642 = CARTESIAN_POINT('',(-5.760886593088E-002,5.319918237196E-002,0.3 - )); -#5643 = CARTESIAN_POINT('',(-5.585511740996E-002,5.678892740192E-002, - 0.302)); -#5644 = CARTESIAN_POINT('',(-5.585511740996E-002,5.678892740192E-002,0.3 - )); -#5645 = CARTESIAN_POINT('',(-5.435029965401E-002,6.081846785872E-002, - 0.302)); -#5646 = CARTESIAN_POINT('',(-5.435029965401E-002,6.081846785872E-002,0.3 - )); -#5647 = CARTESIAN_POINT('',(-5.293755803954E-002,6.516610625362E-002, - 0.302)); -#5648 = CARTESIAN_POINT('',(-5.293755803954E-002,6.516610625362E-002,0.3 - )); -#5649 = CARTESIAN_POINT('',(-5.183880023704E-002,6.990800971198E-002, - 0.302)); -#5650 = CARTESIAN_POINT('',(-5.183880023704E-002,6.990800971198E-002,0.3 - )); -#5651 = CARTESIAN_POINT('',(-5.084022508801E-002,7.49630459341E-002, - 0.302)); -#5652 = CARTESIAN_POINT('',(-5.084022508801E-002,7.49630459341E-002,0.3) - ); -#5653 = CARTESIAN_POINT('',(-5.014894616744E-002,8.037925197238E-002, - 0.302)); -#5654 = CARTESIAN_POINT('',(-5.014894616744E-002,8.037925197238E-002,0.3 - )); -#5655 = CARTESIAN_POINT('',(-4.963075664615E-002,8.61279654229E-002, - 0.302)); -#5656 = CARTESIAN_POINT('',(-4.963075664615E-002,8.61279654229E-002,0.3) - ); -#5657 = CARTESIAN_POINT('',(-4.932415532072E-002,9.222114964923E-002, - 0.302)); -#5658 = CARTESIAN_POINT('',(-4.932415532072E-002,9.222114964923E-002,0.3 - )); -#5659 = CARTESIAN_POINT('',(-4.928670228325E-002,9.640863917488E-002, - 0.302)); -#5660 = CARTESIAN_POINT('',(-4.928670228325E-002,9.640863917488E-002,0.3 - )); -#5661 = CARTESIAN_POINT('',(-4.92675259582E-002,9.855267516568E-002, - 0.302)); -#5662 = CARTESIAN_POINT('',(-4.92675259582E-002,9.855267516568E-002,0.3) - ); -#5663 = DEFINITIONAL_REPRESENTATION('',(#5664),#5668); -#5664 = LINE('',#5665,#5666); -#5665 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5666 = VECTOR('',#5667,1.); -#5667 = DIRECTION('',(1.,0.E+000)); -#5668 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5669 = ADVANCED_FACE('',(#5670),#1798,.T.); -#5670 = FACE_BOUND('',#5671,.T.); -#5671 = EDGE_LOOP('',(#5672,#5673,#5692,#5693)); -#5672 = ORIENTED_EDGE('',*,*,#1748,.F.); -#5673 = ORIENTED_EDGE('',*,*,#5674,.F.); -#5674 = EDGE_CURVE('',#4820,#1749,#5675,.T.); -#5675 = SURFACE_CURVE('',#5676,(#5680,#5686),.PCURVE_S1.); -#5676 = LINE('',#5677,#5678); -#5677 = CARTESIAN_POINT('',(-7.247088587182E-002,0.27183186849,0.302)); -#5678 = VECTOR('',#5679,1.); -#5679 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#5680 = PCURVE('',#1798,#5681); -#5681 = DEFINITIONAL_REPRESENTATION('',(#5682),#5685); -#5682 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5683,#5684),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#5683 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5684 = CARTESIAN_POINT('',(0.E+000,1.)); -#5685 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5686 = PCURVE('',#2524,#5687); -#5687 = DEFINITIONAL_REPRESENTATION('',(#5688),#5691); -#5688 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5689,#5690),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#5689 = CARTESIAN_POINT('',(1.,0.E+000)); -#5690 = CARTESIAN_POINT('',(1.,1.)); -#5691 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5692 = ORIENTED_EDGE('',*,*,#4819,.T.); -#5693 = ORIENTED_EDGE('',*,*,#5694,.T.); -#5694 = EDGE_CURVE('',#4822,#1751,#5695,.T.); -#5695 = SURFACE_CURVE('',#5696,(#5700,#5706),.PCURVE_S1.); -#5696 = LINE('',#5697,#5698); -#5697 = CARTESIAN_POINT('',(-3.609666090745E-002,0.205977543236,0.302)); -#5698 = VECTOR('',#5699,1.); -#5699 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#5700 = PCURVE('',#1798,#5701); -#5701 = DEFINITIONAL_REPRESENTATION('',(#5702),#5705); -#5702 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5703,#5704),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#5703 = CARTESIAN_POINT('',(1.,0.E+000)); -#5704 = CARTESIAN_POINT('',(1.,1.)); -#5705 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5706 = PCURVE('',#1860,#5707); -#5707 = DEFINITIONAL_REPRESENTATION('',(#5708),#5712); -#5708 = LINE('',#5709,#5710); -#5709 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5710 = VECTOR('',#5711,1.); -#5711 = DIRECTION('',(0.E+000,-1.)); -#5712 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5713 = ADVANCED_FACE('',(#5714),#2524,.T.); -#5714 = FACE_BOUND('',#5715,.T.); -#5715 = EDGE_LOOP('',(#5716,#5717,#5736,#5737)); -#5716 = ORIENTED_EDGE('',*,*,#2494,.F.); -#5717 = ORIENTED_EDGE('',*,*,#5718,.F.); -#5718 = EDGE_CURVE('',#4882,#2433,#5719,.T.); -#5719 = SURFACE_CURVE('',#5720,(#5724,#5730),.PCURVE_S1.); -#5720 = LINE('',#5721,#5722); -#5721 = CARTESIAN_POINT('',(-0.104677766816,0.24266046035,0.302)); -#5722 = VECTOR('',#5723,1.); -#5723 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#5724 = PCURVE('',#2524,#5725); -#5725 = DEFINITIONAL_REPRESENTATION('',(#5726),#5729); -#5726 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5727,#5728),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#5727 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5728 = CARTESIAN_POINT('',(0.E+000,1.)); -#5729 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5730 = PCURVE('',#2464,#5731); -#5731 = DEFINITIONAL_REPRESENTATION('',(#5732),#5735); -#5732 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5733,#5734),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#5733 = CARTESIAN_POINT('',(1.,0.E+000)); -#5734 = CARTESIAN_POINT('',(1.,1.)); -#5735 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5736 = ORIENTED_EDGE('',*,*,#4881,.T.); -#5737 = ORIENTED_EDGE('',*,*,#5674,.T.); -#5738 = ADVANCED_FACE('',(#5739),#2464,.T.); -#5739 = FACE_BOUND('',#5740,.T.); -#5740 = EDGE_LOOP('',(#5741,#5742,#5761,#5762)); -#5741 = ORIENTED_EDGE('',*,*,#2432,.F.); -#5742 = ORIENTED_EDGE('',*,*,#5743,.F.); -#5743 = EDGE_CURVE('',#4921,#2339,#5744,.T.); -#5744 = SURFACE_CURVE('',#5745,(#5749,#5755),.PCURVE_S1.); -#5745 = LINE('',#5746,#5747); -#5746 = CARTESIAN_POINT('',(-0.118414567475,0.13523559228,0.302)); -#5747 = VECTOR('',#5748,1.); -#5748 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#5749 = PCURVE('',#2464,#5750); -#5750 = DEFINITIONAL_REPRESENTATION('',(#5751),#5754); -#5751 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5752,#5753),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#5752 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5753 = CARTESIAN_POINT('',(0.E+000,1.)); -#5754 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5755 = PCURVE('',#2386,#5756); -#5756 = DEFINITIONAL_REPRESENTATION('',(#5757),#5760); -#5757 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5758,#5759),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#5758 = CARTESIAN_POINT('',(1.,0.E+000)); -#5759 = CARTESIAN_POINT('',(1.,1.)); -#5760 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5761 = ORIENTED_EDGE('',*,*,#4920,.T.); -#5762 = ORIENTED_EDGE('',*,*,#5718,.T.); -#5763 = ADVANCED_FACE('',(#5764),#2386,.T.); -#5764 = FACE_BOUND('',#5765,.T.); -#5765 = EDGE_LOOP('',(#5766,#5767,#5786,#5787)); -#5766 = ORIENTED_EDGE('',*,*,#2338,.F.); -#5767 = ORIENTED_EDGE('',*,*,#5768,.F.); -#5768 = EDGE_CURVE('',#4960,#2261,#5769,.T.); -#5769 = SURFACE_CURVE('',#5770,(#5774,#5780),.PCURVE_S1.); -#5770 = LINE('',#5771,#5772); -#5771 = CARTESIAN_POINT('',(-7.33969623207E-002,1.170728373731E-002, - 0.302)); -#5772 = VECTOR('',#5773,1.); -#5773 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#5774 = PCURVE('',#2386,#5775); -#5775 = DEFINITIONAL_REPRESENTATION('',(#5776),#5779); -#5776 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5777,#5778),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#5777 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5778 = CARTESIAN_POINT('',(0.E+000,1.)); -#5779 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5780 = PCURVE('',#2300,#5781); -#5781 = DEFINITIONAL_REPRESENTATION('',(#5782),#5785); -#5782 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5783,#5784),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#5783 = CARTESIAN_POINT('',(1.,0.E+000)); -#5784 = CARTESIAN_POINT('',(1.,1.)); -#5785 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5786 = ORIENTED_EDGE('',*,*,#4959,.T.); -#5787 = ORIENTED_EDGE('',*,*,#5743,.T.); -#5788 = ADVANCED_FACE('',(#5789),#2300,.T.); -#5789 = FACE_BOUND('',#5790,.T.); -#5790 = EDGE_LOOP('',(#5791,#5792,#5811,#5812)); -#5791 = ORIENTED_EDGE('',*,*,#2260,.F.); -#5792 = ORIENTED_EDGE('',*,*,#5793,.F.); -#5793 = EDGE_CURVE('',#5015,#2167,#5794,.T.); -#5794 = SURFACE_CURVE('',#5795,(#5799,#5805),.PCURVE_S1.); -#5795 = LINE('',#5796,#5797); -#5796 = CARTESIAN_POINT('',(-3.280394464476E-002,9.958164899777E-002, - 0.302)); -#5797 = VECTOR('',#5798,1.); -#5798 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#5799 = PCURVE('',#2300,#5800); -#5800 = DEFINITIONAL_REPRESENTATION('',(#5801),#5804); -#5801 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5802,#5803),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#5802 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5803 = CARTESIAN_POINT('',(0.E+000,1.)); -#5804 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5805 = PCURVE('',#2214,#5806); -#5806 = DEFINITIONAL_REPRESENTATION('',(#5807),#5810); -#5807 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5808,#5809),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#5808 = CARTESIAN_POINT('',(1.,0.E+000)); -#5809 = CARTESIAN_POINT('',(1.,1.)); -#5810 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5811 = ORIENTED_EDGE('',*,*,#5014,.T.); -#5812 = ORIENTED_EDGE('',*,*,#5768,.T.); -#5813 = ADVANCED_FACE('',(#5814),#2214,.T.); -#5814 = FACE_BOUND('',#5815,.T.); -#5815 = EDGE_LOOP('',(#5816,#5817,#5836,#5837)); -#5816 = ORIENTED_EDGE('',*,*,#2166,.F.); -#5817 = ORIENTED_EDGE('',*,*,#5818,.F.); -#5818 = EDGE_CURVE('',#5062,#2105,#5819,.T.); -#5819 = SURFACE_CURVE('',#5820,(#5824,#5830),.PCURVE_S1.); -#5820 = LINE('',#5821,#5822); -#5821 = CARTESIAN_POINT('',(-7.077307904887E-002,0.182928529397,0.302)); -#5822 = VECTOR('',#5823,1.); -#5823 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#5824 = PCURVE('',#2214,#5825); -#5825 = DEFINITIONAL_REPRESENTATION('',(#5826),#5829); -#5826 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5827,#5828),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#5827 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5828 = CARTESIAN_POINT('',(0.E+000,1.)); -#5829 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5830 = PCURVE('',#2136,#5831); -#5831 = DEFINITIONAL_REPRESENTATION('',(#5832),#5835); -#5832 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5833,#5834),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#5833 = CARTESIAN_POINT('',(1.,0.E+000)); -#5834 = CARTESIAN_POINT('',(1.,1.)); -#5835 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5836 = ORIENTED_EDGE('',*,*,#5061,.T.); -#5837 = ORIENTED_EDGE('',*,*,#5793,.T.); -#5838 = ADVANCED_FACE('',(#5839),#2136,.T.); -#5839 = FACE_BOUND('',#5840,.T.); -#5840 = EDGE_LOOP('',(#5841,#5842,#5861,#5862)); -#5841 = ORIENTED_EDGE('',*,*,#2104,.F.); -#5842 = ORIENTED_EDGE('',*,*,#5843,.F.); -#5843 = EDGE_CURVE('',#5117,#2027,#5844,.T.); -#5844 = SURFACE_CURVE('',#5845,(#5849,#5855),.PCURVE_S1.); -#5845 = LINE('',#5846,#5847); -#5846 = CARTESIAN_POINT('',(-0.101950986161,0.149075290321,0.302)); -#5847 = VECTOR('',#5848,1.); -#5848 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#5849 = PCURVE('',#2136,#5850); -#5850 = DEFINITIONAL_REPRESENTATION('',(#5851),#5854); -#5851 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5852,#5853),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#5852 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5853 = CARTESIAN_POINT('',(0.E+000,1.)); -#5854 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5855 = PCURVE('',#2066,#5856); -#5856 = DEFINITIONAL_REPRESENTATION('',(#5857),#5860); -#5857 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5858,#5859),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#5858 = CARTESIAN_POINT('',(1.,0.E+000)); -#5859 = CARTESIAN_POINT('',(1.,1.)); -#5860 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5861 = ORIENTED_EDGE('',*,*,#5116,.T.); -#5862 = ORIENTED_EDGE('',*,*,#5818,.T.); -#5863 = ADVANCED_FACE('',(#5864),#2066,.T.); -#5864 = FACE_BOUND('',#5865,.T.); -#5865 = EDGE_LOOP('',(#5866,#5867,#5886,#5887)); -#5866 = ORIENTED_EDGE('',*,*,#2026,.F.); -#5867 = ORIENTED_EDGE('',*,*,#5868,.F.); -#5868 = EDGE_CURVE('',#5156,#1981,#5869,.T.); -#5869 = SURFACE_CURVE('',#5870,(#5874,#5880),.PCURVE_S1.); -#5870 = LINE('',#5871,#5872); -#5871 = CARTESIAN_POINT('',(-8.795694204477E-002,0.234583015768,0.302)); -#5872 = VECTOR('',#5873,1.); -#5873 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#5874 = PCURVE('',#2066,#5875); -#5875 = DEFINITIONAL_REPRESENTATION('',(#5876),#5879); -#5876 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5877,#5878),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#5877 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5878 = CARTESIAN_POINT('',(0.E+000,1.)); -#5879 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5880 = PCURVE('',#2004,#5881); -#5881 = DEFINITIONAL_REPRESENTATION('',(#5882),#5885); -#5882 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5883,#5884),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#5883 = CARTESIAN_POINT('',(1.,0.E+000)); -#5884 = CARTESIAN_POINT('',(1.,1.)); -#5885 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5886 = ORIENTED_EDGE('',*,*,#5155,.T.); -#5887 = ORIENTED_EDGE('',*,*,#5843,.T.); -#5888 = ADVANCED_FACE('',(#5889),#2004,.T.); -#5889 = FACE_BOUND('',#5890,.T.); -#5890 = EDGE_LOOP('',(#5891,#5892,#5911,#5912)); -#5891 = ORIENTED_EDGE('',*,*,#1980,.F.); -#5892 = ORIENTED_EDGE('',*,*,#5893,.F.); -#5893 = EDGE_CURVE('',#5203,#1919,#5894,.T.); -#5894 = SURFACE_CURVE('',#5895,(#5899,#5905),.PCURVE_S1.); -#5895 = LINE('',#5896,#5897); -#5896 = CARTESIAN_POINT('',(-7.355130839552E-002,0.242197422125,0.302)); -#5897 = VECTOR('',#5898,1.); -#5898 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#5899 = PCURVE('',#2004,#5900); -#5900 = DEFINITIONAL_REPRESENTATION('',(#5901),#5904); -#5901 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5902,#5903),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#5902 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5903 = CARTESIAN_POINT('',(0.E+000,1.)); -#5904 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5905 = PCURVE('',#1950,#5906); -#5906 = DEFINITIONAL_REPRESENTATION('',(#5907),#5910); -#5907 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5908,#5909),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#5908 = CARTESIAN_POINT('',(1.,0.E+000)); -#5909 = CARTESIAN_POINT('',(1.,1.)); -#5910 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5911 = ORIENTED_EDGE('',*,*,#5202,.T.); -#5912 = ORIENTED_EDGE('',*,*,#5868,.T.); -#5913 = ADVANCED_FACE('',(#5914),#1950,.T.); -#5914 = FACE_BOUND('',#5915,.T.); -#5915 = EDGE_LOOP('',(#5916,#5917,#5936,#5937)); -#5916 = ORIENTED_EDGE('',*,*,#1918,.F.); -#5917 = ORIENTED_EDGE('',*,*,#5918,.F.); -#5918 = EDGE_CURVE('',#5234,#1873,#5919,.T.); -#5919 = SURFACE_CURVE('',#5920,(#5924,#5930),.PCURVE_S1.); -#5920 = LINE('',#5921,#5922); -#5921 = CARTESIAN_POINT('',(-5.832249568059E-002,0.229026557075,0.302)); -#5922 = VECTOR('',#5923,1.); -#5923 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#5924 = PCURVE('',#1950,#5925); -#5925 = DEFINITIONAL_REPRESENTATION('',(#5926),#5929); -#5926 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5927,#5928),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#5927 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5928 = CARTESIAN_POINT('',(0.E+000,1.)); -#5929 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5930 = PCURVE('',#1896,#5931); -#5931 = DEFINITIONAL_REPRESENTATION('',(#5932),#5935); -#5932 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5933,#5934),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#5933 = CARTESIAN_POINT('',(1.,0.E+000)); -#5934 = CARTESIAN_POINT('',(1.,1.)); -#5935 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5936 = ORIENTED_EDGE('',*,*,#5233,.T.); -#5937 = ORIENTED_EDGE('',*,*,#5893,.T.); -#5938 = ADVANCED_FACE('',(#5939),#1896,.T.); -#5939 = FACE_BOUND('',#5940,.T.); -#5940 = EDGE_LOOP('',(#5941,#5942,#5962,#5963)); -#5941 = ORIENTED_EDGE('',*,*,#1872,.F.); -#5942 = ORIENTED_EDGE('',*,*,#5943,.F.); -#5943 = EDGE_CURVE('',#5273,#1845,#5944,.T.); -#5944 = SURFACE_CURVE('',#5945,(#5949,#5955),.PCURVE_S1.); -#5945 = LINE('',#5946,#5947); -#5946 = CARTESIAN_POINT('',(-5.256024222089E-002,0.202684826973,0.302)); -#5947 = VECTOR('',#5948,1.); -#5948 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#5949 = PCURVE('',#1896,#5950); -#5950 = DEFINITIONAL_REPRESENTATION('',(#5951),#5954); -#5951 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5952,#5953),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#5952 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#5953 = CARTESIAN_POINT('',(0.E+000,1.)); -#5954 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5955 = PCURVE('',#1860,#5956); -#5956 = DEFINITIONAL_REPRESENTATION('',(#5957),#5961); -#5957 = LINE('',#5958,#5959); -#5958 = CARTESIAN_POINT('',(-1.678962447617E-002,-7.311298816786E-019)); -#5959 = VECTOR('',#5960,1.); -#5960 = DIRECTION('',(0.E+000,-1.)); -#5961 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#5962 = ORIENTED_EDGE('',*,*,#5272,.T.); -#5963 = ORIENTED_EDGE('',*,*,#5918,.T.); -#5964 = ADVANCED_FACE('',(#5965),#1860,.T.); -#5965 = FACE_BOUND('',#5966,.T.); -#5966 = EDGE_LOOP('',(#5967,#5968,#5969,#5970)); -#5967 = ORIENTED_EDGE('',*,*,#1844,.F.); -#5968 = ORIENTED_EDGE('',*,*,#5694,.F.); -#5969 = ORIENTED_EDGE('',*,*,#5303,.T.); -#5970 = ORIENTED_EDGE('',*,*,#5943,.T.); -#5971 = ADVANCED_FACE('',(#5972),#5446,.T.); -#5972 = FACE_BOUND('',#5973,.T.); -#5973 = EDGE_LOOP('',(#5974,#6028,#6047,#6048)); -#5974 = ORIENTED_EDGE('',*,*,#5975,.F.); -#5975 = EDGE_CURVE('',#5976,#5978,#5980,.T.); -#5976 = VERTEX_POINT('',#5977); -#5977 = CARTESIAN_POINT('',(-7.530056391007E-002,0.153294083033,0.3)); -#5978 = VERTEX_POINT('',#5979); -#5979 = CARTESIAN_POINT('',(-0.101950986161,0.100250481989,0.3)); -#5980 = SURFACE_CURVE('',#5981,(#5997,#6004),.PCURVE_S1.); -#5981 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5982,#5983,#5984,#5985,#5986, - #5987,#5988,#5989,#5990,#5991,#5992,#5993,#5994,#5995,#5996), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 4.226779333469E-002,8.432559633327E-002,0.127039892833, - 0.171814314024,0.219694337501,0.271016843258,0.327501557308, - 0.389152196716,0.521662359695,0.665761784131,0.824900004924,1.), - .UNSPECIFIED.); -#5982 = CARTESIAN_POINT('',(-7.530056391007E-002,0.153294083033,0.3)); -#5983 = CARTESIAN_POINT('',(-7.621516748532E-002,0.153264412118,0.3)); -#5984 = CARTESIAN_POINT('',(-7.803983080003E-002,0.153205217696,0.3)); -#5985 = CARTESIAN_POINT('',(-8.06866425473E-002,0.152415783666,0.3)); -#5986 = CARTESIAN_POINT('',(-8.325072480295E-002,0.151288822602,0.3)); -#5987 = CARTESIAN_POINT('',(-8.568509650074E-002,0.149652877524,0.3)); -#5988 = CARTESIAN_POINT('',(-8.801511932755E-002,0.14758562449,0.3)); -#5989 = CARTESIAN_POINT('',(-9.017142601542E-002,0.145001429604,0.3)); -#5990 = CARTESIAN_POINT('',(-9.228548873588E-002,0.142016496381,0.3)); -#5991 = CARTESIAN_POINT('',(-9.499192822814E-002,0.137330258597,0.3)); -#5992 = CARTESIAN_POINT('',(-9.787439941184E-002,0.130593101157,0.3)); -#5993 = CARTESIAN_POINT('',(-0.100229861275,0.121472416913,0.3)); -#5994 = CARTESIAN_POINT('',(-0.101749343164,0.11124261082,0.3)); -#5995 = CARTESIAN_POINT('',(-0.101881665448,0.10402934967,0.3)); -#5996 = CARTESIAN_POINT('',(-0.101950986161,0.100250481989,0.3)); -#5997 = PCURVE('',#5446,#5998); -#5998 = DEFINITIONAL_REPRESENTATION('',(#5999),#6003); -#5999 = LINE('',#6000,#6001); -#6000 = CARTESIAN_POINT('',(0.E+000,1.)); -#6001 = VECTOR('',#6002,1.); -#6002 = DIRECTION('',(1.,0.E+000)); -#6003 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6004 = PCURVE('',#6005,#6010); -#6005 = PLANE('',#6006); -#6006 = AXIS2_PLACEMENT_3D('',#6007,#6008,#6009); -#6007 = CARTESIAN_POINT('',(-0.8,-0.4,0.3)); -#6008 = DIRECTION('',(0.E+000,2.22044604925E-016,1.)); -#6009 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#6010 = DEFINITIONAL_REPRESENTATION('',(#6011),#6027); -#6011 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6012,#6013,#6014,#6015,#6016, - #6017,#6018,#6019,#6020,#6021,#6022,#6023,#6024,#6025,#6026), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 4.226779333469E-002,8.432559633327E-002,0.127039892833, - 0.171814314024,0.219694337501,0.271016843258,0.327501557308, - 0.389152196716,0.521662359695,0.665761784131,0.824900004924,1.), - .UNSPECIFIED.); -#6012 = CARTESIAN_POINT('',(-0.553294083033,0.72469943609)); -#6013 = CARTESIAN_POINT('',(-0.553264412118,0.723784832515)); -#6014 = CARTESIAN_POINT('',(-0.553205217696,0.7219601692)); -#6015 = CARTESIAN_POINT('',(-0.552415783666,0.719313357453)); -#6016 = CARTESIAN_POINT('',(-0.551288822602,0.716749275197)); -#6017 = CARTESIAN_POINT('',(-0.549652877524,0.714314903499)); -#6018 = CARTESIAN_POINT('',(-0.54758562449,0.711984880672)); -#6019 = CARTESIAN_POINT('',(-0.545001429604,0.709828573985)); -#6020 = CARTESIAN_POINT('',(-0.542016496381,0.707714511264)); -#6021 = CARTESIAN_POINT('',(-0.537330258597,0.705008071772)); -#6022 = CARTESIAN_POINT('',(-0.530593101157,0.702125600588)); -#6023 = CARTESIAN_POINT('',(-0.521472416913,0.699770138725)); -#6024 = CARTESIAN_POINT('',(-0.51124261082,0.698250656836)); -#6025 = CARTESIAN_POINT('',(-0.50402934967,0.698118334552)); -#6026 = CARTESIAN_POINT('',(-0.500250481989,0.698049013839)); -#6027 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6028 = ORIENTED_EDGE('',*,*,#6029,.F.); -#6029 = EDGE_CURVE('',#5407,#5976,#6030,.T.); -#6030 = SURFACE_CURVE('',#6031,(#6035,#6041),.PCURVE_S1.); -#6031 = LINE('',#6032,#6033); -#6032 = CARTESIAN_POINT('',(-7.530056391007E-002,0.153294083033,0.302)); -#6033 = VECTOR('',#6034,1.); -#6034 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#6035 = PCURVE('',#5446,#6036); -#6036 = DEFINITIONAL_REPRESENTATION('',(#6037),#6040); -#6037 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#6038,#6039),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#6038 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#6039 = CARTESIAN_POINT('',(0.E+000,1.)); -#6040 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6041 = PCURVE('',#5532,#6042); -#6042 = DEFINITIONAL_REPRESENTATION('',(#6043),#6046); -#6043 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#6044,#6045),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#6044 = CARTESIAN_POINT('',(1.,0.E+000)); -#6045 = CARTESIAN_POINT('',(1.,1.)); -#6046 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6047 = ORIENTED_EDGE('',*,*,#5406,.T.); -#6048 = ORIENTED_EDGE('',*,*,#6049,.T.); -#6049 = EDGE_CURVE('',#5327,#5978,#6050,.T.); -#6050 = SURFACE_CURVE('',#6051,(#6055,#6061),.PCURVE_S1.); -#6051 = LINE('',#6052,#6053); -#6052 = CARTESIAN_POINT('',(-0.101950986161,0.100250481989,0.302)); -#6053 = VECTOR('',#6054,1.); -#6054 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#6055 = PCURVE('',#5446,#6056); -#6056 = DEFINITIONAL_REPRESENTATION('',(#6057),#6060); -#6057 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#6058,#6059),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#6058 = CARTESIAN_POINT('',(1.,0.E+000)); -#6059 = CARTESIAN_POINT('',(1.,1.)); -#6060 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6061 = PCURVE('',#5368,#6062); -#6062 = DEFINITIONAL_REPRESENTATION('',(#6063),#6066); -#6063 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#6064,#6065),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#6064 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#6065 = CARTESIAN_POINT('',(0.E+000,1.)); -#6066 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6067 = ADVANCED_FACE('',(#6068),#5368,.T.); -#6068 = FACE_BOUND('',#6069,.T.); -#6069 = EDGE_LOOP('',(#6070,#6117,#6118,#6119)); -#6070 = ORIENTED_EDGE('',*,*,#6071,.F.); -#6071 = EDGE_CURVE('',#5978,#6072,#6074,.T.); -#6072 = VERTEX_POINT('',#6073); -#6073 = CARTESIAN_POINT('',(-7.463173091921E-002,4.13417301015E-002,0.3) - ); -#6074 = SURFACE_CURVE('',#6075,(#6091,#6098),.PCURVE_S1.); -#6075 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6076,#6077,#6078,#6079,#6080, - #6081,#6082,#6083,#6084,#6085,#6086,#6087,#6088,#6089,#6090), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 0.109243264963,0.216023149294,0.321968345541,0.426361294985, - 0.524965644475,0.61273172182,0.691523903003,0.761600299833, - 0.824438999256,0.882594851407,0.93994307164,1.),.UNSPECIFIED.); -#6076 = CARTESIAN_POINT('',(-0.101950986161,0.100250481989,0.3)); -#6077 = CARTESIAN_POINT('',(-0.101924104222,9.767572844008E-002,0.3)); -#6078 = CARTESIAN_POINT('',(-0.101870946518,9.258428073938E-002,0.3)); -#6079 = CARTESIAN_POINT('',(-0.101062342672,8.503635691268E-002,0.3)); -#6080 = CARTESIAN_POINT('',(-0.100056852551,7.763101160967E-002,0.3)); -#6081 = CARTESIAN_POINT('',(-9.845525110705E-002,7.05224936676E-002,0.3) - ); -#6082 = CARTESIAN_POINT('',(-9.653808570573E-002,6.394566630728E-002,0.3 - )); -#6083 = CARTESIAN_POINT('',(-9.44232786662E-002,5.805666442772E-002,0.3) - ); -#6084 = CARTESIAN_POINT('',(-9.193209721297E-002,5.306140394613E-002,0.3 - )); -#6085 = CARTESIAN_POINT('',(-8.931652250781E-002,4.879677656191E-002,0.3 - )); -#6086 = CARTESIAN_POINT('',(-8.624072233728E-002,4.546170383601E-002,0.3 - )); -#6087 = CARTESIAN_POINT('',(-8.27577752205E-002,4.305433232873E-002,0.3) - ); -#6088 = CARTESIAN_POINT('',(-7.88238642164E-002,4.158657614539E-002,0.3) - ); -#6089 = CARTESIAN_POINT('',(-7.605043768421E-002,4.142459119255E-002,0.3 - )); -#6090 = CARTESIAN_POINT('',(-7.463173091921E-002,4.13417301015E-002,0.3) - ); -#6091 = PCURVE('',#5368,#6092); -#6092 = DEFINITIONAL_REPRESENTATION('',(#6093),#6097); -#6093 = LINE('',#6094,#6095); -#6094 = CARTESIAN_POINT('',(0.E+000,1.)); -#6095 = VECTOR('',#6096,1.); -#6096 = DIRECTION('',(1.,0.E+000)); -#6097 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6098 = PCURVE('',#6005,#6099); -#6099 = DEFINITIONAL_REPRESENTATION('',(#6100),#6116); -#6100 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6101,#6102,#6103,#6104,#6105, - #6106,#6107,#6108,#6109,#6110,#6111,#6112,#6113,#6114,#6115), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 0.109243264963,0.216023149294,0.321968345541,0.426361294985, - 0.524965644475,0.61273172182,0.691523903003,0.761600299833, - 0.824438999256,0.882594851407,0.93994307164,1.),.UNSPECIFIED.); -#6101 = CARTESIAN_POINT('',(-0.500250481989,0.698049013839)); -#6102 = CARTESIAN_POINT('',(-0.49767572844,0.698075895778)); -#6103 = CARTESIAN_POINT('',(-0.492584280739,0.698129053482)); -#6104 = CARTESIAN_POINT('',(-0.485036356913,0.698937657328)); -#6105 = CARTESIAN_POINT('',(-0.47763101161,0.699943147449)); -#6106 = CARTESIAN_POINT('',(-0.470522493668,0.701544748893)); -#6107 = CARTESIAN_POINT('',(-0.463945666307,0.703461914294)); -#6108 = CARTESIAN_POINT('',(-0.458056664428,0.705576721334)); -#6109 = CARTESIAN_POINT('',(-0.453061403946,0.708067902787)); -#6110 = CARTESIAN_POINT('',(-0.448796776562,0.710683477492)); -#6111 = CARTESIAN_POINT('',(-0.445461703836,0.713759277663)); -#6112 = CARTESIAN_POINT('',(-0.443054332329,0.71724222478)); -#6113 = CARTESIAN_POINT('',(-0.441586576145,0.721176135784)); -#6114 = CARTESIAN_POINT('',(-0.441424591193,0.723949562316)); -#6115 = CARTESIAN_POINT('',(-0.441341730101,0.725368269081)); -#6116 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6117 = ORIENTED_EDGE('',*,*,#6049,.F.); -#6118 = ORIENTED_EDGE('',*,*,#5326,.T.); -#6119 = ORIENTED_EDGE('',*,*,#6120,.T.); -#6120 = EDGE_CURVE('',#5329,#6072,#6121,.T.); -#6121 = SURFACE_CURVE('',#6122,(#6126,#6132),.PCURVE_S1.); -#6122 = LINE('',#6123,#6124); -#6123 = CARTESIAN_POINT('',(-7.463173091921E-002,4.13417301015E-002, - 0.302)); -#6124 = VECTOR('',#6125,1.); -#6125 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#6126 = PCURVE('',#5368,#6127); -#6127 = DEFINITIONAL_REPRESENTATION('',(#6128),#6131); -#6128 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#6129,#6130),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#6129 = CARTESIAN_POINT('',(1.,0.E+000)); -#6130 = CARTESIAN_POINT('',(1.,1.)); -#6131 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6132 = PCURVE('',#5624,#6133); -#6133 = DEFINITIONAL_REPRESENTATION('',(#6134),#6137); -#6134 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#6135,#6136),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#6135 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#6136 = CARTESIAN_POINT('',(0.E+000,1.)); -#6137 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6138 = ADVANCED_FACE('',(#6139),#5624,.T.); -#6139 = FACE_BOUND('',#6140,.T.); -#6140 = EDGE_LOOP('',(#6141,#6196,#6197,#6198)); -#6141 = ORIENTED_EDGE('',*,*,#6142,.F.); -#6142 = EDGE_CURVE('',#6072,#6143,#6145,.T.); -#6143 = VERTEX_POINT('',#6144); -#6144 = CARTESIAN_POINT('',(-4.92675259582E-002,9.855267516568E-002,0.3) - ); -#6145 = SURFACE_CURVE('',#6146,(#6166,#6173),.PCURVE_S1.); -#6146 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6147,#6148,#6149,#6150,#6151, - #6152,#6153,#6154,#6155,#6156,#6157,#6158,#6159,#6160,#6161,#6162, - #6163,#6164,#6165),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,4.305891415309E-002,8.431100584057E-002, - 0.126412344501,0.169628791793,0.214862033891,0.264105324653, - 0.317793992402,0.376356096119,0.439245264454,0.506359790794, - 0.576812824148,0.65267291028,0.732387812435,0.816256919086, - 0.905921728012,1.),.UNSPECIFIED.); -#6147 = CARTESIAN_POINT('',(-7.463173091921E-002,4.13417301015E-002,0.3) - ); -#6148 = CARTESIAN_POINT('',(-7.36489444578E-002,4.13909814942E-002,0.3) - ); -#6149 = CARTESIAN_POINT('',(-7.172461086236E-002,4.148741761061E-002,0.3 - )); -#6150 = CARTESIAN_POINT('',(-6.893007938947E-002,4.226139891875E-002,0.3 - )); -#6151 = CARTESIAN_POINT('',(-6.627788929855E-002,4.342726502517E-002,0.3 - )); -#6152 = CARTESIAN_POINT('',(-6.383910156245E-002,4.516758759971E-002,0.3 - )); -#6153 = CARTESIAN_POINT('',(-6.161659080274E-002,4.739228249608E-002,0.3 - )); -#6154 = CARTESIAN_POINT('',(-5.947676231063E-002,5.001697312644E-002,0.3 - )); -#6155 = CARTESIAN_POINT('',(-5.760886593088E-002,5.319918237196E-002,0.3 - )); -#6156 = CARTESIAN_POINT('',(-5.585511740996E-002,5.678892740192E-002,0.3 - )); -#6157 = CARTESIAN_POINT('',(-5.435029965401E-002,6.081846785872E-002,0.3 - )); -#6158 = CARTESIAN_POINT('',(-5.293755803954E-002,6.516610625362E-002,0.3 - )); -#6159 = CARTESIAN_POINT('',(-5.183880023704E-002,6.990800971198E-002,0.3 - )); -#6160 = CARTESIAN_POINT('',(-5.084022508801E-002,7.49630459341E-002,0.3) - ); -#6161 = CARTESIAN_POINT('',(-5.014894616744E-002,8.037925197238E-002,0.3 - )); -#6162 = CARTESIAN_POINT('',(-4.963075664615E-002,8.61279654229E-002,0.3) - ); -#6163 = CARTESIAN_POINT('',(-4.932415532072E-002,9.222114964923E-002,0.3 - )); -#6164 = CARTESIAN_POINT('',(-4.928670228325E-002,9.640863917488E-002,0.3 - )); -#6165 = CARTESIAN_POINT('',(-4.92675259582E-002,9.855267516568E-002,0.3) - ); -#6166 = PCURVE('',#5624,#6167); -#6167 = DEFINITIONAL_REPRESENTATION('',(#6168),#6172); -#6168 = LINE('',#6169,#6170); -#6169 = CARTESIAN_POINT('',(0.E+000,1.)); -#6170 = VECTOR('',#6171,1.); -#6171 = DIRECTION('',(1.,0.E+000)); -#6172 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6173 = PCURVE('',#6005,#6174); -#6174 = DEFINITIONAL_REPRESENTATION('',(#6175),#6195); -#6175 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6176,#6177,#6178,#6179,#6180, - #6181,#6182,#6183,#6184,#6185,#6186,#6187,#6188,#6189,#6190,#6191, - #6192,#6193,#6194),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,4.305891415309E-002,8.431100584057E-002, - 0.126412344501,0.169628791793,0.214862033891,0.264105324653, - 0.317793992402,0.376356096119,0.439245264454,0.506359790794, - 0.576812824148,0.65267291028,0.732387812435,0.816256919086, - 0.905921728012,1.),.UNSPECIFIED.); -#6176 = CARTESIAN_POINT('',(-0.441341730101,0.725368269081)); -#6177 = CARTESIAN_POINT('',(-0.441390981494,0.726351055542)); -#6178 = CARTESIAN_POINT('',(-0.441487417611,0.728275389138)); -#6179 = CARTESIAN_POINT('',(-0.442261398919,0.731069920611)); -#6180 = CARTESIAN_POINT('',(-0.443427265025,0.733722110701)); -#6181 = CARTESIAN_POINT('',(-0.4451675876,0.736160898438)); -#6182 = CARTESIAN_POINT('',(-0.447392282496,0.738383409197)); -#6183 = CARTESIAN_POINT('',(-0.450016973126,0.740523237689)); -#6184 = CARTESIAN_POINT('',(-0.453199182372,0.742391134069)); -#6185 = CARTESIAN_POINT('',(-0.456788927402,0.74414488259)); -#6186 = CARTESIAN_POINT('',(-0.460818467859,0.745649700346)); -#6187 = CARTESIAN_POINT('',(-0.465166106254,0.74706244196)); -#6188 = CARTESIAN_POINT('',(-0.469908009712,0.748161199763)); -#6189 = CARTESIAN_POINT('',(-0.474963045934,0.749159774912)); -#6190 = CARTESIAN_POINT('',(-0.480379251972,0.749851053833)); -#6191 = CARTESIAN_POINT('',(-0.486127965423,0.750369243354)); -#6192 = CARTESIAN_POINT('',(-0.492221149649,0.750675844679)); -#6193 = CARTESIAN_POINT('',(-0.496408639175,0.750713297717)); -#6194 = CARTESIAN_POINT('',(-0.498552675166,0.750732474042)); -#6195 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6196 = ORIENTED_EDGE('',*,*,#6120,.F.); -#6197 = ORIENTED_EDGE('',*,*,#5578,.T.); -#6198 = ORIENTED_EDGE('',*,*,#6199,.T.); -#6199 = EDGE_CURVE('',#5485,#6143,#6200,.T.); -#6200 = SURFACE_CURVE('',#6201,(#6205,#6211),.PCURVE_S1.); -#6201 = LINE('',#6202,#6203); -#6202 = CARTESIAN_POINT('',(-4.92675259582E-002,9.855267516568E-002, - 0.302)); -#6203 = VECTOR('',#6204,1.); -#6204 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#6205 = PCURVE('',#5624,#6206); -#6206 = DEFINITIONAL_REPRESENTATION('',(#6207),#6210); -#6207 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#6208,#6209),.UNSPECIFIED.,.F., - .F.,(2,2),(1.665334536938E-016,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#6208 = CARTESIAN_POINT('',(1.,0.E+000)); -#6209 = CARTESIAN_POINT('',(1.,1.)); -#6210 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6211 = PCURVE('',#5532,#6212); -#6212 = DEFINITIONAL_REPRESENTATION('',(#6213),#6216); -#6213 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#6214,#6215),.UNSPECIFIED.,.F., - .F.,(2,2),(1.665334536938E-016,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#6214 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#6215 = CARTESIAN_POINT('',(0.E+000,1.)); -#6216 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6217 = ADVANCED_FACE('',(#6218),#5532,.T.); -#6218 = FACE_BOUND('',#6219,.T.); -#6219 = EDGE_LOOP('',(#6220,#6273,#6274,#6275)); -#6220 = ORIENTED_EDGE('',*,*,#6221,.F.); -#6221 = EDGE_CURVE('',#6143,#5976,#6222,.T.); -#6222 = SURFACE_CURVE('',#6223,(#6243,#6250),.PCURVE_S1.); -#6223 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6224,#6225,#6226,#6227,#6228, - #6229,#6230,#6231,#6232,#6233,#6234,#6235,#6236,#6237,#6238,#6239, - #6240,#6241,#6242),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,9.242081121346E-002,0.180329895351,0.263852826636, - 0.341610477782,0.415311914955,0.48516335459,0.550673340517, - 0.612163040493,0.670020610958,0.723416823037,0.772616779675, - 0.818980921461,0.864284136055,0.908474144563,0.952925060694,1.), - .UNSPECIFIED.); -#6224 = CARTESIAN_POINT('',(-4.92675259582E-002,9.855267516568E-002,0.3) - ); -#6225 = CARTESIAN_POINT('',(-4.928614427853E-002,0.100611041805,0.3)); -#6226 = CARTESIAN_POINT('',(-4.932247202454E-002,0.104627291347,0.3)); -#6227 = CARTESIAN_POINT('',(-4.963767284786E-002,0.110496735164,0.3)); -#6228 = CARTESIAN_POINT('',(-5.013548034991E-002,0.11602541934,0.3)); -#6229 = CARTESIAN_POINT('',(-5.085808856057E-002,0.121210612842,0.3)); -#6230 = CARTESIAN_POINT('',(-5.177882522002E-002,0.126054644433,0.3)); -#6231 = CARTESIAN_POINT('',(-5.289788566873E-002,0.130576790858,0.3)); -#6232 = CARTESIAN_POINT('',(-5.422849914395E-002,0.134758115317,0.3)); -#6233 = CARTESIAN_POINT('',(-5.577247968458E-002,0.138577961453,0.3)); -#6234 = CARTESIAN_POINT('',(-5.748869161871E-002,0.142028574223,0.3)); -#6235 = CARTESIAN_POINT('',(-5.945181769915E-002,0.145023464358,0.3)); -#6236 = CARTESIAN_POINT('',(-6.156434267908E-002,0.147592123688,0.3)); -#6237 = CARTESIAN_POINT('',(-6.390745610769E-002,0.149700085877,0.3)); -#6238 = CARTESIAN_POINT('',(-6.649600476558E-002,0.151300103808,0.3)); -#6239 = CARTESIAN_POINT('',(-6.926461702342E-002,0.152427404118,0.3)); -#6240 = CARTESIAN_POINT('',(-7.220441410358E-002,0.153217224023,0.3)); -#6241 = CARTESIAN_POINT('',(-7.424897496E-002,0.153267978325,0.3)); -#6242 = CARTESIAN_POINT('',(-7.530056391007E-002,0.153294083033,0.3)); -#6243 = PCURVE('',#5532,#6244); -#6244 = DEFINITIONAL_REPRESENTATION('',(#6245),#6249); -#6245 = LINE('',#6246,#6247); -#6246 = CARTESIAN_POINT('',(0.E+000,1.)); -#6247 = VECTOR('',#6248,1.); -#6248 = DIRECTION('',(1.,0.E+000)); -#6249 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6250 = PCURVE('',#6005,#6251); -#6251 = DEFINITIONAL_REPRESENTATION('',(#6252),#6272); -#6252 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6253,#6254,#6255,#6256,#6257, - #6258,#6259,#6260,#6261,#6262,#6263,#6264,#6265,#6266,#6267,#6268, - #6269,#6270,#6271),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,9.242081121346E-002,0.180329895351,0.263852826636, - 0.341610477782,0.415311914955,0.48516335459,0.550673340517, - 0.612163040493,0.670020610958,0.723416823037,0.772616779675, - 0.818980921461,0.864284136055,0.908474144563,0.952925060694,1.), - .UNSPECIFIED.); -#6253 = CARTESIAN_POINT('',(-0.498552675166,0.750732474042)); -#6254 = CARTESIAN_POINT('',(-0.500611041805,0.750713855721)); -#6255 = CARTESIAN_POINT('',(-0.504627291347,0.750677527975)); -#6256 = CARTESIAN_POINT('',(-0.510496735164,0.750362327152)); -#6257 = CARTESIAN_POINT('',(-0.51602541934,0.74986451965)); -#6258 = CARTESIAN_POINT('',(-0.521210612842,0.749141911439)); -#6259 = CARTESIAN_POINT('',(-0.526054644433,0.74822117478)); -#6260 = CARTESIAN_POINT('',(-0.530576790858,0.747102114331)); -#6261 = CARTESIAN_POINT('',(-0.534758115317,0.745771500856)); -#6262 = CARTESIAN_POINT('',(-0.538577961453,0.744227520315)); -#6263 = CARTESIAN_POINT('',(-0.542028574223,0.742511308381)); -#6264 = CARTESIAN_POINT('',(-0.545023464358,0.740548182301)); -#6265 = CARTESIAN_POINT('',(-0.547592123688,0.738435657321)); -#6266 = CARTESIAN_POINT('',(-0.549700085877,0.736092543892)); -#6267 = CARTESIAN_POINT('',(-0.551300103808,0.733503995234)); -#6268 = CARTESIAN_POINT('',(-0.552427404118,0.730735382977)); -#6269 = CARTESIAN_POINT('',(-0.553217224023,0.727795585896)); -#6270 = CARTESIAN_POINT('',(-0.553267978325,0.72575102504)); -#6271 = CARTESIAN_POINT('',(-0.553294083033,0.72469943609)); -#6272 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6273 = ORIENTED_EDGE('',*,*,#6199,.F.); -#6274 = ORIENTED_EDGE('',*,*,#5484,.T.); -#6275 = ORIENTED_EDGE('',*,*,#6029,.T.); -#6276 = ADVANCED_FACE('',(#6277),#6005,.T.); -#6277 = FACE_BOUND('',#6278,.T.); -#6278 = EDGE_LOOP('',(#6279,#6280,#6281,#6282)); -#6279 = ORIENTED_EDGE('',*,*,#5975,.T.); -#6280 = ORIENTED_EDGE('',*,*,#6071,.T.); -#6281 = ORIENTED_EDGE('',*,*,#6142,.T.); -#6282 = ORIENTED_EDGE('',*,*,#6221,.T.); -#6283 = ADVANCED_FACE('',(#6284,#6574),#6306,.T.); -#6284 = FACE_BOUND('',#6285,.T.); -#6285 = EDGE_LOOP('',(#6286,#6332,#6371,#6442,#6505)); -#6286 = ORIENTED_EDGE('',*,*,#6287,.F.); -#6287 = EDGE_CURVE('',#6288,#6290,#6292,.T.); -#6288 = VERTEX_POINT('',#6289); -#6289 = CARTESIAN_POINT('',(-6.668009309687E-003,3.645410439907E-002, - 0.302)); -#6290 = VERTEX_POINT('',#6291); -#6291 = CARTESIAN_POINT('',(-1.963307959402E-002,0.14166667873,0.302)); -#6292 = SURFACE_CURVE('',#6293,(#6305,#6325),.PCURVE_S1.); -#6293 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6294,#6295,#6296,#6297,#6298, - #6299,#6300,#6301,#6302,#6303,#6304),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,8.874248781343E-002,0.18749855617,0.295863554394 - ,0.414922527979,0.545071851417,0.685442978585,0.837216579864,1.), - .UNSPECIFIED.); -#6294 = CARTESIAN_POINT('',(-6.668009309687E-003,3.645410439907E-002, - 0.302)); -#6295 = CARTESIAN_POINT('',(-7.72868304737E-003,3.942311516555E-002, - 0.302)); -#6296 = CARTESIAN_POINT('',(-9.969715491732E-003,4.569615579902E-002, - 0.302)); -#6297 = CARTESIAN_POINT('',(-1.24736518448E-002,5.591197426034E-002, - 0.302)); -#6298 = CARTESIAN_POINT('',(-1.47841414487E-002,6.726344921029E-002, - 0.302)); -#6299 = CARTESIAN_POINT('',(-1.650481270486E-002,7.984902738091E-002, - 0.302)); -#6300 = CARTESIAN_POINT('',(-1.79710667163E-002,9.360587304361E-002, - 0.302)); -#6301 = CARTESIAN_POINT('',(-1.888454542454E-002,0.108575532398,0.302)); -#6302 = CARTESIAN_POINT('',(-1.953149962645E-002,0.124717181004,0.302)); -#6303 = CARTESIAN_POINT('',(-1.95984386269E-002,0.135886533221,0.302)); -#6304 = CARTESIAN_POINT('',(-1.963307959402E-002,0.14166667873,0.302)); -#6305 = PCURVE('',#6306,#6311); -#6306 = PLANE('',#6307); -#6307 = AXIS2_PLACEMENT_3D('',#6308,#6309,#6310); -#6308 = CARTESIAN_POINT('',(-1.739273237996E-002,8.847289229566E-002, - 0.302)); -#6309 = DIRECTION('',(-4.731836175145E-014,-1.668235472788E-014,1.)); -#6310 = DIRECTION('',(-1.,-1.05067869408E-029,-4.731836175145E-014)); -#6311 = DEFINITIONAL_REPRESENTATION('',(#6312),#6324); -#6312 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6313,#6314,#6315,#6316,#6317, - #6318,#6319,#6320,#6321,#6322,#6323),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,8.874248781343E-002,0.18749855617,0.295863554394 - ,0.414922527979,0.545071851417,0.685442978585,0.837216579864,1.), - .UNSPECIFIED.); -#6313 = CARTESIAN_POINT('',(-1.072472307027E-002,5.201878789659E-002)); -#6314 = CARTESIAN_POINT('',(-9.664049332589E-003,4.904977713011E-002)); -#6315 = CARTESIAN_POINT('',(-7.423016888227E-003,4.277673649664E-002)); -#6316 = CARTESIAN_POINT('',(-4.919080535155E-003,3.256091803532E-002)); -#6317 = CARTESIAN_POINT('',(-2.608590931261E-003,2.120944308537E-002)); -#6318 = CARTESIAN_POINT('',(-8.879196750988E-004,8.623864914748E-003)); -#6319 = CARTESIAN_POINT('',(5.783343363429E-004,-5.132980747957E-003)); -#6320 = CARTESIAN_POINT('',(1.491813044584E-003,-2.01026401025E-002)); -#6321 = CARTESIAN_POINT('',(2.138767246492E-003,-3.62442887087E-002)); -#6322 = CARTESIAN_POINT('',(2.205706246945E-003,-4.741364092578E-002)); -#6323 = CARTESIAN_POINT('',(2.240347214059E-003,-5.319378643458E-002)); -#6324 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6325 = PCURVE('',#1182,#6326); -#6326 = DEFINITIONAL_REPRESENTATION('',(#6327),#6331); -#6327 = LINE('',#6328,#6329); -#6328 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#6329 = VECTOR('',#6330,1.); -#6330 = DIRECTION('',(1.,0.E+000)); -#6331 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6332 = ORIENTED_EDGE('',*,*,#6333,.F.); -#6333 = EDGE_CURVE('',#6334,#6288,#6336,.T.); -#6334 = VERTEX_POINT('',#6335); -#6335 = CARTESIAN_POINT('',(2.317223182091E-002,1.170728373731E-002, - 0.302)); -#6336 = SURFACE_CURVE('',#6337,(#6349,#6364),.PCURVE_S1.); -#6337 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6338,#6339,#6340,#6341,#6342, - #6343,#6344,#6345,#6346,#6347,#6348),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.112854647064,0.222519376563,0.333140162926, - 0.446105343461,0.568897005585,0.700571950429,0.84303095511,1.), - .UNSPECIFIED.); -#6338 = CARTESIAN_POINT('',(2.317223182091E-002,1.170728373731E-002, - 0.302)); -#6339 = CARTESIAN_POINT('',(2.162230948923E-002,1.17927506929E-002,0.302 - )); -#6340 = CARTESIAN_POINT('',(1.856627449252E-002,1.196126881925E-002, - 0.302)); -#6341 = CARTESIAN_POINT('',(1.41038243527E-002,1.311682872093E-002,0.302 - )); -#6342 = CARTESIAN_POINT('',(9.957795856105E-003,1.511045280708E-002, - 0.302)); -#6343 = CARTESIAN_POINT('',(6.06522043719E-003,1.787476771453E-002,0.302 - )); -#6344 = CARTESIAN_POINT('',(2.410954475236E-003,2.138261236295E-002, - 0.302)); -#6345 = CARTESIAN_POINT('',(-9.106120123595E-004,2.572022484956E-002, - 0.302)); -#6346 = CARTESIAN_POINT('',(-4.04815170646E-003,3.075511344898E-002, - 0.302)); -#6347 = CARTESIAN_POINT('',(-5.766959432909E-003,3.449404554434E-002, - 0.302)); -#6348 = CARTESIAN_POINT('',(-6.668009309687E-003,3.645410439907E-002, - 0.302)); -#6349 = PCURVE('',#6306,#6350); -#6350 = DEFINITIONAL_REPRESENTATION('',(#6351),#6363); -#6351 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6352,#6353,#6354,#6355,#6356, - #6357,#6358,#6359,#6360,#6361,#6362),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.112854647064,0.222519376563,0.333140162926, - 0.446105343461,0.568897005585,0.700571950429,0.84303095511,1.), - .UNSPECIFIED.); -#6352 = CARTESIAN_POINT('',(-4.056496420087E-002,7.676560855834E-002)); -#6353 = CARTESIAN_POINT('',(-3.901504186918E-002,7.668014160276E-002)); -#6354 = CARTESIAN_POINT('',(-3.595900687247E-002,7.651162347641E-002)); -#6355 = CARTESIAN_POINT('',(-3.149655673266E-002,7.535606357472E-002)); -#6356 = CARTESIAN_POINT('',(-2.735052823606E-002,7.336243948858E-002)); -#6357 = CARTESIAN_POINT('',(-2.345795281715E-002,7.059812458112E-002)); -#6358 = CARTESIAN_POINT('',(-1.980368685519E-002,6.709027993271E-002)); -#6359 = CARTESIAN_POINT('',(-1.64821203676E-002,6.275266744609E-002)); -#6360 = CARTESIAN_POINT('',(-1.33445806735E-002,5.771777884668E-002)); -#6361 = CARTESIAN_POINT('',(-1.162577294705E-002,5.397884675132E-002)); -#6362 = CARTESIAN_POINT('',(-1.072472307027E-002,5.201878789659E-002)); -#6363 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6364 = PCURVE('',#1604,#6365); -#6365 = DEFINITIONAL_REPRESENTATION('',(#6366),#6370); -#6366 = LINE('',#6367,#6368); -#6367 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#6368 = VECTOR('',#6369,1.); -#6369 = DIRECTION('',(1.,0.E+000)); -#6370 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6371 = ORIENTED_EDGE('',*,*,#6372,.F.); -#6372 = EDGE_CURVE('',#6373,#6334,#6375,.T.); -#6373 = VERTEX_POINT('',#6374); -#6374 = CARTESIAN_POINT('',(6.597754323584E-002,0.14166667873,0.302)); -#6375 = SURFACE_CURVE('',#6376,(#6404,#6435),.PCURVE_S1.); -#6376 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6377,#6378,#6379,#6380,#6381, - #6382,#6383,#6384,#6385,#6386,#6387,#6388,#6389,#6390,#6391,#6392, - #6393,#6394,#6395,#6396,#6397,#6398,#6399,#6400,#6401,#6402,#6403), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 - ,4),(0.E+000,7.425127519617E-002,0.145037257032,0.212011713592, - 0.275899532849,0.336376269156,0.393470127391,0.447214638654, - 0.497650014754,0.544761778702,0.589415800961,0.631520666925, - 0.670553822249,0.707275483502,0.741788019776,0.773746666861, - 0.803640481672,0.831601955261,0.858005482741,0.882699108133, - 0.906487914208,0.929872290123,0.952805410626,0.976254653174,1.), - .UNSPECIFIED.); -#6377 = CARTESIAN_POINT('',(6.597754323584E-002,0.14166667873,0.302)); -#6378 = CARTESIAN_POINT('',(6.59781590966E-002,0.13801358504,0.302)); -#6379 = CARTESIAN_POINT('',(6.5979362076E-002,0.13087788687,0.302)); -#6380 = CARTESIAN_POINT('',(6.568386605353E-002,0.120451066329,0.302)); -#6381 = CARTESIAN_POINT('',(6.534902312739E-002,0.110536192324,0.302)); -#6382 = CARTESIAN_POINT('',(6.483487836148E-002,0.101136305097,0.302)); -#6383 = CARTESIAN_POINT('',(6.417318371142E-002,9.223306878761E-002, - 0.302)); -#6384 = CARTESIAN_POINT('',(6.335321090005E-002,8.384431887529E-002, - 0.302)); -#6385 = CARTESIAN_POINT('',(6.238954210199E-002,7.596750341227E-002, - 0.302)); -#6386 = CARTESIAN_POINT('',(6.123951687959E-002,6.861354441172E-002, - 0.302)); -#6387 = CARTESIAN_POINT('',(6.004168775988E-002,6.171890302916E-002, - 0.302)); -#6388 = CARTESIAN_POINT('',(5.856567304436E-002,5.529887812021E-002, - 0.302)); -#6389 = CARTESIAN_POINT('',(5.706880600585E-002,4.929254856317E-002, - 0.302)); -#6390 = CARTESIAN_POINT('',(5.535221745542E-002,4.375155584245E-002, - 0.302)); -#6391 = CARTESIAN_POINT('',(5.351409616657E-002,3.864446330822E-002, - 0.302)); -#6392 = CARTESIAN_POINT('',(5.150385476805E-002,3.39814372612E-002,0.302 - )); -#6393 = CARTESIAN_POINT('',(4.943011845709E-002,2.971103287235E-002, - 0.302)); -#6394 = CARTESIAN_POINT('',(4.707573905087E-002,2.596670538104E-002, - 0.302)); -#6395 = CARTESIAN_POINT('',(4.469182805396E-002,2.256839536119E-002, - 0.302)); -#6396 = CARTESIAN_POINT('',(4.205450112872E-002,1.969534669371E-002, - 0.302)); -#6397 = CARTESIAN_POINT('',(3.930138538622E-002,1.724081704812E-002, - 0.302)); -#6398 = CARTESIAN_POINT('',(3.640843752915E-002,1.518570449081E-002, - 0.302)); -#6399 = CARTESIAN_POINT('',(3.329964953704E-002,1.366659229598E-002, - 0.302)); -#6400 = CARTESIAN_POINT('',(3.0067263023E-002,1.249148670626E-002,0.302) - ); -#6401 = CARTESIAN_POINT('',(2.666465408093E-002,1.181578354923E-002, - 0.302)); -#6402 = CARTESIAN_POINT('',(2.434123171392E-002,1.174360130119E-002, - 0.302)); -#6403 = CARTESIAN_POINT('',(2.317223182091E-002,1.170728373731E-002, - 0.302)); -#6404 = PCURVE('',#6306,#6405); -#6405 = DEFINITIONAL_REPRESENTATION('',(#6406),#6434); -#6406 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6407,#6408,#6409,#6410,#6411, - #6412,#6413,#6414,#6415,#6416,#6417,#6418,#6419,#6420,#6421,#6422, - #6423,#6424,#6425,#6426,#6427,#6428,#6429,#6430,#6431,#6432,#6433), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 - ,4),(0.E+000,7.425127519617E-002,0.145037257032,0.212011713592, - 0.275899532849,0.336376269156,0.393470127391,0.447214638654, - 0.497650014754,0.544761778702,0.589415800961,0.631520666925, - 0.670553822249,0.707275483502,0.741788019776,0.773746666861, - 0.803640481672,0.831601955261,0.858005482741,0.882699108133, - 0.906487914208,0.929872290123,0.952805410626,0.976254653174,1.), - .UNSPECIFIED.); -#6407 = CARTESIAN_POINT('',(-8.33702756158E-002,-5.319378643458E-002)); -#6408 = CARTESIAN_POINT('',(-8.337089147656E-002,-4.954069274428E-002)); -#6409 = CARTESIAN_POINT('',(-8.337209445596E-002,-4.240499457446E-002)); -#6410 = CARTESIAN_POINT('',(-8.307659843348E-002,-3.197817403325E-002)); -#6411 = CARTESIAN_POINT('',(-8.274175550735E-002,-2.206330002786E-002)); -#6412 = CARTESIAN_POINT('',(-8.222761074144E-002,-1.266341280142E-002)); -#6413 = CARTESIAN_POINT('',(-8.156591609138E-002,-3.760176491951E-003)); -#6414 = CARTESIAN_POINT('',(-8.074594328001E-002,4.628573420369E-003)); -#6415 = CARTESIAN_POINT('',(-7.978227448195E-002,1.250538888339E-002)); -#6416 = CARTESIAN_POINT('',(-7.863224925955E-002,1.985934788394E-002)); -#6417 = CARTESIAN_POINT('',(-7.743442013984E-002,2.675398926649E-002)); -#6418 = CARTESIAN_POINT('',(-7.595840542432E-002,3.317401417545E-002)); -#6419 = CARTESIAN_POINT('',(-7.446153838581E-002,3.918034373249E-002)); -#6420 = CARTESIAN_POINT('',(-7.274494983537E-002,4.47213364532E-002)); -#6421 = CARTESIAN_POINT('',(-7.090682854653E-002,4.982842898743E-002)); -#6422 = CARTESIAN_POINT('',(-6.8896587148E-002,5.449145503445E-002)); -#6423 = CARTESIAN_POINT('',(-6.682285083705E-002,5.876185942331E-002)); -#6424 = CARTESIAN_POINT('',(-6.446847143083E-002,6.250618691462E-002)); -#6425 = CARTESIAN_POINT('',(-6.208456043392E-002,6.590449693447E-002)); -#6426 = CARTESIAN_POINT('',(-5.944723350868E-002,6.877754560195E-002)); -#6427 = CARTESIAN_POINT('',(-5.669411776618E-002,7.123207524753E-002)); -#6428 = CARTESIAN_POINT('',(-5.380116990911E-002,7.328718780485E-002)); -#6429 = CARTESIAN_POINT('',(-5.0692381917E-002,7.480629999967E-002)); -#6430 = CARTESIAN_POINT('',(-4.745999540296E-002,7.59814055894E-002)); -#6431 = CARTESIAN_POINT('',(-4.405738646088E-002,7.665710874642E-002)); -#6432 = CARTESIAN_POINT('',(-4.173396409387E-002,7.672929099446E-002)); -#6433 = CARTESIAN_POINT('',(-4.056496420087E-002,7.676560855834E-002)); -#6434 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6435 = PCURVE('',#1512,#6436); -#6436 = DEFINITIONAL_REPRESENTATION('',(#6437),#6441); -#6437 = LINE('',#6438,#6439); -#6438 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#6439 = VECTOR('',#6440,1.); -#6440 = DIRECTION('',(1.,0.E+000)); -#6441 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6442 = ORIENTED_EDGE('',*,*,#6443,.F.); -#6443 = EDGE_CURVE('',#6444,#6373,#6446,.T.); -#6444 = VERTEX_POINT('',#6445); -#6445 = CARTESIAN_POINT('',(2.317223182091E-002,0.27183186849,0.302)); -#6446 = SURFACE_CURVE('',#6447,(#6471,#6498),.PCURVE_S1.); -#6447 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6448,#6449,#6450,#6451,#6452, - #6453,#6454,#6455,#6456,#6457,#6458,#6459,#6460,#6461,#6462,#6463, - #6464,#6465,#6466,#6467,#6468,#6469,#6470),.UNSPECIFIED.,.F.,.F.,(4, - 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000,3.49368870829E-002 - ,7.023339896965E-002,0.106497580507,0.145587588832,0.187189203945, - 0.231348430884,0.279252738402,0.331360897076,0.388442948375, - 0.450964118434,0.518748490246,0.592148889515,0.631731987362, - 0.674661745447,0.720681059568,0.7701442824,0.822678593948, - 0.878317576116,0.937424730831,1.),.UNSPECIFIED.); -#6448 = CARTESIAN_POINT('',(2.317223182091E-002,0.27183186849,0.302)); -#6449 = CARTESIAN_POINT('',(2.489741982901E-002,0.271730260817,0.302)); -#6450 = CARTESIAN_POINT('',(2.836555416458E-002,0.271525999567,0.302)); -#6451 = CARTESIAN_POINT('',(3.343632197499E-002,0.269931461148,0.302)); -#6452 = CARTESIAN_POINT('',(3.817970480349E-002,0.267181372234,0.302)); -#6453 = CARTESIAN_POINT('',(4.27302194525E-002,0.263593923,0.302)); -#6454 = CARTESIAN_POINT('',(4.682603091564E-002,0.258957748406,0.302)); -#6455 = CARTESIAN_POINT('',(5.048710903561E-002,0.253444341624,0.302)); -#6456 = CARTESIAN_POINT('',(5.341302350196E-002,0.246934771821,0.302)); -#6457 = CARTESIAN_POINT('',(5.585192511915E-002,0.239571047505,0.302)); -#6458 = CARTESIAN_POINT('',(5.791769774606E-002,0.231350486514,0.302)); -#6459 = CARTESIAN_POINT('',(5.979333253746E-002,0.222297662332,0.302)); -#6460 = CARTESIAN_POINT('',(6.156170775209E-002,0.21240277796,0.302)); -#6461 = CARTESIAN_POINT('',(6.278159431962E-002,0.203568217913,0.302)); -#6462 = CARTESIAN_POINT('',(6.378050185591E-002,0.195940552837,0.302)); -#6463 = CARTESIAN_POINT('',(6.429762897648E-002,0.189619370572,0.302)); -#6464 = CARTESIAN_POINT('',(6.481801724058E-002,0.182811558967,0.302)); -#6465 = CARTESIAN_POINT('',(6.530213568091E-002,0.175524876557,0.302)); -#6466 = CARTESIAN_POINT('',(6.55888258911E-002,0.16775281078,0.302)); -#6467 = CARTESIAN_POINT('',(6.57801125893E-002,0.159502830022,0.302)); -#6468 = CARTESIAN_POINT('',(6.595397313915E-002,0.150756638007,0.302)); -#6469 = CARTESIAN_POINT('',(6.596953865747E-002,0.144753695826,0.302)); -#6470 = CARTESIAN_POINT('',(6.597754323584E-002,0.14166667873,0.302)); -#6471 = PCURVE('',#6306,#6472); -#6472 = DEFINITIONAL_REPRESENTATION('',(#6473),#6497); -#6473 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6474,#6475,#6476,#6477,#6478, - #6479,#6480,#6481,#6482,#6483,#6484,#6485,#6486,#6487,#6488,#6489, - #6490,#6491,#6492,#6493,#6494,#6495,#6496),.UNSPECIFIED.,.F.,.F.,(4, - 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000,3.49368870829E-002 - ,7.023339896965E-002,0.106497580507,0.145587588832,0.187189203945, - 0.231348430884,0.279252738402,0.331360897076,0.388442948375, - 0.450964118434,0.518748490246,0.592148889515,0.631731987362, - 0.674661745447,0.720681059568,0.7701442824,0.822678593948, - 0.878317576116,0.937424730831,1.),.UNSPECIFIED.); -#6474 = CARTESIAN_POINT('',(-4.056496420087E-002,-0.183358976194)); -#6475 = CARTESIAN_POINT('',(-4.229015220897E-002,-0.183257368521)); -#6476 = CARTESIAN_POINT('',(-4.575828654454E-002,-0.183053107272)); -#6477 = CARTESIAN_POINT('',(-5.082905435495E-002,-0.181458568852)); -#6478 = CARTESIAN_POINT('',(-5.557243718345E-002,-0.178708479938)); -#6479 = CARTESIAN_POINT('',(-6.012295183245E-002,-0.175121030704)); -#6480 = CARTESIAN_POINT('',(-6.42187632956E-002,-0.170484856111)); -#6481 = CARTESIAN_POINT('',(-6.787984141557E-002,-0.164971449328)); -#6482 = CARTESIAN_POINT('',(-7.080575588192E-002,-0.158461879525)); -#6483 = CARTESIAN_POINT('',(-7.324465749911E-002,-0.151098155209)); -#6484 = CARTESIAN_POINT('',(-7.531043012601E-002,-0.142877594218)); -#6485 = CARTESIAN_POINT('',(-7.718606491742E-002,-0.133824770036)); -#6486 = CARTESIAN_POINT('',(-7.895444013205E-002,-0.123929885665)); -#6487 = CARTESIAN_POINT('',(-8.017432669957E-002,-0.115095325618)); -#6488 = CARTESIAN_POINT('',(-8.117323423587E-002,-0.107467660541)); -#6489 = CARTESIAN_POINT('',(-8.169036135643E-002,-0.101146478277)); -#6490 = CARTESIAN_POINT('',(-8.221074962053E-002,-9.43386666717E-002)); -#6491 = CARTESIAN_POINT('',(-8.269486806086E-002,-8.705198426165E-002)); -#6492 = CARTESIAN_POINT('',(-8.298155827106E-002,-7.927991848405E-002)); -#6493 = CARTESIAN_POINT('',(-8.317284496926E-002,-7.10299377266E-002)); -#6494 = CARTESIAN_POINT('',(-8.33467055191E-002,-6.228374571103E-002)); -#6495 = CARTESIAN_POINT('',(-8.336227103743E-002,-5.628080353023E-002)); -#6496 = CARTESIAN_POINT('',(-8.33702756158E-002,-5.319378643458E-002)); -#6497 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6498 = PCURVE('',#1394,#6499); -#6499 = DEFINITIONAL_REPRESENTATION('',(#6500),#6504); -#6500 = LINE('',#6501,#6502); -#6501 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#6502 = VECTOR('',#6503,1.); -#6503 = DIRECTION('',(1.,0.E+000)); -#6504 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6505 = ORIENTED_EDGE('',*,*,#6506,.F.); -#6506 = EDGE_CURVE('',#6290,#6444,#6507,.T.); -#6507 = SURFACE_CURVE('',#6508,(#6536,#6567),.PCURVE_S1.); -#6508 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6509,#6510,#6511,#6512,#6513, - #6514,#6515,#6516,#6517,#6518,#6519,#6520,#6521,#6522,#6523,#6524, - #6525,#6526,#6527,#6528,#6529,#6530,#6531,#6532,#6533,#6534,#6535), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 - ,4),(0.E+000,7.450630011454E-002,0.145899604363,0.213485915351, - 0.277293604963,0.338041673145,0.395063922884,0.448741026482, - 0.499113145316,0.546571100751,0.59109431188,0.632897743261, - 0.672214769502,0.70856337312,0.743032622937,0.774640169589, - 0.804496490856,0.832141518463,0.85851193,0.883406944232, - 0.907257568986,0.930301741039,0.953206098268,0.976284435161,1.), - .UNSPECIFIED.); -#6509 = CARTESIAN_POINT('',(-1.963307959402E-002,0.14166667873,0.302)); -#6510 = CARTESIAN_POINT('',(-1.963360022099E-002,0.145336920758,0.302)); -#6511 = CARTESIAN_POINT('',(-1.963461972228E-002,0.15252405606,0.302)); -#6512 = CARTESIAN_POINT('',(-1.933867117427E-002,0.163036587208,0.302)); -#6513 = CARTESIAN_POINT('',(-1.900775489684E-002,0.173020239287,0.302)); -#6514 = CARTESIAN_POINT('',(-1.848782389649E-002,0.182471280081,0.302)); -#6515 = CARTESIAN_POINT('',(-1.783102465328E-002,0.191391928233,0.302)); -#6516 = CARTESIAN_POINT('',(-1.701049966734E-002,0.199798120673,0.302)); -#6517 = CARTESIAN_POINT('',(-1.60381465877E-002,0.207673148077,0.302)); -#6518 = CARTESIAN_POINT('',(-1.491576978213E-002,0.215053000057,0.302)); -#6519 = CARTESIAN_POINT('',(-1.360966353286E-002,0.221942574202,0.302)); -#6520 = CARTESIAN_POINT('',(-1.226960744117E-002,0.22839763521,0.302)); -#6521 = CARTESIAN_POINT('',(-1.063166643619E-002,0.234368012293,0.302)); -#6522 = CARTESIAN_POINT('',(-8.985002668513E-003,0.239916989686,0.302)); -#6523 = CARTESIAN_POINT('',(-7.101042681619E-003,0.245008278979,0.302)); -#6524 = CARTESIAN_POINT('',(-5.125272281607E-003,0.249651995329,0.302)); -#6525 = CARTESIAN_POINT('',(-3.016408570688E-003,0.253887416753,0.302)); -#6526 = CARTESIAN_POINT('',(-6.97609789441E-004,0.257618657354,0.302)); -#6527 = CARTESIAN_POINT('',(1.717570301136E-003,0.260980348714,0.302)); -#6528 = CARTESIAN_POINT('',(4.362166959923E-003,0.263835084545,0.302)); -#6529 = CARTESIAN_POINT('',(7.063972533112E-003,0.266380116983,0.302)); -#6530 = CARTESIAN_POINT('',(1.004224203152E-002,0.268311931051,0.302)); -#6531 = CARTESIAN_POINT('',(1.310229603994E-002,0.269892557944,0.302)); -#6532 = CARTESIAN_POINT('',(1.631550404744E-002,0.271035492322,0.302)); -#6533 = CARTESIAN_POINT('',(1.969528636053E-002,0.271729092277,0.302)); -#6534 = CARTESIAN_POINT('',(2.200277572492E-002,0.271797300139,0.302)); -#6535 = CARTESIAN_POINT('',(2.317223182091E-002,0.27183186849,0.302)); -#6536 = PCURVE('',#6306,#6537); -#6537 = DEFINITIONAL_REPRESENTATION('',(#6538),#6566); -#6538 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6539,#6540,#6541,#6542,#6543, - #6544,#6545,#6546,#6547,#6548,#6549,#6550,#6551,#6552,#6553,#6554, - #6555,#6556,#6557,#6558,#6559,#6560,#6561,#6562,#6563,#6564,#6565), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 - ,4),(0.E+000,7.450630011454E-002,0.145899604363,0.213485915351, - 0.277293604963,0.338041673145,0.395063922884,0.448741026482, - 0.499113145316,0.546571100751,0.59109431188,0.632897743261, - 0.672214769502,0.70856337312,0.743032622937,0.774640169589, - 0.804496490856,0.832141518463,0.85851193,0.883406944232, - 0.907257568986,0.930301741039,0.953206098268,0.976284435161,1.), - .UNSPECIFIED.); -#6539 = CARTESIAN_POINT('',(2.240347214059E-003,-5.319378643458E-002)); -#6540 = CARTESIAN_POINT('',(2.240867841029E-003,-5.686402846237E-002)); -#6541 = CARTESIAN_POINT('',(2.241887342318E-003,-6.405116376434E-002)); -#6542 = CARTESIAN_POINT('',(1.945938794311E-003,-7.45636949123E-002)); -#6543 = CARTESIAN_POINT('',(1.615022516882E-003,-8.45473469913E-002)); -#6544 = CARTESIAN_POINT('',(1.09509151653E-003,-9.399838778553E-002)); -#6545 = CARTESIAN_POINT('',(4.3829227332E-004,-0.102919035938)); -#6546 = CARTESIAN_POINT('',(-3.822327126181E-004,-0.111325228378)); -#6547 = CARTESIAN_POINT('',(-1.354585792262E-003,-0.119200255781)); -#6548 = CARTESIAN_POINT('',(-2.476962597831E-003,-0.126580107761)); -#6549 = CARTESIAN_POINT('',(-3.783068847098E-003,-0.133469681907)); -#6550 = CARTESIAN_POINT('',(-5.123124938788E-003,-0.139924742914)); -#6551 = CARTESIAN_POINT('',(-6.761065943765E-003,-0.145895119997)); -#6552 = CARTESIAN_POINT('',(-8.407729711446E-003,-0.15144409739)); -#6553 = CARTESIAN_POINT('',(-1.029168969834E-002,-0.156535386684)); -#6554 = CARTESIAN_POINT('',(-1.226746009835E-002,-0.161179103033)); -#6555 = CARTESIAN_POINT('',(-1.437632380927E-002,-0.165414524458)); -#6556 = CARTESIAN_POINT('',(-1.669512259052E-002,-0.169145765059)); -#6557 = CARTESIAN_POINT('',(-1.911030268109E-002,-0.172507456419)); -#6558 = CARTESIAN_POINT('',(-2.175489933988E-002,-0.175362192249)); -#6559 = CARTESIAN_POINT('',(-2.445670491307E-002,-0.177907224687)); -#6560 = CARTESIAN_POINT('',(-2.743497441147E-002,-0.179839038756)); -#6561 = CARTESIAN_POINT('',(-3.04950284199E-002,-0.181419665649)); -#6562 = CARTESIAN_POINT('',(-3.370823642739E-002,-0.182562600027)); -#6563 = CARTESIAN_POINT('',(-3.708801874049E-002,-0.183256199982)); -#6564 = CARTESIAN_POINT('',(-3.939550810488E-002,-0.183324407844)); -#6565 = CARTESIAN_POINT('',(-4.056496420087E-002,-0.183358976194)); -#6566 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6567 = PCURVE('',#1276,#6568); -#6568 = DEFINITIONAL_REPRESENTATION('',(#6569),#6573); -#6569 = LINE('',#6570,#6571); -#6570 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#6571 = VECTOR('',#6572,1.); -#6572 = DIRECTION('',(1.,0.E+000)); -#6573 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6574 = FACE_BOUND('',#6575,.T.); -#6575 = EDGE_LOOP('',(#6576,#6672,#6734,#6796,#6890)); -#6576 = ORIENTED_EDGE('',*,*,#6577,.F.); -#6577 = EDGE_CURVE('',#6578,#6580,#6582,.T.); -#6578 = VERTEX_POINT('',#6579); -#6579 = CARTESIAN_POINT('',(-3.169498280582E-003,0.141769576113,0.302)); -#6580 = VERTEX_POINT('',#6581); -#6581 = CARTESIAN_POINT('',(2.317223182091E-002,4.13417301015E-002,0.302 - )); -#6582 = SURFACE_CURVE('',#6583,(#6603,#6626),.PCURVE_S1.); -#6583 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6584,#6585,#6586,#6587,#6588, - #6589,#6590,#6591,#6592,#6593,#6594,#6595,#6596,#6597,#6598,#6599, - #6600,#6601,#6602),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,0.134263073174,0.25691182911,0.367072438303, - 0.465718811024,0.552001157842,0.626648205291,0.690207875895, - 0.742102733723,0.786360379614,0.826397614705,0.862341875248, - 0.894454198914,0.923529781456,0.950073400113,0.975134639533,1.), - .UNSPECIFIED.); -#6584 = CARTESIAN_POINT('',(-3.169498280582E-003,0.141769576113,0.302)); -#6585 = CARTESIAN_POINT('',(-3.155072819782E-003,0.136830282714,0.302)); -#6586 = CARTESIAN_POINT('',(-3.127469760858E-003,0.127378965447,0.302)); -#6587 = CARTESIAN_POINT('',(-2.776126113917E-003,0.113878477591,0.302)); -#6588 = CARTESIAN_POINT('',(-2.162817275907E-003,0.101699054291,0.302)); -#6589 = CARTESIAN_POINT('',(-1.350556876157E-003,9.087366943313E-002, - 0.302)); -#6590 = CARTESIAN_POINT('',(-3.863102518688E-004,8.136929685639E-002, - 0.302)); -#6591 = CARTESIAN_POINT('',(9.627939588462E-004,7.321733261621E-002, - 0.302)); -#6592 = CARTESIAN_POINT('',(2.441510108286E-003,6.637830197277E-002, - 0.302)); -#6593 = CARTESIAN_POINT('',(4.19486555283E-003,6.075579331747E-002,0.302 - )); -#6594 = CARTESIAN_POINT('',(6.247958243E-003,5.618095372742E-002,0.302) - ); -#6595 = CARTESIAN_POINT('',(8.251675316231E-003,5.222922983216E-002, - 0.302)); -#6596 = CARTESIAN_POINT('',(1.049657816382E-002,4.893922191491E-002, - 0.302)); -#6597 = CARTESIAN_POINT('',(1.273174512163E-002,4.613966170305E-002, - 0.302)); -#6598 = CARTESIAN_POINT('',(1.517156197841E-002,4.399794631139E-002, - 0.302)); -#6599 = CARTESIAN_POINT('',(1.772637244248E-002,4.245792581211E-002, - 0.302)); -#6600 = CARTESIAN_POINT('',(2.041813580656E-002,4.153271183255E-002, - 0.302)); -#6601 = CARTESIAN_POINT('',(2.225660412732E-002,4.140522395248E-002, - 0.302)); -#6602 = CARTESIAN_POINT('',(2.317223182091E-002,4.13417301015E-002,0.302 - )); -#6603 = PCURVE('',#6306,#6604); -#6604 = DEFINITIONAL_REPRESENTATION('',(#6605),#6625); -#6605 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6606,#6607,#6608,#6609,#6610, - #6611,#6612,#6613,#6614,#6615,#6616,#6617,#6618,#6619,#6620,#6621, - #6622,#6623,#6624),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,0.134263073174,0.25691182911,0.367072438303, - 0.465718811024,0.552001157842,0.626648205291,0.690207875895, - 0.742102733723,0.786360379614,0.826397614705,0.862341875248, - 0.894454198914,0.923529781456,0.950073400113,0.975134639533,1.), - .UNSPECIFIED.); -#6606 = CARTESIAN_POINT('',(-1.422323409938E-002,-5.329668381779E-002)); -#6607 = CARTESIAN_POINT('',(-1.423765956018E-002,-4.835739041832E-002)); -#6608 = CARTESIAN_POINT('',(-1.42652626191E-002,-3.890607315158E-002)); -#6609 = CARTESIAN_POINT('',(-1.461660626604E-002,-2.54055852955E-002)); -#6610 = CARTESIAN_POINT('',(-1.522991510405E-002,-1.322616199584E-002)); -#6611 = CARTESIAN_POINT('',(-1.60421755038E-002,-2.400777137472E-003)); -#6612 = CARTESIAN_POINT('',(-1.700642212809E-002,7.103595439264E-003)); -#6613 = CARTESIAN_POINT('',(-1.83555263388E-002,1.525555967945E-002)); -#6614 = CARTESIAN_POINT('',(-1.983424248824E-002,2.209459032288E-002)); -#6615 = CARTESIAN_POINT('',(-2.158759793279E-002,2.771709897819E-002)); -#6616 = CARTESIAN_POINT('',(-2.364069062296E-002,3.229193856824E-002)); -#6617 = CARTESIAN_POINT('',(-2.564440769619E-002,3.62436624635E-002)); -#6618 = CARTESIAN_POINT('',(-2.788931054377E-002,3.953367038075E-002)); -#6619 = CARTESIAN_POINT('',(-3.012447750159E-002,4.233323059261E-002)); -#6620 = CARTESIAN_POINT('',(-3.256429435837E-002,4.447494598427E-002)); -#6621 = CARTESIAN_POINT('',(-3.511910482244E-002,4.601496648355E-002)); -#6622 = CARTESIAN_POINT('',(-3.781086818652E-002,4.69401804631E-002)); -#6623 = CARTESIAN_POINT('',(-3.964933650727E-002,4.706766834318E-002)); -#6624 = CARTESIAN_POINT('',(-4.056496420087E-002,4.713116219416E-002)); -#6625 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6626 = PCURVE('',#6627,#6666); -#6627 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#6628,#6629) - ,(#6630,#6631) - ,(#6632,#6633) - ,(#6634,#6635) - ,(#6636,#6637) - ,(#6638,#6639) - ,(#6640,#6641) - ,(#6642,#6643) - ,(#6644,#6645) - ,(#6646,#6647) - ,(#6648,#6649) - ,(#6650,#6651) - ,(#6652,#6653) - ,(#6654,#6655) - ,(#6656,#6657) - ,(#6658,#6659) - ,(#6660,#6661) - ,(#6662,#6663) - ,(#6664,#6665 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, - 2),(0.E+000,0.134263073174,0.25691182911,0.367072438303, - 0.465718811024,0.552001157842,0.626648205291,0.690207875895, - 0.742102733723,0.786360379614,0.826397614705,0.862341875248, - 0.894454198914,0.923529781456,0.950073400113,0.975134639533,1.),( - 0.E+000,1.),.UNSPECIFIED.); -#6628 = CARTESIAN_POINT('',(-3.169498280582E-003,0.141769576113,0.302)); -#6629 = CARTESIAN_POINT('',(-3.169498280582E-003,0.141769576113,0.3)); -#6630 = CARTESIAN_POINT('',(-3.155072819782E-003,0.136830282714,0.302)); -#6631 = CARTESIAN_POINT('',(-3.155072819782E-003,0.136830282714,0.3)); -#6632 = CARTESIAN_POINT('',(-3.127469760858E-003,0.127378965447,0.302)); -#6633 = CARTESIAN_POINT('',(-3.127469760858E-003,0.127378965447,0.3)); -#6634 = CARTESIAN_POINT('',(-2.776126113917E-003,0.113878477591,0.302)); -#6635 = CARTESIAN_POINT('',(-2.776126113917E-003,0.113878477591,0.3)); -#6636 = CARTESIAN_POINT('',(-2.162817275907E-003,0.101699054291,0.302)); -#6637 = CARTESIAN_POINT('',(-2.162817275907E-003,0.101699054291,0.3)); -#6638 = CARTESIAN_POINT('',(-1.350556876157E-003,9.087366943313E-002, - 0.302)); -#6639 = CARTESIAN_POINT('',(-1.350556876157E-003,9.087366943313E-002,0.3 - )); -#6640 = CARTESIAN_POINT('',(-3.863102518688E-004,8.136929685639E-002, - 0.302)); -#6641 = CARTESIAN_POINT('',(-3.863102518688E-004,8.136929685639E-002,0.3 - )); -#6642 = CARTESIAN_POINT('',(9.627939588462E-004,7.321733261621E-002, - 0.302)); -#6643 = CARTESIAN_POINT('',(9.627939588462E-004,7.321733261621E-002,0.3) - ); -#6644 = CARTESIAN_POINT('',(2.441510108286E-003,6.637830197277E-002, - 0.302)); -#6645 = CARTESIAN_POINT('',(2.441510108286E-003,6.637830197277E-002,0.3) - ); -#6646 = CARTESIAN_POINT('',(4.19486555283E-003,6.075579331747E-002,0.302 - )); -#6647 = CARTESIAN_POINT('',(4.19486555283E-003,6.075579331747E-002,0.3) - ); -#6648 = CARTESIAN_POINT('',(6.247958243E-003,5.618095372742E-002,0.302) - ); -#6649 = CARTESIAN_POINT('',(6.247958243E-003,5.618095372742E-002,0.3)); -#6650 = CARTESIAN_POINT('',(8.251675316231E-003,5.222922983216E-002, - 0.302)); -#6651 = CARTESIAN_POINT('',(8.251675316231E-003,5.222922983216E-002,0.3) - ); -#6652 = CARTESIAN_POINT('',(1.049657816382E-002,4.893922191491E-002, - 0.302)); -#6653 = CARTESIAN_POINT('',(1.049657816382E-002,4.893922191491E-002,0.3) - ); -#6654 = CARTESIAN_POINT('',(1.273174512163E-002,4.613966170305E-002, - 0.302)); -#6655 = CARTESIAN_POINT('',(1.273174512163E-002,4.613966170305E-002,0.3) - ); -#6656 = CARTESIAN_POINT('',(1.517156197841E-002,4.399794631139E-002, - 0.302)); -#6657 = CARTESIAN_POINT('',(1.517156197841E-002,4.399794631139E-002,0.3) - ); -#6658 = CARTESIAN_POINT('',(1.772637244248E-002,4.245792581211E-002, - 0.302)); -#6659 = CARTESIAN_POINT('',(1.772637244248E-002,4.245792581211E-002,0.3) - ); -#6660 = CARTESIAN_POINT('',(2.041813580656E-002,4.153271183255E-002, - 0.302)); -#6661 = CARTESIAN_POINT('',(2.041813580656E-002,4.153271183255E-002,0.3) - ); -#6662 = CARTESIAN_POINT('',(2.225660412732E-002,4.140522395248E-002, - 0.302)); -#6663 = CARTESIAN_POINT('',(2.225660412732E-002,4.140522395248E-002,0.3) - ); -#6664 = CARTESIAN_POINT('',(2.317223182091E-002,4.13417301015E-002,0.302 - )); -#6665 = CARTESIAN_POINT('',(2.317223182091E-002,4.13417301015E-002,0.3) - ); -#6666 = DEFINITIONAL_REPRESENTATION('',(#6667),#6671); -#6667 = LINE('',#6668,#6669); -#6668 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#6669 = VECTOR('',#6670,1.); -#6670 = DIRECTION('',(1.,0.E+000)); -#6671 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6672 = ORIENTED_EDGE('',*,*,#6673,.F.); -#6673 = EDGE_CURVE('',#6674,#6578,#6676,.T.); -#6674 = VERTEX_POINT('',#6675); -#6675 = CARTESIAN_POINT('',(4.393459385277E-003,0.224601969597,0.302)); -#6676 = SURFACE_CURVE('',#6677,(#6689,#6704),.PCURVE_S1.); -#6677 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6678,#6679,#6680,#6681,#6682, - #6683,#6684,#6685,#6686,#6687,#6688),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,7.749443414545E-002,0.167583476623, - 0.271791298041,0.388973885957,0.520673542117,0.666372319412, - 0.826122561869,1.),.UNSPECIFIED.); -#6678 = CARTESIAN_POINT('',(4.393459385277E-003,0.224601969597,0.302)); -#6679 = CARTESIAN_POINT('',(3.78098041931E-003,0.222534349987,0.302)); -#6680 = CARTESIAN_POINT('',(2.456480723213E-003,0.218063075548,0.302)); -#6681 = CARTESIAN_POINT('',(9.771820171107E-004,0.210641303348,0.302)); -#6682 = CARTESIAN_POINT('',(-3.697811423683E-004,0.202081127285,0.302)); -#6683 = CARTESIAN_POINT('',(-1.344197406804E-003,0.192304543475,0.302)); -#6684 = CARTESIAN_POINT('',(-2.159650567102E-003,0.181359675168,0.302)); -#6685 = CARTESIAN_POINT('',(-2.771927051014E-003,0.169214683162,0.302)); -#6686 = CARTESIAN_POINT('',(-3.127491465827E-003,0.155885848135,0.302)); -#6687 = CARTESIAN_POINT('',(-3.155106233952E-003,0.146605982929,0.302)); -#6688 = CARTESIAN_POINT('',(-3.169498280582E-003,0.141769576113,0.302)); -#6689 = PCURVE('',#6306,#6690); -#6690 = DEFINITIONAL_REPRESENTATION('',(#6691),#6703); -#6691 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6692,#6693,#6694,#6695,#6696, - #6697,#6698,#6699,#6700,#6701,#6702),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,7.749443414545E-002,0.167583476623, - 0.271791298041,0.388973885957,0.520673542117,0.666372319412, - 0.826122561869,1.),.UNSPECIFIED.); -#6692 = CARTESIAN_POINT('',(-2.178619176524E-002,-0.136129077301)); -#6693 = CARTESIAN_POINT('',(-2.117371279927E-002,-0.134061457691)); -#6694 = CARTESIAN_POINT('',(-1.984921310317E-002,-0.129590183252)); -#6695 = CARTESIAN_POINT('',(-1.836991439707E-002,-0.122168411052)); -#6696 = CARTESIAN_POINT('',(-1.702295123759E-002,-0.113608234989)); -#6697 = CARTESIAN_POINT('',(-1.604853497315E-002,-0.103831651179)); -#6698 = CARTESIAN_POINT('',(-1.523308181286E-002,-9.288678287261E-002)); -#6699 = CARTESIAN_POINT('',(-1.462080532894E-002,-8.074179086586E-002)); -#6700 = CARTESIAN_POINT('',(-1.426524091413E-002,-6.741295583951E-002)); -#6701 = CARTESIAN_POINT('',(-1.423762614601E-002,-5.813309063333E-002)); -#6702 = CARTESIAN_POINT('',(-1.422323409938E-002,-5.329668381779E-002)); -#6703 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6704 = PCURVE('',#6705,#6728); -#6705 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#6706,#6707) - ,(#6708,#6709) - ,(#6710,#6711) - ,(#6712,#6713) - ,(#6714,#6715) - ,(#6716,#6717) - ,(#6718,#6719) - ,(#6720,#6721) - ,(#6722,#6723) - ,(#6724,#6725) - ,(#6726,#6727 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,4),(2,2),(0.E+000, - 7.749443414545E-002,0.167583476623,0.271791298041,0.388973885957, - 0.520673542117,0.666372319412,0.826122561869,1.),(0.E+000,1.), - .UNSPECIFIED.); -#6706 = CARTESIAN_POINT('',(4.393459385277E-003,0.224601969597,0.302)); -#6707 = CARTESIAN_POINT('',(4.393459385277E-003,0.224601969597,0.3)); -#6708 = CARTESIAN_POINT('',(3.78098041931E-003,0.222534349987,0.302)); -#6709 = CARTESIAN_POINT('',(3.78098041931E-003,0.222534349987,0.3)); -#6710 = CARTESIAN_POINT('',(2.456480723213E-003,0.218063075548,0.302)); -#6711 = CARTESIAN_POINT('',(2.456480723213E-003,0.218063075548,0.3)); -#6712 = CARTESIAN_POINT('',(9.771820171107E-004,0.210641303348,0.302)); -#6713 = CARTESIAN_POINT('',(9.771820171107E-004,0.210641303348,0.3)); -#6714 = CARTESIAN_POINT('',(-3.697811423683E-004,0.202081127285,0.302)); -#6715 = CARTESIAN_POINT('',(-3.697811423683E-004,0.202081127285,0.3)); -#6716 = CARTESIAN_POINT('',(-1.344197406804E-003,0.192304543475,0.302)); -#6717 = CARTESIAN_POINT('',(-1.344197406804E-003,0.192304543475,0.3)); -#6718 = CARTESIAN_POINT('',(-2.159650567102E-003,0.181359675168,0.302)); -#6719 = CARTESIAN_POINT('',(-2.159650567102E-003,0.181359675168,0.3)); -#6720 = CARTESIAN_POINT('',(-2.771927051014E-003,0.169214683162,0.302)); -#6721 = CARTESIAN_POINT('',(-2.771927051014E-003,0.169214683162,0.3)); -#6722 = CARTESIAN_POINT('',(-3.127491465827E-003,0.155885848135,0.302)); -#6723 = CARTESIAN_POINT('',(-3.127491465827E-003,0.155885848135,0.3)); -#6724 = CARTESIAN_POINT('',(-3.155106233952E-003,0.146605982929,0.302)); -#6725 = CARTESIAN_POINT('',(-3.155106233952E-003,0.146605982929,0.3)); -#6726 = CARTESIAN_POINT('',(-3.169498280582E-003,0.141769576113,0.302)); -#6727 = CARTESIAN_POINT('',(-3.169498280582E-003,0.141769576113,0.3)); -#6728 = DEFINITIONAL_REPRESENTATION('',(#6729),#6733); -#6729 = LINE('',#6730,#6731); -#6730 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#6731 = VECTOR('',#6732,1.); -#6732 = DIRECTION('',(1.,0.E+000)); -#6733 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6734 = ORIENTED_EDGE('',*,*,#6735,.F.); -#6735 = EDGE_CURVE('',#6736,#6674,#6738,.T.); -#6736 = VERTEX_POINT('',#6737); -#6737 = CARTESIAN_POINT('',(2.30178857461E-002,0.242197422125,0.302)); -#6738 = SURFACE_CURVE('',#6739,(#6751,#6766),.PCURVE_S1.); -#6739 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6740,#6741,#6742,#6743,#6744, - #6745,#6746,#6747,#6748,#6749,#6750),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.10084415503,0.20209669549,0.308076466598, - 0.419904889368,0.544656315619,0.680307883162,0.833031952295,1.), - .UNSPECIFIED.); -#6740 = CARTESIAN_POINT('',(2.30178857461E-002,0.242197422125,0.302)); -#6741 = CARTESIAN_POINT('',(2.21026497084E-002,0.24215201295,0.302)); -#6742 = CARTESIAN_POINT('',(2.026847123014E-002,0.242061010707,0.302)); -#6743 = CARTESIAN_POINT('',(1.758832718343E-002,0.241181388084,0.302)); -#6744 = CARTESIAN_POINT('',(1.505621532711E-002,0.239768087358,0.302)); -#6745 = CARTESIAN_POINT('',(1.262728015739E-002,0.237811531694,0.302)); -#6746 = CARTESIAN_POINT('',(1.041528853349E-002,0.235255534751,0.302)); -#6747 = CARTESIAN_POINT('',(8.20768020329E-003,0.232231492463,0.302)); -#6748 = CARTESIAN_POINT('',(6.174796389533E-003,0.228633060841,0.302)); -#6749 = CARTESIAN_POINT('',(5.004617609382E-003,0.225984995133,0.302)); -#6750 = CARTESIAN_POINT('',(4.393459385277E-003,0.224601969597,0.302)); -#6751 = PCURVE('',#6306,#6752); -#6752 = DEFINITIONAL_REPRESENTATION('',(#6753),#6765); -#6753 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6754,#6755,#6756,#6757,#6758, - #6759,#6760,#6761,#6762,#6763,#6764),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.10084415503,0.20209669549,0.308076466598, - 0.419904889368,0.544656315619,0.680307883162,0.833031952295,1.), - .UNSPECIFIED.); -#6754 = CARTESIAN_POINT('',(-4.041061812606E-002,-0.15372452983)); -#6755 = CARTESIAN_POINT('',(-3.949538208836E-002,-0.153679120654)); -#6756 = CARTESIAN_POINT('',(-3.76612036101E-002,-0.153588118412)); -#6757 = CARTESIAN_POINT('',(-3.498105956339E-002,-0.152708495789)); -#6758 = CARTESIAN_POINT('',(-3.244894770707E-002,-0.151295195063)); -#6759 = CARTESIAN_POINT('',(-3.002001253735E-002,-0.149338639398)); -#6760 = CARTESIAN_POINT('',(-2.780802091345E-002,-0.146782642456)); -#6761 = CARTESIAN_POINT('',(-2.560041258325E-002,-0.143758600167)); -#6762 = CARTESIAN_POINT('',(-2.356752876949E-002,-0.140160168546)); -#6763 = CARTESIAN_POINT('',(-2.239734998934E-002,-0.137512102838)); -#6764 = CARTESIAN_POINT('',(-2.178619176524E-002,-0.136129077301)); -#6765 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6766 = PCURVE('',#6767,#6790); -#6767 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#6768,#6769) - ,(#6770,#6771) - ,(#6772,#6773) - ,(#6774,#6775) - ,(#6776,#6777) - ,(#6778,#6779) - ,(#6780,#6781) - ,(#6782,#6783) - ,(#6784,#6785) - ,(#6786,#6787) - ,(#6788,#6789 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,4),(2,2),(0.E+000, - 0.10084415503,0.20209669549,0.308076466598,0.419904889368, - 0.544656315619,0.680307883162,0.833031952295,1.),(0.E+000,1.), - .UNSPECIFIED.); -#6768 = CARTESIAN_POINT('',(2.30178857461E-002,0.242197422125,0.302)); -#6769 = CARTESIAN_POINT('',(2.30178857461E-002,0.242197422125,0.3)); -#6770 = CARTESIAN_POINT('',(2.21026497084E-002,0.24215201295,0.302)); -#6771 = CARTESIAN_POINT('',(2.21026497084E-002,0.24215201295,0.3)); -#6772 = CARTESIAN_POINT('',(2.026847123014E-002,0.242061010707,0.302)); -#6773 = CARTESIAN_POINT('',(2.026847123014E-002,0.242061010707,0.3)); -#6774 = CARTESIAN_POINT('',(1.758832718343E-002,0.241181388084,0.302)); -#6775 = CARTESIAN_POINT('',(1.758832718343E-002,0.241181388084,0.3)); -#6776 = CARTESIAN_POINT('',(1.505621532711E-002,0.239768087358,0.302)); -#6777 = CARTESIAN_POINT('',(1.505621532711E-002,0.239768087358,0.3)); -#6778 = CARTESIAN_POINT('',(1.262728015739E-002,0.237811531694,0.302)); -#6779 = CARTESIAN_POINT('',(1.262728015739E-002,0.237811531694,0.3)); -#6780 = CARTESIAN_POINT('',(1.041528853349E-002,0.235255534751,0.302)); -#6781 = CARTESIAN_POINT('',(1.041528853349E-002,0.235255534751,0.3)); -#6782 = CARTESIAN_POINT('',(8.20768020329E-003,0.232231492463,0.302)); -#6783 = CARTESIAN_POINT('',(8.20768020329E-003,0.232231492463,0.3)); -#6784 = CARTESIAN_POINT('',(6.174796389533E-003,0.228633060841,0.302)); -#6785 = CARTESIAN_POINT('',(6.174796389533E-003,0.228633060841,0.3)); -#6786 = CARTESIAN_POINT('',(5.004617609382E-003,0.225984995133,0.302)); -#6787 = CARTESIAN_POINT('',(5.004617609382E-003,0.225984995133,0.3)); -#6788 = CARTESIAN_POINT('',(4.393459385277E-003,0.224601969597,0.302)); -#6789 = CARTESIAN_POINT('',(4.393459385277E-003,0.224601969597,0.3)); -#6790 = DEFINITIONAL_REPRESENTATION('',(#6791),#6795); -#6791 = LINE('',#6792,#6793); -#6792 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#6793 = VECTOR('',#6794,1.); -#6794 = DIRECTION('',(1.,0.E+000)); -#6795 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6796 = ORIENTED_EDGE('',*,*,#6797,.F.); -#6797 = EDGE_CURVE('',#6798,#6736,#6800,.T.); -#6798 = VERTEX_POINT('',#6799); -#6799 = CARTESIAN_POINT('',(4.951396192241E-002,0.141769576113,0.302)); -#6800 = SURFACE_CURVE('',#6801,(#6821,#6844),.PCURVE_S1.); -#6801 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6802,#6803,#6804,#6805,#6806, - #6807,#6808,#6809,#6810,#6811,#6812,#6813,#6814,#6815,#6816,#6817, - #6818,#6819,#6820),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,0.131104227359,0.251091770705,0.359069021009, - 0.456018700075,0.542063571507,0.61635985873,0.680001512757, - 0.732946720057,0.778442530811,0.819194663635,0.855956811654, - 0.888635460529,0.918943031446,0.94645063271,0.973354470683,1.), - .UNSPECIFIED.); -#6802 = CARTESIAN_POINT('',(4.951396192241E-002,0.141769576113,0.302)); -#6803 = CARTESIAN_POINT('',(4.950087838094E-002,0.146606023088,0.302)); -#6804 = CARTESIAN_POINT('',(4.947582068706E-002,0.155868821544,0.302)); -#6805 = CARTESIAN_POINT('',(4.910613591798E-002,0.169110662483,0.302)); -#6806 = CARTESIAN_POINT('',(4.855117902759E-002,0.181084137227,0.302)); -#6807 = CARTESIAN_POINT('',(4.781200548783E-002,0.191793743895,0.302)); -#6808 = CARTESIAN_POINT('',(4.680251094367E-002,0.201234543764,0.302)); -#6809 = CARTESIAN_POINT('',(4.557381283073E-002,0.209405715408,0.302)); -#6810 = CARTESIAN_POINT('',(4.421258706468E-002,0.216323276481,0.302)); -#6811 = CARTESIAN_POINT('',(4.246255381799E-002,0.222047620593,0.302)); -#6812 = CARTESIAN_POINT('',(4.061272248209E-002,0.226846565338,0.302)); -#6813 = CARTESIAN_POINT('',(3.851312435099E-002,0.230874839461,0.302)); -#6814 = CARTESIAN_POINT('',(3.640611407695E-002,0.234360490577,0.302)); -#6815 = CARTESIAN_POINT('',(3.404864244735E-002,0.237203158926,0.302)); -#6816 = CARTESIAN_POINT('',(3.154910443291E-002,0.239441386564,0.302)); -#6817 = CARTESIAN_POINT('',(2.884783817127E-002,0.241049154675,0.302)); -#6818 = CARTESIAN_POINT('',(2.598094523055E-002,0.24201644677,0.302)); -#6819 = CARTESIAN_POINT('',(2.40023908917E-002,0.242137291315,0.302)); -#6820 = CARTESIAN_POINT('',(2.30178857461E-002,0.242197422125,0.302)); -#6821 = PCURVE('',#6306,#6822); -#6822 = DEFINITIONAL_REPRESENTATION('',(#6823),#6843); -#6823 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6824,#6825,#6826,#6827,#6828, - #6829,#6830,#6831,#6832,#6833,#6834,#6835,#6836,#6837,#6838,#6839, - #6840,#6841,#6842),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,0.131104227359,0.251091770705,0.359069021009, - 0.456018700075,0.542063571507,0.61635985873,0.680001512757, - 0.732946720057,0.778442530811,0.819194663635,0.855956811654, - 0.888635460529,0.918943031446,0.94645063271,0.973354470683,1.), - .UNSPECIFIED.); -#6824 = CARTESIAN_POINT('',(-6.690669430237E-002,-5.329668381779E-002)); -#6825 = CARTESIAN_POINT('',(-6.68936107609E-002,-5.813313079224E-002)); -#6826 = CARTESIAN_POINT('',(-6.686855306702E-002,-6.739592924808E-002)); -#6827 = CARTESIAN_POINT('',(-6.649886829794E-002,-8.063777018705E-002)); -#6828 = CARTESIAN_POINT('',(-6.594391140755E-002,-9.261124493158E-002)); -#6829 = CARTESIAN_POINT('',(-6.520473786779E-002,-0.103320851599)); -#6830 = CARTESIAN_POINT('',(-6.419524332362E-002,-0.112761651468)); -#6831 = CARTESIAN_POINT('',(-6.296654521068E-002,-0.120932823112)); -#6832 = CARTESIAN_POINT('',(-6.160531944463E-002,-0.127850384186)); -#6833 = CARTESIAN_POINT('',(-5.985528619795E-002,-0.133574728298)); -#6834 = CARTESIAN_POINT('',(-5.800545486205E-002,-0.138373673042)); -#6835 = CARTESIAN_POINT('',(-5.590585673095E-002,-0.142401947165)); -#6836 = CARTESIAN_POINT('',(-5.37988464569E-002,-0.145887598282)); -#6837 = CARTESIAN_POINT('',(-5.144137482731E-002,-0.148730266631)); -#6838 = CARTESIAN_POINT('',(-4.894183681287E-002,-0.150968494268)); -#6839 = CARTESIAN_POINT('',(-4.624057055122E-002,-0.152576262379)); -#6840 = CARTESIAN_POINT('',(-4.337367761051E-002,-0.153543554474)); -#6841 = CARTESIAN_POINT('',(-4.139512327166E-002,-0.153664399019)); -#6842 = CARTESIAN_POINT('',(-4.041061812606E-002,-0.15372452983)); -#6843 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6844 = PCURVE('',#6845,#6884); -#6845 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#6846,#6847) - ,(#6848,#6849) - ,(#6850,#6851) - ,(#6852,#6853) - ,(#6854,#6855) - ,(#6856,#6857) - ,(#6858,#6859) - ,(#6860,#6861) - ,(#6862,#6863) - ,(#6864,#6865) - ,(#6866,#6867) - ,(#6868,#6869) - ,(#6870,#6871) - ,(#6872,#6873) - ,(#6874,#6875) - ,(#6876,#6877) - ,(#6878,#6879) - ,(#6880,#6881) - ,(#6882,#6883 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, - 2),(0.E+000,0.131104227359,0.251091770705,0.359069021009, - 0.456018700075,0.542063571507,0.61635985873,0.680001512757, - 0.732946720057,0.778442530811,0.819194663635,0.855956811654, - 0.888635460529,0.918943031446,0.94645063271,0.973354470683,1.),( - 0.E+000,1.),.UNSPECIFIED.); -#6846 = CARTESIAN_POINT('',(4.951396192241E-002,0.141769576113,0.302)); -#6847 = CARTESIAN_POINT('',(4.951396192241E-002,0.141769576113,0.3)); -#6848 = CARTESIAN_POINT('',(4.950087838094E-002,0.146606023088,0.302)); -#6849 = CARTESIAN_POINT('',(4.950087838094E-002,0.146606023088,0.3)); -#6850 = CARTESIAN_POINT('',(4.947582068706E-002,0.155868821544,0.302)); -#6851 = CARTESIAN_POINT('',(4.947582068706E-002,0.155868821544,0.3)); -#6852 = CARTESIAN_POINT('',(4.910613591798E-002,0.169110662483,0.302)); -#6853 = CARTESIAN_POINT('',(4.910613591798E-002,0.169110662483,0.3)); -#6854 = CARTESIAN_POINT('',(4.855117902759E-002,0.181084137227,0.302)); -#6855 = CARTESIAN_POINT('',(4.855117902759E-002,0.181084137227,0.3)); -#6856 = CARTESIAN_POINT('',(4.781200548783E-002,0.191793743895,0.302)); -#6857 = CARTESIAN_POINT('',(4.781200548783E-002,0.191793743895,0.3)); -#6858 = CARTESIAN_POINT('',(4.680251094367E-002,0.201234543764,0.302)); -#6859 = CARTESIAN_POINT('',(4.680251094367E-002,0.201234543764,0.3)); -#6860 = CARTESIAN_POINT('',(4.557381283073E-002,0.209405715408,0.302)); -#6861 = CARTESIAN_POINT('',(4.557381283073E-002,0.209405715408,0.3)); -#6862 = CARTESIAN_POINT('',(4.421258706468E-002,0.216323276481,0.302)); -#6863 = CARTESIAN_POINT('',(4.421258706468E-002,0.216323276481,0.3)); -#6864 = CARTESIAN_POINT('',(4.246255381799E-002,0.222047620593,0.302)); -#6865 = CARTESIAN_POINT('',(4.246255381799E-002,0.222047620593,0.3)); -#6866 = CARTESIAN_POINT('',(4.061272248209E-002,0.226846565338,0.302)); -#6867 = CARTESIAN_POINT('',(4.061272248209E-002,0.226846565338,0.3)); -#6868 = CARTESIAN_POINT('',(3.851312435099E-002,0.230874839461,0.302)); -#6869 = CARTESIAN_POINT('',(3.851312435099E-002,0.230874839461,0.3)); -#6870 = CARTESIAN_POINT('',(3.640611407695E-002,0.234360490577,0.302)); -#6871 = CARTESIAN_POINT('',(3.640611407695E-002,0.234360490577,0.3)); -#6872 = CARTESIAN_POINT('',(3.404864244735E-002,0.237203158926,0.302)); -#6873 = CARTESIAN_POINT('',(3.404864244735E-002,0.237203158926,0.3)); -#6874 = CARTESIAN_POINT('',(3.154910443291E-002,0.239441386564,0.302)); -#6875 = CARTESIAN_POINT('',(3.154910443291E-002,0.239441386564,0.3)); -#6876 = CARTESIAN_POINT('',(2.884783817127E-002,0.241049154675,0.302)); -#6877 = CARTESIAN_POINT('',(2.884783817127E-002,0.241049154675,0.3)); -#6878 = CARTESIAN_POINT('',(2.598094523055E-002,0.24201644677,0.302)); -#6879 = CARTESIAN_POINT('',(2.598094523055E-002,0.24201644677,0.3)); -#6880 = CARTESIAN_POINT('',(2.40023908917E-002,0.242137291315,0.302)); -#6881 = CARTESIAN_POINT('',(2.40023908917E-002,0.242137291315,0.3)); -#6882 = CARTESIAN_POINT('',(2.30178857461E-002,0.242197422125,0.302)); -#6883 = CARTESIAN_POINT('',(2.30178857461E-002,0.242197422125,0.3)); -#6884 = DEFINITIONAL_REPRESENTATION('',(#6885),#6889); -#6885 = LINE('',#6886,#6887); -#6886 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#6887 = VECTOR('',#6888,1.); -#6888 = DIRECTION('',(1.,0.E+000)); -#6889 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6890 = ORIENTED_EDGE('',*,*,#6891,.F.); -#6891 = EDGE_CURVE('',#6580,#6798,#6892,.T.); -#6892 = SURFACE_CURVE('',#6893,(#6913,#6936),.PCURVE_S1.); -#6893 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6894,#6895,#6896,#6897,#6898, - #6899,#6900,#6901,#6902,#6903,#6904,#6905,#6906,#6907,#6908,#6909, - #6910,#6911,#6912),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,2.48730133429E-002,4.994196592378E-002, - 7.673426790876E-002,0.105818799118,0.13758360881,0.173280966874, - 0.213330524327,0.258029519538,0.310527683976,0.373652105177, - 0.448708456434,0.53506899344,0.633280744621,0.743475258226, - 0.865695604337,1.),.UNSPECIFIED.); -#6894 = CARTESIAN_POINT('',(2.317223182091E-002,4.13417301015E-002,0.302 - )); -#6895 = CARTESIAN_POINT('',(2.408731590436E-002,4.140616470408E-002, - 0.302)); -#6896 = CARTESIAN_POINT('',(2.592469272247E-002,4.153554149822E-002, - 0.302)); -#6897 = CARTESIAN_POINT('',(2.863334454055E-002,4.244908468795E-002, - 0.302)); -#6898 = CARTESIAN_POINT('',(3.115923262168E-002,4.405725165956E-002, - 0.302)); -#6899 = CARTESIAN_POINT('',(3.359509724369E-002,4.618594082958E-002, - 0.302)); -#6900 = CARTESIAN_POINT('',(3.587126169706E-002,4.892724419884E-002, - 0.302)); -#6901 = CARTESIAN_POINT('',(3.8026135083E-002,5.225054934107E-002,0.302) - ); -#6902 = CARTESIAN_POINT('',(4.00654794344E-002,5.618800110037E-002,0.302 - )); -#6903 = CARTESIAN_POINT('',(4.208289315931E-002,6.082006205849E-002, - 0.302)); -#6904 = CARTESIAN_POINT('',(4.390371277376E-002,6.643913385719E-002, - 0.302)); -#6905 = CARTESIAN_POINT('',(4.540722021317E-002,7.329701177681E-002, - 0.302)); -#6906 = CARTESIAN_POINT('',(4.663721572269E-002,8.146546935855E-002, - 0.302)); -#6907 = CARTESIAN_POINT('',(4.772200272738E-002,9.095408399656E-002, - 0.302)); -#6908 = CARTESIAN_POINT('',(4.850041185127E-002,0.101768615532,0.302)); -#6909 = CARTESIAN_POINT('',(4.912185496906E-002,0.113912486886,0.302)); -#6910 = CARTESIAN_POINT('',(4.94719241256E-002,0.127396187136,0.302)); -#6911 = CARTESIAN_POINT('',(4.94995160678E-002,0.136830309474,0.302)); -#6912 = CARTESIAN_POINT('',(4.951396192241E-002,0.141769576113,0.302)); -#6913 = PCURVE('',#6306,#6914); -#6914 = DEFINITIONAL_REPRESENTATION('',(#6915),#6935); -#6915 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6916,#6917,#6918,#6919,#6920, - #6921,#6922,#6923,#6924,#6925,#6926,#6927,#6928,#6929,#6930,#6931, - #6932,#6933,#6934),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,2.48730133429E-002,4.994196592378E-002, - 7.673426790876E-002,0.105818799118,0.13758360881,0.173280966874, - 0.213330524327,0.258029519538,0.310527683976,0.373652105177, - 0.448708456434,0.53506899344,0.633280744621,0.743475258226, - 0.865695604337,1.),.UNSPECIFIED.); -#6916 = CARTESIAN_POINT('',(-4.056496420087E-002,4.713116219416E-002)); -#6917 = CARTESIAN_POINT('',(-4.148004828432E-002,4.706672759157E-002)); -#6918 = CARTESIAN_POINT('',(-4.331742510243E-002,4.693735079744E-002)); -#6919 = CARTESIAN_POINT('',(-4.602607692051E-002,4.60238076077E-002)); -#6920 = CARTESIAN_POINT('',(-4.855196500164E-002,4.44156406361E-002)); -#6921 = CARTESIAN_POINT('',(-5.098782962365E-002,4.228695146607E-002)); -#6922 = CARTESIAN_POINT('',(-5.326399407702E-002,3.954564809681E-002)); -#6923 = CARTESIAN_POINT('',(-5.541886746296E-002,3.622234295458E-002)); -#6924 = CARTESIAN_POINT('',(-5.745821181436E-002,3.228489119529E-002)); -#6925 = CARTESIAN_POINT('',(-5.947562553926E-002,2.765283023717E-002)); -#6926 = CARTESIAN_POINT('',(-6.129644515372E-002,2.203375843847E-002)); -#6927 = CARTESIAN_POINT('',(-6.279995259313E-002,1.517588051885E-002)); -#6928 = CARTESIAN_POINT('',(-6.402994810265E-002,7.007422937104E-003)); -#6929 = CARTESIAN_POINT('',(-6.511473510734E-002,-2.481191700901E-003)); -#6930 = CARTESIAN_POINT('',(-6.589314423123E-002,-1.329572323615E-002)); -#6931 = CARTESIAN_POINT('',(-6.651458734902E-002,-2.543959459064E-002)); -#6932 = CARTESIAN_POINT('',(-6.686465650556E-002,-3.89232948402E-002)); -#6933 = CARTESIAN_POINT('',(-6.689224844776E-002,-4.835741717835E-002)); -#6934 = CARTESIAN_POINT('',(-6.690669430237E-002,-5.329668381779E-002)); -#6935 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6936 = PCURVE('',#6937,#6976); -#6937 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( - (#6938,#6939) - ,(#6940,#6941) - ,(#6942,#6943) - ,(#6944,#6945) - ,(#6946,#6947) - ,(#6948,#6949) - ,(#6950,#6951) - ,(#6952,#6953) - ,(#6954,#6955) - ,(#6956,#6957) - ,(#6958,#6959) - ,(#6960,#6961) - ,(#6962,#6963) - ,(#6964,#6965) - ,(#6966,#6967) - ,(#6968,#6969) - ,(#6970,#6971) - ,(#6972,#6973) - ,(#6974,#6975 - )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, - 2),(0.E+000,2.48730133429E-002,4.994196592378E-002, - 7.673426790876E-002,0.105818799118,0.13758360881,0.173280966874, - 0.213330524327,0.258029519538,0.310527683976,0.373652105177, - 0.448708456434,0.53506899344,0.633280744621,0.743475258226, - 0.865695604337,1.),(0.E+000,1.),.UNSPECIFIED.); -#6938 = CARTESIAN_POINT('',(2.317223182091E-002,4.13417301015E-002,0.302 - )); -#6939 = CARTESIAN_POINT('',(2.317223182091E-002,4.13417301015E-002,0.3) - ); -#6940 = CARTESIAN_POINT('',(2.408731590436E-002,4.140616470408E-002, - 0.302)); -#6941 = CARTESIAN_POINT('',(2.408731590436E-002,4.140616470408E-002,0.3) - ); -#6942 = CARTESIAN_POINT('',(2.592469272247E-002,4.153554149822E-002, - 0.302)); -#6943 = CARTESIAN_POINT('',(2.592469272247E-002,4.153554149822E-002,0.3) - ); -#6944 = CARTESIAN_POINT('',(2.863334454055E-002,4.244908468795E-002, - 0.302)); -#6945 = CARTESIAN_POINT('',(2.863334454055E-002,4.244908468795E-002,0.3) - ); -#6946 = CARTESIAN_POINT('',(3.115923262168E-002,4.405725165956E-002, - 0.302)); -#6947 = CARTESIAN_POINT('',(3.115923262168E-002,4.405725165956E-002,0.3) - ); -#6948 = CARTESIAN_POINT('',(3.359509724369E-002,4.618594082958E-002, - 0.302)); -#6949 = CARTESIAN_POINT('',(3.359509724369E-002,4.618594082958E-002,0.3) - ); -#6950 = CARTESIAN_POINT('',(3.587126169706E-002,4.892724419884E-002, - 0.302)); -#6951 = CARTESIAN_POINT('',(3.587126169706E-002,4.892724419884E-002,0.3) - ); -#6952 = CARTESIAN_POINT('',(3.8026135083E-002,5.225054934107E-002,0.302) - ); -#6953 = CARTESIAN_POINT('',(3.8026135083E-002,5.225054934107E-002,0.3)); -#6954 = CARTESIAN_POINT('',(4.00654794344E-002,5.618800110037E-002,0.302 - )); -#6955 = CARTESIAN_POINT('',(4.00654794344E-002,5.618800110037E-002,0.3) - ); -#6956 = CARTESIAN_POINT('',(4.208289315931E-002,6.082006205849E-002, - 0.302)); -#6957 = CARTESIAN_POINT('',(4.208289315931E-002,6.082006205849E-002,0.3) - ); -#6958 = CARTESIAN_POINT('',(4.390371277376E-002,6.643913385719E-002, - 0.302)); -#6959 = CARTESIAN_POINT('',(4.390371277376E-002,6.643913385719E-002,0.3) - ); -#6960 = CARTESIAN_POINT('',(4.540722021317E-002,7.329701177681E-002, - 0.302)); -#6961 = CARTESIAN_POINT('',(4.540722021317E-002,7.329701177681E-002,0.3) - ); -#6962 = CARTESIAN_POINT('',(4.663721572269E-002,8.146546935855E-002, - 0.302)); -#6963 = CARTESIAN_POINT('',(4.663721572269E-002,8.146546935855E-002,0.3) - ); -#6964 = CARTESIAN_POINT('',(4.772200272738E-002,9.095408399656E-002, - 0.302)); -#6965 = CARTESIAN_POINT('',(4.772200272738E-002,9.095408399656E-002,0.3) - ); -#6966 = CARTESIAN_POINT('',(4.850041185127E-002,0.101768615532,0.302)); -#6967 = CARTESIAN_POINT('',(4.850041185127E-002,0.101768615532,0.3)); -#6968 = CARTESIAN_POINT('',(4.912185496906E-002,0.113912486886,0.302)); -#6969 = CARTESIAN_POINT('',(4.912185496906E-002,0.113912486886,0.3)); -#6970 = CARTESIAN_POINT('',(4.94719241256E-002,0.127396187136,0.302)); -#6971 = CARTESIAN_POINT('',(4.94719241256E-002,0.127396187136,0.3)); -#6972 = CARTESIAN_POINT('',(4.94995160678E-002,0.136830309474,0.302)); -#6973 = CARTESIAN_POINT('',(4.94995160678E-002,0.136830309474,0.3)); -#6974 = CARTESIAN_POINT('',(4.951396192241E-002,0.141769576113,0.302)); -#6975 = CARTESIAN_POINT('',(4.951396192241E-002,0.141769576113,0.3)); -#6976 = DEFINITIONAL_REPRESENTATION('',(#6977),#6981); -#6977 = LINE('',#6978,#6979); -#6978 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#6979 = VECTOR('',#6980,1.); -#6980 = DIRECTION('',(1.,0.E+000)); -#6981 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6982 = ADVANCED_FACE('',(#6983),#1182,.T.); -#6983 = FACE_BOUND('',#6984,.T.); -#6984 = EDGE_LOOP('',(#6985,#6986,#7005,#7006)); -#6985 = ORIENTED_EDGE('',*,*,#1148,.F.); -#6986 = ORIENTED_EDGE('',*,*,#6987,.F.); -#6987 = EDGE_CURVE('',#6288,#1149,#6988,.T.); -#6988 = SURFACE_CURVE('',#6989,(#6993,#6999),.PCURVE_S1.); -#6989 = LINE('',#6990,#6991); -#6990 = CARTESIAN_POINT('',(-6.668009309687E-003,3.645410439907E-002, - 0.302)); -#6991 = VECTOR('',#6992,1.); -#6992 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#6993 = PCURVE('',#1182,#6994); -#6994 = DEFINITIONAL_REPRESENTATION('',(#6995),#6998); -#6995 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#6996,#6997),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#6996 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#6997 = CARTESIAN_POINT('',(0.E+000,1.)); -#6998 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#6999 = PCURVE('',#1604,#7000); -#7000 = DEFINITIONAL_REPRESENTATION('',(#7001),#7004); -#7001 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7002,#7003),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7002 = CARTESIAN_POINT('',(1.,0.E+000)); -#7003 = CARTESIAN_POINT('',(1.,1.)); -#7004 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7005 = ORIENTED_EDGE('',*,*,#6287,.T.); -#7006 = ORIENTED_EDGE('',*,*,#7007,.T.); -#7007 = EDGE_CURVE('',#6290,#1151,#7008,.T.); -#7008 = SURFACE_CURVE('',#7009,(#7013,#7019),.PCURVE_S1.); -#7009 = LINE('',#7010,#7011); -#7010 = CARTESIAN_POINT('',(-1.963307959402E-002,0.14166667873,0.302)); -#7011 = VECTOR('',#7012,1.); -#7012 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#7013 = PCURVE('',#1182,#7014); -#7014 = DEFINITIONAL_REPRESENTATION('',(#7015),#7018); -#7015 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7016,#7017),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7016 = CARTESIAN_POINT('',(1.,0.E+000)); -#7017 = CARTESIAN_POINT('',(1.,1.)); -#7018 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7019 = PCURVE('',#1276,#7020); -#7020 = DEFINITIONAL_REPRESENTATION('',(#7021),#7024); -#7021 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7022,#7023),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7022 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7023 = CARTESIAN_POINT('',(0.E+000,1.)); -#7024 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7025 = ADVANCED_FACE('',(#7026),#1604,.T.); -#7026 = FACE_BOUND('',#7027,.T.); -#7027 = EDGE_LOOP('',(#7028,#7029,#7048,#7049)); -#7028 = ORIENTED_EDGE('',*,*,#1574,.F.); -#7029 = ORIENTED_EDGE('',*,*,#7030,.F.); -#7030 = EDGE_CURVE('',#6334,#1449,#7031,.T.); -#7031 = SURFACE_CURVE('',#7032,(#7036,#7042),.PCURVE_S1.); -#7032 = LINE('',#7033,#7034); -#7033 = CARTESIAN_POINT('',(2.317223182091E-002,1.170728373731E-002, - 0.302)); -#7034 = VECTOR('',#7035,1.); -#7035 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#7036 = PCURVE('',#1604,#7037); -#7037 = DEFINITIONAL_REPRESENTATION('',(#7038),#7041); -#7038 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7039,#7040),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7039 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7040 = CARTESIAN_POINT('',(0.E+000,1.)); -#7041 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7042 = PCURVE('',#1512,#7043); -#7043 = DEFINITIONAL_REPRESENTATION('',(#7044),#7047); -#7044 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7045,#7046),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7045 = CARTESIAN_POINT('',(1.,0.E+000)); -#7046 = CARTESIAN_POINT('',(1.,1.)); -#7047 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7048 = ORIENTED_EDGE('',*,*,#6333,.T.); -#7049 = ORIENTED_EDGE('',*,*,#6987,.T.); -#7050 = ADVANCED_FACE('',(#7051),#1512,.T.); -#7051 = FACE_BOUND('',#7052,.T.); -#7052 = EDGE_LOOP('',(#7053,#7054,#7073,#7074)); -#7053 = ORIENTED_EDGE('',*,*,#1448,.F.); -#7054 = ORIENTED_EDGE('',*,*,#7055,.F.); -#7055 = EDGE_CURVE('',#6373,#1339,#7056,.T.); -#7056 = SURFACE_CURVE('',#7057,(#7061,#7067),.PCURVE_S1.); -#7057 = LINE('',#7058,#7059); -#7058 = CARTESIAN_POINT('',(6.597754323584E-002,0.14166667873,0.302)); -#7059 = VECTOR('',#7060,1.); -#7060 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#7061 = PCURVE('',#1512,#7062); -#7062 = DEFINITIONAL_REPRESENTATION('',(#7063),#7066); -#7063 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7064,#7065),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7064 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7065 = CARTESIAN_POINT('',(0.E+000,1.)); -#7066 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7067 = PCURVE('',#1394,#7068); -#7068 = DEFINITIONAL_REPRESENTATION('',(#7069),#7072); -#7069 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7070,#7071),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7070 = CARTESIAN_POINT('',(1.,0.E+000)); -#7071 = CARTESIAN_POINT('',(1.,1.)); -#7072 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7073 = ORIENTED_EDGE('',*,*,#6372,.T.); -#7074 = ORIENTED_EDGE('',*,*,#7030,.T.); -#7075 = ADVANCED_FACE('',(#7076),#1394,.T.); -#7076 = FACE_BOUND('',#7077,.T.); -#7077 = EDGE_LOOP('',(#7078,#7079,#7098,#7099)); -#7078 = ORIENTED_EDGE('',*,*,#1338,.F.); -#7079 = ORIENTED_EDGE('',*,*,#7080,.F.); -#7080 = EDGE_CURVE('',#6444,#1213,#7081,.T.); -#7081 = SURFACE_CURVE('',#7082,(#7086,#7092),.PCURVE_S1.); -#7082 = LINE('',#7083,#7084); -#7083 = CARTESIAN_POINT('',(2.317223182091E-002,0.27183186849,0.302)); -#7084 = VECTOR('',#7085,1.); -#7085 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#7086 = PCURVE('',#1394,#7087); -#7087 = DEFINITIONAL_REPRESENTATION('',(#7088),#7091); -#7088 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7089,#7090),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7089 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7090 = CARTESIAN_POINT('',(0.E+000,1.)); -#7091 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7092 = PCURVE('',#1276,#7093); -#7093 = DEFINITIONAL_REPRESENTATION('',(#7094),#7097); -#7094 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7095,#7096),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7095 = CARTESIAN_POINT('',(1.,0.E+000)); -#7096 = CARTESIAN_POINT('',(1.,1.)); -#7097 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7098 = ORIENTED_EDGE('',*,*,#6443,.T.); -#7099 = ORIENTED_EDGE('',*,*,#7055,.T.); -#7100 = ADVANCED_FACE('',(#7101),#1276,.T.); -#7101 = FACE_BOUND('',#7102,.T.); -#7102 = EDGE_LOOP('',(#7103,#7104,#7105,#7106)); -#7103 = ORIENTED_EDGE('',*,*,#1212,.F.); -#7104 = ORIENTED_EDGE('',*,*,#7007,.F.); -#7105 = ORIENTED_EDGE('',*,*,#6506,.T.); -#7106 = ORIENTED_EDGE('',*,*,#7080,.T.); -#7107 = ADVANCED_FACE('',(#7108),#6705,.T.); -#7108 = FACE_BOUND('',#7109,.T.); -#7109 = EDGE_LOOP('',(#7110,#7156,#7175,#7176)); -#7110 = ORIENTED_EDGE('',*,*,#7111,.F.); -#7111 = EDGE_CURVE('',#7112,#7114,#7116,.T.); -#7112 = VERTEX_POINT('',#7113); -#7113 = CARTESIAN_POINT('',(4.393459385277E-003,0.224601969597,0.3)); -#7114 = VERTEX_POINT('',#7115); -#7115 = CARTESIAN_POINT('',(-3.169498280582E-003,0.141769576113,0.3)); -#7116 = SURFACE_CURVE('',#7117,(#7129,#7136),.PCURVE_S1.); -#7117 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7118,#7119,#7120,#7121,#7122, - #7123,#7124,#7125,#7126,#7127,#7128),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,7.749443414545E-002,0.167583476623, - 0.271791298041,0.388973885957,0.520673542117,0.666372319412, - 0.826122561869,1.),.UNSPECIFIED.); -#7118 = CARTESIAN_POINT('',(4.393459385277E-003,0.224601969597,0.3)); -#7119 = CARTESIAN_POINT('',(3.78098041931E-003,0.222534349987,0.3)); -#7120 = CARTESIAN_POINT('',(2.456480723213E-003,0.218063075548,0.3)); -#7121 = CARTESIAN_POINT('',(9.771820171107E-004,0.210641303348,0.3)); -#7122 = CARTESIAN_POINT('',(-3.697811423683E-004,0.202081127285,0.3)); -#7123 = CARTESIAN_POINT('',(-1.344197406804E-003,0.192304543475,0.3)); -#7124 = CARTESIAN_POINT('',(-2.159650567102E-003,0.181359675168,0.3)); -#7125 = CARTESIAN_POINT('',(-2.771927051014E-003,0.169214683162,0.3)); -#7126 = CARTESIAN_POINT('',(-3.127491465827E-003,0.155885848135,0.3)); -#7127 = CARTESIAN_POINT('',(-3.155106233952E-003,0.146605982929,0.3)); -#7128 = CARTESIAN_POINT('',(-3.169498280582E-003,0.141769576113,0.3)); -#7129 = PCURVE('',#6705,#7130); -#7130 = DEFINITIONAL_REPRESENTATION('',(#7131),#7135); -#7131 = LINE('',#7132,#7133); -#7132 = CARTESIAN_POINT('',(0.E+000,1.)); -#7133 = VECTOR('',#7134,1.); -#7134 = DIRECTION('',(1.,0.E+000)); -#7135 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7136 = PCURVE('',#7137,#7142); -#7137 = PLANE('',#7138); -#7138 = AXIS2_PLACEMENT_3D('',#7139,#7140,#7141); -#7139 = CARTESIAN_POINT('',(-0.8,-0.4,0.3)); -#7140 = DIRECTION('',(0.E+000,2.22044604925E-016,1.)); -#7141 = DIRECTION('',(0.E+000,-1.,2.22044604925E-016)); -#7142 = DEFINITIONAL_REPRESENTATION('',(#7143),#7155); -#7143 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7144,#7145,#7146,#7147,#7148, - #7149,#7150,#7151,#7152,#7153,#7154),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,7.749443414545E-002,0.167583476623, - 0.271791298041,0.388973885957,0.520673542117,0.666372319412, - 0.826122561869,1.),.UNSPECIFIED.); -#7144 = CARTESIAN_POINT('',(-0.624601969597,0.804393459385)); -#7145 = CARTESIAN_POINT('',(-0.622534349987,0.803780980419)); -#7146 = CARTESIAN_POINT('',(-0.618063075548,0.802456480723)); -#7147 = CARTESIAN_POINT('',(-0.610641303348,0.800977182017)); -#7148 = CARTESIAN_POINT('',(-0.602081127285,0.799630218858)); -#7149 = CARTESIAN_POINT('',(-0.592304543475,0.798655802593)); -#7150 = CARTESIAN_POINT('',(-0.581359675168,0.797840349433)); -#7151 = CARTESIAN_POINT('',(-0.569214683162,0.797228072949)); -#7152 = CARTESIAN_POINT('',(-0.555885848135,0.796872508534)); -#7153 = CARTESIAN_POINT('',(-0.546605982929,0.796844893766)); -#7154 = CARTESIAN_POINT('',(-0.541769576113,0.796830501719)); -#7155 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7156 = ORIENTED_EDGE('',*,*,#7157,.F.); -#7157 = EDGE_CURVE('',#6674,#7112,#7158,.T.); -#7158 = SURFACE_CURVE('',#7159,(#7163,#7169),.PCURVE_S1.); -#7159 = LINE('',#7160,#7161); -#7160 = CARTESIAN_POINT('',(4.393459385277E-003,0.224601969597,0.302)); -#7161 = VECTOR('',#7162,1.); -#7162 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#7163 = PCURVE('',#6705,#7164); -#7164 = DEFINITIONAL_REPRESENTATION('',(#7165),#7168); -#7165 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7166,#7167),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7166 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7167 = CARTESIAN_POINT('',(0.E+000,1.)); -#7168 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7169 = PCURVE('',#6767,#7170); -#7170 = DEFINITIONAL_REPRESENTATION('',(#7171),#7174); -#7171 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7172,#7173),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7172 = CARTESIAN_POINT('',(1.,0.E+000)); -#7173 = CARTESIAN_POINT('',(1.,1.)); -#7174 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7175 = ORIENTED_EDGE('',*,*,#6673,.T.); -#7176 = ORIENTED_EDGE('',*,*,#7177,.T.); -#7177 = EDGE_CURVE('',#6578,#7114,#7178,.T.); -#7178 = SURFACE_CURVE('',#7179,(#7183,#7189),.PCURVE_S1.); -#7179 = LINE('',#7180,#7181); -#7180 = CARTESIAN_POINT('',(-3.169498280582E-003,0.141769576113,0.302)); -#7181 = VECTOR('',#7182,1.); -#7182 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#7183 = PCURVE('',#6705,#7184); -#7184 = DEFINITIONAL_REPRESENTATION('',(#7185),#7188); -#7185 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7186,#7187),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7186 = CARTESIAN_POINT('',(1.,0.E+000)); -#7187 = CARTESIAN_POINT('',(1.,1.)); -#7188 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7189 = PCURVE('',#6627,#7190); -#7190 = DEFINITIONAL_REPRESENTATION('',(#7191),#7194); -#7191 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7192,#7193),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7192 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7193 = CARTESIAN_POINT('',(0.E+000,1.)); -#7194 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7195 = ADVANCED_FACE('',(#7196),#6627,.T.); -#7196 = FACE_BOUND('',#7197,.T.); -#7197 = EDGE_LOOP('',(#7198,#7253,#7254,#7255)); -#7198 = ORIENTED_EDGE('',*,*,#7199,.F.); -#7199 = EDGE_CURVE('',#7114,#7200,#7202,.T.); -#7200 = VERTEX_POINT('',#7201); -#7201 = CARTESIAN_POINT('',(2.317223182091E-002,4.13417301015E-002,0.3) - ); -#7202 = SURFACE_CURVE('',#7203,(#7223,#7230),.PCURVE_S1.); -#7203 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7204,#7205,#7206,#7207,#7208, - #7209,#7210,#7211,#7212,#7213,#7214,#7215,#7216,#7217,#7218,#7219, - #7220,#7221,#7222),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,0.134263073174,0.25691182911,0.367072438303, - 0.465718811024,0.552001157842,0.626648205291,0.690207875895, - 0.742102733723,0.786360379614,0.826397614705,0.862341875248, - 0.894454198914,0.923529781456,0.950073400113,0.975134639533,1.), - .UNSPECIFIED.); -#7204 = CARTESIAN_POINT('',(-3.169498280582E-003,0.141769576113,0.3)); -#7205 = CARTESIAN_POINT('',(-3.155072819782E-003,0.136830282714,0.3)); -#7206 = CARTESIAN_POINT('',(-3.127469760858E-003,0.127378965447,0.3)); -#7207 = CARTESIAN_POINT('',(-2.776126113917E-003,0.113878477591,0.3)); -#7208 = CARTESIAN_POINT('',(-2.162817275907E-003,0.101699054291,0.3)); -#7209 = CARTESIAN_POINT('',(-1.350556876157E-003,9.087366943313E-002,0.3 - )); -#7210 = CARTESIAN_POINT('',(-3.863102518688E-004,8.136929685639E-002,0.3 - )); -#7211 = CARTESIAN_POINT('',(9.627939588462E-004,7.321733261621E-002,0.3) - ); -#7212 = CARTESIAN_POINT('',(2.441510108286E-003,6.637830197277E-002,0.3) - ); -#7213 = CARTESIAN_POINT('',(4.19486555283E-003,6.075579331747E-002,0.3) - ); -#7214 = CARTESIAN_POINT('',(6.247958243E-003,5.618095372742E-002,0.3)); -#7215 = CARTESIAN_POINT('',(8.251675316231E-003,5.222922983216E-002,0.3) - ); -#7216 = CARTESIAN_POINT('',(1.049657816382E-002,4.893922191491E-002,0.3) - ); -#7217 = CARTESIAN_POINT('',(1.273174512163E-002,4.613966170305E-002,0.3) - ); -#7218 = CARTESIAN_POINT('',(1.517156197841E-002,4.399794631139E-002,0.3) - ); -#7219 = CARTESIAN_POINT('',(1.772637244248E-002,4.245792581211E-002,0.3) - ); -#7220 = CARTESIAN_POINT('',(2.041813580656E-002,4.153271183255E-002,0.3) - ); -#7221 = CARTESIAN_POINT('',(2.225660412732E-002,4.140522395248E-002,0.3) - ); -#7222 = CARTESIAN_POINT('',(2.317223182091E-002,4.13417301015E-002,0.3) - ); -#7223 = PCURVE('',#6627,#7224); -#7224 = DEFINITIONAL_REPRESENTATION('',(#7225),#7229); -#7225 = LINE('',#7226,#7227); -#7226 = CARTESIAN_POINT('',(0.E+000,1.)); -#7227 = VECTOR('',#7228,1.); -#7228 = DIRECTION('',(1.,0.E+000)); -#7229 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7230 = PCURVE('',#7137,#7231); -#7231 = DEFINITIONAL_REPRESENTATION('',(#7232),#7252); -#7232 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7233,#7234,#7235,#7236,#7237, - #7238,#7239,#7240,#7241,#7242,#7243,#7244,#7245,#7246,#7247,#7248, - #7249,#7250,#7251),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,0.134263073174,0.25691182911,0.367072438303, - 0.465718811024,0.552001157842,0.626648205291,0.690207875895, - 0.742102733723,0.786360379614,0.826397614705,0.862341875248, - 0.894454198914,0.923529781456,0.950073400113,0.975134639533,1.), - .UNSPECIFIED.); -#7233 = CARTESIAN_POINT('',(-0.541769576113,0.796830501719)); -#7234 = CARTESIAN_POINT('',(-0.536830282714,0.79684492718)); -#7235 = CARTESIAN_POINT('',(-0.527378965447,0.796872530239)); -#7236 = CARTESIAN_POINT('',(-0.513878477591,0.797223873886)); -#7237 = CARTESIAN_POINT('',(-0.501699054291,0.797837182724)); -#7238 = CARTESIAN_POINT('',(-0.490873669433,0.798649443124)); -#7239 = CARTESIAN_POINT('',(-0.481369296856,0.799613689748)); -#7240 = CARTESIAN_POINT('',(-0.473217332616,0.800962793959)); -#7241 = CARTESIAN_POINT('',(-0.466378301973,0.802441510108)); -#7242 = CARTESIAN_POINT('',(-0.460755793317,0.804194865553)); -#7243 = CARTESIAN_POINT('',(-0.456180953727,0.806247958243)); -#7244 = CARTESIAN_POINT('',(-0.452229229832,0.808251675316)); -#7245 = CARTESIAN_POINT('',(-0.448939221915,0.810496578164)); -#7246 = CARTESIAN_POINT('',(-0.446139661703,0.812731745122)); -#7247 = CARTESIAN_POINT('',(-0.443997946311,0.815171561978)); -#7248 = CARTESIAN_POINT('',(-0.442457925812,0.817726372442)); -#7249 = CARTESIAN_POINT('',(-0.441532711833,0.820418135807)); -#7250 = CARTESIAN_POINT('',(-0.441405223952,0.822256604127)); -#7251 = CARTESIAN_POINT('',(-0.441341730101,0.823172231821)); -#7252 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7253 = ORIENTED_EDGE('',*,*,#7177,.F.); -#7254 = ORIENTED_EDGE('',*,*,#6577,.T.); -#7255 = ORIENTED_EDGE('',*,*,#7256,.T.); -#7256 = EDGE_CURVE('',#6580,#7200,#7257,.T.); -#7257 = SURFACE_CURVE('',#7258,(#7262,#7268),.PCURVE_S1.); -#7258 = LINE('',#7259,#7260); -#7259 = CARTESIAN_POINT('',(2.317223182091E-002,4.13417301015E-002,0.302 - )); -#7260 = VECTOR('',#7261,1.); -#7261 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#7262 = PCURVE('',#6627,#7263); -#7263 = DEFINITIONAL_REPRESENTATION('',(#7264),#7267); -#7264 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7265,#7266),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7265 = CARTESIAN_POINT('',(1.,0.E+000)); -#7266 = CARTESIAN_POINT('',(1.,1.)); -#7267 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7268 = PCURVE('',#6937,#7269); -#7269 = DEFINITIONAL_REPRESENTATION('',(#7270),#7273); -#7270 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7271,#7272),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7271 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7272 = CARTESIAN_POINT('',(0.E+000,1.)); -#7273 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7274 = ADVANCED_FACE('',(#7275),#6937,.T.); -#7275 = FACE_BOUND('',#7276,.T.); -#7276 = EDGE_LOOP('',(#7277,#7332,#7333,#7334)); -#7277 = ORIENTED_EDGE('',*,*,#7278,.F.); -#7278 = EDGE_CURVE('',#7200,#7279,#7281,.T.); -#7279 = VERTEX_POINT('',#7280); -#7280 = CARTESIAN_POINT('',(4.951396192241E-002,0.141769576113,0.3)); -#7281 = SURFACE_CURVE('',#7282,(#7302,#7309),.PCURVE_S1.); -#7282 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7283,#7284,#7285,#7286,#7287, - #7288,#7289,#7290,#7291,#7292,#7293,#7294,#7295,#7296,#7297,#7298, - #7299,#7300,#7301),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,2.48730133429E-002,4.994196592378E-002, - 7.673426790876E-002,0.105818799118,0.13758360881,0.173280966874, - 0.213330524327,0.258029519538,0.310527683976,0.373652105177, - 0.448708456434,0.53506899344,0.633280744621,0.743475258226, - 0.865695604337,1.),.UNSPECIFIED.); -#7283 = CARTESIAN_POINT('',(2.317223182091E-002,4.13417301015E-002,0.3) - ); -#7284 = CARTESIAN_POINT('',(2.408731590436E-002,4.140616470408E-002,0.3) - ); -#7285 = CARTESIAN_POINT('',(2.592469272247E-002,4.153554149822E-002,0.3) - ); -#7286 = CARTESIAN_POINT('',(2.863334454055E-002,4.244908468795E-002,0.3) - ); -#7287 = CARTESIAN_POINT('',(3.115923262168E-002,4.405725165956E-002,0.3) - ); -#7288 = CARTESIAN_POINT('',(3.359509724369E-002,4.618594082958E-002,0.3) - ); -#7289 = CARTESIAN_POINT('',(3.587126169706E-002,4.892724419884E-002,0.3) - ); -#7290 = CARTESIAN_POINT('',(3.8026135083E-002,5.225054934107E-002,0.3)); -#7291 = CARTESIAN_POINT('',(4.00654794344E-002,5.618800110037E-002,0.3) - ); -#7292 = CARTESIAN_POINT('',(4.208289315931E-002,6.082006205849E-002,0.3) - ); -#7293 = CARTESIAN_POINT('',(4.390371277376E-002,6.643913385719E-002,0.3) - ); -#7294 = CARTESIAN_POINT('',(4.540722021317E-002,7.329701177681E-002,0.3) - ); -#7295 = CARTESIAN_POINT('',(4.663721572269E-002,8.146546935855E-002,0.3) - ); -#7296 = CARTESIAN_POINT('',(4.772200272738E-002,9.095408399656E-002,0.3) - ); -#7297 = CARTESIAN_POINT('',(4.850041185127E-002,0.101768615532,0.3)); -#7298 = CARTESIAN_POINT('',(4.912185496906E-002,0.113912486886,0.3)); -#7299 = CARTESIAN_POINT('',(4.94719241256E-002,0.127396187136,0.3)); -#7300 = CARTESIAN_POINT('',(4.94995160678E-002,0.136830309474,0.3)); -#7301 = CARTESIAN_POINT('',(4.951396192241E-002,0.141769576113,0.3)); -#7302 = PCURVE('',#6937,#7303); -#7303 = DEFINITIONAL_REPRESENTATION('',(#7304),#7308); -#7304 = LINE('',#7305,#7306); -#7305 = CARTESIAN_POINT('',(0.E+000,1.)); -#7306 = VECTOR('',#7307,1.); -#7307 = DIRECTION('',(1.,0.E+000)); -#7308 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7309 = PCURVE('',#7137,#7310); -#7310 = DEFINITIONAL_REPRESENTATION('',(#7311),#7331); -#7311 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7312,#7313,#7314,#7315,#7316, - #7317,#7318,#7319,#7320,#7321,#7322,#7323,#7324,#7325,#7326,#7327, - #7328,#7329,#7330),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,2.48730133429E-002,4.994196592378E-002, - 7.673426790876E-002,0.105818799118,0.13758360881,0.173280966874, - 0.213330524327,0.258029519538,0.310527683976,0.373652105177, - 0.448708456434,0.53506899344,0.633280744621,0.743475258226, - 0.865695604337,1.),.UNSPECIFIED.); -#7312 = CARTESIAN_POINT('',(-0.441341730101,0.823172231821)); -#7313 = CARTESIAN_POINT('',(-0.441406164704,0.824087315904)); -#7314 = CARTESIAN_POINT('',(-0.441535541498,0.825924692722)); -#7315 = CARTESIAN_POINT('',(-0.442449084688,0.828633344541)); -#7316 = CARTESIAN_POINT('',(-0.44405725166,0.831159232622)); -#7317 = CARTESIAN_POINT('',(-0.44618594083,0.833595097244)); -#7318 = CARTESIAN_POINT('',(-0.448927244199,0.835871261697)); -#7319 = CARTESIAN_POINT('',(-0.452250549341,0.838026135083)); -#7320 = CARTESIAN_POINT('',(-0.4561880011,0.840065479434)); -#7321 = CARTESIAN_POINT('',(-0.460820062058,0.842082893159)); -#7322 = CARTESIAN_POINT('',(-0.466439133857,0.843903712774)); -#7323 = CARTESIAN_POINT('',(-0.473297011777,0.845407220213)); -#7324 = CARTESIAN_POINT('',(-0.481465469359,0.846637215723)); -#7325 = CARTESIAN_POINT('',(-0.490954083997,0.847722002727)); -#7326 = CARTESIAN_POINT('',(-0.501768615532,0.848500411851)); -#7327 = CARTESIAN_POINT('',(-0.513912486886,0.849121854969)); -#7328 = CARTESIAN_POINT('',(-0.527396187136,0.849471924126)); -#7329 = CARTESIAN_POINT('',(-0.536830309474,0.849499516068)); -#7330 = CARTESIAN_POINT('',(-0.541769576113,0.849513961922)); -#7331 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7332 = ORIENTED_EDGE('',*,*,#7256,.F.); -#7333 = ORIENTED_EDGE('',*,*,#6891,.T.); -#7334 = ORIENTED_EDGE('',*,*,#7335,.T.); -#7335 = EDGE_CURVE('',#6798,#7279,#7336,.T.); -#7336 = SURFACE_CURVE('',#7337,(#7341,#7347),.PCURVE_S1.); -#7337 = LINE('',#7338,#7339); -#7338 = CARTESIAN_POINT('',(4.951396192241E-002,0.141769576113,0.302)); -#7339 = VECTOR('',#7340,1.); -#7340 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#7341 = PCURVE('',#6937,#7342); -#7342 = DEFINITIONAL_REPRESENTATION('',(#7343),#7346); -#7343 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7344,#7345),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7344 = CARTESIAN_POINT('',(1.,0.E+000)); -#7345 = CARTESIAN_POINT('',(1.,1.)); -#7346 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7347 = PCURVE('',#6845,#7348); -#7348 = DEFINITIONAL_REPRESENTATION('',(#7349),#7352); -#7349 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7350,#7351),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7350 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7351 = CARTESIAN_POINT('',(0.E+000,1.)); -#7352 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7353 = ADVANCED_FACE('',(#7354),#6845,.T.); -#7354 = FACE_BOUND('',#7355,.T.); -#7355 = EDGE_LOOP('',(#7356,#7411,#7412,#7413)); -#7356 = ORIENTED_EDGE('',*,*,#7357,.F.); -#7357 = EDGE_CURVE('',#7279,#7358,#7360,.T.); -#7358 = VERTEX_POINT('',#7359); -#7359 = CARTESIAN_POINT('',(2.30178857461E-002,0.242197422125,0.3)); -#7360 = SURFACE_CURVE('',#7361,(#7381,#7388),.PCURVE_S1.); -#7361 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7362,#7363,#7364,#7365,#7366, - #7367,#7368,#7369,#7370,#7371,#7372,#7373,#7374,#7375,#7376,#7377, - #7378,#7379,#7380),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,0.131104227359,0.251091770705,0.359069021009, - 0.456018700075,0.542063571507,0.61635985873,0.680001512757, - 0.732946720057,0.778442530811,0.819194663635,0.855956811654, - 0.888635460529,0.918943031446,0.94645063271,0.973354470683,1.), - .UNSPECIFIED.); -#7362 = CARTESIAN_POINT('',(4.951396192241E-002,0.141769576113,0.3)); -#7363 = CARTESIAN_POINT('',(4.950087838094E-002,0.146606023088,0.3)); -#7364 = CARTESIAN_POINT('',(4.947582068706E-002,0.155868821544,0.3)); -#7365 = CARTESIAN_POINT('',(4.910613591798E-002,0.169110662483,0.3)); -#7366 = CARTESIAN_POINT('',(4.855117902759E-002,0.181084137227,0.3)); -#7367 = CARTESIAN_POINT('',(4.781200548783E-002,0.191793743895,0.3)); -#7368 = CARTESIAN_POINT('',(4.680251094367E-002,0.201234543764,0.3)); -#7369 = CARTESIAN_POINT('',(4.557381283073E-002,0.209405715408,0.3)); -#7370 = CARTESIAN_POINT('',(4.421258706468E-002,0.216323276481,0.3)); -#7371 = CARTESIAN_POINT('',(4.246255381799E-002,0.222047620593,0.3)); -#7372 = CARTESIAN_POINT('',(4.061272248209E-002,0.226846565338,0.3)); -#7373 = CARTESIAN_POINT('',(3.851312435099E-002,0.230874839461,0.3)); -#7374 = CARTESIAN_POINT('',(3.640611407695E-002,0.234360490577,0.3)); -#7375 = CARTESIAN_POINT('',(3.404864244735E-002,0.237203158926,0.3)); -#7376 = CARTESIAN_POINT('',(3.154910443291E-002,0.239441386564,0.3)); -#7377 = CARTESIAN_POINT('',(2.884783817127E-002,0.241049154675,0.3)); -#7378 = CARTESIAN_POINT('',(2.598094523055E-002,0.24201644677,0.3)); -#7379 = CARTESIAN_POINT('',(2.40023908917E-002,0.242137291315,0.3)); -#7380 = CARTESIAN_POINT('',(2.30178857461E-002,0.242197422125,0.3)); -#7381 = PCURVE('',#6845,#7382); -#7382 = DEFINITIONAL_REPRESENTATION('',(#7383),#7387); -#7383 = LINE('',#7384,#7385); -#7384 = CARTESIAN_POINT('',(0.E+000,1.)); -#7385 = VECTOR('',#7386,1.); -#7386 = DIRECTION('',(1.,0.E+000)); -#7387 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7388 = PCURVE('',#7137,#7389); -#7389 = DEFINITIONAL_REPRESENTATION('',(#7390),#7410); -#7390 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7391,#7392,#7393,#7394,#7395, - #7396,#7397,#7398,#7399,#7400,#7401,#7402,#7403,#7404,#7405,#7406, - #7407,#7408,#7409),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,0.131104227359,0.251091770705,0.359069021009, - 0.456018700075,0.542063571507,0.61635985873,0.680001512757, - 0.732946720057,0.778442530811,0.819194663635,0.855956811654, - 0.888635460529,0.918943031446,0.94645063271,0.973354470683,1.), - .UNSPECIFIED.); -#7391 = CARTESIAN_POINT('',(-0.541769576113,0.849513961922)); -#7392 = CARTESIAN_POINT('',(-0.546606023088,0.849500878381)); -#7393 = CARTESIAN_POINT('',(-0.555868821544,0.849475820687)); -#7394 = CARTESIAN_POINT('',(-0.569110662483,0.849106135918)); -#7395 = CARTESIAN_POINT('',(-0.581084137227,0.848551179028)); -#7396 = CARTESIAN_POINT('',(-0.591793743895,0.847812005488)); -#7397 = CARTESIAN_POINT('',(-0.601234543764,0.846802510944)); -#7398 = CARTESIAN_POINT('',(-0.609405715408,0.845573812831)); -#7399 = CARTESIAN_POINT('',(-0.616323276481,0.844212587065)); -#7400 = CARTESIAN_POINT('',(-0.622047620593,0.842462553818)); -#7401 = CARTESIAN_POINT('',(-0.626846565338,0.840612722482)); -#7402 = CARTESIAN_POINT('',(-0.630874839461,0.838513124351)); -#7403 = CARTESIAN_POINT('',(-0.634360490577,0.836406114077)); -#7404 = CARTESIAN_POINT('',(-0.637203158926,0.834048642447)); -#7405 = CARTESIAN_POINT('',(-0.639441386564,0.831549104433)); -#7406 = CARTESIAN_POINT('',(-0.641049154675,0.828847838171)); -#7407 = CARTESIAN_POINT('',(-0.64201644677,0.825980945231)); -#7408 = CARTESIAN_POINT('',(-0.642137291315,0.824002390892)); -#7409 = CARTESIAN_POINT('',(-0.642197422125,0.823017885746)); -#7410 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7411 = ORIENTED_EDGE('',*,*,#7335,.F.); -#7412 = ORIENTED_EDGE('',*,*,#6797,.T.); -#7413 = ORIENTED_EDGE('',*,*,#7414,.T.); -#7414 = EDGE_CURVE('',#6736,#7358,#7415,.T.); -#7415 = SURFACE_CURVE('',#7416,(#7420,#7426),.PCURVE_S1.); -#7416 = LINE('',#7417,#7418); -#7417 = CARTESIAN_POINT('',(2.30178857461E-002,0.242197422125,0.302)); -#7418 = VECTOR('',#7419,1.); -#7419 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#7420 = PCURVE('',#6845,#7421); -#7421 = DEFINITIONAL_REPRESENTATION('',(#7422),#7425); -#7422 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7423,#7424),.UNSPECIFIED.,.F., - .F.,(2,2),(-1.110223024625E-016,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7423 = CARTESIAN_POINT('',(1.,0.E+000)); -#7424 = CARTESIAN_POINT('',(1.,1.)); -#7425 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7426 = PCURVE('',#6767,#7427); -#7427 = DEFINITIONAL_REPRESENTATION('',(#7428),#7431); -#7428 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7429,#7430),.UNSPECIFIED.,.F., - .F.,(2,2),(-1.110223024625E-016,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7429 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7430 = CARTESIAN_POINT('',(0.E+000,1.)); -#7431 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7432 = ADVANCED_FACE('',(#7433),#6767,.T.); -#7433 = FACE_BOUND('',#7434,.T.); -#7434 = EDGE_LOOP('',(#7435,#7472,#7473,#7474)); -#7435 = ORIENTED_EDGE('',*,*,#7436,.F.); -#7436 = EDGE_CURVE('',#7358,#7112,#7437,.T.); -#7437 = SURFACE_CURVE('',#7438,(#7450,#7457),.PCURVE_S1.); -#7438 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7439,#7440,#7441,#7442,#7443, - #7444,#7445,#7446,#7447,#7448,#7449),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.10084415503,0.20209669549,0.308076466598, - 0.419904889368,0.544656315619,0.680307883162,0.833031952295,1.), - .UNSPECIFIED.); -#7439 = CARTESIAN_POINT('',(2.30178857461E-002,0.242197422125,0.3)); -#7440 = CARTESIAN_POINT('',(2.21026497084E-002,0.24215201295,0.3)); -#7441 = CARTESIAN_POINT('',(2.026847123014E-002,0.242061010707,0.3)); -#7442 = CARTESIAN_POINT('',(1.758832718343E-002,0.241181388084,0.3)); -#7443 = CARTESIAN_POINT('',(1.505621532711E-002,0.239768087358,0.3)); -#7444 = CARTESIAN_POINT('',(1.262728015739E-002,0.237811531694,0.3)); -#7445 = CARTESIAN_POINT('',(1.041528853349E-002,0.235255534751,0.3)); -#7446 = CARTESIAN_POINT('',(8.20768020329E-003,0.232231492463,0.3)); -#7447 = CARTESIAN_POINT('',(6.174796389533E-003,0.228633060841,0.3)); -#7448 = CARTESIAN_POINT('',(5.004617609382E-003,0.225984995133,0.3)); -#7449 = CARTESIAN_POINT('',(4.393459385277E-003,0.224601969597,0.3)); -#7450 = PCURVE('',#6767,#7451); -#7451 = DEFINITIONAL_REPRESENTATION('',(#7452),#7456); -#7452 = LINE('',#7453,#7454); -#7453 = CARTESIAN_POINT('',(0.E+000,1.)); -#7454 = VECTOR('',#7455,1.); -#7455 = DIRECTION('',(1.,0.E+000)); -#7456 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7457 = PCURVE('',#7137,#7458); -#7458 = DEFINITIONAL_REPRESENTATION('',(#7459),#7471); -#7459 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7460,#7461,#7462,#7463,#7464, - #7465,#7466,#7467,#7468,#7469,#7470),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.10084415503,0.20209669549,0.308076466598, - 0.419904889368,0.544656315619,0.680307883162,0.833031952295,1.), - .UNSPECIFIED.); -#7460 = CARTESIAN_POINT('',(-0.642197422125,0.823017885746)); -#7461 = CARTESIAN_POINT('',(-0.64215201295,0.822102649708)); -#7462 = CARTESIAN_POINT('',(-0.642061010707,0.82026847123)); -#7463 = CARTESIAN_POINT('',(-0.641181388084,0.817588327183)); -#7464 = CARTESIAN_POINT('',(-0.639768087358,0.815056215327)); -#7465 = CARTESIAN_POINT('',(-0.637811531694,0.812627280157)); -#7466 = CARTESIAN_POINT('',(-0.635255534751,0.810415288533)); -#7467 = CARTESIAN_POINT('',(-0.632231492463,0.808207680203)); -#7468 = CARTESIAN_POINT('',(-0.628633060841,0.80617479639)); -#7469 = CARTESIAN_POINT('',(-0.625984995133,0.805004617609)); -#7470 = CARTESIAN_POINT('',(-0.624601969597,0.804393459385)); -#7471 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7472 = ORIENTED_EDGE('',*,*,#7414,.F.); -#7473 = ORIENTED_EDGE('',*,*,#6735,.T.); -#7474 = ORIENTED_EDGE('',*,*,#7157,.T.); -#7475 = ADVANCED_FACE('',(#7476),#7137,.T.); -#7476 = FACE_BOUND('',#7477,.T.); -#7477 = EDGE_LOOP('',(#7478,#7479,#7480,#7481,#7482)); -#7478 = ORIENTED_EDGE('',*,*,#7111,.T.); -#7479 = ORIENTED_EDGE('',*,*,#7199,.T.); -#7480 = ORIENTED_EDGE('',*,*,#7278,.T.); -#7481 = ORIENTED_EDGE('',*,*,#7357,.T.); -#7482 = ORIENTED_EDGE('',*,*,#7436,.T.); -#7483 = ADVANCED_FACE('',(#7484),#76,.T.); -#7484 = FACE_BOUND('',#7485,.T.); -#7485 = EDGE_LOOP('',(#7486,#7487,#7508,#7568)); -#7486 = ORIENTED_EDGE('',*,*,#21,.F.); -#7487 = ORIENTED_EDGE('',*,*,#7488,.F.); -#7488 = EDGE_CURVE('',#7489,#22,#7491,.T.); -#7489 = VERTEX_POINT('',#7490); -#7490 = CARTESIAN_POINT('',(0.120718951103,1.170728373731E-002,0.302)); -#7491 = SURFACE_CURVE('',#7492,(#7496,#7502),.PCURVE_S1.); -#7492 = LINE('',#7493,#7494); -#7493 = CARTESIAN_POINT('',(0.120718951103,1.170728373731E-002,0.302)); -#7494 = VECTOR('',#7495,1.); -#7495 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#7496 = PCURVE('',#76,#7497); -#7497 = DEFINITIONAL_REPRESENTATION('',(#7498),#7501); -#7498 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7499,#7500),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7499 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7500 = CARTESIAN_POINT('',(0.E+000,1.)); -#7501 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7502 = PCURVE('',#1100,#7503); -#7503 = DEFINITIONAL_REPRESENTATION('',(#7504),#7507); -#7504 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7505,#7506),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7505 = CARTESIAN_POINT('',(1.,0.E+000)); -#7506 = CARTESIAN_POINT('',(1.,1.)); -#7507 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7508 = ORIENTED_EDGE('',*,*,#7509,.T.); -#7509 = EDGE_CURVE('',#7489,#7510,#7512,.T.); -#7510 = VERTEX_POINT('',#7511); -#7511 = CARTESIAN_POINT('',(7.914840828659E-002,8.414704151643E-002, - 0.302)); -#7512 = SURFACE_CURVE('',#7513,(#7533,#7540),.PCURVE_S1.); -#7513 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7514,#7515,#7516,#7517,#7518, - #7519,#7520,#7521,#7522,#7523,#7524,#7525,#7526,#7527,#7528,#7529, - #7530,#7531,#7532),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,4.642480551308E-002,9.17550650813E-002, - 0.137365792969,0.184234865116,0.233618047719,0.286345281489, - 0.342702560112,0.403812353687,0.468458845429,0.535483138438, - 0.604766914307,0.676822993412,0.7525824976,0.831578559803, - 0.913949260602,1.),.UNSPECIFIED.); -#7514 = CARTESIAN_POINT('',(0.120718951103,1.170728373731E-002,0.302)); -#7515 = CARTESIAN_POINT('',(0.119305687764,1.175807442949E-002,0.302)); -#7516 = CARTESIAN_POINT('',(0.11651248124,1.18584583345E-002,0.302)); -#7517 = CARTESIAN_POINT('',(0.112453586066,1.292290438905E-002,0.302)); -#7518 = CARTESIAN_POINT('',(0.108535791536,1.443462285821E-002,0.302)); -#7519 = CARTESIAN_POINT('',(0.104861886428,1.672324153894E-002,0.302)); -#7520 = CARTESIAN_POINT('',(0.101321294393,1.956124176099E-002,0.302)); -#7521 = CARTESIAN_POINT('',(9.806195466378E-002,2.312005656402E-002, - 0.302)); -#7522 = CARTESIAN_POINT('',(9.488067483072E-002,2.720206212183E-002, - 0.302)); -#7523 = CARTESIAN_POINT('',(9.199215450085E-002,3.193240674378E-002, - 0.302)); -#7524 = CARTESIAN_POINT('',(8.935789793798E-002,3.716463006663E-002, - 0.302)); -#7525 = CARTESIAN_POINT('',(8.69143155312E-002,4.276332812003E-002,0.302 - )); -#7526 = CARTESIAN_POINT('',(8.487547001018E-002,4.876108493811E-002, - 0.302)); -#7527 = CARTESIAN_POINT('',(8.313158049113E-002,5.512284571882E-002, - 0.302)); -#7528 = CARTESIAN_POINT('',(8.164238908048E-002,6.185160062136E-002, - 0.302)); -#7529 = CARTESIAN_POINT('',(8.045121467697E-002,6.895846489487E-002, - 0.302)); -#7530 = CARTESIAN_POINT('',(7.965207367774E-002,7.643426271059E-002, - 0.302)); -#7531 = CARTESIAN_POINT('',(7.931872466218E-002,8.153893590695E-002, - 0.302)); -#7532 = CARTESIAN_POINT('',(7.914840828659E-002,8.414704151643E-002, - 0.302)); -#7533 = PCURVE('',#76,#7534); -#7534 = DEFINITIONAL_REPRESENTATION('',(#7535),#7539); -#7535 = LINE('',#7536,#7537); -#7536 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7537 = VECTOR('',#7538,1.); -#7538 = DIRECTION('',(1.,0.E+000)); -#7539 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7540 = PCURVE('',#7541,#7546); -#7541 = PLANE('',#7542); -#7542 = AXIS2_PLACEMENT_3D('',#7543,#7544,#7545); -#7543 = CARTESIAN_POINT('',(8.82519759098E-002,3.974146040877E-002,0.302 - )); -#7544 = DIRECTION('',(-2.120931561339E-015,-5.879339092103E-014,1.)); -#7545 = DIRECTION('',(0.E+000,-1.,-5.879339092103E-014)); -#7546 = DEFINITIONAL_REPRESENTATION('',(#7547),#7567); -#7547 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7548,#7549,#7550,#7551,#7552, - #7553,#7554,#7555,#7556,#7557,#7558,#7559,#7560,#7561,#7562,#7563, - #7564,#7565,#7566),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,4.642480551308E-002,9.17550650813E-002, - 0.137365792969,0.184234865116,0.233618047719,0.286345281489, - 0.342702560112,0.403812353687,0.468458845429,0.535483138438, - 0.604766914307,0.676822993412,0.7525824976,0.831578559803, - 0.913949260602,1.),.UNSPECIFIED.); -#7548 = CARTESIAN_POINT('',(2.803417667145E-002,3.246697519322E-002)); -#7549 = CARTESIAN_POINT('',(2.798338597927E-002,3.105371185444E-002)); -#7550 = CARTESIAN_POINT('',(2.788300207427E-002,2.826050533061E-002)); -#7551 = CARTESIAN_POINT('',(2.681855601972E-002,2.420161015664E-002)); -#7552 = CARTESIAN_POINT('',(2.530683755055E-002,2.028381562655E-002)); -#7553 = CARTESIAN_POINT('',(2.301821886983E-002,1.66099105184E-002)); -#7554 = CARTESIAN_POINT('',(2.018021864778E-002,1.306931848352E-002)); -#7555 = CARTESIAN_POINT('',(1.662140384475E-002,9.809978753984E-003)); -#7556 = CARTESIAN_POINT('',(1.253939828693E-002,6.628698920922E-003)); -#7557 = CARTESIAN_POINT('',(7.809053664983E-003,3.740178591054E-003)); -#7558 = CARTESIAN_POINT('',(2.576830342134E-003,1.105922028182E-003)); -#7559 = CARTESIAN_POINT('',(-3.021867711264E-003,-1.337660378603E-003)); -#7560 = CARTESIAN_POINT('',(-9.01962452934E-003,-3.376505899624E-003)); -#7561 = CARTESIAN_POINT('',(-1.538138531005E-002,-5.120395418667E-003)); -#7562 = CARTESIAN_POINT('',(-2.211014021259E-002,-6.609586829316E-003)); -#7563 = CARTESIAN_POINT('',(-2.921700448611E-002,-7.80076123283E-003)); -#7564 = CARTESIAN_POINT('',(-3.669280230183E-002,-8.599902232056E-003)); -#7565 = CARTESIAN_POINT('',(-4.179747549819E-002,-8.933251247614E-003)); -#7566 = CARTESIAN_POINT('',(-4.440558110766E-002,-9.103567623207E-003)); -#7567 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7568 = ORIENTED_EDGE('',*,*,#7569,.T.); -#7569 = EDGE_CURVE('',#7510,#24,#7570,.T.); -#7570 = SURFACE_CURVE('',#7571,(#7575,#7581),.PCURVE_S1.); -#7571 = LINE('',#7572,#7573); -#7572 = CARTESIAN_POINT('',(7.914840828659E-002,8.414704151643E-002, - 0.302)); -#7573 = VECTOR('',#7574,1.); -#7574 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#7575 = PCURVE('',#76,#7576); -#7576 = DEFINITIONAL_REPRESENTATION('',(#7577),#7580); -#7577 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7578,#7579),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7578 = CARTESIAN_POINT('',(1.,0.E+000)); -#7579 = CARTESIAN_POINT('',(1.,1.)); -#7580 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7581 = PCURVE('',#138,#7582); -#7582 = DEFINITIONAL_REPRESENTATION('',(#7583),#7587); -#7583 = LINE('',#7584,#7585); -#7584 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7585 = VECTOR('',#7586,1.); -#7586 = DIRECTION('',(0.E+000,-1.)); -#7587 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7588 = ADVANCED_FACE('',(#7589),#1100,.T.); -#7589 = FACE_BOUND('',#7590,.T.); -#7590 = EDGE_LOOP('',(#7591,#7592,#7613,#7666)); -#7591 = ORIENTED_EDGE('',*,*,#1054,.F.); -#7592 = ORIENTED_EDGE('',*,*,#7593,.F.); -#7593 = EDGE_CURVE('',#7594,#977,#7596,.T.); -#7594 = VERTEX_POINT('',#7595); -#7595 = CARTESIAN_POINT('',(0.164759031116,9.227593478993E-002,0.302)); -#7596 = SURFACE_CURVE('',#7597,(#7601,#7607),.PCURVE_S1.); -#7597 = LINE('',#7598,#7599); -#7598 = CARTESIAN_POINT('',(0.164759031116,9.227593478993E-002,0.302)); -#7599 = VECTOR('',#7600,1.); -#7600 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#7601 = PCURVE('',#1100,#7602); -#7602 = DEFINITIONAL_REPRESENTATION('',(#7603),#7606); -#7603 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7604,#7605),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7604 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7605 = CARTESIAN_POINT('',(0.E+000,1.)); -#7606 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7607 = PCURVE('',#1016,#7608); -#7608 = DEFINITIONAL_REPRESENTATION('',(#7609),#7612); -#7609 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7610,#7611),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7610 = CARTESIAN_POINT('',(1.,0.E+000)); -#7611 = CARTESIAN_POINT('',(1.,1.)); -#7612 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7613 = ORIENTED_EDGE('',*,*,#7614,.T.); -#7614 = EDGE_CURVE('',#7594,#7489,#7615,.T.); -#7615 = SURFACE_CURVE('',#7616,(#7636,#7643),.PCURVE_S1.); -#7616 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7617,#7618,#7619,#7620,#7621, - #7622,#7623,#7624,#7625,#7626,#7627,#7628,#7629,#7630,#7631,#7632, - #7633,#7634,#7635),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,8.24620414803E-002,0.161515342508,0.237917489154, - 0.311928206459,0.383707237096,0.453658663398,0.521451712787, - 0.588090222416,0.65166842296,0.709643084761,0.763649359456, - 0.813744495021,0.861615745413,0.90793947877,0.953267747783,1.), - .UNSPECIFIED.); -#7617 = CARTESIAN_POINT('',(0.164759031116,9.227593478993E-002,0.302)); -#7618 = CARTESIAN_POINT('',(0.164716643368,8.951391922135E-002,0.302)); -#7619 = CARTESIAN_POINT('',(0.164633620056,8.410406175767E-002,0.302)); -#7620 = CARTESIAN_POINT('',(0.164066970396,7.615102581177E-002,0.302)); -#7621 = CARTESIAN_POINT('',(0.163101736194,6.852155670844E-002,0.302)); -#7622 = CARTESIAN_POINT('',(0.161698187641,6.120921345822E-002,0.302)); -#7623 = CARTESIAN_POINT('',(0.159971168479,5.418787521082E-002,0.302)); -#7624 = CARTESIAN_POINT('',(0.157803241688,4.750755989307E-002,0.302)); -#7625 = CARTESIAN_POINT('',(0.155283758046,4.113716822208E-002,0.302)); -#7626 = CARTESIAN_POINT('',(0.152379773025,3.516670627895E-002,0.302)); -#7627 = CARTESIAN_POINT('',(0.149189941965,2.972410856556E-002,0.302)); -#7628 = CARTESIAN_POINT('',(0.145795946897,2.490751690085E-002,0.302)); -#7629 = CARTESIAN_POINT('',(0.142127426527,2.089017597307E-002,0.302)); -#7630 = CARTESIAN_POINT('',(0.138299010628,1.751336894227E-002,0.302)); -#7631 = CARTESIAN_POINT('',(0.134197002433,1.491831031664E-002,0.302)); -#7632 = CARTESIAN_POINT('',(0.129901343866,1.303707882367E-002,0.302)); -#7633 = CARTESIAN_POINT('',(0.125372855995,1.190522761079E-002,0.302)); -#7634 = CARTESIAN_POINT('',(0.122285945204,1.177393247406E-002,0.302)); -#7635 = CARTESIAN_POINT('',(0.120718951103,1.170728373731E-002,0.302)); -#7636 = PCURVE('',#1100,#7637); -#7637 = DEFINITIONAL_REPRESENTATION('',(#7638),#7642); -#7638 = LINE('',#7639,#7640); -#7639 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7640 = VECTOR('',#7641,1.); -#7641 = DIRECTION('',(1.,0.E+000)); -#7642 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7643 = PCURVE('',#7541,#7644); -#7644 = DEFINITIONAL_REPRESENTATION('',(#7645),#7665); -#7645 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7646,#7647,#7648,#7649,#7650, - #7651,#7652,#7653,#7654,#7655,#7656,#7657,#7658,#7659,#7660,#7661, - #7662,#7663,#7664),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,8.24620414803E-002,0.161515342508,0.237917489154, - 0.311928206459,0.383707237096,0.453658663398,0.521451712787, - 0.588090222416,0.65166842296,0.709643084761,0.763649359456, - 0.813744495021,0.861615745413,0.90793947877,0.953267747783,1.), - .UNSPECIFIED.); -#7646 = CARTESIAN_POINT('',(-5.253447438117E-002,7.650705520665E-002)); -#7647 = CARTESIAN_POINT('',(-4.977245881259E-002,7.646466745771E-002)); -#7648 = CARTESIAN_POINT('',(-4.43626013489E-002,7.638164414581E-002)); -#7649 = CARTESIAN_POINT('',(-3.6409565403E-002,7.58149944864E-002)); -#7650 = CARTESIAN_POINT('',(-2.878009629967E-002,7.484976028452E-002)); -#7651 = CARTESIAN_POINT('',(-2.146775304946E-002,7.344621173073E-002)); -#7652 = CARTESIAN_POINT('',(-1.444641480206E-002,7.171919256911E-002)); -#7653 = CARTESIAN_POINT('',(-7.766099484301E-003,6.955126577837E-002)); -#7654 = CARTESIAN_POINT('',(-1.395707813312E-003,6.703178213598E-002)); -#7655 = CARTESIAN_POINT('',(4.574754129818E-003,6.412779711522E-002)); -#7656 = CARTESIAN_POINT('',(1.00173518432E-002,6.093796605511E-002)); -#7657 = CARTESIAN_POINT('',(1.483394350792E-002,5.754397098685E-002)); -#7658 = CARTESIAN_POINT('',(1.885128443569E-002,5.387545061701E-002)); -#7659 = CARTESIAN_POINT('',(2.22280914665E-002,5.004703471776E-002)); -#7660 = CARTESIAN_POINT('',(2.482315009213E-002,4.594502652354E-002)); -#7661 = CARTESIAN_POINT('',(2.67043815851E-002,4.164936795577E-002)); -#7662 = CARTESIAN_POINT('',(2.783623279798E-002,3.712088008496E-002)); -#7663 = CARTESIAN_POINT('',(2.79675279347E-002,3.40339692938E-002)); -#7664 = CARTESIAN_POINT('',(2.803417667145E-002,3.246697519322E-002)); -#7665 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7666 = ORIENTED_EDGE('',*,*,#7488,.T.); -#7667 = ADVANCED_FACE('',(#7668),#1016,.T.); -#7668 = FACE_BOUND('',#7669,.T.); -#7669 = EDGE_LOOP('',(#7670,#7671,#7692,#7737)); -#7670 = ORIENTED_EDGE('',*,*,#976,.F.); -#7671 = ORIENTED_EDGE('',*,*,#7672,.F.); -#7672 = EDGE_CURVE('',#7673,#915,#7675,.T.); -#7673 = VERTEX_POINT('',#7674); -#7674 = CARTESIAN_POINT('',(0.140629594754,0.155609274155,0.302)); -#7675 = SURFACE_CURVE('',#7676,(#7680,#7686),.PCURVE_S1.); -#7676 = LINE('',#7677,#7678); -#7677 = CARTESIAN_POINT('',(0.140629594754,0.155609274155,0.302)); -#7678 = VECTOR('',#7679,1.); -#7679 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#7680 = PCURVE('',#1016,#7681); -#7681 = DEFINITIONAL_REPRESENTATION('',(#7682),#7685); -#7682 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7683,#7684),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7683 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7684 = CARTESIAN_POINT('',(0.E+000,1.)); -#7685 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7686 = PCURVE('',#946,#7687); -#7687 = DEFINITIONAL_REPRESENTATION('',(#7688),#7691); -#7688 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7689,#7690),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7689 = CARTESIAN_POINT('',(1.,0.E+000)); -#7690 = CARTESIAN_POINT('',(1.,1.)); -#7691 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7692 = ORIENTED_EDGE('',*,*,#7693,.T.); -#7693 = EDGE_CURVE('',#7673,#7594,#7694,.T.); -#7694 = SURFACE_CURVE('',#7695,(#7711,#7718),.PCURVE_S1.); -#7695 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7696,#7697,#7698,#7699,#7700, - #7701,#7702,#7703,#7704,#7705,#7706,#7707,#7708,#7709,#7710), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 4.377083669217E-002,8.899844465675E-002,0.135150860332, - 0.183350536556,0.234220552737,0.287902046026,0.345252071006, - 0.405945978452,0.53608603193,0.677320807104,0.831816088461,1.), - .UNSPECIFIED.); -#7696 = CARTESIAN_POINT('',(0.140629594754,0.155609274155,0.302)); -#7697 = CARTESIAN_POINT('',(0.141550018535,0.155132057108,0.302)); -#7698 = CARTESIAN_POINT('',(0.143421499437,0.154161740381,0.302)); -#7699 = CARTESIAN_POINT('',(0.146046946904,0.152309286402,0.302)); -#7700 = CARTESIAN_POINT('',(0.148454621321,0.150041624586,0.302)); -#7701 = CARTESIAN_POINT('',(0.150824794211,0.147540326043,0.302)); -#7702 = CARTESIAN_POINT('',(0.152877036644,0.144554406032,0.302)); -#7703 = CARTESIAN_POINT('',(0.154945403056,0.141323490153,0.302)); -#7704 = CARTESIAN_POINT('',(0.156682055631,0.137640381656,0.302)); -#7705 = CARTESIAN_POINT('',(0.159030696008,0.132255325873,0.302)); -#7706 = CARTESIAN_POINT('',(0.161389390067,0.124730582974,0.302)); -#7707 = CARTESIAN_POINT('',(0.163370584919,0.114833687655,0.302)); -#7708 = CARTESIAN_POINT('',(0.164533037871,0.103896571211,0.302)); -#7709 = CARTESIAN_POINT('',(0.164681599287,9.625750128022E-002,0.302)); -#7710 = CARTESIAN_POINT('',(0.164759031116,9.227593478993E-002,0.302)); -#7711 = PCURVE('',#1016,#7712); -#7712 = DEFINITIONAL_REPRESENTATION('',(#7713),#7717); -#7713 = LINE('',#7714,#7715); -#7714 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7715 = VECTOR('',#7716,1.); -#7716 = DIRECTION('',(1.,0.E+000)); -#7717 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7718 = PCURVE('',#7541,#7719); -#7719 = DEFINITIONAL_REPRESENTATION('',(#7720),#7736); -#7720 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7721,#7722,#7723,#7724,#7725, - #7726,#7727,#7728,#7729,#7730,#7731,#7732,#7733,#7734,#7735), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 4.377083669217E-002,8.899844465675E-002,0.135150860332, - 0.183350536556,0.234220552737,0.287902046026,0.345252071006, - 0.405945978452,0.53608603193,0.677320807104,0.831816088461,1.), - .UNSPECIFIED.); -#7721 = CARTESIAN_POINT('',(-0.115867813746,5.237761884415E-002)); -#7722 = CARTESIAN_POINT('',(-0.115390596699,5.329804262517E-002)); -#7723 = CARTESIAN_POINT('',(-0.114420279972,5.516952352721E-002)); -#7724 = CARTESIAN_POINT('',(-0.112567825993,5.779497099463E-002)); -#7725 = CARTESIAN_POINT('',(-0.110300164178,6.020264541122E-002)); -#7726 = CARTESIAN_POINT('',(-0.107798865634,6.257281830167E-002)); -#7727 = CARTESIAN_POINT('',(-0.104812945623,6.462506073403E-002)); -#7728 = CARTESIAN_POINT('',(-0.101582029745,6.669342714626E-002)); -#7729 = CARTESIAN_POINT('',(-9.789892124699E-002,6.843007972122E-002)); -#7730 = CARTESIAN_POINT('',(-9.251386546427E-002,7.077872009784E-002)); -#7731 = CARTESIAN_POINT('',(-8.498912256513E-002,7.313741415739E-002)); -#7732 = CARTESIAN_POINT('',(-7.509222724599E-002,7.511860900928E-002)); -#7733 = CARTESIAN_POINT('',(-6.415511080264E-002,7.628106196139E-002)); -#7734 = CARTESIAN_POINT('',(-5.651604087146E-002,7.642962337764E-002)); -#7735 = CARTESIAN_POINT('',(-5.253447438117E-002,7.650705520665E-002)); -#7736 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7737 = ORIENTED_EDGE('',*,*,#7593,.T.); -#7738 = ADVANCED_FACE('',(#7739),#946,.T.); -#7739 = FACE_BOUND('',#7740,.T.); -#7740 = EDGE_LOOP('',(#7741,#7742,#7763,#7800)); -#7741 = ORIENTED_EDGE('',*,*,#914,.F.); -#7742 = ORIENTED_EDGE('',*,*,#7743,.F.); -#7743 = EDGE_CURVE('',#7744,#837,#7746,.T.); -#7744 = VERTEX_POINT('',#7745); -#7745 = CARTESIAN_POINT('',(0.158173598591,0.206543478843,0.302)); -#7746 = SURFACE_CURVE('',#7747,(#7751,#7757),.PCURVE_S1.); -#7747 = LINE('',#7748,#7749); -#7748 = CARTESIAN_POINT('',(0.158173598591,0.206543478843,0.302)); -#7749 = VECTOR('',#7750,1.); -#7750 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#7751 = PCURVE('',#946,#7752); -#7752 = DEFINITIONAL_REPRESENTATION('',(#7753),#7756); -#7753 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7754,#7755),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7754 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7755 = CARTESIAN_POINT('',(0.E+000,1.)); -#7756 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7757 = PCURVE('',#876,#7758); -#7758 = DEFINITIONAL_REPRESENTATION('',(#7759),#7762); -#7759 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7760,#7761),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7760 = CARTESIAN_POINT('',(1.,0.E+000)); -#7761 = CARTESIAN_POINT('',(1.,1.)); -#7762 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7763 = ORIENTED_EDGE('',*,*,#7764,.T.); -#7764 = EDGE_CURVE('',#7744,#7673,#7765,.T.); -#7765 = SURFACE_CURVE('',#7766,(#7778,#7785),.PCURVE_S1.); -#7766 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7767,#7768,#7769,#7770,#7771, - #7772,#7773,#7774,#7775,#7776,#7777),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.144088321347,0.282399129672,0.414872702475, - 0.544283974604,0.666959324827,0.782935532939,0.893535797687,1.), - .UNSPECIFIED.); -#7767 = CARTESIAN_POINT('',(0.158173598591,0.206543478843,0.302)); -#7768 = CARTESIAN_POINT('',(0.158129792988,0.203883132932,0.302)); -#7769 = CARTESIAN_POINT('',(0.158043938255,0.198669113066,0.302)); -#7770 = CARTESIAN_POINT('',(0.15720775192,0.191045820859,0.302)); -#7771 = CARTESIAN_POINT('',(0.155818746293,0.183782650757,0.302)); -#7772 = CARTESIAN_POINT('',(0.153886857386,0.176944626223,0.302)); -#7773 = CARTESIAN_POINT('',(0.151461620133,0.170581289722,0.302)); -#7774 = CARTESIAN_POINT('',(0.148396002302,0.164897214888,0.302)); -#7775 = CARTESIAN_POINT('',(0.144884664636,0.159815365255,0.302)); -#7776 = CARTESIAN_POINT('',(0.142029818795,0.156993380654,0.302)); -#7777 = CARTESIAN_POINT('',(0.140629594754,0.155609274155,0.302)); -#7778 = PCURVE('',#946,#7779); -#7779 = DEFINITIONAL_REPRESENTATION('',(#7780),#7784); -#7780 = LINE('',#7781,#7782); -#7781 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7782 = VECTOR('',#7783,1.); -#7783 = DIRECTION('',(1.,0.E+000)); -#7784 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7785 = PCURVE('',#7541,#7786); -#7786 = DEFINITIONAL_REPRESENTATION('',(#7787),#7799); -#7787 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7788,#7789,#7790,#7791,#7792, - #7793,#7794,#7795,#7796,#7797,#7798),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.144088321347,0.282399129672,0.414872702475, - 0.544283974604,0.666959324827,0.782935532939,0.893535797687,1.), - .UNSPECIFIED.); -#7788 = CARTESIAN_POINT('',(-0.166802018435,6.992162268128E-002)); -#7789 = CARTESIAN_POINT('',(-0.164141672524,6.987781707789E-002)); -#7790 = CARTESIAN_POINT('',(-0.158927652658,6.979196234549E-002)); -#7791 = CARTESIAN_POINT('',(-0.15130436045,6.895577601022E-002)); -#7792 = CARTESIAN_POINT('',(-0.144041190348,6.75667703832E-002)); -#7793 = CARTESIAN_POINT('',(-0.137203165814,6.563488147653E-002)); -#7794 = CARTESIAN_POINT('',(-0.130839829314,6.320964422362E-002)); -#7795 = CARTESIAN_POINT('',(-0.125155754479,6.014402639215E-002)); -#7796 = CARTESIAN_POINT('',(-0.120073904846,5.663268872641E-002)); -#7797 = CARTESIAN_POINT('',(-0.117251920245,5.377784288513E-002)); -#7798 = CARTESIAN_POINT('',(-0.115867813746,5.237761884415E-002)); -#7799 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7800 = ORIENTED_EDGE('',*,*,#7672,.T.); -#7801 = ADVANCED_FACE('',(#7802),#876,.T.); -#7802 = FACE_BOUND('',#7803,.T.); -#7803 = EDGE_LOOP('',(#7804,#7805,#7826,#7871)); -#7804 = ORIENTED_EDGE('',*,*,#836,.F.); -#7805 = ORIENTED_EDGE('',*,*,#7806,.F.); -#7806 = EDGE_CURVE('',#7807,#743,#7809,.T.); -#7807 = VERTEX_POINT('',#7808); -#7808 = CARTESIAN_POINT('',(0.119226939046,0.27183186849,0.302)); -#7809 = SURFACE_CURVE('',#7810,(#7814,#7820),.PCURVE_S1.); -#7810 = LINE('',#7811,#7812); -#7811 = CARTESIAN_POINT('',(0.119226939046,0.27183186849,0.302)); -#7812 = VECTOR('',#7813,1.); -#7813 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#7814 = PCURVE('',#876,#7815); -#7815 = DEFINITIONAL_REPRESENTATION('',(#7816),#7819); -#7816 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7817,#7818),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7817 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7818 = CARTESIAN_POINT('',(0.E+000,1.)); -#7819 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7820 = PCURVE('',#790,#7821); -#7821 = DEFINITIONAL_REPRESENTATION('',(#7822),#7825); -#7822 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7823,#7824),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7823 = CARTESIAN_POINT('',(1.,0.E+000)); -#7824 = CARTESIAN_POINT('',(1.,1.)); -#7825 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7826 = ORIENTED_EDGE('',*,*,#7827,.T.); -#7827 = EDGE_CURVE('',#7807,#7744,#7828,.T.); -#7828 = SURFACE_CURVE('',#7829,(#7845,#7852),.PCURVE_S1.); -#7829 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7830,#7831,#7832,#7833,#7834, - #7835,#7836,#7837,#7838,#7839,#7840,#7841,#7842,#7843,#7844), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 6.387538380381E-002,0.12861994085,0.196003510006,0.268720312566, - 0.345997735741,0.427237937522,0.51355471408,0.606225684137, - 0.702279552613,0.799517688897,0.898802923895,1.),.UNSPECIFIED.); -#7830 = CARTESIAN_POINT('',(0.119226939046,0.27183186849,0.302)); -#7831 = CARTESIAN_POINT('',(0.121005319564,0.27171735703,0.302)); -#7832 = CARTESIAN_POINT('',(0.124586279606,0.271486775915,0.302)); -#7833 = CARTESIAN_POINT('',(0.129821310946,0.269761218325,0.302)); -#7834 = CARTESIAN_POINT('',(0.134777221861,0.266893256078,0.302)); -#7835 = CARTESIAN_POINT('',(0.13943575464,0.263000821987,0.302)); -#7836 = CARTESIAN_POINT('',(0.14375146343,0.258205698873,0.302)); -#7837 = CARTESIAN_POINT('',(0.147571454268,0.25254422923,0.302)); -#7838 = CARTESIAN_POINT('',(0.150819844871,0.246054036992,0.302)); -#7839 = CARTESIAN_POINT('',(0.153394946348,0.238840613046,0.302)); -#7840 = CARTESIAN_POINT('',(0.15558652488,0.231185982165,0.302)); -#7841 = CARTESIAN_POINT('',(0.157028092774,0.223168697578,0.302)); -#7842 = CARTESIAN_POINT('',(0.158005058872,0.214936606152,0.302)); -#7843 = CARTESIAN_POINT('',(0.158117062654,0.209358917945,0.302)); -#7844 = CARTESIAN_POINT('',(0.158173598591,0.206543478843,0.302)); -#7845 = PCURVE('',#876,#7846); -#7846 = DEFINITIONAL_REPRESENTATION('',(#7847),#7851); -#7847 = LINE('',#7848,#7849); -#7848 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7849 = VECTOR('',#7850,1.); -#7850 = DIRECTION('',(1.,0.E+000)); -#7851 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7852 = PCURVE('',#7541,#7853); -#7853 = DEFINITIONAL_REPRESENTATION('',(#7854),#7870); -#7854 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7855,#7856,#7857,#7858,#7859, - #7860,#7861,#7862,#7863,#7864,#7865,#7866,#7867,#7868,#7869), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 6.387538380381E-002,0.12861994085,0.196003510006,0.268720312566, - 0.345997735741,0.427237937522,0.51355471408,0.606225684137, - 0.702279552613,0.799517688897,0.898802923895,1.),.UNSPECIFIED.); -#7855 = CARTESIAN_POINT('',(-0.232090408081,3.097496313669E-002)); -#7856 = CARTESIAN_POINT('',(-0.231975896621,3.27533436546E-002)); -#7857 = CARTESIAN_POINT('',(-0.231745315506,3.633430369588E-002)); -#7858 = CARTESIAN_POINT('',(-0.230019757916,4.156933503623E-002)); -#7859 = CARTESIAN_POINT('',(-0.227151795669,4.65252459515E-002)); -#7860 = CARTESIAN_POINT('',(-0.223259361578,5.118377873004E-002)); -#7861 = CARTESIAN_POINT('',(-0.218464238464,5.549948752056E-002)); -#7862 = CARTESIAN_POINT('',(-0.212802768821,5.931947835793E-002)); -#7863 = CARTESIAN_POINT('',(-0.206312576584,6.256786896106E-002)); -#7864 = CARTESIAN_POINT('',(-0.199099152637,6.514297043789E-002)); -#7865 = CARTESIAN_POINT('',(-0.191444521757,6.733454897016E-002)); -#7866 = CARTESIAN_POINT('',(-0.183427237169,6.877611686448E-002)); -#7867 = CARTESIAN_POINT('',(-0.175195145743,6.975308296246E-002)); -#7868 = CARTESIAN_POINT('',(-0.169617457537,6.986508674454E-002)); -#7869 = CARTESIAN_POINT('',(-0.166802018435,6.992162268128E-002)); -#7870 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7871 = ORIENTED_EDGE('',*,*,#7743,.T.); -#7872 = ADVANCED_FACE('',(#7873),#790,.T.); -#7873 = FACE_BOUND('',#7874,.T.); -#7874 = EDGE_LOOP('',(#7875,#7876,#7898,#7951)); -#7875 = ORIENTED_EDGE('',*,*,#742,.F.); -#7876 = ORIENTED_EDGE('',*,*,#7877,.F.); -#7877 = EDGE_CURVE('',#7878,#715,#7880,.T.); -#7878 = VERTEX_POINT('',#7879); -#7879 = CARTESIAN_POINT('',(7.914840828659E-002,0.205977543236,0.302)); -#7880 = SURFACE_CURVE('',#7881,(#7885,#7891),.PCURVE_S1.); -#7881 = LINE('',#7882,#7883); -#7882 = CARTESIAN_POINT('',(7.914840828659E-002,0.205977543236,0.302)); -#7883 = VECTOR('',#7884,1.); -#7884 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#7885 = PCURVE('',#790,#7886); -#7886 = DEFINITIONAL_REPRESENTATION('',(#7887),#7890); -#7887 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7888,#7889),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7888 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7889 = CARTESIAN_POINT('',(0.E+000,1.)); -#7890 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7891 = PCURVE('',#730,#7892); -#7892 = DEFINITIONAL_REPRESENTATION('',(#7893),#7897); -#7893 = LINE('',#7894,#7895); -#7894 = CARTESIAN_POINT('',(-1.678962447617E-002,7.311298816786E-019)); -#7895 = VECTOR('',#7896,1.); -#7896 = DIRECTION('',(0.E+000,-1.)); -#7897 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7898 = ORIENTED_EDGE('',*,*,#7899,.T.); -#7899 = EDGE_CURVE('',#7878,#7807,#7900,.T.); -#7900 = SURFACE_CURVE('',#7901,(#7921,#7928),.PCURVE_S1.); -#7901 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7902,#7903,#7904,#7905,#7906, - #7907,#7908,#7909,#7910,#7911,#7912,#7913,#7914,#7915,#7916,#7917, - #7918,#7919,#7920),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,9.122476984126E-002,0.177913863773,0.259697360619, - 0.336778990913,0.409803700408,0.478608773912,0.54408804914, - 0.605766121966,0.664020565669,0.71835496815,0.768590650062, - 0.816722075277,0.863055298693,0.908208072643,0.95397126985,1.), - .UNSPECIFIED.); -#7902 = CARTESIAN_POINT('',(7.914840828659E-002,0.205977543236,0.302)); -#7903 = CARTESIAN_POINT('',(7.942263179121E-002,0.208517790933,0.302)); -#7904 = CARTESIAN_POINT('',(7.995744446684E-002,0.213471985759,0.302)); -#7905 = CARTESIAN_POINT('',(8.102656814399E-002,0.220668344575,0.302)); -#7906 = CARTESIAN_POINT('',(8.234956651353E-002,0.227420410235,0.302)); -#7907 = CARTESIAN_POINT('',(8.396370016147E-002,0.233713279684,0.302)); -#7908 = CARTESIAN_POINT('',(8.573135924342E-002,0.23958709514,0.302)); -#7909 = CARTESIAN_POINT('',(8.779849653291E-002,0.245017929677,0.302)); -#7910 = CARTESIAN_POINT('',(9.010282777064E-002,0.250004184549,0.302)); -#7911 = CARTESIAN_POINT('',(9.26259501583E-002,0.254546928892,0.302)); -#7912 = CARTESIAN_POINT('',(9.531783995478E-002,0.258628423011,0.302)); -#7913 = CARTESIAN_POINT('',(9.826109596403E-002,0.262121960092,0.302)); -#7914 = CARTESIAN_POINT('',(0.101319031097,0.265125765411,0.302)); -#7915 = CARTESIAN_POINT('',(0.104580653649,0.26754877688,0.302)); -#7916 = CARTESIAN_POINT('',(0.107988298022,0.269495502836,0.302)); -#7917 = CARTESIAN_POINT('',(0.111604056843,0.270834943159,0.302)); -#7918 = CARTESIAN_POINT('',(0.11536176041,0.271697887748,0.302)); -#7919 = CARTESIAN_POINT('',(0.117936063878,0.271787122197,0.302)); -#7920 = CARTESIAN_POINT('',(0.119226939046,0.27183186849,0.302)); -#7921 = PCURVE('',#790,#7922); -#7922 = DEFINITIONAL_REPRESENTATION('',(#7923),#7927); -#7923 = LINE('',#7924,#7925); -#7924 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7925 = VECTOR('',#7926,1.); -#7926 = DIRECTION('',(1.,0.E+000)); -#7927 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7928 = PCURVE('',#7541,#7929); -#7929 = DEFINITIONAL_REPRESENTATION('',(#7930),#7950); -#7930 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7931,#7932,#7933,#7934,#7935, - #7936,#7937,#7938,#7939,#7940,#7941,#7942,#7943,#7944,#7945,#7946, - #7947,#7948,#7949),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,9.122476984126E-002,0.177913863773,0.259697360619, - 0.336778990913,0.409803700408,0.478608773912,0.54408804914, - 0.605766121966,0.664020565669,0.71835496815,0.768590650062, - 0.816722075277,0.863055298693,0.908208072643,0.95397126985,1.), - .UNSPECIFIED.); -#7931 = CARTESIAN_POINT('',(-0.166236082827,-9.103567623207E-003)); -#7932 = CARTESIAN_POINT('',(-0.168776330524,-8.829344118593E-003)); -#7933 = CARTESIAN_POINT('',(-0.17373052535,-8.294531442956E-003)); -#7934 = CARTESIAN_POINT('',(-0.180926884166,-7.22540776581E-003)); -#7935 = CARTESIAN_POINT('',(-0.187678949826,-5.902409396274E-003)); -#7936 = CARTESIAN_POINT('',(-0.193971819276,-4.288275748329E-003)); -#7937 = CARTESIAN_POINT('',(-0.199845634731,-2.520616666379E-003)); -#7938 = CARTESIAN_POINT('',(-0.205276469268,-4.534793768921E-004)); -#7939 = CARTESIAN_POINT('',(-0.21026272414,1.85085186084E-003)); -#7940 = CARTESIAN_POINT('',(-0.214805468483,4.3739742485E-003)); -#7941 = CARTESIAN_POINT('',(-0.218886962602,7.065864044983E-003)); -#7942 = CARTESIAN_POINT('',(-0.222380499683,1.000912005423E-002)); -#7943 = CARTESIAN_POINT('',(-0.225384305003,1.306705518726E-002)); -#7944 = CARTESIAN_POINT('',(-0.227807316472,1.632867773947E-002)); -#7945 = CARTESIAN_POINT('',(-0.229754042428,1.973632211171E-002)); -#7946 = CARTESIAN_POINT('',(-0.23109348275,2.335208093355E-002)); -#7947 = CARTESIAN_POINT('',(-0.231956427339,2.710978450068E-002)); -#7948 = CARTESIAN_POINT('',(-0.232045661789,2.968408796866E-002)); -#7949 = CARTESIAN_POINT('',(-0.232090408081,3.097496313669E-002)); -#7950 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7951 = ORIENTED_EDGE('',*,*,#7806,.T.); -#7952 = ADVANCED_FACE('',(#7953),#730,.T.); -#7953 = FACE_BOUND('',#7954,.T.); -#7954 = EDGE_LOOP('',(#7955,#7956,#7978,#7999)); -#7955 = ORIENTED_EDGE('',*,*,#714,.F.); -#7956 = ORIENTED_EDGE('',*,*,#7957,.F.); -#7957 = EDGE_CURVE('',#7958,#653,#7960,.T.); -#7958 = VERTEX_POINT('',#7959); -#7959 = CARTESIAN_POINT('',(9.561198960003E-002,0.202684826973,0.302)); -#7960 = SURFACE_CURVE('',#7961,(#7965,#7972),.PCURVE_S1.); -#7961 = LINE('',#7962,#7963); -#7962 = CARTESIAN_POINT('',(9.561198960003E-002,0.202684826973,0.302)); -#7963 = VECTOR('',#7964,1.); -#7964 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#7965 = PCURVE('',#730,#7966); -#7966 = DEFINITIONAL_REPRESENTATION('',(#7967),#7971); -#7967 = LINE('',#7968,#7969); -#7968 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7969 = VECTOR('',#7970,1.); -#7970 = DIRECTION('',(0.E+000,-1.)); -#7971 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7972 = PCURVE('',#684,#7973); -#7973 = DEFINITIONAL_REPRESENTATION('',(#7974),#7977); -#7974 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7975,#7976),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#7975 = CARTESIAN_POINT('',(1.,0.E+000)); -#7976 = CARTESIAN_POINT('',(1.,1.)); -#7977 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7978 = ORIENTED_EDGE('',*,*,#7979,.T.); -#7979 = EDGE_CURVE('',#7958,#7878,#7980,.T.); -#7980 = SURFACE_CURVE('',#7981,(#7985,#7992),.PCURVE_S1.); -#7981 = LINE('',#7982,#7983); -#7982 = CARTESIAN_POINT('',(9.561198960003E-002,0.202684826973,0.302)); -#7983 = VECTOR('',#7984,1.); -#7984 = DIRECTION('',(-0.980580675691,0.196116135138, - -4.354652974618E-017)); -#7985 = PCURVE('',#730,#7986); -#7986 = DEFINITIONAL_REPRESENTATION('',(#7987),#7991); -#7987 = LINE('',#7988,#7989); -#7988 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#7989 = VECTOR('',#7990,1.); -#7990 = DIRECTION('',(-1.,0.E+000)); -#7991 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7992 = PCURVE('',#7541,#7993); -#7993 = DEFINITIONAL_REPRESENTATION('',(#7994),#7998); -#7994 = LINE('',#7995,#7996); -#7995 = CARTESIAN_POINT('',(-0.162943366564,7.360013690228E-003)); -#7996 = VECTOR('',#7997,1.); -#7997 = DIRECTION('',(-0.196116135138,-0.980580675691)); -#7998 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#7999 = ORIENTED_EDGE('',*,*,#7877,.T.); -#8000 = ADVANCED_FACE('',(#8001),#684,.T.); -#8001 = FACE_BOUND('',#8002,.T.); -#8002 = EDGE_LOOP('',(#8003,#8004,#8025,#8062)); -#8003 = ORIENTED_EDGE('',*,*,#652,.F.); -#8004 = ORIENTED_EDGE('',*,*,#8005,.F.); -#8005 = EDGE_CURVE('',#8006,#591,#8008,.T.); -#8006 = VERTEX_POINT('',#8007); -#8007 = CARTESIAN_POINT('',(0.119792874654,0.242197422125,0.302)); -#8008 = SURFACE_CURVE('',#8009,(#8013,#8019),.PCURVE_S1.); -#8009 = LINE('',#8010,#8011); -#8010 = CARTESIAN_POINT('',(0.119792874654,0.242197422125,0.302)); -#8011 = VECTOR('',#8012,1.); -#8012 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#8013 = PCURVE('',#684,#8014); -#8014 = DEFINITIONAL_REPRESENTATION('',(#8015),#8018); -#8015 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8016,#8017),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#8016 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#8017 = CARTESIAN_POINT('',(0.E+000,1.)); -#8018 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8019 = PCURVE('',#622,#8020); -#8020 = DEFINITIONAL_REPRESENTATION('',(#8021),#8024); -#8021 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8022,#8023),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#8022 = CARTESIAN_POINT('',(1.,0.E+000)); -#8023 = CARTESIAN_POINT('',(1.,1.)); -#8024 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8025 = ORIENTED_EDGE('',*,*,#8026,.T.); -#8026 = EDGE_CURVE('',#8006,#7958,#8027,.T.); -#8027 = SURFACE_CURVE('',#8028,(#8040,#8047),.PCURVE_S1.); -#8028 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8029,#8030,#8031,#8032,#8033, - #8034,#8035,#8036,#8037,#8038,#8039),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,9.126362437977E-002,0.18227228237,0.27908730912, - 0.387648952183,0.511279668023,0.653335087164,0.815589860134,1.), - .UNSPECIFIED.); -#8029 = CARTESIAN_POINT('',(0.119792874654,0.242197422125,0.302)); -#8030 = CARTESIAN_POINT('',(0.118246919394,0.242081541327,0.302)); -#8031 = CARTESIAN_POINT('',(0.115159327863,0.24185010347,0.302)); -#8032 = CARTESIAN_POINT('',(0.110791673482,0.239848280411,0.302)); -#8033 = CARTESIAN_POINT('',(0.10691015091,0.236633271892,0.302)); -#8034 = CARTESIAN_POINT('',(0.103495010222,0.232201282863,0.302)); -#8035 = CARTESIAN_POINT('',(0.100649165418,0.226533137035,0.302)); -#8036 = CARTESIAN_POINT('',(9.830207110176E-002,0.21968451525,0.302)); -#8037 = CARTESIAN_POINT('',(9.659229936985E-002,0.211596472273,0.302)); -#8038 = CARTESIAN_POINT('',(9.595239169733E-002,0.205779300622,0.302)); -#8039 = CARTESIAN_POINT('',(9.561198960003E-002,0.202684826973,0.302)); -#8040 = PCURVE('',#684,#8041); -#8041 = DEFINITIONAL_REPRESENTATION('',(#8042),#8046); -#8042 = LINE('',#8043,#8044); -#8043 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#8044 = VECTOR('',#8045,1.); -#8045 = DIRECTION('',(1.,0.E+000)); -#8046 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8047 = PCURVE('',#7541,#8048); -#8048 = DEFINITIONAL_REPRESENTATION('',(#8049),#8061); -#8049 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8050,#8051,#8052,#8053,#8054, - #8055,#8056,#8057,#8058,#8059,#8060),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,9.126362437977E-002,0.18227228237,0.27908730912, - 0.387648952183,0.511279668023,0.653335087164,0.815589860134,1.), - .UNSPECIFIED.); -#8050 = CARTESIAN_POINT('',(-0.202455961717,3.154089874434E-002)); -#8051 = CARTESIAN_POINT('',(-0.202340080918,2.999494348397E-002)); -#8052 = CARTESIAN_POINT('',(-0.202108643061,2.690735195271E-002)); -#8053 = CARTESIAN_POINT('',(-0.200106820003,2.253969757188E-002)); -#8054 = CARTESIAN_POINT('',(-0.196891811483,1.865817499995E-002)); -#8055 = CARTESIAN_POINT('',(-0.192459822454,1.52430343118E-002)); -#8056 = CARTESIAN_POINT('',(-0.186791676626,1.239718950824E-002)); -#8057 = CARTESIAN_POINT('',(-0.179943054842,1.005009519196E-002)); -#8058 = CARTESIAN_POINT('',(-0.171855011864,8.340323460047E-003)); -#8059 = CARTESIAN_POINT('',(-0.166037840213,7.70041578753E-003)); -#8060 = CARTESIAN_POINT('',(-0.162943366564,7.360013690228E-003)); -#8061 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8062 = ORIENTED_EDGE('',*,*,#7957,.T.); -#8063 = ADVANCED_FACE('',(#8064),#622,.T.); -#8064 = FACE_BOUND('',#8065,.T.); -#8065 = EDGE_LOOP('',(#8066,#8067,#8088,#8125)); -#8066 = ORIENTED_EDGE('',*,*,#590,.F.); -#8067 = ORIENTED_EDGE('',*,*,#8068,.F.); -#8068 = EDGE_CURVE('',#8069,#513,#8071,.T.); -#8069 = VERTEX_POINT('',#8070); -#8070 = CARTESIAN_POINT('',(0.141710017278,0.20546305632,0.302)); -#8071 = SURFACE_CURVE('',#8072,(#8076,#8082),.PCURVE_S1.); -#8072 = LINE('',#8073,#8074); -#8073 = CARTESIAN_POINT('',(0.141710017278,0.20546305632,0.302)); -#8074 = VECTOR('',#8075,1.); -#8075 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#8076 = PCURVE('',#622,#8077); -#8077 = DEFINITIONAL_REPRESENTATION('',(#8078),#8081); -#8078 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8079,#8080),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#8079 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#8080 = CARTESIAN_POINT('',(0.E+000,1.)); -#8081 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8082 = PCURVE('',#552,#8083); -#8083 = DEFINITIONAL_REPRESENTATION('',(#8084),#8087); -#8084 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8085,#8086),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#8085 = CARTESIAN_POINT('',(1.,0.E+000)); -#8086 = CARTESIAN_POINT('',(1.,1.)); -#8087 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8088 = ORIENTED_EDGE('',*,*,#8089,.T.); -#8089 = EDGE_CURVE('',#8069,#8006,#8090,.T.); -#8090 = SURFACE_CURVE('',#8091,(#8103,#8110),.PCURVE_S1.); -#8091 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8092,#8093,#8094,#8095,#8096, - #8097,#8098,#8099,#8100,#8101,#8102),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.161713776497,0.310105544098,0.44820620169, - 0.579033460028,0.698679440002,0.803098988682,0.900750900152,1.), - .UNSPECIFIED.); -#8092 = CARTESIAN_POINT('',(0.141710017278,0.20546305632,0.302)); -#8093 = CARTESIAN_POINT('',(0.141658192574,0.208006973802,0.302)); -#8094 = CARTESIAN_POINT('',(0.141558812494,0.212885240404,0.302)); -#8095 = CARTESIAN_POINT('',(0.140327396217,0.219843774437,0.302)); -#8096 = CARTESIAN_POINT('',(0.138461069628,0.22614926037,0.302)); -#8097 = CARTESIAN_POINT('',(0.135816014373,0.231679174327,0.302)); -#8098 = CARTESIAN_POINT('',(0.132609362285,0.236288516346,0.302)); -#8099 = CARTESIAN_POINT('',(0.128811784606,0.239691462348,0.302)); -#8100 = CARTESIAN_POINT('',(0.124465920513,0.241820390132,0.302)); -#8101 = CARTESIAN_POINT('',(0.121358957453,0.242071066995,0.302)); -#8102 = CARTESIAN_POINT('',(0.119792874654,0.242197422125,0.302)); -#8103 = PCURVE('',#622,#8104); -#8104 = DEFINITIONAL_REPRESENTATION('',(#8105),#8109); -#8105 = LINE('',#8106,#8107); -#8106 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#8107 = VECTOR('',#8108,1.); -#8108 = DIRECTION('',(1.,0.E+000)); -#8109 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8110 = PCURVE('',#7541,#8111); -#8111 = DEFINITIONAL_REPRESENTATION('',(#8112),#8124); -#8112 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8113,#8114,#8115,#8116,#8117, - #8118,#8119,#8120,#8121,#8122,#8123),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, - 1,1,1,1,4),(0.E+000,0.161713776497,0.310105544098,0.44820620169, - 0.579033460028,0.698679440002,0.803098988682,0.900750900152,1.), - .UNSPECIFIED.); -#8113 = CARTESIAN_POINT('',(-0.165721595911,5.345804136785E-002)); -#8114 = CARTESIAN_POINT('',(-0.168265513393,5.340621666396E-002)); -#8115 = CARTESIAN_POINT('',(-0.173143779995,5.330683658426E-002)); -#8116 = CARTESIAN_POINT('',(-0.180102314029,5.207542030685E-002)); -#8117 = CARTESIAN_POINT('',(-0.186407799961,5.02090937177E-002)); -#8118 = CARTESIAN_POINT('',(-0.191937713918,4.756403846346E-002)); -#8119 = CARTESIAN_POINT('',(-0.196547055937,4.435738637562E-002)); -#8120 = CARTESIAN_POINT('',(-0.199950001939,4.055980869658E-002)); -#8121 = CARTESIAN_POINT('',(-0.202078929723,3.621394460316E-002)); -#8122 = CARTESIAN_POINT('',(-0.202329606586,3.310698154339E-002)); -#8123 = CARTESIAN_POINT('',(-0.202455961717,3.154089874434E-002)); -#8124 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8125 = ORIENTED_EDGE('',*,*,#8005,.T.); -#8126 = ADVANCED_FACE('',(#8127),#552,.T.); -#8127 = FACE_BOUND('',#8128,.T.); -#8128 = EDGE_LOOP('',(#8129,#8130,#8151,#8196)); -#8129 = ORIENTED_EDGE('',*,*,#512,.F.); -#8130 = ORIENTED_EDGE('',*,*,#8131,.F.); -#8131 = EDGE_CURVE('',#8132,#475,#8134,.T.); -#8132 = VERTEX_POINT('',#8133); -#8133 = CARTESIAN_POINT('',(0.115625530634,0.166104807242,0.302)); -#8134 = SURFACE_CURVE('',#8135,(#8139,#8145),.PCURVE_S1.); -#8135 = LINE('',#8136,#8137); -#8136 = CARTESIAN_POINT('',(0.115625530634,0.166104807242,0.302)); -#8137 = VECTOR('',#8138,1.); -#8138 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#8139 = PCURVE('',#552,#8140); -#8140 = DEFINITIONAL_REPRESENTATION('',(#8141),#8144); -#8141 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8142,#8143),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#8142 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#8143 = CARTESIAN_POINT('',(0.E+000,1.)); -#8144 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8145 = PCURVE('',#494,#8146); -#8146 = DEFINITIONAL_REPRESENTATION('',(#8147),#8150); -#8147 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8148,#8149),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#8148 = CARTESIAN_POINT('',(1.,0.E+000)); -#8149 = CARTESIAN_POINT('',(1.,1.)); -#8150 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8151 = ORIENTED_EDGE('',*,*,#8152,.T.); -#8152 = EDGE_CURVE('',#8132,#8069,#8153,.T.); -#8153 = SURFACE_CURVE('',#8154,(#8170,#8177),.PCURVE_S1.); -#8154 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8155,#8156,#8157,#8158,#8159, - #8160,#8161,#8162,#8163,#8164,#8165,#8166,#8167,#8168,#8169), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 9.379854088557E-002,0.188391653544,0.290002772036,0.402222240451, - 0.463152701044,0.526711567649,0.592953912456,0.664830528427, - 0.740161879456,0.821342102366,0.907899660995,1.),.UNSPECIFIED.); -#8155 = CARTESIAN_POINT('',(0.115625530634,0.166104807242,0.302)); -#8156 = CARTESIAN_POINT('',(0.117272471936,0.166225253916,0.302)); -#8157 = CARTESIAN_POINT('',(0.120580305855,0.166467167572,0.302)); -#8158 = CARTESIAN_POINT('',(0.125341910865,0.168429521933,0.302)); -#8159 = CARTESIAN_POINT('',(0.129843682841,0.171469171897,0.302)); -#8160 = CARTESIAN_POINT('',(0.133167187112,0.174986793086,0.302)); -#8161 = CARTESIAN_POINT('',(0.135693374817,0.178285084711,0.302)); -#8162 = CARTESIAN_POINT('',(0.137231937725,0.18126051157,0.302)); -#8163 = CARTESIAN_POINT('',(0.138678919135,0.184484936833,0.302)); -#8164 = CARTESIAN_POINT('',(0.13976124164,0.188070150162,0.302)); -#8165 = CARTESIAN_POINT('',(0.140657660072,0.191970219252,0.302)); -#8166 = CARTESIAN_POINT('',(0.141232548661,0.196189773595,0.302)); -#8167 = CARTESIAN_POINT('',(0.141686387668,0.200720061932,0.302)); -#8168 = CARTESIAN_POINT('',(0.141701979498,0.203849693061,0.302)); -#8169 = CARTESIAN_POINT('',(0.141710017278,0.20546305632,0.302)); -#8170 = PCURVE('',#552,#8171); -#8171 = DEFINITIONAL_REPRESENTATION('',(#8172),#8176); -#8172 = LINE('',#8173,#8174); -#8173 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#8174 = VECTOR('',#8175,1.); -#8175 = DIRECTION('',(1.,0.E+000)); -#8176 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8177 = PCURVE('',#7541,#8178); -#8178 = DEFINITIONAL_REPRESENTATION('',(#8179),#8195); -#8179 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8180,#8181,#8182,#8183,#8184, - #8185,#8186,#8187,#8188,#8189,#8190,#8191,#8192,#8193,#8194), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 9.379854088557E-002,0.188391653544,0.290002772036,0.402222240451, - 0.463152701044,0.526711567649,0.592953912456,0.664830528427, - 0.740161879456,0.821342102366,0.907899660995,1.),.UNSPECIFIED.); -#8180 = CARTESIAN_POINT('',(-0.126363346834,2.737355472437E-002)); -#8181 = CARTESIAN_POINT('',(-0.126483793507,2.902049602616E-002)); -#8182 = CARTESIAN_POINT('',(-0.126725707163,3.232832994558E-002)); -#8183 = CARTESIAN_POINT('',(-0.128688061524,3.708993495472E-002)); -#8184 = CARTESIAN_POINT('',(-0.131727711488,4.159170693134E-002)); -#8185 = CARTESIAN_POINT('',(-0.135245332677,4.491521120254E-002)); -#8186 = CARTESIAN_POINT('',(-0.138543624302,4.744139890743E-002)); -#8187 = CARTESIAN_POINT('',(-0.141519051161,4.897996181538E-002)); -#8188 = CARTESIAN_POINT('',(-0.144743476424,5.042694322514E-002)); -#8189 = CARTESIAN_POINT('',(-0.148328689754,5.150926573056E-002)); -#8190 = CARTESIAN_POINT('',(-0.152228758843,5.240568416252E-002)); -#8191 = CARTESIAN_POINT('',(-0.156448313186,5.298057275105E-002)); -#8192 = CARTESIAN_POINT('',(-0.160978601523,5.34344117584E-002)); -#8193 = CARTESIAN_POINT('',(-0.164108232652,5.345000358821E-002)); -#8194 = CARTESIAN_POINT('',(-0.165721595911,5.345804136785E-002)); -#8195 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8196 = ORIENTED_EDGE('',*,*,#8068,.T.); -#8197 = ADVANCED_FACE('',(#8198),#494,.T.); -#8198 = FACE_BOUND('',#8199,.T.); -#8199 = EDGE_LOOP('',(#8200,#8201,#8223,#8248)); -#8200 = ORIENTED_EDGE('',*,*,#474,.F.); -#8201 = ORIENTED_EDGE('',*,*,#8202,.F.); -#8202 = EDGE_CURVE('',#8203,#447,#8205,.T.); -#8203 = VERTEX_POINT('',#8204); -#8204 = CARTESIAN_POINT('',(0.113053096054,0.166464948084,0.302)); -#8205 = SURFACE_CURVE('',#8206,(#8210,#8216),.PCURVE_S1.); -#8206 = LINE('',#8207,#8208); -#8207 = CARTESIAN_POINT('',(0.113053096054,0.166464948084,0.302)); -#8208 = VECTOR('',#8209,1.); -#8209 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#8210 = PCURVE('',#494,#8211); -#8211 = DEFINITIONAL_REPRESENTATION('',(#8212),#8215); -#8212 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8213,#8214),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#8213 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#8214 = CARTESIAN_POINT('',(0.E+000,1.)); -#8215 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8216 = PCURVE('',#462,#8217); -#8217 = DEFINITIONAL_REPRESENTATION('',(#8218),#8222); -#8218 = LINE('',#8219,#8220); -#8219 = CARTESIAN_POINT('',(-2.968910485262E-002,6.580168935107E-018)); -#8220 = VECTOR('',#8221,1.); -#8221 = DIRECTION('',(0.E+000,-1.)); -#8222 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8223 = ORIENTED_EDGE('',*,*,#8224,.T.); -#8224 = EDGE_CURVE('',#8203,#8132,#8225,.T.); -#8225 = SURFACE_CURVE('',#8226,(#8232,#8239),.PCURVE_S1.); -#8226 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8227,#8228,#8229,#8230,#8231), - .UNSPECIFIED.,.F.,.F.,(4,1,4),(0.E+000,0.562851224941,1.), - .UNSPECIFIED.); -#8227 = CARTESIAN_POINT('',(0.113053096054,0.166464948084,0.302)); -#8228 = CARTESIAN_POINT('',(0.1135317099,0.166367496912,0.302)); -#8229 = CARTESIAN_POINT('',(0.114382048007,0.166194358493,0.302)); -#8230 = CARTESIAN_POINT('',(0.115247290805,0.166132046746,0.302)); -#8231 = CARTESIAN_POINT('',(0.115625530634,0.166104807242,0.302)); -#8232 = PCURVE('',#494,#8233); -#8233 = DEFINITIONAL_REPRESENTATION('',(#8234),#8238); -#8234 = LINE('',#8235,#8236); -#8235 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#8236 = VECTOR('',#8237,1.); -#8237 = DIRECTION('',(1.,0.E+000)); -#8238 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8239 = PCURVE('',#7541,#8240); -#8240 = DEFINITIONAL_REPRESENTATION('',(#8241),#8247); -#8241 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8242,#8243,#8244,#8245,#8246), - .UNSPECIFIED.,.F.,.F.,(4,1,4),(0.E+000,0.562851224941,1.), - .UNSPECIFIED.); -#8242 = CARTESIAN_POINT('',(-0.126723487675,2.480112014415E-002)); -#8243 = CARTESIAN_POINT('',(-0.126626036503,2.527973398975E-002)); -#8244 = CARTESIAN_POINT('',(-0.126452898084,2.613007209757E-002)); -#8245 = CARTESIAN_POINT('',(-0.126390586337,2.699531489524E-002)); -#8246 = CARTESIAN_POINT('',(-0.126363346834,2.737355472437E-002)); -#8247 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8248 = ORIENTED_EDGE('',*,*,#8131,.T.); -#8249 = ADVANCED_FACE('',(#8250),#462,.T.); -#8250 = FACE_BOUND('',#8251,.T.); -#8251 = EDGE_LOOP('',(#8252,#8253,#8275,#8296)); -#8252 = ORIENTED_EDGE('',*,*,#446,.F.); -#8253 = ORIENTED_EDGE('',*,*,#8254,.F.); -#8254 = EDGE_CURVE('',#8255,#401,#8257,.T.); -#8255 = VERTEX_POINT('',#8256); -#8256 = CARTESIAN_POINT('',(0.111252391848,0.136830501719,0.302)); -#8257 = SURFACE_CURVE('',#8258,(#8262,#8269),.PCURVE_S1.); -#8258 = LINE('',#8259,#8260); -#8259 = CARTESIAN_POINT('',(0.111252391848,0.136830501719,0.302)); -#8260 = VECTOR('',#8261,1.); -#8261 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#8262 = PCURVE('',#462,#8263); -#8263 = DEFINITIONAL_REPRESENTATION('',(#8264),#8268); -#8264 = LINE('',#8265,#8266); -#8265 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#8266 = VECTOR('',#8267,1.); -#8267 = DIRECTION('',(0.E+000,-1.)); -#8268 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8269 = PCURVE('',#424,#8270); -#8270 = DEFINITIONAL_REPRESENTATION('',(#8271),#8274); -#8271 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8272,#8273),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#8272 = CARTESIAN_POINT('',(1.,0.E+000)); -#8273 = CARTESIAN_POINT('',(1.,1.)); -#8274 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8275 = ORIENTED_EDGE('',*,*,#8276,.T.); -#8276 = EDGE_CURVE('',#8255,#8203,#8277,.T.); -#8277 = SURFACE_CURVE('',#8278,(#8282,#8289),.PCURVE_S1.); -#8278 = LINE('',#8279,#8280); -#8279 = CARTESIAN_POINT('',(0.111252391848,0.136830501719,0.302)); -#8280 = VECTOR('',#8281,1.); -#8281 = DIRECTION('',(6.065202083714E-002,0.998158971491, - -2.216358144771E-016)); -#8282 = PCURVE('',#462,#8283); -#8283 = DEFINITIONAL_REPRESENTATION('',(#8284),#8288); -#8284 = LINE('',#8285,#8286); -#8285 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#8286 = VECTOR('',#8287,1.); -#8287 = DIRECTION('',(-1.,0.E+000)); -#8288 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8289 = PCURVE('',#7541,#8290); -#8290 = DEFINITIONAL_REPRESENTATION('',(#8291),#8295); -#8291 = LINE('',#8292,#8293); -#8292 = CARTESIAN_POINT('',(-9.708904131065E-002,2.300041593799E-002)); -#8293 = VECTOR('',#8294,1.); -#8294 = DIRECTION('',(-0.998158971491,6.065202083714E-002)); -#8295 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8296 = ORIENTED_EDGE('',*,*,#8202,.T.); -#8297 = ADVANCED_FACE('',(#8298),#424,.T.); -#8298 = FACE_BOUND('',#8299,.T.); -#8299 = EDGE_LOOP('',(#8300,#8301,#8322,#8351)); -#8300 = ORIENTED_EDGE('',*,*,#400,.F.); -#8301 = ORIENTED_EDGE('',*,*,#8302,.F.); -#8302 = EDGE_CURVE('',#8303,#323,#8305,.T.); -#8303 = VERTEX_POINT('',#8304); -#8304 = CARTESIAN_POINT('',(0.122622552692,0.140329012749,0.302)); -#8305 = SURFACE_CURVE('',#8306,(#8310,#8316),.PCURVE_S1.); -#8306 = LINE('',#8307,#8308); -#8307 = CARTESIAN_POINT('',(0.122622552692,0.140329012749,0.302)); -#8308 = VECTOR('',#8309,1.); -#8309 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#8310 = PCURVE('',#424,#8311); -#8311 = DEFINITIONAL_REPRESENTATION('',(#8312),#8315); -#8312 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8313,#8314),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#8313 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#8314 = CARTESIAN_POINT('',(0.E+000,1.)); -#8315 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8316 = PCURVE('',#362,#8317); -#8317 = DEFINITIONAL_REPRESENTATION('',(#8318),#8321); -#8318 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8319,#8320),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#8319 = CARTESIAN_POINT('',(1.,0.E+000)); -#8320 = CARTESIAN_POINT('',(1.,1.)); -#8321 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8322 = ORIENTED_EDGE('',*,*,#8323,.T.); -#8323 = EDGE_CURVE('',#8303,#8255,#8324,.T.); -#8324 = SURFACE_CURVE('',#8325,(#8333,#8340),.PCURVE_S1.); -#8325 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8326,#8327,#8328,#8329,#8330, - #8331,#8332),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.E+000, - 0.202268972619,0.436274764953,0.700784457956,1.),.UNSPECIFIED.); -#8326 = CARTESIAN_POINT('',(0.122622552692,0.140329012749,0.302)); -#8327 = CARTESIAN_POINT('',(0.121812575502,0.140287168412,0.302)); -#8328 = CARTESIAN_POINT('',(0.120065532424,0.140196914193,0.302)); -#8329 = CARTESIAN_POINT('',(0.11734777334,0.139452155879,0.302)); -#8330 = CARTESIAN_POINT('',(0.114338363161,0.138385122952,0.302)); -#8331 = CARTESIAN_POINT('',(0.112322419599,0.137369550107,0.302)); -#8332 = CARTESIAN_POINT('',(0.111252391848,0.136830501719,0.302)); -#8333 = PCURVE('',#424,#8334); -#8334 = DEFINITIONAL_REPRESENTATION('',(#8335),#8339); -#8335 = LINE('',#8336,#8337); -#8336 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#8337 = VECTOR('',#8338,1.); -#8338 = DIRECTION('',(1.,0.E+000)); -#8339 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8340 = PCURVE('',#7541,#8341); -#8341 = DEFINITIONAL_REPRESENTATION('',(#8342),#8350); -#8342 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8343,#8344,#8345,#8346,#8347, - #8348,#8349),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.E+000, - 0.202268972619,0.436274764953,0.700784457956,1.),.UNSPECIFIED.); -#8343 = CARTESIAN_POINT('',(-0.10058755234,3.437057678258E-002)); -#8344 = CARTESIAN_POINT('',(-0.100545708003,3.356059959206E-002)); -#8345 = CARTESIAN_POINT('',(-0.100455453785,3.181355651452E-002)); -#8346 = CARTESIAN_POINT('',(-9.971069547022E-002,2.909579743011E-002)); -#8347 = CARTESIAN_POINT('',(-9.864366254308E-002,2.608638725074E-002)); -#8348 = CARTESIAN_POINT('',(-9.762808969854E-002,2.407044368913E-002)); -#8349 = CARTESIAN_POINT('',(-9.708904131065E-002,2.300041593799E-002)); -#8350 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8351 = ORIENTED_EDGE('',*,*,#8254,.T.); -#8352 = ADVANCED_FACE('',(#8353),#362,.T.); -#8353 = FACE_BOUND('',#8354,.T.); -#8354 = EDGE_LOOP('',(#8355,#8356,#8377,#8422)); -#8355 = ORIENTED_EDGE('',*,*,#322,.F.); -#8356 = ORIENTED_EDGE('',*,*,#8357,.F.); -#8357 = EDGE_CURVE('',#8358,#245,#8360,.T.); -#8358 = VERTEX_POINT('',#8359); -#8359 = CARTESIAN_POINT('',(0.148295449803,9.253317824796E-002,0.302)); -#8360 = SURFACE_CURVE('',#8361,(#8365,#8371),.PCURVE_S1.); -#8361 = LINE('',#8362,#8363); -#8362 = CARTESIAN_POINT('',(0.148295449803,9.253317824796E-002,0.302)); -#8363 = VECTOR('',#8364,1.); -#8364 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#8365 = PCURVE('',#362,#8366); -#8366 = DEFINITIONAL_REPRESENTATION('',(#8367),#8370); -#8367 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8368,#8369),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#8368 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#8369 = CARTESIAN_POINT('',(0.E+000,1.)); -#8370 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8371 = PCURVE('',#284,#8372); -#8372 = DEFINITIONAL_REPRESENTATION('',(#8373),#8376); -#8373 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8374,#8375),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#8374 = CARTESIAN_POINT('',(1.,0.E+000)); -#8375 = CARTESIAN_POINT('',(1.,1.)); -#8376 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8377 = ORIENTED_EDGE('',*,*,#8378,.T.); -#8378 = EDGE_CURVE('',#8358,#8303,#8379,.T.); -#8379 = SURFACE_CURVE('',#8380,(#8396,#8403),.PCURVE_S1.); -#8380 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8381,#8382,#8383,#8384,#8385, - #8386,#8387,#8388,#8389,#8390,#8391,#8392,#8393,#8394,#8395), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 0.167218280874,0.320338966676,0.462287496645,0.594804197661, - 0.65685341656,0.713804069478,0.766491554291,0.81624698513, - 0.863310073343,0.908654710773,0.953999348203,1.),.UNSPECIFIED.); -#8381 = CARTESIAN_POINT('',(0.148295449803,9.253317824796E-002,0.302)); -#8382 = CARTESIAN_POINT('',(0.148210787884,9.584806670104E-002,0.302)); -#8383 = CARTESIAN_POINT('',(0.148048601601,0.102198376824,0.302)); -#8384 = CARTESIAN_POINT('',(0.146707389096,0.111282834249,0.302)); -#8385 = CARTESIAN_POINT('',(0.14449699858,0.119491199434,0.302)); -#8386 = CARTESIAN_POINT('',(0.141761615503,0.125597979613,0.302)); -#8387 = CARTESIAN_POINT('',(0.139305739012,0.129942816573,0.302)); -#8388 = CARTESIAN_POINT('',(0.137274202193,0.132680105907,0.302)); -#8389 = CARTESIAN_POINT('',(0.135166012471,0.135041055005,0.302)); -#8390 = CARTESIAN_POINT('',(0.13289013485,0.136953823277,0.302)); -#8391 = CARTESIAN_POINT('',(0.130504993201,0.138467578871,0.302)); -#8392 = CARTESIAN_POINT('',(0.128001855009,0.139586867053,0.302)); -#8393 = CARTESIAN_POINT('',(0.125345363678,0.140208977662,0.302)); -#8394 = CARTESIAN_POINT('',(0.123534491401,0.140288809942,0.302)); -#8395 = CARTESIAN_POINT('',(0.122622552692,0.140329012749,0.302)); -#8396 = PCURVE('',#362,#8397); -#8397 = DEFINITIONAL_REPRESENTATION('',(#8398),#8402); -#8398 = LINE('',#8399,#8400); -#8399 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#8400 = VECTOR('',#8401,1.); -#8401 = DIRECTION('',(1.,0.E+000)); -#8402 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8403 = PCURVE('',#7541,#8404); -#8404 = DEFINITIONAL_REPRESENTATION('',(#8405),#8421); -#8405 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8406,#8407,#8408,#8409,#8410, - #8411,#8412,#8413,#8414,#8415,#8416,#8417,#8418,#8419,#8420), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 0.167218280874,0.320338966676,0.462287496645,0.594804197661, - 0.65685341656,0.713804069478,0.766491554291,0.81624698513, - 0.863310073343,0.908654710773,0.953999348203,1.),.UNSPECIFIED.); -#8406 = CARTESIAN_POINT('',(-5.279171783919E-002,6.004347389322E-002)); -#8407 = CARTESIAN_POINT('',(-5.610660629228E-002,5.995881197453E-002)); -#8408 = CARTESIAN_POINT('',(-6.245691641479E-002,5.979662569079E-002)); -#8409 = CARTESIAN_POINT('',(-7.154137384046E-002,5.845541318633E-002)); -#8410 = CARTESIAN_POINT('',(-7.974973902502E-002,5.624502267058E-002)); -#8411 = CARTESIAN_POINT('',(-8.58565192041E-002,5.350963959296E-002)); -#8412 = CARTESIAN_POINT('',(-9.020135616414E-002,5.105376310254E-002)); -#8413 = CARTESIAN_POINT('',(-9.293864549848E-002,4.902222628357E-002)); -#8414 = CARTESIAN_POINT('',(-9.52995945962E-002,4.691403656139E-002)); -#8415 = CARTESIAN_POINT('',(-9.721236286834E-002,4.463815893994E-002)); -#8416 = CARTESIAN_POINT('',(-9.872611846184E-002,4.225301729083E-002)); -#8417 = CARTESIAN_POINT('',(-9.984540664469E-002,3.97498790994E-002)); -#8418 = CARTESIAN_POINT('',(-0.100467517253,3.709338776866E-002)); -#8419 = CARTESIAN_POINT('',(-0.100547349534,3.528251549111E-002)); -#8420 = CARTESIAN_POINT('',(-0.10058755234,3.437057678258E-002)); -#8421 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8422 = ORIENTED_EDGE('',*,*,#8302,.T.); -#8423 = ADVANCED_FACE('',(#8424),#284,.T.); -#8424 = FACE_BOUND('',#8425,.T.); -#8425 = EDGE_LOOP('',(#8426,#8427,#8448,#8493)); -#8426 = ORIENTED_EDGE('',*,*,#244,.F.); -#8427 = ORIENTED_EDGE('',*,*,#8428,.F.); -#8428 = EDGE_CURVE('',#8429,#151,#8431,.T.); -#8429 = VERTEX_POINT('',#8430); -#8430 = CARTESIAN_POINT('',(0.121284886711,4.13417301015E-002,0.302)); -#8431 = SURFACE_CURVE('',#8432,(#8436,#8442),.PCURVE_S1.); -#8432 = LINE('',#8433,#8434); -#8433 = CARTESIAN_POINT('',(0.121284886711,4.13417301015E-002,0.302)); -#8434 = VECTOR('',#8435,1.); -#8435 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#8436 = PCURVE('',#284,#8437); -#8437 = DEFINITIONAL_REPRESENTATION('',(#8438),#8441); -#8438 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8439,#8440),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#8439 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#8440 = CARTESIAN_POINT('',(0.E+000,1.)); -#8441 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8442 = PCURVE('',#198,#8443); -#8443 = DEFINITIONAL_REPRESENTATION('',(#8444),#8447); -#8444 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8445,#8446),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#8445 = CARTESIAN_POINT('',(1.,0.E+000)); -#8446 = CARTESIAN_POINT('',(1.,1.)); -#8447 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8448 = ORIENTED_EDGE('',*,*,#8449,.T.); -#8449 = EDGE_CURVE('',#8429,#8358,#8450,.T.); -#8450 = SURFACE_CURVE('',#8451,(#8467,#8474),.PCURVE_S1.); -#8451 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8452,#8453,#8454,#8455,#8456, - #8457,#8458,#8459,#8460,#8461,#8462,#8463,#8464,#8465,#8466), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 4.93101218056E-002,9.743831139595E-002,0.144472535587,0.193038110235 - ,0.242820989692,0.295406850972,0.351784480369,0.413136124838, - 0.544950472915,0.684634992183,0.836126946877,1.),.UNSPECIFIED.); -#8452 = CARTESIAN_POINT('',(0.121284886711,4.13417301015E-002,0.302)); -#8453 = CARTESIAN_POINT('',(0.122336056738,4.137057674468E-002,0.302)); -#8454 = CARTESIAN_POINT('',(0.124413200916,4.142757859539E-002,0.302)); -#8455 = CARTESIAN_POINT('',(0.127405345822,4.220252447435E-002,0.302)); -#8456 = CARTESIAN_POINT('',(0.13025971214,4.332430696126E-002,0.302)); -#8457 = CARTESIAN_POINT('',(0.132871823768,4.500762147459E-002,0.302)); -#8458 = CARTESIAN_POINT('',(0.135328422966,4.708568576713E-002,0.302)); -#8459 = CARTESIAN_POINT('',(0.137549434903,4.964433445327E-002,0.302)); -#8460 = CARTESIAN_POINT('',(0.139552396567,5.266963746697E-002,0.302)); -#8461 = CARTESIAN_POINT('',(0.142046902581,5.735839433306E-002,0.302)); -#8462 = CARTESIAN_POINT('',(0.14462069159,6.398153661176E-002,0.302)); -#8463 = CARTESIAN_POINT('',(0.146738220012,7.273753671046E-002,0.302)); -#8464 = CARTESIAN_POINT('',(0.148113631722,8.233722895259E-002,0.302)); -#8465 = CARTESIAN_POINT('',(0.148233278022,8.904672448583E-002,0.302)); -#8466 = CARTESIAN_POINT('',(0.148295449803,9.253317824796E-002,0.302)); -#8467 = PCURVE('',#284,#8468); -#8468 = DEFINITIONAL_REPRESENTATION('',(#8469),#8473); -#8469 = LINE('',#8470,#8471); -#8470 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#8471 = VECTOR('',#8472,1.); -#8472 = DIRECTION('',(1.,0.E+000)); -#8473 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8474 = PCURVE('',#7541,#8475); -#8475 = DEFINITIONAL_REPRESENTATION('',(#8476),#8492); -#8476 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8477,#8478,#8479,#8480,#8481, - #8482,#8483,#8484,#8485,#8486,#8487,#8488,#8489,#8490,#8491), - .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.E+000, - 4.93101218056E-002,9.743831139595E-002,0.144472535587,0.193038110235 - ,0.242820989692,0.295406850972,0.351784480369,0.413136124838, - 0.544950472915,0.684634992183,0.836126946877,1.),.UNSPECIFIED.); -#8477 = CARTESIAN_POINT('',(-1.60026969273E-003,3.303291080087E-002)); -#8478 = CARTESIAN_POINT('',(-1.629116335917E-003,3.408408082788E-002)); -#8479 = CARTESIAN_POINT('',(-1.686118186627E-003,3.616122500582E-002)); -#8480 = CARTESIAN_POINT('',(-2.46106406558E-003,3.915336991204E-002)); -#8481 = CARTESIAN_POINT('',(-3.582846552492E-003,4.200773622979E-002)); -#8482 = CARTESIAN_POINT('',(-5.266161065826E-003,4.461984785775E-002)); -#8483 = CARTESIAN_POINT('',(-7.344225358365E-003,4.707644705624E-002)); -#8484 = CARTESIAN_POINT('',(-9.9028740445E-003,4.929745899316E-002)); -#8485 = CARTESIAN_POINT('',(-1.292817705821E-002,5.130042065694E-002)); -#8486 = CARTESIAN_POINT('',(-1.76169339243E-002,5.379492667158E-002)); -#8487 = CARTESIAN_POINT('',(-2.4240076203E-002,5.636871567998E-002)); -#8488 = CARTESIAN_POINT('',(-3.29960763017E-002,5.848624410208E-002)); -#8489 = CARTESIAN_POINT('',(-4.259576854382E-002,5.986165581251E-002)); -#8490 = CARTESIAN_POINT('',(-4.930526407706E-002,5.998130211174E-002)); -#8491 = CARTESIAN_POINT('',(-5.279171783919E-002,6.004347389322E-002)); -#8492 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8493 = ORIENTED_EDGE('',*,*,#8357,.T.); -#8494 = ADVANCED_FACE('',(#8495),#198,.T.); -#8495 = FACE_BOUND('',#8496,.T.); -#8496 = EDGE_LOOP('',(#8497,#8498,#8520,#8573)); -#8497 = ORIENTED_EDGE('',*,*,#150,.F.); -#8498 = ORIENTED_EDGE('',*,*,#8499,.F.); -#8499 = EDGE_CURVE('',#8500,#123,#8502,.T.); -#8500 = VERTEX_POINT('',#8501); -#8501 = CARTESIAN_POINT('',(9.561198960003E-002,8.743975777911E-002, - 0.302)); -#8502 = SURFACE_CURVE('',#8503,(#8507,#8513),.PCURVE_S1.); -#8503 = LINE('',#8504,#8505); -#8504 = CARTESIAN_POINT('',(9.561198960003E-002,8.743975777911E-002, - 0.302)); -#8505 = VECTOR('',#8506,1.); -#8506 = DIRECTION('',(-0.E+000,-2.22044604925E-016,-1.)); -#8507 = PCURVE('',#198,#8508); -#8508 = DEFINITIONAL_REPRESENTATION('',(#8509),#8512); -#8509 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8510,#8511),.UNSPECIFIED.,.F., - .F.,(2,2),(-0.E+000,2.E-003),.PIECEWISE_BEZIER_KNOTS.); -#8510 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#8511 = CARTESIAN_POINT('',(0.E+000,1.)); -#8512 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8513 = PCURVE('',#138,#8514); -#8514 = DEFINITIONAL_REPRESENTATION('',(#8515),#8519); -#8515 = LINE('',#8516,#8517); -#8516 = CARTESIAN_POINT('',(-1.678962447617E-002,7.311298816786E-019)); -#8517 = VECTOR('',#8518,1.); -#8518 = DIRECTION('',(0.E+000,-1.)); -#8519 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8520 = ORIENTED_EDGE('',*,*,#8521,.T.); -#8521 = EDGE_CURVE('',#8500,#8429,#8522,.T.); -#8522 = SURFACE_CURVE('',#8523,(#8543,#8550),.PCURVE_S1.); -#8523 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8524,#8525,#8526,#8527,#8528, - #8529,#8530,#8531,#8532,#8533,#8534,#8535,#8536,#8537,#8538,#8539, - #8540,#8541,#8542),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,0.103069259507,0.198581093589,0.288104012431, - 0.369260730991,0.444795013232,0.512889413837,0.575173782836, - 0.631287508826,0.682403817013,0.731174513293,0.776469925506, - 0.82042617274,0.863811476537,0.908277975275,0.952771167262,1.), - .UNSPECIFIED.); -#8524 = CARTESIAN_POINT('',(9.561198960003E-002,8.743975777911E-002, - 0.302)); -#8525 = CARTESIAN_POINT('',(9.58331660904E-002,8.546491820448E-002,0.302 - )); -#8526 = CARTESIAN_POINT('',(9.625930157972E-002,8.166004171398E-002, - 0.302)); -#8527 = CARTESIAN_POINT('',(9.718318549401E-002,7.618252689124E-002, - 0.302)); -#8528 = CARTESIAN_POINT('',(9.806114316162E-002,7.112665692875E-002, - 0.302)); -#8529 = CARTESIAN_POINT('',(9.910517892659E-002,6.649438780876E-002, - 0.302)); -#8530 = CARTESIAN_POINT('',(0.100234444179,6.231145522484E-002,0.302)); -#8531 = CARTESIAN_POINT('',(0.101382941481,5.850791139632E-002,0.302)); -#8532 = CARTESIAN_POINT('',(0.10274714875,5.517900986752E-002,0.302)); -#8533 = CARTESIAN_POINT('',(0.104103663994,5.220318259453E-002,0.302)); -#8534 = CARTESIAN_POINT('',(0.105672205288,4.962663458115E-002,0.302)); -#8535 = CARTESIAN_POINT('',(0.10741831521,4.743453940787E-002,0.302)); -#8536 = CARTESIAN_POINT('',(0.109277678164,4.551763073201E-002,0.302)); -#8537 = CARTESIAN_POINT('',(0.111370712665,4.403031641049E-002,0.302)); -#8538 = CARTESIAN_POINT('',(0.113611633956,4.281801636844E-002,0.302)); -#8539 = CARTESIAN_POINT('',(0.116020922513,4.195428509365E-002,0.302)); -#8540 = CARTESIAN_POINT('',(0.118602406096,4.140923332536E-002,0.302)); -#8541 = CARTESIAN_POINT('',(0.120373122432,4.136467417343E-002,0.302)); -#8542 = CARTESIAN_POINT('',(0.121284886711,4.13417301015E-002,0.302)); -#8543 = PCURVE('',#198,#8544); -#8544 = DEFINITIONAL_REPRESENTATION('',(#8545),#8549); -#8545 = LINE('',#8546,#8547); -#8546 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#8547 = VECTOR('',#8548,1.); -#8548 = DIRECTION('',(1.,0.E+000)); -#8549 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8550 = PCURVE('',#7541,#8551); -#8551 = DEFINITIONAL_REPRESENTATION('',(#8552),#8572); -#8552 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8553,#8554,#8555,#8556,#8557, - #8558,#8559,#8560,#8561,#8562,#8563,#8564,#8565,#8566,#8567,#8568, - #8569,#8570,#8571),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, - 1,1,1,4),(0.E+000,0.103069259507,0.198581093589,0.288104012431, - 0.369260730991,0.444795013232,0.512889413837,0.575173782836, - 0.631287508826,0.682403817013,0.731174513293,0.776469925506, - 0.82042617274,0.863811476537,0.908277975275,0.952771167262,1.), - .UNSPECIFIED.); -#8553 = CARTESIAN_POINT('',(-4.769829737035E-002,7.360013690228E-003)); -#8554 = CARTESIAN_POINT('',(-4.572345779571E-002,7.5811901806E-003)); -#8555 = CARTESIAN_POINT('',(-4.191858130521E-002,8.007325669922E-003)); -#8556 = CARTESIAN_POINT('',(-3.644106648248E-002,8.93120958421E-003)); -#8557 = CARTESIAN_POINT('',(-3.138519651999E-002,9.809167251822E-003)); -#8558 = CARTESIAN_POINT('',(-2.675292739999E-002,1.085320301679E-002)); -#8559 = CARTESIAN_POINT('',(-2.256999481607E-002,1.198246826911E-002)); -#8560 = CARTESIAN_POINT('',(-1.876645098755E-002,1.313096557169E-002)); -#8561 = CARTESIAN_POINT('',(-1.543754945876E-002,1.449517284001E-002)); -#8562 = CARTESIAN_POINT('',(-1.246172218576E-002,1.585168808456E-002)); -#8563 = CARTESIAN_POINT('',(-9.885174172383E-003,1.742022937803E-002)); -#8564 = CARTESIAN_POINT('',(-7.693078999106E-003,1.916633929972E-002)); -#8565 = CARTESIAN_POINT('',(-5.776170323245E-003,2.102570225436E-002)); -#8566 = CARTESIAN_POINT('',(-4.28885600172E-003,2.31187367556E-002)); -#8567 = CARTESIAN_POINT('',(-3.076555959672E-003,2.535965804577E-002)); -#8568 = CARTESIAN_POINT('',(-2.212824684885E-003,2.77689466036E-002)); -#8569 = CARTESIAN_POINT('',(-1.667772916597E-003,3.035043018582E-002)); -#8570 = CARTESIAN_POINT('',(-1.623213764667E-003,3.212114652244E-002)); -#8571 = CARTESIAN_POINT('',(-1.60026969273E-003,3.303291080087E-002)); -#8572 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8573 = ORIENTED_EDGE('',*,*,#8428,.T.); -#8574 = ADVANCED_FACE('',(#8575),#138,.T.); -#8575 = FACE_BOUND('',#8576,.T.); -#8576 = EDGE_LOOP('',(#8577,#8578,#8579,#8600)); -#8577 = ORIENTED_EDGE('',*,*,#122,.F.); -#8578 = ORIENTED_EDGE('',*,*,#7569,.F.); -#8579 = ORIENTED_EDGE('',*,*,#8580,.T.); -#8580 = EDGE_CURVE('',#7510,#8500,#8581,.T.); -#8581 = SURFACE_CURVE('',#8582,(#8586,#8593),.PCURVE_S1.); -#8582 = LINE('',#8583,#8584); -#8583 = CARTESIAN_POINT('',(7.914840828659E-002,8.414704151643E-002, - 0.302)); -#8584 = VECTOR('',#8585,1.); -#8585 = DIRECTION('',(0.980580675691,0.196116135138,-4.354652974618E-017 - )); -#8586 = PCURVE('',#138,#8587); -#8587 = DEFINITIONAL_REPRESENTATION('',(#8588),#8592); -#8588 = LINE('',#8589,#8590); -#8589 = CARTESIAN_POINT('',(0.E+000,0.E+000)); -#8590 = VECTOR('',#8591,1.); -#8591 = DIRECTION('',(-1.,0.E+000)); -#8592 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8593 = PCURVE('',#7541,#8594); -#8594 = DEFINITIONAL_REPRESENTATION('',(#8595),#8599); -#8595 = LINE('',#8596,#8597); -#8596 = CARTESIAN_POINT('',(-4.440558110766E-002,-9.103567623207E-003)); -#8597 = VECTOR('',#8598,1.); -#8598 = DIRECTION('',(-0.196116135138,0.980580675691)); -#8599 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) -PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' - ) ); -#8600 = ORIENTED_EDGE('',*,*,#8499,.T.); -#8601 = ADVANCED_FACE('',(#8602),#7541,.T.); -#8602 = FACE_BOUND('',#8603,.T.); -#8603 = EDGE_LOOP('',(#8604,#8605,#8606,#8607,#8608,#8609,#8610,#8611, - #8612,#8613,#8614,#8615,#8616,#8617,#8618,#8619,#8620)); -#8604 = ORIENTED_EDGE('',*,*,#7509,.F.); -#8605 = ORIENTED_EDGE('',*,*,#7614,.F.); -#8606 = ORIENTED_EDGE('',*,*,#7693,.F.); -#8607 = ORIENTED_EDGE('',*,*,#7764,.F.); -#8608 = ORIENTED_EDGE('',*,*,#7827,.F.); -#8609 = ORIENTED_EDGE('',*,*,#7899,.F.); -#8610 = ORIENTED_EDGE('',*,*,#7979,.F.); -#8611 = ORIENTED_EDGE('',*,*,#8026,.F.); -#8612 = ORIENTED_EDGE('',*,*,#8089,.F.); -#8613 = ORIENTED_EDGE('',*,*,#8152,.F.); -#8614 = ORIENTED_EDGE('',*,*,#8224,.F.); -#8615 = ORIENTED_EDGE('',*,*,#8276,.F.); -#8616 = ORIENTED_EDGE('',*,*,#8323,.F.); -#8617 = ORIENTED_EDGE('',*,*,#8378,.F.); -#8618 = ORIENTED_EDGE('',*,*,#8449,.F.); -#8619 = ORIENTED_EDGE('',*,*,#8521,.F.); -#8620 = ORIENTED_EDGE('',*,*,#8580,.F.); -#8621 = ( GEOMETRIC_REPRESENTATION_CONTEXT(3) -GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT((#8625)) -GLOBAL_UNIT_ASSIGNED_CONTEXT((#8622,#8623,#8624)) REPRESENTATION_CONTEXT -('Context #1','3D Context with UNIT and UNCERTAINTY') ); -#8622 = ( LENGTH_UNIT() NAMED_UNIT(*) SI_UNIT(.MILLI.,.METRE.) ); -#8623 = ( NAMED_UNIT(*) PLANE_ANGLE_UNIT() SI_UNIT($,.RADIAN.) ); -#8624 = ( NAMED_UNIT(*) SI_UNIT($,.STERADIAN.) SOLID_ANGLE_UNIT() ); -#8625 = UNCERTAINTY_MEASURE_WITH_UNIT(LENGTH_MEASURE(1.E-007),#8622, - 'distance_accuracy_value','confusion accuracy'); -#8626 = PRODUCT_TYPE('part',$,(#7)); -ENDSEC; -END-ISO-10303-21; +ISO-10303-21; +HEADER; +FILE_DESCRIPTION(('Open CASCADE Model'),'2;1'); +FILE_NAME('Open CASCADE Shape Model','2012-01-21T22:40:13',('Author'),( + 'Open CASCADE'),'Open CASCADE STEP processor 6.5','Open CASCADE 6.5' + ,'Unknown'); +FILE_SCHEMA(('AUTOMOTIVE_DESIGN_CC2 { 1 2 10303 214 -1 1 5 4 }')); +ENDSEC; +DATA; +#1 = APPLICATION_PROTOCOL_DEFINITION('committee draft', + 'automotive_design',1997,#2); +#2 = APPLICATION_CONTEXT( + 'core data for automotive mechanical design processes'); +#3 = SHAPE_DEFINITION_REPRESENTATION(#4,#10); +#4 = PRODUCT_DEFINITION_SHAPE('','',#5); +#5 = PRODUCT_DEFINITION('design','',#6,#9); +#6 = PRODUCT_DEFINITION_FORMATION('','',#7); +#7 = PRODUCT('SW3dPS-0603_SMD_Capacitor','SW3dPS-0603_SMD_Capacitor','', + (#8)); +#8 = MECHANICAL_CONTEXT('',#2,'mechanical'); +#9 = PRODUCT_DEFINITION_CONTEXT('part definition',#2,'design'); +#10 = ADVANCED_BREP_SHAPE_REPRESENTATION('',(#11,#15),#8621); +#11 = AXIS2_PLACEMENT_3D('',#12,#13,#14); +#12 = CARTESIAN_POINT('',(0.,0.,0.)); +#13 = DIRECTION('',(0.,0.,1.)); +#14 = DIRECTION('',(1.,0.,-0.)); +#15 = MANIFOLD_SOLID_BREP('',#16); +#16 = CLOSED_SHELL('',(#17,#2553,#2670,#2782,#2860,#2938,#2988,#3038, + #3121,#3199,#3310,#3416,#3495,#3569,#3625,#3676,#3726,#3776,#3872, + #3917,#4013,#4058,#4103,#4194,#4265,#4336,#4408,#4415,#4460,#4467, + #4493,#4584,#4590,#4615,#4640,#4646,#4653,#4725,#4751,#4758,#4783, + #4808,#4815,#5669,#5713,#5738,#5763,#5788,#5813,#5838,#5863,#5888, + #5913,#5938,#5964,#5971,#6067,#6138,#6217,#6276,#6283,#6982,#7025, + #7050,#7075,#7100,#7107,#7195,#7274,#7353,#7432,#7475,#7483,#7588, + #7667,#7738,#7801,#7872,#7952,#8000,#8063,#8126,#8197,#8249,#8297, + #8352,#8423,#8494,#8574,#8601)); +#17 = ADVANCED_FACE('',(#18,#1145,#1633,#1745),#48,.T.); +#18 = FACE_BOUND('',#19,.T.); +#19 = EDGE_LOOP('',(#20,#121,#149,#243,#321,#399,#445,#473,#511,#589, + #651,#713,#741,#835,#913,#975,#1053)); +#20 = ORIENTED_EDGE('',*,*,#21,.T.); +#21 = EDGE_CURVE('',#22,#24,#26,.T.); +#22 = VERTEX_POINT('',#23); +#23 = CARTESIAN_POINT('',(0.120718951103,1.170728373731E-02,0.3)); +#24 = VERTEX_POINT('',#25); +#25 = CARTESIAN_POINT('',(7.914840828659E-02,8.414704151643E-02,0.3)); +#26 = SURFACE_CURVE('',#27,(#47,#75),.PCURVE_S1.); +#27 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#28,#29,#30,#31,#32,#33,#34,#35, + #36,#37,#38,#39,#40,#41,#42,#43,#44,#45,#46),.UNSPECIFIED.,.F.,.F.,( + 4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(0.,4.642480551308E-02, + 9.17550650813E-02,0.137365792969,0.184234865116,0.233618047719, + 0.286345281489,0.342702560112,0.403812353687,0.468458845429, + 0.535483138438,0.604766914307,0.676822993412,0.7525824976, + 0.831578559803,0.913949260602,1.),.UNSPECIFIED.); +#28 = CARTESIAN_POINT('',(0.120718951103,1.170728373731E-02,0.3)); +#29 = CARTESIAN_POINT('',(0.119305687764,1.175807442949E-02,0.3)); +#30 = CARTESIAN_POINT('',(0.11651248124,1.18584583345E-02,0.3)); +#31 = CARTESIAN_POINT('',(0.112453586066,1.292290438905E-02,0.3)); +#32 = CARTESIAN_POINT('',(0.108535791536,1.443462285821E-02,0.3)); +#33 = CARTESIAN_POINT('',(0.104861886428,1.672324153894E-02,0.3)); +#34 = CARTESIAN_POINT('',(0.101321294393,1.956124176099E-02,0.3)); +#35 = CARTESIAN_POINT('',(9.806195466378E-02,2.312005656402E-02,0.3)); +#36 = CARTESIAN_POINT('',(9.488067483072E-02,2.720206212183E-02,0.3)); +#37 = CARTESIAN_POINT('',(9.199215450085E-02,3.193240674378E-02,0.3)); +#38 = CARTESIAN_POINT('',(8.935789793798E-02,3.716463006663E-02,0.3)); +#39 = CARTESIAN_POINT('',(8.69143155312E-02,4.276332812003E-02,0.3)); +#40 = CARTESIAN_POINT('',(8.487547001018E-02,4.876108493811E-02,0.3)); +#41 = CARTESIAN_POINT('',(8.313158049113E-02,5.512284571882E-02,0.3)); +#42 = CARTESIAN_POINT('',(8.164238908048E-02,6.185160062136E-02,0.3)); +#43 = CARTESIAN_POINT('',(8.045121467697E-02,6.895846489487E-02,0.3)); +#44 = CARTESIAN_POINT('',(7.965207367774E-02,7.643426271059E-02,0.3)); +#45 = CARTESIAN_POINT('',(7.931872466218E-02,8.153893590695E-02,0.3)); +#46 = CARTESIAN_POINT('',(7.914840828659E-02,8.414704151643E-02,0.3)); +#47 = PCURVE('',#48,#53); +#48 = PLANE('',#49); +#49 = AXIS2_PLACEMENT_3D('',#50,#51,#52); +#50 = CARTESIAN_POINT('',(-0.8,-0.4,0.3)); +#51 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#52 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#53 = DEFINITIONAL_REPRESENTATION('',(#54),#74); +#54 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#55,#56,#57,#58,#59,#60,#61,#62, + #63,#64,#65,#66,#67,#68,#69,#70,#71,#72,#73),.UNSPECIFIED.,.F.,.F.,( + 4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(0.,4.642480551308E-02, + 9.17550650813E-02,0.137365792969,0.184234865116,0.233618047719, + 0.286345281489,0.342702560112,0.403812353687,0.468458845429, + 0.535483138438,0.604766914307,0.676822993412,0.7525824976, + 0.831578559803,0.913949260602,1.),.UNSPECIFIED.); +#55 = CARTESIAN_POINT('',(-0.411707283737,0.920718951103)); +#56 = CARTESIAN_POINT('',(-0.411758074429,0.919305687764)); +#57 = CARTESIAN_POINT('',(-0.411858458334,0.91651248124)); +#58 = CARTESIAN_POINT('',(-0.412922904389,0.912453586066)); +#59 = CARTESIAN_POINT('',(-0.414434622858,0.908535791536)); +#60 = CARTESIAN_POINT('',(-0.416723241539,0.904861886428)); +#61 = CARTESIAN_POINT('',(-0.419561241761,0.901321294393)); +#62 = CARTESIAN_POINT('',(-0.423120056564,0.898061954664)); +#63 = CARTESIAN_POINT('',(-0.427202062122,0.894880674831)); +#64 = CARTESIAN_POINT('',(-0.431932406744,0.891992154501)); +#65 = CARTESIAN_POINT('',(-0.437164630067,0.889357897938)); +#66 = CARTESIAN_POINT('',(-0.44276332812,0.886914315531)); +#67 = CARTESIAN_POINT('',(-0.448761084938,0.88487547001)); +#68 = CARTESIAN_POINT('',(-0.455122845719,0.883131580491)); +#69 = CARTESIAN_POINT('',(-0.461851600621,0.88164238908)); +#70 = CARTESIAN_POINT('',(-0.468958464895,0.880451214677)); +#71 = CARTESIAN_POINT('',(-0.476434262711,0.879652073678)); +#72 = CARTESIAN_POINT('',(-0.481538935907,0.879318724662)); +#73 = CARTESIAN_POINT('',(-0.484147041516,0.879148408287)); +#74 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#75 = PCURVE('',#76,#115); +#76 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#77,#78) + ,(#79,#80) + ,(#81,#82) + ,(#83,#84) + ,(#85,#86) + ,(#87,#88) + ,(#89,#90) + ,(#91,#92) + ,(#93,#94) + ,(#95,#96) + ,(#97,#98) + ,(#99,#100) + ,(#101,#102) + ,(#103,#104) + ,(#105,#106) + ,(#107,#108) + ,(#109,#110) + ,(#111,#112) + ,(#113,#114 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, + 2),(0.,4.642480551308E-02,9.17550650813E-02,0.137365792969, + 0.184234865116,0.233618047719,0.286345281489,0.342702560112, + 0.403812353687,0.468458845429,0.535483138438,0.604766914307, + 0.676822993412,0.7525824976,0.831578559803,0.913949260602,1.),(0.,1. + ),.UNSPECIFIED.); +#77 = CARTESIAN_POINT('',(0.120718951103,1.170728373731E-02,0.302)); +#78 = CARTESIAN_POINT('',(0.120718951103,1.170728373731E-02,0.3)); +#79 = CARTESIAN_POINT('',(0.119305687764,1.175807442949E-02,0.302)); +#80 = CARTESIAN_POINT('',(0.119305687764,1.175807442949E-02,0.3)); +#81 = CARTESIAN_POINT('',(0.11651248124,1.18584583345E-02,0.302)); +#82 = CARTESIAN_POINT('',(0.11651248124,1.18584583345E-02,0.3)); +#83 = CARTESIAN_POINT('',(0.112453586066,1.292290438905E-02,0.302)); +#84 = CARTESIAN_POINT('',(0.112453586066,1.292290438905E-02,0.3)); +#85 = CARTESIAN_POINT('',(0.108535791536,1.443462285821E-02,0.302)); +#86 = CARTESIAN_POINT('',(0.108535791536,1.443462285821E-02,0.3)); +#87 = CARTESIAN_POINT('',(0.104861886428,1.672324153894E-02,0.302)); +#88 = CARTESIAN_POINT('',(0.104861886428,1.672324153894E-02,0.3)); +#89 = CARTESIAN_POINT('',(0.101321294393,1.956124176099E-02,0.302)); +#90 = CARTESIAN_POINT('',(0.101321294393,1.956124176099E-02,0.3)); +#91 = CARTESIAN_POINT('',(9.806195466378E-02,2.312005656402E-02,0.302)); +#92 = CARTESIAN_POINT('',(9.806195466378E-02,2.312005656402E-02,0.3)); +#93 = CARTESIAN_POINT('',(9.488067483072E-02,2.720206212183E-02,0.302)); +#94 = CARTESIAN_POINT('',(9.488067483072E-02,2.720206212183E-02,0.3)); +#95 = CARTESIAN_POINT('',(9.199215450085E-02,3.193240674378E-02,0.302)); +#96 = CARTESIAN_POINT('',(9.199215450085E-02,3.193240674378E-02,0.3)); +#97 = CARTESIAN_POINT('',(8.935789793798E-02,3.716463006663E-02,0.302)); +#98 = CARTESIAN_POINT('',(8.935789793798E-02,3.716463006663E-02,0.3)); +#99 = CARTESIAN_POINT('',(8.69143155312E-02,4.276332812003E-02,0.302)); +#100 = CARTESIAN_POINT('',(8.69143155312E-02,4.276332812003E-02,0.3)); +#101 = CARTESIAN_POINT('',(8.487547001018E-02,4.876108493811E-02,0.302) + ); +#102 = CARTESIAN_POINT('',(8.487547001018E-02,4.876108493811E-02,0.3)); +#103 = CARTESIAN_POINT('',(8.313158049113E-02,5.512284571882E-02,0.302) + ); +#104 = CARTESIAN_POINT('',(8.313158049113E-02,5.512284571882E-02,0.3)); +#105 = CARTESIAN_POINT('',(8.164238908048E-02,6.185160062136E-02,0.302) + ); +#106 = CARTESIAN_POINT('',(8.164238908048E-02,6.185160062136E-02,0.3)); +#107 = CARTESIAN_POINT('',(8.045121467697E-02,6.895846489487E-02,0.302) + ); +#108 = CARTESIAN_POINT('',(8.045121467697E-02,6.895846489487E-02,0.3)); +#109 = CARTESIAN_POINT('',(7.965207367774E-02,7.643426271059E-02,0.302) + ); +#110 = CARTESIAN_POINT('',(7.965207367774E-02,7.643426271059E-02,0.3)); +#111 = CARTESIAN_POINT('',(7.931872466218E-02,8.153893590695E-02,0.302) + ); +#112 = CARTESIAN_POINT('',(7.931872466218E-02,8.153893590695E-02,0.3)); +#113 = CARTESIAN_POINT('',(7.914840828659E-02,8.414704151643E-02,0.302) + ); +#114 = CARTESIAN_POINT('',(7.914840828659E-02,8.414704151643E-02,0.3)); +#115 = DEFINITIONAL_REPRESENTATION('',(#116),#120); +#116 = LINE('',#117,#118); +#117 = CARTESIAN_POINT('',(0.,1.)); +#118 = VECTOR('',#119,1.); +#119 = DIRECTION('',(1.,0.)); +#120 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#121 = ORIENTED_EDGE('',*,*,#122,.T.); +#122 = EDGE_CURVE('',#24,#123,#125,.T.); +#123 = VERTEX_POINT('',#124); +#124 = CARTESIAN_POINT('',(9.561198960003E-02,8.743975777911E-02,0.3)); +#125 = SURFACE_CURVE('',#126,(#130,#137),.PCURVE_S1.); +#126 = LINE('',#127,#128); +#127 = CARTESIAN_POINT('',(7.914840828659E-02,8.414704151643E-02,0.3)); +#128 = VECTOR('',#129,1.); +#129 = DIRECTION('',(0.980580675691,0.196116135138,2.681258496579E-17)); +#130 = PCURVE('',#48,#131); +#131 = DEFINITIONAL_REPRESENTATION('',(#132),#136); +#132 = LINE('',#133,#134); +#133 = CARTESIAN_POINT('',(-0.484147041516,0.879148408287)); +#134 = VECTOR('',#135,1.); +#135 = DIRECTION('',(-0.196116135138,0.980580675691)); +#136 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#137 = PCURVE('',#138,#143); +#138 = PLANE('',#139); +#139 = AXIS2_PLACEMENT_3D('',#140,#141,#142); +#140 = CARTESIAN_POINT('',(7.914840828659E-02,8.414704151643E-02,0.302) + ); +#141 = DIRECTION('',(-0.196116135138,0.980580675691,1.340629248289E-16) + ); +#142 = DIRECTION('',(-0.980580675691,-0.196116135138,-2.681258496579E-17 + )); +#143 = DEFINITIONAL_REPRESENTATION('',(#144),#148); +#144 = LINE('',#145,#146); +#145 = CARTESIAN_POINT('',(5.362516993158E-20,-2.E-03)); +#146 = VECTOR('',#147,1.); +#147 = DIRECTION('',(-1.,1.355674124916E-33)); +#148 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#149 = ORIENTED_EDGE('',*,*,#150,.T.); +#150 = EDGE_CURVE('',#123,#151,#153,.T.); +#151 = VERTEX_POINT('',#152); +#152 = CARTESIAN_POINT('',(0.121284886711,4.13417301015E-02,0.3)); +#153 = SURFACE_CURVE('',#154,(#174,#197),.PCURVE_S1.); +#154 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#155,#156,#157,#158,#159,#160, + #161,#162,#163,#164,#165,#166,#167,#168,#169,#170,#171,#172,#173), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(0., + 0.103069259507,0.198581093589,0.288104012431,0.369260730991, + 0.444795013232,0.512889413837,0.575173782836,0.631287508826, + 0.682403817013,0.731174513293,0.776469925506,0.82042617274, + 0.863811476537,0.908277975275,0.952771167262,1.),.UNSPECIFIED.); +#155 = CARTESIAN_POINT('',(9.561198960003E-02,8.743975777911E-02,0.3)); +#156 = CARTESIAN_POINT('',(9.58331660904E-02,8.546491820448E-02,0.3)); +#157 = CARTESIAN_POINT('',(9.625930157972E-02,8.166004171398E-02,0.3)); +#158 = CARTESIAN_POINT('',(9.718318549401E-02,7.618252689124E-02,0.3)); +#159 = CARTESIAN_POINT('',(9.806114316162E-02,7.112665692875E-02,0.3)); +#160 = CARTESIAN_POINT('',(9.910517892659E-02,6.649438780876E-02,0.3)); +#161 = CARTESIAN_POINT('',(0.100234444179,6.231145522484E-02,0.3)); +#162 = CARTESIAN_POINT('',(0.101382941481,5.850791139631E-02,0.3)); +#163 = CARTESIAN_POINT('',(0.10274714875,5.517900986752E-02,0.3)); +#164 = CARTESIAN_POINT('',(0.104103663994,5.220318259453E-02,0.3)); +#165 = CARTESIAN_POINT('',(0.105672205288,4.962663458115E-02,0.3)); +#166 = CARTESIAN_POINT('',(0.10741831521,4.743453940787E-02,0.3)); +#167 = CARTESIAN_POINT('',(0.109277678164,4.551763073201E-02,0.3)); +#168 = CARTESIAN_POINT('',(0.111370712665,4.403031641049E-02,0.3)); +#169 = CARTESIAN_POINT('',(0.113611633956,4.281801636844E-02,0.3)); +#170 = CARTESIAN_POINT('',(0.116020922513,4.195428509365E-02,0.3)); +#171 = CARTESIAN_POINT('',(0.118602406096,4.140923332536E-02,0.3)); +#172 = CARTESIAN_POINT('',(0.120373122432,4.136467417343E-02,0.3)); +#173 = CARTESIAN_POINT('',(0.121284886711,4.13417301015E-02,0.3)); +#174 = PCURVE('',#48,#175); +#175 = DEFINITIONAL_REPRESENTATION('',(#176),#196); +#176 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#177,#178,#179,#180,#181,#182, + #183,#184,#185,#186,#187,#188,#189,#190,#191,#192,#193,#194,#195), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(0., + 0.103069259507,0.198581093589,0.288104012431,0.369260730991, + 0.444795013232,0.512889413837,0.575173782836,0.631287508826, + 0.682403817013,0.731174513293,0.776469925506,0.82042617274, + 0.863811476537,0.908277975275,0.952771167262,1.),.UNSPECIFIED.); +#177 = CARTESIAN_POINT('',(-0.487439757779,0.8956119896)); +#178 = CARTESIAN_POINT('',(-0.485464918204,0.89583316609)); +#179 = CARTESIAN_POINT('',(-0.481660041714,0.89625930158)); +#180 = CARTESIAN_POINT('',(-0.476182526891,0.897183185494)); +#181 = CARTESIAN_POINT('',(-0.471126656929,0.898061143162)); +#182 = CARTESIAN_POINT('',(-0.466494387809,0.899105178927)); +#183 = CARTESIAN_POINT('',(-0.462311455225,0.900234444179)); +#184 = CARTESIAN_POINT('',(-0.458507911396,0.901382941481)); +#185 = CARTESIAN_POINT('',(-0.455179009868,0.90274714875)); +#186 = CARTESIAN_POINT('',(-0.452203182595,0.904103663994)); +#187 = CARTESIAN_POINT('',(-0.449626634581,0.905672205288)); +#188 = CARTESIAN_POINT('',(-0.447434539408,0.90741831521)); +#189 = CARTESIAN_POINT('',(-0.445517630732,0.909277678164)); +#190 = CARTESIAN_POINT('',(-0.44403031641,0.911370712665)); +#191 = CARTESIAN_POINT('',(-0.442818016368,0.913611633956)); +#192 = CARTESIAN_POINT('',(-0.441954285094,0.916020922513)); +#193 = CARTESIAN_POINT('',(-0.441409233325,0.918602406096)); +#194 = CARTESIAN_POINT('',(-0.441364674173,0.920373122432)); +#195 = CARTESIAN_POINT('',(-0.441341730101,0.921284886711)); +#196 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#197 = PCURVE('',#198,#237); +#198 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#199,#200) + ,(#201,#202) + ,(#203,#204) + ,(#205,#206) + ,(#207,#208) + ,(#209,#210) + ,(#211,#212) + ,(#213,#214) + ,(#215,#216) + ,(#217,#218) + ,(#219,#220) + ,(#221,#222) + ,(#223,#224) + ,(#225,#226) + ,(#227,#228) + ,(#229,#230) + ,(#231,#232) + ,(#233,#234) + ,(#235,#236 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, + 2),(0.,0.103069259507,0.198581093589,0.288104012431,0.369260730991, + 0.444795013232,0.512889413837,0.575173782836,0.631287508826, + 0.682403817013,0.731174513293,0.776469925506,0.82042617274, + 0.863811476537,0.908277975275,0.952771167262,1.),(0.,1.), + .UNSPECIFIED.); +#199 = CARTESIAN_POINT('',(9.561198960003E-02,8.743975777911E-02,0.302) + ); +#200 = CARTESIAN_POINT('',(9.561198960003E-02,8.743975777911E-02,0.3)); +#201 = CARTESIAN_POINT('',(9.58331660904E-02,8.546491820448E-02,0.302)); +#202 = CARTESIAN_POINT('',(9.58331660904E-02,8.546491820448E-02,0.3)); +#203 = CARTESIAN_POINT('',(9.625930157972E-02,8.166004171398E-02,0.302) + ); +#204 = CARTESIAN_POINT('',(9.625930157972E-02,8.166004171398E-02,0.3)); +#205 = CARTESIAN_POINT('',(9.718318549401E-02,7.618252689124E-02,0.302) + ); +#206 = CARTESIAN_POINT('',(9.718318549401E-02,7.618252689124E-02,0.3)); +#207 = CARTESIAN_POINT('',(9.806114316162E-02,7.112665692875E-02,0.302) + ); +#208 = CARTESIAN_POINT('',(9.806114316162E-02,7.112665692875E-02,0.3)); +#209 = CARTESIAN_POINT('',(9.910517892659E-02,6.649438780876E-02,0.302) + ); +#210 = CARTESIAN_POINT('',(9.910517892659E-02,6.649438780876E-02,0.3)); +#211 = CARTESIAN_POINT('',(0.100234444179,6.231145522484E-02,0.302)); +#212 = CARTESIAN_POINT('',(0.100234444179,6.231145522484E-02,0.3)); +#213 = CARTESIAN_POINT('',(0.101382941481,5.850791139631E-02,0.302)); +#214 = CARTESIAN_POINT('',(0.101382941481,5.850791139631E-02,0.3)); +#215 = CARTESIAN_POINT('',(0.10274714875,5.517900986752E-02,0.302)); +#216 = CARTESIAN_POINT('',(0.10274714875,5.517900986752E-02,0.3)); +#217 = CARTESIAN_POINT('',(0.104103663994,5.220318259453E-02,0.302)); +#218 = CARTESIAN_POINT('',(0.104103663994,5.220318259453E-02,0.3)); +#219 = CARTESIAN_POINT('',(0.105672205288,4.962663458115E-02,0.302)); +#220 = CARTESIAN_POINT('',(0.105672205288,4.962663458115E-02,0.3)); +#221 = CARTESIAN_POINT('',(0.10741831521,4.743453940787E-02,0.302)); +#222 = CARTESIAN_POINT('',(0.10741831521,4.743453940787E-02,0.3)); +#223 = CARTESIAN_POINT('',(0.109277678164,4.551763073201E-02,0.302)); +#224 = CARTESIAN_POINT('',(0.109277678164,4.551763073201E-02,0.3)); +#225 = CARTESIAN_POINT('',(0.111370712665,4.403031641049E-02,0.302)); +#226 = CARTESIAN_POINT('',(0.111370712665,4.403031641049E-02,0.3)); +#227 = CARTESIAN_POINT('',(0.113611633956,4.281801636844E-02,0.302)); +#228 = CARTESIAN_POINT('',(0.113611633956,4.281801636844E-02,0.3)); +#229 = CARTESIAN_POINT('',(0.116020922513,4.195428509365E-02,0.302)); +#230 = CARTESIAN_POINT('',(0.116020922513,4.195428509365E-02,0.3)); +#231 = CARTESIAN_POINT('',(0.118602406096,4.140923332536E-02,0.302)); +#232 = CARTESIAN_POINT('',(0.118602406096,4.140923332536E-02,0.3)); +#233 = CARTESIAN_POINT('',(0.120373122432,4.136467417343E-02,0.302)); +#234 = CARTESIAN_POINT('',(0.120373122432,4.136467417343E-02,0.3)); +#235 = CARTESIAN_POINT('',(0.121284886711,4.13417301015E-02,0.302)); +#236 = CARTESIAN_POINT('',(0.121284886711,4.13417301015E-02,0.3)); +#237 = DEFINITIONAL_REPRESENTATION('',(#238),#242); +#238 = LINE('',#239,#240); +#239 = CARTESIAN_POINT('',(0.,1.)); +#240 = VECTOR('',#241,1.); +#241 = DIRECTION('',(1.,0.)); +#242 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#243 = ORIENTED_EDGE('',*,*,#244,.T.); +#244 = EDGE_CURVE('',#151,#245,#247,.T.); +#245 = VERTEX_POINT('',#246); +#246 = CARTESIAN_POINT('',(0.148295449803,9.253317824796E-02,0.3)); +#247 = SURFACE_CURVE('',#248,(#264,#283),.PCURVE_S1.); +#248 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#249,#250,#251,#252,#253,#254, + #255,#256,#257,#258,#259,#260,#261,#262,#263),.UNSPECIFIED.,.F.,.F., + (4,1,1,1,1,1,1,1,1,1,1,1,4),(0.,4.93101218056E-02,9.743831139595E-02, + 0.144472535587,0.193038110235,0.242820989692,0.295406850972, + 0.351784480369,0.413136124838,0.544950472915,0.684634992183, + 0.836126946877,1.),.UNSPECIFIED.); +#249 = CARTESIAN_POINT('',(0.121284886711,4.13417301015E-02,0.3)); +#250 = CARTESIAN_POINT('',(0.122336056738,4.137057674468E-02,0.3)); +#251 = CARTESIAN_POINT('',(0.124413200916,4.142757859539E-02,0.3)); +#252 = CARTESIAN_POINT('',(0.127405345822,4.220252447435E-02,0.3)); +#253 = CARTESIAN_POINT('',(0.13025971214,4.332430696126E-02,0.3)); +#254 = CARTESIAN_POINT('',(0.132871823768,4.500762147459E-02,0.3)); +#255 = CARTESIAN_POINT('',(0.135328422966,4.708568576713E-02,0.3)); +#256 = CARTESIAN_POINT('',(0.137549434903,4.964433445327E-02,0.3)); +#257 = CARTESIAN_POINT('',(0.139552396567,5.266963746697E-02,0.3)); +#258 = CARTESIAN_POINT('',(0.142046902581,5.735839433306E-02,0.3)); +#259 = CARTESIAN_POINT('',(0.14462069159,6.398153661176E-02,0.3)); +#260 = CARTESIAN_POINT('',(0.146738220012,7.273753671046E-02,0.3)); +#261 = CARTESIAN_POINT('',(0.148113631722,8.233722895259E-02,0.3)); +#262 = CARTESIAN_POINT('',(0.148233278022,8.904672448583E-02,0.3)); +#263 = CARTESIAN_POINT('',(0.148295449803,9.253317824796E-02,0.3)); +#264 = PCURVE('',#48,#265); +#265 = DEFINITIONAL_REPRESENTATION('',(#266),#282); +#266 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#267,#268,#269,#270,#271,#272, + #273,#274,#275,#276,#277,#278,#279,#280,#281),.UNSPECIFIED.,.F.,.F., + (4,1,1,1,1,1,1,1,1,1,1,1,4),(0.,4.93101218056E-02,9.743831139595E-02, + 0.144472535587,0.193038110235,0.242820989692,0.295406850972, + 0.351784480369,0.413136124838,0.544950472915,0.684634992183, + 0.836126946877,1.),.UNSPECIFIED.); +#267 = CARTESIAN_POINT('',(-0.441341730101,0.921284886711)); +#268 = CARTESIAN_POINT('',(-0.441370576745,0.922336056738)); +#269 = CARTESIAN_POINT('',(-0.441427578595,0.924413200916)); +#270 = CARTESIAN_POINT('',(-0.442202524474,0.927405345822)); +#271 = CARTESIAN_POINT('',(-0.443324306961,0.93025971214)); +#272 = CARTESIAN_POINT('',(-0.445007621475,0.932871823768)); +#273 = CARTESIAN_POINT('',(-0.447085685767,0.935328422966)); +#274 = CARTESIAN_POINT('',(-0.449644334453,0.937549434903)); +#275 = CARTESIAN_POINT('',(-0.452669637467,0.939552396567)); +#276 = CARTESIAN_POINT('',(-0.457358394333,0.942046902581)); +#277 = CARTESIAN_POINT('',(-0.463981536612,0.94462069159)); +#278 = CARTESIAN_POINT('',(-0.47273753671,0.946738220012)); +#279 = CARTESIAN_POINT('',(-0.482337228953,0.948113631722)); +#280 = CARTESIAN_POINT('',(-0.489046724486,0.948233278022)); +#281 = CARTESIAN_POINT('',(-0.492533178248,0.948295449803)); +#282 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#283 = PCURVE('',#284,#315); +#284 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#285,#286) + ,(#287,#288) + ,(#289,#290) + ,(#291,#292) + ,(#293,#294) + ,(#295,#296) + ,(#297,#298) + ,(#299,#300) + ,(#301,#302) + ,(#303,#304) + ,(#305,#306) + ,(#307,#308) + ,(#309,#310) + ,(#311,#312) + ,(#313,#314 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(2,2),(0., + 4.93101218056E-02,9.743831139595E-02,0.144472535587,0.193038110235, + 0.242820989692,0.295406850972,0.351784480369,0.413136124838, + 0.544950472915,0.684634992183,0.836126946877,1.),(0.,1.), + .UNSPECIFIED.); +#285 = CARTESIAN_POINT('',(0.121284886711,4.13417301015E-02,0.302)); +#286 = CARTESIAN_POINT('',(0.121284886711,4.13417301015E-02,0.3)); +#287 = CARTESIAN_POINT('',(0.122336056738,4.137057674468E-02,0.302)); +#288 = CARTESIAN_POINT('',(0.122336056738,4.137057674468E-02,0.3)); +#289 = CARTESIAN_POINT('',(0.124413200916,4.142757859539E-02,0.302)); +#290 = CARTESIAN_POINT('',(0.124413200916,4.142757859539E-02,0.3)); +#291 = CARTESIAN_POINT('',(0.127405345822,4.220252447435E-02,0.302)); +#292 = CARTESIAN_POINT('',(0.127405345822,4.220252447435E-02,0.3)); +#293 = CARTESIAN_POINT('',(0.13025971214,4.332430696126E-02,0.302)); +#294 = CARTESIAN_POINT('',(0.13025971214,4.332430696126E-02,0.3)); +#295 = CARTESIAN_POINT('',(0.132871823768,4.500762147459E-02,0.302)); +#296 = CARTESIAN_POINT('',(0.132871823768,4.500762147459E-02,0.3)); +#297 = CARTESIAN_POINT('',(0.135328422966,4.708568576713E-02,0.302)); +#298 = CARTESIAN_POINT('',(0.135328422966,4.708568576713E-02,0.3)); +#299 = CARTESIAN_POINT('',(0.137549434903,4.964433445327E-02,0.302)); +#300 = CARTESIAN_POINT('',(0.137549434903,4.964433445327E-02,0.3)); +#301 = CARTESIAN_POINT('',(0.139552396567,5.266963746697E-02,0.302)); +#302 = CARTESIAN_POINT('',(0.139552396567,5.266963746697E-02,0.3)); +#303 = CARTESIAN_POINT('',(0.142046902581,5.735839433306E-02,0.302)); +#304 = CARTESIAN_POINT('',(0.142046902581,5.735839433306E-02,0.3)); +#305 = CARTESIAN_POINT('',(0.14462069159,6.398153661176E-02,0.302)); +#306 = CARTESIAN_POINT('',(0.14462069159,6.398153661176E-02,0.3)); +#307 = CARTESIAN_POINT('',(0.146738220012,7.273753671046E-02,0.302)); +#308 = CARTESIAN_POINT('',(0.146738220012,7.273753671046E-02,0.3)); +#309 = CARTESIAN_POINT('',(0.148113631722,8.233722895259E-02,0.302)); +#310 = CARTESIAN_POINT('',(0.148113631722,8.233722895259E-02,0.3)); +#311 = CARTESIAN_POINT('',(0.148233278022,8.904672448583E-02,0.302)); +#312 = CARTESIAN_POINT('',(0.148233278022,8.904672448583E-02,0.3)); +#313 = CARTESIAN_POINT('',(0.148295449803,9.253317824796E-02,0.302)); +#314 = CARTESIAN_POINT('',(0.148295449803,9.253317824796E-02,0.3)); +#315 = DEFINITIONAL_REPRESENTATION('',(#316),#320); +#316 = LINE('',#317,#318); +#317 = CARTESIAN_POINT('',(0.,1.)); +#318 = VECTOR('',#319,1.); +#319 = DIRECTION('',(1.,0.)); +#320 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#321 = ORIENTED_EDGE('',*,*,#322,.T.); +#322 = EDGE_CURVE('',#245,#323,#325,.T.); +#323 = VERTEX_POINT('',#324); +#324 = CARTESIAN_POINT('',(0.122622552692,0.140329012749,0.3)); +#325 = SURFACE_CURVE('',#326,(#342,#361),.PCURVE_S1.); +#326 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#327,#328,#329,#330,#331,#332, + #333,#334,#335,#336,#337,#338,#339,#340,#341),.UNSPECIFIED.,.F.,.F., + (4,1,1,1,1,1,1,1,1,1,1,1,4),(0.,0.167218280874,0.320338966676, + 0.462287496645,0.594804197661,0.65685341656,0.713804069478, + 0.766491554291,0.81624698513,0.863310073343,0.908654710773, + 0.953999348203,1.),.UNSPECIFIED.); +#327 = CARTESIAN_POINT('',(0.148295449803,9.253317824796E-02,0.3)); +#328 = CARTESIAN_POINT('',(0.148210787884,9.584806670104E-02,0.3)); +#329 = CARTESIAN_POINT('',(0.148048601601,0.102198376824,0.3)); +#330 = CARTESIAN_POINT('',(0.146707389096,0.111282834249,0.3)); +#331 = CARTESIAN_POINT('',(0.14449699858,0.119491199434,0.3)); +#332 = CARTESIAN_POINT('',(0.141761615503,0.125597979613,0.3)); +#333 = CARTESIAN_POINT('',(0.139305739012,0.129942816573,0.3)); +#334 = CARTESIAN_POINT('',(0.137274202193,0.132680105907,0.3)); +#335 = CARTESIAN_POINT('',(0.135166012471,0.135041055005,0.3)); +#336 = CARTESIAN_POINT('',(0.13289013485,0.136953823277,0.3)); +#337 = CARTESIAN_POINT('',(0.130504993201,0.138467578871,0.3)); +#338 = CARTESIAN_POINT('',(0.128001855009,0.139586867053,0.3)); +#339 = CARTESIAN_POINT('',(0.125345363678,0.140208977662,0.3)); +#340 = CARTESIAN_POINT('',(0.123534491401,0.140288809942,0.3)); +#341 = CARTESIAN_POINT('',(0.122622552692,0.140329012749,0.3)); +#342 = PCURVE('',#48,#343); +#343 = DEFINITIONAL_REPRESENTATION('',(#344),#360); +#344 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#345,#346,#347,#348,#349,#350, + #351,#352,#353,#354,#355,#356,#357,#358,#359),.UNSPECIFIED.,.F.,.F., + (4,1,1,1,1,1,1,1,1,1,1,1,4),(0.,0.167218280874,0.320338966676, + 0.462287496645,0.594804197661,0.65685341656,0.713804069478, + 0.766491554291,0.81624698513,0.863310073343,0.908654710773, + 0.953999348203,1.),.UNSPECIFIED.); +#345 = CARTESIAN_POINT('',(-0.492533178248,0.948295449803)); +#346 = CARTESIAN_POINT('',(-0.495848066701,0.948210787884)); +#347 = CARTESIAN_POINT('',(-0.502198376824,0.948048601601)); +#348 = CARTESIAN_POINT('',(-0.511282834249,0.946707389096)); +#349 = CARTESIAN_POINT('',(-0.519491199434,0.94449699858)); +#350 = CARTESIAN_POINT('',(-0.525597979613,0.941761615503)); +#351 = CARTESIAN_POINT('',(-0.529942816573,0.939305739012)); +#352 = CARTESIAN_POINT('',(-0.532680105907,0.937274202193)); +#353 = CARTESIAN_POINT('',(-0.535041055005,0.935166012471)); +#354 = CARTESIAN_POINT('',(-0.536953823277,0.93289013485)); +#355 = CARTESIAN_POINT('',(-0.538467578871,0.930504993201)); +#356 = CARTESIAN_POINT('',(-0.539586867053,0.928001855009)); +#357 = CARTESIAN_POINT('',(-0.540208977662,0.925345363678)); +#358 = CARTESIAN_POINT('',(-0.540288809942,0.923534491401)); +#359 = CARTESIAN_POINT('',(-0.540329012749,0.922622552692)); +#360 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#361 = PCURVE('',#362,#393); +#362 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#363,#364) + ,(#365,#366) + ,(#367,#368) + ,(#369,#370) + ,(#371,#372) + ,(#373,#374) + ,(#375,#376) + ,(#377,#378) + ,(#379,#380) + ,(#381,#382) + ,(#383,#384) + ,(#385,#386) + ,(#387,#388) + ,(#389,#390) + ,(#391,#392 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(2,2),(0., + 0.167218280874,0.320338966676,0.462287496645,0.594804197661, + 0.65685341656,0.713804069478,0.766491554291,0.81624698513, + 0.863310073343,0.908654710773,0.953999348203,1.),(0.,1.), + .UNSPECIFIED.); +#363 = CARTESIAN_POINT('',(0.148295449803,9.253317824796E-02,0.302)); +#364 = CARTESIAN_POINT('',(0.148295449803,9.253317824796E-02,0.3)); +#365 = CARTESIAN_POINT('',(0.148210787884,9.584806670104E-02,0.302)); +#366 = CARTESIAN_POINT('',(0.148210787884,9.584806670104E-02,0.3)); +#367 = CARTESIAN_POINT('',(0.148048601601,0.102198376824,0.302)); +#368 = CARTESIAN_POINT('',(0.148048601601,0.102198376824,0.3)); +#369 = CARTESIAN_POINT('',(0.146707389096,0.111282834249,0.302)); +#370 = CARTESIAN_POINT('',(0.146707389096,0.111282834249,0.3)); +#371 = CARTESIAN_POINT('',(0.14449699858,0.119491199434,0.302)); +#372 = CARTESIAN_POINT('',(0.14449699858,0.119491199434,0.3)); +#373 = CARTESIAN_POINT('',(0.141761615503,0.125597979613,0.302)); +#374 = CARTESIAN_POINT('',(0.141761615503,0.125597979613,0.3)); +#375 = CARTESIAN_POINT('',(0.139305739012,0.129942816573,0.302)); +#376 = CARTESIAN_POINT('',(0.139305739012,0.129942816573,0.3)); +#377 = CARTESIAN_POINT('',(0.137274202193,0.132680105907,0.302)); +#378 = CARTESIAN_POINT('',(0.137274202193,0.132680105907,0.3)); +#379 = CARTESIAN_POINT('',(0.135166012471,0.135041055005,0.302)); +#380 = CARTESIAN_POINT('',(0.135166012471,0.135041055005,0.3)); +#381 = CARTESIAN_POINT('',(0.13289013485,0.136953823277,0.302)); +#382 = CARTESIAN_POINT('',(0.13289013485,0.136953823277,0.3)); +#383 = CARTESIAN_POINT('',(0.130504993201,0.138467578871,0.302)); +#384 = CARTESIAN_POINT('',(0.130504993201,0.138467578871,0.3)); +#385 = CARTESIAN_POINT('',(0.128001855009,0.139586867053,0.302)); +#386 = CARTESIAN_POINT('',(0.128001855009,0.139586867053,0.3)); +#387 = CARTESIAN_POINT('',(0.125345363678,0.140208977662,0.302)); +#388 = CARTESIAN_POINT('',(0.125345363678,0.140208977662,0.3)); +#389 = CARTESIAN_POINT('',(0.123534491401,0.140288809942,0.302)); +#390 = CARTESIAN_POINT('',(0.123534491401,0.140288809942,0.3)); +#391 = CARTESIAN_POINT('',(0.122622552692,0.140329012749,0.302)); +#392 = CARTESIAN_POINT('',(0.122622552692,0.140329012749,0.3)); +#393 = DEFINITIONAL_REPRESENTATION('',(#394),#398); +#394 = LINE('',#395,#396); +#395 = CARTESIAN_POINT('',(0.,1.)); +#396 = VECTOR('',#397,1.); +#397 = DIRECTION('',(1.,0.)); +#398 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#399 = ORIENTED_EDGE('',*,*,#400,.T.); +#400 = EDGE_CURVE('',#323,#401,#403,.T.); +#401 = VERTEX_POINT('',#402); +#402 = CARTESIAN_POINT('',(0.111252391848,0.136830501719,0.3)); +#403 = SURFACE_CURVE('',#404,(#412,#423),.PCURVE_S1.); +#404 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#405,#406,#407,#408,#409,#410, + #411),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.,0.202268972619, + 0.436274764953,0.700784457956,1.),.UNSPECIFIED.); +#405 = CARTESIAN_POINT('',(0.122622552692,0.140329012749,0.3)); +#406 = CARTESIAN_POINT('',(0.121812575502,0.140287168412,0.3)); +#407 = CARTESIAN_POINT('',(0.120065532424,0.140196914193,0.3)); +#408 = CARTESIAN_POINT('',(0.11734777334,0.139452155879,0.3)); +#409 = CARTESIAN_POINT('',(0.114338363161,0.138385122952,0.3)); +#410 = CARTESIAN_POINT('',(0.112322419599,0.137369550107,0.3)); +#411 = CARTESIAN_POINT('',(0.111252391848,0.136830501719,0.3)); +#412 = PCURVE('',#48,#413); +#413 = DEFINITIONAL_REPRESENTATION('',(#414),#422); +#414 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#415,#416,#417,#418,#419,#420, + #421),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.,0.202268972619, + 0.436274764953,0.700784457956,1.),.UNSPECIFIED.); +#415 = CARTESIAN_POINT('',(-0.540329012749,0.922622552692)); +#416 = CARTESIAN_POINT('',(-0.540287168412,0.921812575502)); +#417 = CARTESIAN_POINT('',(-0.540196914193,0.920065532424)); +#418 = CARTESIAN_POINT('',(-0.539452155879,0.91734777334)); +#419 = CARTESIAN_POINT('',(-0.538385122952,0.914338363161)); +#420 = CARTESIAN_POINT('',(-0.537369550107,0.912322419599)); +#421 = CARTESIAN_POINT('',(-0.536830501719,0.911252391848)); +#422 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#423 = PCURVE('',#424,#439); +#424 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#425,#426) + ,(#427,#428) + ,(#429,#430) + ,(#431,#432) + ,(#433,#434) + ,(#435,#436) + ,(#437,#438 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,4),(2,2),(0.,0.202268972619, + 0.436274764953,0.700784457956,1.),(0.,1.),.UNSPECIFIED.); +#425 = CARTESIAN_POINT('',(0.122622552692,0.140329012749,0.302)); +#426 = CARTESIAN_POINT('',(0.122622552692,0.140329012749,0.3)); +#427 = CARTESIAN_POINT('',(0.121812575502,0.140287168412,0.302)); +#428 = CARTESIAN_POINT('',(0.121812575502,0.140287168412,0.3)); +#429 = CARTESIAN_POINT('',(0.120065532424,0.140196914193,0.302)); +#430 = CARTESIAN_POINT('',(0.120065532424,0.140196914193,0.3)); +#431 = CARTESIAN_POINT('',(0.11734777334,0.139452155879,0.302)); +#432 = CARTESIAN_POINT('',(0.11734777334,0.139452155879,0.3)); +#433 = CARTESIAN_POINT('',(0.114338363161,0.138385122952,0.302)); +#434 = CARTESIAN_POINT('',(0.114338363161,0.138385122952,0.3)); +#435 = CARTESIAN_POINT('',(0.112322419599,0.137369550107,0.302)); +#436 = CARTESIAN_POINT('',(0.112322419599,0.137369550107,0.3)); +#437 = CARTESIAN_POINT('',(0.111252391848,0.136830501719,0.302)); +#438 = CARTESIAN_POINT('',(0.111252391848,0.136830501719,0.3)); +#439 = DEFINITIONAL_REPRESENTATION('',(#440),#444); +#440 = LINE('',#441,#442); +#441 = CARTESIAN_POINT('',(0.,1.)); +#442 = VECTOR('',#443,1.); +#443 = DIRECTION('',(1.,0.)); +#444 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#445 = ORIENTED_EDGE('',*,*,#446,.T.); +#446 = EDGE_CURVE('',#401,#447,#449,.T.); +#447 = VERTEX_POINT('',#448); +#448 = CARTESIAN_POINT('',(0.113053096054,0.166464948084,0.3)); +#449 = SURFACE_CURVE('',#450,(#454,#461),.PCURVE_S1.); +#450 = LINE('',#451,#452); +#451 = CARTESIAN_POINT('',(0.111252391848,0.136830501719,0.3)); +#452 = VECTOR('',#453,1.); +#453 = DIRECTION('',(6.065202083714E-02,0.998158971491,1.3646619241E-16) + ); +#454 = PCURVE('',#48,#455); +#455 = DEFINITIONAL_REPRESENTATION('',(#456),#460); +#456 = LINE('',#457,#458); +#457 = CARTESIAN_POINT('',(-0.536830501719,0.911252391848)); +#458 = VECTOR('',#459,1.); +#459 = DIRECTION('',(-0.998158971491,6.065202083714E-02)); +#460 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#461 = PCURVE('',#462,#467); +#462 = PLANE('',#463); +#463 = AXIS2_PLACEMENT_3D('',#464,#465,#466); +#464 = CARTESIAN_POINT('',(0.111252391848,0.136830501719,0.302)); +#465 = DIRECTION('',(-0.998158971491,6.065202083714E-02, + 8.292216552691E-18)); +#466 = DIRECTION('',(-6.065202083714E-02,-0.998158971491, + -1.3646619241E-16)); +#467 = DEFINITIONAL_REPRESENTATION('',(#468),#472); +#468 = LINE('',#469,#470); +#469 = CARTESIAN_POINT('',(2.7293238482E-19,-2.E-03)); +#470 = VECTOR('',#471,1.); +#471 = DIRECTION('',(-1.,-5.898160454686E-34)); +#472 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#473 = ORIENTED_EDGE('',*,*,#474,.T.); +#474 = EDGE_CURVE('',#447,#475,#477,.T.); +#475 = VERTEX_POINT('',#476); +#476 = CARTESIAN_POINT('',(0.115625530634,0.166104807242,0.3)); +#477 = SURFACE_CURVE('',#478,(#484,#493),.PCURVE_S1.); +#478 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#479,#480,#481,#482,#483), + .UNSPECIFIED.,.F.,.F.,(4,1,4),(0.,0.562851224941,1.),.UNSPECIFIED.); +#479 = CARTESIAN_POINT('',(0.113053096054,0.166464948084,0.3)); +#480 = CARTESIAN_POINT('',(0.1135317099,0.166367496912,0.3)); +#481 = CARTESIAN_POINT('',(0.114382048007,0.166194358493,0.3)); +#482 = CARTESIAN_POINT('',(0.115247290805,0.166132046746,0.3)); +#483 = CARTESIAN_POINT('',(0.115625530634,0.166104807242,0.3)); +#484 = PCURVE('',#48,#485); +#485 = DEFINITIONAL_REPRESENTATION('',(#486),#492); +#486 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#487,#488,#489,#490,#491), + .UNSPECIFIED.,.F.,.F.,(4,1,4),(0.,0.562851224941,1.),.UNSPECIFIED.); +#487 = CARTESIAN_POINT('',(-0.566464948084,0.913053096054)); +#488 = CARTESIAN_POINT('',(-0.566367496912,0.9135317099)); +#489 = CARTESIAN_POINT('',(-0.566194358493,0.914382048007)); +#490 = CARTESIAN_POINT('',(-0.566132046746,0.915247290805)); +#491 = CARTESIAN_POINT('',(-0.566104807242,0.915625530634)); +#492 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#493 = PCURVE('',#494,#505); +#494 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#495,#496) + ,(#497,#498) + ,(#499,#500) + ,(#501,#502) + ,(#503,#504 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,4),(2,2),(0.,0.562851224941,1.),( + 0.,1.),.UNSPECIFIED.); +#495 = CARTESIAN_POINT('',(0.113053096054,0.166464948084,0.302)); +#496 = CARTESIAN_POINT('',(0.113053096054,0.166464948084,0.3)); +#497 = CARTESIAN_POINT('',(0.1135317099,0.166367496912,0.302)); +#498 = CARTESIAN_POINT('',(0.1135317099,0.166367496912,0.3)); +#499 = CARTESIAN_POINT('',(0.114382048007,0.166194358493,0.302)); +#500 = CARTESIAN_POINT('',(0.114382048007,0.166194358493,0.3)); +#501 = CARTESIAN_POINT('',(0.115247290805,0.166132046746,0.302)); +#502 = CARTESIAN_POINT('',(0.115247290805,0.166132046746,0.3)); +#503 = CARTESIAN_POINT('',(0.115625530634,0.166104807242,0.302)); +#504 = CARTESIAN_POINT('',(0.115625530634,0.166104807242,0.3)); +#505 = DEFINITIONAL_REPRESENTATION('',(#506),#510); +#506 = LINE('',#507,#508); +#507 = CARTESIAN_POINT('',(0.,1.)); +#508 = VECTOR('',#509,1.); +#509 = DIRECTION('',(1.,0.)); +#510 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#511 = ORIENTED_EDGE('',*,*,#512,.T.); +#512 = EDGE_CURVE('',#475,#513,#515,.T.); +#513 = VERTEX_POINT('',#514); +#514 = CARTESIAN_POINT('',(0.141710017278,0.20546305632,0.3)); +#515 = SURFACE_CURVE('',#516,(#532,#551),.PCURVE_S1.); +#516 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#517,#518,#519,#520,#521,#522, + #523,#524,#525,#526,#527,#528,#529,#530,#531),.UNSPECIFIED.,.F.,.F., + (4,1,1,1,1,1,1,1,1,1,1,1,4),(0.,9.379854088557E-02,0.188391653544, + 0.290002772036,0.402222240451,0.463152701044,0.526711567649, + 0.592953912456,0.664830528427,0.740161879456,0.821342102366, + 0.907899660995,1.),.UNSPECIFIED.); +#517 = CARTESIAN_POINT('',(0.115625530634,0.166104807242,0.3)); +#518 = CARTESIAN_POINT('',(0.117272471936,0.166225253916,0.3)); +#519 = CARTESIAN_POINT('',(0.120580305855,0.166467167572,0.3)); +#520 = CARTESIAN_POINT('',(0.125341910865,0.168429521933,0.3)); +#521 = CARTESIAN_POINT('',(0.129843682841,0.171469171897,0.3)); +#522 = CARTESIAN_POINT('',(0.133167187112,0.174986793086,0.3)); +#523 = CARTESIAN_POINT('',(0.135693374817,0.178285084711,0.3)); +#524 = CARTESIAN_POINT('',(0.137231937725,0.18126051157,0.3)); +#525 = CARTESIAN_POINT('',(0.138678919135,0.184484936833,0.3)); +#526 = CARTESIAN_POINT('',(0.13976124164,0.188070150162,0.3)); +#527 = CARTESIAN_POINT('',(0.140657660072,0.191970219252,0.3)); +#528 = CARTESIAN_POINT('',(0.141232548661,0.196189773595,0.3)); +#529 = CARTESIAN_POINT('',(0.141686387668,0.200720061932,0.3)); +#530 = CARTESIAN_POINT('',(0.141701979498,0.203849693061,0.3)); +#531 = CARTESIAN_POINT('',(0.141710017278,0.20546305632,0.3)); +#532 = PCURVE('',#48,#533); +#533 = DEFINITIONAL_REPRESENTATION('',(#534),#550); +#534 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#535,#536,#537,#538,#539,#540, + #541,#542,#543,#544,#545,#546,#547,#548,#549),.UNSPECIFIED.,.F.,.F., + (4,1,1,1,1,1,1,1,1,1,1,1,4),(0.,9.379854088557E-02,0.188391653544, + 0.290002772036,0.402222240451,0.463152701044,0.526711567649, + 0.592953912456,0.664830528427,0.740161879456,0.821342102366, + 0.907899660995,1.),.UNSPECIFIED.); +#535 = CARTESIAN_POINT('',(-0.566104807242,0.915625530634)); +#536 = CARTESIAN_POINT('',(-0.566225253916,0.917272471936)); +#537 = CARTESIAN_POINT('',(-0.566467167572,0.920580305855)); +#538 = CARTESIAN_POINT('',(-0.568429521933,0.925341910865)); +#539 = CARTESIAN_POINT('',(-0.571469171897,0.929843682841)); +#540 = CARTESIAN_POINT('',(-0.574986793086,0.933167187112)); +#541 = CARTESIAN_POINT('',(-0.578285084711,0.935693374817)); +#542 = CARTESIAN_POINT('',(-0.58126051157,0.937231937725)); +#543 = CARTESIAN_POINT('',(-0.584484936833,0.938678919135)); +#544 = CARTESIAN_POINT('',(-0.588070150162,0.93976124164)); +#545 = CARTESIAN_POINT('',(-0.591970219252,0.940657660072)); +#546 = CARTESIAN_POINT('',(-0.596189773595,0.941232548661)); +#547 = CARTESIAN_POINT('',(-0.600720061932,0.941686387668)); +#548 = CARTESIAN_POINT('',(-0.603849693061,0.941701979498)); +#549 = CARTESIAN_POINT('',(-0.60546305632,0.941710017278)); +#550 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#551 = PCURVE('',#552,#583); +#552 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#553,#554) + ,(#555,#556) + ,(#557,#558) + ,(#559,#560) + ,(#561,#562) + ,(#563,#564) + ,(#565,#566) + ,(#567,#568) + ,(#569,#570) + ,(#571,#572) + ,(#573,#574) + ,(#575,#576) + ,(#577,#578) + ,(#579,#580) + ,(#581,#582 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(2,2),(0., + 9.379854088557E-02,0.188391653544,0.290002772036,0.402222240451, + 0.463152701044,0.526711567649,0.592953912456,0.664830528427, + 0.740161879456,0.821342102366,0.907899660995,1.),(0.,1.), + .UNSPECIFIED.); +#553 = CARTESIAN_POINT('',(0.115625530634,0.166104807242,0.302)); +#554 = CARTESIAN_POINT('',(0.115625530634,0.166104807242,0.3)); +#555 = CARTESIAN_POINT('',(0.117272471936,0.166225253916,0.302)); +#556 = CARTESIAN_POINT('',(0.117272471936,0.166225253916,0.3)); +#557 = CARTESIAN_POINT('',(0.120580305855,0.166467167572,0.302)); +#558 = CARTESIAN_POINT('',(0.120580305855,0.166467167572,0.3)); +#559 = CARTESIAN_POINT('',(0.125341910865,0.168429521933,0.302)); +#560 = CARTESIAN_POINT('',(0.125341910865,0.168429521933,0.3)); +#561 = CARTESIAN_POINT('',(0.129843682841,0.171469171897,0.302)); +#562 = CARTESIAN_POINT('',(0.129843682841,0.171469171897,0.3)); +#563 = CARTESIAN_POINT('',(0.133167187112,0.174986793086,0.302)); +#564 = CARTESIAN_POINT('',(0.133167187112,0.174986793086,0.3)); +#565 = CARTESIAN_POINT('',(0.135693374817,0.178285084711,0.302)); +#566 = CARTESIAN_POINT('',(0.135693374817,0.178285084711,0.3)); +#567 = CARTESIAN_POINT('',(0.137231937725,0.18126051157,0.302)); +#568 = CARTESIAN_POINT('',(0.137231937725,0.18126051157,0.3)); +#569 = CARTESIAN_POINT('',(0.138678919135,0.184484936833,0.302)); +#570 = CARTESIAN_POINT('',(0.138678919135,0.184484936833,0.3)); +#571 = CARTESIAN_POINT('',(0.13976124164,0.188070150162,0.302)); +#572 = CARTESIAN_POINT('',(0.13976124164,0.188070150162,0.3)); +#573 = CARTESIAN_POINT('',(0.140657660072,0.191970219252,0.302)); +#574 = CARTESIAN_POINT('',(0.140657660072,0.191970219252,0.3)); +#575 = CARTESIAN_POINT('',(0.141232548661,0.196189773595,0.302)); +#576 = CARTESIAN_POINT('',(0.141232548661,0.196189773595,0.3)); +#577 = CARTESIAN_POINT('',(0.141686387668,0.200720061932,0.302)); +#578 = CARTESIAN_POINT('',(0.141686387668,0.200720061932,0.3)); +#579 = CARTESIAN_POINT('',(0.141701979498,0.203849693061,0.302)); +#580 = CARTESIAN_POINT('',(0.141701979498,0.203849693061,0.3)); +#581 = CARTESIAN_POINT('',(0.141710017278,0.20546305632,0.302)); +#582 = CARTESIAN_POINT('',(0.141710017278,0.20546305632,0.3)); +#583 = DEFINITIONAL_REPRESENTATION('',(#584),#588); +#584 = LINE('',#585,#586); +#585 = CARTESIAN_POINT('',(0.,1.)); +#586 = VECTOR('',#587,1.); +#587 = DIRECTION('',(1.,0.)); +#588 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#589 = ORIENTED_EDGE('',*,*,#590,.T.); +#590 = EDGE_CURVE('',#513,#591,#593,.T.); +#591 = VERTEX_POINT('',#592); +#592 = CARTESIAN_POINT('',(0.119792874654,0.242197422125,0.3)); +#593 = SURFACE_CURVE('',#594,(#606,#621),.PCURVE_S1.); +#594 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#595,#596,#597,#598,#599,#600, + #601,#602,#603,#604,#605),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,4), + (0.,0.161713776497,0.310105544098,0.44820620169,0.579033460028, + 0.698679440002,0.803098988682,0.900750900152,1.),.UNSPECIFIED.); +#595 = CARTESIAN_POINT('',(0.141710017278,0.20546305632,0.3)); +#596 = CARTESIAN_POINT('',(0.141658192574,0.208006973802,0.3)); +#597 = CARTESIAN_POINT('',(0.141558812494,0.212885240404,0.3)); +#598 = CARTESIAN_POINT('',(0.140327396217,0.219843774437,0.3)); +#599 = CARTESIAN_POINT('',(0.138461069628,0.22614926037,0.3)); +#600 = CARTESIAN_POINT('',(0.135816014373,0.231679174327,0.3)); +#601 = CARTESIAN_POINT('',(0.132609362285,0.236288516346,0.3)); +#602 = CARTESIAN_POINT('',(0.128811784606,0.239691462348,0.3)); +#603 = CARTESIAN_POINT('',(0.124465920513,0.241820390132,0.3)); +#604 = CARTESIAN_POINT('',(0.121358957453,0.242071066995,0.3)); +#605 = CARTESIAN_POINT('',(0.119792874654,0.242197422125,0.3)); +#606 = PCURVE('',#48,#607); +#607 = DEFINITIONAL_REPRESENTATION('',(#608),#620); +#608 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#609,#610,#611,#612,#613,#614, + #615,#616,#617,#618,#619),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,4), + (0.,0.161713776497,0.310105544098,0.44820620169,0.579033460028, + 0.698679440002,0.803098988682,0.900750900152,1.),.UNSPECIFIED.); +#609 = CARTESIAN_POINT('',(-0.60546305632,0.941710017278)); +#610 = CARTESIAN_POINT('',(-0.608006973802,0.941658192574)); +#611 = CARTESIAN_POINT('',(-0.612885240404,0.941558812494)); +#612 = CARTESIAN_POINT('',(-0.619843774437,0.940327396217)); +#613 = CARTESIAN_POINT('',(-0.62614926037,0.938461069628)); +#614 = CARTESIAN_POINT('',(-0.631679174327,0.935816014373)); +#615 = CARTESIAN_POINT('',(-0.636288516346,0.932609362285)); +#616 = CARTESIAN_POINT('',(-0.639691462348,0.928811784606)); +#617 = CARTESIAN_POINT('',(-0.641820390132,0.924465920513)); +#618 = CARTESIAN_POINT('',(-0.642071066995,0.921358957453)); +#619 = CARTESIAN_POINT('',(-0.642197422125,0.919792874654)); +#620 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#621 = PCURVE('',#622,#645); +#622 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#623,#624) + ,(#625,#626) + ,(#627,#628) + ,(#629,#630) + ,(#631,#632) + ,(#633,#634) + ,(#635,#636) + ,(#637,#638) + ,(#639,#640) + ,(#641,#642) + ,(#643,#644 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,4),(2,2),(0., + 0.161713776497,0.310105544098,0.44820620169,0.579033460028, + 0.698679440002,0.803098988682,0.900750900152,1.),(0.,1.), + .UNSPECIFIED.); +#623 = CARTESIAN_POINT('',(0.141710017278,0.20546305632,0.302)); +#624 = CARTESIAN_POINT('',(0.141710017278,0.20546305632,0.3)); +#625 = CARTESIAN_POINT('',(0.141658192574,0.208006973802,0.302)); +#626 = CARTESIAN_POINT('',(0.141658192574,0.208006973802,0.3)); +#627 = CARTESIAN_POINT('',(0.141558812494,0.212885240404,0.302)); +#628 = CARTESIAN_POINT('',(0.141558812494,0.212885240404,0.3)); +#629 = CARTESIAN_POINT('',(0.140327396217,0.219843774437,0.302)); +#630 = CARTESIAN_POINT('',(0.140327396217,0.219843774437,0.3)); +#631 = CARTESIAN_POINT('',(0.138461069628,0.22614926037,0.302)); +#632 = CARTESIAN_POINT('',(0.138461069628,0.22614926037,0.3)); +#633 = CARTESIAN_POINT('',(0.135816014373,0.231679174327,0.302)); +#634 = CARTESIAN_POINT('',(0.135816014373,0.231679174327,0.3)); +#635 = CARTESIAN_POINT('',(0.132609362285,0.236288516346,0.302)); +#636 = CARTESIAN_POINT('',(0.132609362285,0.236288516346,0.3)); +#637 = CARTESIAN_POINT('',(0.128811784606,0.239691462348,0.302)); +#638 = CARTESIAN_POINT('',(0.128811784606,0.239691462348,0.3)); +#639 = CARTESIAN_POINT('',(0.124465920513,0.241820390132,0.302)); +#640 = CARTESIAN_POINT('',(0.124465920513,0.241820390132,0.3)); +#641 = CARTESIAN_POINT('',(0.121358957453,0.242071066995,0.302)); +#642 = CARTESIAN_POINT('',(0.121358957453,0.242071066995,0.3)); +#643 = CARTESIAN_POINT('',(0.119792874654,0.242197422125,0.302)); +#644 = CARTESIAN_POINT('',(0.119792874654,0.242197422125,0.3)); +#645 = DEFINITIONAL_REPRESENTATION('',(#646),#650); +#646 = LINE('',#647,#648); +#647 = CARTESIAN_POINT('',(0.,1.)); +#648 = VECTOR('',#649,1.); +#649 = DIRECTION('',(1.,0.)); +#650 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#651 = ORIENTED_EDGE('',*,*,#652,.T.); +#652 = EDGE_CURVE('',#591,#653,#655,.T.); +#653 = VERTEX_POINT('',#654); +#654 = CARTESIAN_POINT('',(9.561198960003E-02,0.202684826973,0.3)); +#655 = SURFACE_CURVE('',#656,(#668,#683),.PCURVE_S1.); +#656 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#657,#658,#659,#660,#661,#662, + #663,#664,#665,#666,#667),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,4), + (0.,9.126362437977E-02,0.18227228237,0.27908730912,0.387648952183, + 0.511279668023,0.653335087164,0.815589860134,1.),.UNSPECIFIED.); +#657 = CARTESIAN_POINT('',(0.119792874654,0.242197422125,0.3)); +#658 = CARTESIAN_POINT('',(0.118246919394,0.242081541327,0.3)); +#659 = CARTESIAN_POINT('',(0.115159327863,0.24185010347,0.3)); +#660 = CARTESIAN_POINT('',(0.110791673482,0.239848280411,0.3)); +#661 = CARTESIAN_POINT('',(0.10691015091,0.236633271892,0.3)); +#662 = CARTESIAN_POINT('',(0.103495010222,0.232201282863,0.3)); +#663 = CARTESIAN_POINT('',(0.100649165418,0.226533137035,0.3)); +#664 = CARTESIAN_POINT('',(9.830207110176E-02,0.21968451525,0.3)); +#665 = CARTESIAN_POINT('',(9.659229936985E-02,0.211596472273,0.3)); +#666 = CARTESIAN_POINT('',(9.595239169733E-02,0.205779300622,0.3)); +#667 = CARTESIAN_POINT('',(9.561198960003E-02,0.202684826973,0.3)); +#668 = PCURVE('',#48,#669); +#669 = DEFINITIONAL_REPRESENTATION('',(#670),#682); +#670 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#671,#672,#673,#674,#675,#676, + #677,#678,#679,#680,#681),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,4), + (0.,9.126362437977E-02,0.18227228237,0.27908730912,0.387648952183, + 0.511279668023,0.653335087164,0.815589860134,1.),.UNSPECIFIED.); +#671 = CARTESIAN_POINT('',(-0.642197422125,0.919792874654)); +#672 = CARTESIAN_POINT('',(-0.642081541327,0.918246919394)); +#673 = CARTESIAN_POINT('',(-0.64185010347,0.915159327863)); +#674 = CARTESIAN_POINT('',(-0.639848280411,0.910791673482)); +#675 = CARTESIAN_POINT('',(-0.636633271892,0.90691015091)); +#676 = CARTESIAN_POINT('',(-0.632201282863,0.903495010222)); +#677 = CARTESIAN_POINT('',(-0.626533137035,0.900649165418)); +#678 = CARTESIAN_POINT('',(-0.61968451525,0.898302071102)); +#679 = CARTESIAN_POINT('',(-0.611596472273,0.89659229937)); +#680 = CARTESIAN_POINT('',(-0.605779300622,0.895952391697)); +#681 = CARTESIAN_POINT('',(-0.602684826973,0.8956119896)); +#682 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#683 = PCURVE('',#684,#707); +#684 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#685,#686) + ,(#687,#688) + ,(#689,#690) + ,(#691,#692) + ,(#693,#694) + ,(#695,#696) + ,(#697,#698) + ,(#699,#700) + ,(#701,#702) + ,(#703,#704) + ,(#705,#706 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,4),(2,2),(0., + 9.126362437977E-02,0.18227228237,0.27908730912,0.387648952183, + 0.511279668023,0.653335087164,0.815589860134,1.),(0.,1.), + .UNSPECIFIED.); +#685 = CARTESIAN_POINT('',(0.119792874654,0.242197422125,0.302)); +#686 = CARTESIAN_POINT('',(0.119792874654,0.242197422125,0.3)); +#687 = CARTESIAN_POINT('',(0.118246919394,0.242081541327,0.302)); +#688 = CARTESIAN_POINT('',(0.118246919394,0.242081541327,0.3)); +#689 = CARTESIAN_POINT('',(0.115159327863,0.24185010347,0.302)); +#690 = CARTESIAN_POINT('',(0.115159327863,0.24185010347,0.3)); +#691 = CARTESIAN_POINT('',(0.110791673482,0.239848280411,0.302)); +#692 = CARTESIAN_POINT('',(0.110791673482,0.239848280411,0.3)); +#693 = CARTESIAN_POINT('',(0.10691015091,0.236633271892,0.302)); +#694 = CARTESIAN_POINT('',(0.10691015091,0.236633271892,0.3)); +#695 = CARTESIAN_POINT('',(0.103495010222,0.232201282863,0.302)); +#696 = CARTESIAN_POINT('',(0.103495010222,0.232201282863,0.3)); +#697 = CARTESIAN_POINT('',(0.100649165418,0.226533137035,0.302)); +#698 = CARTESIAN_POINT('',(0.100649165418,0.226533137035,0.3)); +#699 = CARTESIAN_POINT('',(9.830207110176E-02,0.21968451525,0.302)); +#700 = CARTESIAN_POINT('',(9.830207110176E-02,0.21968451525,0.3)); +#701 = CARTESIAN_POINT('',(9.659229936985E-02,0.211596472273,0.302)); +#702 = CARTESIAN_POINT('',(9.659229936985E-02,0.211596472273,0.3)); +#703 = CARTESIAN_POINT('',(9.595239169733E-02,0.205779300622,0.302)); +#704 = CARTESIAN_POINT('',(9.595239169733E-02,0.205779300622,0.3)); +#705 = CARTESIAN_POINT('',(9.561198960003E-02,0.202684826973,0.302)); +#706 = CARTESIAN_POINT('',(9.561198960003E-02,0.202684826973,0.3)); +#707 = DEFINITIONAL_REPRESENTATION('',(#708),#712); +#708 = LINE('',#709,#710); +#709 = CARTESIAN_POINT('',(0.,1.)); +#710 = VECTOR('',#711,1.); +#711 = DIRECTION('',(1.,0.)); +#712 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#713 = ORIENTED_EDGE('',*,*,#714,.T.); +#714 = EDGE_CURVE('',#653,#715,#717,.T.); +#715 = VERTEX_POINT('',#716); +#716 = CARTESIAN_POINT('',(7.914840828659E-02,0.205977543236,0.3)); +#717 = SURFACE_CURVE('',#718,(#722,#729),.PCURVE_S1.); +#718 = LINE('',#719,#720); +#719 = CARTESIAN_POINT('',(9.561198960003E-02,0.202684826973,0.3)); +#720 = VECTOR('',#721,1.); +#721 = DIRECTION('',(-0.980580675691,0.196116135138,2.681258496579E-17) + ); +#722 = PCURVE('',#48,#723); +#723 = DEFINITIONAL_REPRESENTATION('',(#724),#728); +#724 = LINE('',#725,#726); +#725 = CARTESIAN_POINT('',(-0.602684826973,0.8956119896)); +#726 = VECTOR('',#727,1.); +#727 = DIRECTION('',(-0.196116135138,-0.980580675691)); +#728 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#729 = PCURVE('',#730,#735); +#730 = PLANE('',#731); +#731 = AXIS2_PLACEMENT_3D('',#732,#733,#734); +#732 = CARTESIAN_POINT('',(9.561198960003E-02,0.202684826973,0.302)); +#733 = DIRECTION('',(-0.196116135138,-0.980580675691,-1.340629248289E-16 + )); +#734 = DIRECTION('',(0.980580675691,-0.196116135138,-2.681258496579E-17) + ); +#735 = DEFINITIONAL_REPRESENTATION('',(#736),#740); +#736 = LINE('',#737,#738); +#737 = CARTESIAN_POINT('',(5.362516993158E-20,-2.E-03)); +#738 = VECTOR('',#739,1.); +#739 = DIRECTION('',(-1.,1.530211526126E-33)); +#740 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#741 = ORIENTED_EDGE('',*,*,#742,.T.); +#742 = EDGE_CURVE('',#715,#743,#745,.T.); +#743 = VERTEX_POINT('',#744); +#744 = CARTESIAN_POINT('',(0.119226939046,0.27183186849,0.3)); +#745 = SURFACE_CURVE('',#746,(#766,#789),.PCURVE_S1.); +#746 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#747,#748,#749,#750,#751,#752, + #753,#754,#755,#756,#757,#758,#759,#760,#761,#762,#763,#764,#765), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(0., + 9.122476984126E-02,0.177913863773,0.259697360619,0.336778990913, + 0.409803700408,0.478608773912,0.54408804914,0.605766121966, + 0.664020565669,0.71835496815,0.768590650062,0.816722075277, + 0.863055298693,0.908208072643,0.95397126985,1.),.UNSPECIFIED.); +#747 = CARTESIAN_POINT('',(7.914840828659E-02,0.205977543236,0.3)); +#748 = CARTESIAN_POINT('',(7.942263179121E-02,0.208517790933,0.3)); +#749 = CARTESIAN_POINT('',(7.995744446684E-02,0.213471985759,0.3)); +#750 = CARTESIAN_POINT('',(8.102656814399E-02,0.220668344575,0.3)); +#751 = CARTESIAN_POINT('',(8.234956651353E-02,0.227420410235,0.3)); +#752 = CARTESIAN_POINT('',(8.396370016147E-02,0.233713279684,0.3)); +#753 = CARTESIAN_POINT('',(8.573135924342E-02,0.23958709514,0.3)); +#754 = CARTESIAN_POINT('',(8.779849653291E-02,0.245017929677,0.3)); +#755 = CARTESIAN_POINT('',(9.010282777064E-02,0.250004184549,0.3)); +#756 = CARTESIAN_POINT('',(9.26259501583E-02,0.254546928892,0.3)); +#757 = CARTESIAN_POINT('',(9.531783995478E-02,0.258628423011,0.3)); +#758 = CARTESIAN_POINT('',(9.826109596403E-02,0.262121960092,0.3)); +#759 = CARTESIAN_POINT('',(0.101319031097,0.265125765411,0.3)); +#760 = CARTESIAN_POINT('',(0.104580653649,0.26754877688,0.3)); +#761 = CARTESIAN_POINT('',(0.107988298022,0.269495502836,0.3)); +#762 = CARTESIAN_POINT('',(0.111604056843,0.270834943159,0.3)); +#763 = CARTESIAN_POINT('',(0.11536176041,0.271697887748,0.3)); +#764 = CARTESIAN_POINT('',(0.117936063878,0.271787122197,0.3)); +#765 = CARTESIAN_POINT('',(0.119226939046,0.27183186849,0.3)); +#766 = PCURVE('',#48,#767); +#767 = DEFINITIONAL_REPRESENTATION('',(#768),#788); +#768 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#769,#770,#771,#772,#773,#774, + #775,#776,#777,#778,#779,#780,#781,#782,#783,#784,#785,#786,#787), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(0., + 9.122476984126E-02,0.177913863773,0.259697360619,0.336778990913, + 0.409803700408,0.478608773912,0.54408804914,0.605766121966, + 0.664020565669,0.71835496815,0.768590650062,0.816722075277, + 0.863055298693,0.908208072643,0.95397126985,1.),.UNSPECIFIED.); +#769 = CARTESIAN_POINT('',(-0.605977543236,0.879148408287)); +#770 = CARTESIAN_POINT('',(-0.608517790933,0.879422631791)); +#771 = CARTESIAN_POINT('',(-0.613471985759,0.879957444467)); +#772 = CARTESIAN_POINT('',(-0.620668344575,0.881026568144)); +#773 = CARTESIAN_POINT('',(-0.627420410235,0.882349566514)); +#774 = CARTESIAN_POINT('',(-0.633713279684,0.883963700161)); +#775 = CARTESIAN_POINT('',(-0.63958709514,0.885731359243)); +#776 = CARTESIAN_POINT('',(-0.645017929677,0.887798496533)); +#777 = CARTESIAN_POINT('',(-0.650004184549,0.890102827771)); +#778 = CARTESIAN_POINT('',(-0.654546928892,0.892625950158)); +#779 = CARTESIAN_POINT('',(-0.658628423011,0.895317839955)); +#780 = CARTESIAN_POINT('',(-0.662121960092,0.898261095964)); +#781 = CARTESIAN_POINT('',(-0.665125765411,0.901319031097)); +#782 = CARTESIAN_POINT('',(-0.66754877688,0.904580653649)); +#783 = CARTESIAN_POINT('',(-0.669495502836,0.907988298022)); +#784 = CARTESIAN_POINT('',(-0.670834943159,0.911604056843)); +#785 = CARTESIAN_POINT('',(-0.671697887748,0.91536176041)); +#786 = CARTESIAN_POINT('',(-0.671787122197,0.917936063878)); +#787 = CARTESIAN_POINT('',(-0.67183186849,0.919226939046)); +#788 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#789 = PCURVE('',#790,#829); +#790 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#791,#792) + ,(#793,#794) + ,(#795,#796) + ,(#797,#798) + ,(#799,#800) + ,(#801,#802) + ,(#803,#804) + ,(#805,#806) + ,(#807,#808) + ,(#809,#810) + ,(#811,#812) + ,(#813,#814) + ,(#815,#816) + ,(#817,#818) + ,(#819,#820) + ,(#821,#822) + ,(#823,#824) + ,(#825,#826) + ,(#827,#828 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, + 2),(0.,9.122476984126E-02,0.177913863773,0.259697360619, + 0.336778990913,0.409803700408,0.478608773912,0.54408804914, + 0.605766121966,0.664020565669,0.71835496815,0.768590650062, + 0.816722075277,0.863055298693,0.908208072643,0.95397126985,1.),(0., + 1.),.UNSPECIFIED.); +#791 = CARTESIAN_POINT('',(7.914840828659E-02,0.205977543236,0.302)); +#792 = CARTESIAN_POINT('',(7.914840828659E-02,0.205977543236,0.3)); +#793 = CARTESIAN_POINT('',(7.942263179121E-02,0.208517790933,0.302)); +#794 = CARTESIAN_POINT('',(7.942263179121E-02,0.208517790933,0.3)); +#795 = CARTESIAN_POINT('',(7.995744446684E-02,0.213471985759,0.302)); +#796 = CARTESIAN_POINT('',(7.995744446684E-02,0.213471985759,0.3)); +#797 = CARTESIAN_POINT('',(8.102656814399E-02,0.220668344575,0.302)); +#798 = CARTESIAN_POINT('',(8.102656814399E-02,0.220668344575,0.3)); +#799 = CARTESIAN_POINT('',(8.234956651353E-02,0.227420410235,0.302)); +#800 = CARTESIAN_POINT('',(8.234956651353E-02,0.227420410235,0.3)); +#801 = CARTESIAN_POINT('',(8.396370016147E-02,0.233713279684,0.302)); +#802 = CARTESIAN_POINT('',(8.396370016147E-02,0.233713279684,0.3)); +#803 = CARTESIAN_POINT('',(8.573135924342E-02,0.23958709514,0.302)); +#804 = CARTESIAN_POINT('',(8.573135924342E-02,0.23958709514,0.3)); +#805 = CARTESIAN_POINT('',(8.779849653291E-02,0.245017929677,0.302)); +#806 = CARTESIAN_POINT('',(8.779849653291E-02,0.245017929677,0.3)); +#807 = CARTESIAN_POINT('',(9.010282777064E-02,0.250004184549,0.302)); +#808 = CARTESIAN_POINT('',(9.010282777064E-02,0.250004184549,0.3)); +#809 = CARTESIAN_POINT('',(9.26259501583E-02,0.254546928892,0.302)); +#810 = CARTESIAN_POINT('',(9.26259501583E-02,0.254546928892,0.3)); +#811 = CARTESIAN_POINT('',(9.531783995478E-02,0.258628423011,0.302)); +#812 = CARTESIAN_POINT('',(9.531783995478E-02,0.258628423011,0.3)); +#813 = CARTESIAN_POINT('',(9.826109596403E-02,0.262121960092,0.302)); +#814 = CARTESIAN_POINT('',(9.826109596403E-02,0.262121960092,0.3)); +#815 = CARTESIAN_POINT('',(0.101319031097,0.265125765411,0.302)); +#816 = CARTESIAN_POINT('',(0.101319031097,0.265125765411,0.3)); +#817 = CARTESIAN_POINT('',(0.104580653649,0.26754877688,0.302)); +#818 = CARTESIAN_POINT('',(0.104580653649,0.26754877688,0.3)); +#819 = CARTESIAN_POINT('',(0.107988298022,0.269495502836,0.302)); +#820 = CARTESIAN_POINT('',(0.107988298022,0.269495502836,0.3)); +#821 = CARTESIAN_POINT('',(0.111604056843,0.270834943159,0.302)); +#822 = CARTESIAN_POINT('',(0.111604056843,0.270834943159,0.3)); +#823 = CARTESIAN_POINT('',(0.11536176041,0.271697887748,0.302)); +#824 = CARTESIAN_POINT('',(0.11536176041,0.271697887748,0.3)); +#825 = CARTESIAN_POINT('',(0.117936063878,0.271787122197,0.302)); +#826 = CARTESIAN_POINT('',(0.117936063878,0.271787122197,0.3)); +#827 = CARTESIAN_POINT('',(0.119226939046,0.27183186849,0.302)); +#828 = CARTESIAN_POINT('',(0.119226939046,0.27183186849,0.3)); +#829 = DEFINITIONAL_REPRESENTATION('',(#830),#834); +#830 = LINE('',#831,#832); +#831 = CARTESIAN_POINT('',(0.,1.)); +#832 = VECTOR('',#833,1.); +#833 = DIRECTION('',(1.,0.)); +#834 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#835 = ORIENTED_EDGE('',*,*,#836,.T.); +#836 = EDGE_CURVE('',#743,#837,#839,.T.); +#837 = VERTEX_POINT('',#838); +#838 = CARTESIAN_POINT('',(0.158173598591,0.206543478843,0.3)); +#839 = SURFACE_CURVE('',#840,(#856,#875),.PCURVE_S1.); +#840 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#841,#842,#843,#844,#845,#846, + #847,#848,#849,#850,#851,#852,#853,#854,#855),.UNSPECIFIED.,.F.,.F., + (4,1,1,1,1,1,1,1,1,1,1,1,4),(0.,6.387538380381E-02,0.12861994085, + 0.196003510006,0.268720312566,0.345997735741,0.427237937522, + 0.51355471408,0.606225684137,0.702279552613,0.799517688897, + 0.898802923895,1.),.UNSPECIFIED.); +#841 = CARTESIAN_POINT('',(0.119226939046,0.27183186849,0.3)); +#842 = CARTESIAN_POINT('',(0.121005319564,0.27171735703,0.3)); +#843 = CARTESIAN_POINT('',(0.124586279606,0.271486775915,0.3)); +#844 = CARTESIAN_POINT('',(0.129821310946,0.269761218325,0.3)); +#845 = CARTESIAN_POINT('',(0.134777221861,0.266893256078,0.3)); +#846 = CARTESIAN_POINT('',(0.13943575464,0.263000821987,0.3)); +#847 = CARTESIAN_POINT('',(0.14375146343,0.258205698873,0.3)); +#848 = CARTESIAN_POINT('',(0.147571454268,0.25254422923,0.3)); +#849 = CARTESIAN_POINT('',(0.150819844871,0.246054036992,0.3)); +#850 = CARTESIAN_POINT('',(0.153394946348,0.238840613046,0.3)); +#851 = CARTESIAN_POINT('',(0.15558652488,0.231185982165,0.3)); +#852 = CARTESIAN_POINT('',(0.157028092774,0.223168697578,0.3)); +#853 = CARTESIAN_POINT('',(0.158005058872,0.214936606152,0.3)); +#854 = CARTESIAN_POINT('',(0.158117062654,0.209358917945,0.3)); +#855 = CARTESIAN_POINT('',(0.158173598591,0.206543478843,0.3)); +#856 = PCURVE('',#48,#857); +#857 = DEFINITIONAL_REPRESENTATION('',(#858),#874); +#858 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#859,#860,#861,#862,#863,#864, + #865,#866,#867,#868,#869,#870,#871,#872,#873),.UNSPECIFIED.,.F.,.F., + (4,1,1,1,1,1,1,1,1,1,1,1,4),(0.,6.387538380381E-02,0.12861994085, + 0.196003510006,0.268720312566,0.345997735741,0.427237937522, + 0.51355471408,0.606225684137,0.702279552613,0.799517688897, + 0.898802923895,1.),.UNSPECIFIED.); +#859 = CARTESIAN_POINT('',(-0.67183186849,0.919226939046)); +#860 = CARTESIAN_POINT('',(-0.67171735703,0.921005319564)); +#861 = CARTESIAN_POINT('',(-0.671486775915,0.924586279606)); +#862 = CARTESIAN_POINT('',(-0.669761218325,0.929821310946)); +#863 = CARTESIAN_POINT('',(-0.666893256078,0.934777221861)); +#864 = CARTESIAN_POINT('',(-0.663000821987,0.93943575464)); +#865 = CARTESIAN_POINT('',(-0.658205698873,0.94375146343)); +#866 = CARTESIAN_POINT('',(-0.65254422923,0.947571454268)); +#867 = CARTESIAN_POINT('',(-0.646054036992,0.950819844871)); +#868 = CARTESIAN_POINT('',(-0.638840613046,0.953394946348)); +#869 = CARTESIAN_POINT('',(-0.631185982165,0.95558652488)); +#870 = CARTESIAN_POINT('',(-0.623168697578,0.957028092774)); +#871 = CARTESIAN_POINT('',(-0.614936606152,0.958005058872)); +#872 = CARTESIAN_POINT('',(-0.609358917945,0.958117062654)); +#873 = CARTESIAN_POINT('',(-0.606543478843,0.958173598591)); +#874 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#875 = PCURVE('',#876,#907); +#876 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#877,#878) + ,(#879,#880) + ,(#881,#882) + ,(#883,#884) + ,(#885,#886) + ,(#887,#888) + ,(#889,#890) + ,(#891,#892) + ,(#893,#894) + ,(#895,#896) + ,(#897,#898) + ,(#899,#900) + ,(#901,#902) + ,(#903,#904) + ,(#905,#906 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(2,2),(0., + 6.387538380381E-02,0.12861994085,0.196003510006,0.268720312566, + 0.345997735741,0.427237937522,0.51355471408,0.606225684137, + 0.702279552613,0.799517688897,0.898802923895,1.),(0.,1.), + .UNSPECIFIED.); +#877 = CARTESIAN_POINT('',(0.119226939046,0.27183186849,0.302)); +#878 = CARTESIAN_POINT('',(0.119226939046,0.27183186849,0.3)); +#879 = CARTESIAN_POINT('',(0.121005319564,0.27171735703,0.302)); +#880 = CARTESIAN_POINT('',(0.121005319564,0.27171735703,0.3)); +#881 = CARTESIAN_POINT('',(0.124586279606,0.271486775915,0.302)); +#882 = CARTESIAN_POINT('',(0.124586279606,0.271486775915,0.3)); +#883 = CARTESIAN_POINT('',(0.129821310946,0.269761218325,0.302)); +#884 = CARTESIAN_POINT('',(0.129821310946,0.269761218325,0.3)); +#885 = CARTESIAN_POINT('',(0.134777221861,0.266893256078,0.302)); +#886 = CARTESIAN_POINT('',(0.134777221861,0.266893256078,0.3)); +#887 = CARTESIAN_POINT('',(0.13943575464,0.263000821987,0.302)); +#888 = CARTESIAN_POINT('',(0.13943575464,0.263000821987,0.3)); +#889 = CARTESIAN_POINT('',(0.14375146343,0.258205698873,0.302)); +#890 = CARTESIAN_POINT('',(0.14375146343,0.258205698873,0.3)); +#891 = CARTESIAN_POINT('',(0.147571454268,0.25254422923,0.302)); +#892 = CARTESIAN_POINT('',(0.147571454268,0.25254422923,0.3)); +#893 = CARTESIAN_POINT('',(0.150819844871,0.246054036992,0.302)); +#894 = CARTESIAN_POINT('',(0.150819844871,0.246054036992,0.3)); +#895 = CARTESIAN_POINT('',(0.153394946348,0.238840613046,0.302)); +#896 = CARTESIAN_POINT('',(0.153394946348,0.238840613046,0.3)); +#897 = CARTESIAN_POINT('',(0.15558652488,0.231185982165,0.302)); +#898 = CARTESIAN_POINT('',(0.15558652488,0.231185982165,0.3)); +#899 = CARTESIAN_POINT('',(0.157028092774,0.223168697578,0.302)); +#900 = CARTESIAN_POINT('',(0.157028092774,0.223168697578,0.3)); +#901 = CARTESIAN_POINT('',(0.158005058872,0.214936606152,0.302)); +#902 = CARTESIAN_POINT('',(0.158005058872,0.214936606152,0.3)); +#903 = CARTESIAN_POINT('',(0.158117062654,0.209358917945,0.302)); +#904 = CARTESIAN_POINT('',(0.158117062654,0.209358917945,0.3)); +#905 = CARTESIAN_POINT('',(0.158173598591,0.206543478843,0.302)); +#906 = CARTESIAN_POINT('',(0.158173598591,0.206543478843,0.3)); +#907 = DEFINITIONAL_REPRESENTATION('',(#908),#912); +#908 = LINE('',#909,#910); +#909 = CARTESIAN_POINT('',(0.,1.)); +#910 = VECTOR('',#911,1.); +#911 = DIRECTION('',(1.,0.)); +#912 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#913 = ORIENTED_EDGE('',*,*,#914,.T.); +#914 = EDGE_CURVE('',#837,#915,#917,.T.); +#915 = VERTEX_POINT('',#916); +#916 = CARTESIAN_POINT('',(0.140629594754,0.155609274155,0.3)); +#917 = SURFACE_CURVE('',#918,(#930,#945),.PCURVE_S1.); +#918 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#919,#920,#921,#922,#923,#924, + #925,#926,#927,#928,#929),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,4), + (0.,0.144088321347,0.282399129672,0.414872702475,0.544283974604, + 0.666959324827,0.782935532939,0.893535797687,1.),.UNSPECIFIED.); +#919 = CARTESIAN_POINT('',(0.158173598591,0.206543478843,0.3)); +#920 = CARTESIAN_POINT('',(0.158129792988,0.203883132932,0.3)); +#921 = CARTESIAN_POINT('',(0.158043938255,0.198669113066,0.3)); +#922 = CARTESIAN_POINT('',(0.15720775192,0.191045820859,0.3)); +#923 = CARTESIAN_POINT('',(0.155818746293,0.183782650757,0.3)); +#924 = CARTESIAN_POINT('',(0.153886857386,0.176944626223,0.3)); +#925 = CARTESIAN_POINT('',(0.151461620133,0.170581289722,0.3)); +#926 = CARTESIAN_POINT('',(0.148396002302,0.164897214888,0.3)); +#927 = CARTESIAN_POINT('',(0.144884664636,0.159815365255,0.3)); +#928 = CARTESIAN_POINT('',(0.142029818795,0.156993380654,0.3)); +#929 = CARTESIAN_POINT('',(0.140629594754,0.155609274155,0.3)); +#930 = PCURVE('',#48,#931); +#931 = DEFINITIONAL_REPRESENTATION('',(#932),#944); +#932 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#933,#934,#935,#936,#937,#938, + #939,#940,#941,#942,#943),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,4), + (0.,0.144088321347,0.282399129672,0.414872702475,0.544283974604, + 0.666959324827,0.782935532939,0.893535797687,1.),.UNSPECIFIED.); +#933 = CARTESIAN_POINT('',(-0.606543478843,0.958173598591)); +#934 = CARTESIAN_POINT('',(-0.603883132932,0.958129792988)); +#935 = CARTESIAN_POINT('',(-0.598669113066,0.958043938255)); +#936 = CARTESIAN_POINT('',(-0.591045820859,0.95720775192)); +#937 = CARTESIAN_POINT('',(-0.583782650757,0.955818746293)); +#938 = CARTESIAN_POINT('',(-0.576944626223,0.953886857386)); +#939 = CARTESIAN_POINT('',(-0.570581289722,0.951461620133)); +#940 = CARTESIAN_POINT('',(-0.564897214888,0.948396002302)); +#941 = CARTESIAN_POINT('',(-0.559815365255,0.944884664636)); +#942 = CARTESIAN_POINT('',(-0.556993380654,0.942029818795)); +#943 = CARTESIAN_POINT('',(-0.555609274155,0.940629594754)); +#944 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#945 = PCURVE('',#946,#969); +#946 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#947,#948) + ,(#949,#950) + ,(#951,#952) + ,(#953,#954) + ,(#955,#956) + ,(#957,#958) + ,(#959,#960) + ,(#961,#962) + ,(#963,#964) + ,(#965,#966) + ,(#967,#968 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,4),(2,2),(0., + 0.144088321347,0.282399129672,0.414872702475,0.544283974604, + 0.666959324827,0.782935532939,0.893535797687,1.),(0.,1.), + .UNSPECIFIED.); +#947 = CARTESIAN_POINT('',(0.158173598591,0.206543478843,0.302)); +#948 = CARTESIAN_POINT('',(0.158173598591,0.206543478843,0.3)); +#949 = CARTESIAN_POINT('',(0.158129792988,0.203883132932,0.302)); +#950 = CARTESIAN_POINT('',(0.158129792988,0.203883132932,0.3)); +#951 = CARTESIAN_POINT('',(0.158043938255,0.198669113066,0.302)); +#952 = CARTESIAN_POINT('',(0.158043938255,0.198669113066,0.3)); +#953 = CARTESIAN_POINT('',(0.15720775192,0.191045820859,0.302)); +#954 = CARTESIAN_POINT('',(0.15720775192,0.191045820859,0.3)); +#955 = CARTESIAN_POINT('',(0.155818746293,0.183782650757,0.302)); +#956 = CARTESIAN_POINT('',(0.155818746293,0.183782650757,0.3)); +#957 = CARTESIAN_POINT('',(0.153886857386,0.176944626223,0.302)); +#958 = CARTESIAN_POINT('',(0.153886857386,0.176944626223,0.3)); +#959 = CARTESIAN_POINT('',(0.151461620133,0.170581289722,0.302)); +#960 = CARTESIAN_POINT('',(0.151461620133,0.170581289722,0.3)); +#961 = CARTESIAN_POINT('',(0.148396002302,0.164897214888,0.302)); +#962 = CARTESIAN_POINT('',(0.148396002302,0.164897214888,0.3)); +#963 = CARTESIAN_POINT('',(0.144884664636,0.159815365255,0.302)); +#964 = CARTESIAN_POINT('',(0.144884664636,0.159815365255,0.3)); +#965 = CARTESIAN_POINT('',(0.142029818795,0.156993380654,0.302)); +#966 = CARTESIAN_POINT('',(0.142029818795,0.156993380654,0.3)); +#967 = CARTESIAN_POINT('',(0.140629594754,0.155609274155,0.302)); +#968 = CARTESIAN_POINT('',(0.140629594754,0.155609274155,0.3)); +#969 = DEFINITIONAL_REPRESENTATION('',(#970),#974); +#970 = LINE('',#971,#972); +#971 = CARTESIAN_POINT('',(0.,1.)); +#972 = VECTOR('',#973,1.); +#973 = DIRECTION('',(1.,0.)); +#974 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#975 = ORIENTED_EDGE('',*,*,#976,.T.); +#976 = EDGE_CURVE('',#915,#977,#979,.T.); +#977 = VERTEX_POINT('',#978); +#978 = CARTESIAN_POINT('',(0.164759031116,9.227593478993E-02,0.3)); +#979 = SURFACE_CURVE('',#980,(#996,#1015),.PCURVE_S1.); +#980 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#981,#982,#983,#984,#985,#986, + #987,#988,#989,#990,#991,#992,#993,#994,#995),.UNSPECIFIED.,.F.,.F., + (4,1,1,1,1,1,1,1,1,1,1,1,4),(0.,4.377083669217E-02,8.899844465675E-02, + 0.135150860332,0.183350536556,0.234220552737,0.287902046026, + 0.345252071006,0.405945978452,0.53608603193,0.677320807104, + 0.831816088461,1.),.UNSPECIFIED.); +#981 = CARTESIAN_POINT('',(0.140629594754,0.155609274155,0.3)); +#982 = CARTESIAN_POINT('',(0.141550018535,0.155132057108,0.3)); +#983 = CARTESIAN_POINT('',(0.143421499437,0.154161740381,0.3)); +#984 = CARTESIAN_POINT('',(0.146046946904,0.152309286402,0.3)); +#985 = CARTESIAN_POINT('',(0.148454621321,0.150041624586,0.3)); +#986 = CARTESIAN_POINT('',(0.150824794211,0.147540326043,0.3)); +#987 = CARTESIAN_POINT('',(0.152877036644,0.144554406032,0.3)); +#988 = CARTESIAN_POINT('',(0.154945403056,0.141323490153,0.3)); +#989 = CARTESIAN_POINT('',(0.156682055631,0.137640381656,0.3)); +#990 = CARTESIAN_POINT('',(0.159030696008,0.132255325873,0.3)); +#991 = CARTESIAN_POINT('',(0.161389390067,0.124730582974,0.3)); +#992 = CARTESIAN_POINT('',(0.163370584919,0.114833687655,0.3)); +#993 = CARTESIAN_POINT('',(0.164533037871,0.103896571211,0.3)); +#994 = CARTESIAN_POINT('',(0.164681599287,9.625750128022E-02,0.3)); +#995 = CARTESIAN_POINT('',(0.164759031116,9.227593478993E-02,0.3)); +#996 = PCURVE('',#48,#997); +#997 = DEFINITIONAL_REPRESENTATION('',(#998),#1014); +#998 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#999,#1000,#1001,#1002,#1003, + #1004,#1005,#1006,#1007,#1008,#1009,#1010,#1011,#1012,#1013), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0., + 4.377083669217E-02,8.899844465675E-02,0.135150860332,0.183350536556, + 0.234220552737,0.287902046026,0.345252071006,0.405945978452, + 0.53608603193,0.677320807104,0.831816088461,1.),.UNSPECIFIED.); +#999 = CARTESIAN_POINT('',(-0.555609274155,0.940629594754)); +#1000 = CARTESIAN_POINT('',(-0.555132057108,0.941550018535)); +#1001 = CARTESIAN_POINT('',(-0.554161740381,0.943421499437)); +#1002 = CARTESIAN_POINT('',(-0.552309286402,0.946046946904)); +#1003 = CARTESIAN_POINT('',(-0.550041624586,0.948454621321)); +#1004 = CARTESIAN_POINT('',(-0.547540326043,0.950824794211)); +#1005 = CARTESIAN_POINT('',(-0.544554406032,0.952877036644)); +#1006 = CARTESIAN_POINT('',(-0.541323490153,0.954945403056)); +#1007 = CARTESIAN_POINT('',(-0.537640381656,0.956682055631)); +#1008 = CARTESIAN_POINT('',(-0.532255325873,0.959030696008)); +#1009 = CARTESIAN_POINT('',(-0.524730582974,0.961389390067)); +#1010 = CARTESIAN_POINT('',(-0.514833687655,0.963370584919)); +#1011 = CARTESIAN_POINT('',(-0.503896571211,0.964533037871)); +#1012 = CARTESIAN_POINT('',(-0.49625750128,0.964681599287)); +#1013 = CARTESIAN_POINT('',(-0.49227593479,0.964759031116)); +#1014 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1015 = PCURVE('',#1016,#1047); +#1016 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#1017,#1018) + ,(#1019,#1020) + ,(#1021,#1022) + ,(#1023,#1024) + ,(#1025,#1026) + ,(#1027,#1028) + ,(#1029,#1030) + ,(#1031,#1032) + ,(#1033,#1034) + ,(#1035,#1036) + ,(#1037,#1038) + ,(#1039,#1040) + ,(#1041,#1042) + ,(#1043,#1044) + ,(#1045,#1046 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(2,2),(0., + 4.377083669217E-02,8.899844465675E-02,0.135150860332,0.183350536556, + 0.234220552737,0.287902046026,0.345252071006,0.405945978452, + 0.53608603193,0.677320807104,0.831816088461,1.),(0.,1.), + .UNSPECIFIED.); +#1017 = CARTESIAN_POINT('',(0.140629594754,0.155609274155,0.302)); +#1018 = CARTESIAN_POINT('',(0.140629594754,0.155609274155,0.3)); +#1019 = CARTESIAN_POINT('',(0.141550018535,0.155132057108,0.302)); +#1020 = CARTESIAN_POINT('',(0.141550018535,0.155132057108,0.3)); +#1021 = CARTESIAN_POINT('',(0.143421499437,0.154161740381,0.302)); +#1022 = CARTESIAN_POINT('',(0.143421499437,0.154161740381,0.3)); +#1023 = CARTESIAN_POINT('',(0.146046946904,0.152309286402,0.302)); +#1024 = CARTESIAN_POINT('',(0.146046946904,0.152309286402,0.3)); +#1025 = CARTESIAN_POINT('',(0.148454621321,0.150041624586,0.302)); +#1026 = CARTESIAN_POINT('',(0.148454621321,0.150041624586,0.3)); +#1027 = CARTESIAN_POINT('',(0.150824794211,0.147540326043,0.302)); +#1028 = CARTESIAN_POINT('',(0.150824794211,0.147540326043,0.3)); +#1029 = CARTESIAN_POINT('',(0.152877036644,0.144554406032,0.302)); +#1030 = CARTESIAN_POINT('',(0.152877036644,0.144554406032,0.3)); +#1031 = CARTESIAN_POINT('',(0.154945403056,0.141323490153,0.302)); +#1032 = CARTESIAN_POINT('',(0.154945403056,0.141323490153,0.3)); +#1033 = CARTESIAN_POINT('',(0.156682055631,0.137640381656,0.302)); +#1034 = CARTESIAN_POINT('',(0.156682055631,0.137640381656,0.3)); +#1035 = CARTESIAN_POINT('',(0.159030696008,0.132255325873,0.302)); +#1036 = CARTESIAN_POINT('',(0.159030696008,0.132255325873,0.3)); +#1037 = CARTESIAN_POINT('',(0.161389390067,0.124730582974,0.302)); +#1038 = CARTESIAN_POINT('',(0.161389390067,0.124730582974,0.3)); +#1039 = CARTESIAN_POINT('',(0.163370584919,0.114833687655,0.302)); +#1040 = CARTESIAN_POINT('',(0.163370584919,0.114833687655,0.3)); +#1041 = CARTESIAN_POINT('',(0.164533037871,0.103896571211,0.302)); +#1042 = CARTESIAN_POINT('',(0.164533037871,0.103896571211,0.3)); +#1043 = CARTESIAN_POINT('',(0.164681599287,9.625750128022E-02,0.302)); +#1044 = CARTESIAN_POINT('',(0.164681599287,9.625750128022E-02,0.3)); +#1045 = CARTESIAN_POINT('',(0.164759031116,9.227593478993E-02,0.302)); +#1046 = CARTESIAN_POINT('',(0.164759031116,9.227593478993E-02,0.3)); +#1047 = DEFINITIONAL_REPRESENTATION('',(#1048),#1052); +#1048 = LINE('',#1049,#1050); +#1049 = CARTESIAN_POINT('',(0.,1.)); +#1050 = VECTOR('',#1051,1.); +#1051 = DIRECTION('',(1.,0.)); +#1052 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1053 = ORIENTED_EDGE('',*,*,#1054,.T.); +#1054 = EDGE_CURVE('',#977,#22,#1055,.T.); +#1055 = SURFACE_CURVE('',#1056,(#1076,#1099),.PCURVE_S1.); +#1056 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1057,#1058,#1059,#1060,#1061, + #1062,#1063,#1064,#1065,#1066,#1067,#1068,#1069,#1070,#1071,#1072, + #1073,#1074,#1075),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,8.24620414803E-02,0.161515342508,0.237917489154, + 0.311928206459,0.383707237096,0.453658663398,0.521451712787, + 0.588090222416,0.65166842296,0.709643084761,0.763649359456, + 0.813744495021,0.861615745413,0.90793947877,0.953267747783,1.), + .UNSPECIFIED.); +#1057 = CARTESIAN_POINT('',(0.164759031116,9.227593478993E-02,0.3)); +#1058 = CARTESIAN_POINT('',(0.164716643368,8.951391922135E-02,0.3)); +#1059 = CARTESIAN_POINT('',(0.164633620056,8.410406175767E-02,0.3)); +#1060 = CARTESIAN_POINT('',(0.164066970396,7.615102581177E-02,0.3)); +#1061 = CARTESIAN_POINT('',(0.163101736194,6.852155670844E-02,0.3)); +#1062 = CARTESIAN_POINT('',(0.161698187641,6.120921345822E-02,0.3)); +#1063 = CARTESIAN_POINT('',(0.159971168479,5.418787521082E-02,0.3)); +#1064 = CARTESIAN_POINT('',(0.157803241688,4.750755989307E-02,0.3)); +#1065 = CARTESIAN_POINT('',(0.155283758046,4.113716822208E-02,0.3)); +#1066 = CARTESIAN_POINT('',(0.152379773025,3.516670627895E-02,0.3)); +#1067 = CARTESIAN_POINT('',(0.149189941965,2.972410856556E-02,0.3)); +#1068 = CARTESIAN_POINT('',(0.145795946897,2.490751690085E-02,0.3)); +#1069 = CARTESIAN_POINT('',(0.142127426527,2.089017597307E-02,0.3)); +#1070 = CARTESIAN_POINT('',(0.138299010628,1.751336894227E-02,0.3)); +#1071 = CARTESIAN_POINT('',(0.134197002433,1.491831031664E-02,0.3)); +#1072 = CARTESIAN_POINT('',(0.129901343866,1.303707882367E-02,0.3)); +#1073 = CARTESIAN_POINT('',(0.125372855995,1.190522761079E-02,0.3)); +#1074 = CARTESIAN_POINT('',(0.122285945204,1.177393247406E-02,0.3)); +#1075 = CARTESIAN_POINT('',(0.120718951103,1.170728373731E-02,0.3)); +#1076 = PCURVE('',#48,#1077); +#1077 = DEFINITIONAL_REPRESENTATION('',(#1078),#1098); +#1078 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1079,#1080,#1081,#1082,#1083, + #1084,#1085,#1086,#1087,#1088,#1089,#1090,#1091,#1092,#1093,#1094, + #1095,#1096,#1097),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,8.24620414803E-02,0.161515342508,0.237917489154, + 0.311928206459,0.383707237096,0.453658663398,0.521451712787, + 0.588090222416,0.65166842296,0.709643084761,0.763649359456, + 0.813744495021,0.861615745413,0.90793947877,0.953267747783,1.), + .UNSPECIFIED.); +#1079 = CARTESIAN_POINT('',(-0.49227593479,0.964759031116)); +#1080 = CARTESIAN_POINT('',(-0.489513919221,0.964716643368)); +#1081 = CARTESIAN_POINT('',(-0.484104061758,0.964633620056)); +#1082 = CARTESIAN_POINT('',(-0.476151025812,0.964066970396)); +#1083 = CARTESIAN_POINT('',(-0.468521556708,0.963101736194)); +#1084 = CARTESIAN_POINT('',(-0.461209213458,0.961698187641)); +#1085 = CARTESIAN_POINT('',(-0.454187875211,0.959971168479)); +#1086 = CARTESIAN_POINT('',(-0.447507559893,0.957803241688)); +#1087 = CARTESIAN_POINT('',(-0.441137168222,0.955283758046)); +#1088 = CARTESIAN_POINT('',(-0.435166706279,0.952379773025)); +#1089 = CARTESIAN_POINT('',(-0.429724108566,0.949189941965)); +#1090 = CARTESIAN_POINT('',(-0.424907516901,0.945795946897)); +#1091 = CARTESIAN_POINT('',(-0.420890175973,0.942127426527)); +#1092 = CARTESIAN_POINT('',(-0.417513368942,0.938299010628)); +#1093 = CARTESIAN_POINT('',(-0.414918310317,0.934197002433)); +#1094 = CARTESIAN_POINT('',(-0.413037078824,0.929901343866)); +#1095 = CARTESIAN_POINT('',(-0.411905227611,0.925372855995)); +#1096 = CARTESIAN_POINT('',(-0.411773932474,0.922285945204)); +#1097 = CARTESIAN_POINT('',(-0.411707283737,0.920718951103)); +#1098 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1099 = PCURVE('',#1100,#1139); +#1100 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#1101,#1102) + ,(#1103,#1104) + ,(#1105,#1106) + ,(#1107,#1108) + ,(#1109,#1110) + ,(#1111,#1112) + ,(#1113,#1114) + ,(#1115,#1116) + ,(#1117,#1118) + ,(#1119,#1120) + ,(#1121,#1122) + ,(#1123,#1124) + ,(#1125,#1126) + ,(#1127,#1128) + ,(#1129,#1130) + ,(#1131,#1132) + ,(#1133,#1134) + ,(#1135,#1136) + ,(#1137,#1138 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, + 2),(0.,8.24620414803E-02,0.161515342508,0.237917489154, + 0.311928206459,0.383707237096,0.453658663398,0.521451712787, + 0.588090222416,0.65166842296,0.709643084761,0.763649359456, + 0.813744495021,0.861615745413,0.90793947877,0.953267747783,1.),(0., + 1.),.UNSPECIFIED.); +#1101 = CARTESIAN_POINT('',(0.164759031116,9.227593478993E-02,0.302)); +#1102 = CARTESIAN_POINT('',(0.164759031116,9.227593478993E-02,0.3)); +#1103 = CARTESIAN_POINT('',(0.164716643368,8.951391922135E-02,0.302)); +#1104 = CARTESIAN_POINT('',(0.164716643368,8.951391922135E-02,0.3)); +#1105 = CARTESIAN_POINT('',(0.164633620056,8.410406175767E-02,0.302)); +#1106 = CARTESIAN_POINT('',(0.164633620056,8.410406175767E-02,0.3)); +#1107 = CARTESIAN_POINT('',(0.164066970396,7.615102581177E-02,0.302)); +#1108 = CARTESIAN_POINT('',(0.164066970396,7.615102581177E-02,0.3)); +#1109 = CARTESIAN_POINT('',(0.163101736194,6.852155670844E-02,0.302)); +#1110 = CARTESIAN_POINT('',(0.163101736194,6.852155670844E-02,0.3)); +#1111 = CARTESIAN_POINT('',(0.161698187641,6.120921345822E-02,0.302)); +#1112 = CARTESIAN_POINT('',(0.161698187641,6.120921345822E-02,0.3)); +#1113 = CARTESIAN_POINT('',(0.159971168479,5.418787521082E-02,0.302)); +#1114 = CARTESIAN_POINT('',(0.159971168479,5.418787521082E-02,0.3)); +#1115 = CARTESIAN_POINT('',(0.157803241688,4.750755989307E-02,0.302)); +#1116 = CARTESIAN_POINT('',(0.157803241688,4.750755989307E-02,0.3)); +#1117 = CARTESIAN_POINT('',(0.155283758046,4.113716822208E-02,0.302)); +#1118 = CARTESIAN_POINT('',(0.155283758046,4.113716822208E-02,0.3)); +#1119 = CARTESIAN_POINT('',(0.152379773025,3.516670627895E-02,0.302)); +#1120 = CARTESIAN_POINT('',(0.152379773025,3.516670627895E-02,0.3)); +#1121 = CARTESIAN_POINT('',(0.149189941965,2.972410856556E-02,0.302)); +#1122 = CARTESIAN_POINT('',(0.149189941965,2.972410856556E-02,0.3)); +#1123 = CARTESIAN_POINT('',(0.145795946897,2.490751690085E-02,0.302)); +#1124 = CARTESIAN_POINT('',(0.145795946897,2.490751690085E-02,0.3)); +#1125 = CARTESIAN_POINT('',(0.142127426527,2.089017597307E-02,0.302)); +#1126 = CARTESIAN_POINT('',(0.142127426527,2.089017597307E-02,0.3)); +#1127 = CARTESIAN_POINT('',(0.138299010628,1.751336894227E-02,0.302)); +#1128 = CARTESIAN_POINT('',(0.138299010628,1.751336894227E-02,0.3)); +#1129 = CARTESIAN_POINT('',(0.134197002433,1.491831031664E-02,0.302)); +#1130 = CARTESIAN_POINT('',(0.134197002433,1.491831031664E-02,0.3)); +#1131 = CARTESIAN_POINT('',(0.129901343866,1.303707882367E-02,0.302)); +#1132 = CARTESIAN_POINT('',(0.129901343866,1.303707882367E-02,0.3)); +#1133 = CARTESIAN_POINT('',(0.125372855995,1.190522761079E-02,0.302)); +#1134 = CARTESIAN_POINT('',(0.125372855995,1.190522761079E-02,0.3)); +#1135 = CARTESIAN_POINT('',(0.122285945204,1.177393247406E-02,0.302)); +#1136 = CARTESIAN_POINT('',(0.122285945204,1.177393247406E-02,0.3)); +#1137 = CARTESIAN_POINT('',(0.120718951103,1.170728373731E-02,0.302)); +#1138 = CARTESIAN_POINT('',(0.120718951103,1.170728373731E-02,0.3)); +#1139 = DEFINITIONAL_REPRESENTATION('',(#1140),#1144); +#1140 = LINE('',#1141,#1142); +#1141 = CARTESIAN_POINT('',(0.,1.)); +#1142 = VECTOR('',#1143,1.); +#1143 = DIRECTION('',(1.,0.)); +#1144 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1145 = FACE_BOUND('',#1146,.T.); +#1146 = EDGE_LOOP('',(#1147,#1211,#1337,#1447,#1573)); +#1147 = ORIENTED_EDGE('',*,*,#1148,.T.); +#1148 = EDGE_CURVE('',#1149,#1151,#1153,.T.); +#1149 = VERTEX_POINT('',#1150); +#1150 = CARTESIAN_POINT('',(-6.668009309687E-03,3.645410439907E-02,0.3) + ); +#1151 = VERTEX_POINT('',#1152); +#1152 = CARTESIAN_POINT('',(-1.963307959402E-02,0.14166667873,0.3)); +#1153 = SURFACE_CURVE('',#1154,(#1166,#1181),.PCURVE_S1.); +#1154 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1155,#1156,#1157,#1158,#1159, + #1160,#1161,#1162,#1163,#1164,#1165),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,8.874248781343E-02,0.18749855617,0.295863554394, + 0.414922527979,0.545071851417,0.685442978585,0.837216579864,1.), + .UNSPECIFIED.); +#1155 = CARTESIAN_POINT('',(-6.668009309687E-03,3.645410439907E-02,0.3) + ); +#1156 = CARTESIAN_POINT('',(-7.72868304737E-03,3.942311516555E-02,0.3)); +#1157 = CARTESIAN_POINT('',(-9.969715491732E-03,4.569615579902E-02,0.3) + ); +#1158 = CARTESIAN_POINT('',(-1.24736518448E-02,5.591197426034E-02,0.3)); +#1159 = CARTESIAN_POINT('',(-1.47841414487E-02,6.726344921029E-02,0.3)); +#1160 = CARTESIAN_POINT('',(-1.650481270486E-02,7.984902738091E-02,0.3) + ); +#1161 = CARTESIAN_POINT('',(-1.79710667163E-02,9.360587304361E-02,0.3)); +#1162 = CARTESIAN_POINT('',(-1.888454542454E-02,0.108575532398,0.3)); +#1163 = CARTESIAN_POINT('',(-1.953149962645E-02,0.124717181004,0.3)); +#1164 = CARTESIAN_POINT('',(-1.95984386269E-02,0.135886533221,0.3)); +#1165 = CARTESIAN_POINT('',(-1.963307959402E-02,0.14166667873,0.3)); +#1166 = PCURVE('',#48,#1167); +#1167 = DEFINITIONAL_REPRESENTATION('',(#1168),#1180); +#1168 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1169,#1170,#1171,#1172,#1173, + #1174,#1175,#1176,#1177,#1178,#1179),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,8.874248781343E-02,0.18749855617,0.295863554394, + 0.414922527979,0.545071851417,0.685442978585,0.837216579864,1.), + .UNSPECIFIED.); +#1169 = CARTESIAN_POINT('',(-0.436454104399,0.79333199069)); +#1170 = CARTESIAN_POINT('',(-0.439423115166,0.792271316953)); +#1171 = CARTESIAN_POINT('',(-0.445696155799,0.790030284508)); +#1172 = CARTESIAN_POINT('',(-0.45591197426,0.787526348155)); +#1173 = CARTESIAN_POINT('',(-0.46726344921,0.785215858551)); +#1174 = CARTESIAN_POINT('',(-0.479849027381,0.783495187295)); +#1175 = CARTESIAN_POINT('',(-0.493605873044,0.782028933284)); +#1176 = CARTESIAN_POINT('',(-0.508575532398,0.781115454575)); +#1177 = CARTESIAN_POINT('',(-0.524717181004,0.780468500374)); +#1178 = CARTESIAN_POINT('',(-0.535886533221,0.780401561373)); +#1179 = CARTESIAN_POINT('',(-0.54166667873,0.780366920406)); +#1180 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1181 = PCURVE('',#1182,#1205); +#1182 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#1183,#1184) + ,(#1185,#1186) + ,(#1187,#1188) + ,(#1189,#1190) + ,(#1191,#1192) + ,(#1193,#1194) + ,(#1195,#1196) + ,(#1197,#1198) + ,(#1199,#1200) + ,(#1201,#1202) + ,(#1203,#1204 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,4),(2,2),(0., + 8.874248781343E-02,0.18749855617,0.295863554394,0.414922527979, + 0.545071851417,0.685442978585,0.837216579864,1.),(0.,1.), + .UNSPECIFIED.); +#1183 = CARTESIAN_POINT('',(-6.668009309687E-03,3.645410439907E-02,0.302 + )); +#1184 = CARTESIAN_POINT('',(-6.668009309687E-03,3.645410439907E-02,0.3) + ); +#1185 = CARTESIAN_POINT('',(-7.72868304737E-03,3.942311516555E-02,0.302) + ); +#1186 = CARTESIAN_POINT('',(-7.72868304737E-03,3.942311516555E-02,0.3)); +#1187 = CARTESIAN_POINT('',(-9.969715491732E-03,4.569615579902E-02,0.302 + )); +#1188 = CARTESIAN_POINT('',(-9.969715491732E-03,4.569615579902E-02,0.3) + ); +#1189 = CARTESIAN_POINT('',(-1.24736518448E-02,5.591197426034E-02,0.302) + ); +#1190 = CARTESIAN_POINT('',(-1.24736518448E-02,5.591197426034E-02,0.3)); +#1191 = CARTESIAN_POINT('',(-1.47841414487E-02,6.726344921029E-02,0.302) + ); +#1192 = CARTESIAN_POINT('',(-1.47841414487E-02,6.726344921029E-02,0.3)); +#1193 = CARTESIAN_POINT('',(-1.650481270486E-02,7.984902738091E-02,0.302 + )); +#1194 = CARTESIAN_POINT('',(-1.650481270486E-02,7.984902738091E-02,0.3) + ); +#1195 = CARTESIAN_POINT('',(-1.79710667163E-02,9.360587304361E-02,0.302) + ); +#1196 = CARTESIAN_POINT('',(-1.79710667163E-02,9.360587304361E-02,0.3)); +#1197 = CARTESIAN_POINT('',(-1.888454542454E-02,0.108575532398,0.302)); +#1198 = CARTESIAN_POINT('',(-1.888454542454E-02,0.108575532398,0.3)); +#1199 = CARTESIAN_POINT('',(-1.953149962645E-02,0.124717181004,0.302)); +#1200 = CARTESIAN_POINT('',(-1.953149962645E-02,0.124717181004,0.3)); +#1201 = CARTESIAN_POINT('',(-1.95984386269E-02,0.135886533221,0.302)); +#1202 = CARTESIAN_POINT('',(-1.95984386269E-02,0.135886533221,0.3)); +#1203 = CARTESIAN_POINT('',(-1.963307959402E-02,0.14166667873,0.302)); +#1204 = CARTESIAN_POINT('',(-1.963307959402E-02,0.14166667873,0.3)); +#1205 = DEFINITIONAL_REPRESENTATION('',(#1206),#1210); +#1206 = LINE('',#1207,#1208); +#1207 = CARTESIAN_POINT('',(0.,1.)); +#1208 = VECTOR('',#1209,1.); +#1209 = DIRECTION('',(1.,0.)); +#1210 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1211 = ORIENTED_EDGE('',*,*,#1212,.T.); +#1212 = EDGE_CURVE('',#1151,#1213,#1215,.T.); +#1213 = VERTEX_POINT('',#1214); +#1214 = CARTESIAN_POINT('',(2.317223182091E-02,0.27183186849,0.3)); +#1215 = SURFACE_CURVE('',#1216,(#1244,#1275),.PCURVE_S1.); +#1216 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1217,#1218,#1219,#1220,#1221, + #1222,#1223,#1224,#1225,#1226,#1227,#1228,#1229,#1230,#1231,#1232, + #1233,#1234,#1235,#1236,#1237,#1238,#1239,#1240,#1241,#1242,#1243), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,4),(0.,7.450630011454E-02,0.145899604363,0.213485915351, + 0.277293604963,0.338041673145,0.395063922884,0.448741026482, + 0.499113145316,0.546571100751,0.59109431188,0.632897743261, + 0.672214769502,0.70856337312,0.743032622937,0.774640169589, + 0.804496490856,0.832141518463,0.85851193,0.883406944232, + 0.907257568986,0.930301741039,0.953206098268,0.976284435161,1.), + .UNSPECIFIED.); +#1217 = CARTESIAN_POINT('',(-1.963307959402E-02,0.14166667873,0.3)); +#1218 = CARTESIAN_POINT('',(-1.963360022099E-02,0.145336920758,0.3)); +#1219 = CARTESIAN_POINT('',(-1.963461972228E-02,0.15252405606,0.3)); +#1220 = CARTESIAN_POINT('',(-1.933867117427E-02,0.163036587208,0.3)); +#1221 = CARTESIAN_POINT('',(-1.900775489684E-02,0.173020239287,0.3)); +#1222 = CARTESIAN_POINT('',(-1.848782389649E-02,0.182471280081,0.3)); +#1223 = CARTESIAN_POINT('',(-1.783102465328E-02,0.191391928233,0.3)); +#1224 = CARTESIAN_POINT('',(-1.701049966734E-02,0.199798120673,0.3)); +#1225 = CARTESIAN_POINT('',(-1.60381465877E-02,0.207673148077,0.3)); +#1226 = CARTESIAN_POINT('',(-1.491576978213E-02,0.215053000057,0.3)); +#1227 = CARTESIAN_POINT('',(-1.360966353286E-02,0.221942574202,0.3)); +#1228 = CARTESIAN_POINT('',(-1.226960744117E-02,0.22839763521,0.3)); +#1229 = CARTESIAN_POINT('',(-1.063166643619E-02,0.234368012293,0.3)); +#1230 = CARTESIAN_POINT('',(-8.985002668513E-03,0.239916989686,0.3)); +#1231 = CARTESIAN_POINT('',(-7.101042681619E-03,0.245008278979,0.3)); +#1232 = CARTESIAN_POINT('',(-5.125272281607E-03,0.249651995329,0.3)); +#1233 = CARTESIAN_POINT('',(-3.016408570688E-03,0.253887416753,0.3)); +#1234 = CARTESIAN_POINT('',(-6.97609789441E-04,0.257618657354,0.3)); +#1235 = CARTESIAN_POINT('',(1.717570301136E-03,0.260980348714,0.3)); +#1236 = CARTESIAN_POINT('',(4.362166959923E-03,0.263835084545,0.3)); +#1237 = CARTESIAN_POINT('',(7.063972533112E-03,0.266380116983,0.3)); +#1238 = CARTESIAN_POINT('',(1.004224203152E-02,0.268311931051,0.3)); +#1239 = CARTESIAN_POINT('',(1.310229603994E-02,0.269892557944,0.3)); +#1240 = CARTESIAN_POINT('',(1.631550404744E-02,0.271035492322,0.3)); +#1241 = CARTESIAN_POINT('',(1.969528636053E-02,0.271729092277,0.3)); +#1242 = CARTESIAN_POINT('',(2.200277572492E-02,0.271797300139,0.3)); +#1243 = CARTESIAN_POINT('',(2.317223182091E-02,0.27183186849,0.3)); +#1244 = PCURVE('',#48,#1245); +#1245 = DEFINITIONAL_REPRESENTATION('',(#1246),#1274); +#1246 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1247,#1248,#1249,#1250,#1251, + #1252,#1253,#1254,#1255,#1256,#1257,#1258,#1259,#1260,#1261,#1262, + #1263,#1264,#1265,#1266,#1267,#1268,#1269,#1270,#1271,#1272,#1273), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,4),(0.,7.450630011454E-02,0.145899604363,0.213485915351, + 0.277293604963,0.338041673145,0.395063922884,0.448741026482, + 0.499113145316,0.546571100751,0.59109431188,0.632897743261, + 0.672214769502,0.70856337312,0.743032622937,0.774640169589, + 0.804496490856,0.832141518463,0.85851193,0.883406944232, + 0.907257568986,0.930301741039,0.953206098268,0.976284435161,1.), + .UNSPECIFIED.); +#1247 = CARTESIAN_POINT('',(-0.54166667873,0.780366920406)); +#1248 = CARTESIAN_POINT('',(-0.545336920758,0.780366399779)); +#1249 = CARTESIAN_POINT('',(-0.55252405606,0.780365380278)); +#1250 = CARTESIAN_POINT('',(-0.563036587208,0.780661328826)); +#1251 = CARTESIAN_POINT('',(-0.573020239287,0.780992245103)); +#1252 = CARTESIAN_POINT('',(-0.582471280081,0.781512176104)); +#1253 = CARTESIAN_POINT('',(-0.591391928233,0.782168975347)); +#1254 = CARTESIAN_POINT('',(-0.599798120673,0.782989500333)); +#1255 = CARTESIAN_POINT('',(-0.607673148077,0.783961853412)); +#1256 = CARTESIAN_POINT('',(-0.615053000057,0.785084230218)); +#1257 = CARTESIAN_POINT('',(-0.621942574202,0.786390336467)); +#1258 = CARTESIAN_POINT('',(-0.62839763521,0.787730392559)); +#1259 = CARTESIAN_POINT('',(-0.634368012293,0.789368333564)); +#1260 = CARTESIAN_POINT('',(-0.639916989686,0.791014997331)); +#1261 = CARTESIAN_POINT('',(-0.645008278979,0.792898957318)); +#1262 = CARTESIAN_POINT('',(-0.649651995329,0.794874727718)); +#1263 = CARTESIAN_POINT('',(-0.653887416753,0.796983591429)); +#1264 = CARTESIAN_POINT('',(-0.657618657354,0.799302390211)); +#1265 = CARTESIAN_POINT('',(-0.660980348714,0.801717570301)); +#1266 = CARTESIAN_POINT('',(-0.663835084545,0.80436216696)); +#1267 = CARTESIAN_POINT('',(-0.666380116983,0.807063972533)); +#1268 = CARTESIAN_POINT('',(-0.668311931051,0.810042242032)); +#1269 = CARTESIAN_POINT('',(-0.669892557944,0.81310229604)); +#1270 = CARTESIAN_POINT('',(-0.671035492322,0.816315504047)); +#1271 = CARTESIAN_POINT('',(-0.671729092277,0.819695286361)); +#1272 = CARTESIAN_POINT('',(-0.671797300139,0.822002775725)); +#1273 = CARTESIAN_POINT('',(-0.67183186849,0.823172231821)); +#1274 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1275 = PCURVE('',#1276,#1331); +#1276 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#1277,#1278) + ,(#1279,#1280) + ,(#1281,#1282) + ,(#1283,#1284) + ,(#1285,#1286) + ,(#1287,#1288) + ,(#1289,#1290) + ,(#1291,#1292) + ,(#1293,#1294) + ,(#1295,#1296) + ,(#1297,#1298) + ,(#1299,#1300) + ,(#1301,#1302) + ,(#1303,#1304) + ,(#1305,#1306) + ,(#1307,#1308) + ,(#1309,#1310) + ,(#1311,#1312) + ,(#1313,#1314) + ,(#1315,#1316) + ,(#1317,#1318) + ,(#1319,#1320) + ,(#1321,#1322) + ,(#1323,#1324) + ,(#1325,#1326) + ,(#1327,#1328) + ,(#1329,#1330 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,4),(2,2),(0.,7.450630011454E-02,0.145899604363, + 0.213485915351,0.277293604963,0.338041673145,0.395063922884, + 0.448741026482,0.499113145316,0.546571100751,0.59109431188, + 0.632897743261,0.672214769502,0.70856337312,0.743032622937, + 0.774640169589,0.804496490856,0.832141518463,0.85851193, + 0.883406944232,0.907257568986,0.930301741039,0.953206098268, + 0.976284435161,1.),(0.,1.),.UNSPECIFIED.); +#1277 = CARTESIAN_POINT('',(-1.963307959402E-02,0.14166667873,0.302)); +#1278 = CARTESIAN_POINT('',(-1.963307959402E-02,0.14166667873,0.3)); +#1279 = CARTESIAN_POINT('',(-1.963360022099E-02,0.145336920758,0.302)); +#1280 = CARTESIAN_POINT('',(-1.963360022099E-02,0.145336920758,0.3)); +#1281 = CARTESIAN_POINT('',(-1.963461972228E-02,0.15252405606,0.302)); +#1282 = CARTESIAN_POINT('',(-1.963461972228E-02,0.15252405606,0.3)); +#1283 = CARTESIAN_POINT('',(-1.933867117427E-02,0.163036587208,0.302)); +#1284 = CARTESIAN_POINT('',(-1.933867117427E-02,0.163036587208,0.3)); +#1285 = CARTESIAN_POINT('',(-1.900775489684E-02,0.173020239287,0.302)); +#1286 = CARTESIAN_POINT('',(-1.900775489684E-02,0.173020239287,0.3)); +#1287 = CARTESIAN_POINT('',(-1.848782389649E-02,0.182471280081,0.302)); +#1288 = CARTESIAN_POINT('',(-1.848782389649E-02,0.182471280081,0.3)); +#1289 = CARTESIAN_POINT('',(-1.783102465328E-02,0.191391928233,0.302)); +#1290 = CARTESIAN_POINT('',(-1.783102465328E-02,0.191391928233,0.3)); +#1291 = CARTESIAN_POINT('',(-1.701049966734E-02,0.199798120673,0.302)); +#1292 = CARTESIAN_POINT('',(-1.701049966734E-02,0.199798120673,0.3)); +#1293 = CARTESIAN_POINT('',(-1.60381465877E-02,0.207673148077,0.302)); +#1294 = CARTESIAN_POINT('',(-1.60381465877E-02,0.207673148077,0.3)); +#1295 = CARTESIAN_POINT('',(-1.491576978213E-02,0.215053000057,0.302)); +#1296 = CARTESIAN_POINT('',(-1.491576978213E-02,0.215053000057,0.3)); +#1297 = CARTESIAN_POINT('',(-1.360966353286E-02,0.221942574202,0.302)); +#1298 = CARTESIAN_POINT('',(-1.360966353286E-02,0.221942574202,0.3)); +#1299 = CARTESIAN_POINT('',(-1.226960744117E-02,0.22839763521,0.302)); +#1300 = CARTESIAN_POINT('',(-1.226960744117E-02,0.22839763521,0.3)); +#1301 = CARTESIAN_POINT('',(-1.063166643619E-02,0.234368012293,0.302)); +#1302 = CARTESIAN_POINT('',(-1.063166643619E-02,0.234368012293,0.3)); +#1303 = CARTESIAN_POINT('',(-8.985002668513E-03,0.239916989686,0.302)); +#1304 = CARTESIAN_POINT('',(-8.985002668513E-03,0.239916989686,0.3)); +#1305 = CARTESIAN_POINT('',(-7.101042681619E-03,0.245008278979,0.302)); +#1306 = CARTESIAN_POINT('',(-7.101042681619E-03,0.245008278979,0.3)); +#1307 = CARTESIAN_POINT('',(-5.125272281607E-03,0.249651995329,0.302)); +#1308 = CARTESIAN_POINT('',(-5.125272281607E-03,0.249651995329,0.3)); +#1309 = CARTESIAN_POINT('',(-3.016408570688E-03,0.253887416753,0.302)); +#1310 = CARTESIAN_POINT('',(-3.016408570688E-03,0.253887416753,0.3)); +#1311 = CARTESIAN_POINT('',(-6.97609789441E-04,0.257618657354,0.302)); +#1312 = CARTESIAN_POINT('',(-6.97609789441E-04,0.257618657354,0.3)); +#1313 = CARTESIAN_POINT('',(1.717570301136E-03,0.260980348714,0.302)); +#1314 = CARTESIAN_POINT('',(1.717570301136E-03,0.260980348714,0.3)); +#1315 = CARTESIAN_POINT('',(4.362166959923E-03,0.263835084545,0.302)); +#1316 = CARTESIAN_POINT('',(4.362166959923E-03,0.263835084545,0.3)); +#1317 = CARTESIAN_POINT('',(7.063972533112E-03,0.266380116983,0.302)); +#1318 = CARTESIAN_POINT('',(7.063972533112E-03,0.266380116983,0.3)); +#1319 = CARTESIAN_POINT('',(1.004224203152E-02,0.268311931051,0.302)); +#1320 = CARTESIAN_POINT('',(1.004224203152E-02,0.268311931051,0.3)); +#1321 = CARTESIAN_POINT('',(1.310229603994E-02,0.269892557944,0.302)); +#1322 = CARTESIAN_POINT('',(1.310229603994E-02,0.269892557944,0.3)); +#1323 = CARTESIAN_POINT('',(1.631550404744E-02,0.271035492322,0.302)); +#1324 = CARTESIAN_POINT('',(1.631550404744E-02,0.271035492322,0.3)); +#1325 = CARTESIAN_POINT('',(1.969528636053E-02,0.271729092277,0.302)); +#1326 = CARTESIAN_POINT('',(1.969528636053E-02,0.271729092277,0.3)); +#1327 = CARTESIAN_POINT('',(2.200277572492E-02,0.271797300139,0.302)); +#1328 = CARTESIAN_POINT('',(2.200277572492E-02,0.271797300139,0.3)); +#1329 = CARTESIAN_POINT('',(2.317223182091E-02,0.27183186849,0.302)); +#1330 = CARTESIAN_POINT('',(2.317223182091E-02,0.27183186849,0.3)); +#1331 = DEFINITIONAL_REPRESENTATION('',(#1332),#1336); +#1332 = LINE('',#1333,#1334); +#1333 = CARTESIAN_POINT('',(0.,1.)); +#1334 = VECTOR('',#1335,1.); +#1335 = DIRECTION('',(1.,0.)); +#1336 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1337 = ORIENTED_EDGE('',*,*,#1338,.T.); +#1338 = EDGE_CURVE('',#1213,#1339,#1341,.T.); +#1339 = VERTEX_POINT('',#1340); +#1340 = CARTESIAN_POINT('',(6.597754323584E-02,0.14166667873,0.3)); +#1341 = SURFACE_CURVE('',#1342,(#1366,#1393),.PCURVE_S1.); +#1342 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1343,#1344,#1345,#1346,#1347, + #1348,#1349,#1350,#1351,#1352,#1353,#1354,#1355,#1356,#1357,#1358, + #1359,#1360,#1361,#1362,#1363,#1364,#1365),.UNSPECIFIED.,.F.,.F.,(4, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(0.,3.49368870829E-02, + 7.023339896965E-02,0.106497580507,0.145587588832,0.187189203945, + 0.231348430884,0.279252738402,0.331360897076,0.388442948375, + 0.450964118434,0.518748490246,0.592148889515,0.631731987362, + 0.674661745447,0.720681059568,0.7701442824,0.822678593948, + 0.878317576116,0.937424730831,1.),.UNSPECIFIED.); +#1343 = CARTESIAN_POINT('',(2.317223182091E-02,0.27183186849,0.3)); +#1344 = CARTESIAN_POINT('',(2.489741982901E-02,0.271730260817,0.3)); +#1345 = CARTESIAN_POINT('',(2.836555416458E-02,0.271525999567,0.3)); +#1346 = CARTESIAN_POINT('',(3.343632197499E-02,0.269931461148,0.3)); +#1347 = CARTESIAN_POINT('',(3.817970480349E-02,0.267181372234,0.3)); +#1348 = CARTESIAN_POINT('',(4.27302194525E-02,0.263593923,0.3)); +#1349 = CARTESIAN_POINT('',(4.682603091564E-02,0.258957748406,0.3)); +#1350 = CARTESIAN_POINT('',(5.048710903561E-02,0.253444341624,0.3)); +#1351 = CARTESIAN_POINT('',(5.341302350196E-02,0.246934771821,0.3)); +#1352 = CARTESIAN_POINT('',(5.585192511915E-02,0.239571047505,0.3)); +#1353 = CARTESIAN_POINT('',(5.791769774606E-02,0.231350486514,0.3)); +#1354 = CARTESIAN_POINT('',(5.979333253746E-02,0.222297662332,0.3)); +#1355 = CARTESIAN_POINT('',(6.156170775209E-02,0.21240277796,0.3)); +#1356 = CARTESIAN_POINT('',(6.278159431962E-02,0.203568217913,0.3)); +#1357 = CARTESIAN_POINT('',(6.378050185591E-02,0.195940552837,0.3)); +#1358 = CARTESIAN_POINT('',(6.429762897648E-02,0.189619370572,0.3)); +#1359 = CARTESIAN_POINT('',(6.481801724058E-02,0.182811558967,0.3)); +#1360 = CARTESIAN_POINT('',(6.530213568091E-02,0.175524876557,0.3)); +#1361 = CARTESIAN_POINT('',(6.55888258911E-02,0.16775281078,0.3)); +#1362 = CARTESIAN_POINT('',(6.57801125893E-02,0.159502830022,0.3)); +#1363 = CARTESIAN_POINT('',(6.595397313915E-02,0.150756638007,0.3)); +#1364 = CARTESIAN_POINT('',(6.596953865747E-02,0.144753695826,0.3)); +#1365 = CARTESIAN_POINT('',(6.597754323584E-02,0.14166667873,0.3)); +#1366 = PCURVE('',#48,#1367); +#1367 = DEFINITIONAL_REPRESENTATION('',(#1368),#1392); +#1368 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1369,#1370,#1371,#1372,#1373, + #1374,#1375,#1376,#1377,#1378,#1379,#1380,#1381,#1382,#1383,#1384, + #1385,#1386,#1387,#1388,#1389,#1390,#1391),.UNSPECIFIED.,.F.,.F.,(4, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(0.,3.49368870829E-02, + 7.023339896965E-02,0.106497580507,0.145587588832,0.187189203945, + 0.231348430884,0.279252738402,0.331360897076,0.388442948375, + 0.450964118434,0.518748490246,0.592148889515,0.631731987362, + 0.674661745447,0.720681059568,0.7701442824,0.822678593948, + 0.878317576116,0.937424730831,1.),.UNSPECIFIED.); +#1369 = CARTESIAN_POINT('',(-0.67183186849,0.823172231821)); +#1370 = CARTESIAN_POINT('',(-0.671730260817,0.824897419829)); +#1371 = CARTESIAN_POINT('',(-0.671525999567,0.828365554165)); +#1372 = CARTESIAN_POINT('',(-0.669931461148,0.833436321975)); +#1373 = CARTESIAN_POINT('',(-0.667181372234,0.838179704803)); +#1374 = CARTESIAN_POINT('',(-0.663593923,0.842730219452)); +#1375 = CARTESIAN_POINT('',(-0.658957748406,0.846826030916)); +#1376 = CARTESIAN_POINT('',(-0.653444341624,0.850487109036)); +#1377 = CARTESIAN_POINT('',(-0.646934771821,0.853413023502)); +#1378 = CARTESIAN_POINT('',(-0.639571047505,0.855851925119)); +#1379 = CARTESIAN_POINT('',(-0.631350486514,0.857917697746)); +#1380 = CARTESIAN_POINT('',(-0.622297662332,0.859793332537)); +#1381 = CARTESIAN_POINT('',(-0.61240277796,0.861561707752)); +#1382 = CARTESIAN_POINT('',(-0.603568217913,0.86278159432)); +#1383 = CARTESIAN_POINT('',(-0.595940552837,0.863780501856)); +#1384 = CARTESIAN_POINT('',(-0.589619370572,0.864297628976)); +#1385 = CARTESIAN_POINT('',(-0.582811558967,0.864818017241)); +#1386 = CARTESIAN_POINT('',(-0.575524876557,0.865302135681)); +#1387 = CARTESIAN_POINT('',(-0.56775281078,0.865588825891)); +#1388 = CARTESIAN_POINT('',(-0.559502830022,0.865780112589)); +#1389 = CARTESIAN_POINT('',(-0.550756638007,0.865953973139)); +#1390 = CARTESIAN_POINT('',(-0.544753695826,0.865969538657)); +#1391 = CARTESIAN_POINT('',(-0.54166667873,0.865977543236)); +#1392 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1393 = PCURVE('',#1394,#1441); +#1394 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#1395,#1396) + ,(#1397,#1398) + ,(#1399,#1400) + ,(#1401,#1402) + ,(#1403,#1404) + ,(#1405,#1406) + ,(#1407,#1408) + ,(#1409,#1410) + ,(#1411,#1412) + ,(#1413,#1414) + ,(#1415,#1416) + ,(#1417,#1418) + ,(#1419,#1420) + ,(#1421,#1422) + ,(#1423,#1424) + ,(#1425,#1426) + ,(#1427,#1428) + ,(#1429,#1430) + ,(#1431,#1432) + ,(#1433,#1434) + ,(#1435,#1436) + ,(#1437,#1438) + ,(#1439,#1440 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,4),(2,2),(0.,3.49368870829E-02,7.023339896965E-02,0.106497580507, + 0.145587588832,0.187189203945,0.231348430884,0.279252738402, + 0.331360897076,0.388442948375,0.450964118434,0.518748490246, + 0.592148889515,0.631731987362,0.674661745447,0.720681059568, + 0.7701442824,0.822678593948,0.878317576116,0.937424730831,1.),(0.,1. + ),.UNSPECIFIED.); +#1395 = CARTESIAN_POINT('',(2.317223182091E-02,0.27183186849,0.302)); +#1396 = CARTESIAN_POINT('',(2.317223182091E-02,0.27183186849,0.3)); +#1397 = CARTESIAN_POINT('',(2.489741982901E-02,0.271730260817,0.302)); +#1398 = CARTESIAN_POINT('',(2.489741982901E-02,0.271730260817,0.3)); +#1399 = CARTESIAN_POINT('',(2.836555416458E-02,0.271525999567,0.302)); +#1400 = CARTESIAN_POINT('',(2.836555416458E-02,0.271525999567,0.3)); +#1401 = CARTESIAN_POINT('',(3.343632197499E-02,0.269931461148,0.302)); +#1402 = CARTESIAN_POINT('',(3.343632197499E-02,0.269931461148,0.3)); +#1403 = CARTESIAN_POINT('',(3.817970480349E-02,0.267181372234,0.302)); +#1404 = CARTESIAN_POINT('',(3.817970480349E-02,0.267181372234,0.3)); +#1405 = CARTESIAN_POINT('',(4.27302194525E-02,0.263593923,0.302)); +#1406 = CARTESIAN_POINT('',(4.27302194525E-02,0.263593923,0.3)); +#1407 = CARTESIAN_POINT('',(4.682603091564E-02,0.258957748406,0.302)); +#1408 = CARTESIAN_POINT('',(4.682603091564E-02,0.258957748406,0.3)); +#1409 = CARTESIAN_POINT('',(5.048710903561E-02,0.253444341624,0.302)); +#1410 = CARTESIAN_POINT('',(5.048710903561E-02,0.253444341624,0.3)); +#1411 = CARTESIAN_POINT('',(5.341302350196E-02,0.246934771821,0.302)); +#1412 = CARTESIAN_POINT('',(5.341302350196E-02,0.246934771821,0.3)); +#1413 = CARTESIAN_POINT('',(5.585192511915E-02,0.239571047505,0.302)); +#1414 = CARTESIAN_POINT('',(5.585192511915E-02,0.239571047505,0.3)); +#1415 = CARTESIAN_POINT('',(5.791769774606E-02,0.231350486514,0.302)); +#1416 = CARTESIAN_POINT('',(5.791769774606E-02,0.231350486514,0.3)); +#1417 = CARTESIAN_POINT('',(5.979333253746E-02,0.222297662332,0.302)); +#1418 = CARTESIAN_POINT('',(5.979333253746E-02,0.222297662332,0.3)); +#1419 = CARTESIAN_POINT('',(6.156170775209E-02,0.21240277796,0.302)); +#1420 = CARTESIAN_POINT('',(6.156170775209E-02,0.21240277796,0.3)); +#1421 = CARTESIAN_POINT('',(6.278159431962E-02,0.203568217913,0.302)); +#1422 = CARTESIAN_POINT('',(6.278159431962E-02,0.203568217913,0.3)); +#1423 = CARTESIAN_POINT('',(6.378050185591E-02,0.195940552837,0.302)); +#1424 = CARTESIAN_POINT('',(6.378050185591E-02,0.195940552837,0.3)); +#1425 = CARTESIAN_POINT('',(6.429762897648E-02,0.189619370572,0.302)); +#1426 = CARTESIAN_POINT('',(6.429762897648E-02,0.189619370572,0.3)); +#1427 = CARTESIAN_POINT('',(6.481801724058E-02,0.182811558967,0.302)); +#1428 = CARTESIAN_POINT('',(6.481801724058E-02,0.182811558967,0.3)); +#1429 = CARTESIAN_POINT('',(6.530213568091E-02,0.175524876557,0.302)); +#1430 = CARTESIAN_POINT('',(6.530213568091E-02,0.175524876557,0.3)); +#1431 = CARTESIAN_POINT('',(6.55888258911E-02,0.16775281078,0.302)); +#1432 = CARTESIAN_POINT('',(6.55888258911E-02,0.16775281078,0.3)); +#1433 = CARTESIAN_POINT('',(6.57801125893E-02,0.159502830022,0.302)); +#1434 = CARTESIAN_POINT('',(6.57801125893E-02,0.159502830022,0.3)); +#1435 = CARTESIAN_POINT('',(6.595397313915E-02,0.150756638007,0.302)); +#1436 = CARTESIAN_POINT('',(6.595397313915E-02,0.150756638007,0.3)); +#1437 = CARTESIAN_POINT('',(6.596953865747E-02,0.144753695826,0.302)); +#1438 = CARTESIAN_POINT('',(6.596953865747E-02,0.144753695826,0.3)); +#1439 = CARTESIAN_POINT('',(6.597754323584E-02,0.14166667873,0.302)); +#1440 = CARTESIAN_POINT('',(6.597754323584E-02,0.14166667873,0.3)); +#1441 = DEFINITIONAL_REPRESENTATION('',(#1442),#1446); +#1442 = LINE('',#1443,#1444); +#1443 = CARTESIAN_POINT('',(0.,1.)); +#1444 = VECTOR('',#1445,1.); +#1445 = DIRECTION('',(1.,0.)); +#1446 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1447 = ORIENTED_EDGE('',*,*,#1448,.T.); +#1448 = EDGE_CURVE('',#1339,#1449,#1451,.T.); +#1449 = VERTEX_POINT('',#1450); +#1450 = CARTESIAN_POINT('',(2.317223182091E-02,1.170728373731E-02,0.3)); +#1451 = SURFACE_CURVE('',#1452,(#1480,#1511),.PCURVE_S1.); +#1452 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1453,#1454,#1455,#1456,#1457, + #1458,#1459,#1460,#1461,#1462,#1463,#1464,#1465,#1466,#1467,#1468, + #1469,#1470,#1471,#1472,#1473,#1474,#1475,#1476,#1477,#1478,#1479), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,4),(0.,7.425127519617E-02,0.145037257032,0.212011713592, + 0.275899532849,0.336376269156,0.393470127391,0.447214638654, + 0.497650014754,0.544761778702,0.589415800961,0.631520666925, + 0.670553822249,0.707275483502,0.741788019776,0.773746666861, + 0.803640481672,0.831601955261,0.858005482741,0.882699108133, + 0.906487914208,0.929872290123,0.952805410626,0.976254653174,1.), + .UNSPECIFIED.); +#1453 = CARTESIAN_POINT('',(6.597754323584E-02,0.14166667873,0.3)); +#1454 = CARTESIAN_POINT('',(6.59781590966E-02,0.13801358504,0.3)); +#1455 = CARTESIAN_POINT('',(6.5979362076E-02,0.13087788687,0.3)); +#1456 = CARTESIAN_POINT('',(6.568386605353E-02,0.120451066329,0.3)); +#1457 = CARTESIAN_POINT('',(6.534902312739E-02,0.110536192324,0.3)); +#1458 = CARTESIAN_POINT('',(6.483487836148E-02,0.101136305097,0.3)); +#1459 = CARTESIAN_POINT('',(6.417318371142E-02,9.223306878761E-02,0.3)); +#1460 = CARTESIAN_POINT('',(6.335321090005E-02,8.384431887529E-02,0.3)); +#1461 = CARTESIAN_POINT('',(6.238954210199E-02,7.596750341227E-02,0.3)); +#1462 = CARTESIAN_POINT('',(6.123951687959E-02,6.861354441172E-02,0.3)); +#1463 = CARTESIAN_POINT('',(6.004168775988E-02,6.171890302916E-02,0.3)); +#1464 = CARTESIAN_POINT('',(5.856567304436E-02,5.529887812021E-02,0.3)); +#1465 = CARTESIAN_POINT('',(5.706880600585E-02,4.929254856317E-02,0.3)); +#1466 = CARTESIAN_POINT('',(5.535221745542E-02,4.375155584245E-02,0.3)); +#1467 = CARTESIAN_POINT('',(5.351409616657E-02,3.864446330822E-02,0.3)); +#1468 = CARTESIAN_POINT('',(5.150385476805E-02,3.39814372612E-02,0.3)); +#1469 = CARTESIAN_POINT('',(4.943011845709E-02,2.971103287235E-02,0.3)); +#1470 = CARTESIAN_POINT('',(4.707573905087E-02,2.596670538104E-02,0.3)); +#1471 = CARTESIAN_POINT('',(4.469182805396E-02,2.256839536119E-02,0.3)); +#1472 = CARTESIAN_POINT('',(4.205450112872E-02,1.969534669371E-02,0.3)); +#1473 = CARTESIAN_POINT('',(3.930138538622E-02,1.724081704812E-02,0.3)); +#1474 = CARTESIAN_POINT('',(3.640843752915E-02,1.518570449081E-02,0.3)); +#1475 = CARTESIAN_POINT('',(3.329964953704E-02,1.366659229598E-02,0.3)); +#1476 = CARTESIAN_POINT('',(3.0067263023E-02,1.249148670626E-02,0.3)); +#1477 = CARTESIAN_POINT('',(2.666465408093E-02,1.181578354923E-02,0.3)); +#1478 = CARTESIAN_POINT('',(2.434123171392E-02,1.174360130119E-02,0.3)); +#1479 = CARTESIAN_POINT('',(2.317223182091E-02,1.170728373731E-02,0.3)); +#1480 = PCURVE('',#48,#1481); +#1481 = DEFINITIONAL_REPRESENTATION('',(#1482),#1510); +#1482 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1483,#1484,#1485,#1486,#1487, + #1488,#1489,#1490,#1491,#1492,#1493,#1494,#1495,#1496,#1497,#1498, + #1499,#1500,#1501,#1502,#1503,#1504,#1505,#1506,#1507,#1508,#1509), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,4),(0.,7.425127519617E-02,0.145037257032,0.212011713592, + 0.275899532849,0.336376269156,0.393470127391,0.447214638654, + 0.497650014754,0.544761778702,0.589415800961,0.631520666925, + 0.670553822249,0.707275483502,0.741788019776,0.773746666861, + 0.803640481672,0.831601955261,0.858005482741,0.882699108133, + 0.906487914208,0.929872290123,0.952805410626,0.976254653174,1.), + .UNSPECIFIED.); +#1483 = CARTESIAN_POINT('',(-0.54166667873,0.865977543236)); +#1484 = CARTESIAN_POINT('',(-0.53801358504,0.865978159097)); +#1485 = CARTESIAN_POINT('',(-0.53087788687,0.865979362076)); +#1486 = CARTESIAN_POINT('',(-0.520451066329,0.865683866054)); +#1487 = CARTESIAN_POINT('',(-0.510536192324,0.865349023127)); +#1488 = CARTESIAN_POINT('',(-0.501136305097,0.864834878361)); +#1489 = CARTESIAN_POINT('',(-0.492233068788,0.864173183711)); +#1490 = CARTESIAN_POINT('',(-0.483844318875,0.8633532109)); +#1491 = CARTESIAN_POINT('',(-0.475967503412,0.862389542102)); +#1492 = CARTESIAN_POINT('',(-0.468613544412,0.86123951688)); +#1493 = CARTESIAN_POINT('',(-0.461718903029,0.86004168776)); +#1494 = CARTESIAN_POINT('',(-0.45529887812,0.858565673044)); +#1495 = CARTESIAN_POINT('',(-0.449292548563,0.857068806006)); +#1496 = CARTESIAN_POINT('',(-0.443751555842,0.855352217455)); +#1497 = CARTESIAN_POINT('',(-0.438644463308,0.853514096167)); +#1498 = CARTESIAN_POINT('',(-0.433981437261,0.851503854768)); +#1499 = CARTESIAN_POINT('',(-0.429711032872,0.849430118457)); +#1500 = CARTESIAN_POINT('',(-0.425966705381,0.847075739051)); +#1501 = CARTESIAN_POINT('',(-0.422568395361,0.844691828054)); +#1502 = CARTESIAN_POINT('',(-0.419695346694,0.842054501129)); +#1503 = CARTESIAN_POINT('',(-0.417240817048,0.839301385386)); +#1504 = CARTESIAN_POINT('',(-0.415185704491,0.836408437529)); +#1505 = CARTESIAN_POINT('',(-0.413666592296,0.833299649537)); +#1506 = CARTESIAN_POINT('',(-0.412491486706,0.830067263023)); +#1507 = CARTESIAN_POINT('',(-0.411815783549,0.826664654081)); +#1508 = CARTESIAN_POINT('',(-0.411743601301,0.824341231714)); +#1509 = CARTESIAN_POINT('',(-0.411707283737,0.823172231821)); +#1510 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1511 = PCURVE('',#1512,#1567); +#1512 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#1513,#1514) + ,(#1515,#1516) + ,(#1517,#1518) + ,(#1519,#1520) + ,(#1521,#1522) + ,(#1523,#1524) + ,(#1525,#1526) + ,(#1527,#1528) + ,(#1529,#1530) + ,(#1531,#1532) + ,(#1533,#1534) + ,(#1535,#1536) + ,(#1537,#1538) + ,(#1539,#1540) + ,(#1541,#1542) + ,(#1543,#1544) + ,(#1545,#1546) + ,(#1547,#1548) + ,(#1549,#1550) + ,(#1551,#1552) + ,(#1553,#1554) + ,(#1555,#1556) + ,(#1557,#1558) + ,(#1559,#1560) + ,(#1561,#1562) + ,(#1563,#1564) + ,(#1565,#1566 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,4),(2,2),(0.,7.425127519617E-02,0.145037257032, + 0.212011713592,0.275899532849,0.336376269156,0.393470127391, + 0.447214638654,0.497650014754,0.544761778702,0.589415800961, + 0.631520666925,0.670553822249,0.707275483502,0.741788019776, + 0.773746666861,0.803640481672,0.831601955261,0.858005482741, + 0.882699108133,0.906487914208,0.929872290123,0.952805410626, + 0.976254653174,1.),(0.,1.),.UNSPECIFIED.); +#1513 = CARTESIAN_POINT('',(6.597754323584E-02,0.14166667873,0.302)); +#1514 = CARTESIAN_POINT('',(6.597754323584E-02,0.14166667873,0.3)); +#1515 = CARTESIAN_POINT('',(6.59781590966E-02,0.13801358504,0.302)); +#1516 = CARTESIAN_POINT('',(6.59781590966E-02,0.13801358504,0.3)); +#1517 = CARTESIAN_POINT('',(6.5979362076E-02,0.13087788687,0.302)); +#1518 = CARTESIAN_POINT('',(6.5979362076E-02,0.13087788687,0.3)); +#1519 = CARTESIAN_POINT('',(6.568386605353E-02,0.120451066329,0.302)); +#1520 = CARTESIAN_POINT('',(6.568386605353E-02,0.120451066329,0.3)); +#1521 = CARTESIAN_POINT('',(6.534902312739E-02,0.110536192324,0.302)); +#1522 = CARTESIAN_POINT('',(6.534902312739E-02,0.110536192324,0.3)); +#1523 = CARTESIAN_POINT('',(6.483487836148E-02,0.101136305097,0.302)); +#1524 = CARTESIAN_POINT('',(6.483487836148E-02,0.101136305097,0.3)); +#1525 = CARTESIAN_POINT('',(6.417318371142E-02,9.223306878761E-02,0.302) + ); +#1526 = CARTESIAN_POINT('',(6.417318371142E-02,9.223306878761E-02,0.3)); +#1527 = CARTESIAN_POINT('',(6.335321090005E-02,8.384431887529E-02,0.302) + ); +#1528 = CARTESIAN_POINT('',(6.335321090005E-02,8.384431887529E-02,0.3)); +#1529 = CARTESIAN_POINT('',(6.238954210199E-02,7.596750341227E-02,0.302) + ); +#1530 = CARTESIAN_POINT('',(6.238954210199E-02,7.596750341227E-02,0.3)); +#1531 = CARTESIAN_POINT('',(6.123951687959E-02,6.861354441172E-02,0.302) + ); +#1532 = CARTESIAN_POINT('',(6.123951687959E-02,6.861354441172E-02,0.3)); +#1533 = CARTESIAN_POINT('',(6.004168775988E-02,6.171890302916E-02,0.302) + ); +#1534 = CARTESIAN_POINT('',(6.004168775988E-02,6.171890302916E-02,0.3)); +#1535 = CARTESIAN_POINT('',(5.856567304436E-02,5.529887812021E-02,0.302) + ); +#1536 = CARTESIAN_POINT('',(5.856567304436E-02,5.529887812021E-02,0.3)); +#1537 = CARTESIAN_POINT('',(5.706880600585E-02,4.929254856317E-02,0.302) + ); +#1538 = CARTESIAN_POINT('',(5.706880600585E-02,4.929254856317E-02,0.3)); +#1539 = CARTESIAN_POINT('',(5.535221745542E-02,4.375155584245E-02,0.302) + ); +#1540 = CARTESIAN_POINT('',(5.535221745542E-02,4.375155584245E-02,0.3)); +#1541 = CARTESIAN_POINT('',(5.351409616657E-02,3.864446330822E-02,0.302) + ); +#1542 = CARTESIAN_POINT('',(5.351409616657E-02,3.864446330822E-02,0.3)); +#1543 = CARTESIAN_POINT('',(5.150385476805E-02,3.39814372612E-02,0.302) + ); +#1544 = CARTESIAN_POINT('',(5.150385476805E-02,3.39814372612E-02,0.3)); +#1545 = CARTESIAN_POINT('',(4.943011845709E-02,2.971103287235E-02,0.302) + ); +#1546 = CARTESIAN_POINT('',(4.943011845709E-02,2.971103287235E-02,0.3)); +#1547 = CARTESIAN_POINT('',(4.707573905087E-02,2.596670538104E-02,0.302) + ); +#1548 = CARTESIAN_POINT('',(4.707573905087E-02,2.596670538104E-02,0.3)); +#1549 = CARTESIAN_POINT('',(4.469182805396E-02,2.256839536119E-02,0.302) + ); +#1550 = CARTESIAN_POINT('',(4.469182805396E-02,2.256839536119E-02,0.3)); +#1551 = CARTESIAN_POINT('',(4.205450112872E-02,1.969534669371E-02,0.302) + ); +#1552 = CARTESIAN_POINT('',(4.205450112872E-02,1.969534669371E-02,0.3)); +#1553 = CARTESIAN_POINT('',(3.930138538622E-02,1.724081704812E-02,0.302) + ); +#1554 = CARTESIAN_POINT('',(3.930138538622E-02,1.724081704812E-02,0.3)); +#1555 = CARTESIAN_POINT('',(3.640843752915E-02,1.518570449081E-02,0.302) + ); +#1556 = CARTESIAN_POINT('',(3.640843752915E-02,1.518570449081E-02,0.3)); +#1557 = CARTESIAN_POINT('',(3.329964953704E-02,1.366659229598E-02,0.302) + ); +#1558 = CARTESIAN_POINT('',(3.329964953704E-02,1.366659229598E-02,0.3)); +#1559 = CARTESIAN_POINT('',(3.0067263023E-02,1.249148670626E-02,0.302)); +#1560 = CARTESIAN_POINT('',(3.0067263023E-02,1.249148670626E-02,0.3)); +#1561 = CARTESIAN_POINT('',(2.666465408093E-02,1.181578354923E-02,0.302) + ); +#1562 = CARTESIAN_POINT('',(2.666465408093E-02,1.181578354923E-02,0.3)); +#1563 = CARTESIAN_POINT('',(2.434123171392E-02,1.174360130119E-02,0.302) + ); +#1564 = CARTESIAN_POINT('',(2.434123171392E-02,1.174360130119E-02,0.3)); +#1565 = CARTESIAN_POINT('',(2.317223182091E-02,1.170728373731E-02,0.302) + ); +#1566 = CARTESIAN_POINT('',(2.317223182091E-02,1.170728373731E-02,0.3)); +#1567 = DEFINITIONAL_REPRESENTATION('',(#1568),#1572); +#1568 = LINE('',#1569,#1570); +#1569 = CARTESIAN_POINT('',(0.,1.)); +#1570 = VECTOR('',#1571,1.); +#1571 = DIRECTION('',(1.,0.)); +#1572 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1573 = ORIENTED_EDGE('',*,*,#1574,.T.); +#1574 = EDGE_CURVE('',#1449,#1149,#1575,.T.); +#1575 = SURFACE_CURVE('',#1576,(#1588,#1603),.PCURVE_S1.); +#1576 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1577,#1578,#1579,#1580,#1581, + #1582,#1583,#1584,#1585,#1586,#1587),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.112854647064,0.222519376563,0.333140162926, + 0.446105343461,0.568897005585,0.700571950429,0.84303095511,1.), + .UNSPECIFIED.); +#1577 = CARTESIAN_POINT('',(2.317223182091E-02,1.170728373731E-02,0.3)); +#1578 = CARTESIAN_POINT('',(2.162230948923E-02,1.17927506929E-02,0.3)); +#1579 = CARTESIAN_POINT('',(1.856627449252E-02,1.196126881925E-02,0.3)); +#1580 = CARTESIAN_POINT('',(1.41038243527E-02,1.311682872093E-02,0.3)); +#1581 = CARTESIAN_POINT('',(9.957795856105E-03,1.511045280708E-02,0.3)); +#1582 = CARTESIAN_POINT('',(6.06522043719E-03,1.787476771453E-02,0.3)); +#1583 = CARTESIAN_POINT('',(2.410954475236E-03,2.138261236295E-02,0.3)); +#1584 = CARTESIAN_POINT('',(-9.106120123595E-04,2.572022484956E-02,0.3) + ); +#1585 = CARTESIAN_POINT('',(-4.04815170646E-03,3.075511344898E-02,0.3)); +#1586 = CARTESIAN_POINT('',(-5.766959432909E-03,3.449404554434E-02,0.3) + ); +#1587 = CARTESIAN_POINT('',(-6.668009309687E-03,3.645410439907E-02,0.3) + ); +#1588 = PCURVE('',#48,#1589); +#1589 = DEFINITIONAL_REPRESENTATION('',(#1590),#1602); +#1590 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1591,#1592,#1593,#1594,#1595, + #1596,#1597,#1598,#1599,#1600,#1601),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.112854647064,0.222519376563,0.333140162926, + 0.446105343461,0.568897005585,0.700571950429,0.84303095511,1.), + .UNSPECIFIED.); +#1591 = CARTESIAN_POINT('',(-0.411707283737,0.823172231821)); +#1592 = CARTESIAN_POINT('',(-0.411792750693,0.821622309489)); +#1593 = CARTESIAN_POINT('',(-0.411961268819,0.818566274493)); +#1594 = CARTESIAN_POINT('',(-0.413116828721,0.814103824353)); +#1595 = CARTESIAN_POINT('',(-0.415110452807,0.809957795856)); +#1596 = CARTESIAN_POINT('',(-0.417874767715,0.806065220437)); +#1597 = CARTESIAN_POINT('',(-0.421382612363,0.802410954475)); +#1598 = CARTESIAN_POINT('',(-0.42572022485,0.799089387988)); +#1599 = CARTESIAN_POINT('',(-0.430755113449,0.795951848294)); +#1600 = CARTESIAN_POINT('',(-0.434494045544,0.794233040567)); +#1601 = CARTESIAN_POINT('',(-0.436454104399,0.79333199069)); +#1602 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1603 = PCURVE('',#1604,#1627); +#1604 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#1605,#1606) + ,(#1607,#1608) + ,(#1609,#1610) + ,(#1611,#1612) + ,(#1613,#1614) + ,(#1615,#1616) + ,(#1617,#1618) + ,(#1619,#1620) + ,(#1621,#1622) + ,(#1623,#1624) + ,(#1625,#1626 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,4),(2,2),(0., + 0.112854647064,0.222519376563,0.333140162926,0.446105343461, + 0.568897005585,0.700571950429,0.84303095511,1.),(0.,1.), + .UNSPECIFIED.); +#1605 = CARTESIAN_POINT('',(2.317223182091E-02,1.170728373731E-02,0.302) + ); +#1606 = CARTESIAN_POINT('',(2.317223182091E-02,1.170728373731E-02,0.3)); +#1607 = CARTESIAN_POINT('',(2.162230948923E-02,1.17927506929E-02,0.302) + ); +#1608 = CARTESIAN_POINT('',(2.162230948923E-02,1.17927506929E-02,0.3)); +#1609 = CARTESIAN_POINT('',(1.856627449252E-02,1.196126881925E-02,0.302) + ); +#1610 = CARTESIAN_POINT('',(1.856627449252E-02,1.196126881925E-02,0.3)); +#1611 = CARTESIAN_POINT('',(1.41038243527E-02,1.311682872093E-02,0.302) + ); +#1612 = CARTESIAN_POINT('',(1.41038243527E-02,1.311682872093E-02,0.3)); +#1613 = CARTESIAN_POINT('',(9.957795856105E-03,1.511045280708E-02,0.302) + ); +#1614 = CARTESIAN_POINT('',(9.957795856105E-03,1.511045280708E-02,0.3)); +#1615 = CARTESIAN_POINT('',(6.06522043719E-03,1.787476771453E-02,0.302) + ); +#1616 = CARTESIAN_POINT('',(6.06522043719E-03,1.787476771453E-02,0.3)); +#1617 = CARTESIAN_POINT('',(2.410954475236E-03,2.138261236295E-02,0.302) + ); +#1618 = CARTESIAN_POINT('',(2.410954475236E-03,2.138261236295E-02,0.3)); +#1619 = CARTESIAN_POINT('',(-9.106120123595E-04,2.572022484956E-02,0.302 + )); +#1620 = CARTESIAN_POINT('',(-9.106120123595E-04,2.572022484956E-02,0.3) + ); +#1621 = CARTESIAN_POINT('',(-4.04815170646E-03,3.075511344898E-02,0.302) + ); +#1622 = CARTESIAN_POINT('',(-4.04815170646E-03,3.075511344898E-02,0.3)); +#1623 = CARTESIAN_POINT('',(-5.766959432909E-03,3.449404554434E-02,0.302 + )); +#1624 = CARTESIAN_POINT('',(-5.766959432909E-03,3.449404554434E-02,0.3) + ); +#1625 = CARTESIAN_POINT('',(-6.668009309687E-03,3.645410439907E-02,0.302 + )); +#1626 = CARTESIAN_POINT('',(-6.668009309687E-03,3.645410439907E-02,0.3) + ); +#1627 = DEFINITIONAL_REPRESENTATION('',(#1628),#1632); +#1628 = LINE('',#1629,#1630); +#1629 = CARTESIAN_POINT('',(0.,1.)); +#1630 = VECTOR('',#1631,1.); +#1631 = DIRECTION('',(1.,0.)); +#1632 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1633 = FACE_BOUND('',#1634,.T.); +#1634 = EDGE_LOOP('',(#1635,#1665,#1692,#1720)); +#1635 = ORIENTED_EDGE('',*,*,#1636,.F.); +#1636 = EDGE_CURVE('',#1637,#1639,#1641,.T.); +#1637 = VERTEX_POINT('',#1638); +#1638 = CARTESIAN_POINT('',(-0.4,-0.385,0.3)); +#1639 = VERTEX_POINT('',#1640); +#1640 = CARTESIAN_POINT('',(-0.4,0.385,0.3)); +#1641 = SURFACE_CURVE('',#1642,(#1646,#1653),.PCURVE_S1.); +#1642 = LINE('',#1643,#1644); +#1643 = CARTESIAN_POINT('',(-0.4,-0.4,0.3)); +#1644 = VECTOR('',#1645,1.); +#1645 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#1646 = PCURVE('',#48,#1647); +#1647 = DEFINITIONAL_REPRESENTATION('',(#1648),#1652); +#1648 = LINE('',#1649,#1650); +#1649 = CARTESIAN_POINT('',(0.,0.4)); +#1650 = VECTOR('',#1651,1.); +#1651 = DIRECTION('',(-1.,0.)); +#1652 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1653 = PCURVE('',#1654,#1659); +#1654 = PLANE('',#1655); +#1655 = AXIS2_PLACEMENT_3D('',#1656,#1657,#1658); +#1656 = CARTESIAN_POINT('',(-0.8,-0.4,0.3)); +#1657 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#1658 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#1659 = DEFINITIONAL_REPRESENTATION('',(#1660),#1664); +#1660 = LINE('',#1661,#1662); +#1661 = CARTESIAN_POINT('',(0.,0.4)); +#1662 = VECTOR('',#1663,1.); +#1663 = DIRECTION('',(-1.,0.)); +#1664 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1665 = ORIENTED_EDGE('',*,*,#1666,.T.); +#1666 = EDGE_CURVE('',#1637,#1667,#1669,.T.); +#1667 = VERTEX_POINT('',#1668); +#1668 = CARTESIAN_POINT('',(0.4,-0.385,0.3)); +#1669 = SURFACE_CURVE('',#1670,(#1674,#1681),.PCURVE_S1.); +#1670 = LINE('',#1671,#1672); +#1671 = CARTESIAN_POINT('',(0.8,-0.385,0.3)); +#1672 = VECTOR('',#1673,1.); +#1673 = DIRECTION('',(1.,0.,0.)); +#1674 = PCURVE('',#48,#1675); +#1675 = DEFINITIONAL_REPRESENTATION('',(#1676),#1680); +#1676 = LINE('',#1677,#1678); +#1677 = CARTESIAN_POINT('',(-1.5E-02,1.6)); +#1678 = VECTOR('',#1679,1.); +#1679 = DIRECTION('',(0.,1.)); +#1680 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1681 = PCURVE('',#1682,#1687); +#1682 = CYLINDRICAL_SURFACE('',#1683,1.5E-02); +#1683 = AXIS2_PLACEMENT_3D('',#1684,#1685,#1686); +#1684 = CARTESIAN_POINT('',(-0.8,-0.385,0.285)); +#1685 = DIRECTION('',(-1.,-0.,0.)); +#1686 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#1687 = DEFINITIONAL_REPRESENTATION('',(#1688),#1691); +#1688 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#1689,#1690),.UNSPECIFIED.,.F., + .F.,(2,2),(-1.2,-0.4),.PIECEWISE_BEZIER_KNOTS.); +#1689 = CARTESIAN_POINT('',(1.570796326795,-0.4)); +#1690 = CARTESIAN_POINT('',(1.570796326795,-1.2)); +#1691 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1692 = ORIENTED_EDGE('',*,*,#1693,.F.); +#1693 = EDGE_CURVE('',#1694,#1667,#1696,.T.); +#1694 = VERTEX_POINT('',#1695); +#1695 = CARTESIAN_POINT('',(0.4,0.385,0.3)); +#1696 = SURFACE_CURVE('',#1697,(#1701,#1708),.PCURVE_S1.); +#1697 = LINE('',#1698,#1699); +#1698 = CARTESIAN_POINT('',(0.4,-0.4,0.3)); +#1699 = VECTOR('',#1700,1.); +#1700 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#1701 = PCURVE('',#48,#1702); +#1702 = DEFINITIONAL_REPRESENTATION('',(#1703),#1707); +#1703 = LINE('',#1704,#1705); +#1704 = CARTESIAN_POINT('',(0.,1.2)); +#1705 = VECTOR('',#1706,1.); +#1706 = DIRECTION('',(1.,0.)); +#1707 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1708 = PCURVE('',#1709,#1714); +#1709 = PLANE('',#1710); +#1710 = AXIS2_PLACEMENT_3D('',#1711,#1712,#1713); +#1711 = CARTESIAN_POINT('',(-0.8,-0.4,0.3)); +#1712 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#1713 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#1714 = DEFINITIONAL_REPRESENTATION('',(#1715),#1719); +#1715 = LINE('',#1716,#1717); +#1716 = CARTESIAN_POINT('',(0.,1.2)); +#1717 = VECTOR('',#1718,1.); +#1718 = DIRECTION('',(1.,0.)); +#1719 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1720 = ORIENTED_EDGE('',*,*,#1721,.T.); +#1721 = EDGE_CURVE('',#1694,#1639,#1722,.T.); +#1722 = SURFACE_CURVE('',#1723,(#1727,#1734),.PCURVE_S1.); +#1723 = LINE('',#1724,#1725); +#1724 = CARTESIAN_POINT('',(-0.8,0.385,0.3)); +#1725 = VECTOR('',#1726,1.); +#1726 = DIRECTION('',(-1.,-0.,0.)); +#1727 = PCURVE('',#48,#1728); +#1728 = DEFINITIONAL_REPRESENTATION('',(#1729),#1733); +#1729 = LINE('',#1730,#1731); +#1730 = CARTESIAN_POINT('',(-0.785,0.)); +#1731 = VECTOR('',#1732,1.); +#1732 = DIRECTION('',(-0.,-1.)); +#1733 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1734 = PCURVE('',#1735,#1740); +#1735 = CYLINDRICAL_SURFACE('',#1736,1.5E-02); +#1736 = AXIS2_PLACEMENT_3D('',#1737,#1738,#1739); +#1737 = CARTESIAN_POINT('',(-0.8,0.385,0.285)); +#1738 = DIRECTION('',(1.,0.,0.)); +#1739 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#1740 = DEFINITIONAL_REPRESENTATION('',(#1741),#1744); +#1741 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#1742,#1743),.UNSPECIFIED.,.F., + .F.,(2,2),(-1.2,-0.4),.PIECEWISE_BEZIER_KNOTS.); +#1742 = CARTESIAN_POINT('',(1.570796326795,1.2)); +#1743 = CARTESIAN_POINT('',(1.570796326795,0.4)); +#1744 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1745 = FACE_BOUND('',#1746,.T.); +#1746 = EDGE_LOOP('',(#1747,#1843,#1871,#1917,#1979,#2025,#2103,#2165, + #2259,#2337,#2431,#2493)); +#1747 = ORIENTED_EDGE('',*,*,#1748,.T.); +#1748 = EDGE_CURVE('',#1749,#1751,#1753,.T.); +#1749 = VERTEX_POINT('',#1750); +#1750 = CARTESIAN_POINT('',(-7.247088587182E-02,0.27183186849,0.3)); +#1751 = VERTEX_POINT('',#1752); +#1752 = CARTESIAN_POINT('',(-3.609666090745E-02,0.205977543236,0.3)); +#1753 = SURFACE_CURVE('',#1754,(#1774,#1797),.PCURVE_S1.); +#1754 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1755,#1756,#1757,#1758,#1759, + #1760,#1761,#1762,#1763,#1764,#1765,#1766,#1767,#1768,#1769,#1770, + #1771,#1772,#1773),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,4.524912127705E-02,8.904597190023E-02,0.133753272651, + 0.179019764033,0.226220404522,0.276333290597,0.330501923748, + 0.389318397234,0.451843900854,0.517625875636,0.587611593084, + 0.660911148885,0.73911673359,0.821057935489,0.908156625983,1.), + .UNSPECIFIED.); +#1755 = CARTESIAN_POINT('',(-7.247088587182E-02,0.27183186849,0.3)); +#1756 = CARTESIAN_POINT('',(-7.123111326146E-02,0.271789034478,0.3)); +#1757 = CARTESIAN_POINT('',(-6.87913585456E-02,0.271704741213,0.3)); +#1758 = CARTESIAN_POINT('',(-6.521400133993E-02,0.270829239128,0.3)); +#1759 = CARTESIAN_POINT('',(-6.181959741819E-02,0.269436686784,0.3)); +#1760 = CARTESIAN_POINT('',(-5.857759922046E-02,0.267513615395,0.3)); +#1761 = CARTESIAN_POINT('',(-5.558955412587E-02,0.264987154949,0.3)); +#1762 = CARTESIAN_POINT('',(-5.273272181847E-02,0.261974988972,0.3)); +#1763 = CARTESIAN_POINT('',(-5.006131531264E-02,0.258390048367,0.3)); +#1764 = CARTESIAN_POINT('',(-4.756613533398E-02,0.254282218988,0.3)); +#1765 = CARTESIAN_POINT('',(-4.52586527869E-02,0.249707537836,0.3)); +#1766 = CARTESIAN_POINT('',(-4.319491037047E-02,0.244685579719,0.3)); +#1767 = CARTESIAN_POINT('',(-4.14179624297E-02,0.239245226009,0.3)); +#1768 = CARTESIAN_POINT('',(-3.987653488647E-02,0.233383334155,0.3)); +#1769 = CARTESIAN_POINT('',(-3.854573071684E-02,0.227135373781,0.3)); +#1770 = CARTESIAN_POINT('',(-3.746397790014E-02,0.220456583909,0.3)); +#1771 = CARTESIAN_POINT('',(-3.665542932565E-02,0.213363880641,0.3)); +#1772 = CARTESIAN_POINT('',(-3.62861806139E-02,0.208482796667,0.3)); +#1773 = CARTESIAN_POINT('',(-3.609666090745E-02,0.205977543236,0.3)); +#1774 = PCURVE('',#48,#1775); +#1775 = DEFINITIONAL_REPRESENTATION('',(#1776),#1796); +#1776 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1777,#1778,#1779,#1780,#1781, + #1782,#1783,#1784,#1785,#1786,#1787,#1788,#1789,#1790,#1791,#1792, + #1793,#1794,#1795),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,4.524912127705E-02,8.904597190023E-02,0.133753272651, + 0.179019764033,0.226220404522,0.276333290597,0.330501923748, + 0.389318397234,0.451843900854,0.517625875636,0.587611593084, + 0.660911148885,0.73911673359,0.821057935489,0.908156625983,1.), + .UNSPECIFIED.); +#1777 = CARTESIAN_POINT('',(-0.67183186849,0.727529114128)); +#1778 = CARTESIAN_POINT('',(-0.671789034478,0.728768886739)); +#1779 = CARTESIAN_POINT('',(-0.671704741213,0.731208641454)); +#1780 = CARTESIAN_POINT('',(-0.670829239128,0.73478599866)); +#1781 = CARTESIAN_POINT('',(-0.669436686784,0.738180402582)); +#1782 = CARTESIAN_POINT('',(-0.667513615395,0.74142240078)); +#1783 = CARTESIAN_POINT('',(-0.664987154949,0.744410445874)); +#1784 = CARTESIAN_POINT('',(-0.661974988972,0.747267278182)); +#1785 = CARTESIAN_POINT('',(-0.658390048367,0.749938684687)); +#1786 = CARTESIAN_POINT('',(-0.654282218988,0.752433864666)); +#1787 = CARTESIAN_POINT('',(-0.649707537836,0.754741347213)); +#1788 = CARTESIAN_POINT('',(-0.644685579719,0.75680508963)); +#1789 = CARTESIAN_POINT('',(-0.639245226009,0.75858203757)); +#1790 = CARTESIAN_POINT('',(-0.633383334155,0.760123465114)); +#1791 = CARTESIAN_POINT('',(-0.627135373781,0.761454269283)); +#1792 = CARTESIAN_POINT('',(-0.620456583909,0.7625360221)); +#1793 = CARTESIAN_POINT('',(-0.613363880641,0.763344570674)); +#1794 = CARTESIAN_POINT('',(-0.608482796667,0.763713819386)); +#1795 = CARTESIAN_POINT('',(-0.605977543236,0.763903339093)); +#1796 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1797 = PCURVE('',#1798,#1837); +#1798 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#1799,#1800) + ,(#1801,#1802) + ,(#1803,#1804) + ,(#1805,#1806) + ,(#1807,#1808) + ,(#1809,#1810) + ,(#1811,#1812) + ,(#1813,#1814) + ,(#1815,#1816) + ,(#1817,#1818) + ,(#1819,#1820) + ,(#1821,#1822) + ,(#1823,#1824) + ,(#1825,#1826) + ,(#1827,#1828) + ,(#1829,#1830) + ,(#1831,#1832) + ,(#1833,#1834) + ,(#1835,#1836 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, + 2),(0.,4.524912127705E-02,8.904597190023E-02,0.133753272651, + 0.179019764033,0.226220404522,0.276333290597,0.330501923748, + 0.389318397234,0.451843900854,0.517625875636,0.587611593084, + 0.660911148885,0.73911673359,0.821057935489,0.908156625983,1.),(0., + 1.),.UNSPECIFIED.); +#1799 = CARTESIAN_POINT('',(-7.247088587182E-02,0.27183186849,0.302)); +#1800 = CARTESIAN_POINT('',(-7.247088587182E-02,0.27183186849,0.3)); +#1801 = CARTESIAN_POINT('',(-7.123111326146E-02,0.271789034478,0.302)); +#1802 = CARTESIAN_POINT('',(-7.123111326146E-02,0.271789034478,0.3)); +#1803 = CARTESIAN_POINT('',(-6.87913585456E-02,0.271704741213,0.302)); +#1804 = CARTESIAN_POINT('',(-6.87913585456E-02,0.271704741213,0.3)); +#1805 = CARTESIAN_POINT('',(-6.521400133993E-02,0.270829239128,0.302)); +#1806 = CARTESIAN_POINT('',(-6.521400133993E-02,0.270829239128,0.3)); +#1807 = CARTESIAN_POINT('',(-6.181959741819E-02,0.269436686784,0.302)); +#1808 = CARTESIAN_POINT('',(-6.181959741819E-02,0.269436686784,0.3)); +#1809 = CARTESIAN_POINT('',(-5.857759922046E-02,0.267513615395,0.302)); +#1810 = CARTESIAN_POINT('',(-5.857759922046E-02,0.267513615395,0.3)); +#1811 = CARTESIAN_POINT('',(-5.558955412587E-02,0.264987154949,0.302)); +#1812 = CARTESIAN_POINT('',(-5.558955412587E-02,0.264987154949,0.3)); +#1813 = CARTESIAN_POINT('',(-5.273272181847E-02,0.261974988972,0.302)); +#1814 = CARTESIAN_POINT('',(-5.273272181847E-02,0.261974988972,0.3)); +#1815 = CARTESIAN_POINT('',(-5.006131531264E-02,0.258390048367,0.302)); +#1816 = CARTESIAN_POINT('',(-5.006131531264E-02,0.258390048367,0.3)); +#1817 = CARTESIAN_POINT('',(-4.756613533398E-02,0.254282218988,0.302)); +#1818 = CARTESIAN_POINT('',(-4.756613533398E-02,0.254282218988,0.3)); +#1819 = CARTESIAN_POINT('',(-4.52586527869E-02,0.249707537836,0.302)); +#1820 = CARTESIAN_POINT('',(-4.52586527869E-02,0.249707537836,0.3)); +#1821 = CARTESIAN_POINT('',(-4.319491037047E-02,0.244685579719,0.302)); +#1822 = CARTESIAN_POINT('',(-4.319491037047E-02,0.244685579719,0.3)); +#1823 = CARTESIAN_POINT('',(-4.14179624297E-02,0.239245226009,0.302)); +#1824 = CARTESIAN_POINT('',(-4.14179624297E-02,0.239245226009,0.3)); +#1825 = CARTESIAN_POINT('',(-3.987653488647E-02,0.233383334155,0.302)); +#1826 = CARTESIAN_POINT('',(-3.987653488647E-02,0.233383334155,0.3)); +#1827 = CARTESIAN_POINT('',(-3.854573071684E-02,0.227135373781,0.302)); +#1828 = CARTESIAN_POINT('',(-3.854573071684E-02,0.227135373781,0.3)); +#1829 = CARTESIAN_POINT('',(-3.746397790014E-02,0.220456583909,0.302)); +#1830 = CARTESIAN_POINT('',(-3.746397790014E-02,0.220456583909,0.3)); +#1831 = CARTESIAN_POINT('',(-3.665542932565E-02,0.213363880641,0.302)); +#1832 = CARTESIAN_POINT('',(-3.665542932565E-02,0.213363880641,0.3)); +#1833 = CARTESIAN_POINT('',(-3.62861806139E-02,0.208482796667,0.302)); +#1834 = CARTESIAN_POINT('',(-3.62861806139E-02,0.208482796667,0.3)); +#1835 = CARTESIAN_POINT('',(-3.609666090745E-02,0.205977543236,0.302)); +#1836 = CARTESIAN_POINT('',(-3.609666090745E-02,0.205977543236,0.3)); +#1837 = DEFINITIONAL_REPRESENTATION('',(#1838),#1842); +#1838 = LINE('',#1839,#1840); +#1839 = CARTESIAN_POINT('',(0.,1.)); +#1840 = VECTOR('',#1841,1.); +#1841 = DIRECTION('',(1.,0.)); +#1842 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1843 = ORIENTED_EDGE('',*,*,#1844,.T.); +#1844 = EDGE_CURVE('',#1751,#1845,#1847,.T.); +#1845 = VERTEX_POINT('',#1846); +#1846 = CARTESIAN_POINT('',(-5.256024222089E-02,0.202684826973,0.3)); +#1847 = SURFACE_CURVE('',#1848,(#1852,#1859),.PCURVE_S1.); +#1848 = LINE('',#1849,#1850); +#1849 = CARTESIAN_POINT('',(-3.609666090745E-02,0.205977543236,0.3)); +#1850 = VECTOR('',#1851,1.); +#1851 = DIRECTION('',(-0.980580675691,-0.196116135138, + -2.681258496579E-17)); +#1852 = PCURVE('',#48,#1853); +#1853 = DEFINITIONAL_REPRESENTATION('',(#1854),#1858); +#1854 = LINE('',#1855,#1856); +#1855 = CARTESIAN_POINT('',(-0.605977543236,0.763903339093)); +#1856 = VECTOR('',#1857,1.); +#1857 = DIRECTION('',(0.196116135138,-0.980580675691)); +#1858 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1859 = PCURVE('',#1860,#1865); +#1860 = PLANE('',#1861); +#1861 = AXIS2_PLACEMENT_3D('',#1862,#1863,#1864); +#1862 = CARTESIAN_POINT('',(-3.609666090745E-02,0.205977543236,0.302)); +#1863 = DIRECTION('',(0.196116135138,-0.980580675691,-1.340629248289E-16 + )); +#1864 = DIRECTION('',(0.980580675691,0.196116135138,2.681258496579E-17) + ); +#1865 = DEFINITIONAL_REPRESENTATION('',(#1866),#1870); +#1866 = LINE('',#1867,#1868); +#1867 = CARTESIAN_POINT('',(-5.362516993158E-20,-2.E-03)); +#1868 = VECTOR('',#1869,1.); +#1869 = DIRECTION('',(-1.,-1.072803164334E-33)); +#1870 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1871 = ORIENTED_EDGE('',*,*,#1872,.T.); +#1872 = EDGE_CURVE('',#1845,#1873,#1875,.T.); +#1873 = VERTEX_POINT('',#1874); +#1874 = CARTESIAN_POINT('',(-5.832249568059E-02,0.229026557075,0.3)); +#1875 = SURFACE_CURVE('',#1876,(#1884,#1895),.PCURVE_S1.); +#1876 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1877,#1878,#1879,#1880,#1881, + #1882,#1883),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.,0.31467797743, + 0.585132279047,0.813474950365,1.),.UNSPECIFIED.); +#1877 = CARTESIAN_POINT('',(-5.256024222089E-02,0.202684826973,0.3)); +#1878 = CARTESIAN_POINT('',(-5.291623792002E-02,0.205500322404,0.3)); +#1879 = CARTESIAN_POINT('',(-5.35781990031E-02,0.210735633982,0.3)); +#1880 = CARTESIAN_POINT('',(-5.48055694023E-02,0.217971193731,0.3)); +#1881 = CARTESIAN_POINT('',(-5.635002442134E-02,0.22397092699,0.3)); +#1882 = CARTESIAN_POINT('',(-5.77107236116E-02,0.227458527496,0.3)); +#1883 = CARTESIAN_POINT('',(-5.832249568059E-02,0.229026557075,0.3)); +#1884 = PCURVE('',#48,#1885); +#1885 = DEFINITIONAL_REPRESENTATION('',(#1886),#1894); +#1886 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1887,#1888,#1889,#1890,#1891, + #1892,#1893),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.,0.31467797743, + 0.585132279047,0.813474950365,1.),.UNSPECIFIED.); +#1887 = CARTESIAN_POINT('',(-0.602684826973,0.747439757779)); +#1888 = CARTESIAN_POINT('',(-0.605500322404,0.74708376208)); +#1889 = CARTESIAN_POINT('',(-0.610735633982,0.746421800997)); +#1890 = CARTESIAN_POINT('',(-0.617971193731,0.745194430598)); +#1891 = CARTESIAN_POINT('',(-0.62397092699,0.743649975579)); +#1892 = CARTESIAN_POINT('',(-0.627458527496,0.742289276388)); +#1893 = CARTESIAN_POINT('',(-0.629026557075,0.741677504319)); +#1894 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1895 = PCURVE('',#1896,#1911); +#1896 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#1897,#1898) + ,(#1899,#1900) + ,(#1901,#1902) + ,(#1903,#1904) + ,(#1905,#1906) + ,(#1907,#1908) + ,(#1909,#1910 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,4),(2,2),(0.,0.31467797743, + 0.585132279047,0.813474950365,1.),(0.,1.),.UNSPECIFIED.); +#1897 = CARTESIAN_POINT('',(-5.256024222089E-02,0.202684826973,0.302)); +#1898 = CARTESIAN_POINT('',(-5.256024222089E-02,0.202684826973,0.3)); +#1899 = CARTESIAN_POINT('',(-5.291623792002E-02,0.205500322404,0.302)); +#1900 = CARTESIAN_POINT('',(-5.291623792002E-02,0.205500322404,0.3)); +#1901 = CARTESIAN_POINT('',(-5.35781990031E-02,0.210735633982,0.302)); +#1902 = CARTESIAN_POINT('',(-5.35781990031E-02,0.210735633982,0.3)); +#1903 = CARTESIAN_POINT('',(-5.48055694023E-02,0.217971193731,0.302)); +#1904 = CARTESIAN_POINT('',(-5.48055694023E-02,0.217971193731,0.3)); +#1905 = CARTESIAN_POINT('',(-5.635002442134E-02,0.22397092699,0.302)); +#1906 = CARTESIAN_POINT('',(-5.635002442134E-02,0.22397092699,0.3)); +#1907 = CARTESIAN_POINT('',(-5.77107236116E-02,0.227458527496,0.302)); +#1908 = CARTESIAN_POINT('',(-5.77107236116E-02,0.227458527496,0.3)); +#1909 = CARTESIAN_POINT('',(-5.832249568059E-02,0.229026557075,0.302)); +#1910 = CARTESIAN_POINT('',(-5.832249568059E-02,0.229026557075,0.3)); +#1911 = DEFINITIONAL_REPRESENTATION('',(#1912),#1916); +#1912 = LINE('',#1913,#1914); +#1913 = CARTESIAN_POINT('',(0.,1.)); +#1914 = VECTOR('',#1915,1.); +#1915 = DIRECTION('',(1.,0.)); +#1916 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1917 = ORIENTED_EDGE('',*,*,#1918,.T.); +#1918 = EDGE_CURVE('',#1873,#1919,#1921,.T.); +#1919 = VERTEX_POINT('',#1920); +#1920 = CARTESIAN_POINT('',(-7.355130839552E-02,0.242197422125,0.3)); +#1921 = SURFACE_CURVE('',#1922,(#1934,#1949),.PCURVE_S1.); +#1922 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1923,#1924,#1925,#1926,#1927, + #1928,#1929,#1930,#1931,#1932,#1933),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.16327665571,0.310892172789,0.44681935319, + 0.569906175247,0.684023518813,0.789987372117,0.89559207171,1.), + .UNSPECIFIED.); +#1923 = CARTESIAN_POINT('',(-5.832249568059E-02,0.229026557075,0.3)); +#1924 = CARTESIAN_POINT('',(-5.884028457047E-02,0.230062546245,0.3)); +#1925 = CARTESIAN_POINT('',(-5.982619717581E-02,0.232035154777,0.3)); +#1926 = CARTESIAN_POINT('',(-6.145963268323E-02,0.234760556423,0.3)); +#1927 = CARTESIAN_POINT('',(-6.327103375237E-02,0.237013087029,0.3)); +#1928 = CARTESIAN_POINT('',(-6.512274675376E-02,0.238914427285,0.3)); +#1929 = CARTESIAN_POINT('',(-6.709097498585E-02,0.240365285804,0.3)); +#1930 = CARTESIAN_POINT('',(-6.914569465816E-02,0.241442329562,0.3)); +#1931 = CARTESIAN_POINT('',(-7.131901586453E-02,0.242074823052,0.3)); +#1932 = CARTESIAN_POINT('',(-7.281004312541E-02,0.242156711316,0.3)); +#1933 = CARTESIAN_POINT('',(-7.355130839552E-02,0.242197422125,0.3)); +#1934 = PCURVE('',#48,#1935); +#1935 = DEFINITIONAL_REPRESENTATION('',(#1936),#1948); +#1936 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1937,#1938,#1939,#1940,#1941, + #1942,#1943,#1944,#1945,#1946,#1947),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.16327665571,0.310892172789,0.44681935319, + 0.569906175247,0.684023518813,0.789987372117,0.89559207171,1.), + .UNSPECIFIED.); +#1937 = CARTESIAN_POINT('',(-0.629026557075,0.741677504319)); +#1938 = CARTESIAN_POINT('',(-0.630062546245,0.74115971543)); +#1939 = CARTESIAN_POINT('',(-0.632035154777,0.740173802824)); +#1940 = CARTESIAN_POINT('',(-0.634760556423,0.738540367317)); +#1941 = CARTESIAN_POINT('',(-0.637013087029,0.736728966248)); +#1942 = CARTESIAN_POINT('',(-0.638914427285,0.734877253246)); +#1943 = CARTESIAN_POINT('',(-0.640365285804,0.732909025014)); +#1944 = CARTESIAN_POINT('',(-0.641442329562,0.730854305342)); +#1945 = CARTESIAN_POINT('',(-0.642074823052,0.728680984135)); +#1946 = CARTESIAN_POINT('',(-0.642156711316,0.727189956875)); +#1947 = CARTESIAN_POINT('',(-0.642197422125,0.726448691604)); +#1948 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1949 = PCURVE('',#1950,#1973); +#1950 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#1951,#1952) + ,(#1953,#1954) + ,(#1955,#1956) + ,(#1957,#1958) + ,(#1959,#1960) + ,(#1961,#1962) + ,(#1963,#1964) + ,(#1965,#1966) + ,(#1967,#1968) + ,(#1969,#1970) + ,(#1971,#1972 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,4),(2,2),(0., + 0.16327665571,0.310892172789,0.44681935319,0.569906175247, + 0.684023518813,0.789987372117,0.89559207171,1.),(0.,1.), + .UNSPECIFIED.); +#1951 = CARTESIAN_POINT('',(-5.832249568059E-02,0.229026557075,0.302)); +#1952 = CARTESIAN_POINT('',(-5.832249568059E-02,0.229026557075,0.3)); +#1953 = CARTESIAN_POINT('',(-5.884028457047E-02,0.230062546245,0.302)); +#1954 = CARTESIAN_POINT('',(-5.884028457047E-02,0.230062546245,0.3)); +#1955 = CARTESIAN_POINT('',(-5.982619717581E-02,0.232035154777,0.302)); +#1956 = CARTESIAN_POINT('',(-5.982619717581E-02,0.232035154777,0.3)); +#1957 = CARTESIAN_POINT('',(-6.145963268323E-02,0.234760556423,0.302)); +#1958 = CARTESIAN_POINT('',(-6.145963268323E-02,0.234760556423,0.3)); +#1959 = CARTESIAN_POINT('',(-6.327103375237E-02,0.237013087029,0.302)); +#1960 = CARTESIAN_POINT('',(-6.327103375237E-02,0.237013087029,0.3)); +#1961 = CARTESIAN_POINT('',(-6.512274675376E-02,0.238914427285,0.302)); +#1962 = CARTESIAN_POINT('',(-6.512274675376E-02,0.238914427285,0.3)); +#1963 = CARTESIAN_POINT('',(-6.709097498585E-02,0.240365285804,0.302)); +#1964 = CARTESIAN_POINT('',(-6.709097498585E-02,0.240365285804,0.3)); +#1965 = CARTESIAN_POINT('',(-6.914569465816E-02,0.241442329562,0.302)); +#1966 = CARTESIAN_POINT('',(-6.914569465816E-02,0.241442329562,0.3)); +#1967 = CARTESIAN_POINT('',(-7.131901586453E-02,0.242074823052,0.302)); +#1968 = CARTESIAN_POINT('',(-7.131901586453E-02,0.242074823052,0.3)); +#1969 = CARTESIAN_POINT('',(-7.281004312541E-02,0.242156711316,0.302)); +#1970 = CARTESIAN_POINT('',(-7.281004312541E-02,0.242156711316,0.3)); +#1971 = CARTESIAN_POINT('',(-7.355130839552E-02,0.242197422125,0.302)); +#1972 = CARTESIAN_POINT('',(-7.355130839552E-02,0.242197422125,0.3)); +#1973 = DEFINITIONAL_REPRESENTATION('',(#1974),#1978); +#1974 = LINE('',#1975,#1976); +#1975 = CARTESIAN_POINT('',(0.,1.)); +#1976 = VECTOR('',#1977,1.); +#1977 = DIRECTION('',(1.,0.)); +#1978 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#1979 = ORIENTED_EDGE('',*,*,#1980,.T.); +#1980 = EDGE_CURVE('',#1919,#1981,#1983,.T.); +#1981 = VERTEX_POINT('',#1982); +#1982 = CARTESIAN_POINT('',(-8.795694204477E-02,0.234583015768,0.3)); +#1983 = SURFACE_CURVE('',#1984,(#1992,#2003),.PCURVE_S1.); +#1984 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1985,#1986,#1987,#1988,#1989, + #1990,#1991),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.,0.216987327124, + 0.448781830899,0.706307716581,1.),.UNSPECIFIED.); +#1985 = CARTESIAN_POINT('',(-7.355130839552E-02,0.242197422125,0.3)); +#1986 = CARTESIAN_POINT('',(-7.47661802925E-02,0.242107786486,0.3)); +#1987 = CARTESIAN_POINT('',(-7.727882672887E-02,0.241922398486,0.3)); +#1988 = CARTESIAN_POINT('',(-8.09424305875E-02,0.240323687502,0.3)); +#1989 = CARTESIAN_POINT('',(-8.46128525046E-02,0.237923041082,0.3)); +#1990 = CARTESIAN_POINT('',(-8.679453093945E-02,0.235744014141,0.3)); +#1991 = CARTESIAN_POINT('',(-8.795694204477E-02,0.234583015768,0.3)); +#1992 = PCURVE('',#48,#1993); +#1993 = DEFINITIONAL_REPRESENTATION('',(#1994),#2002); +#1994 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#1995,#1996,#1997,#1998,#1999, + #2000,#2001),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.,0.216987327124, + 0.448781830899,0.706307716581,1.),.UNSPECIFIED.); +#1995 = CARTESIAN_POINT('',(-0.642197422125,0.726448691604)); +#1996 = CARTESIAN_POINT('',(-0.642107786486,0.725233819708)); +#1997 = CARTESIAN_POINT('',(-0.641922398486,0.722721173271)); +#1998 = CARTESIAN_POINT('',(-0.640323687502,0.719057569412)); +#1999 = CARTESIAN_POINT('',(-0.637923041082,0.715387147495)); +#2000 = CARTESIAN_POINT('',(-0.635744014141,0.713205469061)); +#2001 = CARTESIAN_POINT('',(-0.634583015768,0.712043057955)); +#2002 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2003 = PCURVE('',#2004,#2019); +#2004 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#2005,#2006) + ,(#2007,#2008) + ,(#2009,#2010) + ,(#2011,#2012) + ,(#2013,#2014) + ,(#2015,#2016) + ,(#2017,#2018 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,4),(2,2),(0.,0.216987327124, + 0.448781830899,0.706307716581,1.),(0.,1.),.UNSPECIFIED.); +#2005 = CARTESIAN_POINT('',(-7.355130839552E-02,0.242197422125,0.302)); +#2006 = CARTESIAN_POINT('',(-7.355130839552E-02,0.242197422125,0.3)); +#2007 = CARTESIAN_POINT('',(-7.47661802925E-02,0.242107786486,0.302)); +#2008 = CARTESIAN_POINT('',(-7.47661802925E-02,0.242107786486,0.3)); +#2009 = CARTESIAN_POINT('',(-7.727882672887E-02,0.241922398486,0.302)); +#2010 = CARTESIAN_POINT('',(-7.727882672887E-02,0.241922398486,0.3)); +#2011 = CARTESIAN_POINT('',(-8.09424305875E-02,0.240323687502,0.302)); +#2012 = CARTESIAN_POINT('',(-8.09424305875E-02,0.240323687502,0.3)); +#2013 = CARTESIAN_POINT('',(-8.46128525046E-02,0.237923041082,0.302)); +#2014 = CARTESIAN_POINT('',(-8.46128525046E-02,0.237923041082,0.3)); +#2015 = CARTESIAN_POINT('',(-8.679453093945E-02,0.235744014141,0.302)); +#2016 = CARTESIAN_POINT('',(-8.679453093945E-02,0.235744014141,0.3)); +#2017 = CARTESIAN_POINT('',(-8.795694204477E-02,0.234583015768,0.302)); +#2018 = CARTESIAN_POINT('',(-8.795694204477E-02,0.234583015768,0.3)); +#2019 = DEFINITIONAL_REPRESENTATION('',(#2020),#2024); +#2020 = LINE('',#2021,#2022); +#2021 = CARTESIAN_POINT('',(0.,1.)); +#2022 = VECTOR('',#2023,1.); +#2023 = DIRECTION('',(1.,0.)); +#2024 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2025 = ORIENTED_EDGE('',*,*,#2026,.T.); +#2026 = EDGE_CURVE('',#1981,#2027,#2029,.T.); +#2027 = VERTEX_POINT('',#2028); +#2028 = CARTESIAN_POINT('',(-0.101950986161,0.149075290321,0.3)); +#2029 = SURFACE_CURVE('',#2030,(#2046,#2065),.PCURVE_S1.); +#2030 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2031,#2032,#2033,#2034,#2035, + #2036,#2037,#2038,#2039,#2040,#2041,#2042,#2043,#2044,#2045), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0., + 6.999263450657E-02,0.151179237049,0.244049347772,0.348788670798, + 0.406942105318,0.471758334761,0.54342234969,0.62140343022, + 0.705702457219,0.796988044797,0.895268939323,1.),.UNSPECIFIED.); +#2031 = CARTESIAN_POINT('',(-8.795694204477E-02,0.234583015768,0.3)); +#2032 = CARTESIAN_POINT('',(-8.888361475323E-02,0.232763596739,0.3)); +#2033 = CARTESIAN_POINT('',(-9.088516354541E-02,0.228833777801,0.3)); +#2034 = CARTESIAN_POINT('',(-9.332785897335E-02,0.222137746434,0.3)); +#2035 = CARTESIAN_POINT('',(-9.569383979249E-02,0.214361845903,0.3)); +#2036 = CARTESIAN_POINT('',(-9.74353279371E-02,0.207108129224,0.3)); +#2037 = CARTESIAN_POINT('',(-9.874307831626E-02,0.200598815029,0.3)); +#2038 = CARTESIAN_POINT('',(-9.953147433189E-02,0.194978001803,0.3)); +#2039 = CARTESIAN_POINT('',(-0.10024490812,0.188767583757,0.3)); +#2040 = CARTESIAN_POINT('',(-0.100872076625,0.1819760159,0.3)); +#2041 = CARTESIAN_POINT('',(-0.101308082223,0.174597013261,0.3)); +#2042 = CARTESIAN_POINT('',(-0.101684829699,0.166622579517,0.3)); +#2043 = CARTESIAN_POINT('',(-0.101869339229,0.158045301859,0.3)); +#2044 = CARTESIAN_POINT('',(-0.101923200088,0.152127963409,0.3)); +#2045 = CARTESIAN_POINT('',(-0.101950986161,0.149075290321,0.3)); +#2046 = PCURVE('',#48,#2047); +#2047 = DEFINITIONAL_REPRESENTATION('',(#2048),#2064); +#2048 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2049,#2050,#2051,#2052,#2053, + #2054,#2055,#2056,#2057,#2058,#2059,#2060,#2061,#2062,#2063), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0., + 6.999263450657E-02,0.151179237049,0.244049347772,0.348788670798, + 0.406942105318,0.471758334761,0.54342234969,0.62140343022, + 0.705702457219,0.796988044797,0.895268939323,1.),.UNSPECIFIED.); +#2049 = CARTESIAN_POINT('',(-0.634583015768,0.712043057955)); +#2050 = CARTESIAN_POINT('',(-0.632763596739,0.711116385247)); +#2051 = CARTESIAN_POINT('',(-0.628833777801,0.709114836455)); +#2052 = CARTESIAN_POINT('',(-0.622137746434,0.706672141027)); +#2053 = CARTESIAN_POINT('',(-0.614361845903,0.704306160208)); +#2054 = CARTESIAN_POINT('',(-0.607108129224,0.702564672063)); +#2055 = CARTESIAN_POINT('',(-0.600598815029,0.701256921684)); +#2056 = CARTESIAN_POINT('',(-0.594978001803,0.700468525668)); +#2057 = CARTESIAN_POINT('',(-0.588767583757,0.69975509188)); +#2058 = CARTESIAN_POINT('',(-0.5819760159,0.699127923375)); +#2059 = CARTESIAN_POINT('',(-0.574597013261,0.698691917777)); +#2060 = CARTESIAN_POINT('',(-0.566622579517,0.698315170301)); +#2061 = CARTESIAN_POINT('',(-0.558045301859,0.698130660771)); +#2062 = CARTESIAN_POINT('',(-0.552127963409,0.698076799912)); +#2063 = CARTESIAN_POINT('',(-0.549075290321,0.698049013839)); +#2064 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2065 = PCURVE('',#2066,#2097); +#2066 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#2067,#2068) + ,(#2069,#2070) + ,(#2071,#2072) + ,(#2073,#2074) + ,(#2075,#2076) + ,(#2077,#2078) + ,(#2079,#2080) + ,(#2081,#2082) + ,(#2083,#2084) + ,(#2085,#2086) + ,(#2087,#2088) + ,(#2089,#2090) + ,(#2091,#2092) + ,(#2093,#2094) + ,(#2095,#2096 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(2,2),(0., + 6.999263450657E-02,0.151179237049,0.244049347772,0.348788670798, + 0.406942105318,0.471758334761,0.54342234969,0.62140343022, + 0.705702457219,0.796988044797,0.895268939323,1.),(0.,1.), + .UNSPECIFIED.); +#2067 = CARTESIAN_POINT('',(-8.795694204477E-02,0.234583015768,0.302)); +#2068 = CARTESIAN_POINT('',(-8.795694204477E-02,0.234583015768,0.3)); +#2069 = CARTESIAN_POINT('',(-8.888361475323E-02,0.232763596739,0.302)); +#2070 = CARTESIAN_POINT('',(-8.888361475323E-02,0.232763596739,0.3)); +#2071 = CARTESIAN_POINT('',(-9.088516354541E-02,0.228833777801,0.302)); +#2072 = CARTESIAN_POINT('',(-9.088516354541E-02,0.228833777801,0.3)); +#2073 = CARTESIAN_POINT('',(-9.332785897335E-02,0.222137746434,0.302)); +#2074 = CARTESIAN_POINT('',(-9.332785897335E-02,0.222137746434,0.3)); +#2075 = CARTESIAN_POINT('',(-9.569383979249E-02,0.214361845903,0.302)); +#2076 = CARTESIAN_POINT('',(-9.569383979249E-02,0.214361845903,0.3)); +#2077 = CARTESIAN_POINT('',(-9.74353279371E-02,0.207108129224,0.302)); +#2078 = CARTESIAN_POINT('',(-9.74353279371E-02,0.207108129224,0.3)); +#2079 = CARTESIAN_POINT('',(-9.874307831626E-02,0.200598815029,0.302)); +#2080 = CARTESIAN_POINT('',(-9.874307831626E-02,0.200598815029,0.3)); +#2081 = CARTESIAN_POINT('',(-9.953147433189E-02,0.194978001803,0.302)); +#2082 = CARTESIAN_POINT('',(-9.953147433189E-02,0.194978001803,0.3)); +#2083 = CARTESIAN_POINT('',(-0.10024490812,0.188767583757,0.302)); +#2084 = CARTESIAN_POINT('',(-0.10024490812,0.188767583757,0.3)); +#2085 = CARTESIAN_POINT('',(-0.100872076625,0.1819760159,0.302)); +#2086 = CARTESIAN_POINT('',(-0.100872076625,0.1819760159,0.3)); +#2087 = CARTESIAN_POINT('',(-0.101308082223,0.174597013261,0.302)); +#2088 = CARTESIAN_POINT('',(-0.101308082223,0.174597013261,0.3)); +#2089 = CARTESIAN_POINT('',(-0.101684829699,0.166622579517,0.302)); +#2090 = CARTESIAN_POINT('',(-0.101684829699,0.166622579517,0.3)); +#2091 = CARTESIAN_POINT('',(-0.101869339229,0.158045301859,0.302)); +#2092 = CARTESIAN_POINT('',(-0.101869339229,0.158045301859,0.3)); +#2093 = CARTESIAN_POINT('',(-0.101923200088,0.152127963409,0.302)); +#2094 = CARTESIAN_POINT('',(-0.101923200088,0.152127963409,0.3)); +#2095 = CARTESIAN_POINT('',(-0.101950986161,0.149075290321,0.302)); +#2096 = CARTESIAN_POINT('',(-0.101950986161,0.149075290321,0.3)); +#2097 = DEFINITIONAL_REPRESENTATION('',(#2098),#2102); +#2098 = LINE('',#2099,#2100); +#2099 = CARTESIAN_POINT('',(0.,1.)); +#2100 = VECTOR('',#2101,1.); +#2101 = DIRECTION('',(1.,0.)); +#2102 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2103 = ORIENTED_EDGE('',*,*,#2104,.T.); +#2104 = EDGE_CURVE('',#2027,#2105,#2107,.T.); +#2105 = VERTEX_POINT('',#2106); +#2106 = CARTESIAN_POINT('',(-7.077307904887E-02,0.182928529397,0.3)); +#2107 = SURFACE_CURVE('',#2108,(#2120,#2135),.PCURVE_S1.); +#2108 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2109,#2110,#2111,#2112,#2113, + #2114,#2115,#2116,#2117,#2118,#2119),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.175283835451,0.332299704078,0.472554810512, + 0.598639509241,0.711841262423,0.814222371193,0.907964348435,1.), + .UNSPECIFIED.); +#2109 = CARTESIAN_POINT('',(-0.101950986161,0.149075290321,0.3)); +#2110 = CARTESIAN_POINT('',(-0.100981265585,0.151766974481,0.3)); +#2111 = CARTESIAN_POINT('',(-9.914288807753E-02,0.156869817235,0.3)); +#2112 = CARTESIAN_POINT('',(-9.588301419346E-02,0.163875713967,0.3)); +#2113 = CARTESIAN_POINT('',(-9.22244228133E-02,0.169757395329,0.3)); +#2114 = CARTESIAN_POINT('',(-8.826602994823E-02,0.174548849623,0.3)); +#2115 = CARTESIAN_POINT('',(-8.406865128987E-02,0.17825714053,0.3)); +#2116 = CARTESIAN_POINT('',(-7.977593951963E-02,0.180948913511,0.3)); +#2117 = CARTESIAN_POINT('',(-7.531736418141E-02,0.182628824989,0.3)); +#2118 = CARTESIAN_POINT('',(-7.227853711233E-02,0.182829241521,0.3)); +#2119 = CARTESIAN_POINT('',(-7.077307904887E-02,0.182928529397,0.3)); +#2120 = PCURVE('',#48,#2121); +#2121 = DEFINITIONAL_REPRESENTATION('',(#2122),#2134); +#2122 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2123,#2124,#2125,#2126,#2127, + #2128,#2129,#2130,#2131,#2132,#2133),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.175283835451,0.332299704078,0.472554810512, + 0.598639509241,0.711841262423,0.814222371193,0.907964348435,1.), + .UNSPECIFIED.); +#2123 = CARTESIAN_POINT('',(-0.549075290321,0.698049013839)); +#2124 = CARTESIAN_POINT('',(-0.551766974481,0.699018734415)); +#2125 = CARTESIAN_POINT('',(-0.556869817235,0.700857111922)); +#2126 = CARTESIAN_POINT('',(-0.563875713967,0.704116985807)); +#2127 = CARTESIAN_POINT('',(-0.569757395329,0.707775577187)); +#2128 = CARTESIAN_POINT('',(-0.574548849623,0.711733970052)); +#2129 = CARTESIAN_POINT('',(-0.57825714053,0.71593134871)); +#2130 = CARTESIAN_POINT('',(-0.580948913511,0.72022406048)); +#2131 = CARTESIAN_POINT('',(-0.582628824989,0.724682635819)); +#2132 = CARTESIAN_POINT('',(-0.582829241521,0.727721462888)); +#2133 = CARTESIAN_POINT('',(-0.582928529397,0.729226920951)); +#2134 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2135 = PCURVE('',#2136,#2159); +#2136 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#2137,#2138) + ,(#2139,#2140) + ,(#2141,#2142) + ,(#2143,#2144) + ,(#2145,#2146) + ,(#2147,#2148) + ,(#2149,#2150) + ,(#2151,#2152) + ,(#2153,#2154) + ,(#2155,#2156) + ,(#2157,#2158 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,4),(2,2),(0., + 0.175283835451,0.332299704078,0.472554810512,0.598639509241, + 0.711841262423,0.814222371193,0.907964348435,1.),(0.,1.), + .UNSPECIFIED.); +#2137 = CARTESIAN_POINT('',(-0.101950986161,0.149075290321,0.302)); +#2138 = CARTESIAN_POINT('',(-0.101950986161,0.149075290321,0.3)); +#2139 = CARTESIAN_POINT('',(-0.100981265585,0.151766974481,0.302)); +#2140 = CARTESIAN_POINT('',(-0.100981265585,0.151766974481,0.3)); +#2141 = CARTESIAN_POINT('',(-9.914288807753E-02,0.156869817235,0.302)); +#2142 = CARTESIAN_POINT('',(-9.914288807753E-02,0.156869817235,0.3)); +#2143 = CARTESIAN_POINT('',(-9.588301419346E-02,0.163875713967,0.302)); +#2144 = CARTESIAN_POINT('',(-9.588301419346E-02,0.163875713967,0.3)); +#2145 = CARTESIAN_POINT('',(-9.22244228133E-02,0.169757395329,0.302)); +#2146 = CARTESIAN_POINT('',(-9.22244228133E-02,0.169757395329,0.3)); +#2147 = CARTESIAN_POINT('',(-8.826602994823E-02,0.174548849623,0.302)); +#2148 = CARTESIAN_POINT('',(-8.826602994823E-02,0.174548849623,0.3)); +#2149 = CARTESIAN_POINT('',(-8.406865128987E-02,0.17825714053,0.302)); +#2150 = CARTESIAN_POINT('',(-8.406865128987E-02,0.17825714053,0.3)); +#2151 = CARTESIAN_POINT('',(-7.977593951963E-02,0.180948913511,0.302)); +#2152 = CARTESIAN_POINT('',(-7.977593951963E-02,0.180948913511,0.3)); +#2153 = CARTESIAN_POINT('',(-7.531736418141E-02,0.182628824989,0.302)); +#2154 = CARTESIAN_POINT('',(-7.531736418141E-02,0.182628824989,0.3)); +#2155 = CARTESIAN_POINT('',(-7.227853711233E-02,0.182829241521,0.302)); +#2156 = CARTESIAN_POINT('',(-7.227853711233E-02,0.182829241521,0.3)); +#2157 = CARTESIAN_POINT('',(-7.077307904887E-02,0.182928529397,0.302)); +#2158 = CARTESIAN_POINT('',(-7.077307904887E-02,0.182928529397,0.3)); +#2159 = DEFINITIONAL_REPRESENTATION('',(#2160),#2164); +#2160 = LINE('',#2161,#2162); +#2161 = CARTESIAN_POINT('',(0.,1.)); +#2162 = VECTOR('',#2163,1.); +#2163 = DIRECTION('',(1.,0.)); +#2164 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2165 = ORIENTED_EDGE('',*,*,#2166,.T.); +#2166 = EDGE_CURVE('',#2105,#2167,#2169,.T.); +#2167 = VERTEX_POINT('',#2168); +#2168 = CARTESIAN_POINT('',(-3.280394464476E-02,9.958164899777E-02,0.3) + ); +#2169 = SURFACE_CURVE('',#2170,(#2190,#2213),.PCURVE_S1.); +#2170 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2171,#2172,#2173,#2174,#2175, + #2176,#2177,#2178,#2179,#2180,#2181,#2182,#2183,#2184,#2185,#2186, + #2187,#2188,#2189),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,3.910024550704E-02,7.852987763084E-02,0.118928225578, + 0.162015044301,0.208996859298,0.25998844003,0.31644188856, + 0.37843020031,0.444681646177,0.513469132587,0.585628807811, + 0.660965273436,0.739817703829,0.822305805272,0.909147543882,1.), + .UNSPECIFIED.); +#2171 = CARTESIAN_POINT('',(-7.077307904887E-02,0.182928529397,0.3)); +#2172 = CARTESIAN_POINT('',(-6.94803309952E-02,0.18285716252,0.3)); +#2173 = CARTESIAN_POINT('',(-6.688394457495E-02,0.18271382756,0.3)); +#2174 = CARTESIAN_POINT('',(-6.307157847479E-02,0.181604615714,0.3)); +#2175 = CARTESIAN_POINT('',(-5.948510645375E-02,0.179664997778,0.3)); +#2176 = CARTESIAN_POINT('',(-5.597967444796E-02,0.177128289029,0.3)); +#2177 = CARTESIAN_POINT('',(-5.271880050748E-02,0.173775202627,0.3)); +#2178 = CARTESIAN_POINT('',(-4.954265377184E-02,0.169772586474,0.3)); +#2179 = CARTESIAN_POINT('',(-4.658699436977E-02,0.165005793496,0.3)); +#2180 = CARTESIAN_POINT('',(-4.379752068548E-02,0.159574745355,0.3)); +#2181 = CARTESIAN_POINT('',(-4.118311321929E-02,0.153607508054,0.3)); +#2182 = CARTESIAN_POINT('',(-3.891957625667E-02,0.1471403943,0.3)); +#2183 = CARTESIAN_POINT('',(-3.702594451799E-02,0.140244693784,0.3)); +#2184 = CARTESIAN_POINT('',(-3.550503685029E-02,0.132919318513,0.3)); +#2185 = CARTESIAN_POINT('',(-3.425880330968E-02,0.125196618046,0.3)); +#2186 = CARTESIAN_POINT('',(-3.339929777312E-02,0.117038907652,0.3)); +#2187 = CARTESIAN_POINT('',(-3.287637911946E-02,0.108454970433,0.3)); +#2188 = CARTESIAN_POINT('',(-3.282845007022E-02,0.102583596867,0.3)); +#2189 = CARTESIAN_POINT('',(-3.280394464476E-02,9.958164899777E-02,0.3) + ); +#2190 = PCURVE('',#48,#2191); +#2191 = DEFINITIONAL_REPRESENTATION('',(#2192),#2212); +#2192 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2193,#2194,#2195,#2196,#2197, + #2198,#2199,#2200,#2201,#2202,#2203,#2204,#2205,#2206,#2207,#2208, + #2209,#2210,#2211),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,3.910024550704E-02,7.852987763084E-02,0.118928225578, + 0.162015044301,0.208996859298,0.25998844003,0.31644188856, + 0.37843020031,0.444681646177,0.513469132587,0.585628807811, + 0.660965273436,0.739817703829,0.822305805272,0.909147543882,1.), + .UNSPECIFIED.); +#2193 = CARTESIAN_POINT('',(-0.582928529397,0.729226920951)); +#2194 = CARTESIAN_POINT('',(-0.58285716252,0.730519669005)); +#2195 = CARTESIAN_POINT('',(-0.58271382756,0.733116055425)); +#2196 = CARTESIAN_POINT('',(-0.581604615714,0.736928421525)); +#2197 = CARTESIAN_POINT('',(-0.579664997778,0.740514893546)); +#2198 = CARTESIAN_POINT('',(-0.577128289029,0.744020325552)); +#2199 = CARTESIAN_POINT('',(-0.573775202627,0.747281199493)); +#2200 = CARTESIAN_POINT('',(-0.569772586474,0.750457346228)); +#2201 = CARTESIAN_POINT('',(-0.565005793496,0.75341300563)); +#2202 = CARTESIAN_POINT('',(-0.559574745355,0.756202479315)); +#2203 = CARTESIAN_POINT('',(-0.553607508054,0.758816886781)); +#2204 = CARTESIAN_POINT('',(-0.5471403943,0.761080423743)); +#2205 = CARTESIAN_POINT('',(-0.540244693784,0.762974055482)); +#2206 = CARTESIAN_POINT('',(-0.532919318513,0.76449496315)); +#2207 = CARTESIAN_POINT('',(-0.525196618046,0.76574119669)); +#2208 = CARTESIAN_POINT('',(-0.517038907652,0.766600702227)); +#2209 = CARTESIAN_POINT('',(-0.508454970433,0.767123620881)); +#2210 = CARTESIAN_POINT('',(-0.502583596867,0.76717154993)); +#2211 = CARTESIAN_POINT('',(-0.499581648998,0.767196055355)); +#2212 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2213 = PCURVE('',#2214,#2253); +#2214 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#2215,#2216) + ,(#2217,#2218) + ,(#2219,#2220) + ,(#2221,#2222) + ,(#2223,#2224) + ,(#2225,#2226) + ,(#2227,#2228) + ,(#2229,#2230) + ,(#2231,#2232) + ,(#2233,#2234) + ,(#2235,#2236) + ,(#2237,#2238) + ,(#2239,#2240) + ,(#2241,#2242) + ,(#2243,#2244) + ,(#2245,#2246) + ,(#2247,#2248) + ,(#2249,#2250) + ,(#2251,#2252 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, + 2),(0.,3.910024550704E-02,7.852987763084E-02,0.118928225578, + 0.162015044301,0.208996859298,0.25998844003,0.31644188856, + 0.37843020031,0.444681646177,0.513469132587,0.585628807811, + 0.660965273436,0.739817703829,0.822305805272,0.909147543882,1.),(0., + 1.),.UNSPECIFIED.); +#2215 = CARTESIAN_POINT('',(-7.077307904887E-02,0.182928529397,0.302)); +#2216 = CARTESIAN_POINT('',(-7.077307904887E-02,0.182928529397,0.3)); +#2217 = CARTESIAN_POINT('',(-6.94803309952E-02,0.18285716252,0.302)); +#2218 = CARTESIAN_POINT('',(-6.94803309952E-02,0.18285716252,0.3)); +#2219 = CARTESIAN_POINT('',(-6.688394457495E-02,0.18271382756,0.302)); +#2220 = CARTESIAN_POINT('',(-6.688394457495E-02,0.18271382756,0.3)); +#2221 = CARTESIAN_POINT('',(-6.307157847479E-02,0.181604615714,0.302)); +#2222 = CARTESIAN_POINT('',(-6.307157847479E-02,0.181604615714,0.3)); +#2223 = CARTESIAN_POINT('',(-5.948510645375E-02,0.179664997778,0.302)); +#2224 = CARTESIAN_POINT('',(-5.948510645375E-02,0.179664997778,0.3)); +#2225 = CARTESIAN_POINT('',(-5.597967444796E-02,0.177128289029,0.302)); +#2226 = CARTESIAN_POINT('',(-5.597967444796E-02,0.177128289029,0.3)); +#2227 = CARTESIAN_POINT('',(-5.271880050748E-02,0.173775202627,0.302)); +#2228 = CARTESIAN_POINT('',(-5.271880050748E-02,0.173775202627,0.3)); +#2229 = CARTESIAN_POINT('',(-4.954265377184E-02,0.169772586474,0.302)); +#2230 = CARTESIAN_POINT('',(-4.954265377184E-02,0.169772586474,0.3)); +#2231 = CARTESIAN_POINT('',(-4.658699436977E-02,0.165005793496,0.302)); +#2232 = CARTESIAN_POINT('',(-4.658699436977E-02,0.165005793496,0.3)); +#2233 = CARTESIAN_POINT('',(-4.379752068548E-02,0.159574745355,0.302)); +#2234 = CARTESIAN_POINT('',(-4.379752068548E-02,0.159574745355,0.3)); +#2235 = CARTESIAN_POINT('',(-4.118311321929E-02,0.153607508054,0.302)); +#2236 = CARTESIAN_POINT('',(-4.118311321929E-02,0.153607508054,0.3)); +#2237 = CARTESIAN_POINT('',(-3.891957625667E-02,0.1471403943,0.302)); +#2238 = CARTESIAN_POINT('',(-3.891957625667E-02,0.1471403943,0.3)); +#2239 = CARTESIAN_POINT('',(-3.702594451799E-02,0.140244693784,0.302)); +#2240 = CARTESIAN_POINT('',(-3.702594451799E-02,0.140244693784,0.3)); +#2241 = CARTESIAN_POINT('',(-3.550503685029E-02,0.132919318513,0.302)); +#2242 = CARTESIAN_POINT('',(-3.550503685029E-02,0.132919318513,0.3)); +#2243 = CARTESIAN_POINT('',(-3.425880330968E-02,0.125196618046,0.302)); +#2244 = CARTESIAN_POINT('',(-3.425880330968E-02,0.125196618046,0.3)); +#2245 = CARTESIAN_POINT('',(-3.339929777312E-02,0.117038907652,0.302)); +#2246 = CARTESIAN_POINT('',(-3.339929777312E-02,0.117038907652,0.3)); +#2247 = CARTESIAN_POINT('',(-3.287637911946E-02,0.108454970433,0.302)); +#2248 = CARTESIAN_POINT('',(-3.287637911946E-02,0.108454970433,0.3)); +#2249 = CARTESIAN_POINT('',(-3.282845007022E-02,0.102583596867,0.302)); +#2250 = CARTESIAN_POINT('',(-3.282845007022E-02,0.102583596867,0.3)); +#2251 = CARTESIAN_POINT('',(-3.280394464476E-02,9.958164899777E-02,0.302 + )); +#2252 = CARTESIAN_POINT('',(-3.280394464476E-02,9.958164899777E-02,0.3) + ); +#2253 = DEFINITIONAL_REPRESENTATION('',(#2254),#2258); +#2254 = LINE('',#2255,#2256); +#2255 = CARTESIAN_POINT('',(0.,1.)); +#2256 = VECTOR('',#2257,1.); +#2257 = DIRECTION('',(1.,0.)); +#2258 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2259 = ORIENTED_EDGE('',*,*,#2260,.T.); +#2260 = EDGE_CURVE('',#2167,#2261,#2263,.T.); +#2261 = VERTEX_POINT('',#2262); +#2262 = CARTESIAN_POINT('',(-7.33969623207E-02,1.170728373731E-02,0.3)); +#2263 = SURFACE_CURVE('',#2264,(#2280,#2299),.PCURVE_S1.); +#2264 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2265,#2266,#2267,#2268,#2269, + #2270,#2271,#2272,#2273,#2274,#2275,#2276,#2277,#2278,#2279), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.,0.113221785558, + 0.222436171247,0.328940652496,0.432255130071,0.529309240576, + 0.617114144544,0.696232162944,0.767885488567,0.832331289029, + 0.89049783785,0.945727959046,1.),.UNSPECIFIED.); +#2265 = CARTESIAN_POINT('',(-3.280394464476E-02,9.958164899777E-02,0.3) + ); +#2266 = CARTESIAN_POINT('',(-3.285068247282E-02,9.561742574692E-02,0.3) + ); +#2267 = CARTESIAN_POINT('',(-3.294250387868E-02,8.7829289943E-02,0.3)); +#2268 = CARTESIAN_POINT('',(-3.403991993243E-02,7.635791051934E-02,0.3) + ); +#2269 = CARTESIAN_POINT('',(-3.563885897094E-02,6.530119069559E-02,0.3) + ); +#2270 = CARTESIAN_POINT('',(-3.79324977146E-02,5.47980996706E-02,0.3)); +#2271 = CARTESIAN_POINT('',(-4.075645693448E-02,4.510629695093E-02,0.3) + ); +#2272 = CARTESIAN_POINT('',(-4.405403756395E-02,3.64614537813E-02,0.3)); +#2273 = CARTESIAN_POINT('',(-4.78912469162E-02,2.901693830372E-02,0.3)); +#2274 = CARTESIAN_POINT('',(-5.226403765844E-02,2.285668660356E-02,0.3) + ); +#2275 = CARTESIAN_POINT('',(-5.698235805124E-02,1.790570256346E-02,0.3) + ); +#2276 = CARTESIAN_POINT('',(-6.213476331485E-02,1.435456584981E-02,0.3) + ); +#2277 = CARTESIAN_POINT('',(-6.76423631163E-02,1.207195031537E-02,0.3)); +#2278 = CARTESIAN_POINT('',(-7.148998406786E-02,1.182812816265E-02,0.3) + ); +#2279 = CARTESIAN_POINT('',(-7.33969623207E-02,1.170728373731E-02,0.3)); +#2280 = PCURVE('',#48,#2281); +#2281 = DEFINITIONAL_REPRESENTATION('',(#2282),#2298); +#2282 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2283,#2284,#2285,#2286,#2287, + #2288,#2289,#2290,#2291,#2292,#2293,#2294,#2295,#2296,#2297), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.,0.113221785558, + 0.222436171247,0.328940652496,0.432255130071,0.529309240576, + 0.617114144544,0.696232162944,0.767885488567,0.832331289029, + 0.89049783785,0.945727959046,1.),.UNSPECIFIED.); +#2283 = CARTESIAN_POINT('',(-0.499581648998,0.767196055355)); +#2284 = CARTESIAN_POINT('',(-0.495617425747,0.767149317527)); +#2285 = CARTESIAN_POINT('',(-0.487829289943,0.767057496121)); +#2286 = CARTESIAN_POINT('',(-0.476357910519,0.765960080068)); +#2287 = CARTESIAN_POINT('',(-0.465301190696,0.764361141029)); +#2288 = CARTESIAN_POINT('',(-0.454798099671,0.762067502285)); +#2289 = CARTESIAN_POINT('',(-0.445106296951,0.759243543066)); +#2290 = CARTESIAN_POINT('',(-0.436461453781,0.755945962436)); +#2291 = CARTESIAN_POINT('',(-0.429016938304,0.752108753084)); +#2292 = CARTESIAN_POINT('',(-0.422856686604,0.747735962342)); +#2293 = CARTESIAN_POINT('',(-0.417905702563,0.743017641949)); +#2294 = CARTESIAN_POINT('',(-0.41435456585,0.737865236685)); +#2295 = CARTESIAN_POINT('',(-0.412071950315,0.732357636884)); +#2296 = CARTESIAN_POINT('',(-0.411828128163,0.728510015932)); +#2297 = CARTESIAN_POINT('',(-0.411707283737,0.726603037679)); +#2298 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2299 = PCURVE('',#2300,#2331); +#2300 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#2301,#2302) + ,(#2303,#2304) + ,(#2305,#2306) + ,(#2307,#2308) + ,(#2309,#2310) + ,(#2311,#2312) + ,(#2313,#2314) + ,(#2315,#2316) + ,(#2317,#2318) + ,(#2319,#2320) + ,(#2321,#2322) + ,(#2323,#2324) + ,(#2325,#2326) + ,(#2327,#2328) + ,(#2329,#2330 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(2,2),(0., + 0.113221785558,0.222436171247,0.328940652496,0.432255130071, + 0.529309240576,0.617114144544,0.696232162944,0.767885488567, + 0.832331289029,0.89049783785,0.945727959046,1.),(0.,1.), + .UNSPECIFIED.); +#2301 = CARTESIAN_POINT('',(-3.280394464476E-02,9.958164899777E-02,0.302 + )); +#2302 = CARTESIAN_POINT('',(-3.280394464476E-02,9.958164899777E-02,0.3) + ); +#2303 = CARTESIAN_POINT('',(-3.285068247282E-02,9.561742574692E-02,0.302 + )); +#2304 = CARTESIAN_POINT('',(-3.285068247282E-02,9.561742574692E-02,0.3) + ); +#2305 = CARTESIAN_POINT('',(-3.294250387868E-02,8.7829289943E-02,0.302) + ); +#2306 = CARTESIAN_POINT('',(-3.294250387868E-02,8.7829289943E-02,0.3)); +#2307 = CARTESIAN_POINT('',(-3.403991993243E-02,7.635791051934E-02,0.302 + )); +#2308 = CARTESIAN_POINT('',(-3.403991993243E-02,7.635791051934E-02,0.3) + ); +#2309 = CARTESIAN_POINT('',(-3.563885897094E-02,6.530119069559E-02,0.302 + )); +#2310 = CARTESIAN_POINT('',(-3.563885897094E-02,6.530119069559E-02,0.3) + ); +#2311 = CARTESIAN_POINT('',(-3.79324977146E-02,5.47980996706E-02,0.302) + ); +#2312 = CARTESIAN_POINT('',(-3.79324977146E-02,5.47980996706E-02,0.3)); +#2313 = CARTESIAN_POINT('',(-4.075645693448E-02,4.510629695093E-02,0.302 + )); +#2314 = CARTESIAN_POINT('',(-4.075645693448E-02,4.510629695093E-02,0.3) + ); +#2315 = CARTESIAN_POINT('',(-4.405403756395E-02,3.64614537813E-02,0.302) + ); +#2316 = CARTESIAN_POINT('',(-4.405403756395E-02,3.64614537813E-02,0.3)); +#2317 = CARTESIAN_POINT('',(-4.78912469162E-02,2.901693830372E-02,0.302) + ); +#2318 = CARTESIAN_POINT('',(-4.78912469162E-02,2.901693830372E-02,0.3)); +#2319 = CARTESIAN_POINT('',(-5.226403765844E-02,2.285668660356E-02,0.302 + )); +#2320 = CARTESIAN_POINT('',(-5.226403765844E-02,2.285668660356E-02,0.3) + ); +#2321 = CARTESIAN_POINT('',(-5.698235805124E-02,1.790570256346E-02,0.302 + )); +#2322 = CARTESIAN_POINT('',(-5.698235805124E-02,1.790570256346E-02,0.3) + ); +#2323 = CARTESIAN_POINT('',(-6.213476331485E-02,1.435456584981E-02,0.302 + )); +#2324 = CARTESIAN_POINT('',(-6.213476331485E-02,1.435456584981E-02,0.3) + ); +#2325 = CARTESIAN_POINT('',(-6.76423631163E-02,1.207195031537E-02,0.302) + ); +#2326 = CARTESIAN_POINT('',(-6.76423631163E-02,1.207195031537E-02,0.3)); +#2327 = CARTESIAN_POINT('',(-7.148998406786E-02,1.182812816265E-02,0.302 + )); +#2328 = CARTESIAN_POINT('',(-7.148998406786E-02,1.182812816265E-02,0.3) + ); +#2329 = CARTESIAN_POINT('',(-7.33969623207E-02,1.170728373731E-02,0.302) + ); +#2330 = CARTESIAN_POINT('',(-7.33969623207E-02,1.170728373731E-02,0.3)); +#2331 = DEFINITIONAL_REPRESENTATION('',(#2332),#2336); +#2332 = LINE('',#2333,#2334); +#2333 = CARTESIAN_POINT('',(0.,1.)); +#2334 = VECTOR('',#2335,1.); +#2335 = DIRECTION('',(1.,0.)); +#2336 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2337 = ORIENTED_EDGE('',*,*,#2338,.T.); +#2338 = EDGE_CURVE('',#2261,#2339,#2341,.T.); +#2339 = VERTEX_POINT('',#2340); +#2340 = CARTESIAN_POINT('',(-0.118414567475,0.13523559228,0.3)); +#2341 = SURFACE_CURVE('',#2342,(#2362,#2385),.PCURVE_S1.); +#2342 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2343,#2344,#2345,#2346,#2347, + #2348,#2349,#2350,#2351,#2352,#2353,#2354,#2355,#2356,#2357,#2358, + #2359,#2360,#2361),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,3.453861246837E-02,6.844561282317E-02,0.103088374418, + 0.139789540524,0.179459960852,0.222893209036,0.270937746377, + 0.323550473319,0.381968236977,0.447495048941,0.520046487774, + 0.600261744899,0.688395601747,0.784195893454,0.888150015606,1.), + .UNSPECIFIED.); +#2343 = CARTESIAN_POINT('',(-7.33969623207E-02,1.170728373731E-02,0.3)); +#2344 = CARTESIAN_POINT('',(-7.503519306888E-02,1.179837087237E-02,0.3) + ); +#2345 = CARTESIAN_POINT('',(-7.828169602576E-02,1.197887942017E-02,0.3) + ); +#2346 = CARTESIAN_POINT('',(-8.301127451811E-02,1.337325584046E-02,0.3) + ); +#2347 = CARTESIAN_POINT('',(-8.744754199493E-02,1.570485771974E-02,0.3) + ); +#2348 = CARTESIAN_POINT('',(-9.164713313458E-02,1.89063949484E-02,0.3)); +#2349 = CARTESIAN_POINT('',(-9.564021982336E-02,2.296827736628E-02,0.3) + ); +#2350 = CARTESIAN_POINT('',(-9.933405102836E-02,2.798538248297E-02,0.3) + ); +#2351 = CARTESIAN_POINT('',(-0.102813411505,3.386929490553E-02,0.3)); +#2352 = CARTESIAN_POINT('',(-0.106076879017,4.067427145078E-02,0.3)); +#2353 = CARTESIAN_POINT('',(-0.109014183169,4.851860853335E-02,0.3)); +#2354 = CARTESIAN_POINT('',(-0.111553474109,5.74850114879E-02,0.3)); +#2355 = CARTESIAN_POINT('',(-0.113696339584,6.761074995223E-02,0.3)); +#2356 = CARTESIAN_POINT('',(-0.115402755346,7.890129237136E-02,0.3)); +#2357 = CARTESIAN_POINT('',(-0.116786851914,9.134346423712E-02,0.3)); +#2358 = CARTESIAN_POINT('',(-0.117740632709,0.104954001708,0.3)); +#2359 = CARTESIAN_POINT('',(-0.118292934223,0.119710594478,0.3)); +#2360 = CARTESIAN_POINT('',(-0.118373046011,0.129935885028,0.3)); +#2361 = CARTESIAN_POINT('',(-0.118414567475,0.13523559228,0.3)); +#2362 = PCURVE('',#48,#2363); +#2363 = DEFINITIONAL_REPRESENTATION('',(#2364),#2384); +#2364 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2365,#2366,#2367,#2368,#2369, + #2370,#2371,#2372,#2373,#2374,#2375,#2376,#2377,#2378,#2379,#2380, + #2381,#2382,#2383),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,3.453861246837E-02,6.844561282317E-02,0.103088374418, + 0.139789540524,0.179459960852,0.222893209036,0.270937746377, + 0.323550473319,0.381968236977,0.447495048941,0.520046487774, + 0.600261744899,0.688395601747,0.784195893454,0.888150015606,1.), + .UNSPECIFIED.); +#2365 = CARTESIAN_POINT('',(-0.411707283737,0.726603037679)); +#2366 = CARTESIAN_POINT('',(-0.411798370872,0.724964806931)); +#2367 = CARTESIAN_POINT('',(-0.41197887942,0.721718303974)); +#2368 = CARTESIAN_POINT('',(-0.41337325584,0.716988725482)); +#2369 = CARTESIAN_POINT('',(-0.41570485772,0.712552458005)); +#2370 = CARTESIAN_POINT('',(-0.418906394948,0.708352866865)); +#2371 = CARTESIAN_POINT('',(-0.422968277366,0.704359780177)); +#2372 = CARTESIAN_POINT('',(-0.427985382483,0.700665948972)); +#2373 = CARTESIAN_POINT('',(-0.433869294906,0.697186588495)); +#2374 = CARTESIAN_POINT('',(-0.440674271451,0.693923120983)); +#2375 = CARTESIAN_POINT('',(-0.448518608533,0.690985816831)); +#2376 = CARTESIAN_POINT('',(-0.457485011488,0.688446525891)); +#2377 = CARTESIAN_POINT('',(-0.467610749952,0.686303660416)); +#2378 = CARTESIAN_POINT('',(-0.478901292371,0.684597244654)); +#2379 = CARTESIAN_POINT('',(-0.491343464237,0.683213148086)); +#2380 = CARTESIAN_POINT('',(-0.504954001708,0.682259367291)); +#2381 = CARTESIAN_POINT('',(-0.519710594478,0.681707065777)); +#2382 = CARTESIAN_POINT('',(-0.529935885028,0.681626953989)); +#2383 = CARTESIAN_POINT('',(-0.53523559228,0.681585432525)); +#2384 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2385 = PCURVE('',#2386,#2425); +#2386 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#2387,#2388) + ,(#2389,#2390) + ,(#2391,#2392) + ,(#2393,#2394) + ,(#2395,#2396) + ,(#2397,#2398) + ,(#2399,#2400) + ,(#2401,#2402) + ,(#2403,#2404) + ,(#2405,#2406) + ,(#2407,#2408) + ,(#2409,#2410) + ,(#2411,#2412) + ,(#2413,#2414) + ,(#2415,#2416) + ,(#2417,#2418) + ,(#2419,#2420) + ,(#2421,#2422) + ,(#2423,#2424 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, + 2),(0.,3.453861246837E-02,6.844561282317E-02,0.103088374418, + 0.139789540524,0.179459960852,0.222893209036,0.270937746377, + 0.323550473319,0.381968236977,0.447495048941,0.520046487774, + 0.600261744899,0.688395601747,0.784195893454,0.888150015606,1.),(0., + 1.),.UNSPECIFIED.); +#2387 = CARTESIAN_POINT('',(-7.33969623207E-02,1.170728373731E-02,0.302) + ); +#2388 = CARTESIAN_POINT('',(-7.33969623207E-02,1.170728373731E-02,0.3)); +#2389 = CARTESIAN_POINT('',(-7.503519306888E-02,1.179837087237E-02,0.302 + )); +#2390 = CARTESIAN_POINT('',(-7.503519306888E-02,1.179837087237E-02,0.3) + ); +#2391 = CARTESIAN_POINT('',(-7.828169602576E-02,1.197887942017E-02,0.302 + )); +#2392 = CARTESIAN_POINT('',(-7.828169602576E-02,1.197887942017E-02,0.3) + ); +#2393 = CARTESIAN_POINT('',(-8.301127451811E-02,1.337325584046E-02,0.302 + )); +#2394 = CARTESIAN_POINT('',(-8.301127451811E-02,1.337325584046E-02,0.3) + ); +#2395 = CARTESIAN_POINT('',(-8.744754199493E-02,1.570485771974E-02,0.302 + )); +#2396 = CARTESIAN_POINT('',(-8.744754199493E-02,1.570485771974E-02,0.3) + ); +#2397 = CARTESIAN_POINT('',(-9.164713313458E-02,1.89063949484E-02,0.302) + ); +#2398 = CARTESIAN_POINT('',(-9.164713313458E-02,1.89063949484E-02,0.3)); +#2399 = CARTESIAN_POINT('',(-9.564021982336E-02,2.296827736628E-02,0.302 + )); +#2400 = CARTESIAN_POINT('',(-9.564021982336E-02,2.296827736628E-02,0.3) + ); +#2401 = CARTESIAN_POINT('',(-9.933405102836E-02,2.798538248297E-02,0.302 + )); +#2402 = CARTESIAN_POINT('',(-9.933405102836E-02,2.798538248297E-02,0.3) + ); +#2403 = CARTESIAN_POINT('',(-0.102813411505,3.386929490553E-02,0.302)); +#2404 = CARTESIAN_POINT('',(-0.102813411505,3.386929490553E-02,0.3)); +#2405 = CARTESIAN_POINT('',(-0.106076879017,4.067427145078E-02,0.302)); +#2406 = CARTESIAN_POINT('',(-0.106076879017,4.067427145078E-02,0.3)); +#2407 = CARTESIAN_POINT('',(-0.109014183169,4.851860853335E-02,0.302)); +#2408 = CARTESIAN_POINT('',(-0.109014183169,4.851860853335E-02,0.3)); +#2409 = CARTESIAN_POINT('',(-0.111553474109,5.74850114879E-02,0.302)); +#2410 = CARTESIAN_POINT('',(-0.111553474109,5.74850114879E-02,0.3)); +#2411 = CARTESIAN_POINT('',(-0.113696339584,6.761074995223E-02,0.302)); +#2412 = CARTESIAN_POINT('',(-0.113696339584,6.761074995223E-02,0.3)); +#2413 = CARTESIAN_POINT('',(-0.115402755346,7.890129237136E-02,0.302)); +#2414 = CARTESIAN_POINT('',(-0.115402755346,7.890129237136E-02,0.3)); +#2415 = CARTESIAN_POINT('',(-0.116786851914,9.134346423712E-02,0.302)); +#2416 = CARTESIAN_POINT('',(-0.116786851914,9.134346423712E-02,0.3)); +#2417 = CARTESIAN_POINT('',(-0.117740632709,0.104954001708,0.302)); +#2418 = CARTESIAN_POINT('',(-0.117740632709,0.104954001708,0.3)); +#2419 = CARTESIAN_POINT('',(-0.118292934223,0.119710594478,0.302)); +#2420 = CARTESIAN_POINT('',(-0.118292934223,0.119710594478,0.3)); +#2421 = CARTESIAN_POINT('',(-0.118373046011,0.129935885028,0.302)); +#2422 = CARTESIAN_POINT('',(-0.118373046011,0.129935885028,0.3)); +#2423 = CARTESIAN_POINT('',(-0.118414567475,0.13523559228,0.302)); +#2424 = CARTESIAN_POINT('',(-0.118414567475,0.13523559228,0.3)); +#2425 = DEFINITIONAL_REPRESENTATION('',(#2426),#2430); +#2426 = LINE('',#2427,#2428); +#2427 = CARTESIAN_POINT('',(0.,1.)); +#2428 = VECTOR('',#2429,1.); +#2429 = DIRECTION('',(1.,0.)); +#2430 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2431 = ORIENTED_EDGE('',*,*,#2432,.T.); +#2432 = EDGE_CURVE('',#2339,#2433,#2435,.T.); +#2433 = VERTEX_POINT('',#2434); +#2434 = CARTESIAN_POINT('',(-0.104677766816,0.24266046035,0.3)); +#2435 = SURFACE_CURVE('',#2436,(#2448,#2463),.PCURVE_S1.); +#2436 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2437,#2438,#2439,#2440,#2441, + #2442,#2443,#2444,#2445,#2446,#2447),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.163989851333,0.316278722645,0.457451380616, + 0.587186603505,0.706146478246,0.814209291838,0.9121060393,1.), + .UNSPECIFIED.); +#2437 = CARTESIAN_POINT('',(-0.118414567475,0.13523559228,0.3)); +#2438 = CARTESIAN_POINT('',(-0.11838332671,0.141187250373,0.3)); +#2439 = CARTESIAN_POINT('',(-0.118323074267,0.152665904716,0.3)); +#2440 = CARTESIAN_POINT('',(-0.117632979738,0.169255859138,0.3)); +#2441 = CARTESIAN_POINT('',(-0.116586134114,0.184580864208,0.3)); +#2442 = CARTESIAN_POINT('',(-0.115100658621,0.198653552692,0.3)); +#2443 = CARTESIAN_POINT('',(-0.113255858169,0.211475596551,0.3)); +#2444 = CARTESIAN_POINT('',(-0.110868853378,0.223025395741,0.3)); +#2445 = CARTESIAN_POINT('',(-0.108207837657,0.233369508231,0.3)); +#2446 = CARTESIAN_POINT('',(-0.105811450735,0.239676666687,0.3)); +#2447 = CARTESIAN_POINT('',(-0.104677766816,0.24266046035,0.3)); +#2448 = PCURVE('',#48,#2449); +#2449 = DEFINITIONAL_REPRESENTATION('',(#2450),#2462); +#2450 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2451,#2452,#2453,#2454,#2455, + #2456,#2457,#2458,#2459,#2460,#2461),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.163989851333,0.316278722645,0.457451380616, + 0.587186603505,0.706146478246,0.814209291838,0.9121060393,1.), + .UNSPECIFIED.); +#2451 = CARTESIAN_POINT('',(-0.53523559228,0.681585432525)); +#2452 = CARTESIAN_POINT('',(-0.541187250373,0.68161667329)); +#2453 = CARTESIAN_POINT('',(-0.552665904716,0.681676925733)); +#2454 = CARTESIAN_POINT('',(-0.569255859138,0.682367020262)); +#2455 = CARTESIAN_POINT('',(-0.584580864208,0.683413865886)); +#2456 = CARTESIAN_POINT('',(-0.598653552692,0.684899341379)); +#2457 = CARTESIAN_POINT('',(-0.611475596551,0.686744141831)); +#2458 = CARTESIAN_POINT('',(-0.623025395741,0.689131146622)); +#2459 = CARTESIAN_POINT('',(-0.633369508231,0.691792162343)); +#2460 = CARTESIAN_POINT('',(-0.639676666687,0.694188549265)); +#2461 = CARTESIAN_POINT('',(-0.64266046035,0.695322233184)); +#2462 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2463 = PCURVE('',#2464,#2487); +#2464 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#2465,#2466) + ,(#2467,#2468) + ,(#2469,#2470) + ,(#2471,#2472) + ,(#2473,#2474) + ,(#2475,#2476) + ,(#2477,#2478) + ,(#2479,#2480) + ,(#2481,#2482) + ,(#2483,#2484) + ,(#2485,#2486 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,4),(2,2),(0., + 0.163989851333,0.316278722645,0.457451380616,0.587186603505, + 0.706146478246,0.814209291838,0.9121060393,1.),(0.,1.), + .UNSPECIFIED.); +#2465 = CARTESIAN_POINT('',(-0.118414567475,0.13523559228,0.302)); +#2466 = CARTESIAN_POINT('',(-0.118414567475,0.13523559228,0.3)); +#2467 = CARTESIAN_POINT('',(-0.11838332671,0.141187250373,0.302)); +#2468 = CARTESIAN_POINT('',(-0.11838332671,0.141187250373,0.3)); +#2469 = CARTESIAN_POINT('',(-0.118323074267,0.152665904716,0.302)); +#2470 = CARTESIAN_POINT('',(-0.118323074267,0.152665904716,0.3)); +#2471 = CARTESIAN_POINT('',(-0.117632979738,0.169255859138,0.302)); +#2472 = CARTESIAN_POINT('',(-0.117632979738,0.169255859138,0.3)); +#2473 = CARTESIAN_POINT('',(-0.116586134114,0.184580864208,0.302)); +#2474 = CARTESIAN_POINT('',(-0.116586134114,0.184580864208,0.3)); +#2475 = CARTESIAN_POINT('',(-0.115100658621,0.198653552692,0.302)); +#2476 = CARTESIAN_POINT('',(-0.115100658621,0.198653552692,0.3)); +#2477 = CARTESIAN_POINT('',(-0.113255858169,0.211475596551,0.302)); +#2478 = CARTESIAN_POINT('',(-0.113255858169,0.211475596551,0.3)); +#2479 = CARTESIAN_POINT('',(-0.110868853378,0.223025395741,0.302)); +#2480 = CARTESIAN_POINT('',(-0.110868853378,0.223025395741,0.3)); +#2481 = CARTESIAN_POINT('',(-0.108207837657,0.233369508231,0.302)); +#2482 = CARTESIAN_POINT('',(-0.108207837657,0.233369508231,0.3)); +#2483 = CARTESIAN_POINT('',(-0.105811450735,0.239676666687,0.302)); +#2484 = CARTESIAN_POINT('',(-0.105811450735,0.239676666687,0.3)); +#2485 = CARTESIAN_POINT('',(-0.104677766816,0.24266046035,0.302)); +#2486 = CARTESIAN_POINT('',(-0.104677766816,0.24266046035,0.3)); +#2487 = DEFINITIONAL_REPRESENTATION('',(#2488),#2492); +#2488 = LINE('',#2489,#2490); +#2489 = CARTESIAN_POINT('',(0.,1.)); +#2490 = VECTOR('',#2491,1.); +#2491 = DIRECTION('',(1.,0.)); +#2492 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2493 = ORIENTED_EDGE('',*,*,#2494,.T.); +#2494 = EDGE_CURVE('',#2433,#1749,#2495,.T.); +#2495 = SURFACE_CURVE('',#2496,(#2508,#2523),.PCURVE_S1.); +#2496 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2497,#2498,#2499,#2500,#2501, + #2502,#2503,#2504,#2505,#2506,#2507),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.162869879318,0.309908072212,0.444611029049, + 0.566630874761,0.679290220773,0.787329317068,0.892674268692,1.), + .UNSPECIFIED.); +#2497 = CARTESIAN_POINT('',(-0.104677766816,0.24266046035,0.3)); +#2498 = CARTESIAN_POINT('',(-0.103670776854,0.244960208711,0.3)); +#2499 = CARTESIAN_POINT('',(-0.101754680893,0.249336159528,0.3)); +#2500 = CARTESIAN_POINT('',(-9.839592632308E-02,0.255320297364,0.3)); +#2501 = CARTESIAN_POINT('',(-9.478009908452E-02,0.260404284456,0.3)); +#2502 = CARTESIAN_POINT('',(-9.082335272275E-02,0.264520866709,0.3)); +#2503 = CARTESIAN_POINT('',(-8.666166759958E-02,0.267805334623,0.3)); +#2504 = CARTESIAN_POINT('',(-8.219684247592E-02,0.270172333349,0.3)); +#2505 = CARTESIAN_POINT('',(-7.740545369794E-02,0.271558280004,0.3)); +#2506 = CARTESIAN_POINT('',(-7.412592348181E-02,0.271740107823,0.3)); +#2507 = CARTESIAN_POINT('',(-7.247088587182E-02,0.27183186849,0.3)); +#2508 = PCURVE('',#48,#2509); +#2509 = DEFINITIONAL_REPRESENTATION('',(#2510),#2522); +#2510 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#2511,#2512,#2513,#2514,#2515, + #2516,#2517,#2518,#2519,#2520,#2521),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.162869879318,0.309908072212,0.444611029049, + 0.566630874761,0.679290220773,0.787329317068,0.892674268692,1.), + .UNSPECIFIED.); +#2511 = CARTESIAN_POINT('',(-0.64266046035,0.695322233184)); +#2512 = CARTESIAN_POINT('',(-0.644960208711,0.696329223146)); +#2513 = CARTESIAN_POINT('',(-0.649336159528,0.698245319107)); +#2514 = CARTESIAN_POINT('',(-0.655320297364,0.701604073677)); +#2515 = CARTESIAN_POINT('',(-0.660404284456,0.705219900915)); +#2516 = CARTESIAN_POINT('',(-0.664520866709,0.709176647277)); +#2517 = CARTESIAN_POINT('',(-0.667805334623,0.7133383324)); +#2518 = CARTESIAN_POINT('',(-0.670172333349,0.717803157524)); +#2519 = CARTESIAN_POINT('',(-0.671558280004,0.722594546302)); +#2520 = CARTESIAN_POINT('',(-0.671740107823,0.725874076518)); +#2521 = CARTESIAN_POINT('',(-0.67183186849,0.727529114128)); +#2522 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2523 = PCURVE('',#2524,#2547); +#2524 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#2525,#2526) + ,(#2527,#2528) + ,(#2529,#2530) + ,(#2531,#2532) + ,(#2533,#2534) + ,(#2535,#2536) + ,(#2537,#2538) + ,(#2539,#2540) + ,(#2541,#2542) + ,(#2543,#2544) + ,(#2545,#2546 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,4),(2,2),(0., + 0.162869879318,0.309908072212,0.444611029049,0.566630874761, + 0.679290220773,0.787329317068,0.892674268692,1.),(0.,1.), + .UNSPECIFIED.); +#2525 = CARTESIAN_POINT('',(-0.104677766816,0.24266046035,0.302)); +#2526 = CARTESIAN_POINT('',(-0.104677766816,0.24266046035,0.3)); +#2527 = CARTESIAN_POINT('',(-0.103670776854,0.244960208711,0.302)); +#2528 = CARTESIAN_POINT('',(-0.103670776854,0.244960208711,0.3)); +#2529 = CARTESIAN_POINT('',(-0.101754680893,0.249336159528,0.302)); +#2530 = CARTESIAN_POINT('',(-0.101754680893,0.249336159528,0.3)); +#2531 = CARTESIAN_POINT('',(-9.839592632308E-02,0.255320297364,0.302)); +#2532 = CARTESIAN_POINT('',(-9.839592632308E-02,0.255320297364,0.3)); +#2533 = CARTESIAN_POINT('',(-9.478009908452E-02,0.260404284456,0.302)); +#2534 = CARTESIAN_POINT('',(-9.478009908452E-02,0.260404284456,0.3)); +#2535 = CARTESIAN_POINT('',(-9.082335272275E-02,0.264520866709,0.302)); +#2536 = CARTESIAN_POINT('',(-9.082335272275E-02,0.264520866709,0.3)); +#2537 = CARTESIAN_POINT('',(-8.666166759958E-02,0.267805334623,0.302)); +#2538 = CARTESIAN_POINT('',(-8.666166759958E-02,0.267805334623,0.3)); +#2539 = CARTESIAN_POINT('',(-8.219684247592E-02,0.270172333349,0.302)); +#2540 = CARTESIAN_POINT('',(-8.219684247592E-02,0.270172333349,0.3)); +#2541 = CARTESIAN_POINT('',(-7.740545369794E-02,0.271558280004,0.302)); +#2542 = CARTESIAN_POINT('',(-7.740545369794E-02,0.271558280004,0.3)); +#2543 = CARTESIAN_POINT('',(-7.412592348181E-02,0.271740107823,0.302)); +#2544 = CARTESIAN_POINT('',(-7.412592348181E-02,0.271740107823,0.3)); +#2545 = CARTESIAN_POINT('',(-7.247088587182E-02,0.27183186849,0.302)); +#2546 = CARTESIAN_POINT('',(-7.247088587182E-02,0.27183186849,0.3)); +#2547 = DEFINITIONAL_REPRESENTATION('',(#2548),#2552); +#2548 = LINE('',#2549,#2550); +#2549 = CARTESIAN_POINT('',(0.,1.)); +#2550 = VECTOR('',#2551,1.); +#2551 = DIRECTION('',(1.,0.)); +#2552 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2553 = ADVANCED_FACE('',(#2554),#2568,.F.); +#2554 = FACE_BOUND('',#2555,.T.); +#2555 = EDGE_LOOP('',(#2556,#2591,#2618,#2645)); +#2556 = ORIENTED_EDGE('',*,*,#2557,.F.); +#2557 = EDGE_CURVE('',#2558,#2560,#2562,.T.); +#2558 = VERTEX_POINT('',#2559); +#2559 = CARTESIAN_POINT('',(-0.4,-0.4,0.285)); +#2560 = VERTEX_POINT('',#2561); +#2561 = CARTESIAN_POINT('',(-0.4,-0.4,1.5E-02)); +#2562 = SURFACE_CURVE('',#2563,(#2567,#2579),.PCURVE_S1.); +#2563 = LINE('',#2564,#2565); +#2564 = CARTESIAN_POINT('',(-0.4,-0.4,0.3)); +#2565 = VECTOR('',#2566,1.); +#2566 = DIRECTION('',(1.807003620809E-16,1.367178939504E-16,-1.)); +#2567 = PCURVE('',#2568,#2573); +#2568 = PLANE('',#2569); +#2569 = AXIS2_PLACEMENT_3D('',#2570,#2571,#2572); +#2570 = CARTESIAN_POINT('',(-0.8,-0.4,0.3)); +#2571 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#2572 = DIRECTION('',(-1.,0.,0.)); +#2573 = DEFINITIONAL_REPRESENTATION('',(#2574),#2578); +#2574 = LINE('',#2575,#2576); +#2575 = CARTESIAN_POINT('',(-0.4,5.551115123126E-17)); +#2576 = VECTOR('',#2577,1.); +#2577 = DIRECTION('',(-1.807003620809E-16,-1.)); +#2578 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2579 = PCURVE('',#2580,#2585); +#2580 = PLANE('',#2581); +#2581 = AXIS2_PLACEMENT_3D('',#2582,#2583,#2584); +#2582 = CARTESIAN_POINT('',(-0.8,-0.4,0.3)); +#2583 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#2584 = DIRECTION('',(-1.,0.,0.)); +#2585 = DEFINITIONAL_REPRESENTATION('',(#2586),#2590); +#2586 = LINE('',#2587,#2588); +#2587 = CARTESIAN_POINT('',(-0.4,5.551115123126E-17)); +#2588 = VECTOR('',#2589,1.); +#2589 = DIRECTION('',(-1.807003620809E-16,-1.)); +#2590 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2591 = ORIENTED_EDGE('',*,*,#2592,.T.); +#2592 = EDGE_CURVE('',#2558,#2593,#2595,.T.); +#2593 = VERTEX_POINT('',#2594); +#2594 = CARTESIAN_POINT('',(-0.785,-0.4,0.285)); +#2595 = SURFACE_CURVE('',#2596,(#2600,#2607),.PCURVE_S1.); +#2596 = LINE('',#2597,#2598); +#2597 = CARTESIAN_POINT('',(-0.8,-0.4,0.285)); +#2598 = VECTOR('',#2599,1.); +#2599 = DIRECTION('',(-1.,0.,0.)); +#2600 = PCURVE('',#2568,#2601); +#2601 = DEFINITIONAL_REPRESENTATION('',(#2602),#2606); +#2602 = LINE('',#2603,#2604); +#2603 = CARTESIAN_POINT('',(0.,-1.5E-02)); +#2604 = VECTOR('',#2605,1.); +#2605 = DIRECTION('',(1.,0.)); +#2606 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2607 = PCURVE('',#2608,#2613); +#2608 = CYLINDRICAL_SURFACE('',#2609,1.5E-02); +#2609 = AXIS2_PLACEMENT_3D('',#2610,#2611,#2612); +#2610 = CARTESIAN_POINT('',(-0.8,-0.385,0.285)); +#2611 = DIRECTION('',(-1.,-0.,0.)); +#2612 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#2613 = DEFINITIONAL_REPRESENTATION('',(#2614),#2617); +#2614 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2615,#2616),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.4,-1.5E-02),.PIECEWISE_BEZIER_KNOTS.); +#2615 = CARTESIAN_POINT('',(0.,-0.4)); +#2616 = CARTESIAN_POINT('',(0.,-1.5E-02)); +#2617 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2618 = ORIENTED_EDGE('',*,*,#2619,.T.); +#2619 = EDGE_CURVE('',#2593,#2620,#2622,.T.); +#2620 = VERTEX_POINT('',#2621); +#2621 = CARTESIAN_POINT('',(-0.785,-0.4,1.5E-02)); +#2622 = SURFACE_CURVE('',#2623,(#2627,#2634),.PCURVE_S1.); +#2623 = LINE('',#2624,#2625); +#2624 = CARTESIAN_POINT('',(-0.785,-0.4,0.3)); +#2625 = VECTOR('',#2626,1.); +#2626 = DIRECTION('',(0.,1.367178939504E-16,-1.)); +#2627 = PCURVE('',#2568,#2628); +#2628 = DEFINITIONAL_REPRESENTATION('',(#2629),#2633); +#2629 = LINE('',#2630,#2631); +#2630 = CARTESIAN_POINT('',(-1.5E-02,0.)); +#2631 = VECTOR('',#2632,1.); +#2632 = DIRECTION('',(0.,-1.)); +#2633 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2634 = PCURVE('',#2635,#2640); +#2635 = CYLINDRICAL_SURFACE('',#2636,1.5E-02); +#2636 = AXIS2_PLACEMENT_3D('',#2637,#2638,#2639); +#2637 = CARTESIAN_POINT('',(-0.785,-0.385,0.3)); +#2638 = DIRECTION('',(0.,1.367178939504E-16,-1.)); +#2639 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#2640 = DEFINITIONAL_REPRESENTATION('',(#2641),#2644); +#2641 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2642,#2643),.UNSPECIFIED.,.F., + .F.,(2,2),(1.5E-02,0.285),.PIECEWISE_BEZIER_KNOTS.); +#2642 = CARTESIAN_POINT('',(3.14159265359,1.5E-02)); +#2643 = CARTESIAN_POINT('',(3.14159265359,0.285)); +#2644 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2645 = ORIENTED_EDGE('',*,*,#2646,.T.); +#2646 = EDGE_CURVE('',#2620,#2560,#2647,.T.); +#2647 = SURFACE_CURVE('',#2648,(#2652,#2659),.PCURVE_S1.); +#2648 = LINE('',#2649,#2650); +#2649 = CARTESIAN_POINT('',(-0.8,-0.4,1.5E-02)); +#2650 = VECTOR('',#2651,1.); +#2651 = DIRECTION('',(1.,0.,0.)); +#2652 = PCURVE('',#2568,#2653); +#2653 = DEFINITIONAL_REPRESENTATION('',(#2654),#2658); +#2654 = LINE('',#2655,#2656); +#2655 = CARTESIAN_POINT('',(0.,-0.285)); +#2656 = VECTOR('',#2657,1.); +#2657 = DIRECTION('',(-1.,0.)); +#2658 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2659 = PCURVE('',#2660,#2665); +#2660 = CYLINDRICAL_SURFACE('',#2661,1.5E-02); +#2661 = AXIS2_PLACEMENT_3D('',#2662,#2663,#2664); +#2662 = CARTESIAN_POINT('',(-0.8,-0.385,1.5E-02)); +#2663 = DIRECTION('',(1.,0.,0.)); +#2664 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#2665 = DEFINITIONAL_REPRESENTATION('',(#2666),#2669); +#2666 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2667,#2668),.UNSPECIFIED.,.F., + .F.,(2,2),(1.5E-02,0.4),.PIECEWISE_BEZIER_KNOTS.); +#2667 = CARTESIAN_POINT('',(3.14159265359,1.5E-02)); +#2668 = CARTESIAN_POINT('',(3.14159265359,0.4)); +#2669 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2670 = ADVANCED_FACE('',(#2671),#2685,.F.); +#2671 = FACE_BOUND('',#2672,.T.); +#2672 = EDGE_LOOP('',(#2673,#2703,#2730,#2757)); +#2673 = ORIENTED_EDGE('',*,*,#2674,.F.); +#2674 = EDGE_CURVE('',#2675,#2677,#2679,.T.); +#2675 = VERTEX_POINT('',#2676); +#2676 = CARTESIAN_POINT('',(0.4,-0.4,1.5E-02)); +#2677 = VERTEX_POINT('',#2678); +#2678 = CARTESIAN_POINT('',(0.4,-0.4,0.285)); +#2679 = SURFACE_CURVE('',#2680,(#2684,#2696),.PCURVE_S1.); +#2680 = LINE('',#2681,#2682); +#2681 = CARTESIAN_POINT('',(0.4,-0.4,0.3)); +#2682 = VECTOR('',#2683,1.); +#2683 = DIRECTION('',(1.807003620809E-16,-1.367178939504E-16,1.)); +#2684 = PCURVE('',#2685,#2690); +#2685 = PLANE('',#2686); +#2686 = AXIS2_PLACEMENT_3D('',#2687,#2688,#2689); +#2687 = CARTESIAN_POINT('',(-0.8,-0.4,0.3)); +#2688 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#2689 = DIRECTION('',(-1.,0.,0.)); +#2690 = DEFINITIONAL_REPRESENTATION('',(#2691),#2695); +#2691 = LINE('',#2692,#2693); +#2692 = CARTESIAN_POINT('',(-1.2,-2.22044604925E-16)); +#2693 = VECTOR('',#2694,1.); +#2694 = DIRECTION('',(-1.807003620809E-16,1.)); +#2695 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2696 = PCURVE('',#2580,#2697); +#2697 = DEFINITIONAL_REPRESENTATION('',(#2698),#2702); +#2698 = LINE('',#2699,#2700); +#2699 = CARTESIAN_POINT('',(-1.2,-2.22044604925E-16)); +#2700 = VECTOR('',#2701,1.); +#2701 = DIRECTION('',(-1.807003620809E-16,1.)); +#2702 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2703 = ORIENTED_EDGE('',*,*,#2704,.T.); +#2704 = EDGE_CURVE('',#2675,#2705,#2707,.T.); +#2705 = VERTEX_POINT('',#2706); +#2706 = CARTESIAN_POINT('',(0.785,-0.4,1.5E-02)); +#2707 = SURFACE_CURVE('',#2708,(#2712,#2719),.PCURVE_S1.); +#2708 = LINE('',#2709,#2710); +#2709 = CARTESIAN_POINT('',(-0.8,-0.4,1.5E-02)); +#2710 = VECTOR('',#2711,1.); +#2711 = DIRECTION('',(1.,0.,0.)); +#2712 = PCURVE('',#2685,#2713); +#2713 = DEFINITIONAL_REPRESENTATION('',(#2714),#2718); +#2714 = LINE('',#2715,#2716); +#2715 = CARTESIAN_POINT('',(0.,-0.285)); +#2716 = VECTOR('',#2717,1.); +#2717 = DIRECTION('',(-1.,0.)); +#2718 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2719 = PCURVE('',#2720,#2725); +#2720 = CYLINDRICAL_SURFACE('',#2721,1.5E-02); +#2721 = AXIS2_PLACEMENT_3D('',#2722,#2723,#2724); +#2722 = CARTESIAN_POINT('',(-0.8,-0.385,1.5E-02)); +#2723 = DIRECTION('',(1.,0.,0.)); +#2724 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#2725 = DEFINITIONAL_REPRESENTATION('',(#2726),#2729); +#2726 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2727,#2728),.UNSPECIFIED.,.F., + .F.,(2,2),(1.2,1.585),.PIECEWISE_BEZIER_KNOTS.); +#2727 = CARTESIAN_POINT('',(3.14159265359,1.2)); +#2728 = CARTESIAN_POINT('',(3.14159265359,1.585)); +#2729 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2730 = ORIENTED_EDGE('',*,*,#2731,.T.); +#2731 = EDGE_CURVE('',#2705,#2732,#2734,.T.); +#2732 = VERTEX_POINT('',#2733); +#2733 = CARTESIAN_POINT('',(0.785,-0.4,0.285)); +#2734 = SURFACE_CURVE('',#2735,(#2739,#2746),.PCURVE_S1.); +#2735 = LINE('',#2736,#2737); +#2736 = CARTESIAN_POINT('',(0.785,-0.4,0.3)); +#2737 = VECTOR('',#2738,1.); +#2738 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#2739 = PCURVE('',#2685,#2740); +#2740 = DEFINITIONAL_REPRESENTATION('',(#2741),#2745); +#2741 = LINE('',#2742,#2743); +#2742 = CARTESIAN_POINT('',(-1.585,0.)); +#2743 = VECTOR('',#2744,1.); +#2744 = DIRECTION('',(0.,1.)); +#2745 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2746 = PCURVE('',#2747,#2752); +#2747 = CYLINDRICAL_SURFACE('',#2748,1.5E-02); +#2748 = AXIS2_PLACEMENT_3D('',#2749,#2750,#2751); +#2749 = CARTESIAN_POINT('',(0.785,-0.385,0.3)); +#2750 = DIRECTION('',(0.,1.367178939504E-16,-1.)); +#2751 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#2752 = DEFINITIONAL_REPRESENTATION('',(#2753),#2756); +#2753 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2754,#2755),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.285,-1.5E-02),.PIECEWISE_BEZIER_KNOTS.); +#2754 = CARTESIAN_POINT('',(3.14159265359,0.285)); +#2755 = CARTESIAN_POINT('',(3.14159265359,1.5E-02)); +#2756 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2757 = ORIENTED_EDGE('',*,*,#2758,.T.); +#2758 = EDGE_CURVE('',#2732,#2677,#2759,.T.); +#2759 = SURFACE_CURVE('',#2760,(#2764,#2771),.PCURVE_S1.); +#2760 = LINE('',#2761,#2762); +#2761 = CARTESIAN_POINT('',(-0.8,-0.4,0.285)); +#2762 = VECTOR('',#2763,1.); +#2763 = DIRECTION('',(-1.,0.,0.)); +#2764 = PCURVE('',#2685,#2765); +#2765 = DEFINITIONAL_REPRESENTATION('',(#2766),#2770); +#2766 = LINE('',#2767,#2768); +#2767 = CARTESIAN_POINT('',(0.,-1.5E-02)); +#2768 = VECTOR('',#2769,1.); +#2769 = DIRECTION('',(1.,0.)); +#2770 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2771 = PCURVE('',#2772,#2777); +#2772 = CYLINDRICAL_SURFACE('',#2773,1.5E-02); +#2773 = AXIS2_PLACEMENT_3D('',#2774,#2775,#2776); +#2774 = CARTESIAN_POINT('',(-0.8,-0.385,0.285)); +#2775 = DIRECTION('',(-1.,-0.,0.)); +#2776 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#2777 = DEFINITIONAL_REPRESENTATION('',(#2778),#2781); +#2778 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2779,#2780),.UNSPECIFIED.,.F., + .F.,(2,2),(-1.585,-1.2),.PIECEWISE_BEZIER_KNOTS.); +#2779 = CARTESIAN_POINT('',(0.,-1.585)); +#2780 = CARTESIAN_POINT('',(0.,-1.2)); +#2781 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2782 = ADVANCED_FACE('',(#2783),#1654,.T.); +#2783 = FACE_BOUND('',#2784,.T.); +#2784 = EDGE_LOOP('',(#2785,#2807,#2808,#2835)); +#2785 = ORIENTED_EDGE('',*,*,#2786,.T.); +#2786 = EDGE_CURVE('',#2787,#1637,#2789,.T.); +#2787 = VERTEX_POINT('',#2788); +#2788 = CARTESIAN_POINT('',(-0.785,-0.385,0.3)); +#2789 = SURFACE_CURVE('',#2790,(#2794,#2801),.PCURVE_S1.); +#2790 = LINE('',#2791,#2792); +#2791 = CARTESIAN_POINT('',(0.8,-0.385,0.3)); +#2792 = VECTOR('',#2793,1.); +#2793 = DIRECTION('',(1.,0.,0.)); +#2794 = PCURVE('',#1654,#2795); +#2795 = DEFINITIONAL_REPRESENTATION('',(#2796),#2800); +#2796 = LINE('',#2797,#2798); +#2797 = CARTESIAN_POINT('',(-1.5E-02,1.6)); +#2798 = VECTOR('',#2799,1.); +#2799 = DIRECTION('',(0.,1.)); +#2800 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2801 = PCURVE('',#2608,#2802); +#2802 = DEFINITIONAL_REPRESENTATION('',(#2803),#2806); +#2803 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2804,#2805),.UNSPECIFIED.,.F., + .F.,(2,2),(-1.585,-1.2),.PIECEWISE_BEZIER_KNOTS.); +#2804 = CARTESIAN_POINT('',(1.570796326795,-1.5E-02)); +#2805 = CARTESIAN_POINT('',(1.570796326795,-0.4)); +#2806 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2807 = ORIENTED_EDGE('',*,*,#1636,.T.); +#2808 = ORIENTED_EDGE('',*,*,#2809,.T.); +#2809 = EDGE_CURVE('',#1639,#2810,#2812,.T.); +#2810 = VERTEX_POINT('',#2811); +#2811 = CARTESIAN_POINT('',(-0.785,0.385,0.3)); +#2812 = SURFACE_CURVE('',#2813,(#2817,#2824),.PCURVE_S1.); +#2813 = LINE('',#2814,#2815); +#2814 = CARTESIAN_POINT('',(-0.8,0.385,0.3)); +#2815 = VECTOR('',#2816,1.); +#2816 = DIRECTION('',(-1.,-0.,0.)); +#2817 = PCURVE('',#1654,#2818); +#2818 = DEFINITIONAL_REPRESENTATION('',(#2819),#2823); +#2819 = LINE('',#2820,#2821); +#2820 = CARTESIAN_POINT('',(-0.785,0.)); +#2821 = VECTOR('',#2822,1.); +#2822 = DIRECTION('',(-0.,-1.)); +#2823 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2824 = PCURVE('',#2825,#2830); +#2825 = CYLINDRICAL_SURFACE('',#2826,1.5E-02); +#2826 = AXIS2_PLACEMENT_3D('',#2827,#2828,#2829); +#2827 = CARTESIAN_POINT('',(-0.8,0.385,0.285)); +#2828 = DIRECTION('',(1.,0.,0.)); +#2829 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#2830 = DEFINITIONAL_REPRESENTATION('',(#2831),#2834); +#2831 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2832,#2833),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.4,-1.5E-02),.PIECEWISE_BEZIER_KNOTS.); +#2832 = CARTESIAN_POINT('',(1.570796326795,0.4)); +#2833 = CARTESIAN_POINT('',(1.570796326795,1.5E-02)); +#2834 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2835 = ORIENTED_EDGE('',*,*,#2836,.T.); +#2836 = EDGE_CURVE('',#2810,#2787,#2837,.T.); +#2837 = SURFACE_CURVE('',#2838,(#2842,#2849),.PCURVE_S1.); +#2838 = LINE('',#2839,#2840); +#2839 = CARTESIAN_POINT('',(-0.785,-0.4,0.3)); +#2840 = VECTOR('',#2841,1.); +#2841 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#2842 = PCURVE('',#1654,#2843); +#2843 = DEFINITIONAL_REPRESENTATION('',(#2844),#2848); +#2844 = LINE('',#2845,#2846); +#2845 = CARTESIAN_POINT('',(0.,1.5E-02)); +#2846 = VECTOR('',#2847,1.); +#2847 = DIRECTION('',(1.,0.)); +#2848 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2849 = PCURVE('',#2850,#2855); +#2850 = CYLINDRICAL_SURFACE('',#2851,1.5E-02); +#2851 = AXIS2_PLACEMENT_3D('',#2852,#2853,#2854); +#2852 = CARTESIAN_POINT('',(-0.785,-0.4,0.285)); +#2853 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#2854 = DIRECTION('',(-1.,-0.,0.)); +#2855 = DEFINITIONAL_REPRESENTATION('',(#2856),#2859); +#2856 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2857,#2858),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.785,-1.5E-02),.PIECEWISE_BEZIER_KNOTS.); +#2857 = CARTESIAN_POINT('',(1.570796326795,0.785)); +#2858 = CARTESIAN_POINT('',(1.570796326795,1.5E-02)); +#2859 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2860 = ADVANCED_FACE('',(#2861),#1709,.T.); +#2861 = FACE_BOUND('',#2862,.T.); +#2862 = EDGE_LOOP('',(#2863,#2890,#2891,#2913)); +#2863 = ORIENTED_EDGE('',*,*,#2864,.T.); +#2864 = EDGE_CURVE('',#2865,#1694,#2867,.T.); +#2865 = VERTEX_POINT('',#2866); +#2866 = CARTESIAN_POINT('',(0.785,0.385,0.3)); +#2867 = SURFACE_CURVE('',#2868,(#2872,#2879),.PCURVE_S1.); +#2868 = LINE('',#2869,#2870); +#2869 = CARTESIAN_POINT('',(-0.8,0.385,0.3)); +#2870 = VECTOR('',#2871,1.); +#2871 = DIRECTION('',(-1.,-0.,0.)); +#2872 = PCURVE('',#1709,#2873); +#2873 = DEFINITIONAL_REPRESENTATION('',(#2874),#2878); +#2874 = LINE('',#2875,#2876); +#2875 = CARTESIAN_POINT('',(-0.785,0.)); +#2876 = VECTOR('',#2877,1.); +#2877 = DIRECTION('',(-0.,-1.)); +#2878 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2879 = PCURVE('',#2880,#2885); +#2880 = CYLINDRICAL_SURFACE('',#2881,1.5E-02); +#2881 = AXIS2_PLACEMENT_3D('',#2882,#2883,#2884); +#2882 = CARTESIAN_POINT('',(-0.8,0.385,0.285)); +#2883 = DIRECTION('',(1.,0.,0.)); +#2884 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#2885 = DEFINITIONAL_REPRESENTATION('',(#2886),#2889); +#2886 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2887,#2888),.UNSPECIFIED.,.F., + .F.,(2,2),(-1.585,-1.2),.PIECEWISE_BEZIER_KNOTS.); +#2887 = CARTESIAN_POINT('',(1.570796326795,1.585)); +#2888 = CARTESIAN_POINT('',(1.570796326795,1.2)); +#2889 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2890 = ORIENTED_EDGE('',*,*,#1693,.T.); +#2891 = ORIENTED_EDGE('',*,*,#2892,.T.); +#2892 = EDGE_CURVE('',#1667,#2893,#2895,.T.); +#2893 = VERTEX_POINT('',#2894); +#2894 = CARTESIAN_POINT('',(0.785,-0.385,0.3)); +#2895 = SURFACE_CURVE('',#2896,(#2900,#2907),.PCURVE_S1.); +#2896 = LINE('',#2897,#2898); +#2897 = CARTESIAN_POINT('',(0.8,-0.385,0.3)); +#2898 = VECTOR('',#2899,1.); +#2899 = DIRECTION('',(1.,0.,0.)); +#2900 = PCURVE('',#1709,#2901); +#2901 = DEFINITIONAL_REPRESENTATION('',(#2902),#2906); +#2902 = LINE('',#2903,#2904); +#2903 = CARTESIAN_POINT('',(-1.5E-02,1.6)); +#2904 = VECTOR('',#2905,1.); +#2905 = DIRECTION('',(0.,1.)); +#2906 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2907 = PCURVE('',#2772,#2908); +#2908 = DEFINITIONAL_REPRESENTATION('',(#2909),#2912); +#2909 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2910,#2911),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.4,-1.5E-02),.PIECEWISE_BEZIER_KNOTS.); +#2910 = CARTESIAN_POINT('',(1.570796326795,-1.2)); +#2911 = CARTESIAN_POINT('',(1.570796326795,-1.585)); +#2912 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2913 = ORIENTED_EDGE('',*,*,#2914,.T.); +#2914 = EDGE_CURVE('',#2893,#2865,#2915,.T.); +#2915 = SURFACE_CURVE('',#2916,(#2920,#2927),.PCURVE_S1.); +#2916 = LINE('',#2917,#2918); +#2917 = CARTESIAN_POINT('',(0.785,0.4,0.3)); +#2918 = VECTOR('',#2919,1.); +#2919 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#2920 = PCURVE('',#1709,#2921); +#2921 = DEFINITIONAL_REPRESENTATION('',(#2922),#2926); +#2922 = LINE('',#2923,#2924); +#2923 = CARTESIAN_POINT('',(-0.8,1.585)); +#2924 = VECTOR('',#2925,1.); +#2925 = DIRECTION('',(-1.,0.)); +#2926 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2927 = PCURVE('',#2928,#2933); +#2928 = CYLINDRICAL_SURFACE('',#2929,1.5E-02); +#2929 = AXIS2_PLACEMENT_3D('',#2930,#2931,#2932); +#2930 = CARTESIAN_POINT('',(0.785,-0.4,0.285)); +#2931 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#2932 = DIRECTION('',(1.,0.,0.)); +#2933 = DEFINITIONAL_REPRESENTATION('',(#2934),#2937); +#2934 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2935,#2936),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.785,-1.5E-02),.PIECEWISE_BEZIER_KNOTS.); +#2935 = CARTESIAN_POINT('',(1.570796326795,-1.5E-02)); +#2936 = CARTESIAN_POINT('',(1.570796326795,-0.785)); +#2937 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2938 = ADVANCED_FACE('',(#2939),#2608,.T.); +#2939 = FACE_BOUND('',#2940,.T.); +#2940 = EDGE_LOOP('',(#2941,#2942,#2962,#2963)); +#2941 = ORIENTED_EDGE('',*,*,#2592,.F.); +#2942 = ORIENTED_EDGE('',*,*,#2943,.T.); +#2943 = EDGE_CURVE('',#2558,#1637,#2944,.T.); +#2944 = SURFACE_CURVE('',#2945,(#2950,#2956),.PCURVE_S1.); +#2945 = CIRCLE('',#2946,1.5E-02); +#2946 = AXIS2_PLACEMENT_3D('',#2947,#2948,#2949); +#2947 = CARTESIAN_POINT('',(-0.4,-0.385,0.285)); +#2948 = DIRECTION('',(-1.,2.470497293978E-32,-1.807003620809E-16)); +#2949 = DIRECTION('',(-1.807003620809E-16,-1.367178939504E-16,1.)); +#2950 = PCURVE('',#2608,#2951); +#2951 = DEFINITIONAL_REPRESENTATION('',(#2952),#2955); +#2952 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2953,#2954),.UNSPECIFIED.,.F., + .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); +#2953 = CARTESIAN_POINT('',(0.,-0.4)); +#2954 = CARTESIAN_POINT('',(1.570796326795,-0.4)); +#2955 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2956 = PCURVE('',#1682,#2957); +#2957 = DEFINITIONAL_REPRESENTATION('',(#2958),#2961); +#2958 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2959,#2960),.UNSPECIFIED.,.F., + .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); +#2959 = CARTESIAN_POINT('',(0.,-0.4)); +#2960 = CARTESIAN_POINT('',(1.570796326795,-0.4)); +#2961 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2962 = ORIENTED_EDGE('',*,*,#2786,.F.); +#2963 = ORIENTED_EDGE('',*,*,#2964,.F.); +#2964 = EDGE_CURVE('',#2593,#2787,#2965,.T.); +#2965 = SURFACE_CURVE('',#2966,(#2971,#2977),.PCURVE_S1.); +#2966 = CIRCLE('',#2967,1.5E-02); +#2967 = AXIS2_PLACEMENT_3D('',#2968,#2969,#2970); +#2968 = CARTESIAN_POINT('',(-0.785,-0.385,0.285)); +#2969 = DIRECTION('',(-1.,-0.,0.)); +#2970 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#2971 = PCURVE('',#2608,#2972); +#2972 = DEFINITIONAL_REPRESENTATION('',(#2973),#2976); +#2973 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2974,#2975),.UNSPECIFIED.,.F., + .F.,(2,2),(0.,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); +#2974 = CARTESIAN_POINT('',(0.,-1.5E-02)); +#2975 = CARTESIAN_POINT('',(1.570796326795,-1.5E-02)); +#2976 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2977 = PCURVE('',#2978,#2983); +#2978 = SPHERICAL_SURFACE('',#2979,1.5E-02); +#2979 = AXIS2_PLACEMENT_3D('',#2980,#2981,#2982); +#2980 = CARTESIAN_POINT('',(-0.785,-0.385,0.285)); +#2981 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#2982 = DIRECTION('',(1.,0.,0.)); +#2983 = DEFINITIONAL_REPRESENTATION('',(#2984),#2987); +#2984 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#2985,#2986),.UNSPECIFIED.,.F., + .F.,(2,2),(0.,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); +#2985 = CARTESIAN_POINT('',(4.712388980385,0.)); +#2986 = CARTESIAN_POINT('',(4.712388980385,1.570796326795)); +#2987 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#2988 = ADVANCED_FACE('',(#2989),#2772,.T.); +#2989 = FACE_BOUND('',#2990,.T.); +#2990 = EDGE_LOOP('',(#2991,#2992,#3012,#3013)); +#2991 = ORIENTED_EDGE('',*,*,#2892,.F.); +#2992 = ORIENTED_EDGE('',*,*,#2993,.T.); +#2993 = EDGE_CURVE('',#1667,#2677,#2994,.T.); +#2994 = SURFACE_CURVE('',#2995,(#3000,#3006),.PCURVE_S1.); +#2995 = CIRCLE('',#2996,1.5E-02); +#2996 = AXIS2_PLACEMENT_3D('',#2997,#2998,#2999); +#2997 = CARTESIAN_POINT('',(0.4,-0.385,0.285)); +#2998 = DIRECTION('',(1.,2.470497293978E-32,-1.807003620809E-16)); +#2999 = DIRECTION('',(-1.807003620809E-16,1.367178939504E-16,-1.)); +#3000 = PCURVE('',#2772,#3001); +#3001 = DEFINITIONAL_REPRESENTATION('',(#3002),#3005); +#3002 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3003,#3004),.UNSPECIFIED.,.F., + .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); +#3003 = CARTESIAN_POINT('',(1.570796326795,-1.2)); +#3004 = CARTESIAN_POINT('',(0.,-1.2)); +#3005 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3006 = PCURVE('',#1682,#3007); +#3007 = DEFINITIONAL_REPRESENTATION('',(#3008),#3011); +#3008 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3009,#3010),.UNSPECIFIED.,.F., + .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); +#3009 = CARTESIAN_POINT('',(1.570796326795,-1.2)); +#3010 = CARTESIAN_POINT('',(0.,-1.2)); +#3011 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3012 = ORIENTED_EDGE('',*,*,#2758,.F.); +#3013 = ORIENTED_EDGE('',*,*,#3014,.T.); +#3014 = EDGE_CURVE('',#2732,#2893,#3015,.T.); +#3015 = SURFACE_CURVE('',#3016,(#3021,#3027),.PCURVE_S1.); +#3016 = CIRCLE('',#3017,1.5E-02); +#3017 = AXIS2_PLACEMENT_3D('',#3018,#3019,#3020); +#3018 = CARTESIAN_POINT('',(0.785,-0.385,0.285)); +#3019 = DIRECTION('',(-1.,0.,0.)); +#3020 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#3021 = PCURVE('',#2772,#3022); +#3022 = DEFINITIONAL_REPRESENTATION('',(#3023),#3026); +#3023 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3024,#3025),.UNSPECIFIED.,.F., + .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); +#3024 = CARTESIAN_POINT('',(0.,-1.585)); +#3025 = CARTESIAN_POINT('',(1.570796326795,-1.585)); +#3026 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3027 = PCURVE('',#3028,#3033); +#3028 = SPHERICAL_SURFACE('',#3029,1.5E-02); +#3029 = AXIS2_PLACEMENT_3D('',#3030,#3031,#3032); +#3030 = CARTESIAN_POINT('',(0.785,-0.385,0.285)); +#3031 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#3032 = DIRECTION('',(1.,0.,0.)); +#3033 = DEFINITIONAL_REPRESENTATION('',(#3034),#3037); +#3034 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3035,#3036),.UNSPECIFIED.,.F., + .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); +#3035 = CARTESIAN_POINT('',(4.712388980385,0.)); +#3036 = CARTESIAN_POINT('',(4.712388980385,1.570796326795)); +#3037 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3038 = ADVANCED_FACE('',(#3039),#2660,.T.); +#3039 = FACE_BOUND('',#3040,.T.); +#3040 = EDGE_LOOP('',(#3041,#3070,#3095,#3096)); +#3041 = ORIENTED_EDGE('',*,*,#3042,.F.); +#3042 = EDGE_CURVE('',#3043,#3045,#3047,.T.); +#3043 = VERTEX_POINT('',#3044); +#3044 = CARTESIAN_POINT('',(-0.4,-0.385,-5.263638917091E-17)); +#3045 = VERTEX_POINT('',#3046); +#3046 = CARTESIAN_POINT('',(-0.785,-0.385,-5.263638917091E-17)); +#3047 = SURFACE_CURVE('',#3048,(#3052,#3058),.PCURVE_S1.); +#3048 = LINE('',#3049,#3050); +#3049 = CARTESIAN_POINT('',(-0.8,-0.385,-5.263638917091E-17)); +#3050 = VECTOR('',#3051,1.); +#3051 = DIRECTION('',(-1.,0.,0.)); +#3052 = PCURVE('',#2660,#3053); +#3053 = DEFINITIONAL_REPRESENTATION('',(#3054),#3057); +#3054 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3055,#3056),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.4,-1.5E-02),.PIECEWISE_BEZIER_KNOTS.); +#3055 = CARTESIAN_POINT('',(4.712388980385,0.4)); +#3056 = CARTESIAN_POINT('',(4.712388980385,1.5E-02)); +#3057 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3058 = PCURVE('',#3059,#3064); +#3059 = PLANE('',#3060); +#3060 = AXIS2_PLACEMENT_3D('',#3061,#3062,#3063); +#3061 = CARTESIAN_POINT('',(-0.8,-0.4,-5.468715758017E-17)); +#3062 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#3063 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#3064 = DEFINITIONAL_REPRESENTATION('',(#3065),#3069); +#3065 = LINE('',#3066,#3067); +#3066 = CARTESIAN_POINT('',(-1.5E-02,0.)); +#3067 = VECTOR('',#3068,1.); +#3068 = DIRECTION('',(-0.,-1.)); +#3069 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3070 = ORIENTED_EDGE('',*,*,#3071,.T.); +#3071 = EDGE_CURVE('',#3043,#2560,#3072,.T.); +#3072 = SURFACE_CURVE('',#3073,(#3078,#3084),.PCURVE_S1.); +#3073 = CIRCLE('',#3074,1.5E-02); +#3074 = AXIS2_PLACEMENT_3D('',#3075,#3076,#3077); +#3075 = CARTESIAN_POINT('',(-0.4,-0.385,1.5E-02)); +#3076 = DIRECTION('',(-1.,2.470497293978E-32,-1.807003620809E-16)); +#3077 = DIRECTION('',(-1.807003620809E-16,-1.367178939504E-16,1.)); +#3078 = PCURVE('',#2660,#3079); +#3079 = DEFINITIONAL_REPRESENTATION('',(#3080),#3083); +#3080 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3081,#3082),.UNSPECIFIED.,.F., + .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); +#3081 = CARTESIAN_POINT('',(4.712388980385,0.4)); +#3082 = CARTESIAN_POINT('',(3.14159265359,0.4)); +#3083 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3084 = PCURVE('',#3085,#3090); +#3085 = CYLINDRICAL_SURFACE('',#3086,1.5E-02); +#3086 = AXIS2_PLACEMENT_3D('',#3087,#3088,#3089); +#3087 = CARTESIAN_POINT('',(-0.8,-0.385,1.5E-02)); +#3088 = DIRECTION('',(1.,0.,0.)); +#3089 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#3090 = DEFINITIONAL_REPRESENTATION('',(#3091),#3094); +#3091 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3092,#3093),.UNSPECIFIED.,.F., + .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); +#3092 = CARTESIAN_POINT('',(4.712388980385,0.4)); +#3093 = CARTESIAN_POINT('',(3.14159265359,0.4)); +#3094 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3095 = ORIENTED_EDGE('',*,*,#2646,.F.); +#3096 = ORIENTED_EDGE('',*,*,#3097,.F.); +#3097 = EDGE_CURVE('',#3045,#2620,#3098,.T.); +#3098 = SURFACE_CURVE('',#3099,(#3104,#3110),.PCURVE_S1.); +#3099 = CIRCLE('',#3100,1.5E-02); +#3100 = AXIS2_PLACEMENT_3D('',#3101,#3102,#3103); +#3101 = CARTESIAN_POINT('',(-0.785,-0.385,1.5E-02)); +#3102 = DIRECTION('',(-1.,-0.,0.)); +#3103 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#3104 = PCURVE('',#2660,#3105); +#3105 = DEFINITIONAL_REPRESENTATION('',(#3106),#3109); +#3106 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3107,#3108),.UNSPECIFIED.,.F., + .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); +#3107 = CARTESIAN_POINT('',(4.712388980385,1.5E-02)); +#3108 = CARTESIAN_POINT('',(3.14159265359,1.5E-02)); +#3109 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3110 = PCURVE('',#3111,#3116); +#3111 = SPHERICAL_SURFACE('',#3112,1.5E-02); +#3112 = AXIS2_PLACEMENT_3D('',#3113,#3114,#3115); +#3113 = CARTESIAN_POINT('',(-0.785,-0.385,1.5E-02)); +#3114 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#3115 = DIRECTION('',(1.,0.,0.)); +#3116 = DEFINITIONAL_REPRESENTATION('',(#3117),#3120); +#3117 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3118,#3119),.UNSPECIFIED.,.F., + .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); +#3118 = CARTESIAN_POINT('',(4.712388980385,-1.570796326795)); +#3119 = CARTESIAN_POINT('',(4.712388980385,0.)); +#3120 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3121 = ADVANCED_FACE('',(#3122),#2720,.T.); +#3122 = FACE_BOUND('',#3123,.T.); +#3123 = EDGE_LOOP('',(#3124,#3125,#3147,#3174)); +#3124 = ORIENTED_EDGE('',*,*,#2704,.F.); +#3125 = ORIENTED_EDGE('',*,*,#3126,.T.); +#3126 = EDGE_CURVE('',#2675,#3127,#3129,.T.); +#3127 = VERTEX_POINT('',#3128); +#3128 = CARTESIAN_POINT('',(0.4,-0.385,-5.263638917091E-17)); +#3129 = SURFACE_CURVE('',#3130,(#3135,#3141),.PCURVE_S1.); +#3130 = CIRCLE('',#3131,1.5E-02); +#3131 = AXIS2_PLACEMENT_3D('',#3132,#3133,#3134); +#3132 = CARTESIAN_POINT('',(0.4,-0.385,1.5E-02)); +#3133 = DIRECTION('',(1.,2.470497293978E-32,-1.807003620809E-16)); +#3134 = DIRECTION('',(-1.807003620809E-16,1.367178939504E-16,-1.)); +#3135 = PCURVE('',#2720,#3136); +#3136 = DEFINITIONAL_REPRESENTATION('',(#3137),#3140); +#3137 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3138,#3139),.UNSPECIFIED.,.F., + .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); +#3138 = CARTESIAN_POINT('',(3.14159265359,1.2)); +#3139 = CARTESIAN_POINT('',(4.712388980385,1.2)); +#3140 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3141 = PCURVE('',#3085,#3142); +#3142 = DEFINITIONAL_REPRESENTATION('',(#3143),#3146); +#3143 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3144,#3145),.UNSPECIFIED.,.F., + .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); +#3144 = CARTESIAN_POINT('',(3.14159265359,1.2)); +#3145 = CARTESIAN_POINT('',(4.712388980385,1.2)); +#3146 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3147 = ORIENTED_EDGE('',*,*,#3148,.F.); +#3148 = EDGE_CURVE('',#3149,#3127,#3151,.T.); +#3149 = VERTEX_POINT('',#3150); +#3150 = CARTESIAN_POINT('',(0.785,-0.385,-5.263638917091E-17)); +#3151 = SURFACE_CURVE('',#3152,(#3156,#3162),.PCURVE_S1.); +#3152 = LINE('',#3153,#3154); +#3153 = CARTESIAN_POINT('',(-0.8,-0.385,-5.263638917091E-17)); +#3154 = VECTOR('',#3155,1.); +#3155 = DIRECTION('',(-1.,0.,0.)); +#3156 = PCURVE('',#2720,#3157); +#3157 = DEFINITIONAL_REPRESENTATION('',(#3158),#3161); +#3158 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3159,#3160),.UNSPECIFIED.,.F., + .F.,(2,2),(-1.585,-1.2),.PIECEWISE_BEZIER_KNOTS.); +#3159 = CARTESIAN_POINT('',(4.712388980385,1.585)); +#3160 = CARTESIAN_POINT('',(4.712388980385,1.2)); +#3161 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3162 = PCURVE('',#3163,#3168); +#3163 = PLANE('',#3164); +#3164 = AXIS2_PLACEMENT_3D('',#3165,#3166,#3167); +#3165 = CARTESIAN_POINT('',(-0.8,-0.4,-5.468715758017E-17)); +#3166 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#3167 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#3168 = DEFINITIONAL_REPRESENTATION('',(#3169),#3173); +#3169 = LINE('',#3170,#3171); +#3170 = CARTESIAN_POINT('',(-1.5E-02,0.)); +#3171 = VECTOR('',#3172,1.); +#3172 = DIRECTION('',(-0.,-1.)); +#3173 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3174 = ORIENTED_EDGE('',*,*,#3175,.T.); +#3175 = EDGE_CURVE('',#3149,#2705,#3176,.T.); +#3176 = SURFACE_CURVE('',#3177,(#3182,#3188),.PCURVE_S1.); +#3177 = CIRCLE('',#3178,1.5E-02); +#3178 = AXIS2_PLACEMENT_3D('',#3179,#3180,#3181); +#3179 = CARTESIAN_POINT('',(0.785,-0.385,1.5E-02)); +#3180 = DIRECTION('',(-1.,0.,0.)); +#3181 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#3182 = PCURVE('',#2720,#3183); +#3183 = DEFINITIONAL_REPRESENTATION('',(#3184),#3187); +#3184 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3185,#3186),.UNSPECIFIED.,.F., + .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); +#3185 = CARTESIAN_POINT('',(4.712388980385,1.585)); +#3186 = CARTESIAN_POINT('',(3.14159265359,1.585)); +#3187 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3188 = PCURVE('',#3189,#3194); +#3189 = SPHERICAL_SURFACE('',#3190,1.5E-02); +#3190 = AXIS2_PLACEMENT_3D('',#3191,#3192,#3193); +#3191 = CARTESIAN_POINT('',(0.785,-0.385,1.5E-02)); +#3192 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#3193 = DIRECTION('',(1.,0.,0.)); +#3194 = DEFINITIONAL_REPRESENTATION('',(#3195),#3198); +#3195 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3196,#3197),.UNSPECIFIED.,.F., + .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); +#3196 = CARTESIAN_POINT('',(4.712388980385,-1.570796326795)); +#3197 = CARTESIAN_POINT('',(4.712388980385,0.)); +#3198 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3199 = ADVANCED_FACE('',(#3200),#3214,.T.); +#3200 = FACE_BOUND('',#3201,.T.); +#3201 = EDGE_LOOP('',(#3202,#3236,#3263,#3285)); +#3202 = ORIENTED_EDGE('',*,*,#3203,.F.); +#3203 = EDGE_CURVE('',#3204,#3206,#3208,.T.); +#3204 = VERTEX_POINT('',#3205); +#3205 = CARTESIAN_POINT('',(-0.4,0.4,1.5E-02)); +#3206 = VERTEX_POINT('',#3207); +#3207 = CARTESIAN_POINT('',(-0.785,0.4,1.5E-02)); +#3208 = SURFACE_CURVE('',#3209,(#3213,#3224),.PCURVE_S1.); +#3209 = LINE('',#3210,#3211); +#3210 = CARTESIAN_POINT('',(-0.8,0.4,1.5E-02)); +#3211 = VECTOR('',#3212,1.); +#3212 = DIRECTION('',(-1.,-0.,0.)); +#3213 = PCURVE('',#3214,#3219); +#3214 = CYLINDRICAL_SURFACE('',#3215,1.5E-02); +#3215 = AXIS2_PLACEMENT_3D('',#3216,#3217,#3218); +#3216 = CARTESIAN_POINT('',(-0.8,0.385,1.5E-02)); +#3217 = DIRECTION('',(-1.,-0.,0.)); +#3218 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#3219 = DEFINITIONAL_REPRESENTATION('',(#3220),#3223); +#3220 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3221,#3222),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.4,-1.5E-02),.PIECEWISE_BEZIER_KNOTS.); +#3221 = CARTESIAN_POINT('',(3.14159265359,-0.4)); +#3222 = CARTESIAN_POINT('',(3.14159265359,-1.5E-02)); +#3223 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3224 = PCURVE('',#3225,#3230); +#3225 = PLANE('',#3226); +#3226 = AXIS2_PLACEMENT_3D('',#3227,#3228,#3229); +#3227 = CARTESIAN_POINT('',(-0.8,0.4,0.3)); +#3228 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#3229 = DIRECTION('',(1.,0.,0.)); +#3230 = DEFINITIONAL_REPRESENTATION('',(#3231),#3235); +#3231 = LINE('',#3232,#3233); +#3232 = CARTESIAN_POINT('',(0.,-0.285)); +#3233 = VECTOR('',#3234,1.); +#3234 = DIRECTION('',(-1.,0.)); +#3235 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3236 = ORIENTED_EDGE('',*,*,#3237,.T.); +#3237 = EDGE_CURVE('',#3204,#3238,#3240,.T.); +#3238 = VERTEX_POINT('',#3239); +#3239 = CARTESIAN_POINT('',(-0.4,0.385,5.263638917091E-17)); +#3240 = SURFACE_CURVE('',#3241,(#3246,#3252),.PCURVE_S1.); +#3241 = CIRCLE('',#3242,1.5E-02); +#3242 = AXIS2_PLACEMENT_3D('',#3243,#3244,#3245); +#3243 = CARTESIAN_POINT('',(-0.4,0.385,1.5E-02)); +#3244 = DIRECTION('',(-1.,2.470497293978E-32,-1.807003620809E-16)); +#3245 = DIRECTION('',(-1.807003620809E-16,-1.367178939504E-16,1.)); +#3246 = PCURVE('',#3214,#3247); +#3247 = DEFINITIONAL_REPRESENTATION('',(#3248),#3251); +#3248 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3249,#3250),.UNSPECIFIED.,.F., + .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); +#3249 = CARTESIAN_POINT('',(3.14159265359,-0.4)); +#3250 = CARTESIAN_POINT('',(4.712388980385,-0.4)); +#3251 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3252 = PCURVE('',#3253,#3258); +#3253 = CYLINDRICAL_SURFACE('',#3254,1.5E-02); +#3254 = AXIS2_PLACEMENT_3D('',#3255,#3256,#3257); +#3255 = CARTESIAN_POINT('',(-0.8,0.385,1.5E-02)); +#3256 = DIRECTION('',(-1.,-0.,0.)); +#3257 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#3258 = DEFINITIONAL_REPRESENTATION('',(#3259),#3262); +#3259 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3260,#3261),.UNSPECIFIED.,.F., + .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); +#3260 = CARTESIAN_POINT('',(3.14159265359,-0.4)); +#3261 = CARTESIAN_POINT('',(4.712388980385,-0.4)); +#3262 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3263 = ORIENTED_EDGE('',*,*,#3264,.F.); +#3264 = EDGE_CURVE('',#3265,#3238,#3267,.T.); +#3265 = VERTEX_POINT('',#3266); +#3266 = CARTESIAN_POINT('',(-0.785,0.385,5.263638917091E-17)); +#3267 = SURFACE_CURVE('',#3268,(#3272,#3278),.PCURVE_S1.); +#3268 = LINE('',#3269,#3270); +#3269 = CARTESIAN_POINT('',(-0.8,0.385,5.263638917091E-17)); +#3270 = VECTOR('',#3271,1.); +#3271 = DIRECTION('',(1.,0.,0.)); +#3272 = PCURVE('',#3214,#3273); +#3273 = DEFINITIONAL_REPRESENTATION('',(#3274),#3277); +#3274 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3275,#3276),.UNSPECIFIED.,.F., + .F.,(2,2),(1.5E-02,0.4),.PIECEWISE_BEZIER_KNOTS.); +#3275 = CARTESIAN_POINT('',(4.712388980385,-1.5E-02)); +#3276 = CARTESIAN_POINT('',(4.712388980385,-0.4)); +#3277 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3278 = PCURVE('',#3059,#3279); +#3279 = DEFINITIONAL_REPRESENTATION('',(#3280),#3284); +#3280 = LINE('',#3281,#3282); +#3281 = CARTESIAN_POINT('',(-0.785,0.)); +#3282 = VECTOR('',#3283,1.); +#3283 = DIRECTION('',(0.,1.)); +#3284 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3285 = ORIENTED_EDGE('',*,*,#3286,.F.); +#3286 = EDGE_CURVE('',#3206,#3265,#3287,.T.); +#3287 = SURFACE_CURVE('',#3288,(#3293,#3299),.PCURVE_S1.); +#3288 = CIRCLE('',#3289,1.5E-02); +#3289 = AXIS2_PLACEMENT_3D('',#3290,#3291,#3292); +#3290 = CARTESIAN_POINT('',(-0.785,0.385,1.5E-02)); +#3291 = DIRECTION('',(-1.,-0.,0.)); +#3292 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#3293 = PCURVE('',#3214,#3294); +#3294 = DEFINITIONAL_REPRESENTATION('',(#3295),#3298); +#3295 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3296,#3297),.UNSPECIFIED.,.F., + .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); +#3296 = CARTESIAN_POINT('',(3.14159265359,-1.5E-02)); +#3297 = CARTESIAN_POINT('',(4.712388980385,-1.5E-02)); +#3298 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3299 = PCURVE('',#3300,#3305); +#3300 = SPHERICAL_SURFACE('',#3301,1.5E-02); +#3301 = AXIS2_PLACEMENT_3D('',#3302,#3303,#3304); +#3302 = CARTESIAN_POINT('',(-0.785,0.385,1.5E-02)); +#3303 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#3304 = DIRECTION('',(1.,0.,0.)); +#3305 = DEFINITIONAL_REPRESENTATION('',(#3306),#3309); +#3306 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3307,#3308),.UNSPECIFIED.,.F., + .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); +#3307 = CARTESIAN_POINT('',(1.570796326795,0.)); +#3308 = CARTESIAN_POINT('',(1.570796326795,-1.570796326795)); +#3309 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3310 = ADVANCED_FACE('',(#3311),#3325,.T.); +#3311 = FACE_BOUND('',#3312,.T.); +#3312 = EDGE_LOOP('',(#3313,#3342,#3364,#3391)); +#3313 = ORIENTED_EDGE('',*,*,#3314,.F.); +#3314 = EDGE_CURVE('',#3315,#3317,#3319,.T.); +#3315 = VERTEX_POINT('',#3316); +#3316 = CARTESIAN_POINT('',(0.4,0.385,5.263638917091E-17)); +#3317 = VERTEX_POINT('',#3318); +#3318 = CARTESIAN_POINT('',(0.785,0.385,5.263638917091E-17)); +#3319 = SURFACE_CURVE('',#3320,(#3324,#3335),.PCURVE_S1.); +#3320 = LINE('',#3321,#3322); +#3321 = CARTESIAN_POINT('',(-0.8,0.385,5.263638917091E-17)); +#3322 = VECTOR('',#3323,1.); +#3323 = DIRECTION('',(1.,0.,0.)); +#3324 = PCURVE('',#3325,#3330); +#3325 = CYLINDRICAL_SURFACE('',#3326,1.5E-02); +#3326 = AXIS2_PLACEMENT_3D('',#3327,#3328,#3329); +#3327 = CARTESIAN_POINT('',(-0.8,0.385,1.5E-02)); +#3328 = DIRECTION('',(-1.,-0.,0.)); +#3329 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#3330 = DEFINITIONAL_REPRESENTATION('',(#3331),#3334); +#3331 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3332,#3333),.UNSPECIFIED.,.F., + .F.,(2,2),(1.2,1.585),.PIECEWISE_BEZIER_KNOTS.); +#3332 = CARTESIAN_POINT('',(4.712388980385,-1.2)); +#3333 = CARTESIAN_POINT('',(4.712388980385,-1.585)); +#3334 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3335 = PCURVE('',#3163,#3336); +#3336 = DEFINITIONAL_REPRESENTATION('',(#3337),#3341); +#3337 = LINE('',#3338,#3339); +#3338 = CARTESIAN_POINT('',(-0.785,0.)); +#3339 = VECTOR('',#3340,1.); +#3340 = DIRECTION('',(0.,1.)); +#3341 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3342 = ORIENTED_EDGE('',*,*,#3343,.T.); +#3343 = EDGE_CURVE('',#3315,#3344,#3346,.T.); +#3344 = VERTEX_POINT('',#3345); +#3345 = CARTESIAN_POINT('',(0.4,0.4,1.5E-02)); +#3346 = SURFACE_CURVE('',#3347,(#3352,#3358),.PCURVE_S1.); +#3347 = CIRCLE('',#3348,1.5E-02); +#3348 = AXIS2_PLACEMENT_3D('',#3349,#3350,#3351); +#3349 = CARTESIAN_POINT('',(0.4,0.385,1.5E-02)); +#3350 = DIRECTION('',(1.,2.470497293978E-32,-1.807003620809E-16)); +#3351 = DIRECTION('',(-1.807003620809E-16,1.367178939504E-16,-1.)); +#3352 = PCURVE('',#3325,#3353); +#3353 = DEFINITIONAL_REPRESENTATION('',(#3354),#3357); +#3354 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3355,#3356),.UNSPECIFIED.,.F., + .F.,(2,2),(0.,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); +#3355 = CARTESIAN_POINT('',(4.712388980385,-1.2)); +#3356 = CARTESIAN_POINT('',(3.14159265359,-1.2)); +#3357 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3358 = PCURVE('',#3253,#3359); +#3359 = DEFINITIONAL_REPRESENTATION('',(#3360),#3363); +#3360 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3361,#3362),.UNSPECIFIED.,.F., + .F.,(2,2),(0.,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); +#3361 = CARTESIAN_POINT('',(4.712388980385,-1.2)); +#3362 = CARTESIAN_POINT('',(3.14159265359,-1.2)); +#3363 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3364 = ORIENTED_EDGE('',*,*,#3365,.F.); +#3365 = EDGE_CURVE('',#3366,#3344,#3368,.T.); +#3366 = VERTEX_POINT('',#3367); +#3367 = CARTESIAN_POINT('',(0.785,0.4,1.5E-02)); +#3368 = SURFACE_CURVE('',#3369,(#3373,#3379),.PCURVE_S1.); +#3369 = LINE('',#3370,#3371); +#3370 = CARTESIAN_POINT('',(-0.8,0.4,1.5E-02)); +#3371 = VECTOR('',#3372,1.); +#3372 = DIRECTION('',(-1.,-0.,0.)); +#3373 = PCURVE('',#3325,#3374); +#3374 = DEFINITIONAL_REPRESENTATION('',(#3375),#3378); +#3375 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3376,#3377),.UNSPECIFIED.,.F., + .F.,(2,2),(-1.585,-1.2),.PIECEWISE_BEZIER_KNOTS.); +#3376 = CARTESIAN_POINT('',(3.14159265359,-1.585)); +#3377 = CARTESIAN_POINT('',(3.14159265359,-1.2)); +#3378 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3379 = PCURVE('',#3380,#3385); +#3380 = PLANE('',#3381); +#3381 = AXIS2_PLACEMENT_3D('',#3382,#3383,#3384); +#3382 = CARTESIAN_POINT('',(-0.8,0.4,0.3)); +#3383 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#3384 = DIRECTION('',(1.,0.,0.)); +#3385 = DEFINITIONAL_REPRESENTATION('',(#3386),#3390); +#3386 = LINE('',#3387,#3388); +#3387 = CARTESIAN_POINT('',(0.,-0.285)); +#3388 = VECTOR('',#3389,1.); +#3389 = DIRECTION('',(-1.,0.)); +#3390 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3391 = ORIENTED_EDGE('',*,*,#3392,.T.); +#3392 = EDGE_CURVE('',#3366,#3317,#3393,.T.); +#3393 = SURFACE_CURVE('',#3394,(#3399,#3405),.PCURVE_S1.); +#3394 = CIRCLE('',#3395,1.5E-02); +#3395 = AXIS2_PLACEMENT_3D('',#3396,#3397,#3398); +#3396 = CARTESIAN_POINT('',(0.785,0.385,1.5E-02)); +#3397 = DIRECTION('',(-1.,0.,0.)); +#3398 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#3399 = PCURVE('',#3325,#3400); +#3400 = DEFINITIONAL_REPRESENTATION('',(#3401),#3404); +#3401 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3402,#3403),.UNSPECIFIED.,.F., + .F.,(2,2),(0.,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); +#3402 = CARTESIAN_POINT('',(3.14159265359,-1.585)); +#3403 = CARTESIAN_POINT('',(4.712388980385,-1.585)); +#3404 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3405 = PCURVE('',#3406,#3411); +#3406 = SPHERICAL_SURFACE('',#3407,1.5E-02); +#3407 = AXIS2_PLACEMENT_3D('',#3408,#3409,#3410); +#3408 = CARTESIAN_POINT('',(0.785,0.385,1.5E-02)); +#3409 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#3410 = DIRECTION('',(1.,0.,0.)); +#3411 = DEFINITIONAL_REPRESENTATION('',(#3412),#3415); +#3412 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3413,#3414),.UNSPECIFIED.,.F., + .F.,(2,2),(0.,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); +#3413 = CARTESIAN_POINT('',(1.570796326795,6.938893903907E-16)); +#3414 = CARTESIAN_POINT('',(1.570796326795,-1.570796326795)); +#3415 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3416 = ADVANCED_FACE('',(#3417),#3225,.F.); +#3417 = FACE_BOUND('',#3418,.T.); +#3418 = EDGE_LOOP('',(#3419,#3447,#3448,#3475)); +#3419 = ORIENTED_EDGE('',*,*,#3420,.F.); +#3420 = EDGE_CURVE('',#3204,#3421,#3423,.T.); +#3421 = VERTEX_POINT('',#3422); +#3422 = CARTESIAN_POINT('',(-0.4,0.4,0.285)); +#3423 = SURFACE_CURVE('',#3424,(#3428,#3435),.PCURVE_S1.); +#3424 = LINE('',#3425,#3426); +#3425 = CARTESIAN_POINT('',(-0.4,0.4,0.3)); +#3426 = VECTOR('',#3427,1.); +#3427 = DIRECTION('',(-1.807003620809E-16,-1.367178939504E-16,1.)); +#3428 = PCURVE('',#3225,#3429); +#3429 = DEFINITIONAL_REPRESENTATION('',(#3430),#3434); +#3430 = LINE('',#3431,#3432); +#3431 = CARTESIAN_POINT('',(0.4,5.551115123126E-17)); +#3432 = VECTOR('',#3433,1.); +#3433 = DIRECTION('',(-1.807003620809E-16,1.)); +#3434 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3435 = PCURVE('',#3436,#3441); +#3436 = PLANE('',#3437); +#3437 = AXIS2_PLACEMENT_3D('',#3438,#3439,#3440); +#3438 = CARTESIAN_POINT('',(-0.8,0.4,0.3)); +#3439 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#3440 = DIRECTION('',(1.,0.,0.)); +#3441 = DEFINITIONAL_REPRESENTATION('',(#3442),#3446); +#3442 = LINE('',#3443,#3444); +#3443 = CARTESIAN_POINT('',(0.4,5.551115123126E-17)); +#3444 = VECTOR('',#3445,1.); +#3445 = DIRECTION('',(-1.807003620809E-16,1.)); +#3446 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3447 = ORIENTED_EDGE('',*,*,#3203,.T.); +#3448 = ORIENTED_EDGE('',*,*,#3449,.T.); +#3449 = EDGE_CURVE('',#3206,#3450,#3452,.T.); +#3450 = VERTEX_POINT('',#3451); +#3451 = CARTESIAN_POINT('',(-0.785,0.4,0.285)); +#3452 = SURFACE_CURVE('',#3453,(#3457,#3464),.PCURVE_S1.); +#3453 = LINE('',#3454,#3455); +#3454 = CARTESIAN_POINT('',(-0.785,0.4,0.3)); +#3455 = VECTOR('',#3456,1.); +#3456 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#3457 = PCURVE('',#3225,#3458); +#3458 = DEFINITIONAL_REPRESENTATION('',(#3459),#3463); +#3459 = LINE('',#3460,#3461); +#3460 = CARTESIAN_POINT('',(1.5E-02,0.)); +#3461 = VECTOR('',#3462,1.); +#3462 = DIRECTION('',(0.,1.)); +#3463 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3464 = PCURVE('',#3465,#3470); +#3465 = CYLINDRICAL_SURFACE('',#3466,1.5E-02); +#3466 = AXIS2_PLACEMENT_3D('',#3467,#3468,#3469); +#3467 = CARTESIAN_POINT('',(-0.785,0.385,0.3)); +#3468 = DIRECTION('',(0.,1.367178939504E-16,-1.)); +#3469 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#3470 = DEFINITIONAL_REPRESENTATION('',(#3471),#3474); +#3471 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3472,#3473),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.285,-1.5E-02),.PIECEWISE_BEZIER_KNOTS.); +#3472 = CARTESIAN_POINT('',(6.28318530718,0.285)); +#3473 = CARTESIAN_POINT('',(6.28318530718,1.5E-02)); +#3474 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3475 = ORIENTED_EDGE('',*,*,#3476,.T.); +#3476 = EDGE_CURVE('',#3450,#3421,#3477,.T.); +#3477 = SURFACE_CURVE('',#3478,(#3482,#3489),.PCURVE_S1.); +#3478 = LINE('',#3479,#3480); +#3479 = CARTESIAN_POINT('',(0.8,0.4,0.285)); +#3480 = VECTOR('',#3481,1.); +#3481 = DIRECTION('',(1.,0.,0.)); +#3482 = PCURVE('',#3225,#3483); +#3483 = DEFINITIONAL_REPRESENTATION('',(#3484),#3488); +#3484 = LINE('',#3485,#3486); +#3485 = CARTESIAN_POINT('',(1.6,-1.5E-02)); +#3486 = VECTOR('',#3487,1.); +#3487 = DIRECTION('',(1.,0.)); +#3488 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3489 = PCURVE('',#2825,#3490); +#3490 = DEFINITIONAL_REPRESENTATION('',(#3491),#3494); +#3491 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3492,#3493),.UNSPECIFIED.,.F., + .F.,(2,2),(-1.585,-1.2),.PIECEWISE_BEZIER_KNOTS.); +#3492 = CARTESIAN_POINT('',(0.,1.5E-02)); +#3493 = CARTESIAN_POINT('',(0.,0.4)); +#3494 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3495 = ADVANCED_FACE('',(#3496),#3380,.F.); +#3496 = FACE_BOUND('',#3497,.T.); +#3497 = EDGE_LOOP('',(#3498,#3521,#3543,#3568)); +#3498 = ORIENTED_EDGE('',*,*,#3499,.F.); +#3499 = EDGE_CURVE('',#3500,#3344,#3502,.T.); +#3500 = VERTEX_POINT('',#3501); +#3501 = CARTESIAN_POINT('',(0.4,0.4,0.285)); +#3502 = SURFACE_CURVE('',#3503,(#3507,#3514),.PCURVE_S1.); +#3503 = LINE('',#3504,#3505); +#3504 = CARTESIAN_POINT('',(0.4,0.4,0.3)); +#3505 = VECTOR('',#3506,1.); +#3506 = DIRECTION('',(-1.807003620809E-16,1.367178939504E-16,-1.)); +#3507 = PCURVE('',#3380,#3508); +#3508 = DEFINITIONAL_REPRESENTATION('',(#3509),#3513); +#3509 = LINE('',#3510,#3511); +#3510 = CARTESIAN_POINT('',(1.2,-2.22044604925E-16)); +#3511 = VECTOR('',#3512,1.); +#3512 = DIRECTION('',(-1.807003620809E-16,-1.)); +#3513 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3514 = PCURVE('',#3436,#3515); +#3515 = DEFINITIONAL_REPRESENTATION('',(#3516),#3520); +#3516 = LINE('',#3517,#3518); +#3517 = CARTESIAN_POINT('',(1.2,-2.22044604925E-16)); +#3518 = VECTOR('',#3519,1.); +#3519 = DIRECTION('',(-1.807003620809E-16,-1.)); +#3520 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3521 = ORIENTED_EDGE('',*,*,#3522,.T.); +#3522 = EDGE_CURVE('',#3500,#3523,#3525,.T.); +#3523 = VERTEX_POINT('',#3524); +#3524 = CARTESIAN_POINT('',(0.785,0.4,0.285)); +#3525 = SURFACE_CURVE('',#3526,(#3530,#3537),.PCURVE_S1.); +#3526 = LINE('',#3527,#3528); +#3527 = CARTESIAN_POINT('',(0.8,0.4,0.285)); +#3528 = VECTOR('',#3529,1.); +#3529 = DIRECTION('',(1.,0.,0.)); +#3530 = PCURVE('',#3380,#3531); +#3531 = DEFINITIONAL_REPRESENTATION('',(#3532),#3536); +#3532 = LINE('',#3533,#3534); +#3533 = CARTESIAN_POINT('',(1.6,-1.5E-02)); +#3534 = VECTOR('',#3535,1.); +#3535 = DIRECTION('',(1.,0.)); +#3536 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3537 = PCURVE('',#2880,#3538); +#3538 = DEFINITIONAL_REPRESENTATION('',(#3539),#3542); +#3539 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3540,#3541),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.4,-1.5E-02),.PIECEWISE_BEZIER_KNOTS.); +#3540 = CARTESIAN_POINT('',(0.,1.2)); +#3541 = CARTESIAN_POINT('',(0.,1.585)); +#3542 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3543 = ORIENTED_EDGE('',*,*,#3544,.T.); +#3544 = EDGE_CURVE('',#3523,#3366,#3545,.T.); +#3545 = SURFACE_CURVE('',#3546,(#3550,#3557),.PCURVE_S1.); +#3546 = LINE('',#3547,#3548); +#3547 = CARTESIAN_POINT('',(0.785,0.4,0.3)); +#3548 = VECTOR('',#3549,1.); +#3549 = DIRECTION('',(0.,1.367178939504E-16,-1.)); +#3550 = PCURVE('',#3380,#3551); +#3551 = DEFINITIONAL_REPRESENTATION('',(#3552),#3556); +#3552 = LINE('',#3553,#3554); +#3553 = CARTESIAN_POINT('',(1.585,0.)); +#3554 = VECTOR('',#3555,1.); +#3555 = DIRECTION('',(0.,-1.)); +#3556 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3557 = PCURVE('',#3558,#3563); +#3558 = CYLINDRICAL_SURFACE('',#3559,1.5E-02); +#3559 = AXIS2_PLACEMENT_3D('',#3560,#3561,#3562); +#3560 = CARTESIAN_POINT('',(0.785,0.385,0.3)); +#3561 = DIRECTION('',(0.,1.367178939504E-16,-1.)); +#3562 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#3563 = DEFINITIONAL_REPRESENTATION('',(#3564),#3567); +#3564 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3565,#3566),.UNSPECIFIED.,.F., + .F.,(2,2),(1.5E-02,0.285),.PIECEWISE_BEZIER_KNOTS.); +#3565 = CARTESIAN_POINT('',(0.,1.5E-02)); +#3566 = CARTESIAN_POINT('',(0.,0.285)); +#3567 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3568 = ORIENTED_EDGE('',*,*,#3365,.T.); +#3569 = ADVANCED_FACE('',(#3570),#3059,.F.); +#3570 = FACE_BOUND('',#3571,.T.); +#3571 = EDGE_LOOP('',(#3572,#3598,#3599,#3624)); +#3572 = ORIENTED_EDGE('',*,*,#3573,.F.); +#3573 = EDGE_CURVE('',#3043,#3238,#3574,.T.); +#3574 = SURFACE_CURVE('',#3575,(#3579,#3586),.PCURVE_S1.); +#3575 = LINE('',#3576,#3577); +#3576 = CARTESIAN_POINT('',(-0.4,-0.4,-5.468715758017E-17)); +#3577 = VECTOR('',#3578,1.); +#3578 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#3579 = PCURVE('',#3059,#3580); +#3580 = DEFINITIONAL_REPRESENTATION('',(#3581),#3585); +#3581 = LINE('',#3582,#3583); +#3582 = CARTESIAN_POINT('',(0.,0.4)); +#3583 = VECTOR('',#3584,1.); +#3584 = DIRECTION('',(-1.,0.)); +#3585 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3586 = PCURVE('',#3587,#3592); +#3587 = PLANE('',#3588); +#3588 = AXIS2_PLACEMENT_3D('',#3589,#3590,#3591); +#3589 = CARTESIAN_POINT('',(-0.8,-0.4,-5.468715758017E-17)); +#3590 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#3591 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#3592 = DEFINITIONAL_REPRESENTATION('',(#3593),#3597); +#3593 = LINE('',#3594,#3595); +#3594 = CARTESIAN_POINT('',(0.,0.4)); +#3595 = VECTOR('',#3596,1.); +#3596 = DIRECTION('',(-1.,0.)); +#3597 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3598 = ORIENTED_EDGE('',*,*,#3042,.T.); +#3599 = ORIENTED_EDGE('',*,*,#3600,.T.); +#3600 = EDGE_CURVE('',#3045,#3265,#3601,.T.); +#3601 = SURFACE_CURVE('',#3602,(#3606,#3613),.PCURVE_S1.); +#3602 = LINE('',#3603,#3604); +#3603 = CARTESIAN_POINT('',(-0.785,-0.4,-5.468715758017E-17)); +#3604 = VECTOR('',#3605,1.); +#3605 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#3606 = PCURVE('',#3059,#3607); +#3607 = DEFINITIONAL_REPRESENTATION('',(#3608),#3612); +#3608 = LINE('',#3609,#3610); +#3609 = CARTESIAN_POINT('',(0.,1.5E-02)); +#3610 = VECTOR('',#3611,1.); +#3611 = DIRECTION('',(-1.,0.)); +#3612 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3613 = PCURVE('',#3614,#3619); +#3614 = CYLINDRICAL_SURFACE('',#3615,1.5E-02); +#3615 = AXIS2_PLACEMENT_3D('',#3616,#3617,#3618); +#3616 = CARTESIAN_POINT('',(-0.785,0.4,1.5E-02)); +#3617 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#3618 = DIRECTION('',(1.,0.,0.)); +#3619 = DEFINITIONAL_REPRESENTATION('',(#3620),#3623); +#3620 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3621,#3622),.UNSPECIFIED.,.F., + .F.,(2,2),(1.5E-02,0.785),.PIECEWISE_BEZIER_KNOTS.); +#3621 = CARTESIAN_POINT('',(4.712388980385,0.785)); +#3622 = CARTESIAN_POINT('',(4.712388980385,1.5E-02)); +#3623 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3624 = ORIENTED_EDGE('',*,*,#3264,.T.); +#3625 = ADVANCED_FACE('',(#3626),#3163,.F.); +#3626 = FACE_BOUND('',#3627,.T.); +#3627 = EDGE_LOOP('',(#3628,#3649,#3650,#3675)); +#3628 = ORIENTED_EDGE('',*,*,#3629,.F.); +#3629 = EDGE_CURVE('',#3315,#3127,#3630,.T.); +#3630 = SURFACE_CURVE('',#3631,(#3635,#3642),.PCURVE_S1.); +#3631 = LINE('',#3632,#3633); +#3632 = CARTESIAN_POINT('',(0.4,-0.4,-5.468715758017E-17)); +#3633 = VECTOR('',#3634,1.); +#3634 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#3635 = PCURVE('',#3163,#3636); +#3636 = DEFINITIONAL_REPRESENTATION('',(#3637),#3641); +#3637 = LINE('',#3638,#3639); +#3638 = CARTESIAN_POINT('',(0.,1.2)); +#3639 = VECTOR('',#3640,1.); +#3640 = DIRECTION('',(1.,0.)); +#3641 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3642 = PCURVE('',#3587,#3643); +#3643 = DEFINITIONAL_REPRESENTATION('',(#3644),#3648); +#3644 = LINE('',#3645,#3646); +#3645 = CARTESIAN_POINT('',(0.,1.2)); +#3646 = VECTOR('',#3647,1.); +#3647 = DIRECTION('',(1.,0.)); +#3648 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3649 = ORIENTED_EDGE('',*,*,#3314,.T.); +#3650 = ORIENTED_EDGE('',*,*,#3651,.T.); +#3651 = EDGE_CURVE('',#3317,#3149,#3652,.T.); +#3652 = SURFACE_CURVE('',#3653,(#3657,#3664),.PCURVE_S1.); +#3653 = LINE('',#3654,#3655); +#3654 = CARTESIAN_POINT('',(0.785,-0.4,-5.468715758017E-17)); +#3655 = VECTOR('',#3656,1.); +#3656 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#3657 = PCURVE('',#3163,#3658); +#3658 = DEFINITIONAL_REPRESENTATION('',(#3659),#3663); +#3659 = LINE('',#3660,#3661); +#3660 = CARTESIAN_POINT('',(0.,1.585)); +#3661 = VECTOR('',#3662,1.); +#3662 = DIRECTION('',(1.,0.)); +#3663 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3664 = PCURVE('',#3665,#3670); +#3665 = CYLINDRICAL_SURFACE('',#3666,1.5E-02); +#3666 = AXIS2_PLACEMENT_3D('',#3667,#3668,#3669); +#3667 = CARTESIAN_POINT('',(0.785,0.4,1.5E-02)); +#3668 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#3669 = DIRECTION('',(-1.,-0.,0.)); +#3670 = DEFINITIONAL_REPRESENTATION('',(#3671),#3674); +#3671 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3672,#3673),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.785,-1.5E-02),.PIECEWISE_BEZIER_KNOTS.); +#3672 = CARTESIAN_POINT('',(4.712388980385,-1.5E-02)); +#3673 = CARTESIAN_POINT('',(4.712388980385,-0.785)); +#3674 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3675 = ORIENTED_EDGE('',*,*,#3148,.T.); +#3676 = ADVANCED_FACE('',(#3677),#2825,.T.); +#3677 = FACE_BOUND('',#3678,.T.); +#3678 = EDGE_LOOP('',(#3679,#3680,#3700,#3701)); +#3679 = ORIENTED_EDGE('',*,*,#2809,.F.); +#3680 = ORIENTED_EDGE('',*,*,#3681,.T.); +#3681 = EDGE_CURVE('',#1639,#3421,#3682,.T.); +#3682 = SURFACE_CURVE('',#3683,(#3688,#3694),.PCURVE_S1.); +#3683 = CIRCLE('',#3684,1.5E-02); +#3684 = AXIS2_PLACEMENT_3D('',#3685,#3686,#3687); +#3685 = CARTESIAN_POINT('',(-0.4,0.385,0.285)); +#3686 = DIRECTION('',(-1.,2.470497293978E-32,-1.807003620809E-16)); +#3687 = DIRECTION('',(-1.807003620809E-16,-1.367178939504E-16,1.)); +#3688 = PCURVE('',#2825,#3689); +#3689 = DEFINITIONAL_REPRESENTATION('',(#3690),#3693); +#3690 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3691,#3692),.UNSPECIFIED.,.F., + .F.,(2,2),(0.,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); +#3691 = CARTESIAN_POINT('',(1.570796326795,0.4)); +#3692 = CARTESIAN_POINT('',(0.,0.4)); +#3693 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3694 = PCURVE('',#1735,#3695); +#3695 = DEFINITIONAL_REPRESENTATION('',(#3696),#3699); +#3696 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3697,#3698),.UNSPECIFIED.,.F., + .F.,(2,2),(0.,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); +#3697 = CARTESIAN_POINT('',(1.570796326795,0.4)); +#3698 = CARTESIAN_POINT('',(0.,0.4)); +#3699 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3700 = ORIENTED_EDGE('',*,*,#3476,.F.); +#3701 = ORIENTED_EDGE('',*,*,#3702,.F.); +#3702 = EDGE_CURVE('',#2810,#3450,#3703,.T.); +#3703 = SURFACE_CURVE('',#3704,(#3709,#3715),.PCURVE_S1.); +#3704 = CIRCLE('',#3705,1.5E-02); +#3705 = AXIS2_PLACEMENT_3D('',#3706,#3707,#3708); +#3706 = CARTESIAN_POINT('',(-0.785,0.385,0.285)); +#3707 = DIRECTION('',(-1.,-0.,0.)); +#3708 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#3709 = PCURVE('',#2825,#3710); +#3710 = DEFINITIONAL_REPRESENTATION('',(#3711),#3714); +#3711 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3712,#3713),.UNSPECIFIED.,.F., + .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); +#3712 = CARTESIAN_POINT('',(1.570796326795,1.5E-02)); +#3713 = CARTESIAN_POINT('',(0.,1.5E-02)); +#3714 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3715 = PCURVE('',#3716,#3721); +#3716 = SPHERICAL_SURFACE('',#3717,1.5E-02); +#3717 = AXIS2_PLACEMENT_3D('',#3718,#3719,#3720); +#3718 = CARTESIAN_POINT('',(-0.785,0.385,0.285)); +#3719 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#3720 = DIRECTION('',(1.,0.,0.)); +#3721 = DEFINITIONAL_REPRESENTATION('',(#3722),#3725); +#3722 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3723,#3724),.UNSPECIFIED.,.F., + .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); +#3723 = CARTESIAN_POINT('',(1.570796326795,1.570796326795)); +#3724 = CARTESIAN_POINT('',(1.570796326795,0.)); +#3725 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3726 = ADVANCED_FACE('',(#3727),#2880,.T.); +#3727 = FACE_BOUND('',#3728,.T.); +#3728 = EDGE_LOOP('',(#3729,#3730,#3750,#3751)); +#3729 = ORIENTED_EDGE('',*,*,#3522,.F.); +#3730 = ORIENTED_EDGE('',*,*,#3731,.T.); +#3731 = EDGE_CURVE('',#3500,#1694,#3732,.T.); +#3732 = SURFACE_CURVE('',#3733,(#3738,#3744),.PCURVE_S1.); +#3733 = CIRCLE('',#3734,1.5E-02); +#3734 = AXIS2_PLACEMENT_3D('',#3735,#3736,#3737); +#3735 = CARTESIAN_POINT('',(0.4,0.385,0.285)); +#3736 = DIRECTION('',(1.,2.470497293978E-32,-1.807003620809E-16)); +#3737 = DIRECTION('',(-1.807003620809E-16,1.367178939504E-16,-1.)); +#3738 = PCURVE('',#2880,#3739); +#3739 = DEFINITIONAL_REPRESENTATION('',(#3740),#3743); +#3740 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3741,#3742),.UNSPECIFIED.,.F., + .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); +#3741 = CARTESIAN_POINT('',(0.,1.2)); +#3742 = CARTESIAN_POINT('',(1.570796326795,1.2)); +#3743 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3744 = PCURVE('',#1735,#3745); +#3745 = DEFINITIONAL_REPRESENTATION('',(#3746),#3749); +#3746 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3747,#3748),.UNSPECIFIED.,.F., + .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); +#3747 = CARTESIAN_POINT('',(0.,1.2)); +#3748 = CARTESIAN_POINT('',(1.570796326795,1.2)); +#3749 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3750 = ORIENTED_EDGE('',*,*,#2864,.F.); +#3751 = ORIENTED_EDGE('',*,*,#3752,.T.); +#3752 = EDGE_CURVE('',#2865,#3523,#3753,.T.); +#3753 = SURFACE_CURVE('',#3754,(#3759,#3765),.PCURVE_S1.); +#3754 = CIRCLE('',#3755,1.5E-02); +#3755 = AXIS2_PLACEMENT_3D('',#3756,#3757,#3758); +#3756 = CARTESIAN_POINT('',(0.785,0.385,0.285)); +#3757 = DIRECTION('',(-1.,0.,0.)); +#3758 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#3759 = PCURVE('',#2880,#3760); +#3760 = DEFINITIONAL_REPRESENTATION('',(#3761),#3764); +#3761 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3762,#3763),.UNSPECIFIED.,.F., + .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); +#3762 = CARTESIAN_POINT('',(1.570796326795,1.585)); +#3763 = CARTESIAN_POINT('',(3.552713678801E-15,1.585)); +#3764 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3765 = PCURVE('',#3766,#3771); +#3766 = SPHERICAL_SURFACE('',#3767,1.5E-02); +#3767 = AXIS2_PLACEMENT_3D('',#3768,#3769,#3770); +#3768 = CARTESIAN_POINT('',(0.785,0.385,0.285)); +#3769 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#3770 = DIRECTION('',(1.,0.,0.)); +#3771 = DEFINITIONAL_REPRESENTATION('',(#3772),#3775); +#3772 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3773,#3774),.UNSPECIFIED.,.F., + .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); +#3773 = CARTESIAN_POINT('',(1.570796326795,1.570796326795)); +#3774 = CARTESIAN_POINT('',(1.570796326795,3.552713678801E-15)); +#3775 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3776 = ADVANCED_FACE('',(#3777),#3791,.F.); +#3777 = FACE_BOUND('',#3778,.T.); +#3778 = EDGE_LOOP('',(#3779,#3808,#3830,#3852)); +#3779 = ORIENTED_EDGE('',*,*,#3780,.T.); +#3780 = EDGE_CURVE('',#3781,#3783,#3785,.T.); +#3781 = VERTEX_POINT('',#3782); +#3782 = CARTESIAN_POINT('',(-0.8,-0.385,0.285)); +#3783 = VERTEX_POINT('',#3784); +#3784 = CARTESIAN_POINT('',(-0.8,0.385,0.285)); +#3785 = SURFACE_CURVE('',#3786,(#3790,#3802),.PCURVE_S1.); +#3786 = LINE('',#3787,#3788); +#3787 = CARTESIAN_POINT('',(-0.8,0.4,0.285)); +#3788 = VECTOR('',#3789,1.); +#3789 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#3790 = PCURVE('',#3791,#3796); +#3791 = PLANE('',#3792); +#3792 = AXIS2_PLACEMENT_3D('',#3793,#3794,#3795); +#3793 = CARTESIAN_POINT('',(-0.8,0.4,0.3)); +#3794 = DIRECTION('',(1.,0.,0.)); +#3795 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#3796 = DEFINITIONAL_REPRESENTATION('',(#3797),#3801); +#3797 = LINE('',#3798,#3799); +#3798 = CARTESIAN_POINT('',(-2.050768409256E-18,-1.5E-02)); +#3799 = VECTOR('',#3800,1.); +#3800 = DIRECTION('',(1.,0.)); +#3801 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3802 = PCURVE('',#2850,#3803); +#3803 = DEFINITIONAL_REPRESENTATION('',(#3804),#3807); +#3804 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3805,#3806),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.785,-1.5E-02),.PIECEWISE_BEZIER_KNOTS.); +#3805 = CARTESIAN_POINT('',(0.,1.5E-02)); +#3806 = CARTESIAN_POINT('',(0.,0.785)); +#3807 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3808 = ORIENTED_EDGE('',*,*,#3809,.T.); +#3809 = EDGE_CURVE('',#3783,#3810,#3812,.T.); +#3810 = VERTEX_POINT('',#3811); +#3811 = CARTESIAN_POINT('',(-0.8,0.385,1.5E-02)); +#3812 = SURFACE_CURVE('',#3813,(#3817,#3824),.PCURVE_S1.); +#3813 = LINE('',#3814,#3815); +#3814 = CARTESIAN_POINT('',(-0.8,0.385,0.3)); +#3815 = VECTOR('',#3816,1.); +#3816 = DIRECTION('',(0.,1.367178939504E-16,-1.)); +#3817 = PCURVE('',#3791,#3818); +#3818 = DEFINITIONAL_REPRESENTATION('',(#3819),#3823); +#3819 = LINE('',#3820,#3821); +#3820 = CARTESIAN_POINT('',(-1.5E-02,2.050768409256E-18)); +#3821 = VECTOR('',#3822,1.); +#3822 = DIRECTION('',(0.,-1.)); +#3823 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3824 = PCURVE('',#3465,#3825); +#3825 = DEFINITIONAL_REPRESENTATION('',(#3826),#3829); +#3826 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3827,#3828),.UNSPECIFIED.,.F., + .F.,(2,2),(1.5E-02,0.285),.PIECEWISE_BEZIER_KNOTS.); +#3827 = CARTESIAN_POINT('',(4.712388980385,1.5E-02)); +#3828 = CARTESIAN_POINT('',(4.712388980385,0.285)); +#3829 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3830 = ORIENTED_EDGE('',*,*,#3831,.T.); +#3831 = EDGE_CURVE('',#3810,#3832,#3834,.T.); +#3832 = VERTEX_POINT('',#3833); +#3833 = CARTESIAN_POINT('',(-0.8,-0.385,1.5E-02)); +#3834 = SURFACE_CURVE('',#3835,(#3839,#3846),.PCURVE_S1.); +#3835 = LINE('',#3836,#3837); +#3836 = CARTESIAN_POINT('',(-0.8,0.4,1.5E-02)); +#3837 = VECTOR('',#3838,1.); +#3838 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#3839 = PCURVE('',#3791,#3840); +#3840 = DEFINITIONAL_REPRESENTATION('',(#3841),#3845); +#3841 = LINE('',#3842,#3843); +#3842 = CARTESIAN_POINT('',(1.654655145539E-17,-0.285)); +#3843 = VECTOR('',#3844,1.); +#3844 = DIRECTION('',(-1.,0.)); +#3845 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3846 = PCURVE('',#3614,#3847); +#3847 = DEFINITIONAL_REPRESENTATION('',(#3848),#3851); +#3848 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3849,#3850),.UNSPECIFIED.,.F., + .F.,(2,2),(1.5E-02,0.785),.PIECEWISE_BEZIER_KNOTS.); +#3849 = CARTESIAN_POINT('',(3.14159265359,1.5E-02)); +#3850 = CARTESIAN_POINT('',(3.14159265359,0.785)); +#3851 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3852 = ORIENTED_EDGE('',*,*,#3853,.T.); +#3853 = EDGE_CURVE('',#3832,#3781,#3854,.T.); +#3854 = SURFACE_CURVE('',#3855,(#3859,#3866),.PCURVE_S1.); +#3855 = LINE('',#3856,#3857); +#3856 = CARTESIAN_POINT('',(-0.8,-0.385,0.3)); +#3857 = VECTOR('',#3858,1.); +#3858 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#3859 = PCURVE('',#3791,#3860); +#3860 = DEFINITIONAL_REPRESENTATION('',(#3861),#3865); +#3861 = LINE('',#3862,#3863); +#3862 = CARTESIAN_POINT('',(-0.785,-3.698755711434E-18)); +#3863 = VECTOR('',#3864,1.); +#3864 = DIRECTION('',(0.,1.)); +#3865 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3866 = PCURVE('',#2635,#3867); +#3867 = DEFINITIONAL_REPRESENTATION('',(#3868),#3871); +#3868 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3869,#3870),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.285,-1.5E-02),.PIECEWISE_BEZIER_KNOTS.); +#3869 = CARTESIAN_POINT('',(4.712388980385,0.285)); +#3870 = CARTESIAN_POINT('',(4.712388980385,1.5E-02)); +#3871 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3872 = ADVANCED_FACE('',(#3873),#2580,.F.); +#3873 = FACE_BOUND('',#3874,.T.); +#3874 = EDGE_LOOP('',(#3875,#3895,#3896,#3916)); +#3875 = ORIENTED_EDGE('',*,*,#3876,.T.); +#3876 = EDGE_CURVE('',#2677,#2558,#3877,.T.); +#3877 = SURFACE_CURVE('',#3878,(#3882,#3889),.PCURVE_S1.); +#3878 = LINE('',#3879,#3880); +#3879 = CARTESIAN_POINT('',(-0.8,-0.4,0.285)); +#3880 = VECTOR('',#3881,1.); +#3881 = DIRECTION('',(-1.,0.,0.)); +#3882 = PCURVE('',#2580,#3883); +#3883 = DEFINITIONAL_REPRESENTATION('',(#3884),#3888); +#3884 = LINE('',#3885,#3886); +#3885 = CARTESIAN_POINT('',(0.,-1.5E-02)); +#3886 = VECTOR('',#3887,1.); +#3887 = DIRECTION('',(1.,0.)); +#3888 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3889 = PCURVE('',#1682,#3890); +#3890 = DEFINITIONAL_REPRESENTATION('',(#3891),#3894); +#3891 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3892,#3893),.UNSPECIFIED.,.F., + .F.,(2,2),(-1.2,-0.4),.PIECEWISE_BEZIER_KNOTS.); +#3892 = CARTESIAN_POINT('',(0.,-1.2)); +#3893 = CARTESIAN_POINT('',(0.,-0.4)); +#3894 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3895 = ORIENTED_EDGE('',*,*,#2557,.T.); +#3896 = ORIENTED_EDGE('',*,*,#3897,.T.); +#3897 = EDGE_CURVE('',#2560,#2675,#3898,.T.); +#3898 = SURFACE_CURVE('',#3899,(#3903,#3910),.PCURVE_S1.); +#3899 = LINE('',#3900,#3901); +#3900 = CARTESIAN_POINT('',(-0.8,-0.4,1.5E-02)); +#3901 = VECTOR('',#3902,1.); +#3902 = DIRECTION('',(1.,0.,0.)); +#3903 = PCURVE('',#2580,#3904); +#3904 = DEFINITIONAL_REPRESENTATION('',(#3905),#3909); +#3905 = LINE('',#3906,#3907); +#3906 = CARTESIAN_POINT('',(0.,-0.285)); +#3907 = VECTOR('',#3908,1.); +#3908 = DIRECTION('',(-1.,0.)); +#3909 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3910 = PCURVE('',#3085,#3911); +#3911 = DEFINITIONAL_REPRESENTATION('',(#3912),#3915); +#3912 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3913,#3914),.UNSPECIFIED.,.F., + .F.,(2,2),(0.4,1.2),.PIECEWISE_BEZIER_KNOTS.); +#3913 = CARTESIAN_POINT('',(3.14159265359,0.4)); +#3914 = CARTESIAN_POINT('',(3.14159265359,1.2)); +#3915 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3916 = ORIENTED_EDGE('',*,*,#2674,.T.); +#3917 = ADVANCED_FACE('',(#3918),#3932,.F.); +#3918 = FACE_BOUND('',#3919,.T.); +#3919 = EDGE_LOOP('',(#3920,#3949,#3971,#3993)); +#3920 = ORIENTED_EDGE('',*,*,#3921,.T.); +#3921 = EDGE_CURVE('',#3922,#3924,#3926,.T.); +#3922 = VERTEX_POINT('',#3923); +#3923 = CARTESIAN_POINT('',(0.8,-0.385,0.285)); +#3924 = VERTEX_POINT('',#3925); +#3925 = CARTESIAN_POINT('',(0.8,-0.385,1.5E-02)); +#3926 = SURFACE_CURVE('',#3927,(#3931,#3943),.PCURVE_S1.); +#3927 = LINE('',#3928,#3929); +#3928 = CARTESIAN_POINT('',(0.8,-0.385,0.3)); +#3929 = VECTOR('',#3930,1.); +#3930 = DIRECTION('',(0.,1.367178939504E-16,-1.)); +#3931 = PCURVE('',#3932,#3937); +#3932 = PLANE('',#3933); +#3933 = AXIS2_PLACEMENT_3D('',#3934,#3935,#3936); +#3934 = CARTESIAN_POINT('',(0.8,0.4,0.3)); +#3935 = DIRECTION('',(-1.,-0.,0.)); +#3936 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#3937 = DEFINITIONAL_REPRESENTATION('',(#3938),#3942); +#3938 = LINE('',#3939,#3940); +#3939 = CARTESIAN_POINT('',(0.785,-3.698755711434E-18)); +#3940 = VECTOR('',#3941,1.); +#3941 = DIRECTION('',(0.,-1.)); +#3942 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3943 = PCURVE('',#2747,#3944); +#3944 = DEFINITIONAL_REPRESENTATION('',(#3945),#3948); +#3945 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3946,#3947),.UNSPECIFIED.,.F., + .F.,(2,2),(1.5E-02,0.285),.PIECEWISE_BEZIER_KNOTS.); +#3946 = CARTESIAN_POINT('',(1.570796326795,1.5E-02)); +#3947 = CARTESIAN_POINT('',(1.570796326795,0.285)); +#3948 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3949 = ORIENTED_EDGE('',*,*,#3950,.T.); +#3950 = EDGE_CURVE('',#3924,#3951,#3953,.T.); +#3951 = VERTEX_POINT('',#3952); +#3952 = CARTESIAN_POINT('',(0.8,0.385,1.5E-02)); +#3953 = SURFACE_CURVE('',#3954,(#3958,#3965),.PCURVE_S1.); +#3954 = LINE('',#3955,#3956); +#3955 = CARTESIAN_POINT('',(0.8,0.4,1.5E-02)); +#3956 = VECTOR('',#3957,1.); +#3957 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#3958 = PCURVE('',#3932,#3959); +#3959 = DEFINITIONAL_REPRESENTATION('',(#3960),#3964); +#3960 = LINE('',#3961,#3962); +#3961 = CARTESIAN_POINT('',(-1.654655145539E-17,-0.285)); +#3962 = VECTOR('',#3963,1.); +#3963 = DIRECTION('',(-1.,0.)); +#3964 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3965 = PCURVE('',#3665,#3966); +#3966 = DEFINITIONAL_REPRESENTATION('',(#3967),#3970); +#3967 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3968,#3969),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.785,-1.5E-02),.PIECEWISE_BEZIER_KNOTS.); +#3968 = CARTESIAN_POINT('',(3.14159265359,-0.785)); +#3969 = CARTESIAN_POINT('',(3.14159265359,-1.5E-02)); +#3970 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3971 = ORIENTED_EDGE('',*,*,#3972,.T.); +#3972 = EDGE_CURVE('',#3951,#3973,#3975,.T.); +#3973 = VERTEX_POINT('',#3974); +#3974 = CARTESIAN_POINT('',(0.8,0.385,0.285)); +#3975 = SURFACE_CURVE('',#3976,(#3980,#3987),.PCURVE_S1.); +#3976 = LINE('',#3977,#3978); +#3977 = CARTESIAN_POINT('',(0.8,0.385,0.3)); +#3978 = VECTOR('',#3979,1.); +#3979 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#3980 = PCURVE('',#3932,#3981); +#3981 = DEFINITIONAL_REPRESENTATION('',(#3982),#3986); +#3982 = LINE('',#3983,#3984); +#3983 = CARTESIAN_POINT('',(1.5E-02,2.050768409256E-18)); +#3984 = VECTOR('',#3985,1.); +#3985 = DIRECTION('',(0.,1.)); +#3986 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3987 = PCURVE('',#3558,#3988); +#3988 = DEFINITIONAL_REPRESENTATION('',(#3989),#3992); +#3989 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#3990,#3991),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.285,-1.5E-02),.PIECEWISE_BEZIER_KNOTS.); +#3990 = CARTESIAN_POINT('',(1.570796326795,0.285)); +#3991 = CARTESIAN_POINT('',(1.570796326795,1.5E-02)); +#3992 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#3993 = ORIENTED_EDGE('',*,*,#3994,.T.); +#3994 = EDGE_CURVE('',#3973,#3922,#3995,.T.); +#3995 = SURFACE_CURVE('',#3996,(#4000,#4007),.PCURVE_S1.); +#3996 = LINE('',#3997,#3998); +#3997 = CARTESIAN_POINT('',(0.8,-0.4,0.285)); +#3998 = VECTOR('',#3999,1.); +#3999 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#4000 = PCURVE('',#3932,#4001); +#4001 = DEFINITIONAL_REPRESENTATION('',(#4002),#4006); +#4002 = LINE('',#4003,#4004); +#4003 = CARTESIAN_POINT('',(0.8,-1.5E-02)); +#4004 = VECTOR('',#4005,1.); +#4005 = DIRECTION('',(1.,0.)); +#4006 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4007 = PCURVE('',#2928,#4008); +#4008 = DEFINITIONAL_REPRESENTATION('',(#4009),#4012); +#4009 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4010,#4011),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.785,-1.5E-02),.PIECEWISE_BEZIER_KNOTS.); +#4010 = CARTESIAN_POINT('',(0.,-0.785)); +#4011 = CARTESIAN_POINT('',(0.,-1.5E-02)); +#4012 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4013 = ADVANCED_FACE('',(#4014),#3436,.F.); +#4014 = FACE_BOUND('',#4015,.T.); +#4015 = EDGE_LOOP('',(#4016,#4036,#4037,#4057)); +#4016 = ORIENTED_EDGE('',*,*,#4017,.T.); +#4017 = EDGE_CURVE('',#3344,#3204,#4018,.T.); +#4018 = SURFACE_CURVE('',#4019,(#4023,#4030),.PCURVE_S1.); +#4019 = LINE('',#4020,#4021); +#4020 = CARTESIAN_POINT('',(-0.8,0.4,1.5E-02)); +#4021 = VECTOR('',#4022,1.); +#4022 = DIRECTION('',(-1.,-0.,0.)); +#4023 = PCURVE('',#3436,#4024); +#4024 = DEFINITIONAL_REPRESENTATION('',(#4025),#4029); +#4025 = LINE('',#4026,#4027); +#4026 = CARTESIAN_POINT('',(0.,-0.285)); +#4027 = VECTOR('',#4028,1.); +#4028 = DIRECTION('',(-1.,0.)); +#4029 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4030 = PCURVE('',#3253,#4031); +#4031 = DEFINITIONAL_REPRESENTATION('',(#4032),#4035); +#4032 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4033,#4034),.UNSPECIFIED.,.F., + .F.,(2,2),(-1.2,-0.4),.PIECEWISE_BEZIER_KNOTS.); +#4033 = CARTESIAN_POINT('',(3.14159265359,-1.2)); +#4034 = CARTESIAN_POINT('',(3.14159265359,-0.4)); +#4035 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4036 = ORIENTED_EDGE('',*,*,#3420,.T.); +#4037 = ORIENTED_EDGE('',*,*,#4038,.T.); +#4038 = EDGE_CURVE('',#3421,#3500,#4039,.T.); +#4039 = SURFACE_CURVE('',#4040,(#4044,#4051),.PCURVE_S1.); +#4040 = LINE('',#4041,#4042); +#4041 = CARTESIAN_POINT('',(0.8,0.4,0.285)); +#4042 = VECTOR('',#4043,1.); +#4043 = DIRECTION('',(1.,0.,0.)); +#4044 = PCURVE('',#3436,#4045); +#4045 = DEFINITIONAL_REPRESENTATION('',(#4046),#4050); +#4046 = LINE('',#4047,#4048); +#4047 = CARTESIAN_POINT('',(1.6,-1.5E-02)); +#4048 = VECTOR('',#4049,1.); +#4049 = DIRECTION('',(1.,0.)); +#4050 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4051 = PCURVE('',#1735,#4052); +#4052 = DEFINITIONAL_REPRESENTATION('',(#4053),#4056); +#4053 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4054,#4055),.UNSPECIFIED.,.F., + .F.,(2,2),(-1.2,-0.4),.PIECEWISE_BEZIER_KNOTS.); +#4054 = CARTESIAN_POINT('',(0.,0.4)); +#4055 = CARTESIAN_POINT('',(0.,1.2)); +#4056 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4057 = ORIENTED_EDGE('',*,*,#3499,.T.); +#4058 = ADVANCED_FACE('',(#4059),#3587,.F.); +#4059 = FACE_BOUND('',#4060,.T.); +#4060 = EDGE_LOOP('',(#4061,#4081,#4082,#4102)); +#4061 = ORIENTED_EDGE('',*,*,#4062,.T.); +#4062 = EDGE_CURVE('',#3127,#3043,#4063,.T.); +#4063 = SURFACE_CURVE('',#4064,(#4068,#4075),.PCURVE_S1.); +#4064 = LINE('',#4065,#4066); +#4065 = CARTESIAN_POINT('',(-0.8,-0.385,-5.263638917091E-17)); +#4066 = VECTOR('',#4067,1.); +#4067 = DIRECTION('',(-1.,0.,0.)); +#4068 = PCURVE('',#3587,#4069); +#4069 = DEFINITIONAL_REPRESENTATION('',(#4070),#4074); +#4070 = LINE('',#4071,#4072); +#4071 = CARTESIAN_POINT('',(-1.5E-02,0.)); +#4072 = VECTOR('',#4073,1.); +#4073 = DIRECTION('',(-0.,-1.)); +#4074 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4075 = PCURVE('',#3085,#4076); +#4076 = DEFINITIONAL_REPRESENTATION('',(#4077),#4080); +#4077 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4078,#4079),.UNSPECIFIED.,.F., + .F.,(2,2),(-1.2,-0.4),.PIECEWISE_BEZIER_KNOTS.); +#4078 = CARTESIAN_POINT('',(4.712388980385,1.2)); +#4079 = CARTESIAN_POINT('',(4.712388980385,0.4)); +#4080 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4081 = ORIENTED_EDGE('',*,*,#3573,.T.); +#4082 = ORIENTED_EDGE('',*,*,#4083,.T.); +#4083 = EDGE_CURVE('',#3238,#3315,#4084,.T.); +#4084 = SURFACE_CURVE('',#4085,(#4089,#4096),.PCURVE_S1.); +#4085 = LINE('',#4086,#4087); +#4086 = CARTESIAN_POINT('',(-0.8,0.385,5.263638917091E-17)); +#4087 = VECTOR('',#4088,1.); +#4088 = DIRECTION('',(1.,0.,0.)); +#4089 = PCURVE('',#3587,#4090); +#4090 = DEFINITIONAL_REPRESENTATION('',(#4091),#4095); +#4091 = LINE('',#4092,#4093); +#4092 = CARTESIAN_POINT('',(-0.785,0.)); +#4093 = VECTOR('',#4094,1.); +#4094 = DIRECTION('',(0.,1.)); +#4095 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4096 = PCURVE('',#3253,#4097); +#4097 = DEFINITIONAL_REPRESENTATION('',(#4098),#4101); +#4098 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4099,#4100),.UNSPECIFIED.,.F., + .F.,(2,2),(0.4,1.2),.PIECEWISE_BEZIER_KNOTS.); +#4099 = CARTESIAN_POINT('',(4.712388980385,-0.4)); +#4100 = CARTESIAN_POINT('',(4.712388980385,-1.2)); +#4101 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4102 = ORIENTED_EDGE('',*,*,#3629,.T.); +#4103 = ADVANCED_FACE('',(#4104),#2747,.T.); +#4104 = FACE_BOUND('',#4105,.T.); +#4105 = EDGE_LOOP('',(#4106,#4149,#4150,#4193)); +#4106 = ORIENTED_EDGE('',*,*,#4107,.F.); +#4107 = EDGE_CURVE('',#2732,#3922,#4108,.T.); +#4108 = SURFACE_CURVE('',#4109,(#4114,#4120),.PCURVE_S1.); +#4109 = CIRCLE('',#4110,1.5E-02); +#4110 = AXIS2_PLACEMENT_3D('',#4111,#4112,#4113); +#4111 = CARTESIAN_POINT('',(0.785,-0.385,0.285)); +#4112 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#4113 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#4114 = PCURVE('',#2747,#4115); +#4115 = DEFINITIONAL_REPRESENTATION('',(#4116),#4119); +#4116 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4117,#4118),.UNSPECIFIED.,.F., + .F.,(2,2),(0.,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); +#4117 = CARTESIAN_POINT('',(3.14159265359,1.5E-02)); +#4118 = CARTESIAN_POINT('',(1.570796326795,1.5E-02)); +#4119 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4120 = PCURVE('',#3028,#4121); +#4121 = DEFINITIONAL_REPRESENTATION('',(#4122),#4148); +#4122 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4123,#4124,#4125,#4126,#4127, + #4128,#4129,#4130,#4131,#4132,#4133,#4134,#4135,#4136,#4137,#4138, + #4139,#4140,#4141,#4142,#4143,#4144,#4145,#4146,#4147), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), + (0.,7.139983303613E-02,0.142799666072,0.214199499108,0.285599332145, + 0.356999165181,0.428398998217,0.499798831253,0.571198664289, + 0.642598497325,0.713998330361,0.785398163397,0.856797996434, + 0.92819782947,0.999597662506,1.070997495542,1.142397328578, + 1.213797161614,1.28519699465,1.356596827686,1.427996660723, + 1.499396493759,1.570796326795),.QUASI_UNIFORM_KNOTS.); +#4123 = CARTESIAN_POINT('',(4.712388980385,0.)); +#4124 = CARTESIAN_POINT('',(4.73618892473,0.)); +#4125 = CARTESIAN_POINT('',(4.783788813421,-6.253171281508E-28)); +#4126 = CARTESIAN_POINT('',(4.855188646457,2.188609948528E-27)); +#4127 = CARTESIAN_POINT('',(4.926588479493,-8.12912266596E-27)); +#4128 = CARTESIAN_POINT('',(4.997988312529,3.032788071531E-26)); +#4129 = CARTESIAN_POINT('',(5.069388145565,-1.131824001953E-25)); +#4130 = CARTESIAN_POINT('',(5.140787978601,4.224017200658E-25)); +#4131 = CARTESIAN_POINT('',(5.212187811638,-1.576424480068E-24)); +#4132 = CARTESIAN_POINT('',(5.283587644674,5.883296200207E-24)); +#4133 = CARTESIAN_POINT('',(5.35498747771,-2.195676032076E-23)); +#4134 = CARTESIAN_POINT('',(5.426387310746,8.194374508283E-23)); +#4135 = CARTESIAN_POINT('',(5.497787143782,-3.058182200105E-22)); +#4136 = CARTESIAN_POINT('',(5.569186976818,1.141329134959E-21)); +#4137 = CARTESIAN_POINT('',(5.640586809854,-4.259498319827E-21)); +#4138 = CARTESIAN_POINT('',(5.711986642891,1.589666414435E-20)); +#4139 = CARTESIAN_POINT('',(5.783386475927,-5.932715825757E-20)); +#4140 = CARTESIAN_POINT('',(5.854786308963,2.214119688859E-19)); +#4141 = CARTESIAN_POINT('',(5.926186141999,-8.263207172861E-19)); +#4142 = CARTESIAN_POINT('',(5.997585975035,3.083870900258E-18)); +#4143 = CARTESIAN_POINT('',(6.068985808071,-1.150916288375E-17)); +#4144 = CARTESIAN_POINT('',(6.140385641107,4.295278063473E-17)); +#4145 = CARTESIAN_POINT('',(6.211785474143,-1.603019596552E-16)); +#4146 = CARTESIAN_POINT('',(6.259385362834,3.454027187723E-16)); +#4147 = CARTESIAN_POINT('',(6.28318530718,8.881784197001E-16)); +#4148 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4149 = ORIENTED_EDGE('',*,*,#2731,.F.); +#4150 = ORIENTED_EDGE('',*,*,#4151,.F.); +#4151 = EDGE_CURVE('',#3924,#2705,#4152,.T.); +#4152 = SURFACE_CURVE('',#4153,(#4158,#4164),.PCURVE_S1.); +#4153 = CIRCLE('',#4154,1.5E-02); +#4154 = AXIS2_PLACEMENT_3D('',#4155,#4156,#4157); +#4155 = CARTESIAN_POINT('',(0.785,-0.385,1.5E-02)); +#4156 = DIRECTION('',(0.,1.367178939504E-16,-1.)); +#4157 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#4158 = PCURVE('',#2747,#4159); +#4159 = DEFINITIONAL_REPRESENTATION('',(#4160),#4163); +#4160 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4161,#4162),.UNSPECIFIED.,.F., + .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); +#4161 = CARTESIAN_POINT('',(1.570796326795,0.285)); +#4162 = CARTESIAN_POINT('',(3.14159265359,0.285)); +#4163 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4164 = PCURVE('',#3189,#4165); +#4165 = DEFINITIONAL_REPRESENTATION('',(#4166),#4192); +#4166 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4167,#4168,#4169,#4170,#4171, + #4172,#4173,#4174,#4175,#4176,#4177,#4178,#4179,#4180,#4181,#4182, + #4183,#4184,#4185,#4186,#4187,#4188,#4189,#4190,#4191), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), + (1.570796326795,1.642196159831,1.713595992867,1.784995825903, + 1.856395658939,1.927795491976,1.999195325012,2.070595158048, + 2.141994991084,2.21339482412,2.284794657156,2.356194490192, + 2.427594323228,2.498994156265,2.570393989301,2.641793822337, + 2.713193655373,2.784593488409,2.855993321445,2.927393154481, + 2.998792987518,3.070192820554,3.14159265359),.QUASI_UNIFORM_KNOTS.); +#4167 = CARTESIAN_POINT('',(6.28318530718,8.881784197001E-16)); +#4168 = CARTESIAN_POINT('',(6.259385362834,2.04054879989E-16)); +#4169 = CARTESIAN_POINT('',(6.211785474143,-4.333437251123E-16)); +#4170 = CARTESIAN_POINT('',(6.140385641107,-1.771580628719E-16)); +#4171 = CARTESIAN_POINT('',(6.068985808071,-2.458028041816E-16)); +#4172 = CARTESIAN_POINT('',(5.997585975035,-2.27409501183E-16)); +#4173 = CARTESIAN_POINT('',(5.926186141999,-2.323379718677E-16)); +#4174 = CARTESIAN_POINT('',(5.854786308963,-2.310173921278E-16)); +#4175 = CARTESIAN_POINT('',(5.783386475927,-2.313712404026E-16)); +#4176 = CARTESIAN_POINT('',(5.711986642891,-2.312764270431E-16)); +#4177 = CARTESIAN_POINT('',(5.640586809854,-2.313018322062E-16)); +#4178 = CARTESIAN_POINT('',(5.569186976818,-2.312950249133E-16)); +#4179 = CARTESIAN_POINT('',(5.497787143782,-2.31296848922E-16)); +#4180 = CARTESIAN_POINT('',(5.426387310746,-2.312963601803E-16)); +#4181 = CARTESIAN_POINT('',(5.35498747771,-2.312964911382E-16)); +#4182 = CARTESIAN_POINT('',(5.283587644674,-2.312964560482E-16)); +#4183 = CARTESIAN_POINT('',(5.212187811638,-2.312964654505E-16)); +#4184 = CARTESIAN_POINT('',(5.140787978601,-2.312964629312E-16)); +#4185 = CARTESIAN_POINT('',(5.069388145565,-2.312964636062E-16)); +#4186 = CARTESIAN_POINT('',(4.997988312529,-2.312964634253E-16)); +#4187 = CARTESIAN_POINT('',(4.926588479493,-2.312964634738E-16)); +#4188 = CARTESIAN_POINT('',(4.855188646457,-2.312964634608E-16)); +#4189 = CARTESIAN_POINT('',(4.783788813421,-2.312964634644E-16)); +#4190 = CARTESIAN_POINT('',(4.73618892473,-2.312964634636E-16)); +#4191 = CARTESIAN_POINT('',(4.712388980385,-2.312964634636E-16)); +#4192 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4193 = ORIENTED_EDGE('',*,*,#3921,.F.); +#4194 = ADVANCED_FACE('',(#4195),#3028,.T.); +#4195 = FACE_BOUND('',#4196,.T.); +#4196 = EDGE_LOOP('',(#4197,#4198,#4199)); +#4197 = ORIENTED_EDGE('',*,*,#3014,.F.); +#4198 = ORIENTED_EDGE('',*,*,#4107,.T.); +#4199 = ORIENTED_EDGE('',*,*,#4200,.F.); +#4200 = EDGE_CURVE('',#2893,#3922,#4201,.T.); +#4201 = SURFACE_CURVE('',#4202,(#4207,#4236),.PCURVE_S1.); +#4202 = CIRCLE('',#4203,1.5E-02); +#4203 = AXIS2_PLACEMENT_3D('',#4204,#4205,#4206); +#4204 = CARTESIAN_POINT('',(0.785,-0.385,0.285)); +#4205 = DIRECTION('',(0.,1.,-3.477289347668E-15)); +#4206 = DIRECTION('',(0.,-3.477289347668E-15,-1.)); +#4207 = PCURVE('',#3028,#4208); +#4208 = DEFINITIONAL_REPRESENTATION('',(#4209),#4235); +#4209 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4210,#4211,#4212,#4213,#4214, + #4215,#4216,#4217,#4218,#4219,#4220,#4221,#4222,#4223,#4224,#4225, + #4226,#4227,#4228,#4229,#4230,#4231,#4232,#4233,#4234), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), + (3.14159265359,3.212992486626,3.284392319662,3.355792152698, + 3.427191985734,3.49859181877,3.569991651807,3.641391484843, + 3.712791317879,3.784191150915,3.855590983951,3.926990816987, + 3.998390650023,4.06979048306,4.141190316096,4.212590149132, + 4.283989982168,4.355389815204,4.42678964824,4.498189481276, + 4.569589314312,4.640989147349,4.712388980385), + .QUASI_UNIFORM_KNOTS.); +#4210 = CARTESIAN_POINT('',(6.28318530718,1.570796326795)); +#4211 = CARTESIAN_POINT('',(6.28318530718,1.54699638245)); +#4212 = CARTESIAN_POINT('',(6.28318530718,1.499396493759)); +#4213 = CARTESIAN_POINT('',(6.28318530718,1.427996660723)); +#4214 = CARTESIAN_POINT('',(6.28318530718,1.356596827686)); +#4215 = CARTESIAN_POINT('',(6.28318530718,1.28519699465)); +#4216 = CARTESIAN_POINT('',(6.28318530718,1.213797161614)); +#4217 = CARTESIAN_POINT('',(6.28318530718,1.142397328578)); +#4218 = CARTESIAN_POINT('',(6.28318530718,1.070997495542)); +#4219 = CARTESIAN_POINT('',(6.28318530718,0.999597662506)); +#4220 = CARTESIAN_POINT('',(6.28318530718,0.92819782947)); +#4221 = CARTESIAN_POINT('',(6.28318530718,0.856797996434)); +#4222 = CARTESIAN_POINT('',(6.28318530718,0.785398163397)); +#4223 = CARTESIAN_POINT('',(6.28318530718,0.713998330361)); +#4224 = CARTESIAN_POINT('',(6.28318530718,0.642598497325)); +#4225 = CARTESIAN_POINT('',(6.28318530718,0.571198664289)); +#4226 = CARTESIAN_POINT('',(6.28318530718,0.499798831253)); +#4227 = CARTESIAN_POINT('',(6.28318530718,0.428398998217)); +#4228 = CARTESIAN_POINT('',(6.28318530718,0.356999165181)); +#4229 = CARTESIAN_POINT('',(6.28318530718,0.285599332145)); +#4230 = CARTESIAN_POINT('',(6.28318530718,0.214199499108)); +#4231 = CARTESIAN_POINT('',(6.28318530718,0.142799666072)); +#4232 = CARTESIAN_POINT('',(6.28318530718,7.139983303613E-02)); +#4233 = CARTESIAN_POINT('',(6.28318530718,2.379994434538E-02)); +#4234 = CARTESIAN_POINT('',(6.28318530718,8.881784197001E-16)); +#4235 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4236 = PCURVE('',#2928,#4237); +#4237 = DEFINITIONAL_REPRESENTATION('',(#4238),#4264); +#4238 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4239,#4240,#4241,#4242,#4243, + #4244,#4245,#4246,#4247,#4248,#4249,#4250,#4251,#4252,#4253,#4254, + #4255,#4256,#4257,#4258,#4259,#4260,#4261,#4262,#4263), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), + (3.14159265359,3.212992486626,3.284392319662,3.355792152698, + 3.427191985734,3.49859181877,3.569991651807,3.641391484843, + 3.712791317879,3.784191150915,3.855590983951,3.926990816987, + 3.998390650023,4.06979048306,4.141190316096,4.212590149132, + 4.283989982168,4.355389815204,4.42678964824,4.498189481276, + 4.569589314312,4.640989147349,4.712388980385), + .QUASI_UNIFORM_KNOTS.); +#4239 = CARTESIAN_POINT('',(1.570796326795,-1.5E-02)); +#4240 = CARTESIAN_POINT('',(1.54699638245,-1.5E-02)); +#4241 = CARTESIAN_POINT('',(1.499396493759,-1.5E-02)); +#4242 = CARTESIAN_POINT('',(1.427996660723,-1.5E-02)); +#4243 = CARTESIAN_POINT('',(1.356596827686,-1.5E-02)); +#4244 = CARTESIAN_POINT('',(1.28519699465,-1.5E-02)); +#4245 = CARTESIAN_POINT('',(1.213797161614,-1.5E-02)); +#4246 = CARTESIAN_POINT('',(1.142397328578,-1.5E-02)); +#4247 = CARTESIAN_POINT('',(1.070997495542,-1.5E-02)); +#4248 = CARTESIAN_POINT('',(0.999597662506,-1.5E-02)); +#4249 = CARTESIAN_POINT('',(0.92819782947,-1.5E-02)); +#4250 = CARTESIAN_POINT('',(0.856797996434,-1.5E-02)); +#4251 = CARTESIAN_POINT('',(0.785398163397,-1.5E-02)); +#4252 = CARTESIAN_POINT('',(0.713998330361,-1.5E-02)); +#4253 = CARTESIAN_POINT('',(0.642598497325,-1.5E-02)); +#4254 = CARTESIAN_POINT('',(0.571198664289,-1.5E-02)); +#4255 = CARTESIAN_POINT('',(0.499798831253,-1.5E-02)); +#4256 = CARTESIAN_POINT('',(0.428398998217,-1.5E-02)); +#4257 = CARTESIAN_POINT('',(0.356999165181,-1.5E-02)); +#4258 = CARTESIAN_POINT('',(0.285599332145,-1.5E-02)); +#4259 = CARTESIAN_POINT('',(0.214199499108,-1.5E-02)); +#4260 = CARTESIAN_POINT('',(0.142799666072,-1.5E-02)); +#4261 = CARTESIAN_POINT('',(7.139983303613E-02,-1.5E-02)); +#4262 = CARTESIAN_POINT('',(2.379994434538E-02,-1.5E-02)); +#4263 = CARTESIAN_POINT('',(0.,-1.5E-02)); +#4264 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4265 = ADVANCED_FACE('',(#4266),#3189,.T.); +#4266 = FACE_BOUND('',#4267,.T.); +#4267 = EDGE_LOOP('',(#4268,#4334,#4335)); +#4268 = ORIENTED_EDGE('',*,*,#4269,.F.); +#4269 = EDGE_CURVE('',#3924,#3149,#4270,.T.); +#4270 = SURFACE_CURVE('',#4271,(#4276,#4305),.PCURVE_S1.); +#4271 = CIRCLE('',#4272,1.5E-02); +#4272 = AXIS2_PLACEMENT_3D('',#4273,#4274,#4275); +#4273 = CARTESIAN_POINT('',(0.785,-0.385,1.5E-02)); +#4274 = DIRECTION('',(3.614007241618E-15,1.,1.367178939504E-16)); +#4275 = DIRECTION('',(1.,-3.614007241618E-15,-4.940994587956E-31)); +#4276 = PCURVE('',#3189,#4277); +#4277 = DEFINITIONAL_REPRESENTATION('',(#4278),#4304); +#4278 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4279,#4280,#4281,#4282,#4283, + #4284,#4285,#4286,#4287,#4288,#4289,#4290,#4291,#4292,#4293,#4294, + #4295,#4296,#4297,#4298,#4299,#4300,#4301,#4302,#4303), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), + (0.,7.139983303613E-02,0.142799666072,0.214199499108,0.285599332145, + 0.356999165181,0.428398998217,0.499798831253,0.571198664289, + 0.642598497325,0.713998330361,0.785398163397,0.856797996434, + 0.92819782947,0.999597662506,1.070997495542,1.142397328578, + 1.213797161614,1.28519699465,1.356596827687,1.427996660723, + 1.499396493759,1.570796326795),.QUASI_UNIFORM_KNOTS.); +#4279 = CARTESIAN_POINT('',(6.28318530718,1.7763568394E-15)); +#4280 = CARTESIAN_POINT('',(6.28318530718,-2.379994434538E-02)); +#4281 = CARTESIAN_POINT('',(6.28318530718,-7.139983303613E-02)); +#4282 = CARTESIAN_POINT('',(6.28318530718,-0.142799666072)); +#4283 = CARTESIAN_POINT('',(6.28318530718,-0.214199499108)); +#4284 = CARTESIAN_POINT('',(6.28318530718,-0.285599332145)); +#4285 = CARTESIAN_POINT('',(6.28318530718,-0.356999165181)); +#4286 = CARTESIAN_POINT('',(6.28318530718,-0.428398998217)); +#4287 = CARTESIAN_POINT('',(6.28318530718,-0.499798831253)); +#4288 = CARTESIAN_POINT('',(6.28318530718,-0.571198664289)); +#4289 = CARTESIAN_POINT('',(6.28318530718,-0.642598497325)); +#4290 = CARTESIAN_POINT('',(6.28318530718,-0.713998330361)); +#4291 = CARTESIAN_POINT('',(6.28318530718,-0.785398163397)); +#4292 = CARTESIAN_POINT('',(6.28318530718,-0.856797996434)); +#4293 = CARTESIAN_POINT('',(6.28318530718,-0.92819782947)); +#4294 = CARTESIAN_POINT('',(6.28318530718,-0.999597662506)); +#4295 = CARTESIAN_POINT('',(6.28318530718,-1.070997495542)); +#4296 = CARTESIAN_POINT('',(6.28318530718,-1.142397328578)); +#4297 = CARTESIAN_POINT('',(6.28318530718,-1.213797161614)); +#4298 = CARTESIAN_POINT('',(6.28318530718,-1.28519699465)); +#4299 = CARTESIAN_POINT('',(6.28318530718,-1.356596827686)); +#4300 = CARTESIAN_POINT('',(6.28318530718,-1.427996660723)); +#4301 = CARTESIAN_POINT('',(6.28318530718,-1.499396493759)); +#4302 = CARTESIAN_POINT('',(6.28318530718,-1.54699638245)); +#4303 = CARTESIAN_POINT('',(6.28318530718,-1.570796326795)); +#4304 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4305 = PCURVE('',#3665,#4306); +#4306 = DEFINITIONAL_REPRESENTATION('',(#4307),#4333); +#4307 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4308,#4309,#4310,#4311,#4312, + #4313,#4314,#4315,#4316,#4317,#4318,#4319,#4320,#4321,#4322,#4323, + #4324,#4325,#4326,#4327,#4328,#4329,#4330,#4331,#4332), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), + (0.,7.139983303613E-02,0.142799666072,0.214199499108,0.285599332145, + 0.356999165181,0.428398998217,0.499798831253,0.571198664289, + 0.642598497325,0.713998330361,0.785398163397,0.856797996434, + 0.92819782947,0.999597662506,1.070997495542,1.142397328578, + 1.213797161614,1.28519699465,1.356596827687,1.427996660723, + 1.499396493759,1.570796326795),.QUASI_UNIFORM_KNOTS.); +#4308 = CARTESIAN_POINT('',(3.14159265359,-0.785)); +#4309 = CARTESIAN_POINT('',(3.165392597935,-0.785)); +#4310 = CARTESIAN_POINT('',(3.212992486626,-0.785)); +#4311 = CARTESIAN_POINT('',(3.284392319662,-0.785)); +#4312 = CARTESIAN_POINT('',(3.355792152698,-0.785)); +#4313 = CARTESIAN_POINT('',(3.427191985734,-0.785)); +#4314 = CARTESIAN_POINT('',(3.49859181877,-0.785)); +#4315 = CARTESIAN_POINT('',(3.569991651807,-0.785)); +#4316 = CARTESIAN_POINT('',(3.641391484843,-0.785)); +#4317 = CARTESIAN_POINT('',(3.712791317879,-0.785)); +#4318 = CARTESIAN_POINT('',(3.784191150915,-0.785)); +#4319 = CARTESIAN_POINT('',(3.855590983951,-0.785)); +#4320 = CARTESIAN_POINT('',(3.926990816987,-0.785)); +#4321 = CARTESIAN_POINT('',(3.998390650023,-0.785)); +#4322 = CARTESIAN_POINT('',(4.06979048306,-0.785)); +#4323 = CARTESIAN_POINT('',(4.141190316096,-0.785)); +#4324 = CARTESIAN_POINT('',(4.212590149132,-0.785)); +#4325 = CARTESIAN_POINT('',(4.283989982168,-0.785)); +#4326 = CARTESIAN_POINT('',(4.355389815204,-0.785)); +#4327 = CARTESIAN_POINT('',(4.42678964824,-0.785)); +#4328 = CARTESIAN_POINT('',(4.498189481276,-0.785)); +#4329 = CARTESIAN_POINT('',(4.569589314312,-0.785)); +#4330 = CARTESIAN_POINT('',(4.640989147349,-0.785)); +#4331 = CARTESIAN_POINT('',(4.688589036039,-0.785)); +#4332 = CARTESIAN_POINT('',(4.712388980385,-0.785)); +#4333 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4334 = ORIENTED_EDGE('',*,*,#4151,.T.); +#4335 = ORIENTED_EDGE('',*,*,#3175,.F.); +#4336 = ADVANCED_FACE('',(#4337),#2928,.T.); +#4337 = FACE_BOUND('',#4338,.T.); +#4338 = EDGE_LOOP('',(#4339,#4340,#4341,#4407)); +#4339 = ORIENTED_EDGE('',*,*,#4200,.T.); +#4340 = ORIENTED_EDGE('',*,*,#3994,.F.); +#4341 = ORIENTED_EDGE('',*,*,#4342,.F.); +#4342 = EDGE_CURVE('',#2865,#3973,#4343,.T.); +#4343 = SURFACE_CURVE('',#4344,(#4349,#4378),.PCURVE_S1.); +#4344 = CIRCLE('',#4345,1.5E-02); +#4345 = AXIS2_PLACEMENT_3D('',#4346,#4347,#4348); +#4346 = CARTESIAN_POINT('',(0.785,0.385,0.285)); +#4347 = DIRECTION('',(3.614007241618E-15,1.,1.367178939504E-16)); +#4348 = DIRECTION('',(-1.,3.614007241618E-15,4.940994587956E-31)); +#4349 = PCURVE('',#2928,#4350); +#4350 = DEFINITIONAL_REPRESENTATION('',(#4351),#4377); +#4351 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4352,#4353,#4354,#4355,#4356, + #4357,#4358,#4359,#4360,#4361,#4362,#4363,#4364,#4365,#4366,#4367, + #4368,#4369,#4370,#4371,#4372,#4373,#4374,#4375,#4376), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), + (1.570796326795,1.642196159831,1.713595992867,1.784995825903, + 1.856395658939,1.927795491976,1.999195325012,2.070595158048, + 2.141994991084,2.21339482412,2.284794657156,2.356194490192, + 2.427594323228,2.498994156265,2.570393989301,2.641793822337, + 2.713193655373,2.784593488409,2.855993321445,2.927393154481, + 2.998792987518,3.070192820554,3.14159265359),.QUASI_UNIFORM_KNOTS.); +#4352 = CARTESIAN_POINT('',(1.570796326795,-0.785)); +#4353 = CARTESIAN_POINT('',(1.54699638245,-0.785)); +#4354 = CARTESIAN_POINT('',(1.499396493759,-0.785)); +#4355 = CARTESIAN_POINT('',(1.427996660723,-0.785)); +#4356 = CARTESIAN_POINT('',(1.356596827686,-0.785)); +#4357 = CARTESIAN_POINT('',(1.28519699465,-0.785)); +#4358 = CARTESIAN_POINT('',(1.213797161614,-0.785)); +#4359 = CARTESIAN_POINT('',(1.142397328578,-0.785)); +#4360 = CARTESIAN_POINT('',(1.070997495542,-0.785)); +#4361 = CARTESIAN_POINT('',(0.999597662506,-0.785)); +#4362 = CARTESIAN_POINT('',(0.92819782947,-0.785)); +#4363 = CARTESIAN_POINT('',(0.856797996434,-0.785)); +#4364 = CARTESIAN_POINT('',(0.785398163397,-0.785)); +#4365 = CARTESIAN_POINT('',(0.713998330361,-0.785)); +#4366 = CARTESIAN_POINT('',(0.642598497325,-0.785)); +#4367 = CARTESIAN_POINT('',(0.571198664289,-0.785)); +#4368 = CARTESIAN_POINT('',(0.499798831253,-0.785)); +#4369 = CARTESIAN_POINT('',(0.428398998217,-0.785)); +#4370 = CARTESIAN_POINT('',(0.356999165181,-0.785)); +#4371 = CARTESIAN_POINT('',(0.285599332145,-0.785)); +#4372 = CARTESIAN_POINT('',(0.214199499108,-0.785)); +#4373 = CARTESIAN_POINT('',(0.142799666072,-0.785)); +#4374 = CARTESIAN_POINT('',(7.139983303613E-02,-0.785)); +#4375 = CARTESIAN_POINT('',(2.379994434538E-02,-0.785)); +#4376 = CARTESIAN_POINT('',(0.,-0.785)); +#4377 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4378 = PCURVE('',#3766,#4379); +#4379 = DEFINITIONAL_REPRESENTATION('',(#4380),#4406); +#4380 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4381,#4382,#4383,#4384,#4385, + #4386,#4387,#4388,#4389,#4390,#4391,#4392,#4393,#4394,#4395,#4396, + #4397,#4398,#4399,#4400,#4401,#4402,#4403,#4404,#4405), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), + (1.570796326795,1.642196159831,1.713595992867,1.784995825903, + 1.856395658939,1.927795491976,1.999195325012,2.070595158048, + 2.141994991084,2.21339482412,2.284794657156,2.356194490192, + 2.427594323228,2.498994156265,2.570393989301,2.641793822337, + 2.713193655373,2.784593488409,2.855993321445,2.927393154481, + 2.998792987518,3.070192820554,3.14159265359),.QUASI_UNIFORM_KNOTS.); +#4381 = CARTESIAN_POINT('',(5.18753264259E-14,1.570796326795)); +#4382 = CARTESIAN_POINT('',(6.098154026375E-14,1.54699638245)); +#4383 = CARTESIAN_POINT('',(5.700026755195E-14,1.499396493759)); +#4384 = CARTESIAN_POINT('',(2.027871172796E-14,1.427996660723)); +#4385 = CARTESIAN_POINT('',(1.790839483372E-14,1.356596827686)); +#4386 = CARTESIAN_POINT('',(1.25471930759E-14,1.28519699465)); +#4387 = CARTESIAN_POINT('',(1.071680005711E-14,1.213797161614)); +#4388 = CARTESIAN_POINT('',(8.124194593225E-15,1.142397328578)); +#4389 = CARTESIAN_POINT('',(1.023769270256E-14,1.070997495542)); +#4390 = CARTESIAN_POINT('',(-2.74318149201E-15,0.999597662506)); +#4391 = CARTESIAN_POINT('',(7.35033265476E-16,0.92819782947)); +#4392 = CARTESIAN_POINT('',(-1.969515698943E-16,0.856797996434)); +#4393 = CARTESIAN_POINT('',(5.277301410124E-17,0.785398163397)); +#4394 = CARTESIAN_POINT('',(-1.414048651063E-17,0.713998330361)); +#4395 = CARTESIAN_POINT('',(3.788931941285E-18,0.642598497325)); +#4396 = CARTESIAN_POINT('',(-1.015241254509E-18,0.571198664289)); +#4397 = CARTESIAN_POINT('',(2.720330767516E-19,0.499798831253)); +#4398 = CARTESIAN_POINT('',(-7.289105249731E-20,0.428398998217)); +#4399 = CARTESIAN_POINT('',(1.953113323762E-20,0.356999165181)); +#4400 = CARTESIAN_POINT('',(-5.233480453174E-21,0.285599332145)); +#4401 = CARTESIAN_POINT('',(1.402788575078E-21,0.214199499108)); +#4402 = CARTESIAN_POINT('',(-3.776738471363E-22,0.142799666072)); +#4403 = CARTESIAN_POINT('',(1.079068134675E-22,7.139983303613E-02)); +#4404 = CARTESIAN_POINT('',(0.,2.379994434538E-02)); +#4405 = CARTESIAN_POINT('',(0.,8.881784197001E-16)); +#4406 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4407 = ORIENTED_EDGE('',*,*,#2914,.F.); +#4408 = ADVANCED_FACE('',(#4409),#1682,.T.); +#4409 = FACE_BOUND('',#4410,.T.); +#4410 = EDGE_LOOP('',(#4411,#4412,#4413,#4414)); +#4411 = ORIENTED_EDGE('',*,*,#2943,.F.); +#4412 = ORIENTED_EDGE('',*,*,#3876,.F.); +#4413 = ORIENTED_EDGE('',*,*,#2993,.F.); +#4414 = ORIENTED_EDGE('',*,*,#1666,.F.); +#4415 = ADVANCED_FACE('',(#4416),#2635,.T.); +#4416 = FACE_BOUND('',#4417,.T.); +#4417 = EDGE_LOOP('',(#4418,#4438,#4439,#4459)); +#4418 = ORIENTED_EDGE('',*,*,#4419,.F.); +#4419 = EDGE_CURVE('',#2620,#3832,#4420,.T.); +#4420 = SURFACE_CURVE('',#4421,(#4426,#4432),.PCURVE_S1.); +#4421 = CIRCLE('',#4422,1.5E-02); +#4422 = AXIS2_PLACEMENT_3D('',#4423,#4424,#4425); +#4423 = CARTESIAN_POINT('',(-0.785,-0.385,1.5E-02)); +#4424 = DIRECTION('',(0.,1.367178939504E-16,-1.)); +#4425 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#4426 = PCURVE('',#2635,#4427); +#4427 = DEFINITIONAL_REPRESENTATION('',(#4428),#4431); +#4428 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4429,#4430),.UNSPECIFIED.,.F., + .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); +#4429 = CARTESIAN_POINT('',(3.14159265359,0.285)); +#4430 = CARTESIAN_POINT('',(4.712388980385,0.285)); +#4431 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4432 = PCURVE('',#3111,#4433); +#4433 = DEFINITIONAL_REPRESENTATION('',(#4434),#4437); +#4434 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4435,#4436),.UNSPECIFIED.,.F., + .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); +#4435 = CARTESIAN_POINT('',(4.712388980385,-9.251858538543E-16)); +#4436 = CARTESIAN_POINT('',(3.14159265359,-9.251858538543E-16)); +#4437 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4438 = ORIENTED_EDGE('',*,*,#2619,.F.); +#4439 = ORIENTED_EDGE('',*,*,#4440,.F.); +#4440 = EDGE_CURVE('',#3781,#2593,#4441,.T.); +#4441 = SURFACE_CURVE('',#4442,(#4447,#4453),.PCURVE_S1.); +#4442 = CIRCLE('',#4443,1.5E-02); +#4443 = AXIS2_PLACEMENT_3D('',#4444,#4445,#4446); +#4444 = CARTESIAN_POINT('',(-0.785,-0.385,0.285)); +#4445 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#4446 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#4447 = PCURVE('',#2635,#4448); +#4448 = DEFINITIONAL_REPRESENTATION('',(#4449),#4452); +#4449 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4450,#4451),.UNSPECIFIED.,.F., + .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); +#4450 = CARTESIAN_POINT('',(4.712388980385,1.5E-02)); +#4451 = CARTESIAN_POINT('',(3.14159265359,1.5E-02)); +#4452 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4453 = PCURVE('',#2978,#4454); +#4454 = DEFINITIONAL_REPRESENTATION('',(#4455),#4458); +#4455 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4456,#4457),.UNSPECIFIED.,.F., + .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); +#4456 = CARTESIAN_POINT('',(3.14159265359,0.)); +#4457 = CARTESIAN_POINT('',(4.712388980385,0.)); +#4458 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4459 = ORIENTED_EDGE('',*,*,#3853,.F.); +#4460 = ADVANCED_FACE('',(#4461),#3085,.T.); +#4461 = FACE_BOUND('',#4462,.T.); +#4462 = EDGE_LOOP('',(#4463,#4464,#4465,#4466)); +#4463 = ORIENTED_EDGE('',*,*,#3071,.F.); +#4464 = ORIENTED_EDGE('',*,*,#4062,.F.); +#4465 = ORIENTED_EDGE('',*,*,#3126,.F.); +#4466 = ORIENTED_EDGE('',*,*,#3897,.F.); +#4467 = ADVANCED_FACE('',(#4468),#3665,.T.); +#4468 = FACE_BOUND('',#4469,.T.); +#4469 = EDGE_LOOP('',(#4470,#4471,#4472,#4492)); +#4470 = ORIENTED_EDGE('',*,*,#4269,.T.); +#4471 = ORIENTED_EDGE('',*,*,#3651,.F.); +#4472 = ORIENTED_EDGE('',*,*,#4473,.F.); +#4473 = EDGE_CURVE('',#3951,#3317,#4474,.T.); +#4474 = SURFACE_CURVE('',#4475,(#4480,#4486),.PCURVE_S1.); +#4475 = CIRCLE('',#4476,1.5E-02); +#4476 = AXIS2_PLACEMENT_3D('',#4477,#4478,#4479); +#4477 = CARTESIAN_POINT('',(0.785,0.385,1.5E-02)); +#4478 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#4479 = DIRECTION('',(-1.,-0.,0.)); +#4480 = PCURVE('',#3665,#4481); +#4481 = DEFINITIONAL_REPRESENTATION('',(#4482),#4485); +#4482 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4483,#4484),.UNSPECIFIED.,.F., + .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); +#4483 = CARTESIAN_POINT('',(3.14159265359,-1.5E-02)); +#4484 = CARTESIAN_POINT('',(4.712388980385,-1.5E-02)); +#4485 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4486 = PCURVE('',#3406,#4487); +#4487 = DEFINITIONAL_REPRESENTATION('',(#4488),#4491); +#4488 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4489,#4490),.UNSPECIFIED.,.F., + .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); +#4489 = CARTESIAN_POINT('',(0.,8.881784197001E-16)); +#4490 = CARTESIAN_POINT('',(0.,-1.570796326795)); +#4491 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4492 = ORIENTED_EDGE('',*,*,#3950,.F.); +#4493 = ADVANCED_FACE('',(#4494),#3558,.T.); +#4494 = FACE_BOUND('',#4495,.T.); +#4495 = EDGE_LOOP('',(#4496,#4539,#4540,#4583)); +#4496 = ORIENTED_EDGE('',*,*,#4497,.F.); +#4497 = EDGE_CURVE('',#3973,#3523,#4498,.T.); +#4498 = SURFACE_CURVE('',#4499,(#4504,#4510),.PCURVE_S1.); +#4499 = CIRCLE('',#4500,1.5E-02); +#4500 = AXIS2_PLACEMENT_3D('',#4501,#4502,#4503); +#4501 = CARTESIAN_POINT('',(0.785,0.385,0.285)); +#4502 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#4503 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#4504 = PCURVE('',#3558,#4505); +#4505 = DEFINITIONAL_REPRESENTATION('',(#4506),#4509); +#4506 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4507,#4508),.UNSPECIFIED.,.F., + .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); +#4507 = CARTESIAN_POINT('',(1.570796326795,1.5E-02)); +#4508 = CARTESIAN_POINT('',(0.,1.5E-02)); +#4509 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4510 = PCURVE('',#3766,#4511); +#4511 = DEFINITIONAL_REPRESENTATION('',(#4512),#4538); +#4512 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4513,#4514,#4515,#4516,#4517, + #4518,#4519,#4520,#4521,#4522,#4523,#4524,#4525,#4526,#4527,#4528, + #4529,#4530,#4531,#4532,#4533,#4534,#4535,#4536,#4537), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), + (1.570796326795,1.642196159831,1.713595992867,1.784995825903, + 1.856395658939,1.927795491976,1.999195325012,2.070595158048, + 2.141994991084,2.21339482412,2.284794657156,2.356194490192, + 2.427594323228,2.498994156265,2.570393989301,2.641793822337, + 2.713193655373,2.784593488409,2.855993321445,2.927393154481, + 2.998792987518,3.070192820554,3.14159265359),.QUASI_UNIFORM_KNOTS.); +#4513 = CARTESIAN_POINT('',(0.,8.881784197001E-16)); +#4514 = CARTESIAN_POINT('',(2.379994434538E-02,3.454027187723E-16)); +#4515 = CARTESIAN_POINT('',(7.139983303613E-02,-1.603019596552E-16)); +#4516 = CARTESIAN_POINT('',(0.142799666072,4.295278063473E-17)); +#4517 = CARTESIAN_POINT('',(0.214199499108,-1.150916288375E-17)); +#4518 = CARTESIAN_POINT('',(0.285599332145,3.083870900258E-18)); +#4519 = CARTESIAN_POINT('',(0.356999165181,-8.263207172861E-19)); +#4520 = CARTESIAN_POINT('',(0.428398998217,2.214119688859E-19)); +#4521 = CARTESIAN_POINT('',(0.499798831253,-5.932715825757E-20)); +#4522 = CARTESIAN_POINT('',(0.571198664289,1.589666414435E-20)); +#4523 = CARTESIAN_POINT('',(0.642598497325,-4.259498319827E-21)); +#4524 = CARTESIAN_POINT('',(0.713998330361,1.141329134959E-21)); +#4525 = CARTESIAN_POINT('',(0.785398163397,-3.058182200105E-22)); +#4526 = CARTESIAN_POINT('',(0.856797996434,8.194374508283E-23)); +#4527 = CARTESIAN_POINT('',(0.92819782947,-2.195676032076E-23)); +#4528 = CARTESIAN_POINT('',(0.999597662506,5.883296200207E-24)); +#4529 = CARTESIAN_POINT('',(1.070997495542,-1.576424480068E-24)); +#4530 = CARTESIAN_POINT('',(1.142397328578,4.224017200658E-25)); +#4531 = CARTESIAN_POINT('',(1.213797161614,-1.131824001953E-25)); +#4532 = CARTESIAN_POINT('',(1.28519699465,3.032788071531E-26)); +#4533 = CARTESIAN_POINT('',(1.356596827686,-8.12912266596E-27)); +#4534 = CARTESIAN_POINT('',(1.427996660723,2.188609948528E-27)); +#4535 = CARTESIAN_POINT('',(1.499396493759,-6.253171281508E-28)); +#4536 = CARTESIAN_POINT('',(1.54699638245,0.)); +#4537 = CARTESIAN_POINT('',(1.570796326795,0.)); +#4538 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4539 = ORIENTED_EDGE('',*,*,#3972,.F.); +#4540 = ORIENTED_EDGE('',*,*,#4541,.F.); +#4541 = EDGE_CURVE('',#3366,#3951,#4542,.T.); +#4542 = SURFACE_CURVE('',#4543,(#4548,#4554),.PCURVE_S1.); +#4543 = CIRCLE('',#4544,1.5E-02); +#4544 = AXIS2_PLACEMENT_3D('',#4545,#4546,#4547); +#4545 = CARTESIAN_POINT('',(0.785,0.385,1.5E-02)); +#4546 = DIRECTION('',(0.,1.367178939504E-16,-1.)); +#4547 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#4548 = PCURVE('',#3558,#4549); +#4549 = DEFINITIONAL_REPRESENTATION('',(#4550),#4553); +#4550 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4551,#4552),.UNSPECIFIED.,.F., + .F.,(2,2),(0.,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); +#4551 = CARTESIAN_POINT('',(0.,0.285)); +#4552 = CARTESIAN_POINT('',(1.570796326795,0.285)); +#4553 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4554 = PCURVE('',#3406,#4555); +#4555 = DEFINITIONAL_REPRESENTATION('',(#4556),#4582); +#4556 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4557,#4558,#4559,#4560,#4561, + #4562,#4563,#4564,#4565,#4566,#4567,#4568,#4569,#4570,#4571,#4572, + #4573,#4574,#4575,#4576,#4577,#4578,#4579,#4580,#4581), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), + (0.,7.139983303613E-02,0.142799666072,0.214199499108,0.285599332145, + 0.356999165181,0.428398998217,0.499798831253,0.571198664289, + 0.642598497325,0.713998330361,0.785398163397,0.856797996434, + 0.92819782947,0.999597662506,1.070997495542,1.142397328578, + 1.213797161614,1.28519699465,1.356596827687,1.427996660723, + 1.499396493759,1.570796326795),.QUASI_UNIFORM_KNOTS.); +#4557 = CARTESIAN_POINT('',(1.570796326795,-2.312964634636E-16)); +#4558 = CARTESIAN_POINT('',(1.54699638245,-2.312964634636E-16)); +#4559 = CARTESIAN_POINT('',(1.499396493759,-2.312964634644E-16)); +#4560 = CARTESIAN_POINT('',(1.427996660723,-2.312964634608E-16)); +#4561 = CARTESIAN_POINT('',(1.356596827686,-2.312964634738E-16)); +#4562 = CARTESIAN_POINT('',(1.28519699465,-2.312964634253E-16)); +#4563 = CARTESIAN_POINT('',(1.213797161614,-2.312964636062E-16)); +#4564 = CARTESIAN_POINT('',(1.142397328578,-2.312964629312E-16)); +#4565 = CARTESIAN_POINT('',(1.070997495542,-2.312964654505E-16)); +#4566 = CARTESIAN_POINT('',(0.999597662506,-2.312964560482E-16)); +#4567 = CARTESIAN_POINT('',(0.92819782947,-2.312964911382E-16)); +#4568 = CARTESIAN_POINT('',(0.856797996434,-2.312963601803E-16)); +#4569 = CARTESIAN_POINT('',(0.785398163397,-2.31296848922E-16)); +#4570 = CARTESIAN_POINT('',(0.713998330361,-2.312950249133E-16)); +#4571 = CARTESIAN_POINT('',(0.642598497325,-2.313018322062E-16)); +#4572 = CARTESIAN_POINT('',(0.571198664289,-2.312764270431E-16)); +#4573 = CARTESIAN_POINT('',(0.499798831253,-2.313712404026E-16)); +#4574 = CARTESIAN_POINT('',(0.428398998217,-2.310173921278E-16)); +#4575 = CARTESIAN_POINT('',(0.356999165181,-2.323379718677E-16)); +#4576 = CARTESIAN_POINT('',(0.285599332145,-2.27409501183E-16)); +#4577 = CARTESIAN_POINT('',(0.214199499108,-2.458028041816E-16)); +#4578 = CARTESIAN_POINT('',(0.142799666072,-1.771580628719E-16)); +#4579 = CARTESIAN_POINT('',(7.139983303613E-02,-4.333437251123E-16)); +#4580 = CARTESIAN_POINT('',(2.379994434538E-02,2.04054879989E-16)); +#4581 = CARTESIAN_POINT('',(0.,8.881784197001E-16)); +#4582 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4583 = ORIENTED_EDGE('',*,*,#3544,.F.); +#4584 = ADVANCED_FACE('',(#4585),#3766,.T.); +#4585 = FACE_BOUND('',#4586,.T.); +#4586 = EDGE_LOOP('',(#4587,#4588,#4589)); +#4587 = ORIENTED_EDGE('',*,*,#4342,.T.); +#4588 = ORIENTED_EDGE('',*,*,#4497,.T.); +#4589 = ORIENTED_EDGE('',*,*,#3752,.F.); +#4590 = ADVANCED_FACE('',(#4591),#2978,.T.); +#4591 = FACE_BOUND('',#4592,.T.); +#4592 = EDGE_LOOP('',(#4593,#4594,#4595)); +#4593 = ORIENTED_EDGE('',*,*,#4440,.T.); +#4594 = ORIENTED_EDGE('',*,*,#2964,.T.); +#4595 = ORIENTED_EDGE('',*,*,#4596,.F.); +#4596 = EDGE_CURVE('',#3781,#2787,#4597,.T.); +#4597 = SURFACE_CURVE('',#4598,(#4603,#4609),.PCURVE_S1.); +#4598 = CIRCLE('',#4599,1.5E-02); +#4599 = AXIS2_PLACEMENT_3D('',#4600,#4601,#4602); +#4600 = CARTESIAN_POINT('',(-0.785,-0.385,0.285)); +#4601 = DIRECTION('',(-0.,1.,1.367178939504E-16)); +#4602 = DIRECTION('',(1.,0.,0.)); +#4603 = PCURVE('',#2978,#4604); +#4604 = DEFINITIONAL_REPRESENTATION('',(#4605),#4608); +#4605 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4606,#4607),.UNSPECIFIED.,.F., + .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); +#4606 = CARTESIAN_POINT('',(3.14159265359,0.)); +#4607 = CARTESIAN_POINT('',(3.14159265359,1.570796326795)); +#4608 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4609 = PCURVE('',#2850,#4610); +#4610 = DEFINITIONAL_REPRESENTATION('',(#4611),#4614); +#4611 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4612,#4613),.UNSPECIFIED.,.F., + .F.,(2,2),(3.14159265359,4.712388980385),.PIECEWISE_BEZIER_KNOTS.); +#4612 = CARTESIAN_POINT('',(0.,1.5E-02)); +#4613 = CARTESIAN_POINT('',(1.570796326795,1.5E-02)); +#4614 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4615 = ADVANCED_FACE('',(#4616),#3111,.T.); +#4616 = FACE_BOUND('',#4617,.T.); +#4617 = EDGE_LOOP('',(#4618,#4619,#4620)); +#4618 = ORIENTED_EDGE('',*,*,#3097,.T.); +#4619 = ORIENTED_EDGE('',*,*,#4419,.T.); +#4620 = ORIENTED_EDGE('',*,*,#4621,.F.); +#4621 = EDGE_CURVE('',#3045,#3832,#4622,.T.); +#4622 = SURFACE_CURVE('',#4623,(#4628,#4634),.PCURVE_S1.); +#4623 = CIRCLE('',#4624,1.5E-02); +#4624 = AXIS2_PLACEMENT_3D('',#4625,#4626,#4627); +#4625 = CARTESIAN_POINT('',(-0.785,-0.385,1.5E-02)); +#4626 = DIRECTION('',(-0.,1.,1.367178939504E-16)); +#4627 = DIRECTION('',(1.,0.,0.)); +#4628 = PCURVE('',#3111,#4629); +#4629 = DEFINITIONAL_REPRESENTATION('',(#4630),#4633); +#4630 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4631,#4632),.UNSPECIFIED.,.F., + .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); +#4631 = CARTESIAN_POINT('',(3.14159265359,-1.570796326795)); +#4632 = CARTESIAN_POINT('',(3.14159265359,0.)); +#4633 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4634 = PCURVE('',#3614,#4635); +#4635 = DEFINITIONAL_REPRESENTATION('',(#4636),#4639); +#4636 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4637,#4638),.UNSPECIFIED.,.F., + .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); +#4637 = CARTESIAN_POINT('',(4.712388980385,0.785)); +#4638 = CARTESIAN_POINT('',(3.14159265359,0.785)); +#4639 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4640 = ADVANCED_FACE('',(#4641),#3406,.T.); +#4641 = FACE_BOUND('',#4642,.T.); +#4642 = EDGE_LOOP('',(#4643,#4644,#4645)); +#4643 = ORIENTED_EDGE('',*,*,#4541,.T.); +#4644 = ORIENTED_EDGE('',*,*,#4473,.T.); +#4645 = ORIENTED_EDGE('',*,*,#3392,.F.); +#4646 = ADVANCED_FACE('',(#4647),#1735,.T.); +#4647 = FACE_BOUND('',#4648,.T.); +#4648 = EDGE_LOOP('',(#4649,#4650,#4651,#4652)); +#4649 = ORIENTED_EDGE('',*,*,#3681,.F.); +#4650 = ORIENTED_EDGE('',*,*,#1721,.F.); +#4651 = ORIENTED_EDGE('',*,*,#3731,.F.); +#4652 = ORIENTED_EDGE('',*,*,#4038,.F.); +#4653 = ADVANCED_FACE('',(#4654),#2850,.T.); +#4654 = FACE_BOUND('',#4655,.T.); +#4655 = EDGE_LOOP('',(#4656,#4657,#4658,#4724)); +#4656 = ORIENTED_EDGE('',*,*,#4596,.T.); +#4657 = ORIENTED_EDGE('',*,*,#2836,.F.); +#4658 = ORIENTED_EDGE('',*,*,#4659,.F.); +#4659 = EDGE_CURVE('',#3783,#2810,#4660,.T.); +#4660 = SURFACE_CURVE('',#4661,(#4666,#4695),.PCURVE_S1.); +#4661 = CIRCLE('',#4662,1.5E-02); +#4662 = AXIS2_PLACEMENT_3D('',#4663,#4664,#4665); +#4663 = CARTESIAN_POINT('',(-0.785,0.385,0.285)); +#4664 = DIRECTION('',(0.,1.,-3.477289347668E-15)); +#4665 = DIRECTION('',(0.,3.477289347668E-15,1.)); +#4666 = PCURVE('',#2850,#4667); +#4667 = DEFINITIONAL_REPRESENTATION('',(#4668),#4694); +#4668 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4669,#4670,#4671,#4672,#4673, + #4674,#4675,#4676,#4677,#4678,#4679,#4680,#4681,#4682,#4683,#4684, + #4685,#4686,#4687,#4688,#4689,#4690,#4691,#4692,#4693), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), + (4.712388980385,4.783788813421,4.855188646457,4.926588479493, + 4.997988312529,5.069388145565,5.140787978601,5.212187811638, + 5.283587644674,5.35498747771,5.426387310746,5.497787143782, + 5.569186976818,5.640586809854,5.711986642891,5.783386475927, + 5.854786308963,5.926186141999,5.997585975035,6.068985808071, + 6.140385641107,6.211785474143,6.28318530718),.QUASI_UNIFORM_KNOTS.); +#4669 = CARTESIAN_POINT('',(0.,0.785)); +#4670 = CARTESIAN_POINT('',(2.379994434538E-02,0.785)); +#4671 = CARTESIAN_POINT('',(7.139983303613E-02,0.785)); +#4672 = CARTESIAN_POINT('',(0.142799666072,0.785)); +#4673 = CARTESIAN_POINT('',(0.214199499108,0.785)); +#4674 = CARTESIAN_POINT('',(0.285599332145,0.785)); +#4675 = CARTESIAN_POINT('',(0.356999165181,0.785)); +#4676 = CARTESIAN_POINT('',(0.428398998217,0.785)); +#4677 = CARTESIAN_POINT('',(0.499798831253,0.785)); +#4678 = CARTESIAN_POINT('',(0.571198664289,0.785)); +#4679 = CARTESIAN_POINT('',(0.642598497325,0.785)); +#4680 = CARTESIAN_POINT('',(0.713998330361,0.785)); +#4681 = CARTESIAN_POINT('',(0.785398163397,0.785)); +#4682 = CARTESIAN_POINT('',(0.856797996434,0.785)); +#4683 = CARTESIAN_POINT('',(0.92819782947,0.785)); +#4684 = CARTESIAN_POINT('',(0.999597662506,0.785)); +#4685 = CARTESIAN_POINT('',(1.070997495542,0.785)); +#4686 = CARTESIAN_POINT('',(1.142397328578,0.785)); +#4687 = CARTESIAN_POINT('',(1.213797161614,0.785)); +#4688 = CARTESIAN_POINT('',(1.28519699465,0.785)); +#4689 = CARTESIAN_POINT('',(1.356596827686,0.785)); +#4690 = CARTESIAN_POINT('',(1.427996660723,0.785)); +#4691 = CARTESIAN_POINT('',(1.499396493759,0.785)); +#4692 = CARTESIAN_POINT('',(1.54699638245,0.785)); +#4693 = CARTESIAN_POINT('',(1.570796326795,0.785)); +#4694 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4695 = PCURVE('',#3716,#4696); +#4696 = DEFINITIONAL_REPRESENTATION('',(#4697),#4723); +#4697 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4698,#4699,#4700,#4701,#4702, + #4703,#4704,#4705,#4706,#4707,#4708,#4709,#4710,#4711,#4712,#4713, + #4714,#4715,#4716,#4717,#4718,#4719,#4720,#4721,#4722), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4), + (4.712388980385,4.783788813421,4.855188646457,4.926588479493, + 4.997988312529,5.069388145565,5.140787978601,5.212187811638, + 5.283587644674,5.35498747771,5.426387310746,5.497787143782, + 5.569186976818,5.640586809854,5.711986642891,5.783386475927, + 5.854786308963,5.926186141999,5.997585975035,6.068985808071, + 6.140385641107,6.211785474143,6.28318530718),.QUASI_UNIFORM_KNOTS.); +#4698 = CARTESIAN_POINT('',(3.14159265359,0.)); +#4699 = CARTESIAN_POINT('',(3.14159265359,2.379994434538E-02)); +#4700 = CARTESIAN_POINT('',(3.14159265359,7.139983303613E-02)); +#4701 = CARTESIAN_POINT('',(3.14159265359,0.142799666072)); +#4702 = CARTESIAN_POINT('',(3.14159265359,0.214199499108)); +#4703 = CARTESIAN_POINT('',(3.14159265359,0.285599332145)); +#4704 = CARTESIAN_POINT('',(3.14159265359,0.356999165181)); +#4705 = CARTESIAN_POINT('',(3.14159265359,0.428398998217)); +#4706 = CARTESIAN_POINT('',(3.14159265359,0.499798831253)); +#4707 = CARTESIAN_POINT('',(3.14159265359,0.571198664289)); +#4708 = CARTESIAN_POINT('',(3.14159265359,0.642598497325)); +#4709 = CARTESIAN_POINT('',(3.14159265359,0.713998330361)); +#4710 = CARTESIAN_POINT('',(3.14159265359,0.785398163397)); +#4711 = CARTESIAN_POINT('',(3.14159265359,0.856797996434)); +#4712 = CARTESIAN_POINT('',(3.14159265359,0.92819782947)); +#4713 = CARTESIAN_POINT('',(3.14159265359,0.999597662506)); +#4714 = CARTESIAN_POINT('',(3.14159265359,1.070997495542)); +#4715 = CARTESIAN_POINT('',(3.14159265359,1.142397328578)); +#4716 = CARTESIAN_POINT('',(3.14159265359,1.213797161614)); +#4717 = CARTESIAN_POINT('',(3.14159265359,1.28519699465)); +#4718 = CARTESIAN_POINT('',(3.14159265359,1.356596827686)); +#4719 = CARTESIAN_POINT('',(3.14159265359,1.427996660723)); +#4720 = CARTESIAN_POINT('',(3.14159265359,1.499396493759)); +#4721 = CARTESIAN_POINT('',(3.14159265359,1.54699638245)); +#4722 = CARTESIAN_POINT('',(3.14159265359,1.570796326795)); +#4723 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4724 = ORIENTED_EDGE('',*,*,#3780,.F.); +#4725 = ADVANCED_FACE('',(#4726),#3614,.T.); +#4726 = FACE_BOUND('',#4727,.T.); +#4727 = EDGE_LOOP('',(#4728,#4729,#4730,#4750)); +#4728 = ORIENTED_EDGE('',*,*,#4621,.T.); +#4729 = ORIENTED_EDGE('',*,*,#3831,.F.); +#4730 = ORIENTED_EDGE('',*,*,#4731,.F.); +#4731 = EDGE_CURVE('',#3265,#3810,#4732,.T.); +#4732 = SURFACE_CURVE('',#4733,(#4738,#4744),.PCURVE_S1.); +#4733 = CIRCLE('',#4734,1.5E-02); +#4734 = AXIS2_PLACEMENT_3D('',#4735,#4736,#4737); +#4735 = CARTESIAN_POINT('',(-0.785,0.385,1.5E-02)); +#4736 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#4737 = DIRECTION('',(-1.,0.,-0.)); +#4738 = PCURVE('',#3614,#4739); +#4739 = DEFINITIONAL_REPRESENTATION('',(#4740),#4743); +#4740 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4741,#4742),.UNSPECIFIED.,.F., + .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); +#4741 = CARTESIAN_POINT('',(4.712388980385,1.5E-02)); +#4742 = CARTESIAN_POINT('',(3.14159265359,1.5E-02)); +#4743 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4744 = PCURVE('',#3300,#4745); +#4745 = DEFINITIONAL_REPRESENTATION('',(#4746),#4749); +#4746 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4747,#4748),.UNSPECIFIED.,.F., + .F.,(2,2),(4.712388980385,6.28318530718),.PIECEWISE_BEZIER_KNOTS.); +#4747 = CARTESIAN_POINT('',(3.14159265359,-1.570796326795)); +#4748 = CARTESIAN_POINT('',(3.14159265359,0.)); +#4749 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4750 = ORIENTED_EDGE('',*,*,#3600,.F.); +#4751 = ADVANCED_FACE('',(#4752),#3253,.T.); +#4752 = FACE_BOUND('',#4753,.T.); +#4753 = EDGE_LOOP('',(#4754,#4755,#4756,#4757)); +#4754 = ORIENTED_EDGE('',*,*,#3237,.F.); +#4755 = ORIENTED_EDGE('',*,*,#4017,.F.); +#4756 = ORIENTED_EDGE('',*,*,#3343,.F.); +#4757 = ORIENTED_EDGE('',*,*,#4083,.F.); +#4758 = ADVANCED_FACE('',(#4759),#3716,.T.); +#4759 = FACE_BOUND('',#4760,.T.); +#4760 = EDGE_LOOP('',(#4761,#4762,#4763)); +#4761 = ORIENTED_EDGE('',*,*,#4659,.T.); +#4762 = ORIENTED_EDGE('',*,*,#3702,.T.); +#4763 = ORIENTED_EDGE('',*,*,#4764,.F.); +#4764 = EDGE_CURVE('',#3783,#3450,#4765,.T.); +#4765 = SURFACE_CURVE('',#4766,(#4771,#4777),.PCURVE_S1.); +#4766 = CIRCLE('',#4767,1.5E-02); +#4767 = AXIS2_PLACEMENT_3D('',#4768,#4769,#4770); +#4768 = CARTESIAN_POINT('',(-0.785,0.385,0.285)); +#4769 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#4770 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#4771 = PCURVE('',#3716,#4772); +#4772 = DEFINITIONAL_REPRESENTATION('',(#4773),#4776); +#4773 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4774,#4775),.UNSPECIFIED.,.F., + .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); +#4774 = CARTESIAN_POINT('',(3.14159265359,0.)); +#4775 = CARTESIAN_POINT('',(1.570796326795,0.)); +#4776 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4777 = PCURVE('',#3465,#4778); +#4778 = DEFINITIONAL_REPRESENTATION('',(#4779),#4782); +#4779 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4780,#4781),.UNSPECIFIED.,.F., + .F.,(2,2),(1.570796326795,3.14159265359),.PIECEWISE_BEZIER_KNOTS.); +#4780 = CARTESIAN_POINT('',(4.712388980385,1.5E-02)); +#4781 = CARTESIAN_POINT('',(6.28318530718,1.5E-02)); +#4782 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4783 = ADVANCED_FACE('',(#4784),#3300,.T.); +#4784 = FACE_BOUND('',#4785,.T.); +#4785 = EDGE_LOOP('',(#4786,#4787,#4788)); +#4786 = ORIENTED_EDGE('',*,*,#3286,.T.); +#4787 = ORIENTED_EDGE('',*,*,#4731,.T.); +#4788 = ORIENTED_EDGE('',*,*,#4789,.F.); +#4789 = EDGE_CURVE('',#3206,#3810,#4790,.T.); +#4790 = SURFACE_CURVE('',#4791,(#4796,#4802),.PCURVE_S1.); +#4791 = CIRCLE('',#4792,1.5E-02); +#4792 = AXIS2_PLACEMENT_3D('',#4793,#4794,#4795); +#4793 = CARTESIAN_POINT('',(-0.785,0.385,1.5E-02)); +#4794 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#4795 = DIRECTION('',(0.,1.,1.367178939504E-16)); +#4796 = PCURVE('',#3300,#4797); +#4797 = DEFINITIONAL_REPRESENTATION('',(#4798),#4801); +#4798 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4799,#4800),.UNSPECIFIED.,.F., + .F.,(2,2),(0.,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); +#4799 = CARTESIAN_POINT('',(1.570796326795,-2.312964634636E-16)); +#4800 = CARTESIAN_POINT('',(3.14159265359,-2.312964634636E-16)); +#4801 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4802 = PCURVE('',#3465,#4803); +#4803 = DEFINITIONAL_REPRESENTATION('',(#4804),#4807); +#4804 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#4805,#4806),.UNSPECIFIED.,.F., + .F.,(2,2),(0.,1.570796326795),.PIECEWISE_BEZIER_KNOTS.); +#4805 = CARTESIAN_POINT('',(6.28318530718,0.285)); +#4806 = CARTESIAN_POINT('',(4.712388980385,0.285)); +#4807 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4808 = ADVANCED_FACE('',(#4809),#3465,.T.); +#4809 = FACE_BOUND('',#4810,.T.); +#4810 = EDGE_LOOP('',(#4811,#4812,#4813,#4814)); +#4811 = ORIENTED_EDGE('',*,*,#4764,.T.); +#4812 = ORIENTED_EDGE('',*,*,#3449,.F.); +#4813 = ORIENTED_EDGE('',*,*,#4789,.T.); +#4814 = ORIENTED_EDGE('',*,*,#3809,.F.); +#4815 = ADVANCED_FACE('',(#4816,#5323),#4846,.T.); +#4816 = FACE_BOUND('',#4817,.T.); +#4817 = EDGE_LOOP('',(#4818,#4880,#4919,#4958,#5013,#5060,#5115,#5154, + #5201,#5232,#5271,#5302)); +#4818 = ORIENTED_EDGE('',*,*,#4819,.F.); +#4819 = EDGE_CURVE('',#4820,#4822,#4824,.T.); +#4820 = VERTEX_POINT('',#4821); +#4821 = CARTESIAN_POINT('',(-7.247088587182E-02,0.27183186849,0.302)); +#4822 = VERTEX_POINT('',#4823); +#4823 = CARTESIAN_POINT('',(-3.609666090745E-02,0.205977543236,0.302)); +#4824 = SURFACE_CURVE('',#4825,(#4845,#4873),.PCURVE_S1.); +#4825 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4826,#4827,#4828,#4829,#4830, + #4831,#4832,#4833,#4834,#4835,#4836,#4837,#4838,#4839,#4840,#4841, + #4842,#4843,#4844),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,4.524912127705E-02,8.904597190023E-02,0.133753272651, + 0.179019764033,0.226220404522,0.276333290597,0.330501923748, + 0.389318397234,0.451843900854,0.517625875636,0.587611593084, + 0.660911148885,0.73911673359,0.821057935489,0.908156625983,1.), + .UNSPECIFIED.); +#4826 = CARTESIAN_POINT('',(-7.247088587182E-02,0.27183186849,0.302)); +#4827 = CARTESIAN_POINT('',(-7.123111326146E-02,0.271789034478,0.302)); +#4828 = CARTESIAN_POINT('',(-6.87913585456E-02,0.271704741213,0.302)); +#4829 = CARTESIAN_POINT('',(-6.521400133993E-02,0.270829239128,0.302)); +#4830 = CARTESIAN_POINT('',(-6.181959741819E-02,0.269436686784,0.302)); +#4831 = CARTESIAN_POINT('',(-5.857759922046E-02,0.267513615395,0.302)); +#4832 = CARTESIAN_POINT('',(-5.558955412587E-02,0.264987154949,0.302)); +#4833 = CARTESIAN_POINT('',(-5.273272181847E-02,0.261974988972,0.302)); +#4834 = CARTESIAN_POINT('',(-5.006131531264E-02,0.258390048367,0.302)); +#4835 = CARTESIAN_POINT('',(-4.756613533398E-02,0.254282218988,0.302)); +#4836 = CARTESIAN_POINT('',(-4.52586527869E-02,0.249707537836,0.302)); +#4837 = CARTESIAN_POINT('',(-4.319491037047E-02,0.244685579719,0.302)); +#4838 = CARTESIAN_POINT('',(-4.14179624297E-02,0.239245226009,0.302)); +#4839 = CARTESIAN_POINT('',(-3.987653488647E-02,0.233383334155,0.302)); +#4840 = CARTESIAN_POINT('',(-3.854573071684E-02,0.227135373781,0.302)); +#4841 = CARTESIAN_POINT('',(-3.746397790014E-02,0.220456583909,0.302)); +#4842 = CARTESIAN_POINT('',(-3.665542932565E-02,0.213363880641,0.302)); +#4843 = CARTESIAN_POINT('',(-3.62861806139E-02,0.208482796667,0.302)); +#4844 = CARTESIAN_POINT('',(-3.609666090745E-02,0.205977543236,0.302)); +#4845 = PCURVE('',#4846,#4851); +#4846 = PLANE('',#4847); +#4847 = AXIS2_PLACEMENT_3D('',#4848,#4849,#4850); +#4848 = CARTESIAN_POINT('',(-4.381409378144E-02,0.246121943925,0.302)); +#4849 = DIRECTION('',(-5.581539966433E-14,-3.500524647917E-13,1.)); +#4850 = DIRECTION('',(0.,-1.,-3.500524647917E-13)); +#4851 = DEFINITIONAL_REPRESENTATION('',(#4852),#4872); +#4852 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4853,#4854,#4855,#4856,#4857, + #4858,#4859,#4860,#4861,#4862,#4863,#4864,#4865,#4866,#4867,#4868, + #4869,#4870,#4871),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,4.524912127705E-02,8.904597190023E-02,0.133753272651, + 0.179019764033,0.226220404522,0.276333290597,0.330501923748, + 0.389318397234,0.451843900854,0.517625875636,0.587611593084, + 0.660911148885,0.73911673359,0.821057935489,0.908156625983,1.), + .UNSPECIFIED.); +#4853 = CARTESIAN_POINT('',(-2.570992456448E-02,-2.865679209039E-02)); +#4854 = CARTESIAN_POINT('',(-2.566709055302E-02,-2.741701948003E-02)); +#4855 = CARTESIAN_POINT('',(-2.558279728778E-02,-2.497726476416E-02)); +#4856 = CARTESIAN_POINT('',(-2.470729520313E-02,-2.13999075585E-02)); +#4857 = CARTESIAN_POINT('',(-2.331474285863E-02,-1.800550363675E-02)); +#4858 = CARTESIAN_POINT('',(-2.139167147021E-02,-1.476350543903E-02)); +#4859 = CARTESIAN_POINT('',(-1.886521102367E-02,-1.177546034444E-02)); +#4860 = CARTESIAN_POINT('',(-1.585304504689E-02,-8.918628037038E-03)); +#4861 = CARTESIAN_POINT('',(-1.226810444187E-02,-6.247221531208E-03)); +#4862 = CARTESIAN_POINT('',(-8.160275062481E-03,-3.752041552545E-03)); +#4863 = CARTESIAN_POINT('',(-3.585593910492E-03,-1.444559005462E-03)); +#4864 = CARTESIAN_POINT('',(1.436364206355E-03,6.191834109706E-04)); +#4865 = CARTESIAN_POINT('',(6.876717915878E-03,2.396131351738E-03)); +#4866 = CARTESIAN_POINT('',(1.273860976969E-02,3.937558894963E-03)); +#4867 = CARTESIAN_POINT('',(1.898657014377E-02,5.268363064593E-03)); +#4868 = CARTESIAN_POINT('',(2.566536001595E-02,6.350115881294E-03)); +#4869 = CARTESIAN_POINT('',(3.27580632837E-02,7.158664455786E-03)); +#4870 = CARTESIAN_POINT('',(3.76391472582E-02,7.527913167532E-03)); +#4871 = CARTESIAN_POINT('',(4.014440068926E-02,7.717432873984E-03)); +#4872 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4873 = PCURVE('',#1798,#4874); +#4874 = DEFINITIONAL_REPRESENTATION('',(#4875),#4879); +#4875 = LINE('',#4876,#4877); +#4876 = CARTESIAN_POINT('',(0.,0.)); +#4877 = VECTOR('',#4878,1.); +#4878 = DIRECTION('',(1.,0.)); +#4879 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4880 = ORIENTED_EDGE('',*,*,#4881,.F.); +#4881 = EDGE_CURVE('',#4882,#4820,#4884,.T.); +#4882 = VERTEX_POINT('',#4883); +#4883 = CARTESIAN_POINT('',(-0.104677766816,0.24266046035,0.302)); +#4884 = SURFACE_CURVE('',#4885,(#4897,#4912),.PCURVE_S1.); +#4885 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4886,#4887,#4888,#4889,#4890, + #4891,#4892,#4893,#4894,#4895,#4896),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.162869879318,0.309908072212,0.444611029049, + 0.566630874761,0.679290220773,0.787329317068,0.892674268692,1.), + .UNSPECIFIED.); +#4886 = CARTESIAN_POINT('',(-0.104677766816,0.24266046035,0.302)); +#4887 = CARTESIAN_POINT('',(-0.103670776854,0.244960208711,0.302)); +#4888 = CARTESIAN_POINT('',(-0.101754680893,0.249336159528,0.302)); +#4889 = CARTESIAN_POINT('',(-9.839592632308E-02,0.255320297364,0.302)); +#4890 = CARTESIAN_POINT('',(-9.478009908452E-02,0.260404284456,0.302)); +#4891 = CARTESIAN_POINT('',(-9.082335272275E-02,0.264520866709,0.302)); +#4892 = CARTESIAN_POINT('',(-8.666166759958E-02,0.267805334623,0.302)); +#4893 = CARTESIAN_POINT('',(-8.219684247592E-02,0.270172333349,0.302)); +#4894 = CARTESIAN_POINT('',(-7.740545369794E-02,0.271558280004,0.302)); +#4895 = CARTESIAN_POINT('',(-7.412592348181E-02,0.271740107823,0.302)); +#4896 = CARTESIAN_POINT('',(-7.247088587182E-02,0.27183186849,0.302)); +#4897 = PCURVE('',#4846,#4898); +#4898 = DEFINITIONAL_REPRESENTATION('',(#4899),#4911); +#4899 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4900,#4901,#4902,#4903,#4904, + #4905,#4906,#4907,#4908,#4909,#4910),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.162869879318,0.309908072212,0.444611029049, + 0.566630874761,0.679290220773,0.787329317068,0.892674268692,1.), + .UNSPECIFIED.); +#4900 = CARTESIAN_POINT('',(3.461483575258E-03,-6.086367303479E-02)); +#4901 = CARTESIAN_POINT('',(1.161735213633E-03,-5.985668307251E-02)); +#4902 = CARTESIAN_POINT('',(-3.214215602491E-03,-5.79405871114E-02)); +#4903 = CARTESIAN_POINT('',(-9.19835343927E-03,-5.458183254165E-02)); +#4904 = CARTESIAN_POINT('',(-1.428234053069E-02,-5.096600530309E-02)); +#4905 = CARTESIAN_POINT('',(-1.83989227834E-02,-4.700925894131E-02)); +#4906 = CARTESIAN_POINT('',(-2.168339069838E-02,-4.284757381814E-02)); +#4907 = CARTESIAN_POINT('',(-2.405038942414E-02,-3.838274869448E-02)); +#4908 = CARTESIAN_POINT('',(-2.543633607849E-02,-3.35913599165E-02)); +#4909 = CARTESIAN_POINT('',(-2.561816389771E-02,-3.031182970037E-02)); +#4910 = CARTESIAN_POINT('',(-2.570992456448E-02,-2.865679209039E-02)); +#4911 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4912 = PCURVE('',#2524,#4913); +#4913 = DEFINITIONAL_REPRESENTATION('',(#4914),#4918); +#4914 = LINE('',#4915,#4916); +#4915 = CARTESIAN_POINT('',(0.,0.)); +#4916 = VECTOR('',#4917,1.); +#4917 = DIRECTION('',(1.,0.)); +#4918 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4919 = ORIENTED_EDGE('',*,*,#4920,.F.); +#4920 = EDGE_CURVE('',#4921,#4882,#4923,.T.); +#4921 = VERTEX_POINT('',#4922); +#4922 = CARTESIAN_POINT('',(-0.118414567475,0.13523559228,0.302)); +#4923 = SURFACE_CURVE('',#4924,(#4936,#4951),.PCURVE_S1.); +#4924 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4925,#4926,#4927,#4928,#4929, + #4930,#4931,#4932,#4933,#4934,#4935),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.163989851333,0.316278722645,0.457451380616, + 0.587186603505,0.706146478246,0.814209291838,0.9121060393,1.), + .UNSPECIFIED.); +#4925 = CARTESIAN_POINT('',(-0.118414567475,0.13523559228,0.302)); +#4926 = CARTESIAN_POINT('',(-0.11838332671,0.141187250373,0.302)); +#4927 = CARTESIAN_POINT('',(-0.118323074267,0.152665904716,0.302)); +#4928 = CARTESIAN_POINT('',(-0.117632979738,0.169255859138,0.302)); +#4929 = CARTESIAN_POINT('',(-0.116586134114,0.184580864208,0.302)); +#4930 = CARTESIAN_POINT('',(-0.115100658621,0.198653552692,0.302)); +#4931 = CARTESIAN_POINT('',(-0.113255858169,0.211475596551,0.302)); +#4932 = CARTESIAN_POINT('',(-0.110868853378,0.223025395741,0.302)); +#4933 = CARTESIAN_POINT('',(-0.108207837657,0.233369508231,0.302)); +#4934 = CARTESIAN_POINT('',(-0.105811450735,0.239676666687,0.302)); +#4935 = CARTESIAN_POINT('',(-0.104677766816,0.24266046035,0.302)); +#4936 = PCURVE('',#4846,#4937); +#4937 = DEFINITIONAL_REPRESENTATION('',(#4938),#4950); +#4938 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4939,#4940,#4941,#4942,#4943, + #4944,#4945,#4946,#4947,#4948,#4949),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.163989851333,0.316278722645,0.457451380616, + 0.587186603505,0.706146478246,0.814209291838,0.9121060393,1.), + .UNSPECIFIED.); +#4939 = CARTESIAN_POINT('',(0.110886351645,-7.460047369319E-02)); +#4940 = CARTESIAN_POINT('',(0.104934693552,-7.456923292845E-02)); +#4941 = CARTESIAN_POINT('',(9.345603920924E-02,-7.450898048548E-02)); +#4942 = CARTESIAN_POINT('',(7.686608478684E-02,-7.381888595625E-02)); +#4943 = CARTESIAN_POINT('',(6.154107971688E-02,-7.27720403323E-02)); +#4944 = CARTESIAN_POINT('',(4.746839123276E-02,-7.128656483925E-02)); +#4945 = CARTESIAN_POINT('',(3.464634737405E-02,-6.944176438763E-02)); +#4946 = CARTESIAN_POINT('',(2.309654818436E-02,-6.705475959653E-02)); +#4947 = CARTESIAN_POINT('',(1.275243569459E-02,-6.439374387597E-02)); +#4948 = CARTESIAN_POINT('',(6.445277237641E-03,-6.199735695312E-02)); +#4949 = CARTESIAN_POINT('',(3.461483575258E-03,-6.086367303479E-02)); +#4950 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4951 = PCURVE('',#2464,#4952); +#4952 = DEFINITIONAL_REPRESENTATION('',(#4953),#4957); +#4953 = LINE('',#4954,#4955); +#4954 = CARTESIAN_POINT('',(0.,0.)); +#4955 = VECTOR('',#4956,1.); +#4956 = DIRECTION('',(1.,0.)); +#4957 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#4958 = ORIENTED_EDGE('',*,*,#4959,.F.); +#4959 = EDGE_CURVE('',#4960,#4921,#4962,.T.); +#4960 = VERTEX_POINT('',#4961); +#4961 = CARTESIAN_POINT('',(-7.33969623207E-02,1.170728373731E-02,0.302) + ); +#4962 = SURFACE_CURVE('',#4963,(#4983,#5006),.PCURVE_S1.); +#4963 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4964,#4965,#4966,#4967,#4968, + #4969,#4970,#4971,#4972,#4973,#4974,#4975,#4976,#4977,#4978,#4979, + #4980,#4981,#4982),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,3.453861246837E-02,6.844561282317E-02,0.103088374418, + 0.139789540524,0.179459960852,0.222893209036,0.270937746377, + 0.323550473319,0.381968236977,0.447495048941,0.520046487774, + 0.600261744899,0.688395601747,0.784195893454,0.888150015606,1.), + .UNSPECIFIED.); +#4964 = CARTESIAN_POINT('',(-7.33969623207E-02,1.170728373731E-02,0.302) + ); +#4965 = CARTESIAN_POINT('',(-7.503519306888E-02,1.179837087237E-02,0.302 + )); +#4966 = CARTESIAN_POINT('',(-7.828169602576E-02,1.197887942017E-02,0.302 + )); +#4967 = CARTESIAN_POINT('',(-8.301127451811E-02,1.337325584046E-02,0.302 + )); +#4968 = CARTESIAN_POINT('',(-8.744754199493E-02,1.570485771974E-02,0.302 + )); +#4969 = CARTESIAN_POINT('',(-9.164713313458E-02,1.89063949484E-02,0.302) + ); +#4970 = CARTESIAN_POINT('',(-9.564021982336E-02,2.296827736628E-02,0.302 + )); +#4971 = CARTESIAN_POINT('',(-9.933405102836E-02,2.798538248297E-02,0.302 + )); +#4972 = CARTESIAN_POINT('',(-0.102813411505,3.386929490553E-02,0.302)); +#4973 = CARTESIAN_POINT('',(-0.106076879017,4.067427145078E-02,0.302)); +#4974 = CARTESIAN_POINT('',(-0.109014183169,4.851860853335E-02,0.302)); +#4975 = CARTESIAN_POINT('',(-0.111553474109,5.74850114879E-02,0.302)); +#4976 = CARTESIAN_POINT('',(-0.113696339584,6.761074995223E-02,0.302)); +#4977 = CARTESIAN_POINT('',(-0.115402755346,7.890129237136E-02,0.302)); +#4978 = CARTESIAN_POINT('',(-0.116786851914,9.134346423712E-02,0.302)); +#4979 = CARTESIAN_POINT('',(-0.117740632709,0.104954001708,0.302)); +#4980 = CARTESIAN_POINT('',(-0.118292934223,0.119710594478,0.302)); +#4981 = CARTESIAN_POINT('',(-0.118373046011,0.129935885028,0.302)); +#4982 = CARTESIAN_POINT('',(-0.118414567475,0.13523559228,0.302)); +#4983 = PCURVE('',#4846,#4984); +#4984 = DEFINITIONAL_REPRESENTATION('',(#4985),#5005); +#4985 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#4986,#4987,#4988,#4989,#4990, + #4991,#4992,#4993,#4994,#4995,#4996,#4997,#4998,#4999,#5000,#5001, + #5002,#5003,#5004),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,3.453861246837E-02,6.844561282317E-02,0.103088374418, + 0.139789540524,0.179459960852,0.222893209036,0.270937746377, + 0.323550473319,0.381968236977,0.447495048941,0.520046487774, + 0.600261744899,0.688395601747,0.784195893454,0.888150015606,1.), + .UNSPECIFIED.); +#4986 = CARTESIAN_POINT('',(0.234414660188,-2.958286853927E-02)); +#4987 = CARTESIAN_POINT('',(0.234323573053,-3.122109928745E-02)); +#4988 = CARTESIAN_POINT('',(0.234143064505,-3.446760224432E-02)); +#4989 = CARTESIAN_POINT('',(0.232748688085,-3.919718073667E-02)); +#4990 = CARTESIAN_POINT('',(0.230417086205,-4.36334482135E-02)); +#4991 = CARTESIAN_POINT('',(0.227215548977,-4.783303935314E-02)); +#4992 = CARTESIAN_POINT('',(0.223153666559,-5.182612604193E-02)); +#4993 = CARTESIAN_POINT('',(0.218136561442,-5.551995724693E-02)); +#4994 = CARTESIAN_POINT('',(0.21225264902,-5.899931772338E-02)); +#4995 = CARTESIAN_POINT('',(0.205447672474,-6.226278523562E-02)); +#4996 = CARTESIAN_POINT('',(0.197603335392,-6.52000893873E-02)); +#4997 = CARTESIAN_POINT('',(0.188636932437,-6.773938032776E-02)); +#4998 = CARTESIAN_POINT('',(0.178511193973,-6.988224580222E-02)); +#4999 = CARTESIAN_POINT('',(0.167220651554,-7.158866156426E-02)); +#5000 = CARTESIAN_POINT('',(0.154778479688,-7.297275813208E-02)); +#5001 = CARTESIAN_POINT('',(0.141167942217,-7.392653892773E-02)); +#5002 = CARTESIAN_POINT('',(0.126411349447,-7.447884044135E-02)); +#5003 = CARTESIAN_POINT('',(0.116186058897,-7.455895222986E-02)); +#5004 = CARTESIAN_POINT('',(0.110886351645,-7.460047369319E-02)); +#5005 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5006 = PCURVE('',#2386,#5007); +#5007 = DEFINITIONAL_REPRESENTATION('',(#5008),#5012); +#5008 = LINE('',#5009,#5010); +#5009 = CARTESIAN_POINT('',(0.,0.)); +#5010 = VECTOR('',#5011,1.); +#5011 = DIRECTION('',(1.,0.)); +#5012 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5013 = ORIENTED_EDGE('',*,*,#5014,.F.); +#5014 = EDGE_CURVE('',#5015,#4960,#5017,.T.); +#5015 = VERTEX_POINT('',#5016); +#5016 = CARTESIAN_POINT('',(-3.280394464476E-02,9.958164899777E-02,0.302 + )); +#5017 = SURFACE_CURVE('',#5018,(#5034,#5053),.PCURVE_S1.); +#5018 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5019,#5020,#5021,#5022,#5023, + #5024,#5025,#5026,#5027,#5028,#5029,#5030,#5031,#5032,#5033), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.,0.113221785558, + 0.222436171247,0.328940652496,0.432255130071,0.529309240576, + 0.617114144544,0.696232162944,0.767885488567,0.832331289029, + 0.89049783785,0.945727959046,1.),.UNSPECIFIED.); +#5019 = CARTESIAN_POINT('',(-3.280394464476E-02,9.958164899777E-02,0.302 + )); +#5020 = CARTESIAN_POINT('',(-3.285068247282E-02,9.561742574692E-02,0.302 + )); +#5021 = CARTESIAN_POINT('',(-3.294250387868E-02,8.7829289943E-02,0.302) + ); +#5022 = CARTESIAN_POINT('',(-3.403991993243E-02,7.635791051934E-02,0.302 + )); +#5023 = CARTESIAN_POINT('',(-3.563885897094E-02,6.530119069559E-02,0.302 + )); +#5024 = CARTESIAN_POINT('',(-3.79324977146E-02,5.47980996706E-02,0.302) + ); +#5025 = CARTESIAN_POINT('',(-4.075645693448E-02,4.510629695093E-02,0.302 + )); +#5026 = CARTESIAN_POINT('',(-4.405403756395E-02,3.64614537813E-02,0.302) + ); +#5027 = CARTESIAN_POINT('',(-4.78912469162E-02,2.901693830372E-02,0.302) + ); +#5028 = CARTESIAN_POINT('',(-5.226403765844E-02,2.285668660356E-02,0.302 + )); +#5029 = CARTESIAN_POINT('',(-5.698235805124E-02,1.790570256346E-02,0.302 + )); +#5030 = CARTESIAN_POINT('',(-6.213476331485E-02,1.435456584981E-02,0.302 + )); +#5031 = CARTESIAN_POINT('',(-6.76423631163E-02,1.207195031537E-02,0.302) + ); +#5032 = CARTESIAN_POINT('',(-7.148998406786E-02,1.182812816265E-02,0.302 + )); +#5033 = CARTESIAN_POINT('',(-7.33969623207E-02,1.170728373731E-02,0.302) + ); +#5034 = PCURVE('',#4846,#5035); +#5035 = DEFINITIONAL_REPRESENTATION('',(#5036),#5052); +#5036 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5037,#5038,#5039,#5040,#5041, + #5042,#5043,#5044,#5045,#5046,#5047,#5048,#5049,#5050,#5051), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.,0.113221785558, + 0.222436171247,0.328940652496,0.432255130071,0.529309240576, + 0.617114144544,0.696232162944,0.767885488567,0.832331289029, + 0.89049783785,0.945727959046,1.),.UNSPECIFIED.); +#5037 = CARTESIAN_POINT('',(0.146540294927,1.101014913667E-02)); +#5038 = CARTESIAN_POINT('',(0.150504518178,1.096341130862E-02)); +#5039 = CARTESIAN_POINT('',(0.158292653982,1.087158990275E-02)); +#5040 = CARTESIAN_POINT('',(0.169764033406,9.774173849005E-03)); +#5041 = CARTESIAN_POINT('',(0.18082075323,8.175234810494E-03)); +#5042 = CARTESIAN_POINT('',(0.191323844254,5.881596066835E-03)); +#5043 = CARTESIAN_POINT('',(0.201015646974,3.057636846953E-03)); +#5044 = CARTESIAN_POINT('',(0.209660490144,-2.399437825131E-04)); +#5045 = CARTESIAN_POINT('',(0.217105005621,-4.077153134767E-03)); +#5046 = CARTESIAN_POINT('',(0.223265257322,-8.449943877001E-03)); +#5047 = CARTESIAN_POINT('',(0.228216241362,-1.316826426981E-02)); +#5048 = CARTESIAN_POINT('',(0.231767378075,-1.832066953342E-02)); +#5049 = CARTESIAN_POINT('',(0.23404999361,-2.382826933486E-02)); +#5050 = CARTESIAN_POINT('',(0.234293815762,-2.767589028642E-02)); +#5051 = CARTESIAN_POINT('',(0.234414660188,-2.958286853927E-02)); +#5052 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5053 = PCURVE('',#2300,#5054); +#5054 = DEFINITIONAL_REPRESENTATION('',(#5055),#5059); +#5055 = LINE('',#5056,#5057); +#5056 = CARTESIAN_POINT('',(0.,0.)); +#5057 = VECTOR('',#5058,1.); +#5058 = DIRECTION('',(1.,0.)); +#5059 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5060 = ORIENTED_EDGE('',*,*,#5061,.F.); +#5061 = EDGE_CURVE('',#5062,#5015,#5064,.T.); +#5062 = VERTEX_POINT('',#5063); +#5063 = CARTESIAN_POINT('',(-7.077307904887E-02,0.182928529397,0.302)); +#5064 = SURFACE_CURVE('',#5065,(#5085,#5108),.PCURVE_S1.); +#5065 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5066,#5067,#5068,#5069,#5070, + #5071,#5072,#5073,#5074,#5075,#5076,#5077,#5078,#5079,#5080,#5081, + #5082,#5083,#5084),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,3.910024550704E-02,7.852987763084E-02,0.118928225578, + 0.162015044301,0.208996859298,0.25998844003,0.31644188856, + 0.37843020031,0.444681646177,0.513469132587,0.585628807811, + 0.660965273436,0.739817703829,0.822305805272,0.909147543882,1.), + .UNSPECIFIED.); +#5066 = CARTESIAN_POINT('',(-7.077307904887E-02,0.182928529397,0.302)); +#5067 = CARTESIAN_POINT('',(-6.94803309952E-02,0.18285716252,0.302)); +#5068 = CARTESIAN_POINT('',(-6.688394457495E-02,0.18271382756,0.302)); +#5069 = CARTESIAN_POINT('',(-6.307157847479E-02,0.181604615714,0.302)); +#5070 = CARTESIAN_POINT('',(-5.948510645375E-02,0.179664997778,0.302)); +#5071 = CARTESIAN_POINT('',(-5.597967444796E-02,0.177128289029,0.302)); +#5072 = CARTESIAN_POINT('',(-5.271880050748E-02,0.173775202627,0.302)); +#5073 = CARTESIAN_POINT('',(-4.954265377184E-02,0.169772586474,0.302)); +#5074 = CARTESIAN_POINT('',(-4.658699436977E-02,0.165005793496,0.302)); +#5075 = CARTESIAN_POINT('',(-4.379752068548E-02,0.159574745355,0.302)); +#5076 = CARTESIAN_POINT('',(-4.118311321929E-02,0.153607508054,0.302)); +#5077 = CARTESIAN_POINT('',(-3.891957625667E-02,0.1471403943,0.302)); +#5078 = CARTESIAN_POINT('',(-3.702594451799E-02,0.140244693784,0.302)); +#5079 = CARTESIAN_POINT('',(-3.550503685029E-02,0.132919318513,0.302)); +#5080 = CARTESIAN_POINT('',(-3.425880330968E-02,0.125196618046,0.302)); +#5081 = CARTESIAN_POINT('',(-3.339929777312E-02,0.117038907652,0.302)); +#5082 = CARTESIAN_POINT('',(-3.287637911946E-02,0.108454970433,0.302)); +#5083 = CARTESIAN_POINT('',(-3.282845007022E-02,0.102583596867,0.302)); +#5084 = CARTESIAN_POINT('',(-3.280394464476E-02,9.958164899777E-02,0.302 + )); +#5085 = PCURVE('',#4846,#5086); +#5086 = DEFINITIONAL_REPRESENTATION('',(#5087),#5107); +#5087 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5088,#5089,#5090,#5091,#5092, + #5093,#5094,#5095,#5096,#5097,#5098,#5099,#5100,#5101,#5102,#5103, + #5104,#5105,#5106),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,3.910024550704E-02,7.852987763084E-02,0.118928225578, + 0.162015044301,0.208996859298,0.25998844003,0.31644188856, + 0.37843020031,0.444681646177,0.513469132587,0.585628807811, + 0.660965273436,0.739817703829,0.822305805272,0.909147543882,1.), + .UNSPECIFIED.); +#5088 = CARTESIAN_POINT('',(6.319341452806E-02,-2.695898526744E-02)); +#5089 = CARTESIAN_POINT('',(6.326478140503E-02,-2.566623721376E-02)); +#5090 = CARTESIAN_POINT('',(6.340811636476E-02,-2.306985079352E-02)); +#5091 = CARTESIAN_POINT('',(6.451732821118E-02,-1.925748469336E-02)); +#5092 = CARTESIAN_POINT('',(6.645694614692E-02,-1.567101267231E-02)); +#5093 = CARTESIAN_POINT('',(6.899365489633E-02,-1.216558066652E-02)); +#5094 = CARTESIAN_POINT('',(7.234674129808E-02,-8.904706726048E-03)); +#5095 = CARTESIAN_POINT('',(7.634935745131E-02,-5.7285599904E-03)); +#5096 = CARTESIAN_POINT('',(8.111615042933E-02,-2.772900588332E-03)); +#5097 = CARTESIAN_POINT('',(8.654719857003E-02,1.657309596062E-05)); +#5098 = CARTESIAN_POINT('',(9.251443587153E-02,2.630980562148E-03)); +#5099 = CARTESIAN_POINT('',(9.898154962501E-02,4.894517524768E-03)); +#5100 = CARTESIAN_POINT('',(0.105877250141,6.788149263441E-03)); +#5101 = CARTESIAN_POINT('',(0.113202625412,8.309056931143E-03)); +#5102 = CARTESIAN_POINT('',(0.120925325879,9.555290471759E-03)); +#5103 = CARTESIAN_POINT('',(0.129083036274,1.041479600832E-02)); +#5104 = CARTESIAN_POINT('',(0.137666973492,1.093771466198E-02)); +#5105 = CARTESIAN_POINT('',(0.143538347058,1.098564371122E-02)); +#5106 = CARTESIAN_POINT('',(0.146540294927,1.101014913667E-02)); +#5107 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5108 = PCURVE('',#2214,#5109); +#5109 = DEFINITIONAL_REPRESENTATION('',(#5110),#5114); +#5110 = LINE('',#5111,#5112); +#5111 = CARTESIAN_POINT('',(0.,0.)); +#5112 = VECTOR('',#5113,1.); +#5113 = DIRECTION('',(1.,0.)); +#5114 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5115 = ORIENTED_EDGE('',*,*,#5116,.F.); +#5116 = EDGE_CURVE('',#5117,#5062,#5119,.T.); +#5117 = VERTEX_POINT('',#5118); +#5118 = CARTESIAN_POINT('',(-0.101950986161,0.149075290321,0.302)); +#5119 = SURFACE_CURVE('',#5120,(#5132,#5147),.PCURVE_S1.); +#5120 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5121,#5122,#5123,#5124,#5125, + #5126,#5127,#5128,#5129,#5130,#5131),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.175283835451,0.332299704078,0.472554810512, + 0.598639509241,0.711841262423,0.814222371193,0.907964348435,1.), + .UNSPECIFIED.); +#5121 = CARTESIAN_POINT('',(-0.101950986161,0.149075290321,0.302)); +#5122 = CARTESIAN_POINT('',(-0.100981265585,0.151766974481,0.302)); +#5123 = CARTESIAN_POINT('',(-9.914288807753E-02,0.156869817235,0.302)); +#5124 = CARTESIAN_POINT('',(-9.588301419346E-02,0.163875713967,0.302)); +#5125 = CARTESIAN_POINT('',(-9.22244228133E-02,0.169757395329,0.302)); +#5126 = CARTESIAN_POINT('',(-8.826602994823E-02,0.174548849623,0.302)); +#5127 = CARTESIAN_POINT('',(-8.406865128987E-02,0.17825714053,0.302)); +#5128 = CARTESIAN_POINT('',(-7.977593951963E-02,0.180948913511,0.302)); +#5129 = CARTESIAN_POINT('',(-7.531736418141E-02,0.182628824989,0.302)); +#5130 = CARTESIAN_POINT('',(-7.227853711233E-02,0.182829241521,0.302)); +#5131 = CARTESIAN_POINT('',(-7.077307904887E-02,0.182928529397,0.302)); +#5132 = PCURVE('',#4846,#5133); +#5133 = DEFINITIONAL_REPRESENTATION('',(#5134),#5146); +#5134 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5135,#5136,#5137,#5138,#5139, + #5140,#5141,#5142,#5143,#5144,#5145),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.175283835451,0.332299704078,0.472554810512, + 0.598639509241,0.711841262423,0.814222371193,0.907964348435,1.), + .UNSPECIFIED.); +#5135 = CARTESIAN_POINT('',(9.704665360381E-02,-5.813689237976E-02)); +#5136 = CARTESIAN_POINT('',(9.435496944446E-02,-5.716717180354E-02)); +#5137 = CARTESIAN_POINT('',(8.925212669047E-02,-5.53287942961E-02)); +#5138 = CARTESIAN_POINT('',(8.224622995797E-02,-5.206892041202E-02)); +#5139 = CARTESIAN_POINT('',(7.63645485965E-02,-4.841032903187E-02)); +#5140 = CARTESIAN_POINT('',(7.157309430174E-02,-4.44519361668E-02)); +#5141 = CARTESIAN_POINT('',(6.786480339515E-02,-4.025455750843E-02)); +#5142 = CARTESIAN_POINT('',(6.517303041366E-02,-3.596184573819E-02)); +#5143 = CARTESIAN_POINT('',(6.349311893576E-02,-3.150327039997E-02)); +#5144 = CARTESIAN_POINT('',(6.329270240373E-02,-2.846444333089E-02)); +#5145 = CARTESIAN_POINT('',(6.319341452806E-02,-2.695898526744E-02)); +#5146 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5147 = PCURVE('',#2136,#5148); +#5148 = DEFINITIONAL_REPRESENTATION('',(#5149),#5153); +#5149 = LINE('',#5150,#5151); +#5150 = CARTESIAN_POINT('',(0.,0.)); +#5151 = VECTOR('',#5152,1.); +#5152 = DIRECTION('',(1.,0.)); +#5153 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5154 = ORIENTED_EDGE('',*,*,#5155,.F.); +#5155 = EDGE_CURVE('',#5156,#5117,#5158,.T.); +#5156 = VERTEX_POINT('',#5157); +#5157 = CARTESIAN_POINT('',(-8.795694204477E-02,0.234583015768,0.302)); +#5158 = SURFACE_CURVE('',#5159,(#5175,#5194),.PCURVE_S1.); +#5159 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5160,#5161,#5162,#5163,#5164, + #5165,#5166,#5167,#5168,#5169,#5170,#5171,#5172,#5173,#5174), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0., + 6.999263450657E-02,0.151179237049,0.244049347772,0.348788670798, + 0.406942105318,0.471758334761,0.54342234969,0.62140343022, + 0.705702457219,0.796988044797,0.895268939323,1.),.UNSPECIFIED.); +#5160 = CARTESIAN_POINT('',(-8.795694204477E-02,0.234583015768,0.302)); +#5161 = CARTESIAN_POINT('',(-8.888361475323E-02,0.232763596739,0.302)); +#5162 = CARTESIAN_POINT('',(-9.088516354541E-02,0.228833777801,0.302)); +#5163 = CARTESIAN_POINT('',(-9.332785897335E-02,0.222137746434,0.302)); +#5164 = CARTESIAN_POINT('',(-9.569383979249E-02,0.214361845903,0.302)); +#5165 = CARTESIAN_POINT('',(-9.74353279371E-02,0.207108129224,0.302)); +#5166 = CARTESIAN_POINT('',(-9.874307831626E-02,0.200598815029,0.302)); +#5167 = CARTESIAN_POINT('',(-9.953147433189E-02,0.194978001803,0.302)); +#5168 = CARTESIAN_POINT('',(-0.10024490812,0.188767583757,0.302)); +#5169 = CARTESIAN_POINT('',(-0.100872076625,0.1819760159,0.302)); +#5170 = CARTESIAN_POINT('',(-0.101308082223,0.174597013261,0.302)); +#5171 = CARTESIAN_POINT('',(-0.101684829699,0.166622579517,0.302)); +#5172 = CARTESIAN_POINT('',(-0.101869339229,0.158045301859,0.302)); +#5173 = CARTESIAN_POINT('',(-0.101923200088,0.152127963409,0.302)); +#5174 = CARTESIAN_POINT('',(-0.101950986161,0.149075290321,0.302)); +#5175 = PCURVE('',#4846,#5176); +#5176 = DEFINITIONAL_REPRESENTATION('',(#5177),#5193); +#5177 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5178,#5179,#5180,#5181,#5182, + #5183,#5184,#5185,#5186,#5187,#5188,#5189,#5190,#5191,#5192), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0., + 6.999263450657E-02,0.151179237049,0.244049347772,0.348788670798, + 0.406942105318,0.471758334761,0.54342234969,0.62140343022, + 0.705702457219,0.796988044797,0.895268939323,1.),.UNSPECIFIED.); +#5178 = CARTESIAN_POINT('',(1.153892815716E-02,-4.414284826334E-02)); +#5179 = CARTESIAN_POINT('',(1.335834718593E-02,-4.506952097179E-02)); +#5180 = CARTESIAN_POINT('',(1.728816612447E-02,-4.707106976398E-02)); +#5181 = CARTESIAN_POINT('',(2.398419749061E-02,-4.951376519191E-02)); +#5182 = CARTESIAN_POINT('',(3.17600980219E-02,-5.187974601105E-02)); +#5183 = CARTESIAN_POINT('',(3.901381470099E-02,-5.362123415567E-02)); +#5184 = CARTESIAN_POINT('',(4.552312889648E-02,-5.492898453483E-02)); +#5185 = CARTESIAN_POINT('',(5.11439421221E-02,-5.571738055045E-02)); +#5186 = CARTESIAN_POINT('',(5.735436016788E-02,-5.643081433853E-02)); +#5187 = CARTESIAN_POINT('',(6.414592802529E-02,-5.705798284338E-02)); +#5188 = CARTESIAN_POINT('',(7.152493066432E-02,-5.749398844156E-02)); +#5189 = CARTESIAN_POINT('',(7.949936440805E-02,-5.787073591782E-02)); +#5190 = CARTESIAN_POINT('',(8.807664206632E-02,-5.805524544733E-02)); +#5191 = CARTESIAN_POINT('',(9.399398051578E-02,-5.810910630698E-02)); +#5192 = CARTESIAN_POINT('',(9.704665360381E-02,-5.813689237976E-02)); +#5193 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5194 = PCURVE('',#2066,#5195); +#5195 = DEFINITIONAL_REPRESENTATION('',(#5196),#5200); +#5196 = LINE('',#5197,#5198); +#5197 = CARTESIAN_POINT('',(0.,0.)); +#5198 = VECTOR('',#5199,1.); +#5199 = DIRECTION('',(1.,0.)); +#5200 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5201 = ORIENTED_EDGE('',*,*,#5202,.F.); +#5202 = EDGE_CURVE('',#5203,#5156,#5205,.T.); +#5203 = VERTEX_POINT('',#5204); +#5204 = CARTESIAN_POINT('',(-7.355130839552E-02,0.242197422125,0.302)); +#5205 = SURFACE_CURVE('',#5206,(#5214,#5225),.PCURVE_S1.); +#5206 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5207,#5208,#5209,#5210,#5211, + #5212,#5213),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.,0.216987327124, + 0.448781830899,0.706307716581,1.),.UNSPECIFIED.); +#5207 = CARTESIAN_POINT('',(-7.355130839552E-02,0.242197422125,0.302)); +#5208 = CARTESIAN_POINT('',(-7.47661802925E-02,0.242107786486,0.302)); +#5209 = CARTESIAN_POINT('',(-7.727882672887E-02,0.241922398486,0.302)); +#5210 = CARTESIAN_POINT('',(-8.09424305875E-02,0.240323687502,0.302)); +#5211 = CARTESIAN_POINT('',(-8.46128525046E-02,0.237923041082,0.302)); +#5212 = CARTESIAN_POINT('',(-8.679453093945E-02,0.235744014141,0.302)); +#5213 = CARTESIAN_POINT('',(-8.795694204477E-02,0.234583015768,0.302)); +#5214 = PCURVE('',#4846,#5215); +#5215 = DEFINITIONAL_REPRESENTATION('',(#5216),#5224); +#5216 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5217,#5218,#5219,#5220,#5221, + #5222,#5223),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.,0.216987327124, + 0.448781830899,0.706307716581,1.),.UNSPECIFIED.); +#5217 = CARTESIAN_POINT('',(3.924521799699E-03,-2.973721461408E-02)); +#5218 = CARTESIAN_POINT('',(4.014157439452E-03,-3.095208651106E-02)); +#5219 = CARTESIAN_POINT('',(4.199545439088E-03,-3.346473294743E-02)); +#5220 = CARTESIAN_POINT('',(5.798256422922E-03,-3.712833680607E-02)); +#5221 = CARTESIAN_POINT('',(8.198902843557E-03,-4.079875872316E-02)); +#5222 = CARTESIAN_POINT('',(1.037792978378E-02,-4.298043715802E-02)); +#5223 = CARTESIAN_POINT('',(1.153892815716E-02,-4.414284826334E-02)); +#5224 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5225 = PCURVE('',#2004,#5226); +#5226 = DEFINITIONAL_REPRESENTATION('',(#5227),#5231); +#5227 = LINE('',#5228,#5229); +#5228 = CARTESIAN_POINT('',(0.,0.)); +#5229 = VECTOR('',#5230,1.); +#5230 = DIRECTION('',(1.,0.)); +#5231 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5232 = ORIENTED_EDGE('',*,*,#5233,.F.); +#5233 = EDGE_CURVE('',#5234,#5203,#5236,.T.); +#5234 = VERTEX_POINT('',#5235); +#5235 = CARTESIAN_POINT('',(-5.832249568059E-02,0.229026557075,0.302)); +#5236 = SURFACE_CURVE('',#5237,(#5249,#5264),.PCURVE_S1.); +#5237 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5238,#5239,#5240,#5241,#5242, + #5243,#5244,#5245,#5246,#5247,#5248),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.16327665571,0.310892172789,0.44681935319, + 0.569906175247,0.684023518813,0.789987372117,0.89559207171,1.), + .UNSPECIFIED.); +#5238 = CARTESIAN_POINT('',(-5.832249568059E-02,0.229026557075,0.302)); +#5239 = CARTESIAN_POINT('',(-5.884028457047E-02,0.230062546245,0.302)); +#5240 = CARTESIAN_POINT('',(-5.982619717581E-02,0.232035154777,0.302)); +#5241 = CARTESIAN_POINT('',(-6.145963268323E-02,0.234760556423,0.302)); +#5242 = CARTESIAN_POINT('',(-6.327103375237E-02,0.237013087029,0.302)); +#5243 = CARTESIAN_POINT('',(-6.512274675376E-02,0.238914427285,0.302)); +#5244 = CARTESIAN_POINT('',(-6.709097498585E-02,0.240365285804,0.302)); +#5245 = CARTESIAN_POINT('',(-6.914569465816E-02,0.241442329562,0.302)); +#5246 = CARTESIAN_POINT('',(-7.131901586453E-02,0.242074823052,0.302)); +#5247 = CARTESIAN_POINT('',(-7.281004312541E-02,0.242156711316,0.302)); +#5248 = CARTESIAN_POINT('',(-7.355130839552E-02,0.242197422125,0.302)); +#5249 = PCURVE('',#4846,#5250); +#5250 = DEFINITIONAL_REPRESENTATION('',(#5251),#5263); +#5251 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5252,#5253,#5254,#5255,#5256, + #5257,#5258,#5259,#5260,#5261,#5262),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.16327665571,0.310892172789,0.44681935319, + 0.569906175247,0.684023518813,0.789987372117,0.89559207171,1.), + .UNSPECIFIED.); +#5252 = CARTESIAN_POINT('',(1.709538685045E-02,-1.450840189915E-02)); +#5253 = CARTESIAN_POINT('',(1.60593976801E-02,-1.502619078903E-02)); +#5254 = CARTESIAN_POINT('',(1.408678914796E-02,-1.601210339437E-02)); +#5255 = CARTESIAN_POINT('',(1.136138750165E-02,-1.76455389018E-02)); +#5256 = CARTESIAN_POINT('',(9.10885689618E-03,-1.945693997093E-02)); +#5257 = CARTESIAN_POINT('',(7.207516640509E-03,-2.130865297232E-02)); +#5258 = CARTESIAN_POINT('',(5.756658121571E-03,-2.327688120442E-02)); +#5259 = CARTESIAN_POINT('',(4.679614362819E-03,-2.533160087673E-02)); +#5260 = CARTESIAN_POINT('',(4.047120873186E-03,-2.75049220831E-02)); +#5261 = CARTESIAN_POINT('',(3.965232608906E-03,-2.899594934398E-02)); +#5262 = CARTESIAN_POINT('',(3.924521799699E-03,-2.973721461408E-02)); +#5263 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5264 = PCURVE('',#1950,#5265); +#5265 = DEFINITIONAL_REPRESENTATION('',(#5266),#5270); +#5266 = LINE('',#5267,#5268); +#5267 = CARTESIAN_POINT('',(0.,0.)); +#5268 = VECTOR('',#5269,1.); +#5269 = DIRECTION('',(1.,0.)); +#5270 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5271 = ORIENTED_EDGE('',*,*,#5272,.F.); +#5272 = EDGE_CURVE('',#5273,#5234,#5275,.T.); +#5273 = VERTEX_POINT('',#5274); +#5274 = CARTESIAN_POINT('',(-5.256024222089E-02,0.202684826973,0.302)); +#5275 = SURFACE_CURVE('',#5276,(#5284,#5295),.PCURVE_S1.); +#5276 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5277,#5278,#5279,#5280,#5281, + #5282,#5283),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.,0.31467797743, + 0.585132279047,0.813474950365,1.),.UNSPECIFIED.); +#5277 = CARTESIAN_POINT('',(-5.256024222089E-02,0.202684826973,0.302)); +#5278 = CARTESIAN_POINT('',(-5.291623792002E-02,0.205500322404,0.302)); +#5279 = CARTESIAN_POINT('',(-5.35781990031E-02,0.210735633982,0.302)); +#5280 = CARTESIAN_POINT('',(-5.48055694023E-02,0.217971193731,0.302)); +#5281 = CARTESIAN_POINT('',(-5.635002442134E-02,0.22397092699,0.302)); +#5282 = CARTESIAN_POINT('',(-5.77107236116E-02,0.227458527496,0.302)); +#5283 = CARTESIAN_POINT('',(-5.832249568059E-02,0.229026557075,0.302)); +#5284 = PCURVE('',#4846,#5285); +#5285 = DEFINITIONAL_REPRESENTATION('',(#5286),#5294); +#5286 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5287,#5288,#5289,#5290,#5291, + #5292,#5293),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.,0.31467797743, + 0.585132279047,0.813474950365,1.),.UNSPECIFIED.); +#5287 = CARTESIAN_POINT('',(4.343711695194E-02,-8.746148439451E-03)); +#5288 = CARTESIAN_POINT('',(4.062162152065E-02,-9.102144138581E-03)); +#5289 = CARTESIAN_POINT('',(3.538630994335E-02,-9.764105221668E-03)); +#5290 = CARTESIAN_POINT('',(2.815075019405E-02,-1.099147562086E-02)); +#5291 = CARTESIAN_POINT('',(2.215101693478E-02,-1.25359306399E-02)); +#5292 = CARTESIAN_POINT('',(1.866341642868E-02,-1.389662983017E-02)); +#5293 = CARTESIAN_POINT('',(1.709538685045E-02,-1.450840189915E-02)); +#5294 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5295 = PCURVE('',#1896,#5296); +#5296 = DEFINITIONAL_REPRESENTATION('',(#5297),#5301); +#5297 = LINE('',#5298,#5299); +#5298 = CARTESIAN_POINT('',(0.,0.)); +#5299 = VECTOR('',#5300,1.); +#5300 = DIRECTION('',(1.,0.)); +#5301 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5302 = ORIENTED_EDGE('',*,*,#5303,.F.); +#5303 = EDGE_CURVE('',#4822,#5273,#5304,.T.); +#5304 = SURFACE_CURVE('',#5305,(#5309,#5316),.PCURVE_S1.); +#5305 = LINE('',#5306,#5307); +#5306 = CARTESIAN_POINT('',(-3.609666090745E-02,0.205977543236,0.302)); +#5307 = VECTOR('',#5308,1.); +#5308 = DIRECTION('',(-0.980580675691,-0.196116135138, + -2.681258496579E-17)); +#5309 = PCURVE('',#4846,#5310); +#5310 = DEFINITIONAL_REPRESENTATION('',(#5311),#5315); +#5311 = LINE('',#5312,#5313); +#5312 = CARTESIAN_POINT('',(4.014440068926E-02,7.717432873984E-03)); +#5313 = VECTOR('',#5314,1.); +#5314 = DIRECTION('',(0.196116135138,-0.980580675691)); +#5315 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5316 = PCURVE('',#1860,#5317); +#5317 = DEFINITIONAL_REPRESENTATION('',(#5318),#5322); +#5318 = LINE('',#5319,#5320); +#5319 = CARTESIAN_POINT('',(0.,0.)); +#5320 = VECTOR('',#5321,1.); +#5321 = DIRECTION('',(-1.,-1.072803164334E-33)); +#5322 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5323 = FACE_BOUND('',#5324,.T.); +#5324 = EDGE_LOOP('',(#5325,#5405,#5483,#5577)); +#5325 = ORIENTED_EDGE('',*,*,#5326,.F.); +#5326 = EDGE_CURVE('',#5327,#5329,#5331,.T.); +#5327 = VERTEX_POINT('',#5328); +#5328 = CARTESIAN_POINT('',(-0.101950986161,0.100250481989,0.302)); +#5329 = VERTEX_POINT('',#5330); +#5330 = CARTESIAN_POINT('',(-7.463173091921E-02,4.13417301015E-02,0.302) + ); +#5331 = SURFACE_CURVE('',#5332,(#5348,#5367),.PCURVE_S1.); +#5332 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5333,#5334,#5335,#5336,#5337, + #5338,#5339,#5340,#5341,#5342,#5343,#5344,#5345,#5346,#5347), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.,0.109243264963, + 0.216023149294,0.321968345541,0.426361294985,0.524965644475, + 0.61273172182,0.691523903003,0.761600299833,0.824438999256, + 0.882594851407,0.93994307164,1.),.UNSPECIFIED.); +#5333 = CARTESIAN_POINT('',(-0.101950986161,0.100250481989,0.302)); +#5334 = CARTESIAN_POINT('',(-0.101924104222,9.767572844008E-02,0.302)); +#5335 = CARTESIAN_POINT('',(-0.101870946518,9.258428073938E-02,0.302)); +#5336 = CARTESIAN_POINT('',(-0.101062342672,8.503635691268E-02,0.302)); +#5337 = CARTESIAN_POINT('',(-0.100056852551,7.763101160967E-02,0.302)); +#5338 = CARTESIAN_POINT('',(-9.845525110705E-02,7.05224936676E-02,0.302) + ); +#5339 = CARTESIAN_POINT('',(-9.653808570573E-02,6.394566630728E-02,0.302 + )); +#5340 = CARTESIAN_POINT('',(-9.44232786662E-02,5.805666442772E-02,0.302) + ); +#5341 = CARTESIAN_POINT('',(-9.193209721297E-02,5.306140394613E-02,0.302 + )); +#5342 = CARTESIAN_POINT('',(-8.931652250781E-02,4.879677656191E-02,0.302 + )); +#5343 = CARTESIAN_POINT('',(-8.624072233728E-02,4.546170383601E-02,0.302 + )); +#5344 = CARTESIAN_POINT('',(-8.27577752205E-02,4.305433232873E-02,0.302) + ); +#5345 = CARTESIAN_POINT('',(-7.88238642164E-02,4.158657614539E-02,0.302) + ); +#5346 = CARTESIAN_POINT('',(-7.605043768421E-02,4.142459119255E-02,0.302 + )); +#5347 = CARTESIAN_POINT('',(-7.463173091921E-02,4.13417301015E-02,0.302) + ); +#5348 = PCURVE('',#4846,#5349); +#5349 = DEFINITIONAL_REPRESENTATION('',(#5350),#5366); +#5350 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5351,#5352,#5353,#5354,#5355, + #5356,#5357,#5358,#5359,#5360,#5361,#5362,#5363,#5364,#5365), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.,0.109243264963, + 0.216023149294,0.321968345541,0.426361294985,0.524965644475, + 0.61273172182,0.691523903003,0.761600299833,0.824438999256, + 0.882594851407,0.93994307164,1.),.UNSPECIFIED.); +#5351 = CARTESIAN_POINT('',(0.145871461936,-5.813689237976E-02)); +#5352 = CARTESIAN_POINT('',(0.148446215485,-5.811001044068E-02)); +#5353 = CARTESIAN_POINT('',(0.153537663186,-5.805685273671E-02)); +#5354 = CARTESIAN_POINT('',(0.161085587012,-5.724824889016E-02)); +#5355 = CARTESIAN_POINT('',(0.168490932315,-5.624275876979E-02)); +#5356 = CARTESIAN_POINT('',(0.175599450258,-5.464115732562E-02)); +#5357 = CARTESIAN_POINT('',(0.182176277618,-5.272399192429E-02)); +#5358 = CARTESIAN_POINT('',(0.188065279497,-5.060918488477E-02)); +#5359 = CARTESIAN_POINT('',(0.193060539979,-4.811800343153E-02)); +#5360 = CARTESIAN_POINT('',(0.197325167363,-4.550242872637E-02)); +#5361 = CARTESIAN_POINT('',(0.200660240089,-4.242662855584E-02)); +#5362 = CARTESIAN_POINT('',(0.203067611596,-3.894368143906E-02)); +#5363 = CARTESIAN_POINT('',(0.20453536778,-3.500977043496E-02)); +#5364 = CARTESIAN_POINT('',(0.204697352733,-3.223634390278E-02)); +#5365 = CARTESIAN_POINT('',(0.204780213824,-3.081763713777E-02)); +#5366 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5367 = PCURVE('',#5368,#5399); +#5368 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#5369,#5370) + ,(#5371,#5372) + ,(#5373,#5374) + ,(#5375,#5376) + ,(#5377,#5378) + ,(#5379,#5380) + ,(#5381,#5382) + ,(#5383,#5384) + ,(#5385,#5386) + ,(#5387,#5388) + ,(#5389,#5390) + ,(#5391,#5392) + ,(#5393,#5394) + ,(#5395,#5396) + ,(#5397,#5398 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(2,2),(0., + 0.109243264963,0.216023149294,0.321968345541,0.426361294985, + 0.524965644475,0.61273172182,0.691523903003,0.761600299833, + 0.824438999256,0.882594851407,0.93994307164,1.),(0.,1.), + .UNSPECIFIED.); +#5369 = CARTESIAN_POINT('',(-0.101950986161,0.100250481989,0.302)); +#5370 = CARTESIAN_POINT('',(-0.101950986161,0.100250481989,0.3)); +#5371 = CARTESIAN_POINT('',(-0.101924104222,9.767572844008E-02,0.302)); +#5372 = CARTESIAN_POINT('',(-0.101924104222,9.767572844008E-02,0.3)); +#5373 = CARTESIAN_POINT('',(-0.101870946518,9.258428073938E-02,0.302)); +#5374 = CARTESIAN_POINT('',(-0.101870946518,9.258428073938E-02,0.3)); +#5375 = CARTESIAN_POINT('',(-0.101062342672,8.503635691268E-02,0.302)); +#5376 = CARTESIAN_POINT('',(-0.101062342672,8.503635691268E-02,0.3)); +#5377 = CARTESIAN_POINT('',(-0.100056852551,7.763101160967E-02,0.302)); +#5378 = CARTESIAN_POINT('',(-0.100056852551,7.763101160967E-02,0.3)); +#5379 = CARTESIAN_POINT('',(-9.845525110705E-02,7.05224936676E-02,0.302) + ); +#5380 = CARTESIAN_POINT('',(-9.845525110705E-02,7.05224936676E-02,0.3)); +#5381 = CARTESIAN_POINT('',(-9.653808570573E-02,6.394566630728E-02,0.302 + )); +#5382 = CARTESIAN_POINT('',(-9.653808570573E-02,6.394566630728E-02,0.3) + ); +#5383 = CARTESIAN_POINT('',(-9.44232786662E-02,5.805666442772E-02,0.302) + ); +#5384 = CARTESIAN_POINT('',(-9.44232786662E-02,5.805666442772E-02,0.3)); +#5385 = CARTESIAN_POINT('',(-9.193209721297E-02,5.306140394613E-02,0.302 + )); +#5386 = CARTESIAN_POINT('',(-9.193209721297E-02,5.306140394613E-02,0.3) + ); +#5387 = CARTESIAN_POINT('',(-8.931652250781E-02,4.879677656191E-02,0.302 + )); +#5388 = CARTESIAN_POINT('',(-8.931652250781E-02,4.879677656191E-02,0.3) + ); +#5389 = CARTESIAN_POINT('',(-8.624072233728E-02,4.546170383601E-02,0.302 + )); +#5390 = CARTESIAN_POINT('',(-8.624072233728E-02,4.546170383601E-02,0.3) + ); +#5391 = CARTESIAN_POINT('',(-8.27577752205E-02,4.305433232873E-02,0.302) + ); +#5392 = CARTESIAN_POINT('',(-8.27577752205E-02,4.305433232873E-02,0.3)); +#5393 = CARTESIAN_POINT('',(-7.88238642164E-02,4.158657614539E-02,0.302) + ); +#5394 = CARTESIAN_POINT('',(-7.88238642164E-02,4.158657614539E-02,0.3)); +#5395 = CARTESIAN_POINT('',(-7.605043768421E-02,4.142459119255E-02,0.302 + )); +#5396 = CARTESIAN_POINT('',(-7.605043768421E-02,4.142459119255E-02,0.3) + ); +#5397 = CARTESIAN_POINT('',(-7.463173091921E-02,4.13417301015E-02,0.302) + ); +#5398 = CARTESIAN_POINT('',(-7.463173091921E-02,4.13417301015E-02,0.3)); +#5399 = DEFINITIONAL_REPRESENTATION('',(#5400),#5404); +#5400 = LINE('',#5401,#5402); +#5401 = CARTESIAN_POINT('',(0.,0.)); +#5402 = VECTOR('',#5403,1.); +#5403 = DIRECTION('',(1.,0.)); +#5404 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5405 = ORIENTED_EDGE('',*,*,#5406,.F.); +#5406 = EDGE_CURVE('',#5407,#5327,#5409,.T.); +#5407 = VERTEX_POINT('',#5408); +#5408 = CARTESIAN_POINT('',(-7.530056391007E-02,0.153294083033,0.302)); +#5409 = SURFACE_CURVE('',#5410,(#5426,#5445),.PCURVE_S1.); +#5410 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5411,#5412,#5413,#5414,#5415, + #5416,#5417,#5418,#5419,#5420,#5421,#5422,#5423,#5424,#5425), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0., + 4.226779333469E-02,8.432559633327E-02,0.127039892833,0.171814314024, + 0.219694337501,0.271016843258,0.327501557308,0.389152196716, + 0.521662359695,0.665761784131,0.824900004924,1.),.UNSPECIFIED.); +#5411 = CARTESIAN_POINT('',(-7.530056391007E-02,0.153294083033,0.302)); +#5412 = CARTESIAN_POINT('',(-7.621516748532E-02,0.153264412118,0.302)); +#5413 = CARTESIAN_POINT('',(-7.803983080003E-02,0.153205217696,0.302)); +#5414 = CARTESIAN_POINT('',(-8.06866425473E-02,0.152415783666,0.302)); +#5415 = CARTESIAN_POINT('',(-8.325072480295E-02,0.151288822602,0.302)); +#5416 = CARTESIAN_POINT('',(-8.568509650074E-02,0.149652877524,0.302)); +#5417 = CARTESIAN_POINT('',(-8.801511932755E-02,0.14758562449,0.302)); +#5418 = CARTESIAN_POINT('',(-9.017142601542E-02,0.145001429604,0.302)); +#5419 = CARTESIAN_POINT('',(-9.228548873588E-02,0.142016496381,0.302)); +#5420 = CARTESIAN_POINT('',(-9.499192822814E-02,0.137330258597,0.302)); +#5421 = CARTESIAN_POINT('',(-9.787439941184E-02,0.130593101157,0.302)); +#5422 = CARTESIAN_POINT('',(-0.100229861275,0.121472416913,0.302)); +#5423 = CARTESIAN_POINT('',(-0.101749343164,0.11124261082,0.302)); +#5424 = CARTESIAN_POINT('',(-0.101881665448,0.10402934967,0.302)); +#5425 = CARTESIAN_POINT('',(-0.101950986161,0.100250481989,0.302)); +#5426 = PCURVE('',#4846,#5427); +#5427 = DEFINITIONAL_REPRESENTATION('',(#5428),#5444); +#5428 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5429,#5430,#5431,#5432,#5433, + #5434,#5435,#5436,#5437,#5438,#5439,#5440,#5441,#5442,#5443), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0., + 4.226779333469E-02,8.432559633327E-02,0.127039892833,0.171814314024, + 0.219694337501,0.271016843258,0.327501557308,0.389152196716, + 0.521662359695,0.665761784131,0.824900004924,1.),.UNSPECIFIED.); +#5429 = CARTESIAN_POINT('',(9.282786089225E-02,-3.148647012863E-02)); +#5430 = CARTESIAN_POINT('',(9.28575318071E-02,-3.240107370388E-02)); +#5431 = CARTESIAN_POINT('',(9.291672622893E-02,-3.422573701859E-02)); +#5432 = CARTESIAN_POINT('',(9.370616025863E-02,-3.687254876586E-02)); +#5433 = CARTESIAN_POINT('',(9.483312132299E-02,-3.943663102151E-02)); +#5434 = CARTESIAN_POINT('',(9.646906640113E-02,-4.18710027193E-02)); +#5435 = CARTESIAN_POINT('',(9.853631943533E-02,-4.420102554611E-02)); +#5436 = CARTESIAN_POINT('',(0.101120514321,-4.635733223398E-02)); +#5437 = CARTESIAN_POINT('',(0.104105447545,-4.847139495444E-02)); +#5438 = CARTESIAN_POINT('',(0.108791685328,-5.11778344467E-02)); +#5439 = CARTESIAN_POINT('',(0.115528842768,-5.406030563041E-02)); +#5440 = CARTESIAN_POINT('',(0.124649527013,-5.641576749386E-02)); +#5441 = CARTESIAN_POINT('',(0.134879333105,-5.793524938226E-02)); +#5442 = CARTESIAN_POINT('',(0.142092594255,-5.80675716669E-02)); +#5443 = CARTESIAN_POINT('',(0.145871461936,-5.813689237976E-02)); +#5444 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5445 = PCURVE('',#5446,#5477); +#5446 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#5447,#5448) + ,(#5449,#5450) + ,(#5451,#5452) + ,(#5453,#5454) + ,(#5455,#5456) + ,(#5457,#5458) + ,(#5459,#5460) + ,(#5461,#5462) + ,(#5463,#5464) + ,(#5465,#5466) + ,(#5467,#5468) + ,(#5469,#5470) + ,(#5471,#5472) + ,(#5473,#5474) + ,(#5475,#5476 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(2,2),(0., + 4.226779333469E-02,8.432559633327E-02,0.127039892833,0.171814314024, + 0.219694337501,0.271016843258,0.327501557308,0.389152196716, + 0.521662359695,0.665761784131,0.824900004924,1.),(0.,1.), + .UNSPECIFIED.); +#5447 = CARTESIAN_POINT('',(-7.530056391007E-02,0.153294083033,0.302)); +#5448 = CARTESIAN_POINT('',(-7.530056391007E-02,0.153294083033,0.3)); +#5449 = CARTESIAN_POINT('',(-7.621516748532E-02,0.153264412118,0.302)); +#5450 = CARTESIAN_POINT('',(-7.621516748532E-02,0.153264412118,0.3)); +#5451 = CARTESIAN_POINT('',(-7.803983080003E-02,0.153205217696,0.302)); +#5452 = CARTESIAN_POINT('',(-7.803983080003E-02,0.153205217696,0.3)); +#5453 = CARTESIAN_POINT('',(-8.06866425473E-02,0.152415783666,0.302)); +#5454 = CARTESIAN_POINT('',(-8.06866425473E-02,0.152415783666,0.3)); +#5455 = CARTESIAN_POINT('',(-8.325072480295E-02,0.151288822602,0.302)); +#5456 = CARTESIAN_POINT('',(-8.325072480295E-02,0.151288822602,0.3)); +#5457 = CARTESIAN_POINT('',(-8.568509650074E-02,0.149652877524,0.302)); +#5458 = CARTESIAN_POINT('',(-8.568509650074E-02,0.149652877524,0.3)); +#5459 = CARTESIAN_POINT('',(-8.801511932755E-02,0.14758562449,0.302)); +#5460 = CARTESIAN_POINT('',(-8.801511932755E-02,0.14758562449,0.3)); +#5461 = CARTESIAN_POINT('',(-9.017142601542E-02,0.145001429604,0.302)); +#5462 = CARTESIAN_POINT('',(-9.017142601542E-02,0.145001429604,0.3)); +#5463 = CARTESIAN_POINT('',(-9.228548873588E-02,0.142016496381,0.302)); +#5464 = CARTESIAN_POINT('',(-9.228548873588E-02,0.142016496381,0.3)); +#5465 = CARTESIAN_POINT('',(-9.499192822814E-02,0.137330258597,0.302)); +#5466 = CARTESIAN_POINT('',(-9.499192822814E-02,0.137330258597,0.3)); +#5467 = CARTESIAN_POINT('',(-9.787439941184E-02,0.130593101157,0.302)); +#5468 = CARTESIAN_POINT('',(-9.787439941184E-02,0.130593101157,0.3)); +#5469 = CARTESIAN_POINT('',(-0.100229861275,0.121472416913,0.302)); +#5470 = CARTESIAN_POINT('',(-0.100229861275,0.121472416913,0.3)); +#5471 = CARTESIAN_POINT('',(-0.101749343164,0.11124261082,0.302)); +#5472 = CARTESIAN_POINT('',(-0.101749343164,0.11124261082,0.3)); +#5473 = CARTESIAN_POINT('',(-0.101881665448,0.10402934967,0.302)); +#5474 = CARTESIAN_POINT('',(-0.101881665448,0.10402934967,0.3)); +#5475 = CARTESIAN_POINT('',(-0.101950986161,0.100250481989,0.302)); +#5476 = CARTESIAN_POINT('',(-0.101950986161,0.100250481989,0.3)); +#5477 = DEFINITIONAL_REPRESENTATION('',(#5478),#5482); +#5478 = LINE('',#5479,#5480); +#5479 = CARTESIAN_POINT('',(0.,0.)); +#5480 = VECTOR('',#5481,1.); +#5481 = DIRECTION('',(1.,0.)); +#5482 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5483 = ORIENTED_EDGE('',*,*,#5484,.F.); +#5484 = EDGE_CURVE('',#5485,#5407,#5487,.T.); +#5485 = VERTEX_POINT('',#5486); +#5486 = CARTESIAN_POINT('',(-4.92675259582E-02,9.855267516568E-02,0.302) + ); +#5487 = SURFACE_CURVE('',#5488,(#5508,#5531),.PCURVE_S1.); +#5488 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5489,#5490,#5491,#5492,#5493, + #5494,#5495,#5496,#5497,#5498,#5499,#5500,#5501,#5502,#5503,#5504, + #5505,#5506,#5507),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,9.242081121346E-02,0.180329895351,0.263852826636, + 0.341610477782,0.415311914955,0.48516335459,0.550673340517, + 0.612163040493,0.670020610958,0.723416823037,0.772616779675, + 0.818980921461,0.864284136055,0.908474144563,0.952925060694,1.), + .UNSPECIFIED.); +#5489 = CARTESIAN_POINT('',(-4.92675259582E-02,9.855267516568E-02,0.302) + ); +#5490 = CARTESIAN_POINT('',(-4.928614427853E-02,0.100611041805,0.302)); +#5491 = CARTESIAN_POINT('',(-4.932247202454E-02,0.104627291347,0.302)); +#5492 = CARTESIAN_POINT('',(-4.963767284786E-02,0.110496735164,0.302)); +#5493 = CARTESIAN_POINT('',(-5.013548034991E-02,0.11602541934,0.302)); +#5494 = CARTESIAN_POINT('',(-5.085808856057E-02,0.121210612842,0.302)); +#5495 = CARTESIAN_POINT('',(-5.177882522002E-02,0.126054644433,0.302)); +#5496 = CARTESIAN_POINT('',(-5.289788566873E-02,0.130576790858,0.302)); +#5497 = CARTESIAN_POINT('',(-5.422849914395E-02,0.134758115317,0.302)); +#5498 = CARTESIAN_POINT('',(-5.577247968458E-02,0.138577961453,0.302)); +#5499 = CARTESIAN_POINT('',(-5.748869161871E-02,0.142028574223,0.302)); +#5500 = CARTESIAN_POINT('',(-5.945181769915E-02,0.145023464358,0.302)); +#5501 = CARTESIAN_POINT('',(-6.156434267908E-02,0.147592123688,0.302)); +#5502 = CARTESIAN_POINT('',(-6.390745610769E-02,0.149700085877,0.302)); +#5503 = CARTESIAN_POINT('',(-6.649600476558E-02,0.151300103808,0.302)); +#5504 = CARTESIAN_POINT('',(-6.926461702342E-02,0.152427404118,0.302)); +#5505 = CARTESIAN_POINT('',(-7.220441410358E-02,0.153217224023,0.302)); +#5506 = CARTESIAN_POINT('',(-7.424897496E-02,0.153267978325,0.302)); +#5507 = CARTESIAN_POINT('',(-7.530056391007E-02,0.153294083033,0.302)); +#5508 = PCURVE('',#4846,#5509); +#5509 = DEFINITIONAL_REPRESENTATION('',(#5510),#5530); +#5510 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5511,#5512,#5513,#5514,#5515, + #5516,#5517,#5518,#5519,#5520,#5521,#5522,#5523,#5524,#5525,#5526, + #5527,#5528,#5529),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,9.242081121346E-02,0.180329895351,0.263852826636, + 0.341610477782,0.415311914955,0.48516335459,0.550673340517, + 0.612163040493,0.670020610958,0.723416823037,0.772616779675, + 0.818980921461,0.864284136055,0.908474144563,0.952925060694,1.), + .UNSPECIFIED.); +#5511 = CARTESIAN_POINT('',(0.147569268759,-5.453432176764E-03)); +#5512 = CARTESIAN_POINT('',(0.14551090212,-5.472050497092E-03)); +#5513 = CARTESIAN_POINT('',(0.141494652578,-5.508378243107E-03)); +#5514 = CARTESIAN_POINT('',(0.135625208761,-5.82357906642E-03)); +#5515 = CARTESIAN_POINT('',(0.130096524585,-6.321386568471E-03)); +#5516 = CARTESIAN_POINT('',(0.124911331083,-7.043994779136E-03)); +#5517 = CARTESIAN_POINT('',(0.120067299492,-7.964731438587E-03)); +#5518 = CARTESIAN_POINT('',(0.115545153068,-9.083791887299E-03)); +#5519 = CARTESIAN_POINT('',(0.111363828608,-1.041440536251E-02)); +#5520 = CARTESIAN_POINT('',(0.107543982473,-1.195838590314E-02)); +#5521 = CARTESIAN_POINT('',(0.104093369702,-1.367459783728E-02)); +#5522 = CARTESIAN_POINT('',(0.101098479567,-1.563772391772E-02)); +#5523 = CARTESIAN_POINT('',(9.852982023694E-02,-1.775024889765E-02)); +#5524 = CARTESIAN_POINT('',(9.642185804819E-02,-2.009336232625E-02)); +#5525 = CARTESIAN_POINT('',(9.482184011674E-02,-2.268191098414E-02)); +#5526 = CARTESIAN_POINT('',(9.369453980758E-02,-2.545052324199E-02)); +#5527 = CARTESIAN_POINT('',(9.290471990235E-02,-2.839032032214E-02)); +#5528 = CARTESIAN_POINT('',(9.285396559996E-02,-3.043488117857E-02)); +#5529 = CARTESIAN_POINT('',(9.282786089225E-02,-3.148647012863E-02)); +#5530 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5531 = PCURVE('',#5532,#5571); +#5532 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#5533,#5534) + ,(#5535,#5536) + ,(#5537,#5538) + ,(#5539,#5540) + ,(#5541,#5542) + ,(#5543,#5544) + ,(#5545,#5546) + ,(#5547,#5548) + ,(#5549,#5550) + ,(#5551,#5552) + ,(#5553,#5554) + ,(#5555,#5556) + ,(#5557,#5558) + ,(#5559,#5560) + ,(#5561,#5562) + ,(#5563,#5564) + ,(#5565,#5566) + ,(#5567,#5568) + ,(#5569,#5570 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, + 2),(0.,9.242081121346E-02,0.180329895351,0.263852826636, + 0.341610477782,0.415311914955,0.48516335459,0.550673340517, + 0.612163040493,0.670020610958,0.723416823037,0.772616779675, + 0.818980921461,0.864284136055,0.908474144563,0.952925060694,1.),(0., + 1.),.UNSPECIFIED.); +#5533 = CARTESIAN_POINT('',(-4.92675259582E-02,9.855267516568E-02,0.302) + ); +#5534 = CARTESIAN_POINT('',(-4.92675259582E-02,9.855267516568E-02,0.3)); +#5535 = CARTESIAN_POINT('',(-4.928614427853E-02,0.100611041805,0.302)); +#5536 = CARTESIAN_POINT('',(-4.928614427853E-02,0.100611041805,0.3)); +#5537 = CARTESIAN_POINT('',(-4.932247202454E-02,0.104627291347,0.302)); +#5538 = CARTESIAN_POINT('',(-4.932247202454E-02,0.104627291347,0.3)); +#5539 = CARTESIAN_POINT('',(-4.963767284786E-02,0.110496735164,0.302)); +#5540 = CARTESIAN_POINT('',(-4.963767284786E-02,0.110496735164,0.3)); +#5541 = CARTESIAN_POINT('',(-5.013548034991E-02,0.11602541934,0.302)); +#5542 = CARTESIAN_POINT('',(-5.013548034991E-02,0.11602541934,0.3)); +#5543 = CARTESIAN_POINT('',(-5.085808856057E-02,0.121210612842,0.302)); +#5544 = CARTESIAN_POINT('',(-5.085808856057E-02,0.121210612842,0.3)); +#5545 = CARTESIAN_POINT('',(-5.177882522002E-02,0.126054644433,0.302)); +#5546 = CARTESIAN_POINT('',(-5.177882522002E-02,0.126054644433,0.3)); +#5547 = CARTESIAN_POINT('',(-5.289788566873E-02,0.130576790858,0.302)); +#5548 = CARTESIAN_POINT('',(-5.289788566873E-02,0.130576790858,0.3)); +#5549 = CARTESIAN_POINT('',(-5.422849914395E-02,0.134758115317,0.302)); +#5550 = CARTESIAN_POINT('',(-5.422849914395E-02,0.134758115317,0.3)); +#5551 = CARTESIAN_POINT('',(-5.577247968458E-02,0.138577961453,0.302)); +#5552 = CARTESIAN_POINT('',(-5.577247968458E-02,0.138577961453,0.3)); +#5553 = CARTESIAN_POINT('',(-5.748869161871E-02,0.142028574223,0.302)); +#5554 = CARTESIAN_POINT('',(-5.748869161871E-02,0.142028574223,0.3)); +#5555 = CARTESIAN_POINT('',(-5.945181769915E-02,0.145023464358,0.302)); +#5556 = CARTESIAN_POINT('',(-5.945181769915E-02,0.145023464358,0.3)); +#5557 = CARTESIAN_POINT('',(-6.156434267908E-02,0.147592123688,0.302)); +#5558 = CARTESIAN_POINT('',(-6.156434267908E-02,0.147592123688,0.3)); +#5559 = CARTESIAN_POINT('',(-6.390745610769E-02,0.149700085877,0.302)); +#5560 = CARTESIAN_POINT('',(-6.390745610769E-02,0.149700085877,0.3)); +#5561 = CARTESIAN_POINT('',(-6.649600476558E-02,0.151300103808,0.302)); +#5562 = CARTESIAN_POINT('',(-6.649600476558E-02,0.151300103808,0.3)); +#5563 = CARTESIAN_POINT('',(-6.926461702342E-02,0.152427404118,0.302)); +#5564 = CARTESIAN_POINT('',(-6.926461702342E-02,0.152427404118,0.3)); +#5565 = CARTESIAN_POINT('',(-7.220441410358E-02,0.153217224023,0.302)); +#5566 = CARTESIAN_POINT('',(-7.220441410358E-02,0.153217224023,0.3)); +#5567 = CARTESIAN_POINT('',(-7.424897496E-02,0.153267978325,0.302)); +#5568 = CARTESIAN_POINT('',(-7.424897496E-02,0.153267978325,0.3)); +#5569 = CARTESIAN_POINT('',(-7.530056391007E-02,0.153294083033,0.302)); +#5570 = CARTESIAN_POINT('',(-7.530056391007E-02,0.153294083033,0.3)); +#5571 = DEFINITIONAL_REPRESENTATION('',(#5572),#5576); +#5572 = LINE('',#5573,#5574); +#5573 = CARTESIAN_POINT('',(0.,0.)); +#5574 = VECTOR('',#5575,1.); +#5575 = DIRECTION('',(1.,0.)); +#5576 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5577 = ORIENTED_EDGE('',*,*,#5578,.F.); +#5578 = EDGE_CURVE('',#5329,#5485,#5579,.T.); +#5579 = SURFACE_CURVE('',#5580,(#5600,#5623),.PCURVE_S1.); +#5580 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5581,#5582,#5583,#5584,#5585, + #5586,#5587,#5588,#5589,#5590,#5591,#5592,#5593,#5594,#5595,#5596, + #5597,#5598,#5599),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,4.305891415309E-02,8.431100584057E-02,0.126412344501, + 0.169628791793,0.214862033891,0.264105324653,0.317793992402, + 0.376356096119,0.439245264454,0.506359790794,0.576812824148, + 0.65267291028,0.732387812435,0.816256919086,0.905921728012,1.), + .UNSPECIFIED.); +#5581 = CARTESIAN_POINT('',(-7.463173091921E-02,4.13417301015E-02,0.302) + ); +#5582 = CARTESIAN_POINT('',(-7.36489444578E-02,4.13909814942E-02,0.302) + ); +#5583 = CARTESIAN_POINT('',(-7.172461086236E-02,4.148741761061E-02,0.302 + )); +#5584 = CARTESIAN_POINT('',(-6.893007938947E-02,4.226139891875E-02,0.302 + )); +#5585 = CARTESIAN_POINT('',(-6.627788929855E-02,4.342726502517E-02,0.302 + )); +#5586 = CARTESIAN_POINT('',(-6.383910156245E-02,4.516758759971E-02,0.302 + )); +#5587 = CARTESIAN_POINT('',(-6.161659080274E-02,4.739228249608E-02,0.302 + )); +#5588 = CARTESIAN_POINT('',(-5.947676231063E-02,5.001697312643E-02,0.302 + )); +#5589 = CARTESIAN_POINT('',(-5.760886593088E-02,5.319918237196E-02,0.302 + )); +#5590 = CARTESIAN_POINT('',(-5.585511740996E-02,5.678892740192E-02,0.302 + )); +#5591 = CARTESIAN_POINT('',(-5.435029965401E-02,6.081846785872E-02,0.302 + )); +#5592 = CARTESIAN_POINT('',(-5.293755803954E-02,6.516610625362E-02,0.302 + )); +#5593 = CARTESIAN_POINT('',(-5.183880023704E-02,6.990800971198E-02,0.302 + )); +#5594 = CARTESIAN_POINT('',(-5.084022508801E-02,7.49630459341E-02,0.302) + ); +#5595 = CARTESIAN_POINT('',(-5.014894616744E-02,8.037925197238E-02,0.302 + )); +#5596 = CARTESIAN_POINT('',(-4.963075664615E-02,8.61279654229E-02,0.302) + ); +#5597 = CARTESIAN_POINT('',(-4.932415532072E-02,9.222114964923E-02,0.302 + )); +#5598 = CARTESIAN_POINT('',(-4.928670228325E-02,9.640863917488E-02,0.302 + )); +#5599 = CARTESIAN_POINT('',(-4.92675259582E-02,9.855267516568E-02,0.302) + ); +#5600 = PCURVE('',#4846,#5601); +#5601 = DEFINITIONAL_REPRESENTATION('',(#5602),#5622); +#5602 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5603,#5604,#5605,#5606,#5607, + #5608,#5609,#5610,#5611,#5612,#5613,#5614,#5615,#5616,#5617,#5618, + #5619,#5620,#5621),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,4.305891415309E-02,8.431100584057E-02,0.126412344501, + 0.169628791793,0.214862033891,0.264105324653,0.317793992402, + 0.376356096119,0.439245264454,0.506359790794,0.576812824148, + 0.65267291028,0.732387812435,0.816256919086,0.905921728012,1.), + .UNSPECIFIED.); +#5603 = CARTESIAN_POINT('',(0.204780213824,-3.081763713777E-02)); +#5604 = CARTESIAN_POINT('',(0.204730962431,-2.983485067637E-02)); +#5605 = CARTESIAN_POINT('',(0.204634526314,-2.791051708093E-02)); +#5606 = CARTESIAN_POINT('',(0.203860545006,-2.511598560803E-02)); +#5607 = CARTESIAN_POINT('',(0.2026946789,-2.246379551712E-02)); +#5608 = CARTESIAN_POINT('',(0.200954356325,-2.002500778101E-02)); +#5609 = CARTESIAN_POINT('',(0.198729661429,-1.78024970213E-02)); +#5610 = CARTESIAN_POINT('',(0.196104970799,-1.56626685292E-02)); +#5611 = CARTESIAN_POINT('',(0.192922761553,-1.379477214944E-02)); +#5612 = CARTESIAN_POINT('',(0.189333016523,-1.204102362852E-02)); +#5613 = CARTESIAN_POINT('',(0.185303476066,-1.053620587257E-02)); +#5614 = CARTESIAN_POINT('',(0.180955837671,-9.123464258109E-03)); +#5615 = CARTESIAN_POINT('',(0.176213934213,-8.024706455604E-03)); +#5616 = CARTESIAN_POINT('',(0.171158897991,-7.026131306575E-03)); +#5617 = CARTESIAN_POINT('',(0.165742691953,-6.334852386008E-03)); +#5618 = CARTESIAN_POINT('',(0.159993978502,-5.816662864716E-03)); +#5619 = CARTESIAN_POINT('',(0.153900794276,-5.510061539285E-03)); +#5620 = CARTESIAN_POINT('',(0.14971330475,-5.472608501816E-03)); +#5621 = CARTESIAN_POINT('',(0.147569268759,-5.453432176764E-03)); +#5622 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5623 = PCURVE('',#5624,#5663); +#5624 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#5625,#5626) + ,(#5627,#5628) + ,(#5629,#5630) + ,(#5631,#5632) + ,(#5633,#5634) + ,(#5635,#5636) + ,(#5637,#5638) + ,(#5639,#5640) + ,(#5641,#5642) + ,(#5643,#5644) + ,(#5645,#5646) + ,(#5647,#5648) + ,(#5649,#5650) + ,(#5651,#5652) + ,(#5653,#5654) + ,(#5655,#5656) + ,(#5657,#5658) + ,(#5659,#5660) + ,(#5661,#5662 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, + 2),(0.,4.305891415309E-02,8.431100584057E-02,0.126412344501, + 0.169628791793,0.214862033891,0.264105324653,0.317793992402, + 0.376356096119,0.439245264454,0.506359790794,0.576812824148, + 0.65267291028,0.732387812435,0.816256919086,0.905921728012,1.),(0., + 1.),.UNSPECIFIED.); +#5625 = CARTESIAN_POINT('',(-7.463173091921E-02,4.13417301015E-02,0.302) + ); +#5626 = CARTESIAN_POINT('',(-7.463173091921E-02,4.13417301015E-02,0.3)); +#5627 = CARTESIAN_POINT('',(-7.36489444578E-02,4.13909814942E-02,0.302) + ); +#5628 = CARTESIAN_POINT('',(-7.36489444578E-02,4.13909814942E-02,0.3)); +#5629 = CARTESIAN_POINT('',(-7.172461086236E-02,4.148741761061E-02,0.302 + )); +#5630 = CARTESIAN_POINT('',(-7.172461086236E-02,4.148741761061E-02,0.3) + ); +#5631 = CARTESIAN_POINT('',(-6.893007938947E-02,4.226139891875E-02,0.302 + )); +#5632 = CARTESIAN_POINT('',(-6.893007938947E-02,4.226139891875E-02,0.3) + ); +#5633 = CARTESIAN_POINT('',(-6.627788929855E-02,4.342726502517E-02,0.302 + )); +#5634 = CARTESIAN_POINT('',(-6.627788929855E-02,4.342726502517E-02,0.3) + ); +#5635 = CARTESIAN_POINT('',(-6.383910156245E-02,4.516758759971E-02,0.302 + )); +#5636 = CARTESIAN_POINT('',(-6.383910156245E-02,4.516758759971E-02,0.3) + ); +#5637 = CARTESIAN_POINT('',(-6.161659080274E-02,4.739228249608E-02,0.302 + )); +#5638 = CARTESIAN_POINT('',(-6.161659080274E-02,4.739228249608E-02,0.3) + ); +#5639 = CARTESIAN_POINT('',(-5.947676231063E-02,5.001697312643E-02,0.302 + )); +#5640 = CARTESIAN_POINT('',(-5.947676231063E-02,5.001697312643E-02,0.3) + ); +#5641 = CARTESIAN_POINT('',(-5.760886593088E-02,5.319918237196E-02,0.302 + )); +#5642 = CARTESIAN_POINT('',(-5.760886593088E-02,5.319918237196E-02,0.3) + ); +#5643 = CARTESIAN_POINT('',(-5.585511740996E-02,5.678892740192E-02,0.302 + )); +#5644 = CARTESIAN_POINT('',(-5.585511740996E-02,5.678892740192E-02,0.3) + ); +#5645 = CARTESIAN_POINT('',(-5.435029965401E-02,6.081846785872E-02,0.302 + )); +#5646 = CARTESIAN_POINT('',(-5.435029965401E-02,6.081846785872E-02,0.3) + ); +#5647 = CARTESIAN_POINT('',(-5.293755803954E-02,6.516610625362E-02,0.302 + )); +#5648 = CARTESIAN_POINT('',(-5.293755803954E-02,6.516610625362E-02,0.3) + ); +#5649 = CARTESIAN_POINT('',(-5.183880023704E-02,6.990800971198E-02,0.302 + )); +#5650 = CARTESIAN_POINT('',(-5.183880023704E-02,6.990800971198E-02,0.3) + ); +#5651 = CARTESIAN_POINT('',(-5.084022508801E-02,7.49630459341E-02,0.302) + ); +#5652 = CARTESIAN_POINT('',(-5.084022508801E-02,7.49630459341E-02,0.3)); +#5653 = CARTESIAN_POINT('',(-5.014894616744E-02,8.037925197238E-02,0.302 + )); +#5654 = CARTESIAN_POINT('',(-5.014894616744E-02,8.037925197238E-02,0.3) + ); +#5655 = CARTESIAN_POINT('',(-4.963075664615E-02,8.61279654229E-02,0.302) + ); +#5656 = CARTESIAN_POINT('',(-4.963075664615E-02,8.61279654229E-02,0.3)); +#5657 = CARTESIAN_POINT('',(-4.932415532072E-02,9.222114964923E-02,0.302 + )); +#5658 = CARTESIAN_POINT('',(-4.932415532072E-02,9.222114964923E-02,0.3) + ); +#5659 = CARTESIAN_POINT('',(-4.928670228325E-02,9.640863917488E-02,0.302 + )); +#5660 = CARTESIAN_POINT('',(-4.928670228325E-02,9.640863917488E-02,0.3) + ); +#5661 = CARTESIAN_POINT('',(-4.92675259582E-02,9.855267516568E-02,0.302) + ); +#5662 = CARTESIAN_POINT('',(-4.92675259582E-02,9.855267516568E-02,0.3)); +#5663 = DEFINITIONAL_REPRESENTATION('',(#5664),#5668); +#5664 = LINE('',#5665,#5666); +#5665 = CARTESIAN_POINT('',(0.,0.)); +#5666 = VECTOR('',#5667,1.); +#5667 = DIRECTION('',(1.,0.)); +#5668 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5669 = ADVANCED_FACE('',(#5670),#1798,.T.); +#5670 = FACE_BOUND('',#5671,.T.); +#5671 = EDGE_LOOP('',(#5672,#5673,#5692,#5693)); +#5672 = ORIENTED_EDGE('',*,*,#1748,.F.); +#5673 = ORIENTED_EDGE('',*,*,#5674,.F.); +#5674 = EDGE_CURVE('',#4820,#1749,#5675,.T.); +#5675 = SURFACE_CURVE('',#5676,(#5680,#5686),.PCURVE_S1.); +#5676 = LINE('',#5677,#5678); +#5677 = CARTESIAN_POINT('',(-7.247088587182E-02,0.27183186849,0.302)); +#5678 = VECTOR('',#5679,1.); +#5679 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#5680 = PCURVE('',#1798,#5681); +#5681 = DEFINITIONAL_REPRESENTATION('',(#5682),#5685); +#5682 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5683,#5684),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#5683 = CARTESIAN_POINT('',(0.,0.)); +#5684 = CARTESIAN_POINT('',(0.,1.)); +#5685 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5686 = PCURVE('',#2524,#5687); +#5687 = DEFINITIONAL_REPRESENTATION('',(#5688),#5691); +#5688 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5689,#5690),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#5689 = CARTESIAN_POINT('',(1.,0.)); +#5690 = CARTESIAN_POINT('',(1.,1.)); +#5691 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5692 = ORIENTED_EDGE('',*,*,#4819,.T.); +#5693 = ORIENTED_EDGE('',*,*,#5694,.T.); +#5694 = EDGE_CURVE('',#4822,#1751,#5695,.T.); +#5695 = SURFACE_CURVE('',#5696,(#5700,#5706),.PCURVE_S1.); +#5696 = LINE('',#5697,#5698); +#5697 = CARTESIAN_POINT('',(-3.609666090745E-02,0.205977543236,0.302)); +#5698 = VECTOR('',#5699,1.); +#5699 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#5700 = PCURVE('',#1798,#5701); +#5701 = DEFINITIONAL_REPRESENTATION('',(#5702),#5705); +#5702 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5703,#5704),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#5703 = CARTESIAN_POINT('',(1.,0.)); +#5704 = CARTESIAN_POINT('',(1.,1.)); +#5705 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5706 = PCURVE('',#1860,#5707); +#5707 = DEFINITIONAL_REPRESENTATION('',(#5708),#5712); +#5708 = LINE('',#5709,#5710); +#5709 = CARTESIAN_POINT('',(0.,0.)); +#5710 = VECTOR('',#5711,1.); +#5711 = DIRECTION('',(-3.806720905703E-33,-1.)); +#5712 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5713 = ADVANCED_FACE('',(#5714),#2524,.T.); +#5714 = FACE_BOUND('',#5715,.T.); +#5715 = EDGE_LOOP('',(#5716,#5717,#5736,#5737)); +#5716 = ORIENTED_EDGE('',*,*,#2494,.F.); +#5717 = ORIENTED_EDGE('',*,*,#5718,.F.); +#5718 = EDGE_CURVE('',#4882,#2433,#5719,.T.); +#5719 = SURFACE_CURVE('',#5720,(#5724,#5730),.PCURVE_S1.); +#5720 = LINE('',#5721,#5722); +#5721 = CARTESIAN_POINT('',(-0.104677766816,0.24266046035,0.302)); +#5722 = VECTOR('',#5723,1.); +#5723 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#5724 = PCURVE('',#2524,#5725); +#5725 = DEFINITIONAL_REPRESENTATION('',(#5726),#5729); +#5726 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5727,#5728),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#5727 = CARTESIAN_POINT('',(0.,0.)); +#5728 = CARTESIAN_POINT('',(0.,1.)); +#5729 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5730 = PCURVE('',#2464,#5731); +#5731 = DEFINITIONAL_REPRESENTATION('',(#5732),#5735); +#5732 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5733,#5734),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#5733 = CARTESIAN_POINT('',(1.,0.)); +#5734 = CARTESIAN_POINT('',(1.,1.)); +#5735 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5736 = ORIENTED_EDGE('',*,*,#4881,.T.); +#5737 = ORIENTED_EDGE('',*,*,#5674,.T.); +#5738 = ADVANCED_FACE('',(#5739),#2464,.T.); +#5739 = FACE_BOUND('',#5740,.T.); +#5740 = EDGE_LOOP('',(#5741,#5742,#5761,#5762)); +#5741 = ORIENTED_EDGE('',*,*,#2432,.F.); +#5742 = ORIENTED_EDGE('',*,*,#5743,.F.); +#5743 = EDGE_CURVE('',#4921,#2339,#5744,.T.); +#5744 = SURFACE_CURVE('',#5745,(#5749,#5755),.PCURVE_S1.); +#5745 = LINE('',#5746,#5747); +#5746 = CARTESIAN_POINT('',(-0.118414567475,0.13523559228,0.302)); +#5747 = VECTOR('',#5748,1.); +#5748 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#5749 = PCURVE('',#2464,#5750); +#5750 = DEFINITIONAL_REPRESENTATION('',(#5751),#5754); +#5751 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5752,#5753),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#5752 = CARTESIAN_POINT('',(0.,0.)); +#5753 = CARTESIAN_POINT('',(0.,1.)); +#5754 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5755 = PCURVE('',#2386,#5756); +#5756 = DEFINITIONAL_REPRESENTATION('',(#5757),#5760); +#5757 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5758,#5759),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#5758 = CARTESIAN_POINT('',(1.,0.)); +#5759 = CARTESIAN_POINT('',(1.,1.)); +#5760 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5761 = ORIENTED_EDGE('',*,*,#4920,.T.); +#5762 = ORIENTED_EDGE('',*,*,#5718,.T.); +#5763 = ADVANCED_FACE('',(#5764),#2386,.T.); +#5764 = FACE_BOUND('',#5765,.T.); +#5765 = EDGE_LOOP('',(#5766,#5767,#5786,#5787)); +#5766 = ORIENTED_EDGE('',*,*,#2338,.F.); +#5767 = ORIENTED_EDGE('',*,*,#5768,.F.); +#5768 = EDGE_CURVE('',#4960,#2261,#5769,.T.); +#5769 = SURFACE_CURVE('',#5770,(#5774,#5780),.PCURVE_S1.); +#5770 = LINE('',#5771,#5772); +#5771 = CARTESIAN_POINT('',(-7.33969623207E-02,1.170728373731E-02,0.302) + ); +#5772 = VECTOR('',#5773,1.); +#5773 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#5774 = PCURVE('',#2386,#5775); +#5775 = DEFINITIONAL_REPRESENTATION('',(#5776),#5779); +#5776 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5777,#5778),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#5777 = CARTESIAN_POINT('',(0.,0.)); +#5778 = CARTESIAN_POINT('',(0.,1.)); +#5779 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5780 = PCURVE('',#2300,#5781); +#5781 = DEFINITIONAL_REPRESENTATION('',(#5782),#5785); +#5782 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5783,#5784),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#5783 = CARTESIAN_POINT('',(1.,0.)); +#5784 = CARTESIAN_POINT('',(1.,1.)); +#5785 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5786 = ORIENTED_EDGE('',*,*,#4959,.T.); +#5787 = ORIENTED_EDGE('',*,*,#5743,.T.); +#5788 = ADVANCED_FACE('',(#5789),#2300,.T.); +#5789 = FACE_BOUND('',#5790,.T.); +#5790 = EDGE_LOOP('',(#5791,#5792,#5811,#5812)); +#5791 = ORIENTED_EDGE('',*,*,#2260,.F.); +#5792 = ORIENTED_EDGE('',*,*,#5793,.F.); +#5793 = EDGE_CURVE('',#5015,#2167,#5794,.T.); +#5794 = SURFACE_CURVE('',#5795,(#5799,#5805),.PCURVE_S1.); +#5795 = LINE('',#5796,#5797); +#5796 = CARTESIAN_POINT('',(-3.280394464476E-02,9.958164899777E-02,0.302 + )); +#5797 = VECTOR('',#5798,1.); +#5798 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#5799 = PCURVE('',#2300,#5800); +#5800 = DEFINITIONAL_REPRESENTATION('',(#5801),#5804); +#5801 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5802,#5803),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#5802 = CARTESIAN_POINT('',(0.,0.)); +#5803 = CARTESIAN_POINT('',(0.,1.)); +#5804 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5805 = PCURVE('',#2214,#5806); +#5806 = DEFINITIONAL_REPRESENTATION('',(#5807),#5810); +#5807 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5808,#5809),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#5808 = CARTESIAN_POINT('',(1.,0.)); +#5809 = CARTESIAN_POINT('',(1.,1.)); +#5810 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5811 = ORIENTED_EDGE('',*,*,#5014,.T.); +#5812 = ORIENTED_EDGE('',*,*,#5768,.T.); +#5813 = ADVANCED_FACE('',(#5814),#2214,.T.); +#5814 = FACE_BOUND('',#5815,.T.); +#5815 = EDGE_LOOP('',(#5816,#5817,#5836,#5837)); +#5816 = ORIENTED_EDGE('',*,*,#2166,.F.); +#5817 = ORIENTED_EDGE('',*,*,#5818,.F.); +#5818 = EDGE_CURVE('',#5062,#2105,#5819,.T.); +#5819 = SURFACE_CURVE('',#5820,(#5824,#5830),.PCURVE_S1.); +#5820 = LINE('',#5821,#5822); +#5821 = CARTESIAN_POINT('',(-7.077307904887E-02,0.182928529397,0.302)); +#5822 = VECTOR('',#5823,1.); +#5823 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#5824 = PCURVE('',#2214,#5825); +#5825 = DEFINITIONAL_REPRESENTATION('',(#5826),#5829); +#5826 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5827,#5828),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#5827 = CARTESIAN_POINT('',(0.,0.)); +#5828 = CARTESIAN_POINT('',(0.,1.)); +#5829 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5830 = PCURVE('',#2136,#5831); +#5831 = DEFINITIONAL_REPRESENTATION('',(#5832),#5835); +#5832 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5833,#5834),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#5833 = CARTESIAN_POINT('',(1.,0.)); +#5834 = CARTESIAN_POINT('',(1.,1.)); +#5835 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5836 = ORIENTED_EDGE('',*,*,#5061,.T.); +#5837 = ORIENTED_EDGE('',*,*,#5793,.T.); +#5838 = ADVANCED_FACE('',(#5839),#2136,.T.); +#5839 = FACE_BOUND('',#5840,.T.); +#5840 = EDGE_LOOP('',(#5841,#5842,#5861,#5862)); +#5841 = ORIENTED_EDGE('',*,*,#2104,.F.); +#5842 = ORIENTED_EDGE('',*,*,#5843,.F.); +#5843 = EDGE_CURVE('',#5117,#2027,#5844,.T.); +#5844 = SURFACE_CURVE('',#5845,(#5849,#5855),.PCURVE_S1.); +#5845 = LINE('',#5846,#5847); +#5846 = CARTESIAN_POINT('',(-0.101950986161,0.149075290321,0.302)); +#5847 = VECTOR('',#5848,1.); +#5848 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#5849 = PCURVE('',#2136,#5850); +#5850 = DEFINITIONAL_REPRESENTATION('',(#5851),#5854); +#5851 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5852,#5853),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#5852 = CARTESIAN_POINT('',(0.,0.)); +#5853 = CARTESIAN_POINT('',(0.,1.)); +#5854 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5855 = PCURVE('',#2066,#5856); +#5856 = DEFINITIONAL_REPRESENTATION('',(#5857),#5860); +#5857 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5858,#5859),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#5858 = CARTESIAN_POINT('',(1.,0.)); +#5859 = CARTESIAN_POINT('',(1.,1.)); +#5860 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5861 = ORIENTED_EDGE('',*,*,#5116,.T.); +#5862 = ORIENTED_EDGE('',*,*,#5818,.T.); +#5863 = ADVANCED_FACE('',(#5864),#2066,.T.); +#5864 = FACE_BOUND('',#5865,.T.); +#5865 = EDGE_LOOP('',(#5866,#5867,#5886,#5887)); +#5866 = ORIENTED_EDGE('',*,*,#2026,.F.); +#5867 = ORIENTED_EDGE('',*,*,#5868,.F.); +#5868 = EDGE_CURVE('',#5156,#1981,#5869,.T.); +#5869 = SURFACE_CURVE('',#5870,(#5874,#5880),.PCURVE_S1.); +#5870 = LINE('',#5871,#5872); +#5871 = CARTESIAN_POINT('',(-8.795694204477E-02,0.234583015768,0.302)); +#5872 = VECTOR('',#5873,1.); +#5873 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#5874 = PCURVE('',#2066,#5875); +#5875 = DEFINITIONAL_REPRESENTATION('',(#5876),#5879); +#5876 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5877,#5878),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#5877 = CARTESIAN_POINT('',(0.,0.)); +#5878 = CARTESIAN_POINT('',(0.,1.)); +#5879 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5880 = PCURVE('',#2004,#5881); +#5881 = DEFINITIONAL_REPRESENTATION('',(#5882),#5885); +#5882 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5883,#5884),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#5883 = CARTESIAN_POINT('',(1.,0.)); +#5884 = CARTESIAN_POINT('',(1.,1.)); +#5885 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5886 = ORIENTED_EDGE('',*,*,#5155,.T.); +#5887 = ORIENTED_EDGE('',*,*,#5843,.T.); +#5888 = ADVANCED_FACE('',(#5889),#2004,.T.); +#5889 = FACE_BOUND('',#5890,.T.); +#5890 = EDGE_LOOP('',(#5891,#5892,#5911,#5912)); +#5891 = ORIENTED_EDGE('',*,*,#1980,.F.); +#5892 = ORIENTED_EDGE('',*,*,#5893,.F.); +#5893 = EDGE_CURVE('',#5203,#1919,#5894,.T.); +#5894 = SURFACE_CURVE('',#5895,(#5899,#5905),.PCURVE_S1.); +#5895 = LINE('',#5896,#5897); +#5896 = CARTESIAN_POINT('',(-7.355130839552E-02,0.242197422125,0.302)); +#5897 = VECTOR('',#5898,1.); +#5898 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#5899 = PCURVE('',#2004,#5900); +#5900 = DEFINITIONAL_REPRESENTATION('',(#5901),#5904); +#5901 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5902,#5903),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#5902 = CARTESIAN_POINT('',(0.,0.)); +#5903 = CARTESIAN_POINT('',(0.,1.)); +#5904 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5905 = PCURVE('',#1950,#5906); +#5906 = DEFINITIONAL_REPRESENTATION('',(#5907),#5910); +#5907 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5908,#5909),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#5908 = CARTESIAN_POINT('',(1.,0.)); +#5909 = CARTESIAN_POINT('',(1.,1.)); +#5910 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5911 = ORIENTED_EDGE('',*,*,#5202,.T.); +#5912 = ORIENTED_EDGE('',*,*,#5868,.T.); +#5913 = ADVANCED_FACE('',(#5914),#1950,.T.); +#5914 = FACE_BOUND('',#5915,.T.); +#5915 = EDGE_LOOP('',(#5916,#5917,#5936,#5937)); +#5916 = ORIENTED_EDGE('',*,*,#1918,.F.); +#5917 = ORIENTED_EDGE('',*,*,#5918,.F.); +#5918 = EDGE_CURVE('',#5234,#1873,#5919,.T.); +#5919 = SURFACE_CURVE('',#5920,(#5924,#5930),.PCURVE_S1.); +#5920 = LINE('',#5921,#5922); +#5921 = CARTESIAN_POINT('',(-5.832249568059E-02,0.229026557075,0.302)); +#5922 = VECTOR('',#5923,1.); +#5923 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#5924 = PCURVE('',#1950,#5925); +#5925 = DEFINITIONAL_REPRESENTATION('',(#5926),#5929); +#5926 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5927,#5928),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#5927 = CARTESIAN_POINT('',(0.,0.)); +#5928 = CARTESIAN_POINT('',(0.,1.)); +#5929 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5930 = PCURVE('',#1896,#5931); +#5931 = DEFINITIONAL_REPRESENTATION('',(#5932),#5935); +#5932 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5933,#5934),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#5933 = CARTESIAN_POINT('',(1.,0.)); +#5934 = CARTESIAN_POINT('',(1.,1.)); +#5935 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5936 = ORIENTED_EDGE('',*,*,#5233,.T.); +#5937 = ORIENTED_EDGE('',*,*,#5893,.T.); +#5938 = ADVANCED_FACE('',(#5939),#1896,.T.); +#5939 = FACE_BOUND('',#5940,.T.); +#5940 = EDGE_LOOP('',(#5941,#5942,#5962,#5963)); +#5941 = ORIENTED_EDGE('',*,*,#1872,.F.); +#5942 = ORIENTED_EDGE('',*,*,#5943,.F.); +#5943 = EDGE_CURVE('',#5273,#1845,#5944,.T.); +#5944 = SURFACE_CURVE('',#5945,(#5949,#5955),.PCURVE_S1.); +#5945 = LINE('',#5946,#5947); +#5946 = CARTESIAN_POINT('',(-5.256024222089E-02,0.202684826973,0.302)); +#5947 = VECTOR('',#5948,1.); +#5948 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#5949 = PCURVE('',#1896,#5950); +#5950 = DEFINITIONAL_REPRESENTATION('',(#5951),#5954); +#5951 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#5952,#5953),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#5952 = CARTESIAN_POINT('',(0.,0.)); +#5953 = CARTESIAN_POINT('',(0.,1.)); +#5954 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5955 = PCURVE('',#1860,#5956); +#5956 = DEFINITIONAL_REPRESENTATION('',(#5957),#5961); +#5957 = LINE('',#5958,#5959); +#5958 = CARTESIAN_POINT('',(-1.678962447617E-02,4.501732328109E-19)); +#5959 = VECTOR('',#5960,1.); +#5960 = DIRECTION('',(-3.806720905703E-33,-1.)); +#5961 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#5962 = ORIENTED_EDGE('',*,*,#5272,.T.); +#5963 = ORIENTED_EDGE('',*,*,#5918,.T.); +#5964 = ADVANCED_FACE('',(#5965),#1860,.T.); +#5965 = FACE_BOUND('',#5966,.T.); +#5966 = EDGE_LOOP('',(#5967,#5968,#5969,#5970)); +#5967 = ORIENTED_EDGE('',*,*,#1844,.F.); +#5968 = ORIENTED_EDGE('',*,*,#5694,.F.); +#5969 = ORIENTED_EDGE('',*,*,#5303,.T.); +#5970 = ORIENTED_EDGE('',*,*,#5943,.T.); +#5971 = ADVANCED_FACE('',(#5972),#5446,.T.); +#5972 = FACE_BOUND('',#5973,.T.); +#5973 = EDGE_LOOP('',(#5974,#6028,#6047,#6048)); +#5974 = ORIENTED_EDGE('',*,*,#5975,.F.); +#5975 = EDGE_CURVE('',#5976,#5978,#5980,.T.); +#5976 = VERTEX_POINT('',#5977); +#5977 = CARTESIAN_POINT('',(-7.530056391007E-02,0.153294083033,0.3)); +#5978 = VERTEX_POINT('',#5979); +#5979 = CARTESIAN_POINT('',(-0.101950986161,0.100250481989,0.3)); +#5980 = SURFACE_CURVE('',#5981,(#5997,#6004),.PCURVE_S1.); +#5981 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#5982,#5983,#5984,#5985,#5986, + #5987,#5988,#5989,#5990,#5991,#5992,#5993,#5994,#5995,#5996), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0., + 4.226779333469E-02,8.432559633327E-02,0.127039892833,0.171814314024, + 0.219694337501,0.271016843258,0.327501557308,0.389152196716, + 0.521662359695,0.665761784131,0.824900004924,1.),.UNSPECIFIED.); +#5982 = CARTESIAN_POINT('',(-7.530056391007E-02,0.153294083033,0.3)); +#5983 = CARTESIAN_POINT('',(-7.621516748532E-02,0.153264412118,0.3)); +#5984 = CARTESIAN_POINT('',(-7.803983080003E-02,0.153205217696,0.3)); +#5985 = CARTESIAN_POINT('',(-8.06866425473E-02,0.152415783666,0.3)); +#5986 = CARTESIAN_POINT('',(-8.325072480295E-02,0.151288822602,0.3)); +#5987 = CARTESIAN_POINT('',(-8.568509650074E-02,0.149652877524,0.3)); +#5988 = CARTESIAN_POINT('',(-8.801511932755E-02,0.14758562449,0.3)); +#5989 = CARTESIAN_POINT('',(-9.017142601542E-02,0.145001429604,0.3)); +#5990 = CARTESIAN_POINT('',(-9.228548873588E-02,0.142016496381,0.3)); +#5991 = CARTESIAN_POINT('',(-9.499192822814E-02,0.137330258597,0.3)); +#5992 = CARTESIAN_POINT('',(-9.787439941184E-02,0.130593101157,0.3)); +#5993 = CARTESIAN_POINT('',(-0.100229861275,0.121472416913,0.3)); +#5994 = CARTESIAN_POINT('',(-0.101749343164,0.11124261082,0.3)); +#5995 = CARTESIAN_POINT('',(-0.101881665448,0.10402934967,0.3)); +#5996 = CARTESIAN_POINT('',(-0.101950986161,0.100250481989,0.3)); +#5997 = PCURVE('',#5446,#5998); +#5998 = DEFINITIONAL_REPRESENTATION('',(#5999),#6003); +#5999 = LINE('',#6000,#6001); +#6000 = CARTESIAN_POINT('',(0.,1.)); +#6001 = VECTOR('',#6002,1.); +#6002 = DIRECTION('',(1.,0.)); +#6003 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6004 = PCURVE('',#6005,#6010); +#6005 = PLANE('',#6006); +#6006 = AXIS2_PLACEMENT_3D('',#6007,#6008,#6009); +#6007 = CARTESIAN_POINT('',(-0.8,-0.4,0.3)); +#6008 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#6009 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#6010 = DEFINITIONAL_REPRESENTATION('',(#6011),#6027); +#6011 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6012,#6013,#6014,#6015,#6016, + #6017,#6018,#6019,#6020,#6021,#6022,#6023,#6024,#6025,#6026), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0., + 4.226779333469E-02,8.432559633327E-02,0.127039892833,0.171814314024, + 0.219694337501,0.271016843258,0.327501557308,0.389152196716, + 0.521662359695,0.665761784131,0.824900004924,1.),.UNSPECIFIED.); +#6012 = CARTESIAN_POINT('',(-0.553294083033,0.72469943609)); +#6013 = CARTESIAN_POINT('',(-0.553264412118,0.723784832515)); +#6014 = CARTESIAN_POINT('',(-0.553205217696,0.7219601692)); +#6015 = CARTESIAN_POINT('',(-0.552415783666,0.719313357453)); +#6016 = CARTESIAN_POINT('',(-0.551288822602,0.716749275197)); +#6017 = CARTESIAN_POINT('',(-0.549652877524,0.714314903499)); +#6018 = CARTESIAN_POINT('',(-0.54758562449,0.711984880672)); +#6019 = CARTESIAN_POINT('',(-0.545001429604,0.709828573985)); +#6020 = CARTESIAN_POINT('',(-0.542016496381,0.707714511264)); +#6021 = CARTESIAN_POINT('',(-0.537330258597,0.705008071772)); +#6022 = CARTESIAN_POINT('',(-0.530593101157,0.702125600588)); +#6023 = CARTESIAN_POINT('',(-0.521472416913,0.699770138725)); +#6024 = CARTESIAN_POINT('',(-0.51124261082,0.698250656836)); +#6025 = CARTESIAN_POINT('',(-0.50402934967,0.698118334552)); +#6026 = CARTESIAN_POINT('',(-0.500250481989,0.698049013839)); +#6027 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6028 = ORIENTED_EDGE('',*,*,#6029,.F.); +#6029 = EDGE_CURVE('',#5407,#5976,#6030,.T.); +#6030 = SURFACE_CURVE('',#6031,(#6035,#6041),.PCURVE_S1.); +#6031 = LINE('',#6032,#6033); +#6032 = CARTESIAN_POINT('',(-7.530056391007E-02,0.153294083033,0.302)); +#6033 = VECTOR('',#6034,1.); +#6034 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#6035 = PCURVE('',#5446,#6036); +#6036 = DEFINITIONAL_REPRESENTATION('',(#6037),#6040); +#6037 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#6038,#6039),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#6038 = CARTESIAN_POINT('',(0.,0.)); +#6039 = CARTESIAN_POINT('',(0.,1.)); +#6040 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6041 = PCURVE('',#5532,#6042); +#6042 = DEFINITIONAL_REPRESENTATION('',(#6043),#6046); +#6043 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#6044,#6045),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#6044 = CARTESIAN_POINT('',(1.,0.)); +#6045 = CARTESIAN_POINT('',(1.,1.)); +#6046 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6047 = ORIENTED_EDGE('',*,*,#5406,.T.); +#6048 = ORIENTED_EDGE('',*,*,#6049,.T.); +#6049 = EDGE_CURVE('',#5327,#5978,#6050,.T.); +#6050 = SURFACE_CURVE('',#6051,(#6055,#6061),.PCURVE_S1.); +#6051 = LINE('',#6052,#6053); +#6052 = CARTESIAN_POINT('',(-0.101950986161,0.100250481989,0.302)); +#6053 = VECTOR('',#6054,1.); +#6054 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#6055 = PCURVE('',#5446,#6056); +#6056 = DEFINITIONAL_REPRESENTATION('',(#6057),#6060); +#6057 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#6058,#6059),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#6058 = CARTESIAN_POINT('',(1.,0.)); +#6059 = CARTESIAN_POINT('',(1.,1.)); +#6060 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6061 = PCURVE('',#5368,#6062); +#6062 = DEFINITIONAL_REPRESENTATION('',(#6063),#6066); +#6063 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#6064,#6065),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#6064 = CARTESIAN_POINT('',(0.,0.)); +#6065 = CARTESIAN_POINT('',(0.,1.)); +#6066 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6067 = ADVANCED_FACE('',(#6068),#5368,.T.); +#6068 = FACE_BOUND('',#6069,.T.); +#6069 = EDGE_LOOP('',(#6070,#6117,#6118,#6119)); +#6070 = ORIENTED_EDGE('',*,*,#6071,.F.); +#6071 = EDGE_CURVE('',#5978,#6072,#6074,.T.); +#6072 = VERTEX_POINT('',#6073); +#6073 = CARTESIAN_POINT('',(-7.463173091921E-02,4.13417301015E-02,0.3)); +#6074 = SURFACE_CURVE('',#6075,(#6091,#6098),.PCURVE_S1.); +#6075 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6076,#6077,#6078,#6079,#6080, + #6081,#6082,#6083,#6084,#6085,#6086,#6087,#6088,#6089,#6090), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.,0.109243264963, + 0.216023149294,0.321968345541,0.426361294985,0.524965644475, + 0.61273172182,0.691523903003,0.761600299833,0.824438999256, + 0.882594851407,0.93994307164,1.),.UNSPECIFIED.); +#6076 = CARTESIAN_POINT('',(-0.101950986161,0.100250481989,0.3)); +#6077 = CARTESIAN_POINT('',(-0.101924104222,9.767572844008E-02,0.3)); +#6078 = CARTESIAN_POINT('',(-0.101870946518,9.258428073938E-02,0.3)); +#6079 = CARTESIAN_POINT('',(-0.101062342672,8.503635691268E-02,0.3)); +#6080 = CARTESIAN_POINT('',(-0.100056852551,7.763101160967E-02,0.3)); +#6081 = CARTESIAN_POINT('',(-9.845525110705E-02,7.05224936676E-02,0.3)); +#6082 = CARTESIAN_POINT('',(-9.653808570573E-02,6.394566630728E-02,0.3) + ); +#6083 = CARTESIAN_POINT('',(-9.44232786662E-02,5.805666442772E-02,0.3)); +#6084 = CARTESIAN_POINT('',(-9.193209721297E-02,5.306140394613E-02,0.3) + ); +#6085 = CARTESIAN_POINT('',(-8.931652250781E-02,4.879677656191E-02,0.3) + ); +#6086 = CARTESIAN_POINT('',(-8.624072233728E-02,4.546170383601E-02,0.3) + ); +#6087 = CARTESIAN_POINT('',(-8.27577752205E-02,4.305433232873E-02,0.3)); +#6088 = CARTESIAN_POINT('',(-7.88238642164E-02,4.158657614539E-02,0.3)); +#6089 = CARTESIAN_POINT('',(-7.605043768421E-02,4.142459119255E-02,0.3) + ); +#6090 = CARTESIAN_POINT('',(-7.463173091921E-02,4.13417301015E-02,0.3)); +#6091 = PCURVE('',#5368,#6092); +#6092 = DEFINITIONAL_REPRESENTATION('',(#6093),#6097); +#6093 = LINE('',#6094,#6095); +#6094 = CARTESIAN_POINT('',(0.,1.)); +#6095 = VECTOR('',#6096,1.); +#6096 = DIRECTION('',(1.,0.)); +#6097 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6098 = PCURVE('',#6005,#6099); +#6099 = DEFINITIONAL_REPRESENTATION('',(#6100),#6116); +#6100 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6101,#6102,#6103,#6104,#6105, + #6106,#6107,#6108,#6109,#6110,#6111,#6112,#6113,#6114,#6115), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.,0.109243264963, + 0.216023149294,0.321968345541,0.426361294985,0.524965644475, + 0.61273172182,0.691523903003,0.761600299833,0.824438999256, + 0.882594851407,0.93994307164,1.),.UNSPECIFIED.); +#6101 = CARTESIAN_POINT('',(-0.500250481989,0.698049013839)); +#6102 = CARTESIAN_POINT('',(-0.49767572844,0.698075895778)); +#6103 = CARTESIAN_POINT('',(-0.492584280739,0.698129053482)); +#6104 = CARTESIAN_POINT('',(-0.485036356913,0.698937657328)); +#6105 = CARTESIAN_POINT('',(-0.47763101161,0.699943147449)); +#6106 = CARTESIAN_POINT('',(-0.470522493668,0.701544748893)); +#6107 = CARTESIAN_POINT('',(-0.463945666307,0.703461914294)); +#6108 = CARTESIAN_POINT('',(-0.458056664428,0.705576721334)); +#6109 = CARTESIAN_POINT('',(-0.453061403946,0.708067902787)); +#6110 = CARTESIAN_POINT('',(-0.448796776562,0.710683477492)); +#6111 = CARTESIAN_POINT('',(-0.445461703836,0.713759277663)); +#6112 = CARTESIAN_POINT('',(-0.443054332329,0.71724222478)); +#6113 = CARTESIAN_POINT('',(-0.441586576145,0.721176135784)); +#6114 = CARTESIAN_POINT('',(-0.441424591193,0.723949562316)); +#6115 = CARTESIAN_POINT('',(-0.441341730101,0.725368269081)); +#6116 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6117 = ORIENTED_EDGE('',*,*,#6049,.F.); +#6118 = ORIENTED_EDGE('',*,*,#5326,.T.); +#6119 = ORIENTED_EDGE('',*,*,#6120,.T.); +#6120 = EDGE_CURVE('',#5329,#6072,#6121,.T.); +#6121 = SURFACE_CURVE('',#6122,(#6126,#6132),.PCURVE_S1.); +#6122 = LINE('',#6123,#6124); +#6123 = CARTESIAN_POINT('',(-7.463173091921E-02,4.13417301015E-02,0.302) + ); +#6124 = VECTOR('',#6125,1.); +#6125 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#6126 = PCURVE('',#5368,#6127); +#6127 = DEFINITIONAL_REPRESENTATION('',(#6128),#6131); +#6128 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#6129,#6130),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#6129 = CARTESIAN_POINT('',(1.,0.)); +#6130 = CARTESIAN_POINT('',(1.,1.)); +#6131 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6132 = PCURVE('',#5624,#6133); +#6133 = DEFINITIONAL_REPRESENTATION('',(#6134),#6137); +#6134 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#6135,#6136),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#6135 = CARTESIAN_POINT('',(0.,0.)); +#6136 = CARTESIAN_POINT('',(0.,1.)); +#6137 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6138 = ADVANCED_FACE('',(#6139),#5624,.T.); +#6139 = FACE_BOUND('',#6140,.T.); +#6140 = EDGE_LOOP('',(#6141,#6196,#6197,#6198)); +#6141 = ORIENTED_EDGE('',*,*,#6142,.F.); +#6142 = EDGE_CURVE('',#6072,#6143,#6145,.T.); +#6143 = VERTEX_POINT('',#6144); +#6144 = CARTESIAN_POINT('',(-4.92675259582E-02,9.855267516568E-02,0.3)); +#6145 = SURFACE_CURVE('',#6146,(#6166,#6173),.PCURVE_S1.); +#6146 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6147,#6148,#6149,#6150,#6151, + #6152,#6153,#6154,#6155,#6156,#6157,#6158,#6159,#6160,#6161,#6162, + #6163,#6164,#6165),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,4.305891415309E-02,8.431100584057E-02,0.126412344501, + 0.169628791793,0.214862033891,0.264105324653,0.317793992402, + 0.376356096119,0.439245264454,0.506359790794,0.576812824148, + 0.65267291028,0.732387812435,0.816256919086,0.905921728012,1.), + .UNSPECIFIED.); +#6147 = CARTESIAN_POINT('',(-7.463173091921E-02,4.13417301015E-02,0.3)); +#6148 = CARTESIAN_POINT('',(-7.36489444578E-02,4.13909814942E-02,0.3)); +#6149 = CARTESIAN_POINT('',(-7.172461086236E-02,4.148741761061E-02,0.3) + ); +#6150 = CARTESIAN_POINT('',(-6.893007938947E-02,4.226139891875E-02,0.3) + ); +#6151 = CARTESIAN_POINT('',(-6.627788929855E-02,4.342726502517E-02,0.3) + ); +#6152 = CARTESIAN_POINT('',(-6.383910156245E-02,4.516758759971E-02,0.3) + ); +#6153 = CARTESIAN_POINT('',(-6.161659080274E-02,4.739228249608E-02,0.3) + ); +#6154 = CARTESIAN_POINT('',(-5.947676231063E-02,5.001697312643E-02,0.3) + ); +#6155 = CARTESIAN_POINT('',(-5.760886593088E-02,5.319918237196E-02,0.3) + ); +#6156 = CARTESIAN_POINT('',(-5.585511740996E-02,5.678892740192E-02,0.3) + ); +#6157 = CARTESIAN_POINT('',(-5.435029965401E-02,6.081846785872E-02,0.3) + ); +#6158 = CARTESIAN_POINT('',(-5.293755803954E-02,6.516610625362E-02,0.3) + ); +#6159 = CARTESIAN_POINT('',(-5.183880023704E-02,6.990800971198E-02,0.3) + ); +#6160 = CARTESIAN_POINT('',(-5.084022508801E-02,7.49630459341E-02,0.3)); +#6161 = CARTESIAN_POINT('',(-5.014894616744E-02,8.037925197238E-02,0.3) + ); +#6162 = CARTESIAN_POINT('',(-4.963075664615E-02,8.61279654229E-02,0.3)); +#6163 = CARTESIAN_POINT('',(-4.932415532072E-02,9.222114964923E-02,0.3) + ); +#6164 = CARTESIAN_POINT('',(-4.928670228325E-02,9.640863917488E-02,0.3) + ); +#6165 = CARTESIAN_POINT('',(-4.92675259582E-02,9.855267516568E-02,0.3)); +#6166 = PCURVE('',#5624,#6167); +#6167 = DEFINITIONAL_REPRESENTATION('',(#6168),#6172); +#6168 = LINE('',#6169,#6170); +#6169 = CARTESIAN_POINT('',(0.,1.)); +#6170 = VECTOR('',#6171,1.); +#6171 = DIRECTION('',(1.,0.)); +#6172 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6173 = PCURVE('',#6005,#6174); +#6174 = DEFINITIONAL_REPRESENTATION('',(#6175),#6195); +#6175 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6176,#6177,#6178,#6179,#6180, + #6181,#6182,#6183,#6184,#6185,#6186,#6187,#6188,#6189,#6190,#6191, + #6192,#6193,#6194),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,4.305891415309E-02,8.431100584057E-02,0.126412344501, + 0.169628791793,0.214862033891,0.264105324653,0.317793992402, + 0.376356096119,0.439245264454,0.506359790794,0.576812824148, + 0.65267291028,0.732387812435,0.816256919086,0.905921728012,1.), + .UNSPECIFIED.); +#6176 = CARTESIAN_POINT('',(-0.441341730101,0.725368269081)); +#6177 = CARTESIAN_POINT('',(-0.441390981494,0.726351055542)); +#6178 = CARTESIAN_POINT('',(-0.441487417611,0.728275389138)); +#6179 = CARTESIAN_POINT('',(-0.442261398919,0.731069920611)); +#6180 = CARTESIAN_POINT('',(-0.443427265025,0.733722110701)); +#6181 = CARTESIAN_POINT('',(-0.4451675876,0.736160898438)); +#6182 = CARTESIAN_POINT('',(-0.447392282496,0.738383409197)); +#6183 = CARTESIAN_POINT('',(-0.450016973126,0.740523237689)); +#6184 = CARTESIAN_POINT('',(-0.453199182372,0.742391134069)); +#6185 = CARTESIAN_POINT('',(-0.456788927402,0.74414488259)); +#6186 = CARTESIAN_POINT('',(-0.460818467859,0.745649700346)); +#6187 = CARTESIAN_POINT('',(-0.465166106254,0.74706244196)); +#6188 = CARTESIAN_POINT('',(-0.469908009712,0.748161199763)); +#6189 = CARTESIAN_POINT('',(-0.474963045934,0.749159774912)); +#6190 = CARTESIAN_POINT('',(-0.480379251972,0.749851053833)); +#6191 = CARTESIAN_POINT('',(-0.486127965423,0.750369243354)); +#6192 = CARTESIAN_POINT('',(-0.492221149649,0.750675844679)); +#6193 = CARTESIAN_POINT('',(-0.496408639175,0.750713297717)); +#6194 = CARTESIAN_POINT('',(-0.498552675166,0.750732474042)); +#6195 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6196 = ORIENTED_EDGE('',*,*,#6120,.F.); +#6197 = ORIENTED_EDGE('',*,*,#5578,.T.); +#6198 = ORIENTED_EDGE('',*,*,#6199,.T.); +#6199 = EDGE_CURVE('',#5485,#6143,#6200,.T.); +#6200 = SURFACE_CURVE('',#6201,(#6205,#6211),.PCURVE_S1.); +#6201 = LINE('',#6202,#6203); +#6202 = CARTESIAN_POINT('',(-4.92675259582E-02,9.855267516568E-02,0.302) + ); +#6203 = VECTOR('',#6204,1.); +#6204 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#6205 = PCURVE('',#5624,#6206); +#6206 = DEFINITIONAL_REPRESENTATION('',(#6207),#6210); +#6207 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#6208,#6209),.UNSPECIFIED.,.F., + .F.,(2,2),(1.665334536938E-16,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#6208 = CARTESIAN_POINT('',(1.,0.)); +#6209 = CARTESIAN_POINT('',(1.,1.)); +#6210 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6211 = PCURVE('',#5532,#6212); +#6212 = DEFINITIONAL_REPRESENTATION('',(#6213),#6216); +#6213 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#6214,#6215),.UNSPECIFIED.,.F., + .F.,(2,2),(1.665334536938E-16,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#6214 = CARTESIAN_POINT('',(0.,0.)); +#6215 = CARTESIAN_POINT('',(0.,1.)); +#6216 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6217 = ADVANCED_FACE('',(#6218),#5532,.T.); +#6218 = FACE_BOUND('',#6219,.T.); +#6219 = EDGE_LOOP('',(#6220,#6273,#6274,#6275)); +#6220 = ORIENTED_EDGE('',*,*,#6221,.F.); +#6221 = EDGE_CURVE('',#6143,#5976,#6222,.T.); +#6222 = SURFACE_CURVE('',#6223,(#6243,#6250),.PCURVE_S1.); +#6223 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6224,#6225,#6226,#6227,#6228, + #6229,#6230,#6231,#6232,#6233,#6234,#6235,#6236,#6237,#6238,#6239, + #6240,#6241,#6242),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,9.242081121346E-02,0.180329895351,0.263852826636, + 0.341610477782,0.415311914955,0.48516335459,0.550673340517, + 0.612163040493,0.670020610958,0.723416823037,0.772616779675, + 0.818980921461,0.864284136055,0.908474144563,0.952925060694,1.), + .UNSPECIFIED.); +#6224 = CARTESIAN_POINT('',(-4.92675259582E-02,9.855267516568E-02,0.3)); +#6225 = CARTESIAN_POINT('',(-4.928614427853E-02,0.100611041805,0.3)); +#6226 = CARTESIAN_POINT('',(-4.932247202454E-02,0.104627291347,0.3)); +#6227 = CARTESIAN_POINT('',(-4.963767284786E-02,0.110496735164,0.3)); +#6228 = CARTESIAN_POINT('',(-5.013548034991E-02,0.11602541934,0.3)); +#6229 = CARTESIAN_POINT('',(-5.085808856057E-02,0.121210612842,0.3)); +#6230 = CARTESIAN_POINT('',(-5.177882522002E-02,0.126054644433,0.3)); +#6231 = CARTESIAN_POINT('',(-5.289788566873E-02,0.130576790858,0.3)); +#6232 = CARTESIAN_POINT('',(-5.422849914395E-02,0.134758115317,0.3)); +#6233 = CARTESIAN_POINT('',(-5.577247968458E-02,0.138577961453,0.3)); +#6234 = CARTESIAN_POINT('',(-5.748869161871E-02,0.142028574223,0.3)); +#6235 = CARTESIAN_POINT('',(-5.945181769915E-02,0.145023464358,0.3)); +#6236 = CARTESIAN_POINT('',(-6.156434267908E-02,0.147592123688,0.3)); +#6237 = CARTESIAN_POINT('',(-6.390745610769E-02,0.149700085877,0.3)); +#6238 = CARTESIAN_POINT('',(-6.649600476558E-02,0.151300103808,0.3)); +#6239 = CARTESIAN_POINT('',(-6.926461702342E-02,0.152427404118,0.3)); +#6240 = CARTESIAN_POINT('',(-7.220441410358E-02,0.153217224023,0.3)); +#6241 = CARTESIAN_POINT('',(-7.424897496E-02,0.153267978325,0.3)); +#6242 = CARTESIAN_POINT('',(-7.530056391007E-02,0.153294083033,0.3)); +#6243 = PCURVE('',#5532,#6244); +#6244 = DEFINITIONAL_REPRESENTATION('',(#6245),#6249); +#6245 = LINE('',#6246,#6247); +#6246 = CARTESIAN_POINT('',(0.,1.)); +#6247 = VECTOR('',#6248,1.); +#6248 = DIRECTION('',(1.,0.)); +#6249 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6250 = PCURVE('',#6005,#6251); +#6251 = DEFINITIONAL_REPRESENTATION('',(#6252),#6272); +#6252 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6253,#6254,#6255,#6256,#6257, + #6258,#6259,#6260,#6261,#6262,#6263,#6264,#6265,#6266,#6267,#6268, + #6269,#6270,#6271),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,9.242081121346E-02,0.180329895351,0.263852826636, + 0.341610477782,0.415311914955,0.48516335459,0.550673340517, + 0.612163040493,0.670020610958,0.723416823037,0.772616779675, + 0.818980921461,0.864284136055,0.908474144563,0.952925060694,1.), + .UNSPECIFIED.); +#6253 = CARTESIAN_POINT('',(-0.498552675166,0.750732474042)); +#6254 = CARTESIAN_POINT('',(-0.500611041805,0.750713855721)); +#6255 = CARTESIAN_POINT('',(-0.504627291347,0.750677527975)); +#6256 = CARTESIAN_POINT('',(-0.510496735164,0.750362327152)); +#6257 = CARTESIAN_POINT('',(-0.51602541934,0.74986451965)); +#6258 = CARTESIAN_POINT('',(-0.521210612842,0.749141911439)); +#6259 = CARTESIAN_POINT('',(-0.526054644433,0.74822117478)); +#6260 = CARTESIAN_POINT('',(-0.530576790858,0.747102114331)); +#6261 = CARTESIAN_POINT('',(-0.534758115317,0.745771500856)); +#6262 = CARTESIAN_POINT('',(-0.538577961453,0.744227520315)); +#6263 = CARTESIAN_POINT('',(-0.542028574223,0.742511308381)); +#6264 = CARTESIAN_POINT('',(-0.545023464358,0.740548182301)); +#6265 = CARTESIAN_POINT('',(-0.547592123688,0.738435657321)); +#6266 = CARTESIAN_POINT('',(-0.549700085877,0.736092543892)); +#6267 = CARTESIAN_POINT('',(-0.551300103808,0.733503995234)); +#6268 = CARTESIAN_POINT('',(-0.552427404118,0.730735382977)); +#6269 = CARTESIAN_POINT('',(-0.553217224023,0.727795585896)); +#6270 = CARTESIAN_POINT('',(-0.553267978325,0.72575102504)); +#6271 = CARTESIAN_POINT('',(-0.553294083033,0.72469943609)); +#6272 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6273 = ORIENTED_EDGE('',*,*,#6199,.F.); +#6274 = ORIENTED_EDGE('',*,*,#5484,.T.); +#6275 = ORIENTED_EDGE('',*,*,#6029,.T.); +#6276 = ADVANCED_FACE('',(#6277),#6005,.T.); +#6277 = FACE_BOUND('',#6278,.T.); +#6278 = EDGE_LOOP('',(#6279,#6280,#6281,#6282)); +#6279 = ORIENTED_EDGE('',*,*,#5975,.T.); +#6280 = ORIENTED_EDGE('',*,*,#6071,.T.); +#6281 = ORIENTED_EDGE('',*,*,#6142,.T.); +#6282 = ORIENTED_EDGE('',*,*,#6221,.T.); +#6283 = ADVANCED_FACE('',(#6284,#6574),#6306,.T.); +#6284 = FACE_BOUND('',#6285,.T.); +#6285 = EDGE_LOOP('',(#6286,#6332,#6371,#6442,#6505)); +#6286 = ORIENTED_EDGE('',*,*,#6287,.F.); +#6287 = EDGE_CURVE('',#6288,#6290,#6292,.T.); +#6288 = VERTEX_POINT('',#6289); +#6289 = CARTESIAN_POINT('',(-6.668009309687E-03,3.645410439907E-02,0.302 + )); +#6290 = VERTEX_POINT('',#6291); +#6291 = CARTESIAN_POINT('',(-1.963307959402E-02,0.14166667873,0.302)); +#6292 = SURFACE_CURVE('',#6293,(#6305,#6325),.PCURVE_S1.); +#6293 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6294,#6295,#6296,#6297,#6298, + #6299,#6300,#6301,#6302,#6303,#6304),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,8.874248781343E-02,0.18749855617,0.295863554394, + 0.414922527979,0.545071851417,0.685442978585,0.837216579864,1.), + .UNSPECIFIED.); +#6294 = CARTESIAN_POINT('',(-6.668009309687E-03,3.645410439907E-02,0.302 + )); +#6295 = CARTESIAN_POINT('',(-7.72868304737E-03,3.942311516555E-02,0.302) + ); +#6296 = CARTESIAN_POINT('',(-9.969715491732E-03,4.569615579902E-02,0.302 + )); +#6297 = CARTESIAN_POINT('',(-1.24736518448E-02,5.591197426034E-02,0.302) + ); +#6298 = CARTESIAN_POINT('',(-1.47841414487E-02,6.726344921029E-02,0.302) + ); +#6299 = CARTESIAN_POINT('',(-1.650481270486E-02,7.984902738091E-02,0.302 + )); +#6300 = CARTESIAN_POINT('',(-1.79710667163E-02,9.360587304361E-02,0.302) + ); +#6301 = CARTESIAN_POINT('',(-1.888454542454E-02,0.108575532398,0.302)); +#6302 = CARTESIAN_POINT('',(-1.953149962645E-02,0.124717181004,0.302)); +#6303 = CARTESIAN_POINT('',(-1.95984386269E-02,0.135886533221,0.302)); +#6304 = CARTESIAN_POINT('',(-1.963307959402E-02,0.14166667873,0.302)); +#6305 = PCURVE('',#6306,#6311); +#6306 = PLANE('',#6307); +#6307 = AXIS2_PLACEMENT_3D('',#6308,#6309,#6310); +#6308 = CARTESIAN_POINT('',(-1.739273237996E-02,8.847289229566E-02,0.302 + )); +#6309 = DIRECTION('',(-4.731836175145E-14,-1.704111722675E-14,1.)); +#6310 = DIRECTION('',(-1.,6.469266763842E-30,-4.731836175145E-14)); +#6311 = DEFINITIONAL_REPRESENTATION('',(#6312),#6324); +#6312 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6313,#6314,#6315,#6316,#6317, + #6318,#6319,#6320,#6321,#6322,#6323),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,8.874248781343E-02,0.18749855617,0.295863554394, + 0.414922527979,0.545071851417,0.685442978585,0.837216579864,1.), + .UNSPECIFIED.); +#6313 = CARTESIAN_POINT('',(-1.072472307027E-02,5.201878789659E-02)); +#6314 = CARTESIAN_POINT('',(-9.664049332589E-03,4.904977713011E-02)); +#6315 = CARTESIAN_POINT('',(-7.423016888227E-03,4.277673649664E-02)); +#6316 = CARTESIAN_POINT('',(-4.919080535155E-03,3.256091803532E-02)); +#6317 = CARTESIAN_POINT('',(-2.608590931261E-03,2.120944308537E-02)); +#6318 = CARTESIAN_POINT('',(-8.879196750988E-04,8.623864914748E-03)); +#6319 = CARTESIAN_POINT('',(5.783343363429E-04,-5.132980747957E-03)); +#6320 = CARTESIAN_POINT('',(1.491813044584E-03,-2.01026401025E-02)); +#6321 = CARTESIAN_POINT('',(2.138767246492E-03,-3.62442887087E-02)); +#6322 = CARTESIAN_POINT('',(2.205706246945E-03,-4.741364092578E-02)); +#6323 = CARTESIAN_POINT('',(2.240347214059E-03,-5.319378643458E-02)); +#6324 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6325 = PCURVE('',#1182,#6326); +#6326 = DEFINITIONAL_REPRESENTATION('',(#6327),#6331); +#6327 = LINE('',#6328,#6329); +#6328 = CARTESIAN_POINT('',(0.,0.)); +#6329 = VECTOR('',#6330,1.); +#6330 = DIRECTION('',(1.,0.)); +#6331 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6332 = ORIENTED_EDGE('',*,*,#6333,.F.); +#6333 = EDGE_CURVE('',#6334,#6288,#6336,.T.); +#6334 = VERTEX_POINT('',#6335); +#6335 = CARTESIAN_POINT('',(2.317223182091E-02,1.170728373731E-02,0.302) + ); +#6336 = SURFACE_CURVE('',#6337,(#6349,#6364),.PCURVE_S1.); +#6337 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6338,#6339,#6340,#6341,#6342, + #6343,#6344,#6345,#6346,#6347,#6348),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.112854647064,0.222519376563,0.333140162926, + 0.446105343461,0.568897005585,0.700571950429,0.84303095511,1.), + .UNSPECIFIED.); +#6338 = CARTESIAN_POINT('',(2.317223182091E-02,1.170728373731E-02,0.302) + ); +#6339 = CARTESIAN_POINT('',(2.162230948923E-02,1.17927506929E-02,0.302) + ); +#6340 = CARTESIAN_POINT('',(1.856627449252E-02,1.196126881925E-02,0.302) + ); +#6341 = CARTESIAN_POINT('',(1.41038243527E-02,1.311682872093E-02,0.302) + ); +#6342 = CARTESIAN_POINT('',(9.957795856105E-03,1.511045280708E-02,0.302) + ); +#6343 = CARTESIAN_POINT('',(6.06522043719E-03,1.787476771453E-02,0.302) + ); +#6344 = CARTESIAN_POINT('',(2.410954475236E-03,2.138261236295E-02,0.302) + ); +#6345 = CARTESIAN_POINT('',(-9.106120123595E-04,2.572022484956E-02,0.302 + )); +#6346 = CARTESIAN_POINT('',(-4.04815170646E-03,3.075511344898E-02,0.302) + ); +#6347 = CARTESIAN_POINT('',(-5.766959432909E-03,3.449404554434E-02,0.302 + )); +#6348 = CARTESIAN_POINT('',(-6.668009309687E-03,3.645410439907E-02,0.302 + )); +#6349 = PCURVE('',#6306,#6350); +#6350 = DEFINITIONAL_REPRESENTATION('',(#6351),#6363); +#6351 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6352,#6353,#6354,#6355,#6356, + #6357,#6358,#6359,#6360,#6361,#6362),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.112854647064,0.222519376563,0.333140162926, + 0.446105343461,0.568897005585,0.700571950429,0.84303095511,1.), + .UNSPECIFIED.); +#6352 = CARTESIAN_POINT('',(-4.056496420087E-02,7.676560855834E-02)); +#6353 = CARTESIAN_POINT('',(-3.901504186918E-02,7.668014160276E-02)); +#6354 = CARTESIAN_POINT('',(-3.595900687247E-02,7.651162347641E-02)); +#6355 = CARTESIAN_POINT('',(-3.149655673266E-02,7.535606357472E-02)); +#6356 = CARTESIAN_POINT('',(-2.735052823606E-02,7.336243948858E-02)); +#6357 = CARTESIAN_POINT('',(-2.345795281715E-02,7.059812458112E-02)); +#6358 = CARTESIAN_POINT('',(-1.980368685519E-02,6.709027993271E-02)); +#6359 = CARTESIAN_POINT('',(-1.64821203676E-02,6.275266744609E-02)); +#6360 = CARTESIAN_POINT('',(-1.33445806735E-02,5.771777884668E-02)); +#6361 = CARTESIAN_POINT('',(-1.162577294705E-02,5.397884675132E-02)); +#6362 = CARTESIAN_POINT('',(-1.072472307027E-02,5.201878789659E-02)); +#6363 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6364 = PCURVE('',#1604,#6365); +#6365 = DEFINITIONAL_REPRESENTATION('',(#6366),#6370); +#6366 = LINE('',#6367,#6368); +#6367 = CARTESIAN_POINT('',(0.,0.)); +#6368 = VECTOR('',#6369,1.); +#6369 = DIRECTION('',(1.,0.)); +#6370 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6371 = ORIENTED_EDGE('',*,*,#6372,.F.); +#6372 = EDGE_CURVE('',#6373,#6334,#6375,.T.); +#6373 = VERTEX_POINT('',#6374); +#6374 = CARTESIAN_POINT('',(6.597754323584E-02,0.14166667873,0.302)); +#6375 = SURFACE_CURVE('',#6376,(#6404,#6435),.PCURVE_S1.); +#6376 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6377,#6378,#6379,#6380,#6381, + #6382,#6383,#6384,#6385,#6386,#6387,#6388,#6389,#6390,#6391,#6392, + #6393,#6394,#6395,#6396,#6397,#6398,#6399,#6400,#6401,#6402,#6403), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,4),(0.,7.425127519617E-02,0.145037257032,0.212011713592, + 0.275899532849,0.336376269156,0.393470127391,0.447214638654, + 0.497650014754,0.544761778702,0.589415800961,0.631520666925, + 0.670553822249,0.707275483502,0.741788019776,0.773746666861, + 0.803640481672,0.831601955261,0.858005482741,0.882699108133, + 0.906487914208,0.929872290123,0.952805410626,0.976254653174,1.), + .UNSPECIFIED.); +#6377 = CARTESIAN_POINT('',(6.597754323584E-02,0.14166667873,0.302)); +#6378 = CARTESIAN_POINT('',(6.59781590966E-02,0.13801358504,0.302)); +#6379 = CARTESIAN_POINT('',(6.5979362076E-02,0.13087788687,0.302)); +#6380 = CARTESIAN_POINT('',(6.568386605353E-02,0.120451066329,0.302)); +#6381 = CARTESIAN_POINT('',(6.534902312739E-02,0.110536192324,0.302)); +#6382 = CARTESIAN_POINT('',(6.483487836148E-02,0.101136305097,0.302)); +#6383 = CARTESIAN_POINT('',(6.417318371142E-02,9.223306878761E-02,0.302) + ); +#6384 = CARTESIAN_POINT('',(6.335321090005E-02,8.384431887529E-02,0.302) + ); +#6385 = CARTESIAN_POINT('',(6.238954210199E-02,7.596750341227E-02,0.302) + ); +#6386 = CARTESIAN_POINT('',(6.123951687959E-02,6.861354441172E-02,0.302) + ); +#6387 = CARTESIAN_POINT('',(6.004168775988E-02,6.171890302916E-02,0.302) + ); +#6388 = CARTESIAN_POINT('',(5.856567304436E-02,5.529887812021E-02,0.302) + ); +#6389 = CARTESIAN_POINT('',(5.706880600585E-02,4.929254856317E-02,0.302) + ); +#6390 = CARTESIAN_POINT('',(5.535221745542E-02,4.375155584245E-02,0.302) + ); +#6391 = CARTESIAN_POINT('',(5.351409616657E-02,3.864446330822E-02,0.302) + ); +#6392 = CARTESIAN_POINT('',(5.150385476805E-02,3.39814372612E-02,0.302) + ); +#6393 = CARTESIAN_POINT('',(4.943011845709E-02,2.971103287235E-02,0.302) + ); +#6394 = CARTESIAN_POINT('',(4.707573905087E-02,2.596670538104E-02,0.302) + ); +#6395 = CARTESIAN_POINT('',(4.469182805396E-02,2.256839536119E-02,0.302) + ); +#6396 = CARTESIAN_POINT('',(4.205450112872E-02,1.969534669371E-02,0.302) + ); +#6397 = CARTESIAN_POINT('',(3.930138538622E-02,1.724081704812E-02,0.302) + ); +#6398 = CARTESIAN_POINT('',(3.640843752915E-02,1.518570449081E-02,0.302) + ); +#6399 = CARTESIAN_POINT('',(3.329964953704E-02,1.366659229598E-02,0.302) + ); +#6400 = CARTESIAN_POINT('',(3.0067263023E-02,1.249148670626E-02,0.302)); +#6401 = CARTESIAN_POINT('',(2.666465408093E-02,1.181578354923E-02,0.302) + ); +#6402 = CARTESIAN_POINT('',(2.434123171392E-02,1.174360130119E-02,0.302) + ); +#6403 = CARTESIAN_POINT('',(2.317223182091E-02,1.170728373731E-02,0.302) + ); +#6404 = PCURVE('',#6306,#6405); +#6405 = DEFINITIONAL_REPRESENTATION('',(#6406),#6434); +#6406 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6407,#6408,#6409,#6410,#6411, + #6412,#6413,#6414,#6415,#6416,#6417,#6418,#6419,#6420,#6421,#6422, + #6423,#6424,#6425,#6426,#6427,#6428,#6429,#6430,#6431,#6432,#6433), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,4),(0.,7.425127519617E-02,0.145037257032,0.212011713592, + 0.275899532849,0.336376269156,0.393470127391,0.447214638654, + 0.497650014754,0.544761778702,0.589415800961,0.631520666925, + 0.670553822249,0.707275483502,0.741788019776,0.773746666861, + 0.803640481672,0.831601955261,0.858005482741,0.882699108133, + 0.906487914208,0.929872290123,0.952805410626,0.976254653174,1.), + .UNSPECIFIED.); +#6407 = CARTESIAN_POINT('',(-8.33702756158E-02,-5.319378643458E-02)); +#6408 = CARTESIAN_POINT('',(-8.337089147656E-02,-4.954069274428E-02)); +#6409 = CARTESIAN_POINT('',(-8.337209445596E-02,-4.240499457446E-02)); +#6410 = CARTESIAN_POINT('',(-8.307659843348E-02,-3.197817403325E-02)); +#6411 = CARTESIAN_POINT('',(-8.274175550735E-02,-2.206330002786E-02)); +#6412 = CARTESIAN_POINT('',(-8.222761074144E-02,-1.266341280142E-02)); +#6413 = CARTESIAN_POINT('',(-8.156591609138E-02,-3.760176491951E-03)); +#6414 = CARTESIAN_POINT('',(-8.074594328001E-02,4.628573420369E-03)); +#6415 = CARTESIAN_POINT('',(-7.978227448195E-02,1.250538888339E-02)); +#6416 = CARTESIAN_POINT('',(-7.863224925955E-02,1.985934788394E-02)); +#6417 = CARTESIAN_POINT('',(-7.743442013984E-02,2.675398926649E-02)); +#6418 = CARTESIAN_POINT('',(-7.595840542432E-02,3.317401417545E-02)); +#6419 = CARTESIAN_POINT('',(-7.446153838581E-02,3.918034373249E-02)); +#6420 = CARTESIAN_POINT('',(-7.274494983537E-02,4.47213364532E-02)); +#6421 = CARTESIAN_POINT('',(-7.090682854653E-02,4.982842898743E-02)); +#6422 = CARTESIAN_POINT('',(-6.8896587148E-02,5.449145503445E-02)); +#6423 = CARTESIAN_POINT('',(-6.682285083705E-02,5.876185942331E-02)); +#6424 = CARTESIAN_POINT('',(-6.446847143083E-02,6.250618691462E-02)); +#6425 = CARTESIAN_POINT('',(-6.208456043392E-02,6.590449693447E-02)); +#6426 = CARTESIAN_POINT('',(-5.944723350868E-02,6.877754560195E-02)); +#6427 = CARTESIAN_POINT('',(-5.669411776618E-02,7.123207524753E-02)); +#6428 = CARTESIAN_POINT('',(-5.380116990911E-02,7.328718780485E-02)); +#6429 = CARTESIAN_POINT('',(-5.0692381917E-02,7.480629999967E-02)); +#6430 = CARTESIAN_POINT('',(-4.745999540296E-02,7.59814055894E-02)); +#6431 = CARTESIAN_POINT('',(-4.405738646088E-02,7.665710874642E-02)); +#6432 = CARTESIAN_POINT('',(-4.173396409387E-02,7.672929099446E-02)); +#6433 = CARTESIAN_POINT('',(-4.056496420087E-02,7.676560855834E-02)); +#6434 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6435 = PCURVE('',#1512,#6436); +#6436 = DEFINITIONAL_REPRESENTATION('',(#6437),#6441); +#6437 = LINE('',#6438,#6439); +#6438 = CARTESIAN_POINT('',(0.,0.)); +#6439 = VECTOR('',#6440,1.); +#6440 = DIRECTION('',(1.,0.)); +#6441 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6442 = ORIENTED_EDGE('',*,*,#6443,.F.); +#6443 = EDGE_CURVE('',#6444,#6373,#6446,.T.); +#6444 = VERTEX_POINT('',#6445); +#6445 = CARTESIAN_POINT('',(2.317223182091E-02,0.27183186849,0.302)); +#6446 = SURFACE_CURVE('',#6447,(#6471,#6498),.PCURVE_S1.); +#6447 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6448,#6449,#6450,#6451,#6452, + #6453,#6454,#6455,#6456,#6457,#6458,#6459,#6460,#6461,#6462,#6463, + #6464,#6465,#6466,#6467,#6468,#6469,#6470),.UNSPECIFIED.,.F.,.F.,(4, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(0.,3.49368870829E-02, + 7.023339896965E-02,0.106497580507,0.145587588832,0.187189203945, + 0.231348430884,0.279252738402,0.331360897076,0.388442948375, + 0.450964118434,0.518748490246,0.592148889515,0.631731987362, + 0.674661745447,0.720681059568,0.7701442824,0.822678593948, + 0.878317576116,0.937424730831,1.),.UNSPECIFIED.); +#6448 = CARTESIAN_POINT('',(2.317223182091E-02,0.27183186849,0.302)); +#6449 = CARTESIAN_POINT('',(2.489741982901E-02,0.271730260817,0.302)); +#6450 = CARTESIAN_POINT('',(2.836555416458E-02,0.271525999567,0.302)); +#6451 = CARTESIAN_POINT('',(3.343632197499E-02,0.269931461148,0.302)); +#6452 = CARTESIAN_POINT('',(3.817970480349E-02,0.267181372234,0.302)); +#6453 = CARTESIAN_POINT('',(4.27302194525E-02,0.263593923,0.302)); +#6454 = CARTESIAN_POINT('',(4.682603091564E-02,0.258957748406,0.302)); +#6455 = CARTESIAN_POINT('',(5.048710903561E-02,0.253444341624,0.302)); +#6456 = CARTESIAN_POINT('',(5.341302350196E-02,0.246934771821,0.302)); +#6457 = CARTESIAN_POINT('',(5.585192511915E-02,0.239571047505,0.302)); +#6458 = CARTESIAN_POINT('',(5.791769774606E-02,0.231350486514,0.302)); +#6459 = CARTESIAN_POINT('',(5.979333253746E-02,0.222297662332,0.302)); +#6460 = CARTESIAN_POINT('',(6.156170775209E-02,0.21240277796,0.302)); +#6461 = CARTESIAN_POINT('',(6.278159431962E-02,0.203568217913,0.302)); +#6462 = CARTESIAN_POINT('',(6.378050185591E-02,0.195940552837,0.302)); +#6463 = CARTESIAN_POINT('',(6.429762897648E-02,0.189619370572,0.302)); +#6464 = CARTESIAN_POINT('',(6.481801724058E-02,0.182811558967,0.302)); +#6465 = CARTESIAN_POINT('',(6.530213568091E-02,0.175524876557,0.302)); +#6466 = CARTESIAN_POINT('',(6.55888258911E-02,0.16775281078,0.302)); +#6467 = CARTESIAN_POINT('',(6.57801125893E-02,0.159502830022,0.302)); +#6468 = CARTESIAN_POINT('',(6.595397313915E-02,0.150756638007,0.302)); +#6469 = CARTESIAN_POINT('',(6.596953865747E-02,0.144753695826,0.302)); +#6470 = CARTESIAN_POINT('',(6.597754323584E-02,0.14166667873,0.302)); +#6471 = PCURVE('',#6306,#6472); +#6472 = DEFINITIONAL_REPRESENTATION('',(#6473),#6497); +#6473 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6474,#6475,#6476,#6477,#6478, + #6479,#6480,#6481,#6482,#6483,#6484,#6485,#6486,#6487,#6488,#6489, + #6490,#6491,#6492,#6493,#6494,#6495,#6496),.UNSPECIFIED.,.F.,.F.,(4, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(0.,3.49368870829E-02, + 7.023339896965E-02,0.106497580507,0.145587588832,0.187189203945, + 0.231348430884,0.279252738402,0.331360897076,0.388442948375, + 0.450964118434,0.518748490246,0.592148889515,0.631731987362, + 0.674661745447,0.720681059568,0.7701442824,0.822678593948, + 0.878317576116,0.937424730831,1.),.UNSPECIFIED.); +#6474 = CARTESIAN_POINT('',(-4.056496420087E-02,-0.183358976194)); +#6475 = CARTESIAN_POINT('',(-4.229015220897E-02,-0.183257368521)); +#6476 = CARTESIAN_POINT('',(-4.575828654454E-02,-0.183053107272)); +#6477 = CARTESIAN_POINT('',(-5.082905435495E-02,-0.181458568852)); +#6478 = CARTESIAN_POINT('',(-5.557243718345E-02,-0.178708479938)); +#6479 = CARTESIAN_POINT('',(-6.012295183245E-02,-0.175121030704)); +#6480 = CARTESIAN_POINT('',(-6.42187632956E-02,-0.170484856111)); +#6481 = CARTESIAN_POINT('',(-6.787984141557E-02,-0.164971449328)); +#6482 = CARTESIAN_POINT('',(-7.080575588192E-02,-0.158461879525)); +#6483 = CARTESIAN_POINT('',(-7.324465749911E-02,-0.151098155209)); +#6484 = CARTESIAN_POINT('',(-7.531043012601E-02,-0.142877594218)); +#6485 = CARTESIAN_POINT('',(-7.718606491742E-02,-0.133824770036)); +#6486 = CARTESIAN_POINT('',(-7.895444013205E-02,-0.123929885665)); +#6487 = CARTESIAN_POINT('',(-8.017432669957E-02,-0.115095325618)); +#6488 = CARTESIAN_POINT('',(-8.117323423587E-02,-0.107467660541)); +#6489 = CARTESIAN_POINT('',(-8.169036135643E-02,-0.101146478277)); +#6490 = CARTESIAN_POINT('',(-8.221074962053E-02,-9.43386666717E-02)); +#6491 = CARTESIAN_POINT('',(-8.269486806086E-02,-8.705198426165E-02)); +#6492 = CARTESIAN_POINT('',(-8.298155827106E-02,-7.927991848405E-02)); +#6493 = CARTESIAN_POINT('',(-8.317284496926E-02,-7.10299377266E-02)); +#6494 = CARTESIAN_POINT('',(-8.33467055191E-02,-6.228374571103E-02)); +#6495 = CARTESIAN_POINT('',(-8.336227103743E-02,-5.628080353023E-02)); +#6496 = CARTESIAN_POINT('',(-8.33702756158E-02,-5.319378643458E-02)); +#6497 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6498 = PCURVE('',#1394,#6499); +#6499 = DEFINITIONAL_REPRESENTATION('',(#6500),#6504); +#6500 = LINE('',#6501,#6502); +#6501 = CARTESIAN_POINT('',(0.,0.)); +#6502 = VECTOR('',#6503,1.); +#6503 = DIRECTION('',(1.,0.)); +#6504 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6505 = ORIENTED_EDGE('',*,*,#6506,.F.); +#6506 = EDGE_CURVE('',#6290,#6444,#6507,.T.); +#6507 = SURFACE_CURVE('',#6508,(#6536,#6567),.PCURVE_S1.); +#6508 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6509,#6510,#6511,#6512,#6513, + #6514,#6515,#6516,#6517,#6518,#6519,#6520,#6521,#6522,#6523,#6524, + #6525,#6526,#6527,#6528,#6529,#6530,#6531,#6532,#6533,#6534,#6535), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,4),(0.,7.450630011454E-02,0.145899604363,0.213485915351, + 0.277293604963,0.338041673145,0.395063922884,0.448741026482, + 0.499113145316,0.546571100751,0.59109431188,0.632897743261, + 0.672214769502,0.70856337312,0.743032622937,0.774640169589, + 0.804496490856,0.832141518463,0.85851193,0.883406944232, + 0.907257568986,0.930301741039,0.953206098268,0.976284435161,1.), + .UNSPECIFIED.); +#6509 = CARTESIAN_POINT('',(-1.963307959402E-02,0.14166667873,0.302)); +#6510 = CARTESIAN_POINT('',(-1.963360022099E-02,0.145336920758,0.302)); +#6511 = CARTESIAN_POINT('',(-1.963461972228E-02,0.15252405606,0.302)); +#6512 = CARTESIAN_POINT('',(-1.933867117427E-02,0.163036587208,0.302)); +#6513 = CARTESIAN_POINT('',(-1.900775489684E-02,0.173020239287,0.302)); +#6514 = CARTESIAN_POINT('',(-1.848782389649E-02,0.182471280081,0.302)); +#6515 = CARTESIAN_POINT('',(-1.783102465328E-02,0.191391928233,0.302)); +#6516 = CARTESIAN_POINT('',(-1.701049966734E-02,0.199798120673,0.302)); +#6517 = CARTESIAN_POINT('',(-1.60381465877E-02,0.207673148077,0.302)); +#6518 = CARTESIAN_POINT('',(-1.491576978213E-02,0.215053000057,0.302)); +#6519 = CARTESIAN_POINT('',(-1.360966353286E-02,0.221942574202,0.302)); +#6520 = CARTESIAN_POINT('',(-1.226960744117E-02,0.22839763521,0.302)); +#6521 = CARTESIAN_POINT('',(-1.063166643619E-02,0.234368012293,0.302)); +#6522 = CARTESIAN_POINT('',(-8.985002668513E-03,0.239916989686,0.302)); +#6523 = CARTESIAN_POINT('',(-7.101042681619E-03,0.245008278979,0.302)); +#6524 = CARTESIAN_POINT('',(-5.125272281607E-03,0.249651995329,0.302)); +#6525 = CARTESIAN_POINT('',(-3.016408570688E-03,0.253887416753,0.302)); +#6526 = CARTESIAN_POINT('',(-6.97609789441E-04,0.257618657354,0.302)); +#6527 = CARTESIAN_POINT('',(1.717570301136E-03,0.260980348714,0.302)); +#6528 = CARTESIAN_POINT('',(4.362166959923E-03,0.263835084545,0.302)); +#6529 = CARTESIAN_POINT('',(7.063972533112E-03,0.266380116983,0.302)); +#6530 = CARTESIAN_POINT('',(1.004224203152E-02,0.268311931051,0.302)); +#6531 = CARTESIAN_POINT('',(1.310229603994E-02,0.269892557944,0.302)); +#6532 = CARTESIAN_POINT('',(1.631550404744E-02,0.271035492322,0.302)); +#6533 = CARTESIAN_POINT('',(1.969528636053E-02,0.271729092277,0.302)); +#6534 = CARTESIAN_POINT('',(2.200277572492E-02,0.271797300139,0.302)); +#6535 = CARTESIAN_POINT('',(2.317223182091E-02,0.27183186849,0.302)); +#6536 = PCURVE('',#6306,#6537); +#6537 = DEFINITIONAL_REPRESENTATION('',(#6538),#6566); +#6538 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6539,#6540,#6541,#6542,#6543, + #6544,#6545,#6546,#6547,#6548,#6549,#6550,#6551,#6552,#6553,#6554, + #6555,#6556,#6557,#6558,#6559,#6560,#6561,#6562,#6563,#6564,#6565), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,4),(0.,7.450630011454E-02,0.145899604363,0.213485915351, + 0.277293604963,0.338041673145,0.395063922884,0.448741026482, + 0.499113145316,0.546571100751,0.59109431188,0.632897743261, + 0.672214769502,0.70856337312,0.743032622937,0.774640169589, + 0.804496490856,0.832141518463,0.85851193,0.883406944232, + 0.907257568986,0.930301741039,0.953206098268,0.976284435161,1.), + .UNSPECIFIED.); +#6539 = CARTESIAN_POINT('',(2.240347214059E-03,-5.319378643458E-02)); +#6540 = CARTESIAN_POINT('',(2.240867841029E-03,-5.686402846237E-02)); +#6541 = CARTESIAN_POINT('',(2.241887342318E-03,-6.405116376434E-02)); +#6542 = CARTESIAN_POINT('',(1.945938794311E-03,-7.45636949123E-02)); +#6543 = CARTESIAN_POINT('',(1.615022516882E-03,-8.45473469913E-02)); +#6544 = CARTESIAN_POINT('',(1.09509151653E-03,-9.399838778553E-02)); +#6545 = CARTESIAN_POINT('',(4.3829227332E-04,-0.102919035938)); +#6546 = CARTESIAN_POINT('',(-3.822327126181E-04,-0.111325228378)); +#6547 = CARTESIAN_POINT('',(-1.354585792262E-03,-0.119200255781)); +#6548 = CARTESIAN_POINT('',(-2.476962597831E-03,-0.126580107761)); +#6549 = CARTESIAN_POINT('',(-3.783068847098E-03,-0.133469681907)); +#6550 = CARTESIAN_POINT('',(-5.123124938788E-03,-0.139924742914)); +#6551 = CARTESIAN_POINT('',(-6.761065943765E-03,-0.145895119997)); +#6552 = CARTESIAN_POINT('',(-8.407729711446E-03,-0.15144409739)); +#6553 = CARTESIAN_POINT('',(-1.029168969834E-02,-0.156535386684)); +#6554 = CARTESIAN_POINT('',(-1.226746009835E-02,-0.161179103033)); +#6555 = CARTESIAN_POINT('',(-1.437632380927E-02,-0.165414524458)); +#6556 = CARTESIAN_POINT('',(-1.669512259052E-02,-0.169145765059)); +#6557 = CARTESIAN_POINT('',(-1.911030268109E-02,-0.172507456419)); +#6558 = CARTESIAN_POINT('',(-2.175489933988E-02,-0.175362192249)); +#6559 = CARTESIAN_POINT('',(-2.445670491307E-02,-0.177907224687)); +#6560 = CARTESIAN_POINT('',(-2.743497441147E-02,-0.179839038756)); +#6561 = CARTESIAN_POINT('',(-3.04950284199E-02,-0.181419665649)); +#6562 = CARTESIAN_POINT('',(-3.370823642739E-02,-0.182562600027)); +#6563 = CARTESIAN_POINT('',(-3.708801874049E-02,-0.183256199982)); +#6564 = CARTESIAN_POINT('',(-3.939550810488E-02,-0.183324407844)); +#6565 = CARTESIAN_POINT('',(-4.056496420087E-02,-0.183358976194)); +#6566 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6567 = PCURVE('',#1276,#6568); +#6568 = DEFINITIONAL_REPRESENTATION('',(#6569),#6573); +#6569 = LINE('',#6570,#6571); +#6570 = CARTESIAN_POINT('',(0.,0.)); +#6571 = VECTOR('',#6572,1.); +#6572 = DIRECTION('',(1.,0.)); +#6573 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6574 = FACE_BOUND('',#6575,.T.); +#6575 = EDGE_LOOP('',(#6576,#6672,#6734,#6796,#6890)); +#6576 = ORIENTED_EDGE('',*,*,#6577,.F.); +#6577 = EDGE_CURVE('',#6578,#6580,#6582,.T.); +#6578 = VERTEX_POINT('',#6579); +#6579 = CARTESIAN_POINT('',(-3.169498280582E-03,0.141769576113,0.302)); +#6580 = VERTEX_POINT('',#6581); +#6581 = CARTESIAN_POINT('',(2.317223182091E-02,4.13417301015E-02,0.302) + ); +#6582 = SURFACE_CURVE('',#6583,(#6603,#6626),.PCURVE_S1.); +#6583 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6584,#6585,#6586,#6587,#6588, + #6589,#6590,#6591,#6592,#6593,#6594,#6595,#6596,#6597,#6598,#6599, + #6600,#6601,#6602),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,0.134263073174,0.25691182911,0.367072438303, + 0.465718811024,0.552001157842,0.626648205291,0.690207875895, + 0.742102733723,0.786360379614,0.826397614705,0.862341875248, + 0.894454198914,0.923529781456,0.950073400113,0.975134639533,1.), + .UNSPECIFIED.); +#6584 = CARTESIAN_POINT('',(-3.169498280582E-03,0.141769576113,0.302)); +#6585 = CARTESIAN_POINT('',(-3.155072819782E-03,0.136830282714,0.302)); +#6586 = CARTESIAN_POINT('',(-3.127469760858E-03,0.127378965447,0.302)); +#6587 = CARTESIAN_POINT('',(-2.776126113917E-03,0.113878477591,0.302)); +#6588 = CARTESIAN_POINT('',(-2.162817275907E-03,0.101699054291,0.302)); +#6589 = CARTESIAN_POINT('',(-1.350556876157E-03,9.087366943313E-02,0.302 + )); +#6590 = CARTESIAN_POINT('',(-3.863102518688E-04,8.136929685639E-02,0.302 + )); +#6591 = CARTESIAN_POINT('',(9.627939588462E-04,7.321733261621E-02,0.302) + ); +#6592 = CARTESIAN_POINT('',(2.441510108286E-03,6.637830197277E-02,0.302) + ); +#6593 = CARTESIAN_POINT('',(4.19486555283E-03,6.075579331747E-02,0.302) + ); +#6594 = CARTESIAN_POINT('',(6.247958243E-03,5.618095372742E-02,0.302)); +#6595 = CARTESIAN_POINT('',(8.251675316231E-03,5.222922983216E-02,0.302) + ); +#6596 = CARTESIAN_POINT('',(1.049657816382E-02,4.89392219149E-02,0.302) + ); +#6597 = CARTESIAN_POINT('',(1.273174512163E-02,4.613966170305E-02,0.302) + ); +#6598 = CARTESIAN_POINT('',(1.517156197841E-02,4.399794631139E-02,0.302) + ); +#6599 = CARTESIAN_POINT('',(1.772637244248E-02,4.245792581211E-02,0.302) + ); +#6600 = CARTESIAN_POINT('',(2.041813580656E-02,4.153271183255E-02,0.302) + ); +#6601 = CARTESIAN_POINT('',(2.225660412732E-02,4.140522395248E-02,0.302) + ); +#6602 = CARTESIAN_POINT('',(2.317223182091E-02,4.13417301015E-02,0.302) + ); +#6603 = PCURVE('',#6306,#6604); +#6604 = DEFINITIONAL_REPRESENTATION('',(#6605),#6625); +#6605 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6606,#6607,#6608,#6609,#6610, + #6611,#6612,#6613,#6614,#6615,#6616,#6617,#6618,#6619,#6620,#6621, + #6622,#6623,#6624),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,0.134263073174,0.25691182911,0.367072438303, + 0.465718811024,0.552001157842,0.626648205291,0.690207875895, + 0.742102733723,0.786360379614,0.826397614705,0.862341875248, + 0.894454198914,0.923529781456,0.950073400113,0.975134639533,1.), + .UNSPECIFIED.); +#6606 = CARTESIAN_POINT('',(-1.422323409938E-02,-5.329668381779E-02)); +#6607 = CARTESIAN_POINT('',(-1.423765956018E-02,-4.835739041832E-02)); +#6608 = CARTESIAN_POINT('',(-1.42652626191E-02,-3.890607315158E-02)); +#6609 = CARTESIAN_POINT('',(-1.461660626604E-02,-2.54055852955E-02)); +#6610 = CARTESIAN_POINT('',(-1.522991510405E-02,-1.322616199584E-02)); +#6611 = CARTESIAN_POINT('',(-1.60421755038E-02,-2.400777137472E-03)); +#6612 = CARTESIAN_POINT('',(-1.700642212809E-02,7.103595439264E-03)); +#6613 = CARTESIAN_POINT('',(-1.83555263388E-02,1.525555967945E-02)); +#6614 = CARTESIAN_POINT('',(-1.983424248824E-02,2.209459032288E-02)); +#6615 = CARTESIAN_POINT('',(-2.158759793279E-02,2.771709897819E-02)); +#6616 = CARTESIAN_POINT('',(-2.364069062296E-02,3.229193856824E-02)); +#6617 = CARTESIAN_POINT('',(-2.564440769619E-02,3.62436624635E-02)); +#6618 = CARTESIAN_POINT('',(-2.788931054377E-02,3.953367038075E-02)); +#6619 = CARTESIAN_POINT('',(-3.012447750159E-02,4.233323059261E-02)); +#6620 = CARTESIAN_POINT('',(-3.256429435837E-02,4.447494598427E-02)); +#6621 = CARTESIAN_POINT('',(-3.511910482244E-02,4.601496648355E-02)); +#6622 = CARTESIAN_POINT('',(-3.781086818652E-02,4.69401804631E-02)); +#6623 = CARTESIAN_POINT('',(-3.964933650727E-02,4.706766834318E-02)); +#6624 = CARTESIAN_POINT('',(-4.056496420087E-02,4.713116219416E-02)); +#6625 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6626 = PCURVE('',#6627,#6666); +#6627 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#6628,#6629) + ,(#6630,#6631) + ,(#6632,#6633) + ,(#6634,#6635) + ,(#6636,#6637) + ,(#6638,#6639) + ,(#6640,#6641) + ,(#6642,#6643) + ,(#6644,#6645) + ,(#6646,#6647) + ,(#6648,#6649) + ,(#6650,#6651) + ,(#6652,#6653) + ,(#6654,#6655) + ,(#6656,#6657) + ,(#6658,#6659) + ,(#6660,#6661) + ,(#6662,#6663) + ,(#6664,#6665 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, + 2),(0.,0.134263073174,0.25691182911,0.367072438303,0.465718811024, + 0.552001157842,0.626648205291,0.690207875895,0.742102733723, + 0.786360379614,0.826397614705,0.862341875248,0.894454198914, + 0.923529781456,0.950073400113,0.975134639533,1.),(0.,1.), + .UNSPECIFIED.); +#6628 = CARTESIAN_POINT('',(-3.169498280582E-03,0.141769576113,0.302)); +#6629 = CARTESIAN_POINT('',(-3.169498280582E-03,0.141769576113,0.3)); +#6630 = CARTESIAN_POINT('',(-3.155072819782E-03,0.136830282714,0.302)); +#6631 = CARTESIAN_POINT('',(-3.155072819782E-03,0.136830282714,0.3)); +#6632 = CARTESIAN_POINT('',(-3.127469760858E-03,0.127378965447,0.302)); +#6633 = CARTESIAN_POINT('',(-3.127469760858E-03,0.127378965447,0.3)); +#6634 = CARTESIAN_POINT('',(-2.776126113917E-03,0.113878477591,0.302)); +#6635 = CARTESIAN_POINT('',(-2.776126113917E-03,0.113878477591,0.3)); +#6636 = CARTESIAN_POINT('',(-2.162817275907E-03,0.101699054291,0.302)); +#6637 = CARTESIAN_POINT('',(-2.162817275907E-03,0.101699054291,0.3)); +#6638 = CARTESIAN_POINT('',(-1.350556876157E-03,9.087366943313E-02,0.302 + )); +#6639 = CARTESIAN_POINT('',(-1.350556876157E-03,9.087366943313E-02,0.3) + ); +#6640 = CARTESIAN_POINT('',(-3.863102518688E-04,8.136929685639E-02,0.302 + )); +#6641 = CARTESIAN_POINT('',(-3.863102518688E-04,8.136929685639E-02,0.3) + ); +#6642 = CARTESIAN_POINT('',(9.627939588462E-04,7.321733261621E-02,0.302) + ); +#6643 = CARTESIAN_POINT('',(9.627939588462E-04,7.321733261621E-02,0.3)); +#6644 = CARTESIAN_POINT('',(2.441510108286E-03,6.637830197277E-02,0.302) + ); +#6645 = CARTESIAN_POINT('',(2.441510108286E-03,6.637830197277E-02,0.3)); +#6646 = CARTESIAN_POINT('',(4.19486555283E-03,6.075579331747E-02,0.302) + ); +#6647 = CARTESIAN_POINT('',(4.19486555283E-03,6.075579331747E-02,0.3)); +#6648 = CARTESIAN_POINT('',(6.247958243E-03,5.618095372742E-02,0.302)); +#6649 = CARTESIAN_POINT('',(6.247958243E-03,5.618095372742E-02,0.3)); +#6650 = CARTESIAN_POINT('',(8.251675316231E-03,5.222922983216E-02,0.302) + ); +#6651 = CARTESIAN_POINT('',(8.251675316231E-03,5.222922983216E-02,0.3)); +#6652 = CARTESIAN_POINT('',(1.049657816382E-02,4.89392219149E-02,0.302) + ); +#6653 = CARTESIAN_POINT('',(1.049657816382E-02,4.89392219149E-02,0.3)); +#6654 = CARTESIAN_POINT('',(1.273174512163E-02,4.613966170305E-02,0.302) + ); +#6655 = CARTESIAN_POINT('',(1.273174512163E-02,4.613966170305E-02,0.3)); +#6656 = CARTESIAN_POINT('',(1.517156197841E-02,4.399794631139E-02,0.302) + ); +#6657 = CARTESIAN_POINT('',(1.517156197841E-02,4.399794631139E-02,0.3)); +#6658 = CARTESIAN_POINT('',(1.772637244248E-02,4.245792581211E-02,0.302) + ); +#6659 = CARTESIAN_POINT('',(1.772637244248E-02,4.245792581211E-02,0.3)); +#6660 = CARTESIAN_POINT('',(2.041813580656E-02,4.153271183255E-02,0.302) + ); +#6661 = CARTESIAN_POINT('',(2.041813580656E-02,4.153271183255E-02,0.3)); +#6662 = CARTESIAN_POINT('',(2.225660412732E-02,4.140522395248E-02,0.302) + ); +#6663 = CARTESIAN_POINT('',(2.225660412732E-02,4.140522395248E-02,0.3)); +#6664 = CARTESIAN_POINT('',(2.317223182091E-02,4.13417301015E-02,0.302) + ); +#6665 = CARTESIAN_POINT('',(2.317223182091E-02,4.13417301015E-02,0.3)); +#6666 = DEFINITIONAL_REPRESENTATION('',(#6667),#6671); +#6667 = LINE('',#6668,#6669); +#6668 = CARTESIAN_POINT('',(0.,0.)); +#6669 = VECTOR('',#6670,1.); +#6670 = DIRECTION('',(1.,0.)); +#6671 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6672 = ORIENTED_EDGE('',*,*,#6673,.F.); +#6673 = EDGE_CURVE('',#6674,#6578,#6676,.T.); +#6674 = VERTEX_POINT('',#6675); +#6675 = CARTESIAN_POINT('',(4.393459385277E-03,0.224601969597,0.302)); +#6676 = SURFACE_CURVE('',#6677,(#6689,#6704),.PCURVE_S1.); +#6677 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6678,#6679,#6680,#6681,#6682, + #6683,#6684,#6685,#6686,#6687,#6688),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,7.749443414545E-02,0.167583476623,0.271791298041, + 0.388973885957,0.520673542117,0.666372319412,0.826122561869,1.), + .UNSPECIFIED.); +#6678 = CARTESIAN_POINT('',(4.393459385277E-03,0.224601969597,0.302)); +#6679 = CARTESIAN_POINT('',(3.78098041931E-03,0.222534349987,0.302)); +#6680 = CARTESIAN_POINT('',(2.456480723213E-03,0.218063075548,0.302)); +#6681 = CARTESIAN_POINT('',(9.771820171107E-04,0.210641303348,0.302)); +#6682 = CARTESIAN_POINT('',(-3.697811423683E-04,0.202081127285,0.302)); +#6683 = CARTESIAN_POINT('',(-1.344197406804E-03,0.192304543475,0.302)); +#6684 = CARTESIAN_POINT('',(-2.159650567102E-03,0.181359675168,0.302)); +#6685 = CARTESIAN_POINT('',(-2.771927051014E-03,0.169214683162,0.302)); +#6686 = CARTESIAN_POINT('',(-3.127491465827E-03,0.155885848135,0.302)); +#6687 = CARTESIAN_POINT('',(-3.155106233952E-03,0.146605982929,0.302)); +#6688 = CARTESIAN_POINT('',(-3.169498280582E-03,0.141769576113,0.302)); +#6689 = PCURVE('',#6306,#6690); +#6690 = DEFINITIONAL_REPRESENTATION('',(#6691),#6703); +#6691 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6692,#6693,#6694,#6695,#6696, + #6697,#6698,#6699,#6700,#6701,#6702),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,7.749443414545E-02,0.167583476623,0.271791298041, + 0.388973885957,0.520673542117,0.666372319412,0.826122561869,1.), + .UNSPECIFIED.); +#6692 = CARTESIAN_POINT('',(-2.178619176524E-02,-0.136129077301)); +#6693 = CARTESIAN_POINT('',(-2.117371279927E-02,-0.134061457691)); +#6694 = CARTESIAN_POINT('',(-1.984921310317E-02,-0.129590183252)); +#6695 = CARTESIAN_POINT('',(-1.836991439707E-02,-0.122168411052)); +#6696 = CARTESIAN_POINT('',(-1.702295123759E-02,-0.113608234989)); +#6697 = CARTESIAN_POINT('',(-1.604853497315E-02,-0.103831651179)); +#6698 = CARTESIAN_POINT('',(-1.523308181286E-02,-9.288678287261E-02)); +#6699 = CARTESIAN_POINT('',(-1.462080532894E-02,-8.074179086586E-02)); +#6700 = CARTESIAN_POINT('',(-1.426524091413E-02,-6.741295583951E-02)); +#6701 = CARTESIAN_POINT('',(-1.423762614601E-02,-5.813309063333E-02)); +#6702 = CARTESIAN_POINT('',(-1.422323409938E-02,-5.329668381779E-02)); +#6703 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6704 = PCURVE('',#6705,#6728); +#6705 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#6706,#6707) + ,(#6708,#6709) + ,(#6710,#6711) + ,(#6712,#6713) + ,(#6714,#6715) + ,(#6716,#6717) + ,(#6718,#6719) + ,(#6720,#6721) + ,(#6722,#6723) + ,(#6724,#6725) + ,(#6726,#6727 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,4),(2,2),(0., + 7.749443414545E-02,0.167583476623,0.271791298041,0.388973885957, + 0.520673542117,0.666372319412,0.826122561869,1.),(0.,1.), + .UNSPECIFIED.); +#6706 = CARTESIAN_POINT('',(4.393459385277E-03,0.224601969597,0.302)); +#6707 = CARTESIAN_POINT('',(4.393459385277E-03,0.224601969597,0.3)); +#6708 = CARTESIAN_POINT('',(3.78098041931E-03,0.222534349987,0.302)); +#6709 = CARTESIAN_POINT('',(3.78098041931E-03,0.222534349987,0.3)); +#6710 = CARTESIAN_POINT('',(2.456480723213E-03,0.218063075548,0.302)); +#6711 = CARTESIAN_POINT('',(2.456480723213E-03,0.218063075548,0.3)); +#6712 = CARTESIAN_POINT('',(9.771820171107E-04,0.210641303348,0.302)); +#6713 = CARTESIAN_POINT('',(9.771820171107E-04,0.210641303348,0.3)); +#6714 = CARTESIAN_POINT('',(-3.697811423683E-04,0.202081127285,0.302)); +#6715 = CARTESIAN_POINT('',(-3.697811423683E-04,0.202081127285,0.3)); +#6716 = CARTESIAN_POINT('',(-1.344197406804E-03,0.192304543475,0.302)); +#6717 = CARTESIAN_POINT('',(-1.344197406804E-03,0.192304543475,0.3)); +#6718 = CARTESIAN_POINT('',(-2.159650567102E-03,0.181359675168,0.302)); +#6719 = CARTESIAN_POINT('',(-2.159650567102E-03,0.181359675168,0.3)); +#6720 = CARTESIAN_POINT('',(-2.771927051014E-03,0.169214683162,0.302)); +#6721 = CARTESIAN_POINT('',(-2.771927051014E-03,0.169214683162,0.3)); +#6722 = CARTESIAN_POINT('',(-3.127491465827E-03,0.155885848135,0.302)); +#6723 = CARTESIAN_POINT('',(-3.127491465827E-03,0.155885848135,0.3)); +#6724 = CARTESIAN_POINT('',(-3.155106233952E-03,0.146605982929,0.302)); +#6725 = CARTESIAN_POINT('',(-3.155106233952E-03,0.146605982929,0.3)); +#6726 = CARTESIAN_POINT('',(-3.169498280582E-03,0.141769576113,0.302)); +#6727 = CARTESIAN_POINT('',(-3.169498280582E-03,0.141769576113,0.3)); +#6728 = DEFINITIONAL_REPRESENTATION('',(#6729),#6733); +#6729 = LINE('',#6730,#6731); +#6730 = CARTESIAN_POINT('',(0.,0.)); +#6731 = VECTOR('',#6732,1.); +#6732 = DIRECTION('',(1.,0.)); +#6733 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6734 = ORIENTED_EDGE('',*,*,#6735,.F.); +#6735 = EDGE_CURVE('',#6736,#6674,#6738,.T.); +#6736 = VERTEX_POINT('',#6737); +#6737 = CARTESIAN_POINT('',(2.30178857461E-02,0.242197422125,0.302)); +#6738 = SURFACE_CURVE('',#6739,(#6751,#6766),.PCURVE_S1.); +#6739 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6740,#6741,#6742,#6743,#6744, + #6745,#6746,#6747,#6748,#6749,#6750),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.10084415503,0.20209669549,0.308076466598, + 0.419904889368,0.544656315619,0.680307883162,0.833031952295,1.), + .UNSPECIFIED.); +#6740 = CARTESIAN_POINT('',(2.30178857461E-02,0.242197422125,0.302)); +#6741 = CARTESIAN_POINT('',(2.21026497084E-02,0.24215201295,0.302)); +#6742 = CARTESIAN_POINT('',(2.026847123014E-02,0.242061010707,0.302)); +#6743 = CARTESIAN_POINT('',(1.758832718343E-02,0.241181388084,0.302)); +#6744 = CARTESIAN_POINT('',(1.505621532711E-02,0.239768087358,0.302)); +#6745 = CARTESIAN_POINT('',(1.262728015739E-02,0.237811531694,0.302)); +#6746 = CARTESIAN_POINT('',(1.041528853349E-02,0.235255534751,0.302)); +#6747 = CARTESIAN_POINT('',(8.20768020329E-03,0.232231492463,0.302)); +#6748 = CARTESIAN_POINT('',(6.174796389533E-03,0.228633060841,0.302)); +#6749 = CARTESIAN_POINT('',(5.004617609382E-03,0.225984995133,0.302)); +#6750 = CARTESIAN_POINT('',(4.393459385277E-03,0.224601969597,0.302)); +#6751 = PCURVE('',#6306,#6752); +#6752 = DEFINITIONAL_REPRESENTATION('',(#6753),#6765); +#6753 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6754,#6755,#6756,#6757,#6758, + #6759,#6760,#6761,#6762,#6763,#6764),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.10084415503,0.20209669549,0.308076466598, + 0.419904889368,0.544656315619,0.680307883162,0.833031952295,1.), + .UNSPECIFIED.); +#6754 = CARTESIAN_POINT('',(-4.041061812606E-02,-0.15372452983)); +#6755 = CARTESIAN_POINT('',(-3.949538208836E-02,-0.153679120654)); +#6756 = CARTESIAN_POINT('',(-3.76612036101E-02,-0.153588118412)); +#6757 = CARTESIAN_POINT('',(-3.498105956339E-02,-0.152708495789)); +#6758 = CARTESIAN_POINT('',(-3.244894770707E-02,-0.151295195063)); +#6759 = CARTESIAN_POINT('',(-3.002001253735E-02,-0.149338639398)); +#6760 = CARTESIAN_POINT('',(-2.780802091345E-02,-0.146782642456)); +#6761 = CARTESIAN_POINT('',(-2.560041258325E-02,-0.143758600167)); +#6762 = CARTESIAN_POINT('',(-2.356752876949E-02,-0.140160168546)); +#6763 = CARTESIAN_POINT('',(-2.239734998934E-02,-0.137512102838)); +#6764 = CARTESIAN_POINT('',(-2.178619176524E-02,-0.136129077301)); +#6765 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6766 = PCURVE('',#6767,#6790); +#6767 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#6768,#6769) + ,(#6770,#6771) + ,(#6772,#6773) + ,(#6774,#6775) + ,(#6776,#6777) + ,(#6778,#6779) + ,(#6780,#6781) + ,(#6782,#6783) + ,(#6784,#6785) + ,(#6786,#6787) + ,(#6788,#6789 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,4),(2,2),(0., + 0.10084415503,0.20209669549,0.308076466598,0.419904889368, + 0.544656315619,0.680307883162,0.833031952295,1.),(0.,1.), + .UNSPECIFIED.); +#6768 = CARTESIAN_POINT('',(2.30178857461E-02,0.242197422125,0.302)); +#6769 = CARTESIAN_POINT('',(2.30178857461E-02,0.242197422125,0.3)); +#6770 = CARTESIAN_POINT('',(2.21026497084E-02,0.24215201295,0.302)); +#6771 = CARTESIAN_POINT('',(2.21026497084E-02,0.24215201295,0.3)); +#6772 = CARTESIAN_POINT('',(2.026847123014E-02,0.242061010707,0.302)); +#6773 = CARTESIAN_POINT('',(2.026847123014E-02,0.242061010707,0.3)); +#6774 = CARTESIAN_POINT('',(1.758832718343E-02,0.241181388084,0.302)); +#6775 = CARTESIAN_POINT('',(1.758832718343E-02,0.241181388084,0.3)); +#6776 = CARTESIAN_POINT('',(1.505621532711E-02,0.239768087358,0.302)); +#6777 = CARTESIAN_POINT('',(1.505621532711E-02,0.239768087358,0.3)); +#6778 = CARTESIAN_POINT('',(1.262728015739E-02,0.237811531694,0.302)); +#6779 = CARTESIAN_POINT('',(1.262728015739E-02,0.237811531694,0.3)); +#6780 = CARTESIAN_POINT('',(1.041528853349E-02,0.235255534751,0.302)); +#6781 = CARTESIAN_POINT('',(1.041528853349E-02,0.235255534751,0.3)); +#6782 = CARTESIAN_POINT('',(8.20768020329E-03,0.232231492463,0.302)); +#6783 = CARTESIAN_POINT('',(8.20768020329E-03,0.232231492463,0.3)); +#6784 = CARTESIAN_POINT('',(6.174796389533E-03,0.228633060841,0.302)); +#6785 = CARTESIAN_POINT('',(6.174796389533E-03,0.228633060841,0.3)); +#6786 = CARTESIAN_POINT('',(5.004617609382E-03,0.225984995133,0.302)); +#6787 = CARTESIAN_POINT('',(5.004617609382E-03,0.225984995133,0.3)); +#6788 = CARTESIAN_POINT('',(4.393459385277E-03,0.224601969597,0.302)); +#6789 = CARTESIAN_POINT('',(4.393459385277E-03,0.224601969597,0.3)); +#6790 = DEFINITIONAL_REPRESENTATION('',(#6791),#6795); +#6791 = LINE('',#6792,#6793); +#6792 = CARTESIAN_POINT('',(0.,0.)); +#6793 = VECTOR('',#6794,1.); +#6794 = DIRECTION('',(1.,0.)); +#6795 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6796 = ORIENTED_EDGE('',*,*,#6797,.F.); +#6797 = EDGE_CURVE('',#6798,#6736,#6800,.T.); +#6798 = VERTEX_POINT('',#6799); +#6799 = CARTESIAN_POINT('',(4.951396192241E-02,0.141769576113,0.302)); +#6800 = SURFACE_CURVE('',#6801,(#6821,#6844),.PCURVE_S1.); +#6801 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6802,#6803,#6804,#6805,#6806, + #6807,#6808,#6809,#6810,#6811,#6812,#6813,#6814,#6815,#6816,#6817, + #6818,#6819,#6820),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,0.131104227359,0.251091770705,0.359069021009, + 0.456018700075,0.542063571507,0.61635985873,0.680001512757, + 0.732946720057,0.778442530811,0.819194663635,0.855956811654, + 0.888635460529,0.918943031446,0.94645063271,0.973354470683,1.), + .UNSPECIFIED.); +#6802 = CARTESIAN_POINT('',(4.951396192241E-02,0.141769576113,0.302)); +#6803 = CARTESIAN_POINT('',(4.950087838094E-02,0.146606023088,0.302)); +#6804 = CARTESIAN_POINT('',(4.947582068706E-02,0.155868821544,0.302)); +#6805 = CARTESIAN_POINT('',(4.910613591798E-02,0.169110662483,0.302)); +#6806 = CARTESIAN_POINT('',(4.855117902759E-02,0.181084137227,0.302)); +#6807 = CARTESIAN_POINT('',(4.781200548783E-02,0.191793743895,0.302)); +#6808 = CARTESIAN_POINT('',(4.680251094367E-02,0.201234543764,0.302)); +#6809 = CARTESIAN_POINT('',(4.557381283073E-02,0.209405715408,0.302)); +#6810 = CARTESIAN_POINT('',(4.421258706468E-02,0.216323276481,0.302)); +#6811 = CARTESIAN_POINT('',(4.246255381799E-02,0.222047620593,0.302)); +#6812 = CARTESIAN_POINT('',(4.061272248209E-02,0.226846565338,0.302)); +#6813 = CARTESIAN_POINT('',(3.851312435099E-02,0.230874839461,0.302)); +#6814 = CARTESIAN_POINT('',(3.640611407695E-02,0.234360490577,0.302)); +#6815 = CARTESIAN_POINT('',(3.404864244735E-02,0.237203158926,0.302)); +#6816 = CARTESIAN_POINT('',(3.154910443291E-02,0.239441386564,0.302)); +#6817 = CARTESIAN_POINT('',(2.884783817127E-02,0.241049154675,0.302)); +#6818 = CARTESIAN_POINT('',(2.598094523055E-02,0.24201644677,0.302)); +#6819 = CARTESIAN_POINT('',(2.40023908917E-02,0.242137291315,0.302)); +#6820 = CARTESIAN_POINT('',(2.30178857461E-02,0.242197422125,0.302)); +#6821 = PCURVE('',#6306,#6822); +#6822 = DEFINITIONAL_REPRESENTATION('',(#6823),#6843); +#6823 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6824,#6825,#6826,#6827,#6828, + #6829,#6830,#6831,#6832,#6833,#6834,#6835,#6836,#6837,#6838,#6839, + #6840,#6841,#6842),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,0.131104227359,0.251091770705,0.359069021009, + 0.456018700075,0.542063571507,0.61635985873,0.680001512757, + 0.732946720057,0.778442530811,0.819194663635,0.855956811654, + 0.888635460529,0.918943031446,0.94645063271,0.973354470683,1.), + .UNSPECIFIED.); +#6824 = CARTESIAN_POINT('',(-6.690669430237E-02,-5.329668381779E-02)); +#6825 = CARTESIAN_POINT('',(-6.68936107609E-02,-5.813313079224E-02)); +#6826 = CARTESIAN_POINT('',(-6.686855306702E-02,-6.739592924808E-02)); +#6827 = CARTESIAN_POINT('',(-6.649886829794E-02,-8.063777018705E-02)); +#6828 = CARTESIAN_POINT('',(-6.594391140755E-02,-9.261124493158E-02)); +#6829 = CARTESIAN_POINT('',(-6.520473786779E-02,-0.103320851599)); +#6830 = CARTESIAN_POINT('',(-6.419524332362E-02,-0.112761651468)); +#6831 = CARTESIAN_POINT('',(-6.296654521069E-02,-0.120932823112)); +#6832 = CARTESIAN_POINT('',(-6.160531944463E-02,-0.127850384186)); +#6833 = CARTESIAN_POINT('',(-5.985528619795E-02,-0.133574728298)); +#6834 = CARTESIAN_POINT('',(-5.800545486205E-02,-0.138373673042)); +#6835 = CARTESIAN_POINT('',(-5.590585673095E-02,-0.142401947165)); +#6836 = CARTESIAN_POINT('',(-5.37988464569E-02,-0.145887598282)); +#6837 = CARTESIAN_POINT('',(-5.144137482731E-02,-0.148730266631)); +#6838 = CARTESIAN_POINT('',(-4.894183681287E-02,-0.150968494268)); +#6839 = CARTESIAN_POINT('',(-4.624057055122E-02,-0.152576262379)); +#6840 = CARTESIAN_POINT('',(-4.337367761051E-02,-0.153543554474)); +#6841 = CARTESIAN_POINT('',(-4.139512327166E-02,-0.153664399019)); +#6842 = CARTESIAN_POINT('',(-4.041061812606E-02,-0.15372452983)); +#6843 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6844 = PCURVE('',#6845,#6884); +#6845 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#6846,#6847) + ,(#6848,#6849) + ,(#6850,#6851) + ,(#6852,#6853) + ,(#6854,#6855) + ,(#6856,#6857) + ,(#6858,#6859) + ,(#6860,#6861) + ,(#6862,#6863) + ,(#6864,#6865) + ,(#6866,#6867) + ,(#6868,#6869) + ,(#6870,#6871) + ,(#6872,#6873) + ,(#6874,#6875) + ,(#6876,#6877) + ,(#6878,#6879) + ,(#6880,#6881) + ,(#6882,#6883 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, + 2),(0.,0.131104227359,0.251091770705,0.359069021009,0.456018700075, + 0.542063571507,0.61635985873,0.680001512757,0.732946720057, + 0.778442530811,0.819194663635,0.855956811654,0.888635460529, + 0.918943031446,0.94645063271,0.973354470683,1.),(0.,1.), + .UNSPECIFIED.); +#6846 = CARTESIAN_POINT('',(4.951396192241E-02,0.141769576113,0.302)); +#6847 = CARTESIAN_POINT('',(4.951396192241E-02,0.141769576113,0.3)); +#6848 = CARTESIAN_POINT('',(4.950087838094E-02,0.146606023088,0.302)); +#6849 = CARTESIAN_POINT('',(4.950087838094E-02,0.146606023088,0.3)); +#6850 = CARTESIAN_POINT('',(4.947582068706E-02,0.155868821544,0.302)); +#6851 = CARTESIAN_POINT('',(4.947582068706E-02,0.155868821544,0.3)); +#6852 = CARTESIAN_POINT('',(4.910613591798E-02,0.169110662483,0.302)); +#6853 = CARTESIAN_POINT('',(4.910613591798E-02,0.169110662483,0.3)); +#6854 = CARTESIAN_POINT('',(4.855117902759E-02,0.181084137227,0.302)); +#6855 = CARTESIAN_POINT('',(4.855117902759E-02,0.181084137227,0.3)); +#6856 = CARTESIAN_POINT('',(4.781200548783E-02,0.191793743895,0.302)); +#6857 = CARTESIAN_POINT('',(4.781200548783E-02,0.191793743895,0.3)); +#6858 = CARTESIAN_POINT('',(4.680251094367E-02,0.201234543764,0.302)); +#6859 = CARTESIAN_POINT('',(4.680251094367E-02,0.201234543764,0.3)); +#6860 = CARTESIAN_POINT('',(4.557381283073E-02,0.209405715408,0.302)); +#6861 = CARTESIAN_POINT('',(4.557381283073E-02,0.209405715408,0.3)); +#6862 = CARTESIAN_POINT('',(4.421258706468E-02,0.216323276481,0.302)); +#6863 = CARTESIAN_POINT('',(4.421258706468E-02,0.216323276481,0.3)); +#6864 = CARTESIAN_POINT('',(4.246255381799E-02,0.222047620593,0.302)); +#6865 = CARTESIAN_POINT('',(4.246255381799E-02,0.222047620593,0.3)); +#6866 = CARTESIAN_POINT('',(4.061272248209E-02,0.226846565338,0.302)); +#6867 = CARTESIAN_POINT('',(4.061272248209E-02,0.226846565338,0.3)); +#6868 = CARTESIAN_POINT('',(3.851312435099E-02,0.230874839461,0.302)); +#6869 = CARTESIAN_POINT('',(3.851312435099E-02,0.230874839461,0.3)); +#6870 = CARTESIAN_POINT('',(3.640611407695E-02,0.234360490577,0.302)); +#6871 = CARTESIAN_POINT('',(3.640611407695E-02,0.234360490577,0.3)); +#6872 = CARTESIAN_POINT('',(3.404864244735E-02,0.237203158926,0.302)); +#6873 = CARTESIAN_POINT('',(3.404864244735E-02,0.237203158926,0.3)); +#6874 = CARTESIAN_POINT('',(3.154910443291E-02,0.239441386564,0.302)); +#6875 = CARTESIAN_POINT('',(3.154910443291E-02,0.239441386564,0.3)); +#6876 = CARTESIAN_POINT('',(2.884783817127E-02,0.241049154675,0.302)); +#6877 = CARTESIAN_POINT('',(2.884783817127E-02,0.241049154675,0.3)); +#6878 = CARTESIAN_POINT('',(2.598094523055E-02,0.24201644677,0.302)); +#6879 = CARTESIAN_POINT('',(2.598094523055E-02,0.24201644677,0.3)); +#6880 = CARTESIAN_POINT('',(2.40023908917E-02,0.242137291315,0.302)); +#6881 = CARTESIAN_POINT('',(2.40023908917E-02,0.242137291315,0.3)); +#6882 = CARTESIAN_POINT('',(2.30178857461E-02,0.242197422125,0.302)); +#6883 = CARTESIAN_POINT('',(2.30178857461E-02,0.242197422125,0.3)); +#6884 = DEFINITIONAL_REPRESENTATION('',(#6885),#6889); +#6885 = LINE('',#6886,#6887); +#6886 = CARTESIAN_POINT('',(0.,0.)); +#6887 = VECTOR('',#6888,1.); +#6888 = DIRECTION('',(1.,0.)); +#6889 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6890 = ORIENTED_EDGE('',*,*,#6891,.F.); +#6891 = EDGE_CURVE('',#6580,#6798,#6892,.T.); +#6892 = SURFACE_CURVE('',#6893,(#6913,#6936),.PCURVE_S1.); +#6893 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6894,#6895,#6896,#6897,#6898, + #6899,#6900,#6901,#6902,#6903,#6904,#6905,#6906,#6907,#6908,#6909, + #6910,#6911,#6912),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,2.48730133429E-02,4.994196592378E-02,7.673426790876E-02 + ,0.105818799118,0.13758360881,0.173280966874,0.213330524327, + 0.258029519538,0.310527683976,0.373652105177,0.448708456434, + 0.53506899344,0.633280744621,0.743475258226,0.865695604337,1.), + .UNSPECIFIED.); +#6894 = CARTESIAN_POINT('',(2.317223182091E-02,4.13417301015E-02,0.302) + ); +#6895 = CARTESIAN_POINT('',(2.408731590436E-02,4.140616470408E-02,0.302) + ); +#6896 = CARTESIAN_POINT('',(2.592469272247E-02,4.153554149822E-02,0.302) + ); +#6897 = CARTESIAN_POINT('',(2.863334454055E-02,4.244908468795E-02,0.302) + ); +#6898 = CARTESIAN_POINT('',(3.115923262168E-02,4.405725165956E-02,0.302) + ); +#6899 = CARTESIAN_POINT('',(3.359509724369E-02,4.618594082958E-02,0.302) + ); +#6900 = CARTESIAN_POINT('',(3.587126169706E-02,4.892724419884E-02,0.302) + ); +#6901 = CARTESIAN_POINT('',(3.8026135083E-02,5.225054934107E-02,0.302)); +#6902 = CARTESIAN_POINT('',(4.00654794344E-02,5.618800110037E-02,0.302) + ); +#6903 = CARTESIAN_POINT('',(4.208289315931E-02,6.082006205848E-02,0.302) + ); +#6904 = CARTESIAN_POINT('',(4.390371277376E-02,6.643913385719E-02,0.302) + ); +#6905 = CARTESIAN_POINT('',(4.540722021317E-02,7.329701177681E-02,0.302) + ); +#6906 = CARTESIAN_POINT('',(4.663721572269E-02,8.146546935855E-02,0.302) + ); +#6907 = CARTESIAN_POINT('',(4.772200272738E-02,9.095408399656E-02,0.302) + ); +#6908 = CARTESIAN_POINT('',(4.850041185127E-02,0.101768615532,0.302)); +#6909 = CARTESIAN_POINT('',(4.912185496906E-02,0.113912486886,0.302)); +#6910 = CARTESIAN_POINT('',(4.94719241256E-02,0.127396187136,0.302)); +#6911 = CARTESIAN_POINT('',(4.94995160678E-02,0.136830309474,0.302)); +#6912 = CARTESIAN_POINT('',(4.951396192241E-02,0.141769576113,0.302)); +#6913 = PCURVE('',#6306,#6914); +#6914 = DEFINITIONAL_REPRESENTATION('',(#6915),#6935); +#6915 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#6916,#6917,#6918,#6919,#6920, + #6921,#6922,#6923,#6924,#6925,#6926,#6927,#6928,#6929,#6930,#6931, + #6932,#6933,#6934),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,2.48730133429E-02,4.994196592378E-02,7.673426790876E-02 + ,0.105818799118,0.13758360881,0.173280966874,0.213330524327, + 0.258029519538,0.310527683976,0.373652105177,0.448708456434, + 0.53506899344,0.633280744621,0.743475258226,0.865695604337,1.), + .UNSPECIFIED.); +#6916 = CARTESIAN_POINT('',(-4.056496420087E-02,4.713116219416E-02)); +#6917 = CARTESIAN_POINT('',(-4.148004828432E-02,4.706672759157E-02)); +#6918 = CARTESIAN_POINT('',(-4.331742510243E-02,4.693735079744E-02)); +#6919 = CARTESIAN_POINT('',(-4.602607692051E-02,4.60238076077E-02)); +#6920 = CARTESIAN_POINT('',(-4.855196500164E-02,4.44156406361E-02)); +#6921 = CARTESIAN_POINT('',(-5.098782962365E-02,4.228695146607E-02)); +#6922 = CARTESIAN_POINT('',(-5.326399407702E-02,3.954564809681E-02)); +#6923 = CARTESIAN_POINT('',(-5.541886746296E-02,3.622234295458E-02)); +#6924 = CARTESIAN_POINT('',(-5.745821181436E-02,3.228489119529E-02)); +#6925 = CARTESIAN_POINT('',(-5.947562553926E-02,2.765283023717E-02)); +#6926 = CARTESIAN_POINT('',(-6.129644515372E-02,2.203375843847E-02)); +#6927 = CARTESIAN_POINT('',(-6.279995259313E-02,1.517588051885E-02)); +#6928 = CARTESIAN_POINT('',(-6.402994810265E-02,7.007422937104E-03)); +#6929 = CARTESIAN_POINT('',(-6.511473510734E-02,-2.481191700901E-03)); +#6930 = CARTESIAN_POINT('',(-6.589314423123E-02,-1.329572323615E-02)); +#6931 = CARTESIAN_POINT('',(-6.651458734902E-02,-2.543959459064E-02)); +#6932 = CARTESIAN_POINT('',(-6.686465650556E-02,-3.89232948402E-02)); +#6933 = CARTESIAN_POINT('',(-6.689224844776E-02,-4.835741717835E-02)); +#6934 = CARTESIAN_POINT('',(-6.690669430237E-02,-5.329668381779E-02)); +#6935 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6936 = PCURVE('',#6937,#6976); +#6937 = B_SPLINE_SURFACE_WITH_KNOTS('',3,1,( + (#6938,#6939) + ,(#6940,#6941) + ,(#6942,#6943) + ,(#6944,#6945) + ,(#6946,#6947) + ,(#6948,#6949) + ,(#6950,#6951) + ,(#6952,#6953) + ,(#6954,#6955) + ,(#6956,#6957) + ,(#6958,#6959) + ,(#6960,#6961) + ,(#6962,#6963) + ,(#6964,#6965) + ,(#6966,#6967) + ,(#6968,#6969) + ,(#6970,#6971) + ,(#6972,#6973) + ,(#6974,#6975 + )),.UNSPECIFIED.,.F.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4),(2, + 2),(0.,2.48730133429E-02,4.994196592378E-02,7.673426790876E-02, + 0.105818799118,0.13758360881,0.173280966874,0.213330524327, + 0.258029519538,0.310527683976,0.373652105177,0.448708456434, + 0.53506899344,0.633280744621,0.743475258226,0.865695604337,1.),(0., + 1.),.UNSPECIFIED.); +#6938 = CARTESIAN_POINT('',(2.317223182091E-02,4.13417301015E-02,0.302) + ); +#6939 = CARTESIAN_POINT('',(2.317223182091E-02,4.13417301015E-02,0.3)); +#6940 = CARTESIAN_POINT('',(2.408731590436E-02,4.140616470408E-02,0.302) + ); +#6941 = CARTESIAN_POINT('',(2.408731590436E-02,4.140616470408E-02,0.3)); +#6942 = CARTESIAN_POINT('',(2.592469272247E-02,4.153554149822E-02,0.302) + ); +#6943 = CARTESIAN_POINT('',(2.592469272247E-02,4.153554149822E-02,0.3)); +#6944 = CARTESIAN_POINT('',(2.863334454055E-02,4.244908468795E-02,0.302) + ); +#6945 = CARTESIAN_POINT('',(2.863334454055E-02,4.244908468795E-02,0.3)); +#6946 = CARTESIAN_POINT('',(3.115923262168E-02,4.405725165956E-02,0.302) + ); +#6947 = CARTESIAN_POINT('',(3.115923262168E-02,4.405725165956E-02,0.3)); +#6948 = CARTESIAN_POINT('',(3.359509724369E-02,4.618594082958E-02,0.302) + ); +#6949 = CARTESIAN_POINT('',(3.359509724369E-02,4.618594082958E-02,0.3)); +#6950 = CARTESIAN_POINT('',(3.587126169706E-02,4.892724419884E-02,0.302) + ); +#6951 = CARTESIAN_POINT('',(3.587126169706E-02,4.892724419884E-02,0.3)); +#6952 = CARTESIAN_POINT('',(3.8026135083E-02,5.225054934107E-02,0.302)); +#6953 = CARTESIAN_POINT('',(3.8026135083E-02,5.225054934107E-02,0.3)); +#6954 = CARTESIAN_POINT('',(4.00654794344E-02,5.618800110037E-02,0.302) + ); +#6955 = CARTESIAN_POINT('',(4.00654794344E-02,5.618800110037E-02,0.3)); +#6956 = CARTESIAN_POINT('',(4.208289315931E-02,6.082006205848E-02,0.302) + ); +#6957 = CARTESIAN_POINT('',(4.208289315931E-02,6.082006205848E-02,0.3)); +#6958 = CARTESIAN_POINT('',(4.390371277376E-02,6.643913385719E-02,0.302) + ); +#6959 = CARTESIAN_POINT('',(4.390371277376E-02,6.643913385719E-02,0.3)); +#6960 = CARTESIAN_POINT('',(4.540722021317E-02,7.329701177681E-02,0.302) + ); +#6961 = CARTESIAN_POINT('',(4.540722021317E-02,7.329701177681E-02,0.3)); +#6962 = CARTESIAN_POINT('',(4.663721572269E-02,8.146546935855E-02,0.302) + ); +#6963 = CARTESIAN_POINT('',(4.663721572269E-02,8.146546935855E-02,0.3)); +#6964 = CARTESIAN_POINT('',(4.772200272738E-02,9.095408399656E-02,0.302) + ); +#6965 = CARTESIAN_POINT('',(4.772200272738E-02,9.095408399656E-02,0.3)); +#6966 = CARTESIAN_POINT('',(4.850041185127E-02,0.101768615532,0.302)); +#6967 = CARTESIAN_POINT('',(4.850041185127E-02,0.101768615532,0.3)); +#6968 = CARTESIAN_POINT('',(4.912185496906E-02,0.113912486886,0.302)); +#6969 = CARTESIAN_POINT('',(4.912185496906E-02,0.113912486886,0.3)); +#6970 = CARTESIAN_POINT('',(4.94719241256E-02,0.127396187136,0.302)); +#6971 = CARTESIAN_POINT('',(4.94719241256E-02,0.127396187136,0.3)); +#6972 = CARTESIAN_POINT('',(4.94995160678E-02,0.136830309474,0.302)); +#6973 = CARTESIAN_POINT('',(4.94995160678E-02,0.136830309474,0.3)); +#6974 = CARTESIAN_POINT('',(4.951396192241E-02,0.141769576113,0.302)); +#6975 = CARTESIAN_POINT('',(4.951396192241E-02,0.141769576113,0.3)); +#6976 = DEFINITIONAL_REPRESENTATION('',(#6977),#6981); +#6977 = LINE('',#6978,#6979); +#6978 = CARTESIAN_POINT('',(0.,0.)); +#6979 = VECTOR('',#6980,1.); +#6980 = DIRECTION('',(1.,0.)); +#6981 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6982 = ADVANCED_FACE('',(#6983),#1182,.T.); +#6983 = FACE_BOUND('',#6984,.T.); +#6984 = EDGE_LOOP('',(#6985,#6986,#7005,#7006)); +#6985 = ORIENTED_EDGE('',*,*,#1148,.F.); +#6986 = ORIENTED_EDGE('',*,*,#6987,.F.); +#6987 = EDGE_CURVE('',#6288,#1149,#6988,.T.); +#6988 = SURFACE_CURVE('',#6989,(#6993,#6999),.PCURVE_S1.); +#6989 = LINE('',#6990,#6991); +#6990 = CARTESIAN_POINT('',(-6.668009309687E-03,3.645410439907E-02,0.302 + )); +#6991 = VECTOR('',#6992,1.); +#6992 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#6993 = PCURVE('',#1182,#6994); +#6994 = DEFINITIONAL_REPRESENTATION('',(#6995),#6998); +#6995 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#6996,#6997),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#6996 = CARTESIAN_POINT('',(0.,0.)); +#6997 = CARTESIAN_POINT('',(0.,1.)); +#6998 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#6999 = PCURVE('',#1604,#7000); +#7000 = DEFINITIONAL_REPRESENTATION('',(#7001),#7004); +#7001 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7002,#7003),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7002 = CARTESIAN_POINT('',(1.,0.)); +#7003 = CARTESIAN_POINT('',(1.,1.)); +#7004 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7005 = ORIENTED_EDGE('',*,*,#6287,.T.); +#7006 = ORIENTED_EDGE('',*,*,#7007,.T.); +#7007 = EDGE_CURVE('',#6290,#1151,#7008,.T.); +#7008 = SURFACE_CURVE('',#7009,(#7013,#7019),.PCURVE_S1.); +#7009 = LINE('',#7010,#7011); +#7010 = CARTESIAN_POINT('',(-1.963307959402E-02,0.14166667873,0.302)); +#7011 = VECTOR('',#7012,1.); +#7012 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#7013 = PCURVE('',#1182,#7014); +#7014 = DEFINITIONAL_REPRESENTATION('',(#7015),#7018); +#7015 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7016,#7017),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7016 = CARTESIAN_POINT('',(1.,0.)); +#7017 = CARTESIAN_POINT('',(1.,1.)); +#7018 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7019 = PCURVE('',#1276,#7020); +#7020 = DEFINITIONAL_REPRESENTATION('',(#7021),#7024); +#7021 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7022,#7023),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7022 = CARTESIAN_POINT('',(0.,0.)); +#7023 = CARTESIAN_POINT('',(0.,1.)); +#7024 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7025 = ADVANCED_FACE('',(#7026),#1604,.T.); +#7026 = FACE_BOUND('',#7027,.T.); +#7027 = EDGE_LOOP('',(#7028,#7029,#7048,#7049)); +#7028 = ORIENTED_EDGE('',*,*,#1574,.F.); +#7029 = ORIENTED_EDGE('',*,*,#7030,.F.); +#7030 = EDGE_CURVE('',#6334,#1449,#7031,.T.); +#7031 = SURFACE_CURVE('',#7032,(#7036,#7042),.PCURVE_S1.); +#7032 = LINE('',#7033,#7034); +#7033 = CARTESIAN_POINT('',(2.317223182091E-02,1.170728373731E-02,0.302) + ); +#7034 = VECTOR('',#7035,1.); +#7035 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#7036 = PCURVE('',#1604,#7037); +#7037 = DEFINITIONAL_REPRESENTATION('',(#7038),#7041); +#7038 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7039,#7040),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7039 = CARTESIAN_POINT('',(0.,0.)); +#7040 = CARTESIAN_POINT('',(0.,1.)); +#7041 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7042 = PCURVE('',#1512,#7043); +#7043 = DEFINITIONAL_REPRESENTATION('',(#7044),#7047); +#7044 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7045,#7046),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7045 = CARTESIAN_POINT('',(1.,0.)); +#7046 = CARTESIAN_POINT('',(1.,1.)); +#7047 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7048 = ORIENTED_EDGE('',*,*,#6333,.T.); +#7049 = ORIENTED_EDGE('',*,*,#6987,.T.); +#7050 = ADVANCED_FACE('',(#7051),#1512,.T.); +#7051 = FACE_BOUND('',#7052,.T.); +#7052 = EDGE_LOOP('',(#7053,#7054,#7073,#7074)); +#7053 = ORIENTED_EDGE('',*,*,#1448,.F.); +#7054 = ORIENTED_EDGE('',*,*,#7055,.F.); +#7055 = EDGE_CURVE('',#6373,#1339,#7056,.T.); +#7056 = SURFACE_CURVE('',#7057,(#7061,#7067),.PCURVE_S1.); +#7057 = LINE('',#7058,#7059); +#7058 = CARTESIAN_POINT('',(6.597754323584E-02,0.14166667873,0.302)); +#7059 = VECTOR('',#7060,1.); +#7060 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#7061 = PCURVE('',#1512,#7062); +#7062 = DEFINITIONAL_REPRESENTATION('',(#7063),#7066); +#7063 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7064,#7065),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7064 = CARTESIAN_POINT('',(0.,0.)); +#7065 = CARTESIAN_POINT('',(0.,1.)); +#7066 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7067 = PCURVE('',#1394,#7068); +#7068 = DEFINITIONAL_REPRESENTATION('',(#7069),#7072); +#7069 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7070,#7071),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7070 = CARTESIAN_POINT('',(1.,0.)); +#7071 = CARTESIAN_POINT('',(1.,1.)); +#7072 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7073 = ORIENTED_EDGE('',*,*,#6372,.T.); +#7074 = ORIENTED_EDGE('',*,*,#7030,.T.); +#7075 = ADVANCED_FACE('',(#7076),#1394,.T.); +#7076 = FACE_BOUND('',#7077,.T.); +#7077 = EDGE_LOOP('',(#7078,#7079,#7098,#7099)); +#7078 = ORIENTED_EDGE('',*,*,#1338,.F.); +#7079 = ORIENTED_EDGE('',*,*,#7080,.F.); +#7080 = EDGE_CURVE('',#6444,#1213,#7081,.T.); +#7081 = SURFACE_CURVE('',#7082,(#7086,#7092),.PCURVE_S1.); +#7082 = LINE('',#7083,#7084); +#7083 = CARTESIAN_POINT('',(2.317223182091E-02,0.27183186849,0.302)); +#7084 = VECTOR('',#7085,1.); +#7085 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#7086 = PCURVE('',#1394,#7087); +#7087 = DEFINITIONAL_REPRESENTATION('',(#7088),#7091); +#7088 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7089,#7090),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7089 = CARTESIAN_POINT('',(0.,0.)); +#7090 = CARTESIAN_POINT('',(0.,1.)); +#7091 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7092 = PCURVE('',#1276,#7093); +#7093 = DEFINITIONAL_REPRESENTATION('',(#7094),#7097); +#7094 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7095,#7096),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7095 = CARTESIAN_POINT('',(1.,0.)); +#7096 = CARTESIAN_POINT('',(1.,1.)); +#7097 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7098 = ORIENTED_EDGE('',*,*,#6443,.T.); +#7099 = ORIENTED_EDGE('',*,*,#7055,.T.); +#7100 = ADVANCED_FACE('',(#7101),#1276,.T.); +#7101 = FACE_BOUND('',#7102,.T.); +#7102 = EDGE_LOOP('',(#7103,#7104,#7105,#7106)); +#7103 = ORIENTED_EDGE('',*,*,#1212,.F.); +#7104 = ORIENTED_EDGE('',*,*,#7007,.F.); +#7105 = ORIENTED_EDGE('',*,*,#6506,.T.); +#7106 = ORIENTED_EDGE('',*,*,#7080,.T.); +#7107 = ADVANCED_FACE('',(#7108),#6705,.T.); +#7108 = FACE_BOUND('',#7109,.T.); +#7109 = EDGE_LOOP('',(#7110,#7156,#7175,#7176)); +#7110 = ORIENTED_EDGE('',*,*,#7111,.F.); +#7111 = EDGE_CURVE('',#7112,#7114,#7116,.T.); +#7112 = VERTEX_POINT('',#7113); +#7113 = CARTESIAN_POINT('',(4.393459385277E-03,0.224601969597,0.3)); +#7114 = VERTEX_POINT('',#7115); +#7115 = CARTESIAN_POINT('',(-3.169498280582E-03,0.141769576113,0.3)); +#7116 = SURFACE_CURVE('',#7117,(#7129,#7136),.PCURVE_S1.); +#7117 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7118,#7119,#7120,#7121,#7122, + #7123,#7124,#7125,#7126,#7127,#7128),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,7.749443414545E-02,0.167583476623,0.271791298041, + 0.388973885957,0.520673542117,0.666372319412,0.826122561869,1.), + .UNSPECIFIED.); +#7118 = CARTESIAN_POINT('',(4.393459385277E-03,0.224601969597,0.3)); +#7119 = CARTESIAN_POINT('',(3.78098041931E-03,0.222534349987,0.3)); +#7120 = CARTESIAN_POINT('',(2.456480723213E-03,0.218063075548,0.3)); +#7121 = CARTESIAN_POINT('',(9.771820171107E-04,0.210641303348,0.3)); +#7122 = CARTESIAN_POINT('',(-3.697811423683E-04,0.202081127285,0.3)); +#7123 = CARTESIAN_POINT('',(-1.344197406804E-03,0.192304543475,0.3)); +#7124 = CARTESIAN_POINT('',(-2.159650567102E-03,0.181359675168,0.3)); +#7125 = CARTESIAN_POINT('',(-2.771927051014E-03,0.169214683162,0.3)); +#7126 = CARTESIAN_POINT('',(-3.127491465827E-03,0.155885848135,0.3)); +#7127 = CARTESIAN_POINT('',(-3.155106233952E-03,0.146605982929,0.3)); +#7128 = CARTESIAN_POINT('',(-3.169498280582E-03,0.141769576113,0.3)); +#7129 = PCURVE('',#6705,#7130); +#7130 = DEFINITIONAL_REPRESENTATION('',(#7131),#7135); +#7131 = LINE('',#7132,#7133); +#7132 = CARTESIAN_POINT('',(0.,1.)); +#7133 = VECTOR('',#7134,1.); +#7134 = DIRECTION('',(1.,0.)); +#7135 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7136 = PCURVE('',#7137,#7142); +#7137 = PLANE('',#7138); +#7138 = AXIS2_PLACEMENT_3D('',#7139,#7140,#7141); +#7139 = CARTESIAN_POINT('',(-0.8,-0.4,0.3)); +#7140 = DIRECTION('',(0.,-1.367178939504E-16,1.)); +#7141 = DIRECTION('',(0.,-1.,-1.367178939504E-16)); +#7142 = DEFINITIONAL_REPRESENTATION('',(#7143),#7155); +#7143 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7144,#7145,#7146,#7147,#7148, + #7149,#7150,#7151,#7152,#7153,#7154),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,7.749443414545E-02,0.167583476623,0.271791298041, + 0.388973885957,0.520673542117,0.666372319412,0.826122561869,1.), + .UNSPECIFIED.); +#7144 = CARTESIAN_POINT('',(-0.624601969597,0.804393459385)); +#7145 = CARTESIAN_POINT('',(-0.622534349987,0.803780980419)); +#7146 = CARTESIAN_POINT('',(-0.618063075548,0.802456480723)); +#7147 = CARTESIAN_POINT('',(-0.610641303348,0.800977182017)); +#7148 = CARTESIAN_POINT('',(-0.602081127285,0.799630218858)); +#7149 = CARTESIAN_POINT('',(-0.592304543475,0.798655802593)); +#7150 = CARTESIAN_POINT('',(-0.581359675168,0.797840349433)); +#7151 = CARTESIAN_POINT('',(-0.569214683162,0.797228072949)); +#7152 = CARTESIAN_POINT('',(-0.555885848135,0.796872508534)); +#7153 = CARTESIAN_POINT('',(-0.546605982929,0.796844893766)); +#7154 = CARTESIAN_POINT('',(-0.541769576113,0.796830501719)); +#7155 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7156 = ORIENTED_EDGE('',*,*,#7157,.F.); +#7157 = EDGE_CURVE('',#6674,#7112,#7158,.T.); +#7158 = SURFACE_CURVE('',#7159,(#7163,#7169),.PCURVE_S1.); +#7159 = LINE('',#7160,#7161); +#7160 = CARTESIAN_POINT('',(4.393459385277E-03,0.224601969597,0.302)); +#7161 = VECTOR('',#7162,1.); +#7162 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#7163 = PCURVE('',#6705,#7164); +#7164 = DEFINITIONAL_REPRESENTATION('',(#7165),#7168); +#7165 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7166,#7167),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7166 = CARTESIAN_POINT('',(0.,0.)); +#7167 = CARTESIAN_POINT('',(0.,1.)); +#7168 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7169 = PCURVE('',#6767,#7170); +#7170 = DEFINITIONAL_REPRESENTATION('',(#7171),#7174); +#7171 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7172,#7173),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7172 = CARTESIAN_POINT('',(1.,0.)); +#7173 = CARTESIAN_POINT('',(1.,1.)); +#7174 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7175 = ORIENTED_EDGE('',*,*,#6673,.T.); +#7176 = ORIENTED_EDGE('',*,*,#7177,.T.); +#7177 = EDGE_CURVE('',#6578,#7114,#7178,.T.); +#7178 = SURFACE_CURVE('',#7179,(#7183,#7189),.PCURVE_S1.); +#7179 = LINE('',#7180,#7181); +#7180 = CARTESIAN_POINT('',(-3.169498280582E-03,0.141769576113,0.302)); +#7181 = VECTOR('',#7182,1.); +#7182 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#7183 = PCURVE('',#6705,#7184); +#7184 = DEFINITIONAL_REPRESENTATION('',(#7185),#7188); +#7185 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7186,#7187),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7186 = CARTESIAN_POINT('',(1.,0.)); +#7187 = CARTESIAN_POINT('',(1.,1.)); +#7188 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7189 = PCURVE('',#6627,#7190); +#7190 = DEFINITIONAL_REPRESENTATION('',(#7191),#7194); +#7191 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7192,#7193),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7192 = CARTESIAN_POINT('',(0.,0.)); +#7193 = CARTESIAN_POINT('',(0.,1.)); +#7194 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7195 = ADVANCED_FACE('',(#7196),#6627,.T.); +#7196 = FACE_BOUND('',#7197,.T.); +#7197 = EDGE_LOOP('',(#7198,#7253,#7254,#7255)); +#7198 = ORIENTED_EDGE('',*,*,#7199,.F.); +#7199 = EDGE_CURVE('',#7114,#7200,#7202,.T.); +#7200 = VERTEX_POINT('',#7201); +#7201 = CARTESIAN_POINT('',(2.317223182091E-02,4.13417301015E-02,0.3)); +#7202 = SURFACE_CURVE('',#7203,(#7223,#7230),.PCURVE_S1.); +#7203 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7204,#7205,#7206,#7207,#7208, + #7209,#7210,#7211,#7212,#7213,#7214,#7215,#7216,#7217,#7218,#7219, + #7220,#7221,#7222),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,0.134263073174,0.25691182911,0.367072438303, + 0.465718811024,0.552001157842,0.626648205291,0.690207875895, + 0.742102733723,0.786360379614,0.826397614705,0.862341875248, + 0.894454198914,0.923529781456,0.950073400113,0.975134639533,1.), + .UNSPECIFIED.); +#7204 = CARTESIAN_POINT('',(-3.169498280582E-03,0.141769576113,0.3)); +#7205 = CARTESIAN_POINT('',(-3.155072819782E-03,0.136830282714,0.3)); +#7206 = CARTESIAN_POINT('',(-3.127469760858E-03,0.127378965447,0.3)); +#7207 = CARTESIAN_POINT('',(-2.776126113917E-03,0.113878477591,0.3)); +#7208 = CARTESIAN_POINT('',(-2.162817275907E-03,0.101699054291,0.3)); +#7209 = CARTESIAN_POINT('',(-1.350556876157E-03,9.087366943313E-02,0.3) + ); +#7210 = CARTESIAN_POINT('',(-3.863102518688E-04,8.136929685639E-02,0.3) + ); +#7211 = CARTESIAN_POINT('',(9.627939588462E-04,7.321733261621E-02,0.3)); +#7212 = CARTESIAN_POINT('',(2.441510108286E-03,6.637830197277E-02,0.3)); +#7213 = CARTESIAN_POINT('',(4.19486555283E-03,6.075579331747E-02,0.3)); +#7214 = CARTESIAN_POINT('',(6.247958243E-03,5.618095372742E-02,0.3)); +#7215 = CARTESIAN_POINT('',(8.251675316231E-03,5.222922983216E-02,0.3)); +#7216 = CARTESIAN_POINT('',(1.049657816382E-02,4.89392219149E-02,0.3)); +#7217 = CARTESIAN_POINT('',(1.273174512163E-02,4.613966170305E-02,0.3)); +#7218 = CARTESIAN_POINT('',(1.517156197841E-02,4.399794631139E-02,0.3)); +#7219 = CARTESIAN_POINT('',(1.772637244248E-02,4.245792581211E-02,0.3)); +#7220 = CARTESIAN_POINT('',(2.041813580656E-02,4.153271183255E-02,0.3)); +#7221 = CARTESIAN_POINT('',(2.225660412732E-02,4.140522395248E-02,0.3)); +#7222 = CARTESIAN_POINT('',(2.317223182091E-02,4.13417301015E-02,0.3)); +#7223 = PCURVE('',#6627,#7224); +#7224 = DEFINITIONAL_REPRESENTATION('',(#7225),#7229); +#7225 = LINE('',#7226,#7227); +#7226 = CARTESIAN_POINT('',(0.,1.)); +#7227 = VECTOR('',#7228,1.); +#7228 = DIRECTION('',(1.,0.)); +#7229 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7230 = PCURVE('',#7137,#7231); +#7231 = DEFINITIONAL_REPRESENTATION('',(#7232),#7252); +#7232 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7233,#7234,#7235,#7236,#7237, + #7238,#7239,#7240,#7241,#7242,#7243,#7244,#7245,#7246,#7247,#7248, + #7249,#7250,#7251),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,0.134263073174,0.25691182911,0.367072438303, + 0.465718811024,0.552001157842,0.626648205291,0.690207875895, + 0.742102733723,0.786360379614,0.826397614705,0.862341875248, + 0.894454198914,0.923529781456,0.950073400113,0.975134639533,1.), + .UNSPECIFIED.); +#7233 = CARTESIAN_POINT('',(-0.541769576113,0.796830501719)); +#7234 = CARTESIAN_POINT('',(-0.536830282714,0.79684492718)); +#7235 = CARTESIAN_POINT('',(-0.527378965447,0.796872530239)); +#7236 = CARTESIAN_POINT('',(-0.513878477591,0.797223873886)); +#7237 = CARTESIAN_POINT('',(-0.501699054291,0.797837182724)); +#7238 = CARTESIAN_POINT('',(-0.490873669433,0.798649443124)); +#7239 = CARTESIAN_POINT('',(-0.481369296856,0.799613689748)); +#7240 = CARTESIAN_POINT('',(-0.473217332616,0.800962793959)); +#7241 = CARTESIAN_POINT('',(-0.466378301973,0.802441510108)); +#7242 = CARTESIAN_POINT('',(-0.460755793317,0.804194865553)); +#7243 = CARTESIAN_POINT('',(-0.456180953727,0.806247958243)); +#7244 = CARTESIAN_POINT('',(-0.452229229832,0.808251675316)); +#7245 = CARTESIAN_POINT('',(-0.448939221915,0.810496578164)); +#7246 = CARTESIAN_POINT('',(-0.446139661703,0.812731745122)); +#7247 = CARTESIAN_POINT('',(-0.443997946311,0.815171561978)); +#7248 = CARTESIAN_POINT('',(-0.442457925812,0.817726372442)); +#7249 = CARTESIAN_POINT('',(-0.441532711833,0.820418135807)); +#7250 = CARTESIAN_POINT('',(-0.441405223952,0.822256604127)); +#7251 = CARTESIAN_POINT('',(-0.441341730101,0.823172231821)); +#7252 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7253 = ORIENTED_EDGE('',*,*,#7177,.F.); +#7254 = ORIENTED_EDGE('',*,*,#6577,.T.); +#7255 = ORIENTED_EDGE('',*,*,#7256,.T.); +#7256 = EDGE_CURVE('',#6580,#7200,#7257,.T.); +#7257 = SURFACE_CURVE('',#7258,(#7262,#7268),.PCURVE_S1.); +#7258 = LINE('',#7259,#7260); +#7259 = CARTESIAN_POINT('',(2.317223182091E-02,4.13417301015E-02,0.302) + ); +#7260 = VECTOR('',#7261,1.); +#7261 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#7262 = PCURVE('',#6627,#7263); +#7263 = DEFINITIONAL_REPRESENTATION('',(#7264),#7267); +#7264 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7265,#7266),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7265 = CARTESIAN_POINT('',(1.,0.)); +#7266 = CARTESIAN_POINT('',(1.,1.)); +#7267 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7268 = PCURVE('',#6937,#7269); +#7269 = DEFINITIONAL_REPRESENTATION('',(#7270),#7273); +#7270 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7271,#7272),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7271 = CARTESIAN_POINT('',(0.,0.)); +#7272 = CARTESIAN_POINT('',(0.,1.)); +#7273 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7274 = ADVANCED_FACE('',(#7275),#6937,.T.); +#7275 = FACE_BOUND('',#7276,.T.); +#7276 = EDGE_LOOP('',(#7277,#7332,#7333,#7334)); +#7277 = ORIENTED_EDGE('',*,*,#7278,.F.); +#7278 = EDGE_CURVE('',#7200,#7279,#7281,.T.); +#7279 = VERTEX_POINT('',#7280); +#7280 = CARTESIAN_POINT('',(4.951396192241E-02,0.141769576113,0.3)); +#7281 = SURFACE_CURVE('',#7282,(#7302,#7309),.PCURVE_S1.); +#7282 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7283,#7284,#7285,#7286,#7287, + #7288,#7289,#7290,#7291,#7292,#7293,#7294,#7295,#7296,#7297,#7298, + #7299,#7300,#7301),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,2.48730133429E-02,4.994196592378E-02,7.673426790876E-02 + ,0.105818799118,0.13758360881,0.173280966874,0.213330524327, + 0.258029519538,0.310527683976,0.373652105177,0.448708456434, + 0.53506899344,0.633280744621,0.743475258226,0.865695604337,1.), + .UNSPECIFIED.); +#7283 = CARTESIAN_POINT('',(2.317223182091E-02,4.13417301015E-02,0.3)); +#7284 = CARTESIAN_POINT('',(2.408731590436E-02,4.140616470408E-02,0.3)); +#7285 = CARTESIAN_POINT('',(2.592469272247E-02,4.153554149822E-02,0.3)); +#7286 = CARTESIAN_POINT('',(2.863334454055E-02,4.244908468795E-02,0.3)); +#7287 = CARTESIAN_POINT('',(3.115923262168E-02,4.405725165956E-02,0.3)); +#7288 = CARTESIAN_POINT('',(3.359509724369E-02,4.618594082958E-02,0.3)); +#7289 = CARTESIAN_POINT('',(3.587126169706E-02,4.892724419884E-02,0.3)); +#7290 = CARTESIAN_POINT('',(3.8026135083E-02,5.225054934107E-02,0.3)); +#7291 = CARTESIAN_POINT('',(4.00654794344E-02,5.618800110037E-02,0.3)); +#7292 = CARTESIAN_POINT('',(4.208289315931E-02,6.082006205848E-02,0.3)); +#7293 = CARTESIAN_POINT('',(4.390371277376E-02,6.643913385719E-02,0.3)); +#7294 = CARTESIAN_POINT('',(4.540722021317E-02,7.329701177681E-02,0.3)); +#7295 = CARTESIAN_POINT('',(4.663721572269E-02,8.146546935855E-02,0.3)); +#7296 = CARTESIAN_POINT('',(4.772200272738E-02,9.095408399656E-02,0.3)); +#7297 = CARTESIAN_POINT('',(4.850041185127E-02,0.101768615532,0.3)); +#7298 = CARTESIAN_POINT('',(4.912185496906E-02,0.113912486886,0.3)); +#7299 = CARTESIAN_POINT('',(4.94719241256E-02,0.127396187136,0.3)); +#7300 = CARTESIAN_POINT('',(4.94995160678E-02,0.136830309474,0.3)); +#7301 = CARTESIAN_POINT('',(4.951396192241E-02,0.141769576113,0.3)); +#7302 = PCURVE('',#6937,#7303); +#7303 = DEFINITIONAL_REPRESENTATION('',(#7304),#7308); +#7304 = LINE('',#7305,#7306); +#7305 = CARTESIAN_POINT('',(0.,1.)); +#7306 = VECTOR('',#7307,1.); +#7307 = DIRECTION('',(1.,0.)); +#7308 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7309 = PCURVE('',#7137,#7310); +#7310 = DEFINITIONAL_REPRESENTATION('',(#7311),#7331); +#7311 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7312,#7313,#7314,#7315,#7316, + #7317,#7318,#7319,#7320,#7321,#7322,#7323,#7324,#7325,#7326,#7327, + #7328,#7329,#7330),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,2.48730133429E-02,4.994196592378E-02,7.673426790876E-02 + ,0.105818799118,0.13758360881,0.173280966874,0.213330524327, + 0.258029519538,0.310527683976,0.373652105177,0.448708456434, + 0.53506899344,0.633280744621,0.743475258226,0.865695604337,1.), + .UNSPECIFIED.); +#7312 = CARTESIAN_POINT('',(-0.441341730101,0.823172231821)); +#7313 = CARTESIAN_POINT('',(-0.441406164704,0.824087315904)); +#7314 = CARTESIAN_POINT('',(-0.441535541498,0.825924692722)); +#7315 = CARTESIAN_POINT('',(-0.442449084688,0.828633344541)); +#7316 = CARTESIAN_POINT('',(-0.44405725166,0.831159232622)); +#7317 = CARTESIAN_POINT('',(-0.44618594083,0.833595097244)); +#7318 = CARTESIAN_POINT('',(-0.448927244199,0.835871261697)); +#7319 = CARTESIAN_POINT('',(-0.452250549341,0.838026135083)); +#7320 = CARTESIAN_POINT('',(-0.4561880011,0.840065479434)); +#7321 = CARTESIAN_POINT('',(-0.460820062058,0.842082893159)); +#7322 = CARTESIAN_POINT('',(-0.466439133857,0.843903712774)); +#7323 = CARTESIAN_POINT('',(-0.473297011777,0.845407220213)); +#7324 = CARTESIAN_POINT('',(-0.481465469359,0.846637215723)); +#7325 = CARTESIAN_POINT('',(-0.490954083997,0.847722002727)); +#7326 = CARTESIAN_POINT('',(-0.501768615532,0.848500411851)); +#7327 = CARTESIAN_POINT('',(-0.513912486886,0.849121854969)); +#7328 = CARTESIAN_POINT('',(-0.527396187136,0.849471924126)); +#7329 = CARTESIAN_POINT('',(-0.536830309474,0.849499516068)); +#7330 = CARTESIAN_POINT('',(-0.541769576113,0.849513961922)); +#7331 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7332 = ORIENTED_EDGE('',*,*,#7256,.F.); +#7333 = ORIENTED_EDGE('',*,*,#6891,.T.); +#7334 = ORIENTED_EDGE('',*,*,#7335,.T.); +#7335 = EDGE_CURVE('',#6798,#7279,#7336,.T.); +#7336 = SURFACE_CURVE('',#7337,(#7341,#7347),.PCURVE_S1.); +#7337 = LINE('',#7338,#7339); +#7338 = CARTESIAN_POINT('',(4.951396192241E-02,0.141769576113,0.302)); +#7339 = VECTOR('',#7340,1.); +#7340 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#7341 = PCURVE('',#6937,#7342); +#7342 = DEFINITIONAL_REPRESENTATION('',(#7343),#7346); +#7343 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7344,#7345),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7344 = CARTESIAN_POINT('',(1.,0.)); +#7345 = CARTESIAN_POINT('',(1.,1.)); +#7346 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7347 = PCURVE('',#6845,#7348); +#7348 = DEFINITIONAL_REPRESENTATION('',(#7349),#7352); +#7349 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7350,#7351),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7350 = CARTESIAN_POINT('',(0.,0.)); +#7351 = CARTESIAN_POINT('',(0.,1.)); +#7352 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7353 = ADVANCED_FACE('',(#7354),#6845,.T.); +#7354 = FACE_BOUND('',#7355,.T.); +#7355 = EDGE_LOOP('',(#7356,#7411,#7412,#7413)); +#7356 = ORIENTED_EDGE('',*,*,#7357,.F.); +#7357 = EDGE_CURVE('',#7279,#7358,#7360,.T.); +#7358 = VERTEX_POINT('',#7359); +#7359 = CARTESIAN_POINT('',(2.30178857461E-02,0.242197422125,0.3)); +#7360 = SURFACE_CURVE('',#7361,(#7381,#7388),.PCURVE_S1.); +#7361 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7362,#7363,#7364,#7365,#7366, + #7367,#7368,#7369,#7370,#7371,#7372,#7373,#7374,#7375,#7376,#7377, + #7378,#7379,#7380),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,0.131104227359,0.251091770705,0.359069021009, + 0.456018700075,0.542063571507,0.61635985873,0.680001512757, + 0.732946720057,0.778442530811,0.819194663635,0.855956811654, + 0.888635460529,0.918943031446,0.94645063271,0.973354470683,1.), + .UNSPECIFIED.); +#7362 = CARTESIAN_POINT('',(4.951396192241E-02,0.141769576113,0.3)); +#7363 = CARTESIAN_POINT('',(4.950087838094E-02,0.146606023088,0.3)); +#7364 = CARTESIAN_POINT('',(4.947582068706E-02,0.155868821544,0.3)); +#7365 = CARTESIAN_POINT('',(4.910613591798E-02,0.169110662483,0.3)); +#7366 = CARTESIAN_POINT('',(4.855117902759E-02,0.181084137227,0.3)); +#7367 = CARTESIAN_POINT('',(4.781200548783E-02,0.191793743895,0.3)); +#7368 = CARTESIAN_POINT('',(4.680251094367E-02,0.201234543764,0.3)); +#7369 = CARTESIAN_POINT('',(4.557381283073E-02,0.209405715408,0.3)); +#7370 = CARTESIAN_POINT('',(4.421258706468E-02,0.216323276481,0.3)); +#7371 = CARTESIAN_POINT('',(4.246255381799E-02,0.222047620593,0.3)); +#7372 = CARTESIAN_POINT('',(4.061272248209E-02,0.226846565338,0.3)); +#7373 = CARTESIAN_POINT('',(3.851312435099E-02,0.230874839461,0.3)); +#7374 = CARTESIAN_POINT('',(3.640611407695E-02,0.234360490577,0.3)); +#7375 = CARTESIAN_POINT('',(3.404864244735E-02,0.237203158926,0.3)); +#7376 = CARTESIAN_POINT('',(3.154910443291E-02,0.239441386564,0.3)); +#7377 = CARTESIAN_POINT('',(2.884783817127E-02,0.241049154675,0.3)); +#7378 = CARTESIAN_POINT('',(2.598094523055E-02,0.24201644677,0.3)); +#7379 = CARTESIAN_POINT('',(2.40023908917E-02,0.242137291315,0.3)); +#7380 = CARTESIAN_POINT('',(2.30178857461E-02,0.242197422125,0.3)); +#7381 = PCURVE('',#6845,#7382); +#7382 = DEFINITIONAL_REPRESENTATION('',(#7383),#7387); +#7383 = LINE('',#7384,#7385); +#7384 = CARTESIAN_POINT('',(0.,1.)); +#7385 = VECTOR('',#7386,1.); +#7386 = DIRECTION('',(1.,0.)); +#7387 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7388 = PCURVE('',#7137,#7389); +#7389 = DEFINITIONAL_REPRESENTATION('',(#7390),#7410); +#7390 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7391,#7392,#7393,#7394,#7395, + #7396,#7397,#7398,#7399,#7400,#7401,#7402,#7403,#7404,#7405,#7406, + #7407,#7408,#7409),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,0.131104227359,0.251091770705,0.359069021009, + 0.456018700075,0.542063571507,0.61635985873,0.680001512757, + 0.732946720057,0.778442530811,0.819194663635,0.855956811654, + 0.888635460529,0.918943031446,0.94645063271,0.973354470683,1.), + .UNSPECIFIED.); +#7391 = CARTESIAN_POINT('',(-0.541769576113,0.849513961922)); +#7392 = CARTESIAN_POINT('',(-0.546606023088,0.849500878381)); +#7393 = CARTESIAN_POINT('',(-0.555868821544,0.849475820687)); +#7394 = CARTESIAN_POINT('',(-0.569110662483,0.849106135918)); +#7395 = CARTESIAN_POINT('',(-0.581084137227,0.848551179028)); +#7396 = CARTESIAN_POINT('',(-0.591793743895,0.847812005488)); +#7397 = CARTESIAN_POINT('',(-0.601234543764,0.846802510944)); +#7398 = CARTESIAN_POINT('',(-0.609405715408,0.845573812831)); +#7399 = CARTESIAN_POINT('',(-0.616323276481,0.844212587065)); +#7400 = CARTESIAN_POINT('',(-0.622047620593,0.842462553818)); +#7401 = CARTESIAN_POINT('',(-0.626846565338,0.840612722482)); +#7402 = CARTESIAN_POINT('',(-0.630874839461,0.838513124351)); +#7403 = CARTESIAN_POINT('',(-0.634360490577,0.836406114077)); +#7404 = CARTESIAN_POINT('',(-0.637203158926,0.834048642447)); +#7405 = CARTESIAN_POINT('',(-0.639441386564,0.831549104433)); +#7406 = CARTESIAN_POINT('',(-0.641049154675,0.828847838171)); +#7407 = CARTESIAN_POINT('',(-0.64201644677,0.825980945231)); +#7408 = CARTESIAN_POINT('',(-0.642137291315,0.824002390892)); +#7409 = CARTESIAN_POINT('',(-0.642197422125,0.823017885746)); +#7410 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7411 = ORIENTED_EDGE('',*,*,#7335,.F.); +#7412 = ORIENTED_EDGE('',*,*,#6797,.T.); +#7413 = ORIENTED_EDGE('',*,*,#7414,.T.); +#7414 = EDGE_CURVE('',#6736,#7358,#7415,.T.); +#7415 = SURFACE_CURVE('',#7416,(#7420,#7426),.PCURVE_S1.); +#7416 = LINE('',#7417,#7418); +#7417 = CARTESIAN_POINT('',(2.30178857461E-02,0.242197422125,0.302)); +#7418 = VECTOR('',#7419,1.); +#7419 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#7420 = PCURVE('',#6845,#7421); +#7421 = DEFINITIONAL_REPRESENTATION('',(#7422),#7425); +#7422 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7423,#7424),.UNSPECIFIED.,.F., + .F.,(2,2),(-1.110223024625E-16,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7423 = CARTESIAN_POINT('',(1.,0.)); +#7424 = CARTESIAN_POINT('',(1.,1.)); +#7425 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7426 = PCURVE('',#6767,#7427); +#7427 = DEFINITIONAL_REPRESENTATION('',(#7428),#7431); +#7428 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7429,#7430),.UNSPECIFIED.,.F., + .F.,(2,2),(-1.110223024625E-16,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7429 = CARTESIAN_POINT('',(0.,0.)); +#7430 = CARTESIAN_POINT('',(0.,1.)); +#7431 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7432 = ADVANCED_FACE('',(#7433),#6767,.T.); +#7433 = FACE_BOUND('',#7434,.T.); +#7434 = EDGE_LOOP('',(#7435,#7472,#7473,#7474)); +#7435 = ORIENTED_EDGE('',*,*,#7436,.F.); +#7436 = EDGE_CURVE('',#7358,#7112,#7437,.T.); +#7437 = SURFACE_CURVE('',#7438,(#7450,#7457),.PCURVE_S1.); +#7438 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7439,#7440,#7441,#7442,#7443, + #7444,#7445,#7446,#7447,#7448,#7449),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.10084415503,0.20209669549,0.308076466598, + 0.419904889368,0.544656315619,0.680307883162,0.833031952295,1.), + .UNSPECIFIED.); +#7439 = CARTESIAN_POINT('',(2.30178857461E-02,0.242197422125,0.3)); +#7440 = CARTESIAN_POINT('',(2.21026497084E-02,0.24215201295,0.3)); +#7441 = CARTESIAN_POINT('',(2.026847123014E-02,0.242061010707,0.3)); +#7442 = CARTESIAN_POINT('',(1.758832718343E-02,0.241181388084,0.3)); +#7443 = CARTESIAN_POINT('',(1.505621532711E-02,0.239768087358,0.3)); +#7444 = CARTESIAN_POINT('',(1.262728015739E-02,0.237811531694,0.3)); +#7445 = CARTESIAN_POINT('',(1.041528853349E-02,0.235255534751,0.3)); +#7446 = CARTESIAN_POINT('',(8.20768020329E-03,0.232231492463,0.3)); +#7447 = CARTESIAN_POINT('',(6.174796389533E-03,0.228633060841,0.3)); +#7448 = CARTESIAN_POINT('',(5.004617609382E-03,0.225984995133,0.3)); +#7449 = CARTESIAN_POINT('',(4.393459385277E-03,0.224601969597,0.3)); +#7450 = PCURVE('',#6767,#7451); +#7451 = DEFINITIONAL_REPRESENTATION('',(#7452),#7456); +#7452 = LINE('',#7453,#7454); +#7453 = CARTESIAN_POINT('',(0.,1.)); +#7454 = VECTOR('',#7455,1.); +#7455 = DIRECTION('',(1.,0.)); +#7456 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7457 = PCURVE('',#7137,#7458); +#7458 = DEFINITIONAL_REPRESENTATION('',(#7459),#7471); +#7459 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7460,#7461,#7462,#7463,#7464, + #7465,#7466,#7467,#7468,#7469,#7470),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.10084415503,0.20209669549,0.308076466598, + 0.419904889368,0.544656315619,0.680307883162,0.833031952295,1.), + .UNSPECIFIED.); +#7460 = CARTESIAN_POINT('',(-0.642197422125,0.823017885746)); +#7461 = CARTESIAN_POINT('',(-0.64215201295,0.822102649708)); +#7462 = CARTESIAN_POINT('',(-0.642061010707,0.82026847123)); +#7463 = CARTESIAN_POINT('',(-0.641181388084,0.817588327183)); +#7464 = CARTESIAN_POINT('',(-0.639768087358,0.815056215327)); +#7465 = CARTESIAN_POINT('',(-0.637811531694,0.812627280157)); +#7466 = CARTESIAN_POINT('',(-0.635255534751,0.810415288533)); +#7467 = CARTESIAN_POINT('',(-0.632231492463,0.808207680203)); +#7468 = CARTESIAN_POINT('',(-0.628633060841,0.80617479639)); +#7469 = CARTESIAN_POINT('',(-0.625984995133,0.805004617609)); +#7470 = CARTESIAN_POINT('',(-0.624601969597,0.804393459385)); +#7471 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7472 = ORIENTED_EDGE('',*,*,#7414,.F.); +#7473 = ORIENTED_EDGE('',*,*,#6735,.T.); +#7474 = ORIENTED_EDGE('',*,*,#7157,.T.); +#7475 = ADVANCED_FACE('',(#7476),#7137,.T.); +#7476 = FACE_BOUND('',#7477,.T.); +#7477 = EDGE_LOOP('',(#7478,#7479,#7480,#7481,#7482)); +#7478 = ORIENTED_EDGE('',*,*,#7111,.T.); +#7479 = ORIENTED_EDGE('',*,*,#7199,.T.); +#7480 = ORIENTED_EDGE('',*,*,#7278,.T.); +#7481 = ORIENTED_EDGE('',*,*,#7357,.T.); +#7482 = ORIENTED_EDGE('',*,*,#7436,.T.); +#7483 = ADVANCED_FACE('',(#7484),#76,.T.); +#7484 = FACE_BOUND('',#7485,.T.); +#7485 = EDGE_LOOP('',(#7486,#7487,#7508,#7568)); +#7486 = ORIENTED_EDGE('',*,*,#21,.F.); +#7487 = ORIENTED_EDGE('',*,*,#7488,.F.); +#7488 = EDGE_CURVE('',#7489,#22,#7491,.T.); +#7489 = VERTEX_POINT('',#7490); +#7490 = CARTESIAN_POINT('',(0.120718951103,1.170728373731E-02,0.302)); +#7491 = SURFACE_CURVE('',#7492,(#7496,#7502),.PCURVE_S1.); +#7492 = LINE('',#7493,#7494); +#7493 = CARTESIAN_POINT('',(0.120718951103,1.170728373731E-02,0.302)); +#7494 = VECTOR('',#7495,1.); +#7495 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#7496 = PCURVE('',#76,#7497); +#7497 = DEFINITIONAL_REPRESENTATION('',(#7498),#7501); +#7498 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7499,#7500),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7499 = CARTESIAN_POINT('',(0.,0.)); +#7500 = CARTESIAN_POINT('',(0.,1.)); +#7501 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7502 = PCURVE('',#1100,#7503); +#7503 = DEFINITIONAL_REPRESENTATION('',(#7504),#7507); +#7504 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7505,#7506),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7505 = CARTESIAN_POINT('',(1.,0.)); +#7506 = CARTESIAN_POINT('',(1.,1.)); +#7507 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7508 = ORIENTED_EDGE('',*,*,#7509,.T.); +#7509 = EDGE_CURVE('',#7489,#7510,#7512,.T.); +#7510 = VERTEX_POINT('',#7511); +#7511 = CARTESIAN_POINT('',(7.914840828659E-02,8.414704151643E-02,0.302) + ); +#7512 = SURFACE_CURVE('',#7513,(#7533,#7540),.PCURVE_S1.); +#7513 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7514,#7515,#7516,#7517,#7518, + #7519,#7520,#7521,#7522,#7523,#7524,#7525,#7526,#7527,#7528,#7529, + #7530,#7531,#7532),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,4.642480551308E-02,9.17550650813E-02,0.137365792969, + 0.184234865116,0.233618047719,0.286345281489,0.342702560112, + 0.403812353687,0.468458845429,0.535483138438,0.604766914307, + 0.676822993412,0.7525824976,0.831578559803,0.913949260602,1.), + .UNSPECIFIED.); +#7514 = CARTESIAN_POINT('',(0.120718951103,1.170728373731E-02,0.302)); +#7515 = CARTESIAN_POINT('',(0.119305687764,1.175807442949E-02,0.302)); +#7516 = CARTESIAN_POINT('',(0.11651248124,1.18584583345E-02,0.302)); +#7517 = CARTESIAN_POINT('',(0.112453586066,1.292290438905E-02,0.302)); +#7518 = CARTESIAN_POINT('',(0.108535791536,1.443462285821E-02,0.302)); +#7519 = CARTESIAN_POINT('',(0.104861886428,1.672324153894E-02,0.302)); +#7520 = CARTESIAN_POINT('',(0.101321294393,1.956124176099E-02,0.302)); +#7521 = CARTESIAN_POINT('',(9.806195466378E-02,2.312005656402E-02,0.302) + ); +#7522 = CARTESIAN_POINT('',(9.488067483072E-02,2.720206212183E-02,0.302) + ); +#7523 = CARTESIAN_POINT('',(9.199215450085E-02,3.193240674378E-02,0.302) + ); +#7524 = CARTESIAN_POINT('',(8.935789793798E-02,3.716463006663E-02,0.302) + ); +#7525 = CARTESIAN_POINT('',(8.69143155312E-02,4.276332812003E-02,0.302) + ); +#7526 = CARTESIAN_POINT('',(8.487547001018E-02,4.876108493811E-02,0.302) + ); +#7527 = CARTESIAN_POINT('',(8.313158049113E-02,5.512284571882E-02,0.302) + ); +#7528 = CARTESIAN_POINT('',(8.164238908048E-02,6.185160062136E-02,0.302) + ); +#7529 = CARTESIAN_POINT('',(8.045121467697E-02,6.895846489487E-02,0.302) + ); +#7530 = CARTESIAN_POINT('',(7.965207367774E-02,7.643426271059E-02,0.302) + ); +#7531 = CARTESIAN_POINT('',(7.931872466218E-02,8.153893590695E-02,0.302) + ); +#7532 = CARTESIAN_POINT('',(7.914840828659E-02,8.414704151643E-02,0.302) + ); +#7533 = PCURVE('',#76,#7534); +#7534 = DEFINITIONAL_REPRESENTATION('',(#7535),#7539); +#7535 = LINE('',#7536,#7537); +#7536 = CARTESIAN_POINT('',(0.,0.)); +#7537 = VECTOR('',#7538,1.); +#7538 = DIRECTION('',(1.,0.)); +#7539 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7540 = PCURVE('',#7541,#7546); +#7541 = PLANE('',#7542); +#7542 = AXIS2_PLACEMENT_3D('',#7543,#7544,#7545); +#7543 = CARTESIAN_POINT('',(8.82519759098E-02,3.974146040877E-02,0.302) + ); +#7544 = DIRECTION('',(-2.120931561339E-15,-5.915215341991E-14,1.)); +#7545 = DIRECTION('',(0.,-1.,-5.915215341991E-14)); +#7546 = DEFINITIONAL_REPRESENTATION('',(#7547),#7567); +#7547 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7548,#7549,#7550,#7551,#7552, + #7553,#7554,#7555,#7556,#7557,#7558,#7559,#7560,#7561,#7562,#7563, + #7564,#7565,#7566),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,4.642480551308E-02,9.17550650813E-02,0.137365792969, + 0.184234865116,0.233618047719,0.286345281489,0.342702560112, + 0.403812353687,0.468458845429,0.535483138438,0.604766914307, + 0.676822993412,0.7525824976,0.831578559803,0.913949260602,1.), + .UNSPECIFIED.); +#7548 = CARTESIAN_POINT('',(2.803417667145E-02,3.246697519322E-02)); +#7549 = CARTESIAN_POINT('',(2.798338597927E-02,3.105371185444E-02)); +#7550 = CARTESIAN_POINT('',(2.788300207427E-02,2.826050533061E-02)); +#7551 = CARTESIAN_POINT('',(2.681855601972E-02,2.420161015664E-02)); +#7552 = CARTESIAN_POINT('',(2.530683755055E-02,2.028381562655E-02)); +#7553 = CARTESIAN_POINT('',(2.301821886983E-02,1.66099105184E-02)); +#7554 = CARTESIAN_POINT('',(2.018021864778E-02,1.306931848352E-02)); +#7555 = CARTESIAN_POINT('',(1.662140384475E-02,9.809978753984E-03)); +#7556 = CARTESIAN_POINT('',(1.253939828693E-02,6.628698920922E-03)); +#7557 = CARTESIAN_POINT('',(7.809053664983E-03,3.740178591055E-03)); +#7558 = CARTESIAN_POINT('',(2.576830342134E-03,1.105922028182E-03)); +#7559 = CARTESIAN_POINT('',(-3.021867711264E-03,-1.337660378603E-03)); +#7560 = CARTESIAN_POINT('',(-9.01962452934E-03,-3.376505899624E-03)); +#7561 = CARTESIAN_POINT('',(-1.538138531005E-02,-5.120395418667E-03)); +#7562 = CARTESIAN_POINT('',(-2.211014021259E-02,-6.609586829316E-03)); +#7563 = CARTESIAN_POINT('',(-2.921700448611E-02,-7.80076123283E-03)); +#7564 = CARTESIAN_POINT('',(-3.669280230183E-02,-8.599902232056E-03)); +#7565 = CARTESIAN_POINT('',(-4.179747549819E-02,-8.933251247614E-03)); +#7566 = CARTESIAN_POINT('',(-4.440558110766E-02,-9.103567623207E-03)); +#7567 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7568 = ORIENTED_EDGE('',*,*,#7569,.T.); +#7569 = EDGE_CURVE('',#7510,#24,#7570,.T.); +#7570 = SURFACE_CURVE('',#7571,(#7575,#7581),.PCURVE_S1.); +#7571 = LINE('',#7572,#7573); +#7572 = CARTESIAN_POINT('',(7.914840828659E-02,8.414704151643E-02,0.302) + ); +#7573 = VECTOR('',#7574,1.); +#7574 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#7575 = PCURVE('',#76,#7576); +#7576 = DEFINITIONAL_REPRESENTATION('',(#7577),#7580); +#7577 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7578,#7579),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7578 = CARTESIAN_POINT('',(1.,0.)); +#7579 = CARTESIAN_POINT('',(1.,1.)); +#7580 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7581 = PCURVE('',#138,#7582); +#7582 = DEFINITIONAL_REPRESENTATION('',(#7583),#7587); +#7583 = LINE('',#7584,#7585); +#7584 = CARTESIAN_POINT('',(-0.,0.)); +#7585 = VECTOR('',#7586,1.); +#7586 = DIRECTION('',(1.077317062642E-33,-1.)); +#7587 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7588 = ADVANCED_FACE('',(#7589),#1100,.T.); +#7589 = FACE_BOUND('',#7590,.T.); +#7590 = EDGE_LOOP('',(#7591,#7592,#7613,#7666)); +#7591 = ORIENTED_EDGE('',*,*,#1054,.F.); +#7592 = ORIENTED_EDGE('',*,*,#7593,.F.); +#7593 = EDGE_CURVE('',#7594,#977,#7596,.T.); +#7594 = VERTEX_POINT('',#7595); +#7595 = CARTESIAN_POINT('',(0.164759031116,9.227593478993E-02,0.302)); +#7596 = SURFACE_CURVE('',#7597,(#7601,#7607),.PCURVE_S1.); +#7597 = LINE('',#7598,#7599); +#7598 = CARTESIAN_POINT('',(0.164759031116,9.227593478993E-02,0.302)); +#7599 = VECTOR('',#7600,1.); +#7600 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#7601 = PCURVE('',#1100,#7602); +#7602 = DEFINITIONAL_REPRESENTATION('',(#7603),#7606); +#7603 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7604,#7605),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7604 = CARTESIAN_POINT('',(0.,0.)); +#7605 = CARTESIAN_POINT('',(0.,1.)); +#7606 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7607 = PCURVE('',#1016,#7608); +#7608 = DEFINITIONAL_REPRESENTATION('',(#7609),#7612); +#7609 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7610,#7611),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7610 = CARTESIAN_POINT('',(1.,0.)); +#7611 = CARTESIAN_POINT('',(1.,1.)); +#7612 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7613 = ORIENTED_EDGE('',*,*,#7614,.T.); +#7614 = EDGE_CURVE('',#7594,#7489,#7615,.T.); +#7615 = SURFACE_CURVE('',#7616,(#7636,#7643),.PCURVE_S1.); +#7616 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7617,#7618,#7619,#7620,#7621, + #7622,#7623,#7624,#7625,#7626,#7627,#7628,#7629,#7630,#7631,#7632, + #7633,#7634,#7635),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,8.24620414803E-02,0.161515342508,0.237917489154, + 0.311928206459,0.383707237096,0.453658663398,0.521451712787, + 0.588090222416,0.65166842296,0.709643084761,0.763649359456, + 0.813744495021,0.861615745413,0.90793947877,0.953267747783,1.), + .UNSPECIFIED.); +#7617 = CARTESIAN_POINT('',(0.164759031116,9.227593478993E-02,0.302)); +#7618 = CARTESIAN_POINT('',(0.164716643368,8.951391922135E-02,0.302)); +#7619 = CARTESIAN_POINT('',(0.164633620056,8.410406175767E-02,0.302)); +#7620 = CARTESIAN_POINT('',(0.164066970396,7.615102581177E-02,0.302)); +#7621 = CARTESIAN_POINT('',(0.163101736194,6.852155670844E-02,0.302)); +#7622 = CARTESIAN_POINT('',(0.161698187641,6.120921345822E-02,0.302)); +#7623 = CARTESIAN_POINT('',(0.159971168479,5.418787521082E-02,0.302)); +#7624 = CARTESIAN_POINT('',(0.157803241688,4.750755989307E-02,0.302)); +#7625 = CARTESIAN_POINT('',(0.155283758046,4.113716822208E-02,0.302)); +#7626 = CARTESIAN_POINT('',(0.152379773025,3.516670627895E-02,0.302)); +#7627 = CARTESIAN_POINT('',(0.149189941965,2.972410856556E-02,0.302)); +#7628 = CARTESIAN_POINT('',(0.145795946897,2.490751690085E-02,0.302)); +#7629 = CARTESIAN_POINT('',(0.142127426527,2.089017597307E-02,0.302)); +#7630 = CARTESIAN_POINT('',(0.138299010628,1.751336894227E-02,0.302)); +#7631 = CARTESIAN_POINT('',(0.134197002433,1.491831031664E-02,0.302)); +#7632 = CARTESIAN_POINT('',(0.129901343866,1.303707882367E-02,0.302)); +#7633 = CARTESIAN_POINT('',(0.125372855995,1.190522761079E-02,0.302)); +#7634 = CARTESIAN_POINT('',(0.122285945204,1.177393247406E-02,0.302)); +#7635 = CARTESIAN_POINT('',(0.120718951103,1.170728373731E-02,0.302)); +#7636 = PCURVE('',#1100,#7637); +#7637 = DEFINITIONAL_REPRESENTATION('',(#7638),#7642); +#7638 = LINE('',#7639,#7640); +#7639 = CARTESIAN_POINT('',(0.,0.)); +#7640 = VECTOR('',#7641,1.); +#7641 = DIRECTION('',(1.,0.)); +#7642 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7643 = PCURVE('',#7541,#7644); +#7644 = DEFINITIONAL_REPRESENTATION('',(#7645),#7665); +#7645 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7646,#7647,#7648,#7649,#7650, + #7651,#7652,#7653,#7654,#7655,#7656,#7657,#7658,#7659,#7660,#7661, + #7662,#7663,#7664),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,8.24620414803E-02,0.161515342508,0.237917489154, + 0.311928206459,0.383707237096,0.453658663398,0.521451712787, + 0.588090222416,0.65166842296,0.709643084761,0.763649359456, + 0.813744495021,0.861615745413,0.90793947877,0.953267747783,1.), + .UNSPECIFIED.); +#7646 = CARTESIAN_POINT('',(-5.253447438117E-02,7.650705520665E-02)); +#7647 = CARTESIAN_POINT('',(-4.977245881259E-02,7.646466745771E-02)); +#7648 = CARTESIAN_POINT('',(-4.43626013489E-02,7.638164414581E-02)); +#7649 = CARTESIAN_POINT('',(-3.6409565403E-02,7.58149944864E-02)); +#7650 = CARTESIAN_POINT('',(-2.878009629967E-02,7.484976028452E-02)); +#7651 = CARTESIAN_POINT('',(-2.146775304946E-02,7.344621173073E-02)); +#7652 = CARTESIAN_POINT('',(-1.444641480206E-02,7.171919256911E-02)); +#7653 = CARTESIAN_POINT('',(-7.766099484301E-03,6.955126577837E-02)); +#7654 = CARTESIAN_POINT('',(-1.395707813312E-03,6.703178213598E-02)); +#7655 = CARTESIAN_POINT('',(4.574754129818E-03,6.412779711522E-02)); +#7656 = CARTESIAN_POINT('',(1.00173518432E-02,6.093796605511E-02)); +#7657 = CARTESIAN_POINT('',(1.483394350792E-02,5.754397098685E-02)); +#7658 = CARTESIAN_POINT('',(1.885128443569E-02,5.387545061701E-02)); +#7659 = CARTESIAN_POINT('',(2.22280914665E-02,5.004703471776E-02)); +#7660 = CARTESIAN_POINT('',(2.482315009213E-02,4.594502652354E-02)); +#7661 = CARTESIAN_POINT('',(2.67043815851E-02,4.164936795577E-02)); +#7662 = CARTESIAN_POINT('',(2.783623279798E-02,3.712088008496E-02)); +#7663 = CARTESIAN_POINT('',(2.79675279347E-02,3.40339692938E-02)); +#7664 = CARTESIAN_POINT('',(2.803417667145E-02,3.246697519322E-02)); +#7665 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7666 = ORIENTED_EDGE('',*,*,#7488,.T.); +#7667 = ADVANCED_FACE('',(#7668),#1016,.T.); +#7668 = FACE_BOUND('',#7669,.T.); +#7669 = EDGE_LOOP('',(#7670,#7671,#7692,#7737)); +#7670 = ORIENTED_EDGE('',*,*,#976,.F.); +#7671 = ORIENTED_EDGE('',*,*,#7672,.F.); +#7672 = EDGE_CURVE('',#7673,#915,#7675,.T.); +#7673 = VERTEX_POINT('',#7674); +#7674 = CARTESIAN_POINT('',(0.140629594754,0.155609274155,0.302)); +#7675 = SURFACE_CURVE('',#7676,(#7680,#7686),.PCURVE_S1.); +#7676 = LINE('',#7677,#7678); +#7677 = CARTESIAN_POINT('',(0.140629594754,0.155609274155,0.302)); +#7678 = VECTOR('',#7679,1.); +#7679 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#7680 = PCURVE('',#1016,#7681); +#7681 = DEFINITIONAL_REPRESENTATION('',(#7682),#7685); +#7682 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7683,#7684),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7683 = CARTESIAN_POINT('',(0.,0.)); +#7684 = CARTESIAN_POINT('',(0.,1.)); +#7685 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7686 = PCURVE('',#946,#7687); +#7687 = DEFINITIONAL_REPRESENTATION('',(#7688),#7691); +#7688 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7689,#7690),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7689 = CARTESIAN_POINT('',(1.,0.)); +#7690 = CARTESIAN_POINT('',(1.,1.)); +#7691 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7692 = ORIENTED_EDGE('',*,*,#7693,.T.); +#7693 = EDGE_CURVE('',#7673,#7594,#7694,.T.); +#7694 = SURFACE_CURVE('',#7695,(#7711,#7718),.PCURVE_S1.); +#7695 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7696,#7697,#7698,#7699,#7700, + #7701,#7702,#7703,#7704,#7705,#7706,#7707,#7708,#7709,#7710), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0., + 4.377083669217E-02,8.899844465675E-02,0.135150860332,0.183350536556, + 0.234220552737,0.287902046026,0.345252071006,0.405945978452, + 0.53608603193,0.677320807104,0.831816088461,1.),.UNSPECIFIED.); +#7696 = CARTESIAN_POINT('',(0.140629594754,0.155609274155,0.302)); +#7697 = CARTESIAN_POINT('',(0.141550018535,0.155132057108,0.302)); +#7698 = CARTESIAN_POINT('',(0.143421499437,0.154161740381,0.302)); +#7699 = CARTESIAN_POINT('',(0.146046946904,0.152309286402,0.302)); +#7700 = CARTESIAN_POINT('',(0.148454621321,0.150041624586,0.302)); +#7701 = CARTESIAN_POINT('',(0.150824794211,0.147540326043,0.302)); +#7702 = CARTESIAN_POINT('',(0.152877036644,0.144554406032,0.302)); +#7703 = CARTESIAN_POINT('',(0.154945403056,0.141323490153,0.302)); +#7704 = CARTESIAN_POINT('',(0.156682055631,0.137640381656,0.302)); +#7705 = CARTESIAN_POINT('',(0.159030696008,0.132255325873,0.302)); +#7706 = CARTESIAN_POINT('',(0.161389390067,0.124730582974,0.302)); +#7707 = CARTESIAN_POINT('',(0.163370584919,0.114833687655,0.302)); +#7708 = CARTESIAN_POINT('',(0.164533037871,0.103896571211,0.302)); +#7709 = CARTESIAN_POINT('',(0.164681599287,9.625750128022E-02,0.302)); +#7710 = CARTESIAN_POINT('',(0.164759031116,9.227593478993E-02,0.302)); +#7711 = PCURVE('',#1016,#7712); +#7712 = DEFINITIONAL_REPRESENTATION('',(#7713),#7717); +#7713 = LINE('',#7714,#7715); +#7714 = CARTESIAN_POINT('',(0.,0.)); +#7715 = VECTOR('',#7716,1.); +#7716 = DIRECTION('',(1.,0.)); +#7717 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7718 = PCURVE('',#7541,#7719); +#7719 = DEFINITIONAL_REPRESENTATION('',(#7720),#7736); +#7720 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7721,#7722,#7723,#7724,#7725, + #7726,#7727,#7728,#7729,#7730,#7731,#7732,#7733,#7734,#7735), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0., + 4.377083669217E-02,8.899844465675E-02,0.135150860332,0.183350536556, + 0.234220552737,0.287902046026,0.345252071006,0.405945978452, + 0.53608603193,0.677320807104,0.831816088461,1.),.UNSPECIFIED.); +#7721 = CARTESIAN_POINT('',(-0.115867813746,5.237761884415E-02)); +#7722 = CARTESIAN_POINT('',(-0.115390596699,5.329804262517E-02)); +#7723 = CARTESIAN_POINT('',(-0.114420279972,5.516952352721E-02)); +#7724 = CARTESIAN_POINT('',(-0.112567825993,5.779497099463E-02)); +#7725 = CARTESIAN_POINT('',(-0.110300164178,6.020264541122E-02)); +#7726 = CARTESIAN_POINT('',(-0.107798865634,6.257281830167E-02)); +#7727 = CARTESIAN_POINT('',(-0.104812945623,6.462506073403E-02)); +#7728 = CARTESIAN_POINT('',(-0.101582029745,6.669342714626E-02)); +#7729 = CARTESIAN_POINT('',(-9.789892124699E-02,6.843007972122E-02)); +#7730 = CARTESIAN_POINT('',(-9.251386546427E-02,7.077872009784E-02)); +#7731 = CARTESIAN_POINT('',(-8.498912256513E-02,7.313741415739E-02)); +#7732 = CARTESIAN_POINT('',(-7.509222724599E-02,7.511860900928E-02)); +#7733 = CARTESIAN_POINT('',(-6.415511080264E-02,7.628106196139E-02)); +#7734 = CARTESIAN_POINT('',(-5.651604087146E-02,7.642962337764E-02)); +#7735 = CARTESIAN_POINT('',(-5.253447438117E-02,7.650705520665E-02)); +#7736 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7737 = ORIENTED_EDGE('',*,*,#7593,.T.); +#7738 = ADVANCED_FACE('',(#7739),#946,.T.); +#7739 = FACE_BOUND('',#7740,.T.); +#7740 = EDGE_LOOP('',(#7741,#7742,#7763,#7800)); +#7741 = ORIENTED_EDGE('',*,*,#914,.F.); +#7742 = ORIENTED_EDGE('',*,*,#7743,.F.); +#7743 = EDGE_CURVE('',#7744,#837,#7746,.T.); +#7744 = VERTEX_POINT('',#7745); +#7745 = CARTESIAN_POINT('',(0.158173598591,0.206543478843,0.302)); +#7746 = SURFACE_CURVE('',#7747,(#7751,#7757),.PCURVE_S1.); +#7747 = LINE('',#7748,#7749); +#7748 = CARTESIAN_POINT('',(0.158173598591,0.206543478843,0.302)); +#7749 = VECTOR('',#7750,1.); +#7750 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#7751 = PCURVE('',#946,#7752); +#7752 = DEFINITIONAL_REPRESENTATION('',(#7753),#7756); +#7753 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7754,#7755),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7754 = CARTESIAN_POINT('',(0.,0.)); +#7755 = CARTESIAN_POINT('',(0.,1.)); +#7756 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7757 = PCURVE('',#876,#7758); +#7758 = DEFINITIONAL_REPRESENTATION('',(#7759),#7762); +#7759 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7760,#7761),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7760 = CARTESIAN_POINT('',(1.,0.)); +#7761 = CARTESIAN_POINT('',(1.,1.)); +#7762 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7763 = ORIENTED_EDGE('',*,*,#7764,.T.); +#7764 = EDGE_CURVE('',#7744,#7673,#7765,.T.); +#7765 = SURFACE_CURVE('',#7766,(#7778,#7785),.PCURVE_S1.); +#7766 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7767,#7768,#7769,#7770,#7771, + #7772,#7773,#7774,#7775,#7776,#7777),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.144088321347,0.282399129672,0.414872702475, + 0.544283974604,0.666959324827,0.782935532939,0.893535797687,1.), + .UNSPECIFIED.); +#7767 = CARTESIAN_POINT('',(0.158173598591,0.206543478843,0.302)); +#7768 = CARTESIAN_POINT('',(0.158129792988,0.203883132932,0.302)); +#7769 = CARTESIAN_POINT('',(0.158043938255,0.198669113066,0.302)); +#7770 = CARTESIAN_POINT('',(0.15720775192,0.191045820859,0.302)); +#7771 = CARTESIAN_POINT('',(0.155818746293,0.183782650757,0.302)); +#7772 = CARTESIAN_POINT('',(0.153886857386,0.176944626223,0.302)); +#7773 = CARTESIAN_POINT('',(0.151461620133,0.170581289722,0.302)); +#7774 = CARTESIAN_POINT('',(0.148396002302,0.164897214888,0.302)); +#7775 = CARTESIAN_POINT('',(0.144884664636,0.159815365255,0.302)); +#7776 = CARTESIAN_POINT('',(0.142029818795,0.156993380654,0.302)); +#7777 = CARTESIAN_POINT('',(0.140629594754,0.155609274155,0.302)); +#7778 = PCURVE('',#946,#7779); +#7779 = DEFINITIONAL_REPRESENTATION('',(#7780),#7784); +#7780 = LINE('',#7781,#7782); +#7781 = CARTESIAN_POINT('',(0.,0.)); +#7782 = VECTOR('',#7783,1.); +#7783 = DIRECTION('',(1.,0.)); +#7784 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7785 = PCURVE('',#7541,#7786); +#7786 = DEFINITIONAL_REPRESENTATION('',(#7787),#7799); +#7787 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7788,#7789,#7790,#7791,#7792, + #7793,#7794,#7795,#7796,#7797,#7798),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.144088321347,0.282399129672,0.414872702475, + 0.544283974604,0.666959324827,0.782935532939,0.893535797687,1.), + .UNSPECIFIED.); +#7788 = CARTESIAN_POINT('',(-0.166802018435,6.992162268128E-02)); +#7789 = CARTESIAN_POINT('',(-0.164141672524,6.987781707789E-02)); +#7790 = CARTESIAN_POINT('',(-0.158927652658,6.979196234549E-02)); +#7791 = CARTESIAN_POINT('',(-0.15130436045,6.895577601022E-02)); +#7792 = CARTESIAN_POINT('',(-0.144041190348,6.75667703832E-02)); +#7793 = CARTESIAN_POINT('',(-0.137203165814,6.563488147653E-02)); +#7794 = CARTESIAN_POINT('',(-0.130839829314,6.320964422362E-02)); +#7795 = CARTESIAN_POINT('',(-0.125155754479,6.014402639215E-02)); +#7796 = CARTESIAN_POINT('',(-0.120073904846,5.663268872641E-02)); +#7797 = CARTESIAN_POINT('',(-0.117251920245,5.377784288513E-02)); +#7798 = CARTESIAN_POINT('',(-0.115867813746,5.237761884415E-02)); +#7799 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7800 = ORIENTED_EDGE('',*,*,#7672,.T.); +#7801 = ADVANCED_FACE('',(#7802),#876,.T.); +#7802 = FACE_BOUND('',#7803,.T.); +#7803 = EDGE_LOOP('',(#7804,#7805,#7826,#7871)); +#7804 = ORIENTED_EDGE('',*,*,#836,.F.); +#7805 = ORIENTED_EDGE('',*,*,#7806,.F.); +#7806 = EDGE_CURVE('',#7807,#743,#7809,.T.); +#7807 = VERTEX_POINT('',#7808); +#7808 = CARTESIAN_POINT('',(0.119226939046,0.27183186849,0.302)); +#7809 = SURFACE_CURVE('',#7810,(#7814,#7820),.PCURVE_S1.); +#7810 = LINE('',#7811,#7812); +#7811 = CARTESIAN_POINT('',(0.119226939046,0.27183186849,0.302)); +#7812 = VECTOR('',#7813,1.); +#7813 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#7814 = PCURVE('',#876,#7815); +#7815 = DEFINITIONAL_REPRESENTATION('',(#7816),#7819); +#7816 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7817,#7818),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7817 = CARTESIAN_POINT('',(0.,0.)); +#7818 = CARTESIAN_POINT('',(0.,1.)); +#7819 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7820 = PCURVE('',#790,#7821); +#7821 = DEFINITIONAL_REPRESENTATION('',(#7822),#7825); +#7822 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7823,#7824),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7823 = CARTESIAN_POINT('',(1.,0.)); +#7824 = CARTESIAN_POINT('',(1.,1.)); +#7825 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7826 = ORIENTED_EDGE('',*,*,#7827,.T.); +#7827 = EDGE_CURVE('',#7807,#7744,#7828,.T.); +#7828 = SURFACE_CURVE('',#7829,(#7845,#7852),.PCURVE_S1.); +#7829 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7830,#7831,#7832,#7833,#7834, + #7835,#7836,#7837,#7838,#7839,#7840,#7841,#7842,#7843,#7844), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0., + 6.387538380381E-02,0.12861994085,0.196003510006,0.268720312566, + 0.345997735741,0.427237937522,0.51355471408,0.606225684137, + 0.702279552613,0.799517688897,0.898802923895,1.),.UNSPECIFIED.); +#7830 = CARTESIAN_POINT('',(0.119226939046,0.27183186849,0.302)); +#7831 = CARTESIAN_POINT('',(0.121005319564,0.27171735703,0.302)); +#7832 = CARTESIAN_POINT('',(0.124586279606,0.271486775915,0.302)); +#7833 = CARTESIAN_POINT('',(0.129821310946,0.269761218325,0.302)); +#7834 = CARTESIAN_POINT('',(0.134777221861,0.266893256078,0.302)); +#7835 = CARTESIAN_POINT('',(0.13943575464,0.263000821987,0.302)); +#7836 = CARTESIAN_POINT('',(0.14375146343,0.258205698873,0.302)); +#7837 = CARTESIAN_POINT('',(0.147571454268,0.25254422923,0.302)); +#7838 = CARTESIAN_POINT('',(0.150819844871,0.246054036992,0.302)); +#7839 = CARTESIAN_POINT('',(0.153394946348,0.238840613046,0.302)); +#7840 = CARTESIAN_POINT('',(0.15558652488,0.231185982165,0.302)); +#7841 = CARTESIAN_POINT('',(0.157028092774,0.223168697578,0.302)); +#7842 = CARTESIAN_POINT('',(0.158005058872,0.214936606152,0.302)); +#7843 = CARTESIAN_POINT('',(0.158117062654,0.209358917945,0.302)); +#7844 = CARTESIAN_POINT('',(0.158173598591,0.206543478843,0.302)); +#7845 = PCURVE('',#876,#7846); +#7846 = DEFINITIONAL_REPRESENTATION('',(#7847),#7851); +#7847 = LINE('',#7848,#7849); +#7848 = CARTESIAN_POINT('',(0.,0.)); +#7849 = VECTOR('',#7850,1.); +#7850 = DIRECTION('',(1.,0.)); +#7851 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7852 = PCURVE('',#7541,#7853); +#7853 = DEFINITIONAL_REPRESENTATION('',(#7854),#7870); +#7854 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7855,#7856,#7857,#7858,#7859, + #7860,#7861,#7862,#7863,#7864,#7865,#7866,#7867,#7868,#7869), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0., + 6.387538380381E-02,0.12861994085,0.196003510006,0.268720312566, + 0.345997735741,0.427237937522,0.51355471408,0.606225684137, + 0.702279552613,0.799517688897,0.898802923895,1.),.UNSPECIFIED.); +#7855 = CARTESIAN_POINT('',(-0.232090408081,3.097496313669E-02)); +#7856 = CARTESIAN_POINT('',(-0.231975896621,3.27533436546E-02)); +#7857 = CARTESIAN_POINT('',(-0.231745315506,3.633430369588E-02)); +#7858 = CARTESIAN_POINT('',(-0.230019757916,4.156933503623E-02)); +#7859 = CARTESIAN_POINT('',(-0.227151795669,4.65252459515E-02)); +#7860 = CARTESIAN_POINT('',(-0.223259361578,5.118377873004E-02)); +#7861 = CARTESIAN_POINT('',(-0.218464238464,5.549948752056E-02)); +#7862 = CARTESIAN_POINT('',(-0.212802768821,5.931947835793E-02)); +#7863 = CARTESIAN_POINT('',(-0.206312576584,6.256786896106E-02)); +#7864 = CARTESIAN_POINT('',(-0.199099152637,6.514297043789E-02)); +#7865 = CARTESIAN_POINT('',(-0.191444521757,6.733454897016E-02)); +#7866 = CARTESIAN_POINT('',(-0.183427237169,6.877611686448E-02)); +#7867 = CARTESIAN_POINT('',(-0.175195145743,6.975308296246E-02)); +#7868 = CARTESIAN_POINT('',(-0.169617457537,6.986508674454E-02)); +#7869 = CARTESIAN_POINT('',(-0.166802018435,6.992162268128E-02)); +#7870 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7871 = ORIENTED_EDGE('',*,*,#7743,.T.); +#7872 = ADVANCED_FACE('',(#7873),#790,.T.); +#7873 = FACE_BOUND('',#7874,.T.); +#7874 = EDGE_LOOP('',(#7875,#7876,#7898,#7951)); +#7875 = ORIENTED_EDGE('',*,*,#742,.F.); +#7876 = ORIENTED_EDGE('',*,*,#7877,.F.); +#7877 = EDGE_CURVE('',#7878,#715,#7880,.T.); +#7878 = VERTEX_POINT('',#7879); +#7879 = CARTESIAN_POINT('',(7.914840828659E-02,0.205977543236,0.302)); +#7880 = SURFACE_CURVE('',#7881,(#7885,#7891),.PCURVE_S1.); +#7881 = LINE('',#7882,#7883); +#7882 = CARTESIAN_POINT('',(7.914840828659E-02,0.205977543236,0.302)); +#7883 = VECTOR('',#7884,1.); +#7884 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#7885 = PCURVE('',#790,#7886); +#7886 = DEFINITIONAL_REPRESENTATION('',(#7887),#7890); +#7887 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7888,#7889),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7888 = CARTESIAN_POINT('',(0.,0.)); +#7889 = CARTESIAN_POINT('',(0.,1.)); +#7890 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7891 = PCURVE('',#730,#7892); +#7892 = DEFINITIONAL_REPRESENTATION('',(#7893),#7897); +#7893 = LINE('',#7894,#7895); +#7894 = CARTESIAN_POINT('',(-1.678962447617E-02,-4.501732328109E-19)); +#7895 = VECTOR('',#7896,1.); +#7896 = DIRECTION('',(-7.327561585286E-34,-1.)); +#7897 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7898 = ORIENTED_EDGE('',*,*,#7899,.T.); +#7899 = EDGE_CURVE('',#7878,#7807,#7900,.T.); +#7900 = SURFACE_CURVE('',#7901,(#7921,#7928),.PCURVE_S1.); +#7901 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7902,#7903,#7904,#7905,#7906, + #7907,#7908,#7909,#7910,#7911,#7912,#7913,#7914,#7915,#7916,#7917, + #7918,#7919,#7920),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,9.122476984126E-02,0.177913863773,0.259697360619, + 0.336778990913,0.409803700408,0.478608773912,0.54408804914, + 0.605766121966,0.664020565669,0.71835496815,0.768590650062, + 0.816722075277,0.863055298693,0.908208072643,0.95397126985,1.), + .UNSPECIFIED.); +#7902 = CARTESIAN_POINT('',(7.914840828659E-02,0.205977543236,0.302)); +#7903 = CARTESIAN_POINT('',(7.942263179121E-02,0.208517790933,0.302)); +#7904 = CARTESIAN_POINT('',(7.995744446684E-02,0.213471985759,0.302)); +#7905 = CARTESIAN_POINT('',(8.102656814399E-02,0.220668344575,0.302)); +#7906 = CARTESIAN_POINT('',(8.234956651353E-02,0.227420410235,0.302)); +#7907 = CARTESIAN_POINT('',(8.396370016147E-02,0.233713279684,0.302)); +#7908 = CARTESIAN_POINT('',(8.573135924342E-02,0.23958709514,0.302)); +#7909 = CARTESIAN_POINT('',(8.779849653291E-02,0.245017929677,0.302)); +#7910 = CARTESIAN_POINT('',(9.010282777064E-02,0.250004184549,0.302)); +#7911 = CARTESIAN_POINT('',(9.26259501583E-02,0.254546928892,0.302)); +#7912 = CARTESIAN_POINT('',(9.531783995478E-02,0.258628423011,0.302)); +#7913 = CARTESIAN_POINT('',(9.826109596403E-02,0.262121960092,0.302)); +#7914 = CARTESIAN_POINT('',(0.101319031097,0.265125765411,0.302)); +#7915 = CARTESIAN_POINT('',(0.104580653649,0.26754877688,0.302)); +#7916 = CARTESIAN_POINT('',(0.107988298022,0.269495502836,0.302)); +#7917 = CARTESIAN_POINT('',(0.111604056843,0.270834943159,0.302)); +#7918 = CARTESIAN_POINT('',(0.11536176041,0.271697887748,0.302)); +#7919 = CARTESIAN_POINT('',(0.117936063878,0.271787122197,0.302)); +#7920 = CARTESIAN_POINT('',(0.119226939046,0.27183186849,0.302)); +#7921 = PCURVE('',#790,#7922); +#7922 = DEFINITIONAL_REPRESENTATION('',(#7923),#7927); +#7923 = LINE('',#7924,#7925); +#7924 = CARTESIAN_POINT('',(0.,0.)); +#7925 = VECTOR('',#7926,1.); +#7926 = DIRECTION('',(1.,0.)); +#7927 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7928 = PCURVE('',#7541,#7929); +#7929 = DEFINITIONAL_REPRESENTATION('',(#7930),#7950); +#7930 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#7931,#7932,#7933,#7934,#7935, + #7936,#7937,#7938,#7939,#7940,#7941,#7942,#7943,#7944,#7945,#7946, + #7947,#7948,#7949),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,9.122476984126E-02,0.177913863773,0.259697360619, + 0.336778990913,0.409803700408,0.478608773912,0.54408804914, + 0.605766121966,0.664020565669,0.71835496815,0.768590650062, + 0.816722075277,0.863055298693,0.908208072643,0.95397126985,1.), + .UNSPECIFIED.); +#7931 = CARTESIAN_POINT('',(-0.166236082827,-9.103567623207E-03)); +#7932 = CARTESIAN_POINT('',(-0.168776330524,-8.829344118593E-03)); +#7933 = CARTESIAN_POINT('',(-0.17373052535,-8.294531442956E-03)); +#7934 = CARTESIAN_POINT('',(-0.180926884166,-7.22540776581E-03)); +#7935 = CARTESIAN_POINT('',(-0.187678949826,-5.902409396274E-03)); +#7936 = CARTESIAN_POINT('',(-0.193971819276,-4.288275748329E-03)); +#7937 = CARTESIAN_POINT('',(-0.199845634731,-2.520616666379E-03)); +#7938 = CARTESIAN_POINT('',(-0.205276469268,-4.534793768921E-04)); +#7939 = CARTESIAN_POINT('',(-0.21026272414,1.85085186084E-03)); +#7940 = CARTESIAN_POINT('',(-0.214805468483,4.3739742485E-03)); +#7941 = CARTESIAN_POINT('',(-0.218886962602,7.065864044983E-03)); +#7942 = CARTESIAN_POINT('',(-0.222380499683,1.000912005423E-02)); +#7943 = CARTESIAN_POINT('',(-0.225384305003,1.306705518726E-02)); +#7944 = CARTESIAN_POINT('',(-0.227807316472,1.632867773947E-02)); +#7945 = CARTESIAN_POINT('',(-0.229754042428,1.973632211171E-02)); +#7946 = CARTESIAN_POINT('',(-0.23109348275,2.335208093355E-02)); +#7947 = CARTESIAN_POINT('',(-0.231956427339,2.710978450068E-02)); +#7948 = CARTESIAN_POINT('',(-0.232045661789,2.968408796866E-02)); +#7949 = CARTESIAN_POINT('',(-0.232090408081,3.097496313669E-02)); +#7950 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7951 = ORIENTED_EDGE('',*,*,#7806,.T.); +#7952 = ADVANCED_FACE('',(#7953),#730,.T.); +#7953 = FACE_BOUND('',#7954,.T.); +#7954 = EDGE_LOOP('',(#7955,#7956,#7978,#7999)); +#7955 = ORIENTED_EDGE('',*,*,#714,.F.); +#7956 = ORIENTED_EDGE('',*,*,#7957,.F.); +#7957 = EDGE_CURVE('',#7958,#653,#7960,.T.); +#7958 = VERTEX_POINT('',#7959); +#7959 = CARTESIAN_POINT('',(9.561198960003E-02,0.202684826973,0.302)); +#7960 = SURFACE_CURVE('',#7961,(#7965,#7972),.PCURVE_S1.); +#7961 = LINE('',#7962,#7963); +#7962 = CARTESIAN_POINT('',(9.561198960003E-02,0.202684826973,0.302)); +#7963 = VECTOR('',#7964,1.); +#7964 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#7965 = PCURVE('',#730,#7966); +#7966 = DEFINITIONAL_REPRESENTATION('',(#7967),#7971); +#7967 = LINE('',#7968,#7969); +#7968 = CARTESIAN_POINT('',(0.,0.)); +#7969 = VECTOR('',#7970,1.); +#7970 = DIRECTION('',(-7.327561585286E-34,-1.)); +#7971 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7972 = PCURVE('',#684,#7973); +#7973 = DEFINITIONAL_REPRESENTATION('',(#7974),#7977); +#7974 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#7975,#7976),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#7975 = CARTESIAN_POINT('',(1.,0.)); +#7976 = CARTESIAN_POINT('',(1.,1.)); +#7977 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7978 = ORIENTED_EDGE('',*,*,#7979,.T.); +#7979 = EDGE_CURVE('',#7958,#7878,#7980,.T.); +#7980 = SURFACE_CURVE('',#7981,(#7985,#7992),.PCURVE_S1.); +#7981 = LINE('',#7982,#7983); +#7982 = CARTESIAN_POINT('',(9.561198960003E-02,0.202684826973,0.302)); +#7983 = VECTOR('',#7984,1.); +#7984 = DIRECTION('',(-0.980580675691,0.196116135138,2.681258496579E-17) + ); +#7985 = PCURVE('',#730,#7986); +#7986 = DEFINITIONAL_REPRESENTATION('',(#7987),#7991); +#7987 = LINE('',#7988,#7989); +#7988 = CARTESIAN_POINT('',(0.,0.)); +#7989 = VECTOR('',#7990,1.); +#7990 = DIRECTION('',(-1.,1.530211526126E-33)); +#7991 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7992 = PCURVE('',#7541,#7993); +#7993 = DEFINITIONAL_REPRESENTATION('',(#7994),#7998); +#7994 = LINE('',#7995,#7996); +#7995 = CARTESIAN_POINT('',(-0.162943366564,7.360013690228E-03)); +#7996 = VECTOR('',#7997,1.); +#7997 = DIRECTION('',(-0.196116135138,-0.980580675691)); +#7998 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#7999 = ORIENTED_EDGE('',*,*,#7877,.T.); +#8000 = ADVANCED_FACE('',(#8001),#684,.T.); +#8001 = FACE_BOUND('',#8002,.T.); +#8002 = EDGE_LOOP('',(#8003,#8004,#8025,#8062)); +#8003 = ORIENTED_EDGE('',*,*,#652,.F.); +#8004 = ORIENTED_EDGE('',*,*,#8005,.F.); +#8005 = EDGE_CURVE('',#8006,#591,#8008,.T.); +#8006 = VERTEX_POINT('',#8007); +#8007 = CARTESIAN_POINT('',(0.119792874654,0.242197422125,0.302)); +#8008 = SURFACE_CURVE('',#8009,(#8013,#8019),.PCURVE_S1.); +#8009 = LINE('',#8010,#8011); +#8010 = CARTESIAN_POINT('',(0.119792874654,0.242197422125,0.302)); +#8011 = VECTOR('',#8012,1.); +#8012 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#8013 = PCURVE('',#684,#8014); +#8014 = DEFINITIONAL_REPRESENTATION('',(#8015),#8018); +#8015 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8016,#8017),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#8016 = CARTESIAN_POINT('',(0.,0.)); +#8017 = CARTESIAN_POINT('',(0.,1.)); +#8018 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8019 = PCURVE('',#622,#8020); +#8020 = DEFINITIONAL_REPRESENTATION('',(#8021),#8024); +#8021 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8022,#8023),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#8022 = CARTESIAN_POINT('',(1.,0.)); +#8023 = CARTESIAN_POINT('',(1.,1.)); +#8024 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8025 = ORIENTED_EDGE('',*,*,#8026,.T.); +#8026 = EDGE_CURVE('',#8006,#7958,#8027,.T.); +#8027 = SURFACE_CURVE('',#8028,(#8040,#8047),.PCURVE_S1.); +#8028 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8029,#8030,#8031,#8032,#8033, + #8034,#8035,#8036,#8037,#8038,#8039),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,9.126362437977E-02,0.18227228237,0.27908730912, + 0.387648952183,0.511279668023,0.653335087164,0.815589860134,1.), + .UNSPECIFIED.); +#8029 = CARTESIAN_POINT('',(0.119792874654,0.242197422125,0.302)); +#8030 = CARTESIAN_POINT('',(0.118246919394,0.242081541327,0.302)); +#8031 = CARTESIAN_POINT('',(0.115159327863,0.24185010347,0.302)); +#8032 = CARTESIAN_POINT('',(0.110791673482,0.239848280411,0.302)); +#8033 = CARTESIAN_POINT('',(0.10691015091,0.236633271892,0.302)); +#8034 = CARTESIAN_POINT('',(0.103495010222,0.232201282863,0.302)); +#8035 = CARTESIAN_POINT('',(0.100649165418,0.226533137035,0.302)); +#8036 = CARTESIAN_POINT('',(9.830207110176E-02,0.21968451525,0.302)); +#8037 = CARTESIAN_POINT('',(9.659229936985E-02,0.211596472273,0.302)); +#8038 = CARTESIAN_POINT('',(9.595239169733E-02,0.205779300622,0.302)); +#8039 = CARTESIAN_POINT('',(9.561198960003E-02,0.202684826973,0.302)); +#8040 = PCURVE('',#684,#8041); +#8041 = DEFINITIONAL_REPRESENTATION('',(#8042),#8046); +#8042 = LINE('',#8043,#8044); +#8043 = CARTESIAN_POINT('',(0.,0.)); +#8044 = VECTOR('',#8045,1.); +#8045 = DIRECTION('',(1.,0.)); +#8046 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8047 = PCURVE('',#7541,#8048); +#8048 = DEFINITIONAL_REPRESENTATION('',(#8049),#8061); +#8049 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8050,#8051,#8052,#8053,#8054, + #8055,#8056,#8057,#8058,#8059,#8060),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,9.126362437977E-02,0.18227228237,0.27908730912, + 0.387648952183,0.511279668023,0.653335087164,0.815589860134,1.), + .UNSPECIFIED.); +#8050 = CARTESIAN_POINT('',(-0.202455961717,3.154089874434E-02)); +#8051 = CARTESIAN_POINT('',(-0.202340080918,2.999494348397E-02)); +#8052 = CARTESIAN_POINT('',(-0.202108643061,2.69073519527E-02)); +#8053 = CARTESIAN_POINT('',(-0.200106820003,2.253969757188E-02)); +#8054 = CARTESIAN_POINT('',(-0.196891811483,1.865817499995E-02)); +#8055 = CARTESIAN_POINT('',(-0.192459822454,1.52430343118E-02)); +#8056 = CARTESIAN_POINT('',(-0.186791676626,1.239718950824E-02)); +#8057 = CARTESIAN_POINT('',(-0.179943054842,1.005009519196E-02)); +#8058 = CARTESIAN_POINT('',(-0.171855011864,8.340323460047E-03)); +#8059 = CARTESIAN_POINT('',(-0.166037840213,7.70041578753E-03)); +#8060 = CARTESIAN_POINT('',(-0.162943366564,7.360013690228E-03)); +#8061 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8062 = ORIENTED_EDGE('',*,*,#7957,.T.); +#8063 = ADVANCED_FACE('',(#8064),#622,.T.); +#8064 = FACE_BOUND('',#8065,.T.); +#8065 = EDGE_LOOP('',(#8066,#8067,#8088,#8125)); +#8066 = ORIENTED_EDGE('',*,*,#590,.F.); +#8067 = ORIENTED_EDGE('',*,*,#8068,.F.); +#8068 = EDGE_CURVE('',#8069,#513,#8071,.T.); +#8069 = VERTEX_POINT('',#8070); +#8070 = CARTESIAN_POINT('',(0.141710017278,0.20546305632,0.302)); +#8071 = SURFACE_CURVE('',#8072,(#8076,#8082),.PCURVE_S1.); +#8072 = LINE('',#8073,#8074); +#8073 = CARTESIAN_POINT('',(0.141710017278,0.20546305632,0.302)); +#8074 = VECTOR('',#8075,1.); +#8075 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#8076 = PCURVE('',#622,#8077); +#8077 = DEFINITIONAL_REPRESENTATION('',(#8078),#8081); +#8078 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8079,#8080),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#8079 = CARTESIAN_POINT('',(0.,0.)); +#8080 = CARTESIAN_POINT('',(0.,1.)); +#8081 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8082 = PCURVE('',#552,#8083); +#8083 = DEFINITIONAL_REPRESENTATION('',(#8084),#8087); +#8084 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8085,#8086),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#8085 = CARTESIAN_POINT('',(1.,0.)); +#8086 = CARTESIAN_POINT('',(1.,1.)); +#8087 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8088 = ORIENTED_EDGE('',*,*,#8089,.T.); +#8089 = EDGE_CURVE('',#8069,#8006,#8090,.T.); +#8090 = SURFACE_CURVE('',#8091,(#8103,#8110),.PCURVE_S1.); +#8091 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8092,#8093,#8094,#8095,#8096, + #8097,#8098,#8099,#8100,#8101,#8102),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.161713776497,0.310105544098,0.44820620169, + 0.579033460028,0.698679440002,0.803098988682,0.900750900152,1.), + .UNSPECIFIED.); +#8092 = CARTESIAN_POINT('',(0.141710017278,0.20546305632,0.302)); +#8093 = CARTESIAN_POINT('',(0.141658192574,0.208006973802,0.302)); +#8094 = CARTESIAN_POINT('',(0.141558812494,0.212885240404,0.302)); +#8095 = CARTESIAN_POINT('',(0.140327396217,0.219843774437,0.302)); +#8096 = CARTESIAN_POINT('',(0.138461069628,0.22614926037,0.302)); +#8097 = CARTESIAN_POINT('',(0.135816014373,0.231679174327,0.302)); +#8098 = CARTESIAN_POINT('',(0.132609362285,0.236288516346,0.302)); +#8099 = CARTESIAN_POINT('',(0.128811784606,0.239691462348,0.302)); +#8100 = CARTESIAN_POINT('',(0.124465920513,0.241820390132,0.302)); +#8101 = CARTESIAN_POINT('',(0.121358957453,0.242071066995,0.302)); +#8102 = CARTESIAN_POINT('',(0.119792874654,0.242197422125,0.302)); +#8103 = PCURVE('',#622,#8104); +#8104 = DEFINITIONAL_REPRESENTATION('',(#8105),#8109); +#8105 = LINE('',#8106,#8107); +#8106 = CARTESIAN_POINT('',(0.,0.)); +#8107 = VECTOR('',#8108,1.); +#8108 = DIRECTION('',(1.,0.)); +#8109 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8110 = PCURVE('',#7541,#8111); +#8111 = DEFINITIONAL_REPRESENTATION('',(#8112),#8124); +#8112 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8113,#8114,#8115,#8116,#8117, + #8118,#8119,#8120,#8121,#8122,#8123),.UNSPECIFIED.,.F.,.F.,(4,1,1,1, + 1,1,1,1,4),(0.,0.161713776497,0.310105544098,0.44820620169, + 0.579033460028,0.698679440002,0.803098988682,0.900750900152,1.), + .UNSPECIFIED.); +#8113 = CARTESIAN_POINT('',(-0.165721595911,5.345804136785E-02)); +#8114 = CARTESIAN_POINT('',(-0.168265513393,5.340621666396E-02)); +#8115 = CARTESIAN_POINT('',(-0.173143779995,5.330683658426E-02)); +#8116 = CARTESIAN_POINT('',(-0.180102314029,5.207542030685E-02)); +#8117 = CARTESIAN_POINT('',(-0.186407799961,5.02090937177E-02)); +#8118 = CARTESIAN_POINT('',(-0.191937713918,4.756403846346E-02)); +#8119 = CARTESIAN_POINT('',(-0.196547055937,4.435738637562E-02)); +#8120 = CARTESIAN_POINT('',(-0.199950001939,4.055980869658E-02)); +#8121 = CARTESIAN_POINT('',(-0.202078929723,3.621394460316E-02)); +#8122 = CARTESIAN_POINT('',(-0.202329606586,3.310698154339E-02)); +#8123 = CARTESIAN_POINT('',(-0.202455961717,3.154089874434E-02)); +#8124 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8125 = ORIENTED_EDGE('',*,*,#8005,.T.); +#8126 = ADVANCED_FACE('',(#8127),#552,.T.); +#8127 = FACE_BOUND('',#8128,.T.); +#8128 = EDGE_LOOP('',(#8129,#8130,#8151,#8196)); +#8129 = ORIENTED_EDGE('',*,*,#512,.F.); +#8130 = ORIENTED_EDGE('',*,*,#8131,.F.); +#8131 = EDGE_CURVE('',#8132,#475,#8134,.T.); +#8132 = VERTEX_POINT('',#8133); +#8133 = CARTESIAN_POINT('',(0.115625530634,0.166104807242,0.302)); +#8134 = SURFACE_CURVE('',#8135,(#8139,#8145),.PCURVE_S1.); +#8135 = LINE('',#8136,#8137); +#8136 = CARTESIAN_POINT('',(0.115625530634,0.166104807242,0.302)); +#8137 = VECTOR('',#8138,1.); +#8138 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#8139 = PCURVE('',#552,#8140); +#8140 = DEFINITIONAL_REPRESENTATION('',(#8141),#8144); +#8141 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8142,#8143),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#8142 = CARTESIAN_POINT('',(0.,0.)); +#8143 = CARTESIAN_POINT('',(0.,1.)); +#8144 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8145 = PCURVE('',#494,#8146); +#8146 = DEFINITIONAL_REPRESENTATION('',(#8147),#8150); +#8147 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8148,#8149),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#8148 = CARTESIAN_POINT('',(1.,0.)); +#8149 = CARTESIAN_POINT('',(1.,1.)); +#8150 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8151 = ORIENTED_EDGE('',*,*,#8152,.T.); +#8152 = EDGE_CURVE('',#8132,#8069,#8153,.T.); +#8153 = SURFACE_CURVE('',#8154,(#8170,#8177),.PCURVE_S1.); +#8154 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8155,#8156,#8157,#8158,#8159, + #8160,#8161,#8162,#8163,#8164,#8165,#8166,#8167,#8168,#8169), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0., + 9.379854088557E-02,0.188391653544,0.290002772036,0.402222240451, + 0.463152701044,0.526711567649,0.592953912456,0.664830528427, + 0.740161879456,0.821342102366,0.907899660995,1.),.UNSPECIFIED.); +#8155 = CARTESIAN_POINT('',(0.115625530634,0.166104807242,0.302)); +#8156 = CARTESIAN_POINT('',(0.117272471936,0.166225253916,0.302)); +#8157 = CARTESIAN_POINT('',(0.120580305855,0.166467167572,0.302)); +#8158 = CARTESIAN_POINT('',(0.125341910865,0.168429521933,0.302)); +#8159 = CARTESIAN_POINT('',(0.129843682841,0.171469171897,0.302)); +#8160 = CARTESIAN_POINT('',(0.133167187112,0.174986793086,0.302)); +#8161 = CARTESIAN_POINT('',(0.135693374817,0.178285084711,0.302)); +#8162 = CARTESIAN_POINT('',(0.137231937725,0.18126051157,0.302)); +#8163 = CARTESIAN_POINT('',(0.138678919135,0.184484936833,0.302)); +#8164 = CARTESIAN_POINT('',(0.13976124164,0.188070150162,0.302)); +#8165 = CARTESIAN_POINT('',(0.140657660072,0.191970219252,0.302)); +#8166 = CARTESIAN_POINT('',(0.141232548661,0.196189773595,0.302)); +#8167 = CARTESIAN_POINT('',(0.141686387668,0.200720061932,0.302)); +#8168 = CARTESIAN_POINT('',(0.141701979498,0.203849693061,0.302)); +#8169 = CARTESIAN_POINT('',(0.141710017278,0.20546305632,0.302)); +#8170 = PCURVE('',#552,#8171); +#8171 = DEFINITIONAL_REPRESENTATION('',(#8172),#8176); +#8172 = LINE('',#8173,#8174); +#8173 = CARTESIAN_POINT('',(0.,0.)); +#8174 = VECTOR('',#8175,1.); +#8175 = DIRECTION('',(1.,0.)); +#8176 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8177 = PCURVE('',#7541,#8178); +#8178 = DEFINITIONAL_REPRESENTATION('',(#8179),#8195); +#8179 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8180,#8181,#8182,#8183,#8184, + #8185,#8186,#8187,#8188,#8189,#8190,#8191,#8192,#8193,#8194), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0., + 9.379854088557E-02,0.188391653544,0.290002772036,0.402222240451, + 0.463152701044,0.526711567649,0.592953912456,0.664830528427, + 0.740161879456,0.821342102366,0.907899660995,1.),.UNSPECIFIED.); +#8180 = CARTESIAN_POINT('',(-0.126363346834,2.737355472437E-02)); +#8181 = CARTESIAN_POINT('',(-0.126483793507,2.902049602616E-02)); +#8182 = CARTESIAN_POINT('',(-0.126725707163,3.232832994558E-02)); +#8183 = CARTESIAN_POINT('',(-0.128688061524,3.708993495472E-02)); +#8184 = CARTESIAN_POINT('',(-0.131727711488,4.159170693134E-02)); +#8185 = CARTESIAN_POINT('',(-0.135245332677,4.491521120254E-02)); +#8186 = CARTESIAN_POINT('',(-0.138543624302,4.744139890743E-02)); +#8187 = CARTESIAN_POINT('',(-0.141519051161,4.897996181538E-02)); +#8188 = CARTESIAN_POINT('',(-0.144743476424,5.042694322514E-02)); +#8189 = CARTESIAN_POINT('',(-0.148328689754,5.150926573056E-02)); +#8190 = CARTESIAN_POINT('',(-0.152228758843,5.240568416252E-02)); +#8191 = CARTESIAN_POINT('',(-0.156448313186,5.298057275105E-02)); +#8192 = CARTESIAN_POINT('',(-0.160978601523,5.34344117584E-02)); +#8193 = CARTESIAN_POINT('',(-0.164108232652,5.345000358821E-02)); +#8194 = CARTESIAN_POINT('',(-0.165721595911,5.345804136785E-02)); +#8195 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8196 = ORIENTED_EDGE('',*,*,#8068,.T.); +#8197 = ADVANCED_FACE('',(#8198),#494,.T.); +#8198 = FACE_BOUND('',#8199,.T.); +#8199 = EDGE_LOOP('',(#8200,#8201,#8223,#8248)); +#8200 = ORIENTED_EDGE('',*,*,#474,.F.); +#8201 = ORIENTED_EDGE('',*,*,#8202,.F.); +#8202 = EDGE_CURVE('',#8203,#447,#8205,.T.); +#8203 = VERTEX_POINT('',#8204); +#8204 = CARTESIAN_POINT('',(0.113053096054,0.166464948084,0.302)); +#8205 = SURFACE_CURVE('',#8206,(#8210,#8216),.PCURVE_S1.); +#8206 = LINE('',#8207,#8208); +#8207 = CARTESIAN_POINT('',(0.113053096054,0.166464948084,0.302)); +#8208 = VECTOR('',#8209,1.); +#8209 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#8210 = PCURVE('',#494,#8211); +#8211 = DEFINITIONAL_REPRESENTATION('',(#8212),#8215); +#8212 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8213,#8214),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#8213 = CARTESIAN_POINT('',(0.,0.)); +#8214 = CARTESIAN_POINT('',(0.,1.)); +#8215 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8216 = PCURVE('',#462,#8217); +#8217 = DEFINITIONAL_REPRESENTATION('',(#8218),#8222); +#8218 = LINE('',#8219,#8220); +#8219 = CARTESIAN_POINT('',(-2.968910485262E-02,-4.051559095298E-18)); +#8220 = VECTOR('',#8221,1.); +#8221 = DIRECTION('',(-6.500013562307E-34,-1.)); +#8222 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8223 = ORIENTED_EDGE('',*,*,#8224,.T.); +#8224 = EDGE_CURVE('',#8203,#8132,#8225,.T.); +#8225 = SURFACE_CURVE('',#8226,(#8232,#8239),.PCURVE_S1.); +#8226 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8227,#8228,#8229,#8230,#8231), + .UNSPECIFIED.,.F.,.F.,(4,1,4),(0.,0.562851224941,1.),.UNSPECIFIED.); +#8227 = CARTESIAN_POINT('',(0.113053096054,0.166464948084,0.302)); +#8228 = CARTESIAN_POINT('',(0.1135317099,0.166367496912,0.302)); +#8229 = CARTESIAN_POINT('',(0.114382048007,0.166194358493,0.302)); +#8230 = CARTESIAN_POINT('',(0.115247290805,0.166132046746,0.302)); +#8231 = CARTESIAN_POINT('',(0.115625530634,0.166104807242,0.302)); +#8232 = PCURVE('',#494,#8233); +#8233 = DEFINITIONAL_REPRESENTATION('',(#8234),#8238); +#8234 = LINE('',#8235,#8236); +#8235 = CARTESIAN_POINT('',(0.,0.)); +#8236 = VECTOR('',#8237,1.); +#8237 = DIRECTION('',(1.,0.)); +#8238 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8239 = PCURVE('',#7541,#8240); +#8240 = DEFINITIONAL_REPRESENTATION('',(#8241),#8247); +#8241 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8242,#8243,#8244,#8245,#8246), + .UNSPECIFIED.,.F.,.F.,(4,1,4),(0.,0.562851224941,1.),.UNSPECIFIED.); +#8242 = CARTESIAN_POINT('',(-0.126723487675,2.480112014415E-02)); +#8243 = CARTESIAN_POINT('',(-0.126626036503,2.527973398975E-02)); +#8244 = CARTESIAN_POINT('',(-0.126452898084,2.613007209757E-02)); +#8245 = CARTESIAN_POINT('',(-0.126390586337,2.699531489524E-02)); +#8246 = CARTESIAN_POINT('',(-0.126363346834,2.737355472437E-02)); +#8247 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8248 = ORIENTED_EDGE('',*,*,#8131,.T.); +#8249 = ADVANCED_FACE('',(#8250),#462,.T.); +#8250 = FACE_BOUND('',#8251,.T.); +#8251 = EDGE_LOOP('',(#8252,#8253,#8275,#8296)); +#8252 = ORIENTED_EDGE('',*,*,#446,.F.); +#8253 = ORIENTED_EDGE('',*,*,#8254,.F.); +#8254 = EDGE_CURVE('',#8255,#401,#8257,.T.); +#8255 = VERTEX_POINT('',#8256); +#8256 = CARTESIAN_POINT('',(0.111252391848,0.136830501719,0.302)); +#8257 = SURFACE_CURVE('',#8258,(#8262,#8269),.PCURVE_S1.); +#8258 = LINE('',#8259,#8260); +#8259 = CARTESIAN_POINT('',(0.111252391848,0.136830501719,0.302)); +#8260 = VECTOR('',#8261,1.); +#8261 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#8262 = PCURVE('',#462,#8263); +#8263 = DEFINITIONAL_REPRESENTATION('',(#8264),#8268); +#8264 = LINE('',#8265,#8266); +#8265 = CARTESIAN_POINT('',(-0.,0.)); +#8266 = VECTOR('',#8267,1.); +#8267 = DIRECTION('',(-6.500013562307E-34,-1.)); +#8268 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8269 = PCURVE('',#424,#8270); +#8270 = DEFINITIONAL_REPRESENTATION('',(#8271),#8274); +#8271 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8272,#8273),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#8272 = CARTESIAN_POINT('',(1.,0.)); +#8273 = CARTESIAN_POINT('',(1.,1.)); +#8274 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8275 = ORIENTED_EDGE('',*,*,#8276,.T.); +#8276 = EDGE_CURVE('',#8255,#8203,#8277,.T.); +#8277 = SURFACE_CURVE('',#8278,(#8282,#8289),.PCURVE_S1.); +#8278 = LINE('',#8279,#8280); +#8279 = CARTESIAN_POINT('',(0.111252391848,0.136830501719,0.302)); +#8280 = VECTOR('',#8281,1.); +#8281 = DIRECTION('',(6.065202083714E-02,0.998158971491,1.3646619241E-16 + )); +#8282 = PCURVE('',#462,#8283); +#8283 = DEFINITIONAL_REPRESENTATION('',(#8284),#8288); +#8284 = LINE('',#8285,#8286); +#8285 = CARTESIAN_POINT('',(-0.,0.)); +#8286 = VECTOR('',#8287,1.); +#8287 = DIRECTION('',(-1.,-5.898160454686E-34)); +#8288 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8289 = PCURVE('',#7541,#8290); +#8290 = DEFINITIONAL_REPRESENTATION('',(#8291),#8295); +#8291 = LINE('',#8292,#8293); +#8292 = CARTESIAN_POINT('',(-9.708904131065E-02,2.300041593799E-02)); +#8293 = VECTOR('',#8294,1.); +#8294 = DIRECTION('',(-0.998158971491,6.065202083714E-02)); +#8295 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8296 = ORIENTED_EDGE('',*,*,#8202,.T.); +#8297 = ADVANCED_FACE('',(#8298),#424,.T.); +#8298 = FACE_BOUND('',#8299,.T.); +#8299 = EDGE_LOOP('',(#8300,#8301,#8322,#8351)); +#8300 = ORIENTED_EDGE('',*,*,#400,.F.); +#8301 = ORIENTED_EDGE('',*,*,#8302,.F.); +#8302 = EDGE_CURVE('',#8303,#323,#8305,.T.); +#8303 = VERTEX_POINT('',#8304); +#8304 = CARTESIAN_POINT('',(0.122622552692,0.140329012749,0.302)); +#8305 = SURFACE_CURVE('',#8306,(#8310,#8316),.PCURVE_S1.); +#8306 = LINE('',#8307,#8308); +#8307 = CARTESIAN_POINT('',(0.122622552692,0.140329012749,0.302)); +#8308 = VECTOR('',#8309,1.); +#8309 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#8310 = PCURVE('',#424,#8311); +#8311 = DEFINITIONAL_REPRESENTATION('',(#8312),#8315); +#8312 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8313,#8314),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#8313 = CARTESIAN_POINT('',(0.,0.)); +#8314 = CARTESIAN_POINT('',(0.,1.)); +#8315 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8316 = PCURVE('',#362,#8317); +#8317 = DEFINITIONAL_REPRESENTATION('',(#8318),#8321); +#8318 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8319,#8320),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#8319 = CARTESIAN_POINT('',(1.,0.)); +#8320 = CARTESIAN_POINT('',(1.,1.)); +#8321 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8322 = ORIENTED_EDGE('',*,*,#8323,.T.); +#8323 = EDGE_CURVE('',#8303,#8255,#8324,.T.); +#8324 = SURFACE_CURVE('',#8325,(#8333,#8340),.PCURVE_S1.); +#8325 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8326,#8327,#8328,#8329,#8330, + #8331,#8332),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.,0.202268972619, + 0.436274764953,0.700784457956,1.),.UNSPECIFIED.); +#8326 = CARTESIAN_POINT('',(0.122622552692,0.140329012749,0.302)); +#8327 = CARTESIAN_POINT('',(0.121812575502,0.140287168412,0.302)); +#8328 = CARTESIAN_POINT('',(0.120065532424,0.140196914193,0.302)); +#8329 = CARTESIAN_POINT('',(0.11734777334,0.139452155879,0.302)); +#8330 = CARTESIAN_POINT('',(0.114338363161,0.138385122952,0.302)); +#8331 = CARTESIAN_POINT('',(0.112322419599,0.137369550107,0.302)); +#8332 = CARTESIAN_POINT('',(0.111252391848,0.136830501719,0.302)); +#8333 = PCURVE('',#424,#8334); +#8334 = DEFINITIONAL_REPRESENTATION('',(#8335),#8339); +#8335 = LINE('',#8336,#8337); +#8336 = CARTESIAN_POINT('',(0.,0.)); +#8337 = VECTOR('',#8338,1.); +#8338 = DIRECTION('',(1.,0.)); +#8339 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8340 = PCURVE('',#7541,#8341); +#8341 = DEFINITIONAL_REPRESENTATION('',(#8342),#8350); +#8342 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8343,#8344,#8345,#8346,#8347, + #8348,#8349),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,4),(0.,0.202268972619, + 0.436274764953,0.700784457956,1.),.UNSPECIFIED.); +#8343 = CARTESIAN_POINT('',(-0.10058755234,3.437057678258E-02)); +#8344 = CARTESIAN_POINT('',(-0.100545708003,3.356059959205E-02)); +#8345 = CARTESIAN_POINT('',(-0.100455453785,3.181355651452E-02)); +#8346 = CARTESIAN_POINT('',(-9.971069547022E-02,2.909579743011E-02)); +#8347 = CARTESIAN_POINT('',(-9.864366254308E-02,2.608638725074E-02)); +#8348 = CARTESIAN_POINT('',(-9.762808969854E-02,2.407044368913E-02)); +#8349 = CARTESIAN_POINT('',(-9.708904131065E-02,2.300041593799E-02)); +#8350 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8351 = ORIENTED_EDGE('',*,*,#8254,.T.); +#8352 = ADVANCED_FACE('',(#8353),#362,.T.); +#8353 = FACE_BOUND('',#8354,.T.); +#8354 = EDGE_LOOP('',(#8355,#8356,#8377,#8422)); +#8355 = ORIENTED_EDGE('',*,*,#322,.F.); +#8356 = ORIENTED_EDGE('',*,*,#8357,.F.); +#8357 = EDGE_CURVE('',#8358,#245,#8360,.T.); +#8358 = VERTEX_POINT('',#8359); +#8359 = CARTESIAN_POINT('',(0.148295449803,9.253317824796E-02,0.302)); +#8360 = SURFACE_CURVE('',#8361,(#8365,#8371),.PCURVE_S1.); +#8361 = LINE('',#8362,#8363); +#8362 = CARTESIAN_POINT('',(0.148295449803,9.253317824796E-02,0.302)); +#8363 = VECTOR('',#8364,1.); +#8364 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#8365 = PCURVE('',#362,#8366); +#8366 = DEFINITIONAL_REPRESENTATION('',(#8367),#8370); +#8367 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8368,#8369),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#8368 = CARTESIAN_POINT('',(0.,0.)); +#8369 = CARTESIAN_POINT('',(0.,1.)); +#8370 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8371 = PCURVE('',#284,#8372); +#8372 = DEFINITIONAL_REPRESENTATION('',(#8373),#8376); +#8373 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8374,#8375),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#8374 = CARTESIAN_POINT('',(1.,0.)); +#8375 = CARTESIAN_POINT('',(1.,1.)); +#8376 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8377 = ORIENTED_EDGE('',*,*,#8378,.T.); +#8378 = EDGE_CURVE('',#8358,#8303,#8379,.T.); +#8379 = SURFACE_CURVE('',#8380,(#8396,#8403),.PCURVE_S1.); +#8380 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8381,#8382,#8383,#8384,#8385, + #8386,#8387,#8388,#8389,#8390,#8391,#8392,#8393,#8394,#8395), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.,0.167218280874, + 0.320338966676,0.462287496645,0.594804197661,0.65685341656, + 0.713804069478,0.766491554291,0.81624698513,0.863310073343, + 0.908654710773,0.953999348203,1.),.UNSPECIFIED.); +#8381 = CARTESIAN_POINT('',(0.148295449803,9.253317824796E-02,0.302)); +#8382 = CARTESIAN_POINT('',(0.148210787884,9.584806670104E-02,0.302)); +#8383 = CARTESIAN_POINT('',(0.148048601601,0.102198376824,0.302)); +#8384 = CARTESIAN_POINT('',(0.146707389096,0.111282834249,0.302)); +#8385 = CARTESIAN_POINT('',(0.14449699858,0.119491199434,0.302)); +#8386 = CARTESIAN_POINT('',(0.141761615503,0.125597979613,0.302)); +#8387 = CARTESIAN_POINT('',(0.139305739012,0.129942816573,0.302)); +#8388 = CARTESIAN_POINT('',(0.137274202193,0.132680105907,0.302)); +#8389 = CARTESIAN_POINT('',(0.135166012471,0.135041055005,0.302)); +#8390 = CARTESIAN_POINT('',(0.13289013485,0.136953823277,0.302)); +#8391 = CARTESIAN_POINT('',(0.130504993201,0.138467578871,0.302)); +#8392 = CARTESIAN_POINT('',(0.128001855009,0.139586867053,0.302)); +#8393 = CARTESIAN_POINT('',(0.125345363678,0.140208977662,0.302)); +#8394 = CARTESIAN_POINT('',(0.123534491401,0.140288809942,0.302)); +#8395 = CARTESIAN_POINT('',(0.122622552692,0.140329012749,0.302)); +#8396 = PCURVE('',#362,#8397); +#8397 = DEFINITIONAL_REPRESENTATION('',(#8398),#8402); +#8398 = LINE('',#8399,#8400); +#8399 = CARTESIAN_POINT('',(0.,0.)); +#8400 = VECTOR('',#8401,1.); +#8401 = DIRECTION('',(1.,0.)); +#8402 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8403 = PCURVE('',#7541,#8404); +#8404 = DEFINITIONAL_REPRESENTATION('',(#8405),#8421); +#8405 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8406,#8407,#8408,#8409,#8410, + #8411,#8412,#8413,#8414,#8415,#8416,#8417,#8418,#8419,#8420), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0.,0.167218280874, + 0.320338966676,0.462287496645,0.594804197661,0.65685341656, + 0.713804069478,0.766491554291,0.81624698513,0.863310073343, + 0.908654710773,0.953999348203,1.),.UNSPECIFIED.); +#8406 = CARTESIAN_POINT('',(-5.279171783919E-02,6.004347389322E-02)); +#8407 = CARTESIAN_POINT('',(-5.610660629228E-02,5.995881197453E-02)); +#8408 = CARTESIAN_POINT('',(-6.245691641479E-02,5.979662569079E-02)); +#8409 = CARTESIAN_POINT('',(-7.154137384046E-02,5.845541318633E-02)); +#8410 = CARTESIAN_POINT('',(-7.974973902502E-02,5.624502267058E-02)); +#8411 = CARTESIAN_POINT('',(-8.58565192041E-02,5.350963959296E-02)); +#8412 = CARTESIAN_POINT('',(-9.020135616414E-02,5.105376310254E-02)); +#8413 = CARTESIAN_POINT('',(-9.293864549848E-02,4.902222628357E-02)); +#8414 = CARTESIAN_POINT('',(-9.52995945962E-02,4.691403656139E-02)); +#8415 = CARTESIAN_POINT('',(-9.721236286834E-02,4.463815893994E-02)); +#8416 = CARTESIAN_POINT('',(-9.872611846184E-02,4.225301729083E-02)); +#8417 = CARTESIAN_POINT('',(-9.984540664469E-02,3.97498790994E-02)); +#8418 = CARTESIAN_POINT('',(-0.100467517253,3.709338776866E-02)); +#8419 = CARTESIAN_POINT('',(-0.100547349534,3.528251549111E-02)); +#8420 = CARTESIAN_POINT('',(-0.10058755234,3.437057678258E-02)); +#8421 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8422 = ORIENTED_EDGE('',*,*,#8302,.T.); +#8423 = ADVANCED_FACE('',(#8424),#284,.T.); +#8424 = FACE_BOUND('',#8425,.T.); +#8425 = EDGE_LOOP('',(#8426,#8427,#8448,#8493)); +#8426 = ORIENTED_EDGE('',*,*,#244,.F.); +#8427 = ORIENTED_EDGE('',*,*,#8428,.F.); +#8428 = EDGE_CURVE('',#8429,#151,#8431,.T.); +#8429 = VERTEX_POINT('',#8430); +#8430 = CARTESIAN_POINT('',(0.121284886711,4.13417301015E-02,0.302)); +#8431 = SURFACE_CURVE('',#8432,(#8436,#8442),.PCURVE_S1.); +#8432 = LINE('',#8433,#8434); +#8433 = CARTESIAN_POINT('',(0.121284886711,4.13417301015E-02,0.302)); +#8434 = VECTOR('',#8435,1.); +#8435 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#8436 = PCURVE('',#284,#8437); +#8437 = DEFINITIONAL_REPRESENTATION('',(#8438),#8441); +#8438 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8439,#8440),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#8439 = CARTESIAN_POINT('',(0.,0.)); +#8440 = CARTESIAN_POINT('',(0.,1.)); +#8441 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8442 = PCURVE('',#198,#8443); +#8443 = DEFINITIONAL_REPRESENTATION('',(#8444),#8447); +#8444 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8445,#8446),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#8445 = CARTESIAN_POINT('',(1.,0.)); +#8446 = CARTESIAN_POINT('',(1.,1.)); +#8447 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8448 = ORIENTED_EDGE('',*,*,#8449,.T.); +#8449 = EDGE_CURVE('',#8429,#8358,#8450,.T.); +#8450 = SURFACE_CURVE('',#8451,(#8467,#8474),.PCURVE_S1.); +#8451 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8452,#8453,#8454,#8455,#8456, + #8457,#8458,#8459,#8460,#8461,#8462,#8463,#8464,#8465,#8466), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0., + 4.93101218056E-02,9.743831139595E-02,0.144472535587,0.193038110235, + 0.242820989692,0.295406850972,0.351784480369,0.413136124838, + 0.544950472915,0.684634992183,0.836126946877,1.),.UNSPECIFIED.); +#8452 = CARTESIAN_POINT('',(0.121284886711,4.13417301015E-02,0.302)); +#8453 = CARTESIAN_POINT('',(0.122336056738,4.137057674468E-02,0.302)); +#8454 = CARTESIAN_POINT('',(0.124413200916,4.142757859539E-02,0.302)); +#8455 = CARTESIAN_POINT('',(0.127405345822,4.220252447435E-02,0.302)); +#8456 = CARTESIAN_POINT('',(0.13025971214,4.332430696126E-02,0.302)); +#8457 = CARTESIAN_POINT('',(0.132871823768,4.500762147459E-02,0.302)); +#8458 = CARTESIAN_POINT('',(0.135328422966,4.708568576713E-02,0.302)); +#8459 = CARTESIAN_POINT('',(0.137549434903,4.964433445327E-02,0.302)); +#8460 = CARTESIAN_POINT('',(0.139552396567,5.266963746697E-02,0.302)); +#8461 = CARTESIAN_POINT('',(0.142046902581,5.735839433306E-02,0.302)); +#8462 = CARTESIAN_POINT('',(0.14462069159,6.398153661176E-02,0.302)); +#8463 = CARTESIAN_POINT('',(0.146738220012,7.273753671046E-02,0.302)); +#8464 = CARTESIAN_POINT('',(0.148113631722,8.233722895259E-02,0.302)); +#8465 = CARTESIAN_POINT('',(0.148233278022,8.904672448583E-02,0.302)); +#8466 = CARTESIAN_POINT('',(0.148295449803,9.253317824796E-02,0.302)); +#8467 = PCURVE('',#284,#8468); +#8468 = DEFINITIONAL_REPRESENTATION('',(#8469),#8473); +#8469 = LINE('',#8470,#8471); +#8470 = CARTESIAN_POINT('',(0.,0.)); +#8471 = VECTOR('',#8472,1.); +#8472 = DIRECTION('',(1.,0.)); +#8473 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8474 = PCURVE('',#7541,#8475); +#8475 = DEFINITIONAL_REPRESENTATION('',(#8476),#8492); +#8476 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8477,#8478,#8479,#8480,#8481, + #8482,#8483,#8484,#8485,#8486,#8487,#8488,#8489,#8490,#8491), + .UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,4),(0., + 4.93101218056E-02,9.743831139595E-02,0.144472535587,0.193038110235, + 0.242820989692,0.295406850972,0.351784480369,0.413136124838, + 0.544950472915,0.684634992183,0.836126946877,1.),.UNSPECIFIED.); +#8477 = CARTESIAN_POINT('',(-1.60026969273E-03,3.303291080087E-02)); +#8478 = CARTESIAN_POINT('',(-1.629116335917E-03,3.408408082788E-02)); +#8479 = CARTESIAN_POINT('',(-1.686118186627E-03,3.616122500582E-02)); +#8480 = CARTESIAN_POINT('',(-2.46106406558E-03,3.915336991204E-02)); +#8481 = CARTESIAN_POINT('',(-3.582846552492E-03,4.200773622979E-02)); +#8482 = CARTESIAN_POINT('',(-5.266161065826E-03,4.461984785775E-02)); +#8483 = CARTESIAN_POINT('',(-7.344225358365E-03,4.707644705624E-02)); +#8484 = CARTESIAN_POINT('',(-9.9028740445E-03,4.929745899316E-02)); +#8485 = CARTESIAN_POINT('',(-1.292817705821E-02,5.130042065694E-02)); +#8486 = CARTESIAN_POINT('',(-1.76169339243E-02,5.379492667158E-02)); +#8487 = CARTESIAN_POINT('',(-2.4240076203E-02,5.636871567998E-02)); +#8488 = CARTESIAN_POINT('',(-3.29960763017E-02,5.848624410208E-02)); +#8489 = CARTESIAN_POINT('',(-4.259576854382E-02,5.986165581251E-02)); +#8490 = CARTESIAN_POINT('',(-4.930526407706E-02,5.998130211174E-02)); +#8491 = CARTESIAN_POINT('',(-5.279171783919E-02,6.004347389322E-02)); +#8492 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8493 = ORIENTED_EDGE('',*,*,#8357,.T.); +#8494 = ADVANCED_FACE('',(#8495),#198,.T.); +#8495 = FACE_BOUND('',#8496,.T.); +#8496 = EDGE_LOOP('',(#8497,#8498,#8520,#8573)); +#8497 = ORIENTED_EDGE('',*,*,#150,.F.); +#8498 = ORIENTED_EDGE('',*,*,#8499,.F.); +#8499 = EDGE_CURVE('',#8500,#123,#8502,.T.); +#8500 = VERTEX_POINT('',#8501); +#8501 = CARTESIAN_POINT('',(9.561198960003E-02,8.743975777911E-02,0.302) + ); +#8502 = SURFACE_CURVE('',#8503,(#8507,#8513),.PCURVE_S1.); +#8503 = LINE('',#8504,#8505); +#8504 = CARTESIAN_POINT('',(9.561198960003E-02,8.743975777911E-02,0.302) + ); +#8505 = VECTOR('',#8506,1.); +#8506 = DIRECTION('',(-0.,1.367178939504E-16,-1.)); +#8507 = PCURVE('',#198,#8508); +#8508 = DEFINITIONAL_REPRESENTATION('',(#8509),#8512); +#8509 = B_SPLINE_CURVE_WITH_KNOTS('',1,(#8510,#8511),.UNSPECIFIED.,.F., + .F.,(2,2),(-0.,2.E-03),.PIECEWISE_BEZIER_KNOTS.); +#8510 = CARTESIAN_POINT('',(0.,0.)); +#8511 = CARTESIAN_POINT('',(0.,1.)); +#8512 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8513 = PCURVE('',#138,#8514); +#8514 = DEFINITIONAL_REPRESENTATION('',(#8515),#8519); +#8515 = LINE('',#8516,#8517); +#8516 = CARTESIAN_POINT('',(-1.678962447617E-02,-4.501732328109E-19)); +#8517 = VECTOR('',#8518,1.); +#8518 = DIRECTION('',(1.077317062642E-33,-1.)); +#8519 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8520 = ORIENTED_EDGE('',*,*,#8521,.T.); +#8521 = EDGE_CURVE('',#8500,#8429,#8522,.T.); +#8522 = SURFACE_CURVE('',#8523,(#8543,#8550),.PCURVE_S1.); +#8523 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8524,#8525,#8526,#8527,#8528, + #8529,#8530,#8531,#8532,#8533,#8534,#8535,#8536,#8537,#8538,#8539, + #8540,#8541,#8542),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,0.103069259507,0.198581093589,0.288104012431, + 0.369260730991,0.444795013232,0.512889413837,0.575173782836, + 0.631287508826,0.682403817013,0.731174513293,0.776469925506, + 0.82042617274,0.863811476537,0.908277975275,0.952771167262,1.), + .UNSPECIFIED.); +#8524 = CARTESIAN_POINT('',(9.561198960003E-02,8.743975777911E-02,0.302) + ); +#8525 = CARTESIAN_POINT('',(9.58331660904E-02,8.546491820448E-02,0.302) + ); +#8526 = CARTESIAN_POINT('',(9.625930157972E-02,8.166004171398E-02,0.302) + ); +#8527 = CARTESIAN_POINT('',(9.718318549401E-02,7.618252689124E-02,0.302) + ); +#8528 = CARTESIAN_POINT('',(9.806114316162E-02,7.112665692875E-02,0.302) + ); +#8529 = CARTESIAN_POINT('',(9.910517892659E-02,6.649438780876E-02,0.302) + ); +#8530 = CARTESIAN_POINT('',(0.100234444179,6.231145522484E-02,0.302)); +#8531 = CARTESIAN_POINT('',(0.101382941481,5.850791139631E-02,0.302)); +#8532 = CARTESIAN_POINT('',(0.10274714875,5.517900986752E-02,0.302)); +#8533 = CARTESIAN_POINT('',(0.104103663994,5.220318259453E-02,0.302)); +#8534 = CARTESIAN_POINT('',(0.105672205288,4.962663458115E-02,0.302)); +#8535 = CARTESIAN_POINT('',(0.10741831521,4.743453940787E-02,0.302)); +#8536 = CARTESIAN_POINT('',(0.109277678164,4.551763073201E-02,0.302)); +#8537 = CARTESIAN_POINT('',(0.111370712665,4.403031641049E-02,0.302)); +#8538 = CARTESIAN_POINT('',(0.113611633956,4.281801636844E-02,0.302)); +#8539 = CARTESIAN_POINT('',(0.116020922513,4.195428509365E-02,0.302)); +#8540 = CARTESIAN_POINT('',(0.118602406096,4.140923332536E-02,0.302)); +#8541 = CARTESIAN_POINT('',(0.120373122432,4.136467417343E-02,0.302)); +#8542 = CARTESIAN_POINT('',(0.121284886711,4.13417301015E-02,0.302)); +#8543 = PCURVE('',#198,#8544); +#8544 = DEFINITIONAL_REPRESENTATION('',(#8545),#8549); +#8545 = LINE('',#8546,#8547); +#8546 = CARTESIAN_POINT('',(0.,0.)); +#8547 = VECTOR('',#8548,1.); +#8548 = DIRECTION('',(1.,0.)); +#8549 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8550 = PCURVE('',#7541,#8551); +#8551 = DEFINITIONAL_REPRESENTATION('',(#8552),#8572); +#8552 = B_SPLINE_CURVE_WITH_KNOTS('',3,(#8553,#8554,#8555,#8556,#8557, + #8558,#8559,#8560,#8561,#8562,#8563,#8564,#8565,#8566,#8567,#8568, + #8569,#8570,#8571),.UNSPECIFIED.,.F.,.F.,(4,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,4),(0.,0.103069259507,0.198581093589,0.288104012431, + 0.369260730991,0.444795013232,0.512889413837,0.575173782836, + 0.631287508826,0.682403817013,0.731174513293,0.776469925506, + 0.82042617274,0.863811476537,0.908277975275,0.952771167262,1.), + .UNSPECIFIED.); +#8553 = CARTESIAN_POINT('',(-4.769829737035E-02,7.360013690228E-03)); +#8554 = CARTESIAN_POINT('',(-4.572345779571E-02,7.5811901806E-03)); +#8555 = CARTESIAN_POINT('',(-4.191858130521E-02,8.007325669922E-03)); +#8556 = CARTESIAN_POINT('',(-3.644106648248E-02,8.93120958421E-03)); +#8557 = CARTESIAN_POINT('',(-3.138519651999E-02,9.809167251822E-03)); +#8558 = CARTESIAN_POINT('',(-2.675292739999E-02,1.085320301679E-02)); +#8559 = CARTESIAN_POINT('',(-2.256999481607E-02,1.198246826911E-02)); +#8560 = CARTESIAN_POINT('',(-1.876645098755E-02,1.313096557169E-02)); +#8561 = CARTESIAN_POINT('',(-1.543754945876E-02,1.449517284001E-02)); +#8562 = CARTESIAN_POINT('',(-1.246172218576E-02,1.585168808456E-02)); +#8563 = CARTESIAN_POINT('',(-9.885174172383E-03,1.742022937803E-02)); +#8564 = CARTESIAN_POINT('',(-7.693078999106E-03,1.916633929972E-02)); +#8565 = CARTESIAN_POINT('',(-5.776170323245E-03,2.102570225436E-02)); +#8566 = CARTESIAN_POINT('',(-4.28885600172E-03,2.31187367556E-02)); +#8567 = CARTESIAN_POINT('',(-3.076555959672E-03,2.535965804577E-02)); +#8568 = CARTESIAN_POINT('',(-2.212824684885E-03,2.77689466036E-02)); +#8569 = CARTESIAN_POINT('',(-1.667772916597E-03,3.035043018582E-02)); +#8570 = CARTESIAN_POINT('',(-1.623213764667E-03,3.212114652244E-02)); +#8571 = CARTESIAN_POINT('',(-1.60026969273E-03,3.303291080087E-02)); +#8572 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8573 = ORIENTED_EDGE('',*,*,#8428,.T.); +#8574 = ADVANCED_FACE('',(#8575),#138,.T.); +#8575 = FACE_BOUND('',#8576,.T.); +#8576 = EDGE_LOOP('',(#8577,#8578,#8579,#8600)); +#8577 = ORIENTED_EDGE('',*,*,#122,.F.); +#8578 = ORIENTED_EDGE('',*,*,#7569,.F.); +#8579 = ORIENTED_EDGE('',*,*,#8580,.T.); +#8580 = EDGE_CURVE('',#7510,#8500,#8581,.T.); +#8581 = SURFACE_CURVE('',#8582,(#8586,#8593),.PCURVE_S1.); +#8582 = LINE('',#8583,#8584); +#8583 = CARTESIAN_POINT('',(7.914840828659E-02,8.414704151643E-02,0.302) + ); +#8584 = VECTOR('',#8585,1.); +#8585 = DIRECTION('',(0.980580675691,0.196116135138,2.681258496579E-17) + ); +#8586 = PCURVE('',#138,#8587); +#8587 = DEFINITIONAL_REPRESENTATION('',(#8588),#8592); +#8588 = LINE('',#8589,#8590); +#8589 = CARTESIAN_POINT('',(-0.,0.)); +#8590 = VECTOR('',#8591,1.); +#8591 = DIRECTION('',(-1.,1.355674124916E-33)); +#8592 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8593 = PCURVE('',#7541,#8594); +#8594 = DEFINITIONAL_REPRESENTATION('',(#8595),#8599); +#8595 = LINE('',#8596,#8597); +#8596 = CARTESIAN_POINT('',(-4.440558110766E-02,-9.103567623207E-03)); +#8597 = VECTOR('',#8598,1.); +#8598 = DIRECTION('',(-0.196116135138,0.980580675691)); +#8599 = ( GEOMETRIC_REPRESENTATION_CONTEXT(2) +PARAMETRIC_REPRESENTATION_CONTEXT() REPRESENTATION_CONTEXT('2D SPACE','' + ) ); +#8600 = ORIENTED_EDGE('',*,*,#8499,.T.); +#8601 = ADVANCED_FACE('',(#8602),#7541,.T.); +#8602 = FACE_BOUND('',#8603,.T.); +#8603 = EDGE_LOOP('',(#8604,#8605,#8606,#8607,#8608,#8609,#8610,#8611, + #8612,#8613,#8614,#8615,#8616,#8617,#8618,#8619,#8620)); +#8604 = ORIENTED_EDGE('',*,*,#7509,.F.); +#8605 = ORIENTED_EDGE('',*,*,#7614,.F.); +#8606 = ORIENTED_EDGE('',*,*,#7693,.F.); +#8607 = ORIENTED_EDGE('',*,*,#7764,.F.); +#8608 = ORIENTED_EDGE('',*,*,#7827,.F.); +#8609 = ORIENTED_EDGE('',*,*,#7899,.F.); +#8610 = ORIENTED_EDGE('',*,*,#7979,.F.); +#8611 = ORIENTED_EDGE('',*,*,#8026,.F.); +#8612 = ORIENTED_EDGE('',*,*,#8089,.F.); +#8613 = ORIENTED_EDGE('',*,*,#8152,.F.); +#8614 = ORIENTED_EDGE('',*,*,#8224,.F.); +#8615 = ORIENTED_EDGE('',*,*,#8276,.F.); +#8616 = ORIENTED_EDGE('',*,*,#8323,.F.); +#8617 = ORIENTED_EDGE('',*,*,#8378,.F.); +#8618 = ORIENTED_EDGE('',*,*,#8449,.F.); +#8619 = ORIENTED_EDGE('',*,*,#8521,.F.); +#8620 = ORIENTED_EDGE('',*,*,#8580,.F.); +#8621 = ( GEOMETRIC_REPRESENTATION_CONTEXT(3) +GLOBAL_UNCERTAINTY_ASSIGNED_CONTEXT((#8625)) +GLOBAL_UNIT_ASSIGNED_CONTEXT((#8622,#8623,#8624)) REPRESENTATION_CONTEXT +('Context #1','3D Context with UNIT and UNCERTAINTY') ); +#8622 = ( LENGTH_UNIT() NAMED_UNIT(*) SI_UNIT(.MILLI.,.METRE.) ); +#8623 = ( NAMED_UNIT(*) PLANE_ANGLE_UNIT() SI_UNIT($,.RADIAN.) ); +#8624 = ( NAMED_UNIT(*) SI_UNIT($,.STERADIAN.) SOLID_ANGLE_UNIT() ); +#8625 = UNCERTAINTY_MEASURE_WITH_UNIT(LENGTH_MEASURE(1.E-07),#8622, + 'distance_accuracy_value','confusion accuracy'); +#8626 = PRODUCT_TYPE('part',$,(#7)); +#8627 = MECHANICAL_DESIGN_GEOMETRIC_PRESENTATION_REPRESENTATION('',( + #8628,#8636,#8644,#8651,#8658,#8665,#8672,#8679,#8686,#8693,#8700, + #8707,#8714,#8721,#8728,#8735,#8742,#8749,#8756,#8763,#8770,#8777, + #8784,#8791,#8798,#8805,#8812,#8819,#8826,#8833,#8840,#8847,#8854, + #8861,#8868,#8875,#8882,#8889,#8896,#8903,#8910,#8917,#8924,#8931, + #8938,#8945,#8952,#8959,#8966,#8973,#8980,#8987,#8994,#9001,#9008, + #9015,#9022,#9029,#9036,#9043,#9050,#9057,#9064,#9071,#9078,#9085, + #9092,#9099,#9106,#9113,#9120,#9127,#9134,#9141,#9148,#9155,#9162, + #9169,#9176,#9183,#9190,#9197,#9204,#9211,#9218,#9225,#9232,#9239, + #9246,#9253),#8621); +#8628 = STYLED_ITEM('color',(#8629),#17); +#8629 = PRESENTATION_STYLE_ASSIGNMENT((#8630)); +#8630 = SURFACE_STYLE_USAGE(.BOTH.,#8631); +#8631 = SURFACE_SIDE_STYLE('',(#8632)); +#8632 = SURFACE_STYLE_FILL_AREA(#8633); +#8633 = FILL_AREA_STYLE('',(#8634)); +#8634 = FILL_AREA_STYLE_COLOUR('',#8635); +#8635 = COLOUR_RGB('',0.909803926945,0.443137258291,3.137255087495E-02); +#8636 = STYLED_ITEM('color',(#8637),#2553); +#8637 = PRESENTATION_STYLE_ASSIGNMENT((#8638)); +#8638 = SURFACE_STYLE_USAGE(.BOTH.,#8639); +#8639 = SURFACE_SIDE_STYLE('',(#8640)); +#8640 = SURFACE_STYLE_FILL_AREA(#8641); +#8641 = FILL_AREA_STYLE('',(#8642)); +#8642 = FILL_AREA_STYLE_COLOUR('',#8643); +#8643 = DRAUGHTING_PRE_DEFINED_COLOUR('white'); +#8644 = STYLED_ITEM('color',(#8645),#2670); +#8645 = PRESENTATION_STYLE_ASSIGNMENT((#8646)); +#8646 = SURFACE_STYLE_USAGE(.BOTH.,#8647); +#8647 = SURFACE_SIDE_STYLE('',(#8648)); +#8648 = SURFACE_STYLE_FILL_AREA(#8649); +#8649 = FILL_AREA_STYLE('',(#8650)); +#8650 = FILL_AREA_STYLE_COLOUR('',#8643); +#8651 = STYLED_ITEM('color',(#8652),#2782); +#8652 = PRESENTATION_STYLE_ASSIGNMENT((#8653)); +#8653 = SURFACE_STYLE_USAGE(.BOTH.,#8654); +#8654 = SURFACE_SIDE_STYLE('',(#8655)); +#8655 = SURFACE_STYLE_FILL_AREA(#8656); +#8656 = FILL_AREA_STYLE('',(#8657)); +#8657 = FILL_AREA_STYLE_COLOUR('',#8643); +#8658 = STYLED_ITEM('color',(#8659),#2860); +#8659 = PRESENTATION_STYLE_ASSIGNMENT((#8660)); +#8660 = SURFACE_STYLE_USAGE(.BOTH.,#8661); +#8661 = SURFACE_SIDE_STYLE('',(#8662)); +#8662 = SURFACE_STYLE_FILL_AREA(#8663); +#8663 = FILL_AREA_STYLE('',(#8664)); +#8664 = FILL_AREA_STYLE_COLOUR('',#8643); +#8665 = STYLED_ITEM('color',(#8666),#2938); +#8666 = PRESENTATION_STYLE_ASSIGNMENT((#8667)); +#8667 = SURFACE_STYLE_USAGE(.BOTH.,#8668); +#8668 = SURFACE_SIDE_STYLE('',(#8669)); +#8669 = SURFACE_STYLE_FILL_AREA(#8670); +#8670 = FILL_AREA_STYLE('',(#8671)); +#8671 = FILL_AREA_STYLE_COLOUR('',#8643); +#8672 = STYLED_ITEM('color',(#8673),#2988); +#8673 = PRESENTATION_STYLE_ASSIGNMENT((#8674)); +#8674 = SURFACE_STYLE_USAGE(.BOTH.,#8675); +#8675 = SURFACE_SIDE_STYLE('',(#8676)); +#8676 = SURFACE_STYLE_FILL_AREA(#8677); +#8677 = FILL_AREA_STYLE('',(#8678)); +#8678 = FILL_AREA_STYLE_COLOUR('',#8643); +#8679 = STYLED_ITEM('color',(#8680),#3038); +#8680 = PRESENTATION_STYLE_ASSIGNMENT((#8681)); +#8681 = SURFACE_STYLE_USAGE(.BOTH.,#8682); +#8682 = SURFACE_SIDE_STYLE('',(#8683)); +#8683 = SURFACE_STYLE_FILL_AREA(#8684); +#8684 = FILL_AREA_STYLE('',(#8685)); +#8685 = FILL_AREA_STYLE_COLOUR('',#8643); +#8686 = STYLED_ITEM('color',(#8687),#3121); +#8687 = PRESENTATION_STYLE_ASSIGNMENT((#8688)); +#8688 = SURFACE_STYLE_USAGE(.BOTH.,#8689); +#8689 = SURFACE_SIDE_STYLE('',(#8690)); +#8690 = SURFACE_STYLE_FILL_AREA(#8691); +#8691 = FILL_AREA_STYLE('',(#8692)); +#8692 = FILL_AREA_STYLE_COLOUR('',#8643); +#8693 = STYLED_ITEM('color',(#8694),#3199); +#8694 = PRESENTATION_STYLE_ASSIGNMENT((#8695)); +#8695 = SURFACE_STYLE_USAGE(.BOTH.,#8696); +#8696 = SURFACE_SIDE_STYLE('',(#8697)); +#8697 = SURFACE_STYLE_FILL_AREA(#8698); +#8698 = FILL_AREA_STYLE('',(#8699)); +#8699 = FILL_AREA_STYLE_COLOUR('',#8643); +#8700 = STYLED_ITEM('color',(#8701),#3310); +#8701 = PRESENTATION_STYLE_ASSIGNMENT((#8702)); +#8702 = SURFACE_STYLE_USAGE(.BOTH.,#8703); +#8703 = SURFACE_SIDE_STYLE('',(#8704)); +#8704 = SURFACE_STYLE_FILL_AREA(#8705); +#8705 = FILL_AREA_STYLE('',(#8706)); +#8706 = FILL_AREA_STYLE_COLOUR('',#8643); +#8707 = STYLED_ITEM('color',(#8708),#3416); +#8708 = PRESENTATION_STYLE_ASSIGNMENT((#8709)); +#8709 = SURFACE_STYLE_USAGE(.BOTH.,#8710); +#8710 = SURFACE_SIDE_STYLE('',(#8711)); +#8711 = SURFACE_STYLE_FILL_AREA(#8712); +#8712 = FILL_AREA_STYLE('',(#8713)); +#8713 = FILL_AREA_STYLE_COLOUR('',#8643); +#8714 = STYLED_ITEM('color',(#8715),#3495); +#8715 = PRESENTATION_STYLE_ASSIGNMENT((#8716)); +#8716 = SURFACE_STYLE_USAGE(.BOTH.,#8717); +#8717 = SURFACE_SIDE_STYLE('',(#8718)); +#8718 = SURFACE_STYLE_FILL_AREA(#8719); +#8719 = FILL_AREA_STYLE('',(#8720)); +#8720 = FILL_AREA_STYLE_COLOUR('',#8643); +#8721 = STYLED_ITEM('color',(#8722),#3569); +#8722 = PRESENTATION_STYLE_ASSIGNMENT((#8723)); +#8723 = SURFACE_STYLE_USAGE(.BOTH.,#8724); +#8724 = SURFACE_SIDE_STYLE('',(#8725)); +#8725 = SURFACE_STYLE_FILL_AREA(#8726); +#8726 = FILL_AREA_STYLE('',(#8727)); +#8727 = FILL_AREA_STYLE_COLOUR('',#8643); +#8728 = STYLED_ITEM('color',(#8729),#3625); +#8729 = PRESENTATION_STYLE_ASSIGNMENT((#8730)); +#8730 = SURFACE_STYLE_USAGE(.BOTH.,#8731); +#8731 = SURFACE_SIDE_STYLE('',(#8732)); +#8732 = SURFACE_STYLE_FILL_AREA(#8733); +#8733 = FILL_AREA_STYLE('',(#8734)); +#8734 = FILL_AREA_STYLE_COLOUR('',#8643); +#8735 = STYLED_ITEM('color',(#8736),#3676); +#8736 = PRESENTATION_STYLE_ASSIGNMENT((#8737)); +#8737 = SURFACE_STYLE_USAGE(.BOTH.,#8738); +#8738 = SURFACE_SIDE_STYLE('',(#8739)); +#8739 = SURFACE_STYLE_FILL_AREA(#8740); +#8740 = FILL_AREA_STYLE('',(#8741)); +#8741 = FILL_AREA_STYLE_COLOUR('',#8643); +#8742 = STYLED_ITEM('color',(#8743),#3726); +#8743 = PRESENTATION_STYLE_ASSIGNMENT((#8744)); +#8744 = SURFACE_STYLE_USAGE(.BOTH.,#8745); +#8745 = SURFACE_SIDE_STYLE('',(#8746)); +#8746 = SURFACE_STYLE_FILL_AREA(#8747); +#8747 = FILL_AREA_STYLE('',(#8748)); +#8748 = FILL_AREA_STYLE_COLOUR('',#8643); +#8749 = STYLED_ITEM('color',(#8750),#3776); +#8750 = PRESENTATION_STYLE_ASSIGNMENT((#8751)); +#8751 = SURFACE_STYLE_USAGE(.BOTH.,#8752); +#8752 = SURFACE_SIDE_STYLE('',(#8753)); +#8753 = SURFACE_STYLE_FILL_AREA(#8754); +#8754 = FILL_AREA_STYLE('',(#8755)); +#8755 = FILL_AREA_STYLE_COLOUR('',#8643); +#8756 = STYLED_ITEM('color',(#8757),#3872); +#8757 = PRESENTATION_STYLE_ASSIGNMENT((#8758)); +#8758 = SURFACE_STYLE_USAGE(.BOTH.,#8759); +#8759 = SURFACE_SIDE_STYLE('',(#8760)); +#8760 = SURFACE_STYLE_FILL_AREA(#8761); +#8761 = FILL_AREA_STYLE('',(#8762)); +#8762 = FILL_AREA_STYLE_COLOUR('',#8635); +#8763 = STYLED_ITEM('color',(#8764),#3917); +#8764 = PRESENTATION_STYLE_ASSIGNMENT((#8765)); +#8765 = SURFACE_STYLE_USAGE(.BOTH.,#8766); +#8766 = SURFACE_SIDE_STYLE('',(#8767)); +#8767 = SURFACE_STYLE_FILL_AREA(#8768); +#8768 = FILL_AREA_STYLE('',(#8769)); +#8769 = FILL_AREA_STYLE_COLOUR('',#8643); +#8770 = STYLED_ITEM('color',(#8771),#4013); +#8771 = PRESENTATION_STYLE_ASSIGNMENT((#8772)); +#8772 = SURFACE_STYLE_USAGE(.BOTH.,#8773); +#8773 = SURFACE_SIDE_STYLE('',(#8774)); +#8774 = SURFACE_STYLE_FILL_AREA(#8775); +#8775 = FILL_AREA_STYLE('',(#8776)); +#8776 = FILL_AREA_STYLE_COLOUR('',#8635); +#8777 = STYLED_ITEM('color',(#8778),#4058); +#8778 = PRESENTATION_STYLE_ASSIGNMENT((#8779)); +#8779 = SURFACE_STYLE_USAGE(.BOTH.,#8780); +#8780 = SURFACE_SIDE_STYLE('',(#8781)); +#8781 = SURFACE_STYLE_FILL_AREA(#8782); +#8782 = FILL_AREA_STYLE('',(#8783)); +#8783 = FILL_AREA_STYLE_COLOUR('',#8635); +#8784 = STYLED_ITEM('color',(#8785),#4103); +#8785 = PRESENTATION_STYLE_ASSIGNMENT((#8786)); +#8786 = SURFACE_STYLE_USAGE(.BOTH.,#8787); +#8787 = SURFACE_SIDE_STYLE('',(#8788)); +#8788 = SURFACE_STYLE_FILL_AREA(#8789); +#8789 = FILL_AREA_STYLE('',(#8790)); +#8790 = FILL_AREA_STYLE_COLOUR('',#8643); +#8791 = STYLED_ITEM('color',(#8792),#4194); +#8792 = PRESENTATION_STYLE_ASSIGNMENT((#8793)); +#8793 = SURFACE_STYLE_USAGE(.BOTH.,#8794); +#8794 = SURFACE_SIDE_STYLE('',(#8795)); +#8795 = SURFACE_STYLE_FILL_AREA(#8796); +#8796 = FILL_AREA_STYLE('',(#8797)); +#8797 = FILL_AREA_STYLE_COLOUR('',#8643); +#8798 = STYLED_ITEM('color',(#8799),#4265); +#8799 = PRESENTATION_STYLE_ASSIGNMENT((#8800)); +#8800 = SURFACE_STYLE_USAGE(.BOTH.,#8801); +#8801 = SURFACE_SIDE_STYLE('',(#8802)); +#8802 = SURFACE_STYLE_FILL_AREA(#8803); +#8803 = FILL_AREA_STYLE('',(#8804)); +#8804 = FILL_AREA_STYLE_COLOUR('',#8643); +#8805 = STYLED_ITEM('color',(#8806),#4336); +#8806 = PRESENTATION_STYLE_ASSIGNMENT((#8807)); +#8807 = SURFACE_STYLE_USAGE(.BOTH.,#8808); +#8808 = SURFACE_SIDE_STYLE('',(#8809)); +#8809 = SURFACE_STYLE_FILL_AREA(#8810); +#8810 = FILL_AREA_STYLE('',(#8811)); +#8811 = FILL_AREA_STYLE_COLOUR('',#8643); +#8812 = STYLED_ITEM('color',(#8813),#4408); +#8813 = PRESENTATION_STYLE_ASSIGNMENT((#8814)); +#8814 = SURFACE_STYLE_USAGE(.BOTH.,#8815); +#8815 = SURFACE_SIDE_STYLE('',(#8816)); +#8816 = SURFACE_STYLE_FILL_AREA(#8817); +#8817 = FILL_AREA_STYLE('',(#8818)); +#8818 = FILL_AREA_STYLE_COLOUR('',#8635); +#8819 = STYLED_ITEM('color',(#8820),#4415); +#8820 = PRESENTATION_STYLE_ASSIGNMENT((#8821)); +#8821 = SURFACE_STYLE_USAGE(.BOTH.,#8822); +#8822 = SURFACE_SIDE_STYLE('',(#8823)); +#8823 = SURFACE_STYLE_FILL_AREA(#8824); +#8824 = FILL_AREA_STYLE('',(#8825)); +#8825 = FILL_AREA_STYLE_COLOUR('',#8643); +#8826 = STYLED_ITEM('color',(#8827),#4460); +#8827 = PRESENTATION_STYLE_ASSIGNMENT((#8828)); +#8828 = SURFACE_STYLE_USAGE(.BOTH.,#8829); +#8829 = SURFACE_SIDE_STYLE('',(#8830)); +#8830 = SURFACE_STYLE_FILL_AREA(#8831); +#8831 = FILL_AREA_STYLE('',(#8832)); +#8832 = FILL_AREA_STYLE_COLOUR('',#8635); +#8833 = STYLED_ITEM('color',(#8834),#4467); +#8834 = PRESENTATION_STYLE_ASSIGNMENT((#8835)); +#8835 = SURFACE_STYLE_USAGE(.BOTH.,#8836); +#8836 = SURFACE_SIDE_STYLE('',(#8837)); +#8837 = SURFACE_STYLE_FILL_AREA(#8838); +#8838 = FILL_AREA_STYLE('',(#8839)); +#8839 = FILL_AREA_STYLE_COLOUR('',#8643); +#8840 = STYLED_ITEM('color',(#8841),#4493); +#8841 = PRESENTATION_STYLE_ASSIGNMENT((#8842)); +#8842 = SURFACE_STYLE_USAGE(.BOTH.,#8843); +#8843 = SURFACE_SIDE_STYLE('',(#8844)); +#8844 = SURFACE_STYLE_FILL_AREA(#8845); +#8845 = FILL_AREA_STYLE('',(#8846)); +#8846 = FILL_AREA_STYLE_COLOUR('',#8643); +#8847 = STYLED_ITEM('color',(#8848),#4584); +#8848 = PRESENTATION_STYLE_ASSIGNMENT((#8849)); +#8849 = SURFACE_STYLE_USAGE(.BOTH.,#8850); +#8850 = SURFACE_SIDE_STYLE('',(#8851)); +#8851 = SURFACE_STYLE_FILL_AREA(#8852); +#8852 = FILL_AREA_STYLE('',(#8853)); +#8853 = FILL_AREA_STYLE_COLOUR('',#8643); +#8854 = STYLED_ITEM('color',(#8855),#4590); +#8855 = PRESENTATION_STYLE_ASSIGNMENT((#8856)); +#8856 = SURFACE_STYLE_USAGE(.BOTH.,#8857); +#8857 = SURFACE_SIDE_STYLE('',(#8858)); +#8858 = SURFACE_STYLE_FILL_AREA(#8859); +#8859 = FILL_AREA_STYLE('',(#8860)); +#8860 = FILL_AREA_STYLE_COLOUR('',#8643); +#8861 = STYLED_ITEM('color',(#8862),#4615); +#8862 = PRESENTATION_STYLE_ASSIGNMENT((#8863)); +#8863 = SURFACE_STYLE_USAGE(.BOTH.,#8864); +#8864 = SURFACE_SIDE_STYLE('',(#8865)); +#8865 = SURFACE_STYLE_FILL_AREA(#8866); +#8866 = FILL_AREA_STYLE('',(#8867)); +#8867 = FILL_AREA_STYLE_COLOUR('',#8643); +#8868 = STYLED_ITEM('color',(#8869),#4640); +#8869 = PRESENTATION_STYLE_ASSIGNMENT((#8870)); +#8870 = SURFACE_STYLE_USAGE(.BOTH.,#8871); +#8871 = SURFACE_SIDE_STYLE('',(#8872)); +#8872 = SURFACE_STYLE_FILL_AREA(#8873); +#8873 = FILL_AREA_STYLE('',(#8874)); +#8874 = FILL_AREA_STYLE_COLOUR('',#8643); +#8875 = STYLED_ITEM('color',(#8876),#4646); +#8876 = PRESENTATION_STYLE_ASSIGNMENT((#8877)); +#8877 = SURFACE_STYLE_USAGE(.BOTH.,#8878); +#8878 = SURFACE_SIDE_STYLE('',(#8879)); +#8879 = SURFACE_STYLE_FILL_AREA(#8880); +#8880 = FILL_AREA_STYLE('',(#8881)); +#8881 = FILL_AREA_STYLE_COLOUR('',#8635); +#8882 = STYLED_ITEM('color',(#8883),#4653); +#8883 = PRESENTATION_STYLE_ASSIGNMENT((#8884)); +#8884 = SURFACE_STYLE_USAGE(.BOTH.,#8885); +#8885 = SURFACE_SIDE_STYLE('',(#8886)); +#8886 = SURFACE_STYLE_FILL_AREA(#8887); +#8887 = FILL_AREA_STYLE('',(#8888)); +#8888 = FILL_AREA_STYLE_COLOUR('',#8643); +#8889 = STYLED_ITEM('color',(#8890),#4725); +#8890 = PRESENTATION_STYLE_ASSIGNMENT((#8891)); +#8891 = SURFACE_STYLE_USAGE(.BOTH.,#8892); +#8892 = SURFACE_SIDE_STYLE('',(#8893)); +#8893 = SURFACE_STYLE_FILL_AREA(#8894); +#8894 = FILL_AREA_STYLE('',(#8895)); +#8895 = FILL_AREA_STYLE_COLOUR('',#8643); +#8896 = STYLED_ITEM('color',(#8897),#4751); +#8897 = PRESENTATION_STYLE_ASSIGNMENT((#8898)); +#8898 = SURFACE_STYLE_USAGE(.BOTH.,#8899); +#8899 = SURFACE_SIDE_STYLE('',(#8900)); +#8900 = SURFACE_STYLE_FILL_AREA(#8901); +#8901 = FILL_AREA_STYLE('',(#8902)); +#8902 = FILL_AREA_STYLE_COLOUR('',#8635); +#8903 = STYLED_ITEM('color',(#8904),#4758); +#8904 = PRESENTATION_STYLE_ASSIGNMENT((#8905)); +#8905 = SURFACE_STYLE_USAGE(.BOTH.,#8906); +#8906 = SURFACE_SIDE_STYLE('',(#8907)); +#8907 = SURFACE_STYLE_FILL_AREA(#8908); +#8908 = FILL_AREA_STYLE('',(#8909)); +#8909 = FILL_AREA_STYLE_COLOUR('',#8643); +#8910 = STYLED_ITEM('color',(#8911),#4783); +#8911 = PRESENTATION_STYLE_ASSIGNMENT((#8912)); +#8912 = SURFACE_STYLE_USAGE(.BOTH.,#8913); +#8913 = SURFACE_SIDE_STYLE('',(#8914)); +#8914 = SURFACE_STYLE_FILL_AREA(#8915); +#8915 = FILL_AREA_STYLE('',(#8916)); +#8916 = FILL_AREA_STYLE_COLOUR('',#8643); +#8917 = STYLED_ITEM('color',(#8918),#4808); +#8918 = PRESENTATION_STYLE_ASSIGNMENT((#8919)); +#8919 = SURFACE_STYLE_USAGE(.BOTH.,#8920); +#8920 = SURFACE_SIDE_STYLE('',(#8921)); +#8921 = SURFACE_STYLE_FILL_AREA(#8922); +#8922 = FILL_AREA_STYLE('',(#8923)); +#8923 = FILL_AREA_STYLE_COLOUR('',#8643); +#8924 = STYLED_ITEM('color',(#8925),#4815); +#8925 = PRESENTATION_STYLE_ASSIGNMENT((#8926)); +#8926 = SURFACE_STYLE_USAGE(.BOTH.,#8927); +#8927 = SURFACE_SIDE_STYLE('',(#8928)); +#8928 = SURFACE_STYLE_FILL_AREA(#8929); +#8929 = FILL_AREA_STYLE('',(#8930)); +#8930 = FILL_AREA_STYLE_COLOUR('',#8643); +#8931 = STYLED_ITEM('color',(#8932),#5669); +#8932 = PRESENTATION_STYLE_ASSIGNMENT((#8933)); +#8933 = SURFACE_STYLE_USAGE(.BOTH.,#8934); +#8934 = SURFACE_SIDE_STYLE('',(#8935)); +#8935 = SURFACE_STYLE_FILL_AREA(#8936); +#8936 = FILL_AREA_STYLE('',(#8937)); +#8937 = FILL_AREA_STYLE_COLOUR('',#8643); +#8938 = STYLED_ITEM('color',(#8939),#5713); +#8939 = PRESENTATION_STYLE_ASSIGNMENT((#8940)); +#8940 = SURFACE_STYLE_USAGE(.BOTH.,#8941); +#8941 = SURFACE_SIDE_STYLE('',(#8942)); +#8942 = SURFACE_STYLE_FILL_AREA(#8943); +#8943 = FILL_AREA_STYLE('',(#8944)); +#8944 = FILL_AREA_STYLE_COLOUR('',#8643); +#8945 = STYLED_ITEM('color',(#8946),#5738); +#8946 = PRESENTATION_STYLE_ASSIGNMENT((#8947)); +#8947 = SURFACE_STYLE_USAGE(.BOTH.,#8948); +#8948 = SURFACE_SIDE_STYLE('',(#8949)); +#8949 = SURFACE_STYLE_FILL_AREA(#8950); +#8950 = FILL_AREA_STYLE('',(#8951)); +#8951 = FILL_AREA_STYLE_COLOUR('',#8643); +#8952 = STYLED_ITEM('color',(#8953),#5763); +#8953 = PRESENTATION_STYLE_ASSIGNMENT((#8954)); +#8954 = SURFACE_STYLE_USAGE(.BOTH.,#8955); +#8955 = SURFACE_SIDE_STYLE('',(#8956)); +#8956 = SURFACE_STYLE_FILL_AREA(#8957); +#8957 = FILL_AREA_STYLE('',(#8958)); +#8958 = FILL_AREA_STYLE_COLOUR('',#8643); +#8959 = STYLED_ITEM('color',(#8960),#5788); +#8960 = PRESENTATION_STYLE_ASSIGNMENT((#8961)); +#8961 = SURFACE_STYLE_USAGE(.BOTH.,#8962); +#8962 = SURFACE_SIDE_STYLE('',(#8963)); +#8963 = SURFACE_STYLE_FILL_AREA(#8964); +#8964 = FILL_AREA_STYLE('',(#8965)); +#8965 = FILL_AREA_STYLE_COLOUR('',#8643); +#8966 = STYLED_ITEM('color',(#8967),#5813); +#8967 = PRESENTATION_STYLE_ASSIGNMENT((#8968)); +#8968 = SURFACE_STYLE_USAGE(.BOTH.,#8969); +#8969 = SURFACE_SIDE_STYLE('',(#8970)); +#8970 = SURFACE_STYLE_FILL_AREA(#8971); +#8971 = FILL_AREA_STYLE('',(#8972)); +#8972 = FILL_AREA_STYLE_COLOUR('',#8643); +#8973 = STYLED_ITEM('color',(#8974),#5838); +#8974 = PRESENTATION_STYLE_ASSIGNMENT((#8975)); +#8975 = SURFACE_STYLE_USAGE(.BOTH.,#8976); +#8976 = SURFACE_SIDE_STYLE('',(#8977)); +#8977 = SURFACE_STYLE_FILL_AREA(#8978); +#8978 = FILL_AREA_STYLE('',(#8979)); +#8979 = FILL_AREA_STYLE_COLOUR('',#8643); +#8980 = STYLED_ITEM('color',(#8981),#5863); +#8981 = PRESENTATION_STYLE_ASSIGNMENT((#8982)); +#8982 = SURFACE_STYLE_USAGE(.BOTH.,#8983); +#8983 = SURFACE_SIDE_STYLE('',(#8984)); +#8984 = SURFACE_STYLE_FILL_AREA(#8985); +#8985 = FILL_AREA_STYLE('',(#8986)); +#8986 = FILL_AREA_STYLE_COLOUR('',#8643); +#8987 = STYLED_ITEM('color',(#8988),#5888); +#8988 = PRESENTATION_STYLE_ASSIGNMENT((#8989)); +#8989 = SURFACE_STYLE_USAGE(.BOTH.,#8990); +#8990 = SURFACE_SIDE_STYLE('',(#8991)); +#8991 = SURFACE_STYLE_FILL_AREA(#8992); +#8992 = FILL_AREA_STYLE('',(#8993)); +#8993 = FILL_AREA_STYLE_COLOUR('',#8643); +#8994 = STYLED_ITEM('color',(#8995),#5913); +#8995 = PRESENTATION_STYLE_ASSIGNMENT((#8996)); +#8996 = SURFACE_STYLE_USAGE(.BOTH.,#8997); +#8997 = SURFACE_SIDE_STYLE('',(#8998)); +#8998 = SURFACE_STYLE_FILL_AREA(#8999); +#8999 = FILL_AREA_STYLE('',(#9000)); +#9000 = FILL_AREA_STYLE_COLOUR('',#8643); +#9001 = STYLED_ITEM('color',(#9002),#5938); +#9002 = PRESENTATION_STYLE_ASSIGNMENT((#9003)); +#9003 = SURFACE_STYLE_USAGE(.BOTH.,#9004); +#9004 = SURFACE_SIDE_STYLE('',(#9005)); +#9005 = SURFACE_STYLE_FILL_AREA(#9006); +#9006 = FILL_AREA_STYLE('',(#9007)); +#9007 = FILL_AREA_STYLE_COLOUR('',#8643); +#9008 = STYLED_ITEM('color',(#9009),#5964); +#9009 = PRESENTATION_STYLE_ASSIGNMENT((#9010)); +#9010 = SURFACE_STYLE_USAGE(.BOTH.,#9011); +#9011 = SURFACE_SIDE_STYLE('',(#9012)); +#9012 = SURFACE_STYLE_FILL_AREA(#9013); +#9013 = FILL_AREA_STYLE('',(#9014)); +#9014 = FILL_AREA_STYLE_COLOUR('',#8643); +#9015 = STYLED_ITEM('color',(#9016),#5971); +#9016 = PRESENTATION_STYLE_ASSIGNMENT((#9017)); +#9017 = SURFACE_STYLE_USAGE(.BOTH.,#9018); +#9018 = SURFACE_SIDE_STYLE('',(#9019)); +#9019 = SURFACE_STYLE_FILL_AREA(#9020); +#9020 = FILL_AREA_STYLE('',(#9021)); +#9021 = FILL_AREA_STYLE_COLOUR('',#8643); +#9022 = STYLED_ITEM('color',(#9023),#6067); +#9023 = PRESENTATION_STYLE_ASSIGNMENT((#9024)); +#9024 = SURFACE_STYLE_USAGE(.BOTH.,#9025); +#9025 = SURFACE_SIDE_STYLE('',(#9026)); +#9026 = SURFACE_STYLE_FILL_AREA(#9027); +#9027 = FILL_AREA_STYLE('',(#9028)); +#9028 = FILL_AREA_STYLE_COLOUR('',#8643); +#9029 = STYLED_ITEM('color',(#9030),#6138); +#9030 = PRESENTATION_STYLE_ASSIGNMENT((#9031)); +#9031 = SURFACE_STYLE_USAGE(.BOTH.,#9032); +#9032 = SURFACE_SIDE_STYLE('',(#9033)); +#9033 = SURFACE_STYLE_FILL_AREA(#9034); +#9034 = FILL_AREA_STYLE('',(#9035)); +#9035 = FILL_AREA_STYLE_COLOUR('',#8643); +#9036 = STYLED_ITEM('color',(#9037),#6217); +#9037 = PRESENTATION_STYLE_ASSIGNMENT((#9038)); +#9038 = SURFACE_STYLE_USAGE(.BOTH.,#9039); +#9039 = SURFACE_SIDE_STYLE('',(#9040)); +#9040 = SURFACE_STYLE_FILL_AREA(#9041); +#9041 = FILL_AREA_STYLE('',(#9042)); +#9042 = FILL_AREA_STYLE_COLOUR('',#8643); +#9043 = STYLED_ITEM('color',(#9044),#6276); +#9044 = PRESENTATION_STYLE_ASSIGNMENT((#9045)); +#9045 = SURFACE_STYLE_USAGE(.BOTH.,#9046); +#9046 = SURFACE_SIDE_STYLE('',(#9047)); +#9047 = SURFACE_STYLE_FILL_AREA(#9048); +#9048 = FILL_AREA_STYLE('',(#9049)); +#9049 = FILL_AREA_STYLE_COLOUR('',#8635); +#9050 = STYLED_ITEM('color',(#9051),#6283); +#9051 = PRESENTATION_STYLE_ASSIGNMENT((#9052)); +#9052 = SURFACE_STYLE_USAGE(.BOTH.,#9053); +#9053 = SURFACE_SIDE_STYLE('',(#9054)); +#9054 = SURFACE_STYLE_FILL_AREA(#9055); +#9055 = FILL_AREA_STYLE('',(#9056)); +#9056 = FILL_AREA_STYLE_COLOUR('',#8643); +#9057 = STYLED_ITEM('color',(#9058),#6982); +#9058 = PRESENTATION_STYLE_ASSIGNMENT((#9059)); +#9059 = SURFACE_STYLE_USAGE(.BOTH.,#9060); +#9060 = SURFACE_SIDE_STYLE('',(#9061)); +#9061 = SURFACE_STYLE_FILL_AREA(#9062); +#9062 = FILL_AREA_STYLE('',(#9063)); +#9063 = FILL_AREA_STYLE_COLOUR('',#8643); +#9064 = STYLED_ITEM('color',(#9065),#7025); +#9065 = PRESENTATION_STYLE_ASSIGNMENT((#9066)); +#9066 = SURFACE_STYLE_USAGE(.BOTH.,#9067); +#9067 = SURFACE_SIDE_STYLE('',(#9068)); +#9068 = SURFACE_STYLE_FILL_AREA(#9069); +#9069 = FILL_AREA_STYLE('',(#9070)); +#9070 = FILL_AREA_STYLE_COLOUR('',#8643); +#9071 = STYLED_ITEM('color',(#9072),#7050); +#9072 = PRESENTATION_STYLE_ASSIGNMENT((#9073)); +#9073 = SURFACE_STYLE_USAGE(.BOTH.,#9074); +#9074 = SURFACE_SIDE_STYLE('',(#9075)); +#9075 = SURFACE_STYLE_FILL_AREA(#9076); +#9076 = FILL_AREA_STYLE('',(#9077)); +#9077 = FILL_AREA_STYLE_COLOUR('',#8643); +#9078 = STYLED_ITEM('color',(#9079),#7075); +#9079 = PRESENTATION_STYLE_ASSIGNMENT((#9080)); +#9080 = SURFACE_STYLE_USAGE(.BOTH.,#9081); +#9081 = SURFACE_SIDE_STYLE('',(#9082)); +#9082 = SURFACE_STYLE_FILL_AREA(#9083); +#9083 = FILL_AREA_STYLE('',(#9084)); +#9084 = FILL_AREA_STYLE_COLOUR('',#8643); +#9085 = STYLED_ITEM('color',(#9086),#7100); +#9086 = PRESENTATION_STYLE_ASSIGNMENT((#9087)); +#9087 = SURFACE_STYLE_USAGE(.BOTH.,#9088); +#9088 = SURFACE_SIDE_STYLE('',(#9089)); +#9089 = SURFACE_STYLE_FILL_AREA(#9090); +#9090 = FILL_AREA_STYLE('',(#9091)); +#9091 = FILL_AREA_STYLE_COLOUR('',#8643); +#9092 = STYLED_ITEM('color',(#9093),#7107); +#9093 = PRESENTATION_STYLE_ASSIGNMENT((#9094)); +#9094 = SURFACE_STYLE_USAGE(.BOTH.,#9095); +#9095 = SURFACE_SIDE_STYLE('',(#9096)); +#9096 = SURFACE_STYLE_FILL_AREA(#9097); +#9097 = FILL_AREA_STYLE('',(#9098)); +#9098 = FILL_AREA_STYLE_COLOUR('',#8643); +#9099 = STYLED_ITEM('color',(#9100),#7195); +#9100 = PRESENTATION_STYLE_ASSIGNMENT((#9101)); +#9101 = SURFACE_STYLE_USAGE(.BOTH.,#9102); +#9102 = SURFACE_SIDE_STYLE('',(#9103)); +#9103 = SURFACE_STYLE_FILL_AREA(#9104); +#9104 = FILL_AREA_STYLE('',(#9105)); +#9105 = FILL_AREA_STYLE_COLOUR('',#8643); +#9106 = STYLED_ITEM('color',(#9107),#7274); +#9107 = PRESENTATION_STYLE_ASSIGNMENT((#9108)); +#9108 = SURFACE_STYLE_USAGE(.BOTH.,#9109); +#9109 = SURFACE_SIDE_STYLE('',(#9110)); +#9110 = SURFACE_STYLE_FILL_AREA(#9111); +#9111 = FILL_AREA_STYLE('',(#9112)); +#9112 = FILL_AREA_STYLE_COLOUR('',#8643); +#9113 = STYLED_ITEM('color',(#9114),#7353); +#9114 = PRESENTATION_STYLE_ASSIGNMENT((#9115)); +#9115 = SURFACE_STYLE_USAGE(.BOTH.,#9116); +#9116 = SURFACE_SIDE_STYLE('',(#9117)); +#9117 = SURFACE_STYLE_FILL_AREA(#9118); +#9118 = FILL_AREA_STYLE('',(#9119)); +#9119 = FILL_AREA_STYLE_COLOUR('',#8643); +#9120 = STYLED_ITEM('color',(#9121),#7432); +#9121 = PRESENTATION_STYLE_ASSIGNMENT((#9122)); +#9122 = SURFACE_STYLE_USAGE(.BOTH.,#9123); +#9123 = SURFACE_SIDE_STYLE('',(#9124)); +#9124 = SURFACE_STYLE_FILL_AREA(#9125); +#9125 = FILL_AREA_STYLE('',(#9126)); +#9126 = FILL_AREA_STYLE_COLOUR('',#8643); +#9127 = STYLED_ITEM('color',(#9128),#7475); +#9128 = PRESENTATION_STYLE_ASSIGNMENT((#9129)); +#9129 = SURFACE_STYLE_USAGE(.BOTH.,#9130); +#9130 = SURFACE_SIDE_STYLE('',(#9131)); +#9131 = SURFACE_STYLE_FILL_AREA(#9132); +#9132 = FILL_AREA_STYLE('',(#9133)); +#9133 = FILL_AREA_STYLE_COLOUR('',#8635); +#9134 = STYLED_ITEM('color',(#9135),#7483); +#9135 = PRESENTATION_STYLE_ASSIGNMENT((#9136)); +#9136 = SURFACE_STYLE_USAGE(.BOTH.,#9137); +#9137 = SURFACE_SIDE_STYLE('',(#9138)); +#9138 = SURFACE_STYLE_FILL_AREA(#9139); +#9139 = FILL_AREA_STYLE('',(#9140)); +#9140 = FILL_AREA_STYLE_COLOUR('',#8643); +#9141 = STYLED_ITEM('color',(#9142),#7588); +#9142 = PRESENTATION_STYLE_ASSIGNMENT((#9143)); +#9143 = SURFACE_STYLE_USAGE(.BOTH.,#9144); +#9144 = SURFACE_SIDE_STYLE('',(#9145)); +#9145 = SURFACE_STYLE_FILL_AREA(#9146); +#9146 = FILL_AREA_STYLE('',(#9147)); +#9147 = FILL_AREA_STYLE_COLOUR('',#8643); +#9148 = STYLED_ITEM('color',(#9149),#7667); +#9149 = PRESENTATION_STYLE_ASSIGNMENT((#9150)); +#9150 = SURFACE_STYLE_USAGE(.BOTH.,#9151); +#9151 = SURFACE_SIDE_STYLE('',(#9152)); +#9152 = SURFACE_STYLE_FILL_AREA(#9153); +#9153 = FILL_AREA_STYLE('',(#9154)); +#9154 = FILL_AREA_STYLE_COLOUR('',#8643); +#9155 = STYLED_ITEM('color',(#9156),#7738); +#9156 = PRESENTATION_STYLE_ASSIGNMENT((#9157)); +#9157 = SURFACE_STYLE_USAGE(.BOTH.,#9158); +#9158 = SURFACE_SIDE_STYLE('',(#9159)); +#9159 = SURFACE_STYLE_FILL_AREA(#9160); +#9160 = FILL_AREA_STYLE('',(#9161)); +#9161 = FILL_AREA_STYLE_COLOUR('',#8643); +#9162 = STYLED_ITEM('color',(#9163),#7801); +#9163 = PRESENTATION_STYLE_ASSIGNMENT((#9164)); +#9164 = SURFACE_STYLE_USAGE(.BOTH.,#9165); +#9165 = SURFACE_SIDE_STYLE('',(#9166)); +#9166 = SURFACE_STYLE_FILL_AREA(#9167); +#9167 = FILL_AREA_STYLE('',(#9168)); +#9168 = FILL_AREA_STYLE_COLOUR('',#8643); +#9169 = STYLED_ITEM('color',(#9170),#7872); +#9170 = PRESENTATION_STYLE_ASSIGNMENT((#9171)); +#9171 = SURFACE_STYLE_USAGE(.BOTH.,#9172); +#9172 = SURFACE_SIDE_STYLE('',(#9173)); +#9173 = SURFACE_STYLE_FILL_AREA(#9174); +#9174 = FILL_AREA_STYLE('',(#9175)); +#9175 = FILL_AREA_STYLE_COLOUR('',#8643); +#9176 = STYLED_ITEM('color',(#9177),#7952); +#9177 = PRESENTATION_STYLE_ASSIGNMENT((#9178)); +#9178 = SURFACE_STYLE_USAGE(.BOTH.,#9179); +#9179 = SURFACE_SIDE_STYLE('',(#9180)); +#9180 = SURFACE_STYLE_FILL_AREA(#9181); +#9181 = FILL_AREA_STYLE('',(#9182)); +#9182 = FILL_AREA_STYLE_COLOUR('',#8643); +#9183 = STYLED_ITEM('color',(#9184),#8000); +#9184 = PRESENTATION_STYLE_ASSIGNMENT((#9185)); +#9185 = SURFACE_STYLE_USAGE(.BOTH.,#9186); +#9186 = SURFACE_SIDE_STYLE('',(#9187)); +#9187 = SURFACE_STYLE_FILL_AREA(#9188); +#9188 = FILL_AREA_STYLE('',(#9189)); +#9189 = FILL_AREA_STYLE_COLOUR('',#8643); +#9190 = STYLED_ITEM('color',(#9191),#8063); +#9191 = PRESENTATION_STYLE_ASSIGNMENT((#9192)); +#9192 = SURFACE_STYLE_USAGE(.BOTH.,#9193); +#9193 = SURFACE_SIDE_STYLE('',(#9194)); +#9194 = SURFACE_STYLE_FILL_AREA(#9195); +#9195 = FILL_AREA_STYLE('',(#9196)); +#9196 = FILL_AREA_STYLE_COLOUR('',#8643); +#9197 = STYLED_ITEM('color',(#9198),#8126); +#9198 = PRESENTATION_STYLE_ASSIGNMENT((#9199)); +#9199 = SURFACE_STYLE_USAGE(.BOTH.,#9200); +#9200 = SURFACE_SIDE_STYLE('',(#9201)); +#9201 = SURFACE_STYLE_FILL_AREA(#9202); +#9202 = FILL_AREA_STYLE('',(#9203)); +#9203 = FILL_AREA_STYLE_COLOUR('',#8643); +#9204 = STYLED_ITEM('color',(#9205),#8197); +#9205 = PRESENTATION_STYLE_ASSIGNMENT((#9206)); +#9206 = SURFACE_STYLE_USAGE(.BOTH.,#9207); +#9207 = SURFACE_SIDE_STYLE('',(#9208)); +#9208 = SURFACE_STYLE_FILL_AREA(#9209); +#9209 = FILL_AREA_STYLE('',(#9210)); +#9210 = FILL_AREA_STYLE_COLOUR('',#8643); +#9211 = STYLED_ITEM('color',(#9212),#8249); +#9212 = PRESENTATION_STYLE_ASSIGNMENT((#9213)); +#9213 = SURFACE_STYLE_USAGE(.BOTH.,#9214); +#9214 = SURFACE_SIDE_STYLE('',(#9215)); +#9215 = SURFACE_STYLE_FILL_AREA(#9216); +#9216 = FILL_AREA_STYLE('',(#9217)); +#9217 = FILL_AREA_STYLE_COLOUR('',#8643); +#9218 = STYLED_ITEM('color',(#9219),#8297); +#9219 = PRESENTATION_STYLE_ASSIGNMENT((#9220)); +#9220 = SURFACE_STYLE_USAGE(.BOTH.,#9221); +#9221 = SURFACE_SIDE_STYLE('',(#9222)); +#9222 = SURFACE_STYLE_FILL_AREA(#9223); +#9223 = FILL_AREA_STYLE('',(#9224)); +#9224 = FILL_AREA_STYLE_COLOUR('',#8643); +#9225 = STYLED_ITEM('color',(#9226),#8352); +#9226 = PRESENTATION_STYLE_ASSIGNMENT((#9227)); +#9227 = SURFACE_STYLE_USAGE(.BOTH.,#9228); +#9228 = SURFACE_SIDE_STYLE('',(#9229)); +#9229 = SURFACE_STYLE_FILL_AREA(#9230); +#9230 = FILL_AREA_STYLE('',(#9231)); +#9231 = FILL_AREA_STYLE_COLOUR('',#8643); +#9232 = STYLED_ITEM('color',(#9233),#8423); +#9233 = PRESENTATION_STYLE_ASSIGNMENT((#9234)); +#9234 = SURFACE_STYLE_USAGE(.BOTH.,#9235); +#9235 = SURFACE_SIDE_STYLE('',(#9236)); +#9236 = SURFACE_STYLE_FILL_AREA(#9237); +#9237 = FILL_AREA_STYLE('',(#9238)); +#9238 = FILL_AREA_STYLE_COLOUR('',#8643); +#9239 = STYLED_ITEM('color',(#9240),#8494); +#9240 = PRESENTATION_STYLE_ASSIGNMENT((#9241)); +#9241 = SURFACE_STYLE_USAGE(.BOTH.,#9242); +#9242 = SURFACE_SIDE_STYLE('',(#9243)); +#9243 = SURFACE_STYLE_FILL_AREA(#9244); +#9244 = FILL_AREA_STYLE('',(#9245)); +#9245 = FILL_AREA_STYLE_COLOUR('',#8643); +#9246 = STYLED_ITEM('color',(#9247),#8574); +#9247 = PRESENTATION_STYLE_ASSIGNMENT((#9248)); +#9248 = SURFACE_STYLE_USAGE(.BOTH.,#9249); +#9249 = SURFACE_SIDE_STYLE('',(#9250)); +#9250 = SURFACE_STYLE_FILL_AREA(#9251); +#9251 = FILL_AREA_STYLE('',(#9252)); +#9252 = FILL_AREA_STYLE_COLOUR('',#8643); +#9253 = STYLED_ITEM('color',(#9254),#8601); +#9254 = PRESENTATION_STYLE_ASSIGNMENT((#9255)); +#9255 = SURFACE_STYLE_USAGE(.BOTH.,#9256); +#9256 = SURFACE_SIDE_STYLE('',(#9257)); +#9257 = SURFACE_STYLE_FILL_AREA(#9258); +#9258 = FILL_AREA_STYLE('',(#9259)); +#9259 = FILL_AREA_STYLE_COLOUR('',#8643); +ENDSEC; +END-ISO-10303-21; diff --git a/src/Mod/Idf/lib/RLF_12545.igs b/src/Mod/Idf/lib/RLF_12545.igs new file mode 100644 index 000000000..14a727497 --- /dev/null +++ b/src/Mod/Idf/lib/RLF_12545.igs @@ -0,0 +1,2702 @@ + S0000001 +,,31HOpen CASCADE IGES processor 6.5,13HFilename.iges, G0000001 +16HOpen CASCADE 6.5,31HOpen CASCADE IGES processor 6.5,32,308,15,308,15,G0000002 +,1.,1,4HINCH,1,0.000394,15H20120128.235219,3.93728E-09,0.246527,3Htux,, G0000003 +11,0,15H20120128.235219,; G0000004 + 402 1 0 0 0 0 0 000000000D0000001 + 402 0 0 1 1 0D0000002 + 402 2 0 0 0 0 0 000020000D0000003 + 402 0 0 1 1 0D0000004 + 144 3 0 0 0 0 0 000020000D0000005 + 144 0 0 1 0 0D0000006 + 128 4 0 0 0 0 0 000010000D0000007 + 128 0 0 5 0 0D0000008 + 142 9 0 0 0 0 0 000010500D0000009 + 142 0 0 1 0 0D0000010 + 102 10 0 0 0 0 0 000010000D0000011 + 102 0 0 1 0 0D0000012 + 110 11 0 0 0 0 0 000010000D0000013 + 110 0 0 1 0 0D0000014 + 110 12 0 0 0 0 0 000010000D0000015 + 110 0 0 1 0 0D0000016 + 110 13 0 0 0 0 0 000010000D0000017 + 110 0 0 1 0 0D0000018 + 110 14 0 0 0 0 0 000010000D0000019 + 110 0 0 1 0 0D0000020 + 102 15 0 0 0 0 0 000010000D0000021 + 102 0 0 1 0 0D0000022 + 110 16 0 0 0 0 0 000010000D0000023 + 110 0 0 2 0 0D0000024 + 110 18 0 0 0 0 0 000010000D0000025 + 110 0 0 2 0 0D0000026 + 110 20 0 0 0 0 0 000010000D0000027 + 110 0 0 2 0 0D0000028 + 110 22 0 0 0 0 0 000010000D0000029 + 110 0 0 2 0 0D0000030 + 144 24 0 0 0 0 0 000020000D0000031 + 144 0 0 1 0 0D0000032 + 128 25 0 0 0 0 0 000010000D0000033 + 128 0 0 5 0 0D0000034 + 142 30 0 0 0 0 0 000010500D0000035 + 142 0 0 1 0 0D0000036 + 102 31 0 0 0 0 0 000010000D0000037 + 102 0 0 1 0 0D0000038 + 110 32 0 0 0 0 0 000010000D0000039 + 110 0 0 1 0 0D0000040 + 110 33 0 0 0 0 0 000010000D0000041 + 110 0 0 1 0 0D0000042 + 110 34 0 0 0 0 0 000010000D0000043 + 110 0 0 1 0 0D0000044 + 110 35 0 0 0 0 0 000010000D0000045 + 110 0 0 1 0 0D0000046 + 110 36 0 0 0 0 0 000010000D0000047 + 110 0 0 1 0 0D0000048 + 110 37 0 0 0 0 0 000010000D0000049 + 110 0 0 1 0 0D0000050 + 110 38 0 0 0 0 0 000010000D0000051 + 110 0 0 1 0 0D0000052 + 110 39 0 0 0 0 0 000010000D0000053 + 110 0 0 1 0 0D0000054 + 102 40 0 0 0 0 0 000010000D0000055 + 102 0 0 1 0 0D0000056 + 110 41 0 0 0 0 0 000010000D0000057 + 110 0 0 2 0 0D0000058 + 110 43 0 0 0 0 0 000010000D0000059 + 110 0 0 2 0 0D0000060 + 110 45 0 0 0 0 0 000010000D0000061 + 110 0 0 2 0 0D0000062 + 110 47 0 0 0 0 0 000010000D0000063 + 110 0 0 2 0 0D0000064 + 110 49 0 0 0 0 0 000010000D0000065 + 110 0 0 2 0 0D0000066 + 110 51 0 0 0 0 0 000010000D0000067 + 110 0 0 2 0 0D0000068 + 110 53 0 0 0 0 0 000010000D0000069 + 110 0 0 2 0 0D0000070 + 110 55 0 0 0 0 0 000010000D0000071 + 110 0 0 2 0 0D0000072 + 144 57 0 0 0 0 0 000020000D0000073 + 144 0 0 1 0 0D0000074 + 128 58 0 0 0 0 0 000010000D0000075 + 128 0 0 5 0 0D0000076 + 142 63 0 0 0 0 0 000010500D0000077 + 142 0 0 1 0 0D0000078 + 102 64 0 0 0 0 0 000010000D0000079 + 102 0 0 1 0 0D0000080 + 110 65 0 0 0 0 0 000010000D0000081 + 110 0 0 1 0 0D0000082 + 110 66 0 0 0 0 0 000010000D0000083 + 110 0 0 1 0 0D0000084 + 110 67 0 0 0 0 0 000010000D0000085 + 110 0 0 1 0 0D0000086 + 110 68 0 0 0 0 0 000010000D0000087 + 110 0 0 1 0 0D0000088 + 102 69 0 0 0 0 0 000010000D0000089 + 102 0 0 1 0 0D0000090 + 110 70 0 0 0 0 0 000010000D0000091 + 110 0 0 2 0 0D0000092 + 110 72 0 0 0 0 0 000010000D0000093 + 110 0 0 2 0 0D0000094 + 110 74 0 0 0 0 0 000010000D0000095 + 110 0 0 2 0 0D0000096 + 110 76 0 0 0 0 0 000010000D0000097 + 110 0 0 2 0 0D0000098 + 144 78 0 0 0 0 0 000020000D0000099 + 144 0 0 1 0 0D0000100 + 128 79 0 0 0 0 0 000010000D0000101 + 128 0 0 5 0 0D0000102 + 142 84 0 0 0 0 0 000010500D0000103 + 142 0 0 1 0 0D0000104 + 102 85 0 0 0 0 0 000010000D0000105 + 102 0 0 1 0 0D0000106 + 110 86 0 0 0 0 0 000010000D0000107 + 110 0 0 1 0 0D0000108 + 110 87 0 0 0 0 0 000010000D0000109 + 110 0 0 1 0 0D0000110 + 110 88 0 0 0 0 0 000010000D0000111 + 110 0 0 1 0 0D0000112 + 110 89 0 0 0 0 0 000010000D0000113 + 110 0 0 1 0 0D0000114 + 110 90 0 0 0 0 0 000010000D0000115 + 110 0 0 1 0 0D0000116 + 110 91 0 0 0 0 0 000010000D0000117 + 110 0 0 1 0 0D0000118 + 110 92 0 0 0 0 0 000010000D0000119 + 110 0 0 1 0 0D0000120 + 110 93 0 0 0 0 0 000010000D0000121 + 110 0 0 1 0 0D0000122 + 102 94 0 0 0 0 0 000010000D0000123 + 102 0 0 1 0 0D0000124 + 110 95 0 0 0 0 0 000010000D0000125 + 110 0 0 2 0 0D0000126 + 110 97 0 0 0 0 0 000010000D0000127 + 110 0 0 2 0 0D0000128 + 110 99 0 0 0 0 0 000010000D0000129 + 110 0 0 2 0 0D0000130 + 110 101 0 0 0 0 0 000010000D0000131 + 110 0 0 2 0 0D0000132 + 110 103 0 0 0 0 0 000010000D0000133 + 110 0 0 2 0 0D0000134 + 110 105 0 0 0 0 0 000010000D0000135 + 110 0 0 2 0 0D0000136 + 110 107 0 0 0 0 0 000010000D0000137 + 110 0 0 2 0 0D0000138 + 110 109 0 0 0 0 0 000010000D0000139 + 110 0 0 2 0 0D0000140 + 144 111 0 0 0 0 0 000020000D0000141 + 144 0 0 1 0 0D0000142 + 128 112 0 0 0 0 0 000010000D0000143 + 128 0 0 5 0 0D0000144 + 142 117 0 0 0 0 0 000010500D0000145 + 142 0 0 1 0 0D0000146 + 102 118 0 0 0 0 0 000010000D0000147 + 102 0 0 1 0 0D0000148 + 110 119 0 0 0 0 0 000010000D0000149 + 110 0 0 1 0 0D0000150 + 110 120 0 0 0 0 0 000010000D0000151 + 110 0 0 1 0 0D0000152 + 110 121 0 0 0 0 0 000010000D0000153 + 110 0 0 1 0 0D0000154 + 110 122 0 0 0 0 0 000010000D0000155 + 110 0 0 1 0 0D0000156 + 102 123 0 0 0 0 0 000010000D0000157 + 102 0 0 1 0 0D0000158 + 110 124 0 0 0 0 0 000010000D0000159 + 110 0 0 2 0 0D0000160 + 110 126 0 0 0 0 0 000010000D0000161 + 110 0 0 2 0 0D0000162 + 110 128 0 0 0 0 0 000010000D0000163 + 110 0 0 2 0 0D0000164 + 110 130 0 0 0 0 0 000010000D0000165 + 110 0 0 2 0 0D0000166 + 144 132 0 0 0 0 0 000020000D0000167 + 144 0 0 1 0 0D0000168 + 128 133 0 0 0 0 0 000010000D0000169 + 128 0 0 5 0 0D0000170 + 142 138 0 0 0 0 0 000010500D0000171 + 142 0 0 1 0 0D0000172 + 102 139 0 0 0 0 0 000010000D0000173 + 102 0 0 1 0 0D0000174 + 110 140 0 0 0 0 0 000010000D0000175 + 110 0 0 1 0 0D0000176 + 110 141 0 0 0 0 0 000010000D0000177 + 110 0 0 1 0 0D0000178 + 110 142 0 0 0 0 0 000010000D0000179 + 110 0 0 1 0 0D0000180 + 110 143 0 0 0 0 0 000010000D0000181 + 110 0 0 1 0 0D0000182 + 102 144 0 0 0 0 0 000010000D0000183 + 102 0 0 1 0 0D0000184 + 110 145 0 0 0 0 0 000010000D0000185 + 110 0 0 2 0 0D0000186 + 110 147 0 0 0 0 0 000010000D0000187 + 110 0 0 2 0 0D0000188 + 110 149 0 0 0 0 0 000010000D0000189 + 110 0 0 2 0 0D0000190 + 110 151 0 0 0 0 0 000010000D0000191 + 110 0 0 2 0 0D0000192 + 144 153 0 0 0 0 0 000020000D0000193 + 144 0 0 1 0 0D0000194 + 128 154 0 0 0 0 0 000010000D0000195 + 128 0 0 5 0 0D0000196 + 142 159 0 0 0 0 0 000010500D0000197 + 142 0 0 1 0 0D0000198 + 102 160 0 0 0 0 0 000010000D0000199 + 102 0 0 1 0 0D0000200 + 110 161 0 0 0 0 0 000010000D0000201 + 110 0 0 1 0 0D0000202 + 110 162 0 0 0 0 0 000010000D0000203 + 110 0 0 1 0 0D0000204 + 110 163 0 0 0 0 0 000010000D0000205 + 110 0 0 1 0 0D0000206 + 110 164 0 0 0 0 0 000010000D0000207 + 110 0 0 1 0 0D0000208 + 102 165 0 0 0 0 0 000010000D0000209 + 102 0 0 1 0 0D0000210 + 110 166 0 0 0 0 0 000010000D0000211 + 110 0 0 2 0 0D0000212 + 110 168 0 0 0 0 0 000010000D0000213 + 110 0 0 2 0 0D0000214 + 110 170 0 0 0 0 0 000010000D0000215 + 110 0 0 2 0 0D0000216 + 110 172 0 0 0 0 0 000010000D0000217 + 110 0 0 2 0 0D0000218 + 144 174 0 0 0 0 0 000020000D0000219 + 144 0 0 1 0 0D0000220 + 128 175 0 0 0 0 0 000010000D0000221 + 128 0 0 4 0 0D0000222 + 142 179 0 0 0 0 0 000010500D0000223 + 142 0 0 1 0 0D0000224 + 102 180 0 0 0 0 0 000010000D0000225 + 102 0 0 1 0 0D0000226 + 110 181 0 0 0 0 0 000010000D0000227 + 110 0 0 1 0 0D0000228 + 110 182 0 0 0 0 0 000010000D0000229 + 110 0 0 1 0 0D0000230 + 110 183 0 0 0 0 0 000010000D0000231 + 110 0 0 1 0 0D0000232 + 110 184 0 0 0 0 0 000010000D0000233 + 110 0 0 1 0 0D0000234 + 102 185 0 0 0 0 0 000010000D0000235 + 102 0 0 1 0 0D0000236 + 110 186 0 0 0 0 0 000010000D0000237 + 110 0 0 2 0 0D0000238 + 110 188 0 0 0 0 0 000010000D0000239 + 110 0 0 2 0 0D0000240 + 110 190 0 0 0 0 0 000010000D0000241 + 110 0 0 2 0 0D0000242 + 110 192 0 0 0 0 0 000010000D0000243 + 110 0 0 2 0 0D0000244 + 144 194 0 0 0 0 0 000020000D0000245 + 144 0 0 1 0 0D0000246 + 128 195 0 0 0 0 0 000010000D0000247 + 128 0 0 5 0 0D0000248 + 142 200 0 0 0 0 0 000010500D0000249 + 142 0 0 1 0 0D0000250 + 102 201 0 0 0 0 0 000010000D0000251 + 102 0 0 1 0 0D0000252 + 110 202 0 0 0 0 0 000010000D0000253 + 110 0 0 1 0 0D0000254 + 110 203 0 0 0 0 0 000010000D0000255 + 110 0 0 1 0 0D0000256 + 110 204 0 0 0 0 0 000010000D0000257 + 110 0 0 1 0 0D0000258 + 110 205 0 0 0 0 0 000010000D0000259 + 110 0 0 1 0 0D0000260 + 102 206 0 0 0 0 0 000010000D0000261 + 102 0 0 1 0 0D0000262 + 110 207 0 0 0 0 0 000010000D0000263 + 110 0 0 2 0 0D0000264 + 110 209 0 0 0 0 0 000010000D0000265 + 110 0 0 2 0 0D0000266 + 110 211 0 0 0 0 0 000010000D0000267 + 110 0 0 2 0 0D0000268 + 110 213 0 0 0 0 0 000010000D0000269 + 110 0 0 2 0 0D0000270 + 144 215 0 0 0 0 0 000020000D0000271 + 144 0 0 1 0 0D0000272 + 128 216 0 0 0 0 0 000010000D0000273 + 128 0 0 5 0 0D0000274 + 142 221 0 0 0 0 0 000010500D0000275 + 142 0 0 1 0 0D0000276 + 102 222 0 0 0 0 0 000010000D0000277 + 102 0 0 1 0 0D0000278 + 110 223 0 0 0 0 0 000010000D0000279 + 110 0 0 1 0 0D0000280 + 110 224 0 0 0 0 0 000010000D0000281 + 110 0 0 1 0 0D0000282 + 110 225 0 0 0 0 0 000010000D0000283 + 110 0 0 1 0 0D0000284 + 110 226 0 0 0 0 0 000010000D0000285 + 110 0 0 1 0 0D0000286 + 102 227 0 0 0 0 0 000010000D0000287 + 102 0 0 1 0 0D0000288 + 110 228 0 0 0 0 0 000010000D0000289 + 110 0 0 2 0 0D0000290 + 110 230 0 0 0 0 0 000010000D0000291 + 110 0 0 2 0 0D0000292 + 110 232 0 0 0 0 0 000010000D0000293 + 110 0 0 2 0 0D0000294 + 110 234 0 0 0 0 0 000010000D0000295 + 110 0 0 2 0 0D0000296 + 402 236 0 0 0 0 0 000020000D0000297 + 402 0 0 2 1 0D0000298 + 144 238 0 0 0 0 0 000020000D0000299 + 144 0 0 1 0 0D0000300 + 128 239 0 0 0 0 0 000010000D0000301 + 128 0 0 4 0 0D0000302 + 142 243 0 0 0 0 0 000010500D0000303 + 142 0 0 1 0 0D0000304 + 102 244 0 0 0 0 0 000010000D0000305 + 102 0 0 1 0 0D0000306 + 110 245 0 0 0 0 0 000010000D0000307 + 110 0 0 1 0 0D0000308 + 110 246 0 0 0 0 0 000010000D0000309 + 110 0 0 1 0 0D0000310 + 110 247 0 0 0 0 0 000010000D0000311 + 110 0 0 1 0 0D0000312 + 126 248 0 0 0 0 0 000010000D0000313 + 126 0 0 19 0 0D0000314 + 110 267 0 0 0 0 0 000010000D0000315 + 110 0 0 1 0 0D0000316 + 110 268 0 0 0 0 0 000010000D0000317 + 110 0 0 1 0 0D0000318 + 110 269 0 0 0 0 0 000010000D0000319 + 110 0 0 1 0 0D0000320 + 126 270 0 0 0 0 0 000010000D0000321 + 126 0 0 19 0 0D0000322 + 102 289 0 0 0 0 0 000010000D0000323 + 102 0 0 1 0 0D0000324 + 110 290 0 0 0 0 0 000010000D0000325 + 110 0 0 2 0 0D0000326 + 110 292 0 0 0 0 0 000010000D0000327 + 110 0 0 2 0 0D0000328 + 110 294 0 0 0 0 0 000010000D0000329 + 110 0 0 2 0 0D0000330 + 110 296 0 0 0 0 0 000010000D0000331 + 110 0 0 2 0 0D0000332 + 110 298 0 0 0 0 0 000010000D0000333 + 110 0 0 2 0 0D0000334 + 110 300 0 0 0 0 0 000010000D0000335 + 110 0 0 2 0 0D0000336 + 110 302 0 0 0 0 0 000010000D0000337 + 110 0 0 2 0 0D0000338 + 110 304 0 0 0 0 0 000010000D0000339 + 110 0 0 2 0 0D0000340 + 144 306 0 0 0 0 0 000020000D0000341 + 144 0 0 1 0 0D0000342 + 128 307 0 0 0 0 0 000010000D0000343 + 128 0 0 5 0 0D0000344 + 142 312 0 0 0 0 0 000010500D0000345 + 142 0 0 1 0 0D0000346 + 102 313 0 0 0 0 0 000010000D0000347 + 102 0 0 1 0 0D0000348 + 110 314 0 0 0 0 0 000010000D0000349 + 110 0 0 1 0 0D0000350 + 110 315 0 0 0 0 0 000010000D0000351 + 110 0 0 1 0 0D0000352 + 110 316 0 0 0 0 0 000010000D0000353 + 110 0 0 1 0 0D0000354 + 110 317 0 0 0 0 0 000010000D0000355 + 110 0 0 1 0 0D0000356 + 102 318 0 0 0 0 0 000010000D0000357 + 102 0 0 1 0 0D0000358 + 110 319 0 0 0 0 0 000010000D0000359 + 110 0 0 2 0 0D0000360 + 110 321 0 0 0 0 0 000010000D0000361 + 110 0 0 2 0 0D0000362 + 110 323 0 0 0 0 0 000010000D0000363 + 110 0 0 2 0 0D0000364 + 110 325 0 0 0 0 0 000010000D0000365 + 110 0 0 2 0 0D0000366 + 144 327 0 0 0 0 0 000020000D0000367 + 144 0 0 1 0 0D0000368 + 128 328 0 0 0 0 0 000010000D0000369 + 128 0 0 5 0 0D0000370 + 142 333 0 0 0 0 0 000010500D0000371 + 142 0 0 1 0 0D0000372 + 102 334 0 0 0 0 0 000010000D0000373 + 102 0 0 1 0 0D0000374 + 110 335 0 0 0 0 0 000010000D0000375 + 110 0 0 1 0 0D0000376 + 110 336 0 0 0 0 0 000010000D0000377 + 110 0 0 1 0 0D0000378 + 110 337 0 0 0 0 0 000010000D0000379 + 110 0 0 1 0 0D0000380 + 110 338 0 0 0 0 0 000010000D0000381 + 110 0 0 1 0 0D0000382 + 110 339 0 0 0 0 0 000010000D0000383 + 110 0 0 1 0 0D0000384 + 110 340 0 0 0 0 0 000010000D0000385 + 110 0 0 1 0 0D0000386 + 110 341 0 0 0 0 0 000010000D0000387 + 110 0 0 1 0 0D0000388 + 110 342 0 0 0 0 0 000010000D0000389 + 110 0 0 1 0 0D0000390 + 110 343 0 0 0 0 0 000010000D0000391 + 110 0 0 1 0 0D0000392 + 110 344 0 0 0 0 0 000010000D0000393 + 110 0 0 1 0 0D0000394 + 110 345 0 0 0 0 0 000010000D0000395 + 110 0 0 1 0 0D0000396 + 110 346 0 0 0 0 0 000010000D0000397 + 110 0 0 1 0 0D0000398 + 102 347 0 0 0 0 0 000010000D0000399 + 102 0 0 1 0 0D0000400 + 110 348 0 0 0 0 0 000010000D0000401 + 110 0 0 2 0 0D0000402 + 110 350 0 0 0 0 0 000010000D0000403 + 110 0 0 2 0 0D0000404 + 110 352 0 0 0 0 0 000010000D0000405 + 110 0 0 2 0 0D0000406 + 110 354 0 0 0 0 0 000010000D0000407 + 110 0 0 2 0 0D0000408 + 110 356 0 0 0 0 0 000010000D0000409 + 110 0 0 2 0 0D0000410 + 110 358 0 0 0 0 0 000010000D0000411 + 110 0 0 2 0 0D0000412 + 110 360 0 0 0 0 0 000010000D0000413 + 110 0 0 2 0 0D0000414 + 110 362 0 0 0 0 0 000010000D0000415 + 110 0 0 2 0 0D0000416 + 110 364 0 0 0 0 0 000010000D0000417 + 110 0 0 2 0 0D0000418 + 110 366 0 0 0 0 0 000010000D0000419 + 110 0 0 2 0 0D0000420 + 110 368 0 0 0 0 0 000010000D0000421 + 110 0 0 2 0 0D0000422 + 110 370 0 0 0 0 0 000010000D0000423 + 110 0 0 2 0 0D0000424 + 142 372 0 0 0 0 0 000010500D0000425 + 142 0 0 1 0 0D0000426 + 102 373 0 0 0 0 0 000010000D0000427 + 102 0 0 1 0 0D0000428 + 110 374 0 0 0 0 0 000010000D0000429 + 110 0 0 1 0 0D0000430 + 110 375 0 0 0 0 0 000010000D0000431 + 110 0 0 1 0 0D0000432 + 110 376 0 0 0 0 0 000010000D0000433 + 110 0 0 1 0 0D0000434 + 110 377 0 0 0 0 0 000010000D0000435 + 110 0 0 1 0 0D0000436 + 102 378 0 0 0 0 0 000010000D0000437 + 102 0 0 1 0 0D0000438 + 110 379 0 0 0 0 0 000010000D0000439 + 110 0 0 2 0 0D0000440 + 110 381 0 0 0 0 0 000010000D0000441 + 110 0 0 2 0 0D0000442 + 110 383 0 0 0 0 0 000010000D0000443 + 110 0 0 2 0 0D0000444 + 110 385 0 0 0 0 0 000010000D0000445 + 110 0 0 2 0 0D0000446 + 144 387 0 0 0 0 0 000020000D0000447 + 144 0 0 1 0 0D0000448 + 128 388 0 0 0 0 0 000010000D0000449 + 128 0 0 5 0 0D0000450 + 142 393 0 0 0 0 0 000010500D0000451 + 142 0 0 1 0 0D0000452 + 102 394 0 0 0 0 0 000010000D0000453 + 102 0 0 1 0 0D0000454 + 110 395 0 0 0 0 0 000010000D0000455 + 110 0 0 1 0 0D0000456 + 110 396 0 0 0 0 0 000010000D0000457 + 110 0 0 1 0 0D0000458 + 110 397 0 0 0 0 0 000010000D0000459 + 110 0 0 1 0 0D0000460 + 110 398 0 0 0 0 0 000010000D0000461 + 110 0 0 1 0 0D0000462 + 102 399 0 0 0 0 0 000010000D0000463 + 102 0 0 1 0 0D0000464 + 110 400 0 0 0 0 0 000010000D0000465 + 110 0 0 2 0 0D0000466 + 110 402 0 0 0 0 0 000010000D0000467 + 110 0 0 2 0 0D0000468 + 110 404 0 0 0 0 0 000010000D0000469 + 110 0 0 2 0 0D0000470 + 110 406 0 0 0 0 0 000010000D0000471 + 110 0 0 2 0 0D0000472 + 144 408 0 0 0 0 0 000020000D0000473 + 144 0 0 1 0 0D0000474 + 128 409 0 0 0 0 0 000010000D0000475 + 128 0 0 5 0 0D0000476 + 142 414 0 0 0 0 0 000010500D0000477 + 142 0 0 1 0 0D0000478 + 102 415 0 0 0 0 0 000010000D0000479 + 102 0 0 1 0 0D0000480 + 110 416 0 0 0 0 0 000010000D0000481 + 110 0 0 1 0 0D0000482 + 110 417 0 0 0 0 0 000010000D0000483 + 110 0 0 1 0 0D0000484 + 110 418 0 0 0 0 0 000010000D0000485 + 110 0 0 1 0 0D0000486 + 110 419 0 0 0 0 0 000010000D0000487 + 110 0 0 1 0 0D0000488 + 102 420 0 0 0 0 0 000010000D0000489 + 102 0 0 1 0 0D0000490 + 110 421 0 0 0 0 0 000010000D0000491 + 110 0 0 2 0 0D0000492 + 110 423 0 0 0 0 0 000010000D0000493 + 110 0 0 2 0 0D0000494 + 110 425 0 0 0 0 0 000010000D0000495 + 110 0 0 2 0 0D0000496 + 110 427 0 0 0 0 0 000010000D0000497 + 110 0 0 2 0 0D0000498 + 144 429 0 0 0 0 0 000020000D0000499 + 144 0 0 1 0 0D0000500 + 128 430 0 0 0 0 0 000010000D0000501 + 128 0 0 4 0 0D0000502 + 142 434 0 0 0 0 0 000010500D0000503 + 142 0 0 1 0 0D0000504 + 102 435 0 0 0 0 0 000010000D0000505 + 102 0 0 1 0 0D0000506 + 110 436 0 0 0 0 0 000010000D0000507 + 110 0 0 1 0 0D0000508 + 110 437 0 0 0 0 0 000010000D0000509 + 110 0 0 1 0 0D0000510 + 110 438 0 0 0 0 0 000010000D0000511 + 110 0 0 1 0 0D0000512 + 110 439 0 0 0 0 0 000010000D0000513 + 110 0 0 1 0 0D0000514 + 102 440 0 0 0 0 0 000010000D0000515 + 102 0 0 1 0 0D0000516 + 110 441 0 0 0 0 0 000010000D0000517 + 110 0 0 2 0 0D0000518 + 110 443 0 0 0 0 0 000010000D0000519 + 110 0 0 2 0 0D0000520 + 110 445 0 0 0 0 0 000010000D0000521 + 110 0 0 2 0 0D0000522 + 110 447 0 0 0 0 0 000010000D0000523 + 110 0 0 2 0 0D0000524 + 144 449 0 0 0 0 0 000020000D0000525 + 144 0 0 1 0 0D0000526 + 128 450 0 0 0 0 0 000010000D0000527 + 128 0 0 5 0 0D0000528 + 142 455 0 0 0 0 0 000010500D0000529 + 142 0 0 1 0 0D0000530 + 102 456 0 0 0 0 0 000010000D0000531 + 102 0 0 1 0 0D0000532 + 110 457 0 0 0 0 0 000010000D0000533 + 110 0 0 1 0 0D0000534 + 110 458 0 0 0 0 0 000010000D0000535 + 110 0 0 1 0 0D0000536 + 110 459 0 0 0 0 0 000010000D0000537 + 110 0 0 1 0 0D0000538 + 110 460 0 0 0 0 0 000010000D0000539 + 110 0 0 1 0 0D0000540 + 110 461 0 0 0 0 0 000010000D0000541 + 110 0 0 1 0 0D0000542 + 110 462 0 0 0 0 0 000010000D0000543 + 110 0 0 1 0 0D0000544 + 110 463 0 0 0 0 0 000010000D0000545 + 110 0 0 1 0 0D0000546 + 110 464 0 0 0 0 0 000010000D0000547 + 110 0 0 1 0 0D0000548 + 110 465 0 0 0 0 0 000010000D0000549 + 110 0 0 1 0 0D0000550 + 110 466 0 0 0 0 0 000010000D0000551 + 110 0 0 1 0 0D0000552 + 110 467 0 0 0 0 0 000010000D0000553 + 110 0 0 1 0 0D0000554 + 110 468 0 0 0 0 0 000010000D0000555 + 110 0 0 1 0 0D0000556 + 102 469 0 0 0 0 0 000010000D0000557 + 102 0 0 1 0 0D0000558 + 110 470 0 0 0 0 0 000010000D0000559 + 110 0 0 2 0 0D0000560 + 110 472 0 0 0 0 0 000010000D0000561 + 110 0 0 2 0 0D0000562 + 110 474 0 0 0 0 0 000010000D0000563 + 110 0 0 2 0 0D0000564 + 110 476 0 0 0 0 0 000010000D0000565 + 110 0 0 2 0 0D0000566 + 110 478 0 0 0 0 0 000010000D0000567 + 110 0 0 2 0 0D0000568 + 110 480 0 0 0 0 0 000010000D0000569 + 110 0 0 2 0 0D0000570 + 110 482 0 0 0 0 0 000010000D0000571 + 110 0 0 2 0 0D0000572 + 110 484 0 0 0 0 0 000010000D0000573 + 110 0 0 2 0 0D0000574 + 110 486 0 0 0 0 0 000010000D0000575 + 110 0 0 2 0 0D0000576 + 110 488 0 0 0 0 0 000010000D0000577 + 110 0 0 2 0 0D0000578 + 110 490 0 0 0 0 0 000010000D0000579 + 110 0 0 2 0 0D0000580 + 110 492 0 0 0 0 0 000010000D0000581 + 110 0 0 2 0 0D0000582 + 144 494 0 0 0 0 0 000020000D0000583 + 144 0 0 1 0 0D0000584 + 128 495 0 0 0 0 0 000010000D0000585 + 128 0 0 5 0 0D0000586 + 142 500 0 0 0 0 0 000010500D0000587 + 142 0 0 1 0 0D0000588 + 102 501 0 0 0 0 0 000010000D0000589 + 102 0 0 1 0 0D0000590 + 110 502 0 0 0 0 0 000010000D0000591 + 110 0 0 1 0 0D0000592 + 110 503 0 0 0 0 0 000010000D0000593 + 110 0 0 1 0 0D0000594 + 110 504 0 0 0 0 0 000010000D0000595 + 110 0 0 1 0 0D0000596 + 110 505 0 0 0 0 0 000010000D0000597 + 110 0 0 1 0 0D0000598 + 102 506 0 0 0 0 0 000010000D0000599 + 102 0 0 1 0 0D0000600 + 110 507 0 0 0 0 0 000010000D0000601 + 110 0 0 2 0 0D0000602 + 110 509 0 0 0 0 0 000010000D0000603 + 110 0 0 2 0 0D0000604 + 110 511 0 0 0 0 0 000010000D0000605 + 110 0 0 2 0 0D0000606 + 110 513 0 0 0 0 0 000010000D0000607 + 110 0 0 2 0 0D0000608 + 144 515 0 0 0 0 0 000020000D0000609 + 144 0 0 1 0 0D0000610 + 128 516 0 0 0 0 0 000010000D0000611 + 128 0 0 5 0 0D0000612 + 142 521 0 0 0 0 0 000010500D0000613 + 142 0 0 1 0 0D0000614 + 102 522 0 0 0 0 0 000010000D0000615 + 102 0 0 1 0 0D0000616 + 110 523 0 0 0 0 0 000010000D0000617 + 110 0 0 1 0 0D0000618 + 110 524 0 0 0 0 0 000010000D0000619 + 110 0 0 1 0 0D0000620 + 110 525 0 0 0 0 0 000010000D0000621 + 110 0 0 1 0 0D0000622 + 110 526 0 0 0 0 0 000010000D0000623 + 110 0 0 1 0 0D0000624 + 102 527 0 0 0 0 0 000010000D0000625 + 102 0 0 1 0 0D0000626 + 110 528 0 0 0 0 0 000010000D0000627 + 110 0 0 2 0 0D0000628 + 110 530 0 0 0 0 0 000010000D0000629 + 110 0 0 2 0 0D0000630 + 110 532 0 0 0 0 0 000010000D0000631 + 110 0 0 2 0 0D0000632 + 110 534 0 0 0 0 0 000010000D0000633 + 110 0 0 2 0 0D0000634 + 144 536 0 0 0 0 0 000020000D0000635 + 144 0 0 1 0 0D0000636 + 128 537 0 0 0 0 0 000010000D0000637 + 128 0 0 5 0 0D0000638 + 142 542 0 0 0 0 0 000010500D0000639 + 142 0 0 1 0 0D0000640 + 102 543 0 0 0 0 0 000010000D0000641 + 102 0 0 1 0 0D0000642 + 110 544 0 0 0 0 0 000010000D0000643 + 110 0 0 1 0 0D0000644 + 110 545 0 0 0 0 0 000010000D0000645 + 110 0 0 1 0 0D0000646 + 110 546 0 0 0 0 0 000010000D0000647 + 110 0 0 1 0 0D0000648 + 110 547 0 0 0 0 0 000010000D0000649 + 110 0 0 1 0 0D0000650 + 110 548 0 0 0 0 0 000010000D0000651 + 110 0 0 1 0 0D0000652 + 110 549 0 0 0 0 0 000010000D0000653 + 110 0 0 1 0 0D0000654 + 102 550 0 0 0 0 0 000010000D0000655 + 102 0 0 1 0 0D0000656 + 110 551 0 0 0 0 0 000010000D0000657 + 110 0 0 2 0 0D0000658 + 110 553 0 0 0 0 0 000010000D0000659 + 110 0 0 2 0 0D0000660 + 110 555 0 0 0 0 0 000010000D0000661 + 110 0 0 2 0 0D0000662 + 110 557 0 0 0 0 0 000010000D0000663 + 110 0 0 2 0 0D0000664 + 110 559 0 0 0 0 0 000010000D0000665 + 110 0 0 2 0 0D0000666 + 110 561 0 0 0 0 0 000010000D0000667 + 110 0 0 2 0 0D0000668 + 144 563 0 0 0 0 0 000020000D0000669 + 144 0 0 1 0 0D0000670 + 128 564 0 0 0 0 0 000010000D0000671 + 128 0 0 5 0 0D0000672 + 142 569 0 0 0 0 0 000010500D0000673 + 142 0 0 1 0 0D0000674 + 102 570 0 0 0 0 0 000010000D0000675 + 102 0 0 1 0 0D0000676 + 110 571 0 0 0 0 0 000010000D0000677 + 110 0 0 1 0 0D0000678 + 110 572 0 0 0 0 0 000010000D0000679 + 110 0 0 1 0 0D0000680 + 110 573 0 0 0 0 0 000010000D0000681 + 110 0 0 1 0 0D0000682 + 110 574 0 0 0 0 0 000010000D0000683 + 110 0 0 1 0 0D0000684 + 110 575 0 0 0 0 0 000010000D0000685 + 110 0 0 1 0 0D0000686 + 110 576 0 0 0 0 0 000010000D0000687 + 110 0 0 1 0 0D0000688 + 102 577 0 0 0 0 0 000010000D0000689 + 102 0 0 1 0 0D0000690 + 110 578 0 0 0 0 0 000010000D0000691 + 110 0 0 2 0 0D0000692 + 110 580 0 0 0 0 0 000010000D0000693 + 110 0 0 2 0 0D0000694 + 110 582 0 0 0 0 0 000010000D0000695 + 110 0 0 2 0 0D0000696 + 110 584 0 0 0 0 0 000010000D0000697 + 110 0 0 2 0 0D0000698 + 110 586 0 0 0 0 0 000010000D0000699 + 110 0 0 2 0 0D0000700 + 110 588 0 0 0 0 0 000010000D0000701 + 110 0 0 2 0 0D0000702 + 144 590 0 0 0 0 0 000020000D0000703 + 144 0 0 1 0 0D0000704 + 128 591 0 0 0 0 0 000010000D0000705 + 128 0 0 5 0 0D0000706 + 142 596 0 0 0 0 0 000010500D0000707 + 142 0 0 1 0 0D0000708 + 102 597 0 0 0 0 0 000010000D0000709 + 102 0 0 1 0 0D0000710 + 110 598 0 0 0 0 0 000010000D0000711 + 110 0 0 1 0 0D0000712 + 110 599 0 0 0 0 0 000010000D0000713 + 110 0 0 1 0 0D0000714 + 110 600 0 0 0 0 0 000010000D0000715 + 110 0 0 1 0 0D0000716 + 110 601 0 0 0 0 0 000010000D0000717 + 110 0 0 1 0 0D0000718 + 102 602 0 0 0 0 0 000010000D0000719 + 102 0 0 1 0 0D0000720 + 110 603 0 0 0 0 0 000010000D0000721 + 110 0 0 2 0 0D0000722 + 110 605 0 0 0 0 0 000010000D0000723 + 110 0 0 2 0 0D0000724 + 110 607 0 0 0 0 0 000010000D0000725 + 110 0 0 2 0 0D0000726 + 110 609 0 0 0 0 0 000010000D0000727 + 110 0 0 2 0 0D0000728 + 144 611 0 0 0 0 0 000020000D0000729 + 144 0 0 1 0 0D0000730 + 128 612 0 0 0 0 0 000010000D0000731 + 128 0 0 5 0 0D0000732 + 142 617 0 0 0 0 0 000010500D0000733 + 142 0 0 1 0 0D0000734 + 102 618 0 0 0 0 0 000010000D0000735 + 102 0 0 1 0 0D0000736 + 110 619 0 0 0 0 0 000010000D0000737 + 110 0 0 1 0 0D0000738 + 110 620 0 0 0 0 0 000010000D0000739 + 110 0 0 1 0 0D0000740 + 110 621 0 0 0 0 0 000010000D0000741 + 110 0 0 1 0 0D0000742 + 110 622 0 0 0 0 0 000010000D0000743 + 110 0 0 1 0 0D0000744 + 110 623 0 0 0 0 0 000010000D0000745 + 110 0 0 1 0 0D0000746 + 110 624 0 0 0 0 0 000010000D0000747 + 110 0 0 1 0 0D0000748 + 102 625 0 0 0 0 0 000010000D0000749 + 102 0 0 1 0 0D0000750 + 110 626 0 0 0 0 0 000010000D0000751 + 110 0 0 2 0 0D0000752 + 110 628 0 0 0 0 0 000010000D0000753 + 110 0 0 2 0 0D0000754 + 110 630 0 0 0 0 0 000010000D0000755 + 110 0 0 2 0 0D0000756 + 110 632 0 0 0 0 0 000010000D0000757 + 110 0 0 2 0 0D0000758 + 110 634 0 0 0 0 0 000010000D0000759 + 110 0 0 2 0 0D0000760 + 110 636 0 0 0 0 0 000010000D0000761 + 110 0 0 2 0 0D0000762 + 144 638 0 0 0 0 0 000020000D0000763 + 144 0 0 1 0 0D0000764 + 128 639 0 0 0 0 0 000010000D0000765 + 128 0 0 5 0 0D0000766 + 142 644 0 0 0 0 0 000010500D0000767 + 142 0 0 1 0 0D0000768 + 102 645 0 0 0 0 0 000010000D0000769 + 102 0 0 1 0 0D0000770 + 110 646 0 0 0 0 0 000010000D0000771 + 110 0 0 1 0 0D0000772 + 110 647 0 0 0 0 0 000010000D0000773 + 110 0 0 1 0 0D0000774 + 110 648 0 0 0 0 0 000010000D0000775 + 110 0 0 1 0 0D0000776 + 110 649 0 0 0 0 0 000010000D0000777 + 110 0 0 1 0 0D0000778 + 102 650 0 0 0 0 0 000010000D0000779 + 102 0 0 1 0 0D0000780 + 110 651 0 0 0 0 0 000010000D0000781 + 110 0 0 2 0 0D0000782 + 110 653 0 0 0 0 0 000010000D0000783 + 110 0 0 2 0 0D0000784 + 110 655 0 0 0 0 0 000010000D0000785 + 110 0 0 2 0 0D0000786 + 110 657 0 0 0 0 0 000010000D0000787 + 110 0 0 2 0 0D0000788 + 144 659 0 0 0 0 0 000020000D0000789 + 144 0 0 1 0 0D0000790 + 128 660 0 0 0 0 0 000010000D0000791 + 128 0 0 4 0 0D0000792 + 142 664 0 0 0 0 0 000010500D0000793 + 142 0 0 1 0 0D0000794 + 102 665 0 0 0 0 0 000010000D0000795 + 102 0 0 1 0 0D0000796 + 110 666 0 0 0 0 0 000010000D0000797 + 110 0 0 1 0 0D0000798 + 110 667 0 0 0 0 0 000010000D0000799 + 110 0 0 1 0 0D0000800 + 110 668 0 0 0 0 0 000010000D0000801 + 110 0 0 1 0 0D0000802 + 110 669 0 0 0 0 0 000010000D0000803 + 110 0 0 1 0 0D0000804 + 102 670 0 0 0 0 0 000010000D0000805 + 102 0 0 1 0 0D0000806 + 110 671 0 0 0 0 0 000010000D0000807 + 110 0 0 2 0 0D0000808 + 110 673 0 0 0 0 0 000010000D0000809 + 110 0 0 2 0 0D0000810 + 110 675 0 0 0 0 0 000010000D0000811 + 110 0 0 2 0 0D0000812 + 110 677 0 0 0 0 0 000010000D0000813 + 110 0 0 2 0 0D0000814 + 144 679 0 0 0 0 0 000020000D0000815 + 144 0 0 1 0 0D0000816 + 128 680 0 0 0 0 0 000010000D0000817 + 128 0 0 5 0 0D0000818 + 142 685 0 0 0 0 0 000010500D0000819 + 142 0 0 1 0 0D0000820 + 102 686 0 0 0 0 0 000010000D0000821 + 102 0 0 1 0 0D0000822 + 110 687 0 0 0 0 0 000010000D0000823 + 110 0 0 1 0 0D0000824 + 110 688 0 0 0 0 0 000010000D0000825 + 110 0 0 1 0 0D0000826 + 110 689 0 0 0 0 0 000010000D0000827 + 110 0 0 1 0 0D0000828 + 110 690 0 0 0 0 0 000010000D0000829 + 110 0 0 1 0 0D0000830 + 110 691 0 0 0 0 0 000010000D0000831 + 110 0 0 1 0 0D0000832 + 110 692 0 0 0 0 0 000010000D0000833 + 110 0 0 1 0 0D0000834 + 110 693 0 0 0 0 0 000010000D0000835 + 110 0 0 1 0 0D0000836 + 110 694 0 0 0 0 0 000010000D0000837 + 110 0 0 1 0 0D0000838 + 102 695 0 0 0 0 0 000010000D0000839 + 102 0 0 1 0 0D0000840 + 110 696 0 0 0 0 0 000010000D0000841 + 110 0 0 2 0 0D0000842 + 110 698 0 0 0 0 0 000010000D0000843 + 110 0 0 2 0 0D0000844 + 110 700 0 0 0 0 0 000010000D0000845 + 110 0 0 2 0 0D0000846 + 110 702 0 0 0 0 0 000010000D0000847 + 110 0 0 2 0 0D0000848 + 110 704 0 0 0 0 0 000010000D0000849 + 110 0 0 2 0 0D0000850 + 110 706 0 0 0 0 0 000010000D0000851 + 110 0 0 2 0 0D0000852 + 110 708 0 0 0 0 0 000010000D0000853 + 110 0 0 2 0 0D0000854 + 110 710 0 0 0 0 0 000010000D0000855 + 110 0 0 2 0 0D0000856 + 144 712 0 0 0 0 0 000020000D0000857 + 144 0 0 1 0 0D0000858 + 128 713 0 0 0 0 0 000010000D0000859 + 128 0 0 5 0 0D0000860 + 142 718 0 0 0 0 0 000010500D0000861 + 142 0 0 1 0 0D0000862 + 102 719 0 0 0 0 0 000010000D0000863 + 102 0 0 1 0 0D0000864 + 110 720 0 0 0 0 0 000010000D0000865 + 110 0 0 1 0 0D0000866 + 110 721 0 0 0 0 0 000010000D0000867 + 110 0 0 1 0 0D0000868 + 110 722 0 0 0 0 0 000010000D0000869 + 110 0 0 1 0 0D0000870 + 110 723 0 0 0 0 0 000010000D0000871 + 110 0 0 1 0 0D0000872 + 110 724 0 0 0 0 0 000010000D0000873 + 110 0 0 1 0 0D0000874 + 110 725 0 0 0 0 0 000010000D0000875 + 110 0 0 1 0 0D0000876 + 102 726 0 0 0 0 0 000010000D0000877 + 102 0 0 1 0 0D0000878 + 110 727 0 0 0 0 0 000010000D0000879 + 110 0 0 2 0 0D0000880 + 110 729 0 0 0 0 0 000010000D0000881 + 110 0 0 2 0 0D0000882 + 110 731 0 0 0 0 0 000010000D0000883 + 110 0 0 2 0 0D0000884 + 110 733 0 0 0 0 0 000010000D0000885 + 110 0 0 2 0 0D0000886 + 110 735 0 0 0 0 0 000010000D0000887 + 110 0 0 2 0 0D0000888 + 110 737 0 0 0 0 0 000010000D0000889 + 110 0 0 2 0 0D0000890 + 144 739 0 0 0 0 0 000020000D0000891 + 144 0 0 1 0 0D0000892 + 128 740 0 0 0 0 0 000010000D0000893 + 128 0 0 5 0 0D0000894 + 142 745 0 0 0 0 0 000010500D0000895 + 142 0 0 1 0 0D0000896 + 102 746 0 0 0 0 0 000010000D0000897 + 102 0 0 1 0 0D0000898 + 110 747 0 0 0 0 0 000010000D0000899 + 110 0 0 1 0 0D0000900 + 110 748 0 0 0 0 0 000010000D0000901 + 110 0 0 1 0 0D0000902 + 110 749 0 0 0 0 0 000010000D0000903 + 110 0 0 1 0 0D0000904 + 110 750 0 0 0 0 0 000010000D0000905 + 110 0 0 1 0 0D0000906 + 102 751 0 0 0 0 0 000010000D0000907 + 102 0 0 1 0 0D0000908 + 110 752 0 0 0 0 0 000010000D0000909 + 110 0 0 2 0 0D0000910 + 110 754 0 0 0 0 0 000010000D0000911 + 110 0 0 2 0 0D0000912 + 110 756 0 0 0 0 0 000010000D0000913 + 110 0 0 2 0 0D0000914 + 110 758 0 0 0 0 0 000010000D0000915 + 110 0 0 2 0 0D0000916 + 144 760 0 0 0 0 0 000020000D0000917 + 144 0 0 1 0 0D0000918 + 128 761 0 0 0 0 0 000010000D0000919 + 128 0 0 6 0 0D0000920 + 142 767 0 0 0 0 0 000010500D0000921 + 142 0 0 1 0 0D0000922 + 102 768 0 0 0 0 0 000010000D0000923 + 102 0 0 1 0 0D0000924 + 110 769 0 0 0 0 0 000010000D0000925 + 110 0 0 1 0 0D0000926 + 110 770 0 0 0 0 0 000010000D0000927 + 110 0 0 1 0 0D0000928 + 110 771 0 0 0 0 0 000010000D0000929 + 110 0 0 1 0 0D0000930 + 110 772 0 0 0 0 0 000010000D0000931 + 110 0 0 1 0 0D0000932 + 102 773 0 0 0 0 0 000010000D0000933 + 102 0 0 1 0 0D0000934 + 110 774 0 0 0 0 0 000010000D0000935 + 110 0 0 2 0 0D0000936 + 110 776 0 0 0 0 0 000010000D0000937 + 110 0 0 2 0 0D0000938 + 110 778 0 0 0 0 0 000010000D0000939 + 110 0 0 2 0 0D0000940 + 110 780 0 0 0 0 0 000010000D0000941 + 110 0 0 2 0 0D0000942 + 144 782 0 0 0 0 0 000020000D0000943 + 144 0 0 1 0 0D0000944 + 128 783 0 0 0 0 0 000010000D0000945 + 128 0 0 5 0 0D0000946 + 142 788 0 0 0 0 0 000010500D0000947 + 142 0 0 1 0 0D0000948 + 102 789 0 0 0 0 0 000010000D0000949 + 102 0 0 1 0 0D0000950 + 110 790 0 0 0 0 0 000010000D0000951 + 110 0 0 1 0 0D0000952 + 110 791 0 0 0 0 0 000010000D0000953 + 110 0 0 1 0 0D0000954 + 110 792 0 0 0 0 0 000010000D0000955 + 110 0 0 1 0 0D0000956 + 110 793 0 0 0 0 0 000010000D0000957 + 110 0 0 1 0 0D0000958 + 102 794 0 0 0 0 0 000010000D0000959 + 102 0 0 1 0 0D0000960 + 110 795 0 0 0 0 0 000010000D0000961 + 110 0 0 2 0 0D0000962 + 110 797 0 0 0 0 0 000010000D0000963 + 110 0 0 2 0 0D0000964 + 110 799 0 0 0 0 0 000010000D0000965 + 110 0 0 2 0 0D0000966 + 110 801 0 0 0 0 0 000010000D0000967 + 110 0 0 2 0 0D0000968 + 144 803 0 0 0 0 0 000020000D0000969 + 144 0 0 1 0 0D0000970 + 128 804 0 0 0 0 0 000010000D0000971 + 128 0 0 5 0 0D0000972 + 142 809 0 0 0 0 0 000010500D0000973 + 142 0 0 1 0 0D0000974 + 102 810 0 0 0 0 0 000010000D0000975 + 102 0 0 1 0 0D0000976 + 110 811 0 0 0 0 0 000010000D0000977 + 110 0 0 1 0 0D0000978 + 110 812 0 0 0 0 0 000010000D0000979 + 110 0 0 1 0 0D0000980 + 110 813 0 0 0 0 0 000010000D0000981 + 110 0 0 1 0 0D0000982 + 110 814 0 0 0 0 0 000010000D0000983 + 110 0 0 1 0 0D0000984 + 102 815 0 0 0 0 0 000010000D0000985 + 102 0 0 1 0 0D0000986 + 110 816 0 0 0 0 0 000010000D0000987 + 110 0 0 2 0 0D0000988 + 110 818 0 0 0 0 0 000010000D0000989 + 110 0 0 2 0 0D0000990 + 110 820 0 0 0 0 0 000010000D0000991 + 110 0 0 2 0 0D0000992 + 110 822 0 0 0 0 0 000010000D0000993 + 110 0 0 2 0 0D0000994 + 144 824 0 0 0 0 0 000020000D0000995 + 144 0 0 1 0 0D0000996 + 128 825 0 0 0 0 0 000010000D0000997 + 128 0 0 5 0 0D0000998 + 142 830 0 0 0 0 0 000010500D0000999 + 142 0 0 1 0 0D0001000 + 102 831 0 0 0 0 0 000010000D0001001 + 102 0 0 1 0 0D0001002 + 110 832 0 0 0 0 0 000010000D0001003 + 110 0 0 1 0 0D0001004 + 110 833 0 0 0 0 0 000010000D0001005 + 110 0 0 1 0 0D0001006 + 110 834 0 0 0 0 0 000010000D0001007 + 110 0 0 1 0 0D0001008 + 110 835 0 0 0 0 0 000010000D0001009 + 110 0 0 1 0 0D0001010 + 102 836 0 0 0 0 0 000010000D0001011 + 102 0 0 1 0 0D0001012 + 110 837 0 0 0 0 0 000010000D0001013 + 110 0 0 2 0 0D0001014 + 110 839 0 0 0 0 0 000010000D0001015 + 110 0 0 2 0 0D0001016 + 110 841 0 0 0 0 0 000010000D0001017 + 110 0 0 2 0 0D0001018 + 110 843 0 0 0 0 0 000010000D0001019 + 110 0 0 2 0 0D0001020 + 144 845 0 0 0 0 0 000020000D0001021 + 144 0 0 1 0 0D0001022 + 128 846 0 0 0 0 0 000010000D0001023 + 128 0 0 4 0 0D0001024 + 142 850 0 0 0 0 0 000010500D0001025 + 142 0 0 1 0 0D0001026 + 102 851 0 0 0 0 0 000010000D0001027 + 102 0 0 1 0 0D0001028 + 110 852 0 0 0 0 0 000010000D0001029 + 110 0 0 1 0 0D0001030 + 110 853 0 0 0 0 0 000010000D0001031 + 110 0 0 1 0 0D0001032 + 110 854 0 0 0 0 0 000010000D0001033 + 110 0 0 1 0 0D0001034 + 110 855 0 0 0 0 0 000010000D0001035 + 110 0 0 1 0 0D0001036 + 102 856 0 0 0 0 0 000010000D0001037 + 102 0 0 1 0 0D0001038 + 110 857 0 0 0 0 0 000010000D0001039 + 110 0 0 2 0 0D0001040 + 110 859 0 0 0 0 0 000010000D0001041 + 110 0 0 2 0 0D0001042 + 110 861 0 0 0 0 0 000010000D0001043 + 110 0 0 2 0 0D0001044 + 110 863 0 0 0 0 0 000010000D0001045 + 110 0 0 2 0 0D0001046 + 144 865 0 0 0 0 0 000020000D0001047 + 144 0 0 1 0 0D0001048 + 128 866 0 0 0 0 0 000010000D0001049 + 128 0 0 4 0 0D0001050 + 142 870 0 0 0 0 0 000010500D0001051 + 142 0 0 1 0 0D0001052 + 102 871 0 0 0 0 0 000010000D0001053 + 102 0 0 1 0 0D0001054 + 110 872 0 0 0 0 0 000010000D0001055 + 110 0 0 1 0 0D0001056 + 110 873 0 0 0 0 0 000010000D0001057 + 110 0 0 1 0 0D0001058 + 110 874 0 0 0 0 0 000010000D0001059 + 110 0 0 1 0 0D0001060 + 110 875 0 0 0 0 0 000010000D0001061 + 110 0 0 1 0 0D0001062 + 102 876 0 0 0 0 0 000010000D0001063 + 102 0 0 1 0 0D0001064 + 110 877 0 0 0 0 0 000010000D0001065 + 110 0 0 2 0 0D0001066 + 110 879 0 0 0 0 0 000010000D0001067 + 110 0 0 2 0 0D0001068 + 110 881 0 0 0 0 0 000010000D0001069 + 110 0 0 2 0 0D0001070 + 110 883 0 0 0 0 0 000010000D0001071 + 110 0 0 2 0 0D0001072 + 144 885 0 0 0 0 0 000020000D0001073 + 144 0 0 1 0 0D0001074 + 128 886 0 0 0 0 0 000010000D0001075 + 128 0 0 5 0 0D0001076 + 142 891 0 0 0 0 0 000010500D0001077 + 142 0 0 1 0 0D0001078 + 102 892 0 0 0 0 0 000010000D0001079 + 102 0 0 1 0 0D0001080 + 110 893 0 0 0 0 0 000010000D0001081 + 110 0 0 1 0 0D0001082 + 110 894 0 0 0 0 0 000010000D0001083 + 110 0 0 1 0 0D0001084 + 110 895 0 0 0 0 0 000010000D0001085 + 110 0 0 1 0 0D0001086 + 110 896 0 0 0 0 0 000010000D0001087 + 110 0 0 1 0 0D0001088 + 102 897 0 0 0 0 0 000010000D0001089 + 102 0 0 1 0 0D0001090 + 110 898 0 0 0 0 0 000010000D0001091 + 110 0 0 2 0 0D0001092 + 110 900 0 0 0 0 0 000010000D0001093 + 110 0 0 2 0 0D0001094 + 110 902 0 0 0 0 0 000010000D0001095 + 110 0 0 2 0 0D0001096 + 110 904 0 0 0 0 0 000010000D0001097 + 110 0 0 2 0 0D0001098 + 144 906 0 0 0 0 0 000020000D0001099 + 144 0 0 1 0 0D0001100 + 128 907 0 0 0 0 0 000010000D0001101 + 128 0 0 5 0 0D0001102 + 142 912 0 0 0 0 0 000010500D0001103 + 142 0 0 1 0 0D0001104 + 102 913 0 0 0 0 0 000010000D0001105 + 102 0 0 1 0 0D0001106 + 110 914 0 0 0 0 0 000010000D0001107 + 110 0 0 1 0 0D0001108 + 110 915 0 0 0 0 0 000010000D0001109 + 110 0 0 1 0 0D0001110 + 110 916 0 0 0 0 0 000010000D0001111 + 110 0 0 1 0 0D0001112 + 110 917 0 0 0 0 0 000010000D0001113 + 110 0 0 1 0 0D0001114 + 102 918 0 0 0 0 0 000010000D0001115 + 102 0 0 1 0 0D0001116 + 110 919 0 0 0 0 0 000010000D0001117 + 110 0 0 2 0 0D0001118 + 110 921 0 0 0 0 0 000010000D0001119 + 110 0 0 2 0 0D0001120 + 110 923 0 0 0 0 0 000010000D0001121 + 110 0 0 2 0 0D0001122 + 110 925 0 0 0 0 0 000010000D0001123 + 110 0 0 2 0 0D0001124 + 144 927 0 0 0 0 0 000020000D0001125 + 144 0 0 1 0 0D0001126 + 128 928 0 0 0 0 0 000010000D0001127 + 128 0 0 6 0 0D0001128 + 142 934 0 0 0 0 0 000010500D0001129 + 142 0 0 1 0 0D0001130 + 102 935 0 0 0 0 0 000010000D0001131 + 102 0 0 1 0 0D0001132 + 110 936 0 0 0 0 0 000010000D0001133 + 110 0 0 1 0 0D0001134 + 110 937 0 0 0 0 0 000010000D0001135 + 110 0 0 1 0 0D0001136 + 110 938 0 0 0 0 0 000010000D0001137 + 110 0 0 1 0 0D0001138 + 110 939 0 0 0 0 0 000010000D0001139 + 110 0 0 1 0 0D0001140 + 102 940 0 0 0 0 0 000010000D0001141 + 102 0 0 1 0 0D0001142 + 110 941 0 0 0 0 0 000010000D0001143 + 110 0 0 2 0 0D0001144 + 110 943 0 0 0 0 0 000010000D0001145 + 110 0 0 2 0 0D0001146 + 110 945 0 0 0 0 0 000010000D0001147 + 110 0 0 2 0 0D0001148 + 110 947 0 0 0 0 0 000010000D0001149 + 110 0 0 2 0 0D0001150 + 402 949 0 0 0 0 0 000020000D0001151 + 402 0 0 1 1 0D0001152 + 144 950 0 0 0 0 0 000020000D0001153 + 144 0 0 1 0 0D0001154 + 128 951 0 0 0 0 0 000010000D0001155 + 128 0 0 5 0 0D0001156 + 142 956 0 0 0 0 0 000010500D0001157 + 142 0 0 1 0 0D0001158 + 102 957 0 0 0 0 0 000010000D0001159 + 102 0 0 1 0 0D0001160 + 110 958 0 0 0 0 0 000010000D0001161 + 110 0 0 1 0 0D0001162 + 110 959 0 0 0 0 0 000010000D0001163 + 110 0 0 1 0 0D0001164 + 110 960 0 0 0 0 0 000010000D0001165 + 110 0 0 1 0 0D0001166 + 110 961 0 0 0 0 0 000010000D0001167 + 110 0 0 1 0 0D0001168 + 102 962 0 0 0 0 0 000010000D0001169 + 102 0 0 1 0 0D0001170 + 110 963 0 0 0 0 0 000010000D0001171 + 110 0 0 2 0 0D0001172 + 110 965 0 0 0 0 0 000010000D0001173 + 110 0 0 2 0 0D0001174 + 110 967 0 0 0 0 0 000010000D0001175 + 110 0 0 2 0 0D0001176 + 110 969 0 0 0 0 0 000010000D0001177 + 110 0 0 2 0 0D0001178 + 144 971 0 0 0 0 0 000020000D0001179 + 144 0 0 1 0 0D0001180 + 128 972 0 0 0 0 0 000010000D0001181 + 128 0 0 4 0 0D0001182 + 142 976 0 0 0 0 0 000010500D0001183 + 142 0 0 1 0 0D0001184 + 102 977 0 0 0 0 0 000010000D0001185 + 102 0 0 1 0 0D0001186 + 126 978 0 0 0 0 0 000010000D0001187 + 126 0 0 19 0 0D0001188 + 110 997 0 0 0 0 0 000010000D0001189 + 110 0 0 1 0 0D0001190 + 110 998 0 0 0 0 0 000010000D0001191 + 110 0 0 1 0 0D0001192 + 110 999 0 0 0 0 0 000010000D0001193 + 110 0 0 1 0 0D0001194 + 126 1000 0 0 0 0 0 000010000D0001195 + 126 0 0 19 0 0D0001196 + 110 1019 0 0 0 0 0 000010000D0001197 + 110 0 0 1 0 0D0001198 + 110 1020 0 0 0 0 0 000010000D0001199 + 110 0 0 1 0 0D0001200 + 110 1021 0 0 0 0 0 000010000D0001201 + 110 0 0 1 0 0D0001202 + 102 1022 0 0 0 0 0 000010000D0001203 + 102 0 0 1 0 0D0001204 + 110 1023 0 0 0 0 0 000010000D0001205 + 110 0 0 2 0 0D0001206 + 110 1025 0 0 0 0 0 000010000D0001207 + 110 0 0 2 0 0D0001208 + 110 1027 0 0 0 0 0 000010000D0001209 + 110 0 0 2 0 0D0001210 + 110 1029 0 0 0 0 0 000010000D0001211 + 110 0 0 2 0 0D0001212 + 110 1031 0 0 0 0 0 000010000D0001213 + 110 0 0 2 0 0D0001214 + 110 1033 0 0 0 0 0 000010000D0001215 + 110 0 0 2 0 0D0001216 + 110 1035 0 0 0 0 0 000010000D0001217 + 110 0 0 2 0 0D0001218 + 110 1037 0 0 0 0 0 000010000D0001219 + 110 0 0 2 0 0D0001220 + 144 1039 0 0 0 0 0 000020000D0001221 + 144 0 0 1 0 0D0001222 + 128 1040 0 0 0 0 0 000010000D0001223 + 128 0 0 5 0 0D0001224 + 142 1045 0 0 0 0 0 000010500D0001225 + 142 0 0 1 0 0D0001226 + 102 1046 0 0 0 0 0 000010000D0001227 + 102 0 0 1 0 0D0001228 + 110 1047 0 0 0 0 0 000010000D0001229 + 110 0 0 1 0 0D0001230 + 110 1048 0 0 0 0 0 000010000D0001231 + 110 0 0 1 0 0D0001232 + 110 1049 0 0 0 0 0 000010000D0001233 + 110 0 0 1 0 0D0001234 + 110 1050 0 0 0 0 0 000010000D0001235 + 110 0 0 1 0 0D0001236 + 102 1051 0 0 0 0 0 000010000D0001237 + 102 0 0 1 0 0D0001238 + 110 1052 0 0 0 0 0 000010000D0001239 + 110 0 0 2 0 0D0001240 + 110 1054 0 0 0 0 0 000010000D0001241 + 110 0 0 2 0 0D0001242 + 110 1056 0 0 0 0 0 000010000D0001243 + 110 0 0 2 0 0D0001244 + 110 1058 0 0 0 0 0 000010000D0001245 + 110 0 0 2 0 0D0001246 + 144 1060 0 0 0 0 0 000020000D0001247 + 144 0 0 1 0 0D0001248 + 128 1061 0 0 0 0 0 000010000D0001249 + 128 0 0 4 0 0D0001250 + 142 1065 0 0 0 0 0 000010500D0001251 + 142 0 0 1 0 0D0001252 + 102 1066 0 0 0 0 0 000010000D0001253 + 102 0 0 1 0 0D0001254 + 110 1067 0 0 0 0 0 000010000D0001255 + 110 0 0 1 0 0D0001256 + 110 1068 0 0 0 0 0 000010000D0001257 + 110 0 0 1 0 0D0001258 + 110 1069 0 0 0 0 0 000010000D0001259 + 110 0 0 1 0 0D0001260 + 126 1070 0 0 0 0 0 000010000D0001261 + 126 0 0 19 0 0D0001262 + 110 1089 0 0 0 0 0 000010000D0001263 + 110 0 0 1 0 0D0001264 + 110 1090 0 0 0 0 0 000010000D0001265 + 110 0 0 1 0 0D0001266 + 110 1091 0 0 0 0 0 000010000D0001267 + 110 0 0 1 0 0D0001268 + 126 1092 0 0 0 0 0 000010000D0001269 + 126 0 0 19 0 0D0001270 + 102 1111 0 0 0 0 0 000010000D0001271 + 102 0 0 1 0 0D0001272 + 110 1112 0 0 0 0 0 000010000D0001273 + 110 0 0 2 0 0D0001274 + 110 1114 0 0 0 0 0 000010000D0001275 + 110 0 0 2 0 0D0001276 + 110 1116 0 0 0 0 0 000010000D0001277 + 110 0 0 2 0 0D0001278 + 110 1118 0 0 0 0 0 000010000D0001279 + 110 0 0 2 0 0D0001280 + 110 1120 0 0 0 0 0 000010000D0001281 + 110 0 0 2 0 0D0001282 + 110 1122 0 0 0 0 0 000010000D0001283 + 110 0 0 2 0 0D0001284 + 110 1124 0 0 0 0 0 000010000D0001285 + 110 0 0 2 0 0D0001286 + 110 1126 0 0 0 0 0 000010000D0001287 + 110 0 0 2 0 0D0001288 + 144 1128 0 0 0 0 0 000020000D0001289 + 144 0 0 1 0 0D0001290 + 128 1129 0 0 0 0 0 000010000D0001291 + 128 0 0 5 0 0D0001292 + 142 1134 0 0 0 0 0 000010500D0001293 + 142 0 0 1 0 0D0001294 + 102 1135 0 0 0 0 0 000010000D0001295 + 102 0 0 1 0 0D0001296 + 110 1136 0 0 0 0 0 000010000D0001297 + 110 0 0 1 0 0D0001298 + 110 1137 0 0 0 0 0 000010000D0001299 + 110 0 0 1 0 0D0001300 + 110 1138 0 0 0 0 0 000010000D0001301 + 110 0 0 1 0 0D0001302 + 110 1139 0 0 0 0 0 000010000D0001303 + 110 0 0 1 0 0D0001304 + 102 1140 0 0 0 0 0 000010000D0001305 + 102 0 0 1 0 0D0001306 + 110 1141 0 0 0 0 0 000010000D0001307 + 110 0 0 2 0 0D0001308 + 110 1143 0 0 0 0 0 000010000D0001309 + 110 0 0 2 0 0D0001310 + 110 1145 0 0 0 0 0 000010000D0001311 + 110 0 0 2 0 0D0001312 + 110 1147 0 0 0 0 0 000010000D0001313 + 110 0 0 2 0 0D0001314 + 144 1149 0 0 0 0 0 000020000D0001315 + 144 0 0 1 0 0D0001316 + 128 1150 0 0 0 0 0 000010000D0001317 + 128 0 0 4 0 0D0001318 + 142 1154 0 0 0 0 0 000010500D0001319 + 142 0 0 1 0 0D0001320 + 102 1155 0 0 0 0 0 000010000D0001321 + 102 0 0 1 0 0D0001322 + 110 1156 0 0 0 0 0 000010000D0001323 + 110 0 0 1 0 0D0001324 + 110 1157 0 0 0 0 0 000010000D0001325 + 110 0 0 1 0 0D0001326 + 110 1158 0 0 0 0 0 000010000D0001327 + 110 0 0 1 0 0D0001328 + 110 1159 0 0 0 0 0 000010000D0001329 + 110 0 0 1 0 0D0001330 + 102 1160 0 0 0 0 0 000010000D0001331 + 102 0 0 1 0 0D0001332 + 110 1161 0 0 0 0 0 000010000D0001333 + 110 0 0 2 0 0D0001334 + 110 1163 0 0 0 0 0 000010000D0001335 + 110 0 0 2 0 0D0001336 + 110 1165 0 0 0 0 0 000010000D0001337 + 110 0 0 2 0 0D0001338 + 110 1167 0 0 0 0 0 000010000D0001339 + 110 0 0 2 0 0D0001340 + 144 1169 0 0 0 0 0 000020000D0001341 + 144 0 0 1 0 0D0001342 + 128 1170 0 0 0 0 0 000010000D0001343 + 128 0 0 5 0 0D0001344 + 142 1175 0 0 0 0 0 000010500D0001345 + 142 0 0 1 0 0D0001346 + 102 1176 0 0 0 0 0 000010000D0001347 + 102 0 0 1 0 0D0001348 + 110 1177 0 0 0 0 0 000010000D0001349 + 110 0 0 1 0 0D0001350 + 110 1178 0 0 0 0 0 000010000D0001351 + 110 0 0 1 0 0D0001352 + 110 1179 0 0 0 0 0 000010000D0001353 + 110 0 0 1 0 0D0001354 + 110 1180 0 0 0 0 0 000010000D0001355 + 110 0 0 1 0 0D0001356 + 102 1181 0 0 0 0 0 000010000D0001357 + 102 0 0 1 0 0D0001358 + 110 1182 0 0 0 0 0 000010000D0001359 + 110 0 0 2 0 0D0001360 + 110 1184 0 0 0 0 0 000010000D0001361 + 110 0 0 2 0 0D0001362 + 110 1186 0 0 0 0 0 000010000D0001363 + 110 0 0 2 0 0D0001364 + 110 1188 0 0 0 0 0 000010000D0001365 + 110 0 0 2 0 0D0001366 + 144 1190 0 0 0 0 0 000020000D0001367 + 144 0 0 1 0 0D0001368 + 128 1191 0 0 0 0 0 000010000D0001369 + 128 0 0 5 0 0D0001370 + 142 1196 0 0 0 0 0 000010500D0001371 + 142 0 0 1 0 0D0001372 + 102 1197 0 0 0 0 0 000010000D0001373 + 102 0 0 1 0 0D0001374 + 110 1198 0 0 0 0 0 000010000D0001375 + 110 0 0 1 0 0D0001376 + 110 1199 0 0 0 0 0 000010000D0001377 + 110 0 0 1 0 0D0001378 + 110 1200 0 0 0 0 0 000010000D0001379 + 110 0 0 1 0 0D0001380 + 110 1201 0 0 0 0 0 000010000D0001381 + 110 0 0 1 0 0D0001382 + 102 1202 0 0 0 0 0 000010000D0001383 + 102 0 0 1 0 0D0001384 + 110 1203 0 0 0 0 0 000010000D0001385 + 110 0 0 2 0 0D0001386 + 110 1205 0 0 0 0 0 000010000D0001387 + 110 0 0 2 0 0D0001388 + 110 1207 0 0 0 0 0 000010000D0001389 + 110 0 0 2 0 0D0001390 + 110 1209 0 0 0 0 0 000010000D0001391 + 110 0 0 2 0 0D0001392 + 144 1211 0 0 0 0 0 000020000D0001393 + 144 0 0 1 0 0D0001394 + 128 1212 0 0 0 0 0 000010000D0001395 + 128 0 0 5 0 0D0001396 + 142 1217 0 0 0 0 0 000010500D0001397 + 142 0 0 1 0 0D0001398 + 102 1218 0 0 0 0 0 000010000D0001399 + 102 0 0 1 0 0D0001400 + 110 1219 0 0 0 0 0 000010000D0001401 + 110 0 0 1 0 0D0001402 + 110 1220 0 0 0 0 0 000010000D0001403 + 110 0 0 1 0 0D0001404 + 110 1221 0 0 0 0 0 000010000D0001405 + 110 0 0 1 0 0D0001406 + 110 1222 0 0 0 0 0 000010000D0001407 + 110 0 0 1 0 0D0001408 + 102 1223 0 0 0 0 0 000010000D0001409 + 102 0 0 1 0 0D0001410 + 110 1224 0 0 0 0 0 000010000D0001411 + 110 0 0 2 0 0D0001412 + 110 1226 0 0 0 0 0 000010000D0001413 + 110 0 0 2 0 0D0001414 + 110 1228 0 0 0 0 0 000010000D0001415 + 110 0 0 2 0 0D0001416 + 110 1230 0 0 0 0 0 000010000D0001417 + 110 0 0 2 0 0D0001418 + 144 1232 0 0 0 0 0 000020000D0001419 + 144 0 0 1 0 0D0001420 + 128 1233 0 0 0 0 0 000010000D0001421 + 128 0 0 5 0 0D0001422 + 142 1238 0 0 0 0 0 000010500D0001423 + 142 0 0 1 0 0D0001424 + 102 1239 0 0 0 0 0 000010000D0001425 + 102 0 0 1 0 0D0001426 + 110 1240 0 0 0 0 0 000010000D0001427 + 110 0 0 1 0 0D0001428 + 110 1241 0 0 0 0 0 000010000D0001429 + 110 0 0 1 0 0D0001430 + 110 1242 0 0 0 0 0 000010000D0001431 + 110 0 0 1 0 0D0001432 + 110 1243 0 0 0 0 0 000010000D0001433 + 110 0 0 1 0 0D0001434 + 102 1244 0 0 0 0 0 000010000D0001435 + 102 0 0 1 0 0D0001436 + 110 1245 0 0 0 0 0 000010000D0001437 + 110 0 0 2 0 0D0001438 + 110 1247 0 0 0 0 0 000010000D0001439 + 110 0 0 2 0 0D0001440 + 110 1249 0 0 0 0 0 000010000D0001441 + 110 0 0 2 0 0D0001442 + 110 1251 0 0 0 0 0 000010000D0001443 + 110 0 0 2 0 0D0001444 +402,3,3,297,1151; 0000001P0000001 +402,10,5,31,73,99,141,167,193,219,245,271; 0000003P0000002 +144,7,1,0,9; 0000005P0000003 +128,1,1,1,1,0,0,1,0,0,0.,0.,2.49,2.49,0.,0.,3.5,3.5,1.,1.,1.,1., 0000007P0000004 +0.246527203,-6.896226933E-02,3.937007874E-04,0.148495707, 0000007P0000005 +-6.896226933E-02,3.937007874E-04,0.246527203,6.883300626E-02, 0000007P0000006 +3.937007874E-04,0.148495707,6.883300626E-02,3.937007874E-04,0., 0000007P0000007 +2.49,0.,3.5; 0000007P0000008 +142,0,7,11,21,3; 0000009P0000009 +102,4,13,15,17,19; 0000011P0000010 +110,2.49,0.,0.,2.49,3.5,0.; 0000013P0000011 +110,2.49,3.5,0.,0.,3.5,0.; 0000015P0000012 +110,0.,3.5,0.,0.,0.,0.; 0000017P0000013 +110,0.,0.,0.,2.49,0.,0.; 0000019P0000014 +102,4,23,25,27,29; 0000021P0000015 +110,0.148495707,-6.896226933E-02,3.937007874E-04,0.148495707, 0000023P0000016 +6.883300626E-02,3.937007874E-04; 0000023P0000017 +110,0.148495707,6.883300626E-02,3.937007874E-04,0.246527203, 0000025P0000018 +6.883300626E-02,3.937007874E-04; 0000025P0000019 +110,0.246527203,6.883300626E-02,3.937007874E-04,0.246527203, 0000027P0000020 +-6.896226933E-02,3.937007874E-04; 0000027P0000021 +110,0.246527203,-6.896226933E-02,3.937007874E-04,0.148495707, 0000029P0000022 +-6.896226933E-02,3.937007874E-04; 0000029P0000023 +144,33,1,0,35; 0000031P0000024 +128,1,1,1,1,0,0,1,0,0,-1.960149291,-1.960149291,2.739850709, 0000033P0000025 +2.739850709,-3.75,-3.75,3.75,3.75,1.,1.,1.,1.,0.148495707, 0000033P0000026 +-0.147702427,0.185433071,0.148495707,-0.147702427, 0000033P0000027 +3.937007874E-04,0.148495707,0.147573164,0.185433071,0.148495707, 0000033P0000028 +0.147573164,3.937007874E-04,-1.960149291,2.739850709,-3.75,3.75; 0000033P0000029 +142,0,33,37,55,3; 0000035P0000030 +102,8,39,41,43,45,47,49,51,53; 0000037P0000031 +110,8.534221219E-02,-3.75,0.,1.085342212,-1.75,0.; 0000039P0000032 +110,1.085342212,-1.75,0.,2.739850709,-1.75,0.; 0000041P0000033 +110,2.739850709,-1.75,0.,2.739850709,1.75,0.; 0000043P0000034 +110,2.739850709,1.75,0.,1.085342212,1.75,0.; 0000045P0000035 +110,1.085342212,1.75,0.,8.534221219E-02,3.75,0.; 0000047P0000036 +110,8.534221219E-02,3.75,0.,-1.960149291,3.75,0.; 0000049P0000037 +110,-1.960149291,3.75,0.,-1.960149291,-3.75,0.; 0000051P0000038 +110,-1.960149291,-3.75,0.,8.534221219E-02,-3.75,0.; 0000053P0000039 +102,8,57,59,61,63,65,67,69,71; 0000055P0000040 +110,0.148495707,-0.147702427,0.104901909,0.148495707, 0000057P0000041 +-6.896226933E-02,6.55318306E-02; 0000057P0000042 +110,0.148495707,-6.896226933E-02,6.55318306E-02,0.148495707, 0000059P0000043 +-6.896226933E-02,3.937007874E-04; 0000059P0000044 +110,0.148495707,-6.896226933E-02,3.937007874E-04,0.148495707, 0000061P0000045 +6.883300626E-02,3.937007874E-04; 0000061P0000046 +110,0.148495707,6.883300626E-02,3.937007874E-04,0.148495707, 0000063P0000047 +6.883300626E-02,6.55318306E-02; 0000063P0000048 +110,0.148495707,6.883300626E-02,6.55318306E-02,0.148495707, 0000065P0000049 +0.147573164,0.104901909; 0000065P0000050 +110,0.148495707,0.147573164,0.104901909,0.148495707,0.147573164, 0000067P0000051 +0.185433071; 0000067P0000052 +110,0.148495707,0.147573164,0.185433071,0.148495707, 0000069P0000053 +-0.147702427,0.185433071; 0000069P0000054 +110,0.148495707,-0.147702427,0.185433071,0.148495707, 0000071P0000055 +-0.147702427,0.104901909; 0000071P0000056 +144,75,1,0,77; 0000073P0000057 +128,1,1,1,1,0,0,1,0,0,0.,0.,1.654508497,1.654508497,-2.49,-2.49, 0000075P0000058 +0.,0.,1.,1.,1.,1.,0.148495707,6.883300626E-02,3.937007874E-04, 0000075P0000059 +0.148495707,6.883300626E-02,6.55318306E-02,0.246527203, 0000075P0000060 +6.883300626E-02,3.937007874E-04,0.246527203,6.883300626E-02, 0000075P0000061 +6.55318306E-02,0.,1.654508497,-2.49,0.; 0000075P0000062 +142,0,75,79,89,3; 0000077P0000063 +102,4,81,83,85,87; 0000079P0000064 +110,0.,-2.49,0.,1.654508497,-2.49,0.; 0000081P0000065 +110,1.654508497,-2.49,0.,1.654508497,0.,0.; 0000083P0000066 +110,1.654508497,0.,0.,0.,0.,0.; 0000085P0000067 +110,0.,0.,0.,0.,-2.49,0.; 0000087P0000068 +102,4,91,93,95,97; 0000089P0000069 +110,0.148495707,6.883300626E-02,3.937007874E-04,0.148495707, 0000091P0000070 +6.883300626E-02,6.55318306E-02; 0000091P0000071 +110,0.148495707,6.883300626E-02,6.55318306E-02,0.246527203, 0000093P0000072 +6.883300626E-02,6.55318306E-02; 0000093P0000073 +110,0.246527203,6.883300626E-02,6.55318306E-02,0.246527203, 0000095P0000074 +6.883300626E-02,3.937007874E-04; 0000095P0000075 +110,0.246527203,6.883300626E-02,3.937007874E-04,0.148495707, 0000097P0000076 +6.883300626E-02,3.937007874E-04; 0000097P0000077 +144,101,1,0,103; 0000099P0000078 +128,1,1,1,1,0,0,1,0,0,-1.960149291,-1.960149291,2.739850709, 0000101P0000079 +2.739850709,-3.75,-3.75,3.75,3.75,1.,1.,1.,1.,0.246527203, 0000101P0000080 +-0.147702427,0.185433071,0.246527203,-0.147702427, 0000101P0000081 +3.937007874E-04,0.246527203,0.147573164,0.185433071,0.246527203, 0000101P0000082 +0.147573164,3.937007874E-04,-1.960149291,2.739850709,-3.75,3.75; 0000101P0000083 +142,0,101,105,123,3; 0000103P0000084 +102,8,107,109,111,113,115,117,119,121; 0000105P0000085 +110,-1.960149291,-3.75,0.,8.534221219E-02,-3.75,0.; 0000107P0000086 +110,8.534221219E-02,-3.75,0.,1.085342212,-1.75,0.; 0000109P0000087 +110,1.085342212,-1.75,0.,2.739850709,-1.75,0.; 0000111P0000088 +110,2.739850709,-1.75,0.,2.739850709,1.75,0.; 0000113P0000089 +110,2.739850709,1.75,0.,1.085342212,1.75,0.; 0000115P0000090 +110,1.085342212,1.75,0.,8.534221219E-02,3.75,0.; 0000117P0000091 +110,8.534221219E-02,3.75,0.,-1.960149291,3.75,0.; 0000119P0000092 +110,-1.960149291,3.75,0.,-1.960149291,-3.75,0.; 0000121P0000093 +102,8,125,127,129,131,133,135,137,139; 0000123P0000094 +110,0.246527203,-0.147702427,0.185433071,0.246527203, 0000125P0000095 +-0.147702427,0.104901909; 0000125P0000096 +110,0.246527203,-0.147702427,0.104901909,0.246527203, 0000127P0000097 +-6.896226933E-02,6.55318306E-02; 0000127P0000098 +110,0.246527203,-6.896226933E-02,6.55318306E-02,0.246527203, 0000129P0000099 +-6.896226933E-02,3.937007874E-04; 0000129P0000100 +110,0.246527203,-6.896226933E-02,3.937007874E-04,0.246527203, 0000131P0000101 +6.883300626E-02,3.937007874E-04; 0000131P0000102 +110,0.246527203,6.883300626E-02,3.937007874E-04,0.246527203, 0000133P0000103 +6.883300626E-02,6.55318306E-02; 0000133P0000104 +110,0.246527203,6.883300626E-02,6.55318306E-02,0.246527203, 0000135P0000105 +0.147573164,0.104901909; 0000135P0000106 +110,0.246527203,0.147573164,0.104901909,0.246527203,0.147573164, 0000137P0000107 +0.185433071; 0000137P0000108 +110,0.246527203,0.147573164,0.185433071,0.246527203, 0000139P0000109 +-0.147702427,0.185433071; 0000139P0000110 +144,143,1,0,145; 0000141P0000111 +128,1,1,1,1,0,0,1,0,0,0.,0.,1.654508497,1.654508497,-2.49,-2.49, 0000143P0000112 +0.,0.,1.,1.,1.,1.,0.148495707,-6.896226933E-02,6.55318306E-02, 0000143P0000113 +0.148495707,-6.896226933E-02,3.937007874E-04,0.246527203, 0000143P0000114 +-6.896226933E-02,6.55318306E-02,0.246527203,-6.896226933E-02, 0000143P0000115 +3.937007874E-04,0.,1.654508497,-2.49,0.; 0000143P0000116 +142,0,143,147,157,3; 0000145P0000117 +102,4,149,151,153,155; 0000147P0000118 +110,0.,-2.49,0.,1.654508497,-2.49,0.; 0000149P0000119 +110,1.654508497,-2.49,0.,1.654508497,0.,0.; 0000151P0000120 +110,1.654508497,0.,0.,0.,0.,0.; 0000153P0000121 +110,0.,0.,0.,0.,-2.49,0.; 0000155P0000122 +102,4,159,161,163,165; 0000157P0000123 +110,0.148495707,-6.896226933E-02,6.55318306E-02,0.148495707, 0000159P0000124 +-6.896226933E-02,3.937007874E-04; 0000159P0000125 +110,0.148495707,-6.896226933E-02,3.937007874E-04,0.246527203, 0000161P0000126 +-6.896226933E-02,3.937007874E-04; 0000161P0000127 +110,0.246527203,-6.896226933E-02,3.937007874E-04,0.246527203, 0000163P0000128 +-6.896226933E-02,6.55318306E-02; 0000163P0000129 +110,0.246527203,-6.896226933E-02,6.55318306E-02,0.148495707, 0000165P0000130 +-6.896226933E-02,6.55318306E-02; 0000165P0000131 +144,169,1,0,171; 0000167P0000132 +128,1,1,1,1,0,0,1,0,0,0.,0.,2.49,2.49,0.,0.,2.236067977, 0000169P0000133 +2.236067977,1.,1.,1.,1.,0.246527203,-0.147702427,0.104901909, 0000169P0000134 +0.148495707,-0.147702427,0.104901909,0.246527203, 0000169P0000135 +-6.896226933E-02,6.55318306E-02,0.148495707,-6.896226933E-02, 0000169P0000136 +6.55318306E-02,0.,2.49,0.,2.236067977; 0000169P0000137 +142,0,169,173,183,3; 0000171P0000138 +102,4,175,177,179,181; 0000173P0000139 +110,2.49,0.,0.,2.49,2.236067977,0.; 0000175P0000140 +110,2.49,2.236067977,0.,0.,2.236067977,0.; 0000177P0000141 +110,0.,2.236067977,0.,0.,0.,0.; 0000179P0000142 +110,0.,0.,0.,2.49,0.,0.; 0000181P0000143 +102,4,185,187,189,191; 0000183P0000144 +110,0.148495707,-0.147702427,0.104901909,0.148495707, 0000185P0000145 +-6.896226933E-02,6.55318306E-02; 0000185P0000146 +110,0.148495707,-6.896226933E-02,6.55318306E-02,0.246527203, 0000187P0000147 +-6.896226933E-02,6.55318306E-02; 0000187P0000148 +110,0.246527203,-6.896226933E-02,6.55318306E-02,0.246527203, 0000189P0000149 +-0.147702427,0.104901909; 0000189P0000150 +110,0.246527203,-0.147702427,0.104901909,0.148495707, 0000191P0000151 +-0.147702427,0.104901909; 0000191P0000152 +144,195,1,0,197; 0000193P0000153 +128,1,1,1,1,0,0,1,0,0,0.,0.,2.045491503,2.045491503,-2.49,-2.49, 0000195P0000154 +0.,0.,1.,1.,1.,1.,0.148495707,-0.147702427,0.185433071, 0000195P0000155 +0.148495707,-0.147702427,0.104901909,0.246527203,-0.147702427, 0000195P0000156 +0.185433071,0.246527203,-0.147702427,0.104901909,0.,2.045491503, 0000195P0000157 +-2.49,0.; 0000195P0000158 +142,0,195,199,209,3; 0000197P0000159 +102,4,201,203,205,207; 0000199P0000160 +110,0.,-2.49,0.,2.045491503,-2.49,0.; 0000201P0000161 +110,2.045491503,-2.49,0.,2.045491503,0.,0.; 0000203P0000162 +110,2.045491503,0.,0.,0.,0.,0.; 0000205P0000163 +110,0.,0.,0.,0.,-2.49,0.; 0000207P0000164 +102,4,211,213,215,217; 0000209P0000165 +110,0.148495707,-0.147702427,0.185433071,0.148495707, 0000211P0000166 +-0.147702427,0.104901909; 0000211P0000167 +110,0.148495707,-0.147702427,0.104901909,0.246527203, 0000213P0000168 +-0.147702427,0.104901909; 0000213P0000169 +110,0.246527203,-0.147702427,0.104901909,0.246527203, 0000215P0000170 +-0.147702427,0.185433071; 0000215P0000171 +110,0.246527203,-0.147702427,0.185433071,0.148495707, 0000217P0000172 +-0.147702427,0.185433071; 0000217P0000173 +144,221,1,0,223; 0000219P0000174 +128,1,1,1,1,0,0,1,0,0,-2.49,-2.49,0.,0.,-7.5,-7.5,0.,0.,1.,1., 0000221P0000175 +1.,1.,0.148495707,-0.147702427,0.185433071,0.246527203, 0000221P0000176 +-0.147702427,0.185433071,0.148495707,0.147573164,0.185433071, 0000221P0000177 +0.246527203,0.147573164,0.185433071,-2.49,0.,-7.5,0.; 0000221P0000178 +142,0,221,225,235,3; 0000223P0000179 +102,4,227,229,231,233; 0000225P0000180 +110,-2.49,0.,0.,-2.49,-7.5,0.; 0000227P0000181 +110,-2.49,-7.5,0.,0.,-7.5,0.; 0000229P0000182 +110,0.,-7.5,0.,0.,0.,0.; 0000231P0000183 +110,0.,0.,0.,-2.49,0.,0.; 0000233P0000184 +102,4,237,239,241,243; 0000235P0000185 +110,0.148495707,0.147573164,0.185433071,0.148495707, 0000237P0000186 +-0.147702427,0.185433071; 0000237P0000187 +110,0.148495707,-0.147702427,0.185433071,0.246527203, 0000239P0000188 +-0.147702427,0.185433071; 0000239P0000189 +110,0.246527203,-0.147702427,0.185433071,0.246527203, 0000241P0000190 +0.147573164,0.185433071; 0000241P0000191 +110,0.246527203,0.147573164,0.185433071,0.148495707,0.147573164, 0000243P0000192 +0.185433071; 0000243P0000193 +144,247,1,0,249; 0000245P0000194 +128,1,1,1,1,0,0,1,0,0,0.,0.,2.045491503,2.045491503,-2.49,-2.49, 0000247P0000195 +0.,0.,1.,1.,1.,1.,0.148495707,0.147573164,0.104901909, 0000247P0000196 +0.148495707,0.147573164,0.185433071,0.246527203,0.147573164, 0000247P0000197 +0.104901909,0.246527203,0.147573164,0.185433071,0.,2.045491503, 0000247P0000198 +-2.49,0.; 0000247P0000199 +142,0,247,251,261,3; 0000249P0000200 +102,4,253,255,257,259; 0000251P0000201 +110,0.,-2.49,0.,2.045491503,-2.49,0.; 0000253P0000202 +110,2.045491503,-2.49,0.,2.045491503,0.,0.; 0000255P0000203 +110,2.045491503,0.,0.,0.,0.,0.; 0000257P0000204 +110,0.,0.,0.,0.,-2.49,0.; 0000259P0000205 +102,4,263,265,267,269; 0000261P0000206 +110,0.148495707,0.147573164,0.104901909,0.148495707,0.147573164, 0000263P0000207 +0.185433071; 0000263P0000208 +110,0.148495707,0.147573164,0.185433071,0.246527203,0.147573164, 0000265P0000209 +0.185433071; 0000265P0000210 +110,0.246527203,0.147573164,0.185433071,0.246527203,0.147573164, 0000267P0000211 +0.104901909; 0000267P0000212 +110,0.246527203,0.147573164,0.104901909,0.148495707,0.147573164, 0000269P0000213 +0.104901909; 0000269P0000214 +144,273,1,0,275; 0000271P0000215 +128,1,1,1,1,0,0,1,0,0,0.,0.,2.49,2.49,0.,0.,2.236067977, 0000273P0000216 +2.236067977,1.,1.,1.,1.,0.246527203,6.883300626E-02, 0000273P0000217 +6.55318306E-02,0.148495707,6.883300626E-02,6.55318306E-02, 0000273P0000218 +0.246527203,0.147573164,0.104901909,0.148495707,0.147573164, 0000273P0000219 +0.104901909,0.,2.49,0.,2.236067977; 0000273P0000220 +142,0,273,277,287,3; 0000275P0000221 +102,4,279,281,283,285; 0000277P0000222 +110,2.49,0.,0.,2.49,2.236067977,0.; 0000279P0000223 +110,2.49,2.236067977,0.,0.,2.236067977,0.; 0000281P0000224 +110,0.,2.236067977,0.,0.,0.,0.; 0000283P0000225 +110,0.,0.,0.,2.49,0.,0.; 0000285P0000226 +102,4,289,291,293,295; 0000287P0000227 +110,0.148495707,6.883300626E-02,6.55318306E-02,0.148495707, 0000289P0000228 +0.147573164,0.104901909; 0000289P0000229 +110,0.148495707,0.147573164,0.104901909,0.246527203,0.147573164, 0000291P0000230 +0.104901909; 0000291P0000231 +110,0.246527203,0.147573164,0.104901909,0.246527203, 0000293P0000232 +6.883300626E-02,6.55318306E-02; 0000293P0000233 +110,0.246527203,6.883300626E-02,6.55318306E-02,0.148495707, 0000295P0000234 +6.883300626E-02,6.55318306E-02; 0000295P0000235 +402,27,299,341,367,447,473,499,525,583,609,635,669,703,729,763, 0000297P0000236 +789,815,857,891,917,943,969,995,1021,1047,1073,1099,1125; 0000297P0000237 +144,301,1,0,303; 0000299P0000238 +128,1,1,1,1,0,0,1,0,0,0.,0.,4.7,4.7,0.,0.,8.,8.,1.,1.,1.,1., 0000301P0000239 +-0.147173585,0.157415683,0.185433071,-0.147173585,0.157415683, 0000301P0000240 +3.937007874E-04,-0.147173585,-0.157544946,0.185433071, 0000301P0000241 +-0.147173585,-0.157544946,3.937007874E-04,0.,4.7,0.,8.; 0000301P0000242 +142,0,301,305,323,3; 0000303P0000243 +102,8,307,309,311,313,315,317,319,321; 0000305P0000244 +110,3.2,2.,0.,4.7,2.,0.; 0000307P0000245 +110,4.7,2.,0.,4.7,6.,0.; 0000309P0000246 +110,4.7,6.,0.,3.2,6.,0.; 0000311P0000247 +126,24,3,0,0,1,0,0.,0.,0.,0.,0.101639454,0.203278907, 0000313P0000248 +0.304918361,0.406557814,0.508197268,0.609836721,0.711476175, 0000313P0000249 +0.813115628,0.914755082,1.016394535,1.118033989,1.219673442, 0000313P0000250 +1.321312896,1.422952349,1.524591803,1.626231256,1.72787071, 0000313P0000251 +1.829510163,1.931149617,2.03278907,2.134428524,2.236067977, 0000313P0000252 +2.236067977,2.236067977,2.236067977,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000313P0000253 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,3.2,6.,0., 0000313P0000254 +3.184848485,6.03030303,0.,3.154545455,6.090909091,0., 0000313P0000255 +3.109090909,6.181818182,0.,3.063636364,6.272727273,0., 0000313P0000256 +3.018181818,6.363636364,0.,2.972727273,6.454545455,0., 0000313P0000257 +2.927272727,6.545454545,0.,2.881818182,6.636363636,0., 0000313P0000258 +2.836363636,6.727272727,0.,2.790909091,6.818181818,0., 0000313P0000259 +2.745454545,6.909090909,0.,2.7,7.,0.,2.654545455,7.090909091,0., 0000313P0000260 +2.609090909,7.181818182,0.,2.563636364,7.272727273,0., 0000313P0000261 +2.518181818,7.363636364,0.,2.472727273,7.454545455,0., 0000313P0000262 +2.427272727,7.545454545,0.,2.381818182,7.636363636,0., 0000313P0000263 +2.336363636,7.727272727,0.,2.290909091,7.818181818,0., 0000313P0000264 +2.245454545,7.909090909,0.,2.215151515,7.96969697,0.,2.2,8.,0., 0000313P0000265 +0.,2.236067977,0.,0.,1.; 0000313P0000266 +110,2.2,8.,0.,0.,8.,0.; 0000315P0000267 +110,0.,8.,0.,0.,0.,0.; 0000317P0000268 +110,0.,0.,0.,2.2,0.,0.; 0000319P0000269 +126,24,3,0,0,1,0,0.,0.,0.,0.,0.101639454,0.203278907, 0000321P0000270 +0.304918361,0.406557814,0.508197268,0.609836721,0.711476175, 0000321P0000271 +0.813115628,0.914755082,1.016394535,1.118033989,1.219673442, 0000321P0000272 +1.321312896,1.422952349,1.524591803,1.626231256,1.72787071, 0000321P0000273 +1.829510163,1.931149617,2.03278907,2.134428524,2.236067977, 0000321P0000274 +2.236067977,2.236067977,2.236067977,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000321P0000275 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,2.2,0.,0., 0000321P0000276 +2.215151515,3.03030303E-02,0.,2.245454545,9.090909091E-02,0., 0000321P0000277 +2.290909091,0.181818182,0.,2.336363636,0.272727273,0., 0000321P0000278 +2.381818182,0.363636364,0.,2.427272727,0.454545455,0., 0000321P0000279 +2.472727273,0.545454545,0.,2.518181818,0.636363636,0., 0000321P0000280 +2.563636364,0.727272727,0.,2.609090909,0.818181818,0., 0000321P0000281 +2.654545455,0.909090909,0.,2.7,1.,0.,2.745454545,1.090909091,0., 0000321P0000282 +2.790909091,1.181818182,0.,2.836363636,1.272727273,0., 0000321P0000283 +2.881818182,1.363636364,0.,2.927272727,1.454545455,0., 0000321P0000284 +2.972727273,1.545454545,0.,3.018181818,1.636363636,0., 0000321P0000285 +3.063636364,1.727272727,0.,3.109090909,1.818181818,0., 0000321P0000286 +3.154545455,1.909090909,0.,3.184848485,1.96969697,0.,3.2,2.,0., 0000321P0000287 +0.,2.236067977,0.,0.,1.; 0000321P0000288 +102,8,325,327,329,331,333,335,337,339; 0000323P0000289 +110,-0.147173585,7.867552595E-02,5.94488189E-02,-0.147173585, 0000325P0000290 +7.867552595E-02,3.937007874E-04; 0000325P0000291 +110,-0.147173585,7.867552595E-02,3.937007874E-04,-0.147173585, 0000327P0000292 +-7.880478901E-02,3.937007874E-04; 0000327P0000293 +110,-0.147173585,-7.880478901E-02,3.937007874E-04,-0.147173585, 0000329P0000294 +-7.880478901E-02,5.94488189E-02; 0000329P0000295 +110,-0.147173585,-7.880478901E-02,5.94488189E-02,-0.147173585, 0000331P0000296 +-0.157544946,9.881889764E-02; 0000331P0000297 +110,-0.147173585,-0.157544946,9.881889764E-02,-0.147173585, 0000333P0000298 +-0.157544946,0.185433071; 0000333P0000299 +110,-0.147173585,-0.157544946,0.185433071,-0.147173585, 0000335P0000300 +0.157415683,0.185433071; 0000335P0000301 +110,-0.147173585,0.157415683,0.185433071,-0.147173585, 0000337P0000302 +0.157415683,9.881889764E-02; 0000337P0000303 +110,-0.147173585,0.157415683,9.881889764E-02,-0.147173585, 0000339P0000304 +7.867552595E-02,5.94488189E-02; 0000339P0000305 +144,343,1,0,345; 0000341P0000306 +128,1,1,1,1,0,0,1,0,0,0.,0.,1.5,1.5,0.,0.,2.5,2.5,1.,1.,1.,1., 0000343P0000307 +-0.245598782,7.867552595E-02,3.937007874E-04,-0.245598782, 0000343P0000308 +7.867552595E-02,5.94488189E-02,-0.147173585,7.867552595E-02, 0000343P0000309 +3.937007874E-04,-0.147173585,7.867552595E-02,5.94488189E-02,0., 0000343P0000310 +1.5,0.,2.5; 0000343P0000311 +142,0,343,347,357,3; 0000345P0000312 +102,4,349,351,353,355; 0000347P0000313 +110,1.5,2.5,0.,0.,2.5,0.; 0000349P0000314 +110,0.,2.5,0.,0.,0.,0.; 0000351P0000315 +110,0.,0.,0.,1.5,0.,0.; 0000353P0000316 +110,1.5,0.,0.,1.5,2.5,0.; 0000355P0000317 +102,4,359,361,363,365; 0000357P0000318 +110,-0.147173585,7.867552595E-02,5.94488189E-02,-0.147173585, 0000359P0000319 +7.867552595E-02,3.937007874E-04; 0000359P0000320 +110,-0.147173585,7.867552595E-02,3.937007874E-04,-0.245598782, 0000361P0000321 +7.867552595E-02,3.937007874E-04; 0000361P0000322 +110,-0.245598782,7.867552595E-02,3.937007874E-04,-0.245598782, 0000363P0000323 +7.867552595E-02,5.94488189E-02; 0000363P0000324 +110,-0.245598782,7.867552595E-02,5.94488189E-02,-0.147173585, 0000365P0000325 +7.867552595E-02,5.94488189E-02; 0000365P0000326 +144,369,1,1,371,425; 0000367P0000327 +128,1,1,1,1,0,0,1,0,0,-6.25,-6.25,6.25,6.25,-6.25,-6.25,6.25, 0000369P0000328 +6.25,1.,1.,1.,1.,-0.245598782,-0.246127624,3.937007874E-04, 0000369P0000329 +0.246527203,-0.246127624,3.937007874E-04,-0.245598782, 0000369P0000330 +0.245998361,3.937007874E-04,0.246527203,0.245998361, 0000369P0000331 +3.937007874E-04,-6.25,6.25,-6.25,6.25; 0000369P0000332 +142,0,369,373,399,3; 0000371P0000333 +102,12,375,377,379,381,383,385,387,389,391,393,395,397; 0000373P0000334 +110,-3.75,-2.,0.,-6.25,-2.,0.; 0000375P0000335 +110,-6.25,-2.,0.,-6.25,-6.25,0.; 0000377P0000336 +110,-6.25,-6.25,0.,6.25,-6.25,0.; 0000379P0000337 +110,6.25,-6.25,-0.,6.25,-2.,-0.; 0000381P0000338 +110,6.25,-2.,-0.,3.75,-2.,-0.; 0000383P0000339 +110,3.75,-2.,0.,3.75,2.,0.; 0000385P0000340 +110,3.75,2.,0.,6.25,2.,0.; 0000387P0000341 +110,6.25,2.,0.,6.25,6.25,0.; 0000389P0000342 +110,6.25,6.25,0.,-6.25,6.25,0.; 0000391P0000343 +110,-6.25,6.25,0.,-6.25,2.,0.; 0000393P0000344 +110,-6.25,2.,0.,-3.75,2.,0.; 0000395P0000345 +110,-3.75,2.,0.,-3.75,-2.,0.; 0000397P0000346 +102,12,401,403,405,407,409,411,413,415,417,419,421,423; 0000399P0000347 +110,-0.147173585,-7.880478901E-02,3.937007874E-04,-0.245598782, 0000401P0000348 +-7.880478901E-02,3.937007874E-04; 0000401P0000349 +110,-0.245598782,-7.880478901E-02,3.937007874E-04,-0.245598782, 0000403P0000350 +-0.246127624,3.937007874E-04; 0000403P0000351 +110,-0.245598782,-0.246127624,3.937007874E-04,0.246527203, 0000405P0000352 +-0.246127624,3.937007874E-04; 0000405P0000353 +110,0.246527203,-0.246127624,3.937007874E-04,0.246527203, 0000407P0000354 +-7.880478901E-02,3.937007874E-04; 0000407P0000355 +110,0.246527203,-7.880478901E-02,3.937007874E-04,0.148102006, 0000409P0000356 +-7.880478901E-02,3.937007874E-04; 0000409P0000357 +110,0.148102006,-7.880478901E-02,3.937007874E-04,0.148102006, 0000411P0000358 +7.867552595E-02,3.937007874E-04; 0000411P0000359 +110,0.148102006,7.867552595E-02,3.937007874E-04,0.246527203, 0000413P0000360 +7.867552595E-02,3.937007874E-04; 0000413P0000361 +110,0.246527203,7.867552595E-02,3.937007874E-04,0.246527203, 0000415P0000362 +0.245998361,3.937007874E-04; 0000415P0000363 +110,0.246527203,0.245998361,3.937007874E-04,-0.245598782, 0000417P0000364 +0.245998361,3.937007874E-04; 0000417P0000365 +110,-0.245598782,0.245998361,3.937007874E-04,-0.245598782, 0000419P0000366 +7.867552595E-02,3.937007874E-04; 0000419P0000367 +110,-0.245598782,7.867552595E-02,3.937007874E-04,-0.147173585, 0000421P0000368 +7.867552595E-02,3.937007874E-04; 0000421P0000369 +110,-0.147173585,7.867552595E-02,3.937007874E-04,-0.147173585, 0000423P0000370 +-7.880478901E-02,3.937007874E-04; 0000423P0000371 +142,0,369,427,437,3; 0000425P0000372 +102,4,429,431,433,435; 0000427P0000373 +110,0.,-0.25,0.,-0.5,-0.25,0.; 0000429P0000374 +110,-0.5,-0.25,0.,-0.5,0.25,0.; 0000431P0000375 +110,-0.5,0.25,0.,0.,0.25,0.; 0000433P0000376 +110,0.,0.25,-0.,0.,-0.25,-0.; 0000435P0000377 +102,4,439,441,443,445; 0000437P0000378 +110,4.642104648E-04,-9.907151218E-03,3.937007874E-04, 0000439P0000379 +-1.922082891E-02,-9.907151218E-03,3.937007874E-04; 0000439P0000380 +110,-1.922082891E-02,-9.907151218E-03,3.937007874E-04, 0000441P0000381 +-1.922082891E-02,9.777888152E-03,3.937007874E-04; 0000441P0000382 +110,-1.922082891E-02,9.777888152E-03,3.937007874E-04, 0000443P0000383 +4.642104648E-04,9.777888152E-03,3.937007874E-04; 0000443P0000384 +110,4.642104648E-04,9.777888152E-03,3.937007874E-04, 0000445P0000385 +4.642104648E-04,-9.907151218E-03,3.937007874E-04; 0000445P0000386 +144,449,1,0,451; 0000447P0000387 +128,1,1,1,1,0,0,1,0,0,0.,0.,1.5,1.5,0.,0.,2.5,2.5,1.,1.,1.,1., 0000449P0000388 +-0.245598782,-7.880478901E-02,5.94488189E-02,-0.245598782, 0000449P0000389 +-7.880478901E-02,3.937007874E-04,-0.147173585,-7.880478901E-02, 0000449P0000390 +5.94488189E-02,-0.147173585,-7.880478901E-02,3.937007874E-04,0., 0000449P0000391 +1.5,0.,2.5; 0000449P0000392 +142,0,449,453,463,3; 0000451P0000393 +102,4,455,457,459,461; 0000453P0000394 +110,1.5,2.5,0.,0.,2.5,0.; 0000455P0000395 +110,0.,2.5,0.,0.,0.,0.; 0000457P0000396 +110,0.,0.,0.,1.5,0.,0.; 0000459P0000397 +110,1.5,0.,0.,1.5,2.5,0.; 0000461P0000398 +102,4,465,467,469,471; 0000463P0000399 +110,-0.147173585,-7.880478901E-02,3.937007874E-04,-0.147173585, 0000465P0000400 +-7.880478901E-02,5.94488189E-02; 0000465P0000401 +110,-0.147173585,-7.880478901E-02,5.94488189E-02,-0.245598782, 0000467P0000402 +-7.880478901E-02,5.94488189E-02; 0000467P0000403 +110,-0.245598782,-7.880478901E-02,5.94488189E-02,-0.245598782, 0000469P0000404 +-7.880478901E-02,3.937007874E-04; 0000469P0000405 +110,-0.245598782,-7.880478901E-02,3.937007874E-04,-0.147173585, 0000471P0000406 +-7.880478901E-02,3.937007874E-04; 0000471P0000407 +144,475,1,0,477; 0000473P0000408 +128,1,1,1,1,0,0,1,0,0,0.,0.,2.5,2.5,0.,0.,2.236067977, 0000475P0000409 +2.236067977,1.,1.,1.,1.,-0.245598782,-7.880478901E-02, 0000475P0000410 +5.94488189E-02,-0.147173585,-7.880478901E-02,5.94488189E-02, 0000475P0000411 +-0.245598782,-0.157544946,9.881889764E-02,-0.147173585, 0000475P0000412 +-0.157544946,9.881889764E-02,0.,2.5,0.,2.236067977; 0000475P0000413 +142,0,475,479,489,3; 0000477P0000414 +102,4,481,483,485,487; 0000479P0000415 +110,2.5,2.100541963E-13,0.,2.5,2.236067977,0.; 0000481P0000416 +110,2.5,2.236067977,0.,0.,2.236067977,0.; 0000483P0000417 +110,0.,2.236067977,0.,0.,2.100541963E-13,0.; 0000485P0000418 +110,0.,0.,0.,2.5,0.,0.; 0000487P0000419 +102,4,491,493,495,497; 0000489P0000420 +110,-0.147173585,-7.880478901E-02,5.94488189E-02,-0.147173585, 0000491P0000421 +-0.157544946,9.881889764E-02; 0000491P0000422 +110,-0.147173585,-0.157544946,9.881889764E-02,-0.245598782, 0000493P0000423 +-0.157544946,9.881889764E-02; 0000493P0000424 +110,-0.245598782,-0.157544946,9.881889764E-02,-0.245598782, 0000495P0000425 +-7.880478901E-02,5.94488189E-02; 0000495P0000426 +110,-0.245598782,-7.880478901E-02,5.94488189E-02,-0.147173585, 0000497P0000427 +-7.880478901E-02,5.94488189E-02; 0000497P0000428 +144,501,1,0,503; 0000499P0000429 +128,1,1,1,1,0,0,1,0,0,0.,0.,2.2,2.2,0.,0.,2.5,2.5,1.,1.,1.,1., 0000501P0000430 +-0.245598782,-0.157544946,0.185433071,-0.245598782,-0.157544946, 0000501P0000431 +9.881889764E-02,-0.147173585,-0.157544946,0.185433071, 0000501P0000432 +-0.147173585,-0.157544946,9.881889764E-02,0.,2.2,0.,2.5; 0000501P0000433 +142,0,501,505,515,3; 0000503P0000434 +102,4,507,509,511,513; 0000505P0000435 +110,2.2,2.5,0.,0.,2.5,0.; 0000507P0000436 +110,0.,2.5,0.,0.,0.,0.; 0000509P0000437 +110,0.,0.,0.,2.2,0.,0.; 0000511P0000438 +110,2.2,0.,0.,2.2,2.5,0.; 0000513P0000439 +102,4,517,519,521,523; 0000515P0000440 +110,-0.147173585,-0.157544946,9.881889764E-02,-0.147173585, 0000517P0000441 +-0.157544946,0.185433071; 0000517P0000442 +110,-0.147173585,-0.157544946,0.185433071,-0.245598782, 0000519P0000443 +-0.157544946,0.185433071; 0000519P0000444 +110,-0.245598782,-0.157544946,0.185433071,-0.245598782, 0000521P0000445 +-0.157544946,9.881889764E-02; 0000521P0000446 +110,-0.245598782,-0.157544946,9.881889764E-02,-0.147173585, 0000523P0000447 +-0.157544946,9.881889764E-02; 0000523P0000448 +144,527,1,0,529; 0000525P0000449 +128,1,1,1,1,0,0,1,0,0,-6.25,-6.25,6.25,6.25,-6.25,-6.25,6.25, 0000527P0000450 +6.25,1.,1.,1.,1.,-0.245598782,-0.246127624,0.185433071, 0000527P0000451 +0.246527203,-0.246127624,0.185433071,-0.245598782,0.245998361, 0000527P0000452 +0.185433071,0.246527203,0.245998361,0.185433071,-6.25,6.25, 0000527P0000453 +-6.25,6.25; 0000527P0000454 +142,0,527,531,557,3; 0000529P0000455 +102,12,533,535,537,539,541,543,545,547,549,551,553,555; 0000531P0000456 +110,-3.75,-4.,0.,-6.25,-4.,0.; 0000533P0000457 +110,-6.25,-4.,0.,-6.25,-6.25,0.; 0000535P0000458 +110,-6.25,-6.25,0.,6.25,-6.25,0.; 0000537P0000459 +110,6.25,-6.25,-0.,6.25,-4.,-0.; 0000539P0000460 +110,6.25,-4.,0.,3.75,-4.,0.; 0000541P0000461 +110,3.75,-4.,0.,3.75,4.,0.; 0000543P0000462 +110,3.75,4.,0.,6.25,4.,0.; 0000545P0000463 +110,6.25,4.,0.,6.25,6.25,0.; 0000547P0000464 +110,6.25,6.25,0.,-6.25,6.25,0.; 0000549P0000465 +110,-6.25,6.25,0.,-6.25,4.,0.; 0000551P0000466 +110,-6.25,4.,0.,-3.75,4.,0.; 0000553P0000467 +110,-3.75,4.,0.,-3.75,-4.,0.; 0000555P0000468 +102,12,559,561,563,565,567,569,571,573,575,577,579,581; 0000557P0000469 +110,-0.147173585,-0.157544946,0.185433071,-0.245598782, 0000559P0000470 +-0.157544946,0.185433071; 0000559P0000471 +110,-0.245598782,-0.157544946,0.185433071,-0.245598782, 0000561P0000472 +-0.246127624,0.185433071; 0000561P0000473 +110,-0.245598782,-0.246127624,0.185433071,0.246527203, 0000563P0000474 +-0.246127624,0.185433071; 0000563P0000475 +110,0.246527203,-0.246127624,0.185433071,0.246527203, 0000565P0000476 +-0.157544946,0.185433071; 0000565P0000477 +110,0.246527203,-0.157544946,0.185433071,0.148102006, 0000567P0000478 +-0.157544946,0.185433071; 0000567P0000479 +110,0.148102006,-0.157544946,0.185433071,0.148102006, 0000569P0000480 +0.157415683,0.185433071; 0000569P0000481 +110,0.148102006,0.157415683,0.185433071,0.246527203,0.157415683, 0000571P0000482 +0.185433071; 0000571P0000483 +110,0.246527203,0.157415683,0.185433071,0.246527203,0.245998361, 0000573P0000484 +0.185433071; 0000573P0000485 +110,0.246527203,0.245998361,0.185433071,-0.245598782, 0000575P0000486 +0.245998361,0.185433071; 0000575P0000487 +110,-0.245598782,0.245998361,0.185433071,-0.245598782, 0000577P0000488 +0.157415683,0.185433071; 0000577P0000489 +110,-0.245598782,0.157415683,0.185433071,-0.147173585, 0000579P0000490 +0.157415683,0.185433071; 0000579P0000491 +110,-0.147173585,0.157415683,0.185433071,-0.147173585, 0000581P0000492 +-0.157544946,0.185433071; 0000581P0000493 +144,585,1,0,587; 0000583P0000494 +128,1,1,1,1,0,0,1,0,0,0.,0.,2.2,2.2,0.,0.,2.5,2.5,1.,1.,1.,1., 0000585P0000495 +-0.245598782,0.157415683,9.881889764E-02,-0.245598782, 0000585P0000496 +0.157415683,0.185433071,-0.147173585,0.157415683, 0000585P0000497 +9.881889764E-02,-0.147173585,0.157415683,0.185433071,0.,2.2,0., 0000585P0000498 +2.5; 0000585P0000499 +142,0,585,589,599,3; 0000587P0000500 +102,4,591,593,595,597; 0000589P0000501 +110,2.2,2.5,0.,0.,2.5,0.; 0000591P0000502 +110,0.,2.5,0.,0.,0.,0.; 0000593P0000503 +110,0.,0.,0.,2.2,0.,0.; 0000595P0000504 +110,2.2,0.,0.,2.2,2.5,0.; 0000597P0000505 +102,4,601,603,605,607; 0000599P0000506 +110,-0.147173585,0.157415683,0.185433071,-0.147173585, 0000601P0000507 +0.157415683,9.881889764E-02; 0000601P0000508 +110,-0.147173585,0.157415683,9.881889764E-02,-0.245598782, 0000603P0000509 +0.157415683,9.881889764E-02; 0000603P0000510 +110,-0.245598782,0.157415683,9.881889764E-02,-0.245598782, 0000605P0000511 +0.157415683,0.185433071; 0000605P0000512 +110,-0.245598782,0.157415683,0.185433071,-0.147173585, 0000607P0000513 +0.157415683,0.185433071; 0000607P0000514 +144,611,1,0,613; 0000609P0000515 +128,1,1,1,1,0,0,1,0,0,0.,0.,2.5,2.5,0.,0.,2.236067977, 0000611P0000516 +2.236067977,1.,1.,1.,1.,-0.245598782,0.157415683, 0000611P0000517 +9.881889764E-02,-0.147173585,0.157415683,9.881889764E-02, 0000611P0000518 +-0.245598782,7.867552595E-02,5.94488189E-02,-0.147173585, 0000611P0000519 +7.867552595E-02,5.94488189E-02,0.,2.5,0.,2.236067977; 0000611P0000520 +142,0,611,615,625,3; 0000613P0000521 +102,4,617,619,621,623; 0000615P0000522 +110,2.5,2.09610107E-13,0.,2.5,2.236067977,0.; 0000617P0000523 +110,2.5,2.236067977,0.,0.,2.236067977,0.; 0000619P0000524 +110,0.,2.236067977,0.,0.,2.09610107E-13,0.; 0000621P0000525 +110,0.,0.,0.,2.5,0.,0.; 0000623P0000526 +102,4,627,629,631,633; 0000625P0000527 +110,-0.147173585,0.157415683,9.881889764E-02,-0.147173585, 0000627P0000528 +7.867552595E-02,5.94488189E-02; 0000627P0000529 +110,-0.147173585,7.867552595E-02,5.94488189E-02,-0.245598782, 0000629P0000530 +7.867552595E-02,5.94488189E-02; 0000629P0000531 +110,-0.245598782,7.867552595E-02,5.94488189E-02,-0.245598782, 0000631P0000532 +0.157415683,9.881889764E-02; 0000631P0000533 +110,-0.245598782,0.157415683,9.881889764E-02,-0.147173585, 0000633P0000534 +0.157415683,9.881889764E-02; 0000633P0000535 +144,637,1,0,639; 0000635P0000536 +128,1,1,1,1,0,0,1,0,0,0.,0.,4.7,4.7,8.25,8.25,12.5,12.5,1.,1., 0000637P0000537 +1.,1.,-0.245598782,7.867552595E-02,3.937007874E-04,-0.245598782, 0000637P0000538 +7.867552595E-02,0.185433071,-0.245598782,0.245998361, 0000637P0000539 +3.937007874E-04,-0.245598782,0.245998361,0.185433071,0.,4.7, 0000637P0000540 +8.25,12.5; 0000637P0000541 +142,0,637,641,655,3; 0000639P0000542 +102,6,643,645,647,649,651,653; 0000641P0000543 +110,0.,8.25,0.,1.5,8.25,0.; 0000643P0000544 +110,1.5,8.25,0.,2.5,10.25,0.; 0000645P0000545 +110,2.5,10.25,0.,4.7,10.25,0.; 0000647P0000546 +110,4.7,10.25,0.,4.7,12.5,0.; 0000649P0000547 +110,4.7,12.5,0.,0.,12.5,0.; 0000651P0000548 +110,0.,12.5,0.,0.,8.25,0.; 0000653P0000549 +102,6,657,659,661,663,665,667; 0000655P0000550 +110,-0.245598782,7.867552595E-02,3.937007874E-04,-0.245598782, 0000657P0000551 +7.867552595E-02,5.94488189E-02; 0000657P0000552 +110,-0.245598782,7.867552595E-02,5.94488189E-02,-0.245598782, 0000659P0000553 +0.157415683,9.881889764E-02; 0000659P0000554 +110,-0.245598782,0.157415683,9.881889764E-02,-0.245598782, 0000661P0000555 +0.157415683,0.185433071; 0000661P0000556 +110,-0.245598782,0.157415683,0.185433071,-0.245598782, 0000663P0000557 +0.245998361,0.185433071; 0000663P0000558 +110,-0.245598782,0.245998361,0.185433071,-0.245598782, 0000665P0000559 +0.245998361,3.937007874E-04; 0000665P0000560 +110,-0.245598782,0.245998361,3.937007874E-04,-0.245598782, 0000667P0000561 +7.867552595E-02,3.937007874E-04; 0000667P0000562 +144,671,1,0,673; 0000669P0000563 +128,1,1,1,1,0,0,1,0,0,0.,0.,4.7,4.7,0.,0.,4.25,4.25,1.,1.,1.,1., 0000671P0000564 +-0.245598782,-0.246127624,3.937007874E-04,-0.245598782, 0000671P0000565 +-0.246127624,0.185433071,-0.245598782,-7.880478901E-02, 0000671P0000566 +3.937007874E-04,-0.245598782,-7.880478901E-02,0.185433071,0., 0000671P0000567 +4.7,0.,4.25; 0000671P0000568 +142,0,671,675,689,3; 0000673P0000569 +102,6,677,679,681,683,685,687; 0000675P0000570 +110,1.5,4.25,0.,0.,4.25,0.; 0000677P0000571 +110,0.,4.25,0.,0.,0.,0.; 0000679P0000572 +110,0.,0.,0.,4.7,0.,0.; 0000681P0000573 +110,4.7,0.,0.,4.7,2.25,0.; 0000683P0000574 +110,4.7,2.25,0.,2.5,2.25,0.; 0000685P0000575 +110,2.5,2.25,0.,1.5,4.25,0.; 0000687P0000576 +102,6,691,693,695,697,699,701; 0000689P0000577 +110,-0.245598782,-7.880478901E-02,5.94488189E-02,-0.245598782, 0000691P0000578 +-7.880478901E-02,3.937007874E-04; 0000691P0000579 +110,-0.245598782,-7.880478901E-02,3.937007874E-04,-0.245598782, 0000693P0000580 +-0.246127624,3.937007874E-04; 0000693P0000581 +110,-0.245598782,-0.246127624,3.937007874E-04,-0.245598782, 0000695P0000582 +-0.246127624,0.185433071; 0000695P0000583 +110,-0.245598782,-0.246127624,0.185433071,-0.245598782, 0000697P0000584 +-0.157544946,0.185433071; 0000697P0000585 +110,-0.245598782,-0.157544946,0.185433071,-0.245598782, 0000699P0000586 +-0.157544946,9.881889764E-02; 0000699P0000587 +110,-0.245598782,-0.157544946,9.881889764E-02,-0.245598782, 0000701P0000588 +-7.880478901E-02,5.94488189E-02; 0000701P0000589 +144,705,1,0,707; 0000703P0000590 +128,1,1,1,1,0,0,1,0,0,-4.7,-4.7,0.,0.,-12.5,-12.5,0.,0.,1.,1., 0000705P0000591 +1.,1.,-0.245598782,-0.246127624,0.185433071,-0.245598782, 0000705P0000592 +-0.246127624,3.937007874E-04,0.246527203,-0.246127624, 0000705P0000593 +0.185433071,0.246527203,-0.246127624,3.937007874E-04,-4.7,0., 0000705P0000594 +-12.5,0.; 0000705P0000595 +142,0,705,709,719,3; 0000707P0000596 +102,4,711,713,715,717; 0000709P0000597 +110,-4.7,0.,0.,-4.7,-12.5,0.; 0000711P0000598 +110,-4.7,-12.5,0.,0.,-12.5,0.; 0000713P0000599 +110,0.,-12.5,0.,0.,0.,0.; 0000715P0000600 +110,0.,0.,0.,-4.7,0.,0.; 0000717P0000601 +102,4,721,723,725,727; 0000719P0000602 +110,0.246527203,-0.246127624,0.185433071,-0.245598782, 0000721P0000603 +-0.246127624,0.185433071; 0000721P0000604 +110,-0.245598782,-0.246127624,0.185433071,-0.245598782, 0000723P0000605 +-0.246127624,3.937007874E-04; 0000723P0000606 +110,-0.245598782,-0.246127624,3.937007874E-04,0.246527203, 0000725P0000607 +-0.246127624,3.937007874E-04; 0000725P0000608 +110,0.246527203,-0.246127624,3.937007874E-04,0.246527203, 0000727P0000609 +-0.246127624,0.185433071; 0000727P0000610 +144,731,1,0,733; 0000729P0000611 +128,1,1,1,1,0,0,1,0,0,-4.7,-4.7,0.,0.,-12.5,-12.5,-8.25,-8.25, 0000731P0000612 +1.,1.,1.,1.,0.246527203,-0.246127624,0.185433071,0.246527203, 0000731P0000613 +-0.246127624,3.937007874E-04,0.246527203,-7.880478901E-02, 0000731P0000614 +0.185433071,0.246527203,-7.880478901E-02,3.937007874E-04,-4.7, 0000731P0000615 +0.,-12.5,-8.25; 0000731P0000616 +142,0,731,735,749,3; 0000733P0000617 +102,6,737,739,741,743,745,747; 0000735P0000618 +110,-2.5,-10.25,0.,-4.7,-10.25,0.; 0000737P0000619 +110,-4.7,-10.25,0.,-4.7,-12.5,0.; 0000739P0000620 +110,-4.7,-12.5,0.,0.,-12.5,0.; 0000741P0000621 +110,0.,-12.5,-0.,0.,-8.25,-0.; 0000743P0000622 +110,0.,-8.25,0.,-1.5,-8.25,0.; 0000745P0000623 +110,-1.5,-8.25,0.,-2.5,-10.25,0.; 0000747P0000624 +102,6,751,753,755,757,759,761; 0000749P0000625 +110,0.246527203,-0.157544946,9.881889764E-02,0.246527203, 0000751P0000626 +-0.157544946,0.185433071; 0000751P0000627 +110,0.246527203,-0.157544946,0.185433071,0.246527203, 0000753P0000628 +-0.246127624,0.185433071; 0000753P0000629 +110,0.246527203,-0.246127624,0.185433071,0.246527203, 0000755P0000630 +-0.246127624,3.937007874E-04; 0000755P0000631 +110,0.246527203,-0.246127624,3.937007874E-04,0.246527203, 0000757P0000632 +-7.880478901E-02,3.937007874E-04; 0000757P0000633 +110,0.246527203,-7.880478901E-02,3.937007874E-04,0.246527203, 0000759P0000634 +-7.880478901E-02,5.94488189E-02; 0000759P0000635 +110,0.246527203,-7.880478901E-02,5.94488189E-02,0.246527203, 0000761P0000636 +-0.157544946,9.881889764E-02; 0000761P0000637 +144,765,1,0,767; 0000763P0000638 +128,1,1,1,1,0,0,1,0,0,0.,0.,1.5,1.5,-2.5,-2.5,0.,0.,1.,1.,1.,1., 0000765P0000639 +0.148102006,-7.880478901E-02,5.94488189E-02,0.148102006, 0000765P0000640 +-7.880478901E-02,3.937007874E-04,0.246527203,-7.880478901E-02, 0000765P0000641 +5.94488189E-02,0.246527203,-7.880478901E-02,3.937007874E-04,0., 0000765P0000642 +1.5,-2.5,0.; 0000765P0000643 +142,0,765,769,779,3; 0000767P0000644 +102,4,771,773,775,777; 0000769P0000645 +110,0.,-2.5,0.,1.5,-2.5,0.; 0000771P0000646 +110,1.5,-2.5,0.,1.5,0.,0.; 0000773P0000647 +110,1.5,0.,0.,0.,0.,0.; 0000775P0000648 +110,0.,0.,0.,0.,-2.5,0.; 0000777P0000649 +102,4,781,783,785,787; 0000779P0000650 +110,0.148102006,-7.880478901E-02,5.94488189E-02,0.148102006, 0000781P0000651 +-7.880478901E-02,3.937007874E-04; 0000781P0000652 +110,0.148102006,-7.880478901E-02,3.937007874E-04,0.246527203, 0000783P0000653 +-7.880478901E-02,3.937007874E-04; 0000783P0000654 +110,0.246527203,-7.880478901E-02,3.937007874E-04,0.246527203, 0000785P0000655 +-7.880478901E-02,5.94488189E-02; 0000785P0000656 +110,0.246527203,-7.880478901E-02,5.94488189E-02,0.148102006, 0000787P0000657 +-7.880478901E-02,5.94488189E-02; 0000787P0000658 +144,791,1,0,793; 0000789P0000659 +128,1,1,1,1,0,0,1,0,0,0.,0.,4.7,4.7,0.,0.,12.5,12.5,1.,1.,1.,1., 0000791P0000660 +-0.245598782,0.245998361,3.937007874E-04,-0.245598782, 0000791P0000661 +0.245998361,0.185433071,0.246527203,0.245998361,3.937007874E-04, 0000791P0000662 +0.246527203,0.245998361,0.185433071,0.,4.7,0.,12.5; 0000791P0000663 +142,0,791,795,805,3; 0000793P0000664 +102,4,797,799,801,803; 0000795P0000665 +110,4.7,0.,0.,4.7,12.5,0.; 0000797P0000666 +110,4.7,12.5,0.,0.,12.5,0.; 0000799P0000667 +110,0.,12.5,0.,0.,0.,0.; 0000801P0000668 +110,0.,0.,0.,4.7,0.,0.; 0000803P0000669 +102,4,807,809,811,813; 0000805P0000670 +110,-0.245598782,0.245998361,0.185433071,0.246527203, 0000807P0000671 +0.245998361,0.185433071; 0000807P0000672 +110,0.246527203,0.245998361,0.185433071,0.246527203,0.245998361, 0000809P0000673 +3.937007874E-04; 0000809P0000674 +110,0.246527203,0.245998361,3.937007874E-04,-0.245598782, 0000811P0000675 +0.245998361,3.937007874E-04; 0000811P0000676 +110,-0.245598782,0.245998361,3.937007874E-04,-0.245598782, 0000813P0000677 +0.245998361,0.185433071; 0000813P0000678 +144,817,1,0,819; 0000815P0000679 +128,1,1,1,1,0,0,1,0,0,-1.992480571,-1.992480571,2.707519429, 0000817P0000680 +2.707519429,-4.,-4.,4.,4.,1.,1.,1.,1.,0.148102006,-0.157544946, 0000817P0000681 +0.185433071,0.148102006,-0.157544946,3.937007874E-04, 0000817P0000682 +0.148102006,0.157415683,0.185433071,0.148102006,0.157415683, 0000817P0000683 +3.937007874E-04,-1.992480571,2.707519429,-4.,4.; 0000817P0000684 +142,0,817,821,839,3; 0000819P0000685 +102,8,823,825,827,829,831,833,835,837; 0000821P0000686 +110,2.707519429,2.,0.,1.207519429,2.,0.; 0000823P0000687 +110,1.207519429,2.,0.,0.207519429,4.,0.; 0000825P0000688 +110,0.207519429,4.,0.,-1.992480571,4.,0.; 0000827P0000689 +110,-1.992480571,4.,0.,-1.992480571,-4.,0.; 0000829P0000690 +110,-1.992480571,-4.,0.,0.207519429,-4.,0.; 0000831P0000691 +110,0.207519429,-4.,0.,1.207519429,-2.,0.; 0000833P0000692 +110,1.207519429,-2.,0.,2.707519429,-2.,0.; 0000835P0000693 +110,2.707519429,-2.,0.,2.707519429,2.,0.; 0000837P0000694 +102,8,841,843,845,847,849,851,853,855; 0000839P0000695 +110,0.148102006,7.867552595E-02,3.937007874E-04,0.148102006, 0000841P0000696 +7.867552595E-02,5.94488189E-02; 0000841P0000697 +110,0.148102006,7.867552595E-02,5.94488189E-02,0.148102006, 0000843P0000698 +0.157415683,9.881889764E-02; 0000843P0000699 +110,0.148102006,0.157415683,9.881889764E-02,0.148102006, 0000845P0000700 +0.157415683,0.185433071; 0000845P0000701 +110,0.148102006,0.157415683,0.185433071,0.148102006, 0000847P0000702 +-0.157544946,0.185433071; 0000847P0000703 +110,0.148102006,-0.157544946,0.185433071,0.148102006, 0000849P0000704 +-0.157544946,9.881889764E-02; 0000849P0000705 +110,0.148102006,-0.157544946,9.881889764E-02,0.148102006, 0000851P0000706 +-7.880478901E-02,5.94488189E-02; 0000851P0000707 +110,0.148102006,-7.880478901E-02,5.94488189E-02,0.148102006, 0000853P0000708 +-7.880478901E-02,3.937007874E-04; 0000853P0000709 +110,0.148102006,-7.880478901E-02,3.937007874E-04,0.148102006, 0000855P0000710 +7.867552595E-02,3.937007874E-04; 0000855P0000711 +144,859,1,0,861; 0000857P0000712 +128,1,1,1,1,0,0,1,0,0,-4.7,-4.7,0.,0.,-4.25,-4.25,0.,0.,1.,1., 0000859P0000713 +1.,1.,0.246527203,7.867552595E-02,0.185433071,0.246527203, 0000859P0000714 +7.867552595E-02,3.937007874E-04,0.246527203,0.245998361, 0000859P0000715 +0.185433071,0.246527203,0.245998361,3.937007874E-04,-4.7,0., 0000859P0000716 +-4.25,0.; 0000859P0000717 +142,0,859,863,877,3; 0000861P0000718 +102,6,865,867,869,871,873,875; 0000863P0000719 +110,-4.7,-2.25,0.,-2.5,-2.25,0.; 0000865P0000720 +110,-2.5,-2.25,0.,-1.5,-4.25,0.; 0000867P0000721 +110,-1.5,-4.25,0.,0.,-4.25,0.; 0000869P0000722 +110,0.,-4.25,0.,0.,0.,0.; 0000871P0000723 +110,0.,0.,0.,-4.7,0.,0.; 0000873P0000724 +110,-4.7,0.,0.,-4.7,-2.25,0.; 0000875P0000725 +102,6,879,881,883,885,887,889; 0000877P0000726 +110,0.246527203,0.157415683,0.185433071,0.246527203,0.157415683, 0000879P0000727 +9.881889764E-02; 0000879P0000728 +110,0.246527203,0.157415683,9.881889764E-02,0.246527203, 0000881P0000729 +7.867552595E-02,5.94488189E-02; 0000881P0000730 +110,0.246527203,7.867552595E-02,5.94488189E-02,0.246527203, 0000883P0000731 +7.867552595E-02,3.937007874E-04; 0000883P0000732 +110,0.246527203,7.867552595E-02,3.937007874E-04,0.246527203, 0000885P0000733 +0.245998361,3.937007874E-04; 0000885P0000734 +110,0.246527203,0.245998361,3.937007874E-04,0.246527203, 0000887P0000735 +0.245998361,0.185433071; 0000887P0000736 +110,0.246527203,0.245998361,0.185433071,0.246527203,0.157415683, 0000889P0000737 +0.185433071; 0000889P0000738 +144,893,1,0,895; 0000891P0000739 +128,1,1,1,1,0,0,1,0,0,0.,0.,1.5,1.5,-2.5,-2.5,0.,0.,1.,1.,1.,1., 0000893P0000740 +0.148102006,7.867552595E-02,3.937007874E-04,0.148102006, 0000893P0000741 +7.867552595E-02,5.94488189E-02,0.246527203,7.867552595E-02, 0000893P0000742 +3.937007874E-04,0.246527203,7.867552595E-02,5.94488189E-02,0., 0000893P0000743 +1.5,-2.5,0.; 0000893P0000744 +142,0,893,897,907,3; 0000895P0000745 +102,4,899,901,903,905; 0000897P0000746 +110,0.,-2.5,0.,1.5,-2.5,0.; 0000899P0000747 +110,1.5,-2.5,0.,1.5,0.,0.; 0000901P0000748 +110,1.5,0.,0.,0.,0.,0.; 0000903P0000749 +110,0.,0.,0.,0.,-2.5,0.; 0000905P0000750 +102,4,909,911,913,915; 0000907P0000751 +110,0.148102006,7.867552595E-02,3.937007874E-04,0.148102006, 0000909P0000752 +7.867552595E-02,5.94488189E-02; 0000909P0000753 +110,0.148102006,7.867552595E-02,5.94488189E-02,0.246527203, 0000911P0000754 +7.867552595E-02,5.94488189E-02; 0000911P0000755 +110,0.246527203,7.867552595E-02,5.94488189E-02,0.246527203, 0000913P0000756 +7.867552595E-02,3.937007874E-04; 0000913P0000757 +110,0.246527203,7.867552595E-02,3.937007874E-04,0.148102006, 0000915P0000758 +7.867552595E-02,3.937007874E-04; 0000915P0000759 +144,919,1,0,921; 0000917P0000760 +128,1,1,1,1,0,0,1,0,0,-0.1,-0.1,0.,0.,-0.5,-0.5,0.,0.,1.,1.,1., 0000919P0000761 +1.,-1.922082891E-02,-9.907151218E-03,4.330708661E-03, 0000919P0000762 +-1.922082891E-02,-9.907151218E-03,3.937007874E-04, 0000919P0000763 +4.642104648E-04,-9.907151218E-03,4.330708661E-03, 0000919P0000764 +4.642104648E-04,-9.907151218E-03,3.937007874E-04,-0.1,0.,-0.5, 0000919P0000765 +0.; 0000919P0000766 +142,0,919,923,933,3; 0000921P0000767 +102,4,925,927,929,931; 0000923P0000768 +110,-0.1,-0.5,0.,0.,-0.5,0.; 0000925P0000769 +110,0.,-0.5,0.,0.,0.,0.; 0000927P0000770 +110,0.,0.,0.,-0.1,0.,0.; 0000929P0000771 +110,-0.1,0.,0.,-0.1,-0.5,0.; 0000931P0000772 +102,4,935,937,939,941; 0000933P0000773 +110,-1.922082891E-02,-9.907151218E-03,4.330708661E-03, 0000935P0000774 +-1.922082891E-02,-9.907151218E-03,3.937007874E-04; 0000935P0000775 +110,-1.922082891E-02,-9.907151218E-03,3.937007874E-04, 0000937P0000776 +4.642104648E-04,-9.907151218E-03,3.937007874E-04; 0000937P0000777 +110,4.642104648E-04,-9.907151218E-03,3.937007874E-04, 0000939P0000778 +4.642104648E-04,-9.907151218E-03,4.330708661E-03; 0000939P0000779 +110,4.642104648E-04,-9.907151218E-03,4.330708661E-03, 0000941P0000780 +-1.922082891E-02,-9.907151218E-03,4.330708661E-03; 0000941P0000781 +144,945,1,0,947; 0000943P0000782 +128,1,1,1,1,0,0,1,0,0,0.,0.,0.1,0.1,0.,0.,0.5,0.5,1.,1.,1.,1., 0000945P0000783 +-1.922082891E-02,-9.907151218E-03,3.937007874E-04, 0000945P0000784 +-1.922082891E-02,-9.907151218E-03,4.330708661E-03, 0000945P0000785 +-1.922082891E-02,9.777888152E-03,3.937007874E-04, 0000945P0000786 +-1.922082891E-02,9.777888152E-03,4.330708661E-03,0.,0.1,0.,0.5; 0000945P0000787 +142,0,945,949,959,3; 0000947P0000788 +102,4,951,953,955,957; 0000949P0000789 +110,0.1,0.5,0.,0.,0.5,0.; 0000951P0000790 +110,0.,0.5,0.,0.,0.,0.; 0000953P0000791 +110,0.,0.,0.,0.1,0.,0.; 0000955P0000792 +110,0.1,0.,0.,0.1,0.5,0.; 0000957P0000793 +102,4,961,963,965,967; 0000959P0000794 +110,-1.922082891E-02,9.777888152E-03,4.330708661E-03, 0000961P0000795 +-1.922082891E-02,9.777888152E-03,3.937007874E-04; 0000961P0000796 +110,-1.922082891E-02,9.777888152E-03,3.937007874E-04, 0000963P0000797 +-1.922082891E-02,-9.907151218E-03,3.937007874E-04; 0000963P0000798 +110,-1.922082891E-02,-9.907151218E-03,3.937007874E-04, 0000965P0000799 +-1.922082891E-02,-9.907151218E-03,4.330708661E-03; 0000965P0000800 +110,-1.922082891E-02,-9.907151218E-03,4.330708661E-03, 0000967P0000801 +-1.922082891E-02,9.777888152E-03,4.330708661E-03; 0000967P0000802 +144,971,1,0,973; 0000969P0000803 +128,1,1,1,1,0,0,1,0,0,-0.1,-0.1,0.,0.,-0.5,-0.5,0.,0.,1.,1.,1., 0000971P0000804 +1.,4.642104648E-04,-9.907151218E-03,4.330708661E-03, 0000971P0000805 +4.642104648E-04,-9.907151218E-03,3.937007874E-04, 0000971P0000806 +4.642104648E-04,9.777888152E-03,4.330708661E-03,4.642104648E-04, 0000971P0000807 +9.777888152E-03,3.937007874E-04,-0.1,0.,-0.5,0.; 0000971P0000808 +142,0,971,975,985,3; 0000973P0000809 +102,4,977,979,981,983; 0000975P0000810 +110,-0.1,-0.5,0.,0.,-0.5,0.; 0000977P0000811 +110,0.,-0.5,0.,0.,0.,0.; 0000979P0000812 +110,0.,0.,0.,-0.1,0.,0.; 0000981P0000813 +110,-0.1,0.,0.,-0.1,-0.5,0.; 0000983P0000814 +102,4,987,989,991,993; 0000985P0000815 +110,4.642104648E-04,-9.907151218E-03,4.330708661E-03, 0000987P0000816 +4.642104648E-04,-9.907151218E-03,3.937007874E-04; 0000987P0000817 +110,4.642104648E-04,-9.907151218E-03,3.937007874E-04, 0000989P0000818 +4.642104648E-04,9.777888152E-03,3.937007874E-04; 0000989P0000819 +110,4.642104648E-04,9.777888152E-03,3.937007874E-04, 0000991P0000820 +4.642104648E-04,9.777888152E-03,4.330708661E-03; 0000991P0000821 +110,4.642104648E-04,9.777888152E-03,4.330708661E-03, 0000993P0000822 +4.642104648E-04,-9.907151218E-03,4.330708661E-03; 0000993P0000823 +144,997,1,0,999; 0000995P0000824 +128,1,1,1,1,0,0,1,0,0,0.,0.,0.1,0.1,0.,0.,0.5,0.5,1.,1.,1.,1., 0000997P0000825 +-1.922082891E-02,9.777888152E-03,3.937007874E-04, 0000997P0000826 +-1.922082891E-02,9.777888152E-03,4.330708661E-03, 0000997P0000827 +4.642104648E-04,9.777888152E-03,3.937007874E-04,4.642104648E-04, 0000997P0000828 +9.777888152E-03,4.330708661E-03,0.,0.1,0.,0.5; 0000997P0000829 +142,0,997,1001,1011,3; 0000999P0000830 +102,4,1003,1005,1007,1009; 0001001P0000831 +110,0.1,0.5,0.,0.,0.5,0.; 0001003P0000832 +110,0.,0.5,0.,0.,0.,0.; 0001005P0000833 +110,0.,0.,0.,0.1,0.,0.; 0001007P0000834 +110,0.1,0.,0.,0.1,0.5,0.; 0001009P0000835 +102,4,1013,1015,1017,1019; 0001011P0000836 +110,4.642104648E-04,9.777888152E-03,4.330708661E-03, 0001013P0000837 +4.642104648E-04,9.777888152E-03,3.937007874E-04; 0001013P0000838 +110,4.642104648E-04,9.777888152E-03,3.937007874E-04, 0001015P0000839 +-1.922082891E-02,9.777888152E-03,3.937007874E-04; 0001015P0000840 +110,-1.922082891E-02,9.777888152E-03,3.937007874E-04, 0001017P0000841 +-1.922082891E-02,9.777888152E-03,4.330708661E-03; 0001017P0000842 +110,-1.922082891E-02,9.777888152E-03,4.330708661E-03, 0001019P0000843 +4.642104648E-04,9.777888152E-03,4.330708661E-03; 0001019P0000844 +144,1023,1,0,1025; 0001021P0000845 +128,1,1,1,1,0,0,1,0,0,0.,0.,2.2,2.2,-2.5,-2.5,0.,0.,1.,1.,1.,1., 0001023P0000846 +0.148102006,-0.157544946,0.185433071,0.148102006,-0.157544946, 0001023P0000847 +9.881889764E-02,0.246527203,-0.157544946,0.185433071, 0001023P0000848 +0.246527203,-0.157544946,9.881889764E-02,0.,2.2,-2.5,0.; 0001023P0000849 +142,0,1023,1027,1037,3; 0001025P0000850 +102,4,1029,1031,1033,1035; 0001027P0000851 +110,2.2,-2.5,0.,2.2,0.,0.; 0001029P0000852 +110,2.2,0.,0.,0.,0.,0.; 0001031P0000853 +110,0.,0.,0.,0.,-2.5,0.; 0001033P0000854 +110,0.,-2.5,0.,2.2,-2.5,0.; 0001035P0000855 +102,4,1039,1041,1043,1045; 0001037P0000856 +110,0.148102006,-0.157544946,9.881889764E-02,0.246527203, 0001039P0000857 +-0.157544946,9.881889764E-02; 0001039P0000858 +110,0.246527203,-0.157544946,9.881889764E-02,0.246527203, 0001041P0000859 +-0.157544946,0.185433071; 0001041P0000860 +110,0.246527203,-0.157544946,0.185433071,0.148102006, 0001043P0000861 +-0.157544946,0.185433071; 0001043P0000862 +110,0.148102006,-0.157544946,0.185433071,0.148102006, 0001045P0000863 +-0.157544946,9.881889764E-02; 0001045P0000864 +144,1049,1,0,1051; 0001047P0000865 +128,1,1,1,1,0,0,1,0,0,0.,0.,2.2,2.2,-2.5,-2.5,0.,0.,1.,1.,1.,1., 0001049P0000866 +0.148102006,0.157415683,9.881889764E-02,0.148102006,0.157415683, 0001049P0000867 +0.185433071,0.246527203,0.157415683,9.881889764E-02,0.246527203, 0001049P0000868 +0.157415683,0.185433071,0.,2.2,-2.5,0.; 0001049P0000869 +142,0,1049,1053,1063,3; 0001051P0000870 +102,4,1055,1057,1059,1061; 0001053P0000871 +110,2.2,-2.5,0.,2.2,0.,0.; 0001055P0000872 +110,2.2,0.,0.,0.,0.,0.; 0001057P0000873 +110,0.,0.,0.,0.,-2.5,0.; 0001059P0000874 +110,0.,-2.5,0.,2.2,-2.5,0.; 0001061P0000875 +102,4,1065,1067,1069,1071; 0001063P0000876 +110,0.148102006,0.157415683,0.185433071,0.246527203,0.157415683, 0001065P0000877 +0.185433071; 0001065P0000878 +110,0.246527203,0.157415683,0.185433071,0.246527203,0.157415683, 0001067P0000879 +9.881889764E-02; 0001067P0000880 +110,0.246527203,0.157415683,9.881889764E-02,0.148102006, 0001069P0000881 +0.157415683,9.881889764E-02; 0001069P0000882 +110,0.148102006,0.157415683,9.881889764E-02,0.148102006, 0001071P0000883 +0.157415683,0.185433071; 0001071P0000884 +144,1075,1,0,1077; 0001073P0000885 +128,1,1,1,1,0,0,1,0,0,0.,0.,2.5,2.5,0.,0.,2.236067977, 0001075P0000886 +2.236067977,1.,1.,1.,1.,0.246527203,-0.157544946, 0001075P0000887 +9.881889764E-02,0.148102006,-0.157544946,9.881889764E-02, 0001075P0000888 +0.246527203,-7.880478901E-02,5.94488189E-02,0.148102006, 0001075P0000889 +-7.880478901E-02,5.94488189E-02,0.,2.5,0.,2.236067977; 0001075P0000890 +142,0,1075,1079,1089,3; 0001077P0000891 +102,4,1081,1083,1085,1087; 0001079P0000892 +110,2.5,0.,0.,2.5,2.236067977,0.; 0001081P0000893 +110,2.5,2.236067977,0.,0.,2.236067977,0.; 0001083P0000894 +110,0.,2.236067977,0.,0.,0.,0.; 0001085P0000895 +110,0.,0.,0.,2.5,0.,0.; 0001087P0000896 +102,4,1091,1093,1095,1097; 0001089P0000897 +110,0.148102006,-0.157544946,9.881889764E-02,0.148102006, 0001091P0000898 +-7.880478901E-02,5.94488189E-02; 0001091P0000899 +110,0.148102006,-7.880478901E-02,5.94488189E-02,0.246527203, 0001093P0000900 +-7.880478901E-02,5.94488189E-02; 0001093P0000901 +110,0.246527203,-7.880478901E-02,5.94488189E-02,0.246527203, 0001095P0000902 +-0.157544946,9.881889764E-02; 0001095P0000903 +110,0.246527203,-0.157544946,9.881889764E-02,0.148102006, 0001097P0000904 +-0.157544946,9.881889764E-02; 0001097P0000905 +144,1101,1,0,1103; 0001099P0000906 +128,1,1,1,1,0,0,1,0,0,0.,0.,2.5,2.5,0.,0.,2.236067977, 0001101P0000907 +2.236067977,1.,1.,1.,1.,0.246527203,7.867552595E-02, 0001101P0000908 +5.94488189E-02,0.148102006,7.867552595E-02,5.94488189E-02, 0001101P0000909 +0.246527203,0.157415683,9.881889764E-02,0.148102006,0.157415683, 0001101P0000910 +9.881889764E-02,0.,2.5,0.,2.236067977; 0001101P0000911 +142,0,1101,1105,1115,3; 0001103P0000912 +102,4,1107,1109,1111,1113; 0001105P0000913 +110,2.5,0.,0.,2.5,2.236067977,0.; 0001107P0000914 +110,2.5,2.236067977,0.,0.,2.236067977,0.; 0001109P0000915 +110,0.,2.236067977,0.,0.,0.,0.; 0001111P0000916 +110,0.,0.,0.,2.5,0.,0.; 0001113P0000917 +102,4,1117,1119,1121,1123; 0001115P0000918 +110,0.148102006,7.867552595E-02,5.94488189E-02,0.148102006, 0001117P0000919 +0.157415683,9.881889764E-02; 0001117P0000920 +110,0.148102006,0.157415683,9.881889764E-02,0.246527203, 0001119P0000921 +0.157415683,9.881889764E-02; 0001119P0000922 +110,0.246527203,0.157415683,9.881889764E-02,0.246527203, 0001121P0000923 +7.867552595E-02,5.94488189E-02; 0001121P0000924 +110,0.246527203,7.867552595E-02,5.94488189E-02,0.148102006, 0001123P0000925 +7.867552595E-02,5.94488189E-02; 0001123P0000926 +144,1127,1,0,1129; 0001125P0000927 +128,1,1,1,1,0,0,1,0,0,-0.25,-0.25,0.25,0.25,-0.25,-0.25,0.25, 0001127P0000928 +0.25,1.,1.,1.,1.,-1.922082891E-02,-9.907151218E-03, 0001127P0000929 +4.330708661E-03,4.642104648E-04,-9.907151218E-03, 0001127P0000930 +4.330708661E-03,-1.922082891E-02,9.777888152E-03, 0001127P0000931 +4.330708661E-03,4.642104648E-04,9.777888152E-03,4.330708661E-03, 0001127P0000932 +-0.25,0.25,-0.25,0.25; 0001127P0000933 +142,0,1127,1131,1141,3; 0001129P0000934 +102,4,1133,1135,1137,1139; 0001131P0000935 +110,0.25,-0.25,0.,0.25,0.25,0.; 0001133P0000936 +110,0.25,0.25,0.,-0.25,0.25,0.; 0001135P0000937 +110,-0.25,0.25,0.,-0.25,-0.25,0.; 0001137P0000938 +110,-0.25,-0.25,0.,0.25,-0.25,0.; 0001139P0000939 +102,4,1143,1145,1147,1149; 0001141P0000940 +110,4.642104648E-04,-9.907151218E-03,4.330708661E-03, 0001143P0000941 +4.642104648E-04,9.777888152E-03,4.330708661E-03; 0001143P0000942 +110,4.642104648E-04,9.777888152E-03,4.330708661E-03, 0001145P0000943 +-1.922082891E-02,9.777888152E-03,4.330708661E-03; 0001145P0000944 +110,-1.922082891E-02,9.777888152E-03,4.330708661E-03, 0001147P0000945 +-1.922082891E-02,-9.907151218E-03,4.330708661E-03; 0001147P0000946 +110,-1.922082891E-02,-9.907151218E-03,4.330708661E-03, 0001149P0000947 +4.642104648E-04,-9.907151218E-03,4.330708661E-03; 0001149P0000948 +402,10,1153,1179,1221,1247,1289,1315,1341,1367,1393,1419; 0001151P0000949 +144,1155,1,0,1157; 0001153P0000950 +128,1,1,1,1,0,0,1,0,0,0.,0.,2.49,2.49,0.,0.,2.236067977, 0001155P0000951 +2.236067977,1.,1.,1.,1.,-0.245598782,-6.896226933E-02, 0001155P0000952 +6.55318306E-02,-0.147567286,-6.896226933E-02,6.55318306E-02, 0001155P0000953 +-0.245598782,-0.147702427,0.104901909,-0.147567286,-0.147702427, 0001155P0000954 +0.104901909,0.,2.49,0.,2.236067977; 0001155P0000955 +142,0,1155,1159,1169,3; 0001157P0000956 +102,4,1161,1163,1165,1167; 0001159P0000957 +110,2.49,2.100541963E-13,0.,2.49,2.236067977,0.; 0001161P0000958 +110,2.49,2.236067977,0.,0.,2.236067977,0.; 0001163P0000959 +110,0.,2.236067977,0.,0.,2.100541963E-13,0.; 0001165P0000960 +110,0.,0.,0.,2.49,0.,0.; 0001167P0000961 +102,4,1171,1173,1175,1177; 0001169P0000962 +110,-0.147567286,-6.896226933E-02,6.55318306E-02,-0.147567286, 0001171P0000963 +-0.147702427,0.104901909; 0001171P0000964 +110,-0.147567286,-0.147702427,0.104901909,-0.245598782, 0001173P0000965 +-0.147702427,0.104901909; 0001173P0000966 +110,-0.245598782,-0.147702427,0.104901909,-0.245598782, 0001175P0000967 +-6.896226933E-02,6.55318306E-02; 0001175P0000968 +110,-0.245598782,-6.896226933E-02,6.55318306E-02,-0.147567286, 0001177P0000969 +-6.896226933E-02,6.55318306E-02; 0001177P0000970 +144,1181,1,0,1183; 0001179P0000971 +128,1,1,1,1,0,0,1,0,0,0.,0.,4.7,4.7,0.,0.,7.5,7.5,1.,1.,1.,1., 0001181P0000972 +-0.147567286,0.147573164,0.185433071,-0.147567286,0.147573164, 0001181P0000973 +3.937007874E-04,-0.147567286,-0.147702427,0.185433071, 0001181P0000974 +-0.147567286,-0.147702427,3.937007874E-04,0.,4.7,0.,7.5; 0001181P0000975 +142,0,1181,1185,1203,3; 0001183P0000976 +102,8,1187,1189,1191,1193,1195,1197,1199,1201; 0001185P0000977 +126,24,3,0,0,1,0,0.,0.,0.,0.,0.101639454,0.203278907, 0001187P0000978 +0.304918361,0.406557814,0.508197268,0.609836721,0.711476175, 0001187P0000979 +0.813115628,0.914755082,1.016394535,1.118033989,1.219673442, 0001187P0000980 +1.321312896,1.422952349,1.524591803,1.626231256,1.72787071, 0001187P0000981 +1.829510163,1.931149617,2.03278907,2.134428524,2.236067977, 0001187P0000982 +2.236067977,2.236067977,2.236067977,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001187P0000983 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,3.045491503,5.5, 0001187P0000984 +0.,3.030339988,5.53030303,0.,3.000036957,5.590909091,0., 0001187P0000985 +2.954582412,5.681818182,0.,2.909127866,5.772727273,0., 0001187P0000986 +2.863673321,5.863636364,0.,2.818218776,5.954545455,0., 0001187P0000987 +2.77276423,6.045454545,0.,2.727309685,6.136363636,0., 0001187P0000988 +2.681855139,6.227272727,0.,2.636400594,6.318181818,0., 0001187P0000989 +2.590946048,6.409090909,0.,2.545491503,6.5,0.,2.500036957, 0001187P0000990 +6.590909091,0.,2.454582412,6.681818182,0.,2.409127866, 0001187P0000991 +6.772727273,0.,2.363673321,6.863636364,0.,2.318218776, 0001187P0000992 +6.954545455,0.,2.27276423,7.045454545,0.,2.227309685, 0001187P0000993 +7.136363636,0.,2.181855139,7.227272727,0.,2.136400594, 0001187P0000994 +7.318181818,0.,2.090946048,7.409090909,0.,2.060643018, 0001187P0000995 +7.46969697,0.,2.045491503,7.5,0.,0.,2.236067977,0.,0.,1.; 0001187P0000996 +110,2.045491503,7.5,0.,0.,7.5,0.; 0001189P0000997 +110,0.,7.5,0.,0.,0.,0.; 0001191P0000998 +110,0.,0.,0.,2.045491503,0.,0.; 0001193P0000999 +126,24,3,0,0,1,0,0.,0.,0.,0.,0.101639454,0.203278907, 0001195P0001000 +0.304918361,0.406557814,0.508197268,0.609836721,0.711476175, 0001195P0001001 +0.813115628,0.914755082,1.016394535,1.118033989,1.219673442, 0001195P0001002 +1.321312896,1.422952349,1.524591803,1.626231256,1.72787071, 0001195P0001003 +1.829510163,1.931149617,2.03278907,2.134428524,2.236067977, 0001195P0001004 +2.236067977,2.236067977,2.236067977,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001195P0001005 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,2.045491503,0., 0001195P0001006 +0.,2.060643018,3.03030303E-02,0.,2.090946048,9.090909091E-02,0., 0001195P0001007 +2.136400594,0.181818182,0.,2.181855139,0.272727273,0., 0001195P0001008 +2.227309685,0.363636364,0.,2.27276423,0.454545455,0., 0001195P0001009 +2.318218776,0.545454545,0.,2.363673321,0.636363636,0., 0001195P0001010 +2.409127866,0.727272727,0.,2.454582412,0.818181818,0., 0001195P0001011 +2.500036957,0.909090909,0.,2.545491503,1.,0.,2.590946048, 0001195P0001012 +1.090909091,0.,2.636400594,1.181818182,0.,2.681855139, 0001195P0001013 +1.272727273,0.,2.727309685,1.363636364,0.,2.77276423, 0001195P0001014 +1.454545455,0.,2.818218776,1.545454545,0.,2.863673321, 0001195P0001015 +1.636363636,0.,2.909127866,1.727272727,0.,2.954582412, 0001195P0001016 +1.818181818,0.,3.000036957,1.909090909,0.,3.030339988, 0001195P0001017 +1.96969697,0.,3.045491503,2.,0.,0.,2.236067977,0.,0.,1.; 0001195P0001018 +110,3.045491503,2.,0.,4.7,2.,0.; 0001197P0001019 +110,4.7,2.,0.,4.7,5.5,0.; 0001199P0001020 +110,4.7,5.5,0.,3.045491503,5.5,0.; 0001201P0001021 +102,8,1205,1207,1209,1211,1213,1215,1217,1219; 0001203P0001022 +110,-0.147567286,-6.896226933E-02,6.55318306E-02,-0.147567286, 0001205P0001023 +-0.147702427,0.104901909; 0001205P0001024 +110,-0.147567286,-0.147702427,0.104901909,-0.147567286, 0001207P0001025 +-0.147702427,0.185433071; 0001207P0001026 +110,-0.147567286,-0.147702427,0.185433071,-0.147567286, 0001209P0001027 +0.147573164,0.185433071; 0001209P0001028 +110,-0.147567286,0.147573164,0.185433071,-0.147567286, 0001211P0001029 +0.147573164,0.104901909; 0001211P0001030 +110,-0.147567286,0.147573164,0.104901909,-0.147567286, 0001213P0001031 +6.883300626E-02,6.55318306E-02; 0001213P0001032 +110,-0.147567286,6.883300626E-02,6.55318306E-02,-0.147567286, 0001215P0001033 +6.883300626E-02,3.937007874E-04; 0001215P0001034 +110,-0.147567286,6.883300626E-02,3.937007874E-04,-0.147567286, 0001217P0001035 +-6.896226933E-02,3.937007874E-04; 0001217P0001036 +110,-0.147567286,-6.896226933E-02,3.937007874E-04,-0.147567286, 0001219P0001037 +-6.896226933E-02,6.55318306E-02; 0001219P0001038 +144,1223,1,0,1225; 0001221P0001039 +128,1,1,1,1,0,0,1,0,0,0.,0.,2.045491503,2.045491503,0.,0.,2.49, 0001223P0001040 +2.49,1.,1.,1.,1.,-0.245598782,-0.147702427,0.185433071, 0001223P0001041 +-0.245598782,-0.147702427,0.104901909,-0.147567286,-0.147702427, 0001223P0001042 +0.185433071,-0.147567286,-0.147702427,0.104901909,0., 0001223P0001043 +2.045491503,0.,2.49; 0001223P0001044 +142,0,1223,1227,1237,3; 0001225P0001045 +102,4,1229,1231,1233,1235; 0001227P0001046 +110,2.045491503,2.49,0.,0.,2.49,0.; 0001229P0001047 +110,0.,2.49,0.,0.,0.,0.; 0001231P0001048 +110,0.,0.,0.,2.045491503,0.,0.; 0001233P0001049 +110,2.045491503,0.,0.,2.045491503,2.49,0.; 0001235P0001050 +102,4,1239,1241,1243,1245; 0001237P0001051 +110,-0.147567286,-0.147702427,0.104901909,-0.147567286, 0001239P0001052 +-0.147702427,0.185433071; 0001239P0001053 +110,-0.147567286,-0.147702427,0.185433071,-0.245598782, 0001241P0001054 +-0.147702427,0.185433071; 0001241P0001055 +110,-0.245598782,-0.147702427,0.185433071,-0.245598782, 0001243P0001056 +-0.147702427,0.104901909; 0001243P0001057 +110,-0.245598782,-0.147702427,0.104901909,-0.147567286, 0001245P0001058 +-0.147702427,0.104901909; 0001245P0001059 +144,1249,1,0,1251; 0001247P0001060 +128,1,1,1,1,0,0,1,0,0,0.,0.,4.7,4.7,0.,0.,7.5,7.5,1.,1.,1.,1., 0001249P0001061 +-0.245598782,0.147573164,0.185433071,-0.245598782,0.147573164, 0001249P0001062 +3.937007874E-04,-0.245598782,-0.147702427,0.185433071, 0001249P0001063 +-0.245598782,-0.147702427,3.937007874E-04,0.,4.7,0.,7.5; 0001249P0001064 +142,0,1249,1253,1271,3; 0001251P0001065 +102,8,1255,1257,1259,1261,1263,1265,1267,1269; 0001253P0001066 +110,2.045491503,7.5,0.,0.,7.5,0.; 0001255P0001067 +110,0.,7.5,0.,0.,0.,0.; 0001257P0001068 +110,0.,0.,0.,2.045491503,0.,0.; 0001259P0001069 +126,24,3,0,0,1,0,0.,0.,0.,0.,0.101639454,0.203278907, 0001261P0001070 +0.304918361,0.406557814,0.508197268,0.609836721,0.711476175, 0001261P0001071 +0.813115628,0.914755082,1.016394535,1.118033989,1.219673442, 0001261P0001072 +1.321312896,1.422952349,1.524591803,1.626231256,1.72787071, 0001261P0001073 +1.829510163,1.931149617,2.03278907,2.134428524,2.236067977, 0001261P0001074 +2.236067977,2.236067977,2.236067977,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001261P0001075 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,2.045491503,0., 0001261P0001076 +0.,2.060643018,3.03030303E-02,0.,2.090946048,9.090909091E-02,0., 0001261P0001077 +2.136400594,0.181818182,0.,2.181855139,0.272727273,0., 0001261P0001078 +2.227309685,0.363636364,0.,2.27276423,0.454545455,0., 0001261P0001079 +2.318218776,0.545454545,0.,2.363673321,0.636363636,0., 0001261P0001080 +2.409127866,0.727272727,0.,2.454582412,0.818181818,0., 0001261P0001081 +2.500036957,0.909090909,0.,2.545491503,1.,0.,2.590946048, 0001261P0001082 +1.090909091,0.,2.636400594,1.181818182,0.,2.681855139, 0001261P0001083 +1.272727273,0.,2.727309685,1.363636364,0.,2.77276423, 0001261P0001084 +1.454545455,0.,2.818218776,1.545454545,0.,2.863673321, 0001261P0001085 +1.636363636,0.,2.909127866,1.727272727,0.,2.954582412, 0001261P0001086 +1.818181818,0.,3.000036957,1.909090909,0.,3.030339988, 0001261P0001087 +1.96969697,0.,3.045491503,2.,0.,0.,2.236067977,0.,0.,1.; 0001261P0001088 +110,3.045491503,2.,0.,4.7,2.,0.; 0001263P0001089 +110,4.7,2.,0.,4.7,5.5,0.; 0001265P0001090 +110,4.7,5.5,0.,3.045491503,5.5,0.; 0001267P0001091 +126,24,3,0,0,1,0,0.,0.,0.,0.,0.101639454,0.203278907, 0001269P0001092 +0.304918361,0.406557814,0.508197268,0.609836721,0.711476175, 0001269P0001093 +0.813115628,0.914755082,1.016394535,1.118033989,1.219673442, 0001269P0001094 +1.321312896,1.422952349,1.524591803,1.626231256,1.72787071, 0001269P0001095 +1.829510163,1.931149617,2.03278907,2.134428524,2.236067977, 0001269P0001096 +2.236067977,2.236067977,2.236067977,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001269P0001097 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,3.045491503,5.5, 0001269P0001098 +0.,3.030339988,5.53030303,0.,3.000036957,5.590909091,0., 0001269P0001099 +2.954582412,5.681818182,0.,2.909127866,5.772727273,0., 0001269P0001100 +2.863673321,5.863636364,0.,2.818218776,5.954545455,0., 0001269P0001101 +2.77276423,6.045454545,0.,2.727309685,6.136363636,0., 0001269P0001102 +2.681855139,6.227272727,0.,2.636400594,6.318181818,0., 0001269P0001103 +2.590946048,6.409090909,0.,2.545491503,6.5,0.,2.500036957, 0001269P0001104 +6.590909091,0.,2.454582412,6.681818182,0.,2.409127866, 0001269P0001105 +6.772727273,0.,2.363673321,6.863636364,0.,2.318218776, 0001269P0001106 +6.954545455,0.,2.27276423,7.045454545,0.,2.227309685, 0001269P0001107 +7.136363636,0.,2.181855139,7.227272727,0.,2.136400594, 0001269P0001108 +7.318181818,0.,2.090946048,7.409090909,0.,2.060643018, 0001269P0001109 +7.46969697,0.,2.045491503,7.5,0.,0.,2.236067977,0.,0.,1.; 0001269P0001110 +102,8,1273,1275,1277,1279,1281,1283,1285,1287; 0001271P0001111 +110,-0.245598782,-0.147702427,0.104901909,-0.245598782, 0001273P0001112 +-0.147702427,0.185433071; 0001273P0001113 +110,-0.245598782,-0.147702427,0.185433071,-0.245598782, 0001275P0001114 +0.147573164,0.185433071; 0001275P0001115 +110,-0.245598782,0.147573164,0.185433071,-0.245598782, 0001277P0001116 +0.147573164,0.104901909; 0001277P0001117 +110,-0.245598782,0.147573164,0.104901909,-0.245598782, 0001279P0001118 +6.883300626E-02,6.55318306E-02; 0001279P0001119 +110,-0.245598782,6.883300626E-02,6.55318306E-02,-0.245598782, 0001281P0001120 +6.883300626E-02,3.937007874E-04; 0001281P0001121 +110,-0.245598782,6.883300626E-02,3.937007874E-04,-0.245598782, 0001283P0001122 +-6.896226933E-02,3.937007874E-04; 0001283P0001123 +110,-0.245598782,-6.896226933E-02,3.937007874E-04,-0.245598782, 0001285P0001124 +-6.896226933E-02,6.55318306E-02; 0001285P0001125 +110,-0.245598782,-6.896226933E-02,6.55318306E-02,-0.245598782, 0001287P0001126 +-0.147702427,0.104901909; 0001287P0001127 +144,1291,1,0,1293; 0001289P0001128 +128,1,1,1,1,0,0,1,0,0,0.,0.,1.654508497,1.654508497,0.,0.,2.49, 0001291P0001129 +2.49,1.,1.,1.,1.,-0.245598782,-6.896226933E-02,6.55318306E-02, 0001291P0001130 +-0.245598782,-6.896226933E-02,3.937007874E-04,-0.147567286, 0001291P0001131 +-6.896226933E-02,6.55318306E-02,-0.147567286,-6.896226933E-02, 0001291P0001132 +3.937007874E-04,0.,1.654508497,0.,2.49; 0001291P0001133 +142,0,1291,1295,1305,3; 0001293P0001134 +102,4,1297,1299,1301,1303; 0001295P0001135 +110,1.654508497,2.49,0.,0.,2.49,0.; 0001297P0001136 +110,0.,2.49,0.,0.,0.,0.; 0001299P0001137 +110,0.,0.,0.,1.654508497,0.,0.; 0001301P0001138 +110,1.654508497,0.,0.,1.654508497,2.49,0.; 0001303P0001139 +102,4,1307,1309,1311,1313; 0001305P0001140 +110,-0.147567286,-6.896226933E-02,3.937007874E-04,-0.147567286, 0001307P0001141 +-6.896226933E-02,6.55318306E-02; 0001307P0001142 +110,-0.147567286,-6.896226933E-02,6.55318306E-02,-0.245598782, 0001309P0001143 +-6.896226933E-02,6.55318306E-02; 0001309P0001144 +110,-0.245598782,-6.896226933E-02,6.55318306E-02,-0.245598782, 0001311P0001145 +-6.896226933E-02,3.937007874E-04; 0001311P0001146 +110,-0.245598782,-6.896226933E-02,3.937007874E-04,-0.147567286, 0001313P0001147 +-6.896226933E-02,3.937007874E-04; 0001313P0001148 +144,1317,1,0,1319; 0001315P0001149 +128,1,1,1,1,0,0,1,0,0,0.,0.,2.49,2.49,0.,0.,7.5,7.5,1.,1.,1.,1., 0001317P0001150 +-0.147567286,0.147573164,0.185433071,-0.245598782,0.147573164, 0001317P0001151 +0.185433071,-0.147567286,-0.147702427,0.185433071,-0.245598782, 0001317P0001152 +-0.147702427,0.185433071,0.,2.49,0.,7.5; 0001317P0001153 +142,0,1317,1321,1331,3; 0001319P0001154 +102,4,1323,1325,1327,1329; 0001321P0001155 +110,0.,7.5,0.,0.,0.,0.; 0001323P0001156 +110,4.440892099E-16,0.,0.,2.49,0.,0.; 0001325P0001157 +110,2.49,0.,0.,2.49,7.5,0.; 0001327P0001158 +110,2.49,7.5,0.,4.440892099E-16,7.5,0.; 0001329P0001159 +102,4,1333,1335,1337,1339; 0001331P0001160 +110,-0.147567286,-0.147702427,0.185433071,-0.147567286, 0001333P0001161 +0.147573164,0.185433071; 0001333P0001162 +110,-0.147567286,0.147573164,0.185433071,-0.245598782, 0001335P0001163 +0.147573164,0.185433071; 0001335P0001164 +110,-0.245598782,0.147573164,0.185433071,-0.245598782, 0001337P0001165 +-0.147702427,0.185433071; 0001337P0001166 +110,-0.245598782,-0.147702427,0.185433071,-0.147567286, 0001339P0001167 +-0.147702427,0.185433071; 0001339P0001168 +144,1343,1,0,1345; 0001341P0001169 +128,1,1,1,1,0,0,1,0,0,0.,0.,2.49,2.49,0.,0.,3.5,3.5,1.,1.,1.,1., 0001343P0001170 +-0.245598782,6.883300626E-02,3.937007874E-04,-0.147567286, 0001343P0001171 +6.883300626E-02,3.937007874E-04,-0.245598782,-6.896226933E-02, 0001343P0001172 +3.937007874E-04,-0.147567286,-6.896226933E-02,3.937007874E-04, 0001343P0001173 +0.,2.49,0.,3.5; 0001343P0001174 +142,0,1343,1347,1357,3; 0001345P0001175 +102,4,1349,1351,1353,1355; 0001347P0001176 +110,2.49,0.,0.,2.49,3.5,0.; 0001349P0001177 +110,2.49,3.5,0.,0.,3.5,0.; 0001351P0001178 +110,0.,3.5,0.,0.,0.,0.; 0001353P0001179 +110,0.,0.,0.,2.49,0.,0.; 0001355P0001180 +102,4,1359,1361,1363,1365; 0001357P0001181 +110,-0.147567286,6.883300626E-02,3.937007874E-04,-0.147567286, 0001359P0001182 +-6.896226933E-02,3.937007874E-04; 0001359P0001183 +110,-0.147567286,-6.896226933E-02,3.937007874E-04,-0.245598782, 0001361P0001184 +-6.896226933E-02,3.937007874E-04; 0001361P0001185 +110,-0.245598782,-6.896226933E-02,3.937007874E-04,-0.245598782, 0001363P0001186 +6.883300626E-02,3.937007874E-04; 0001363P0001187 +110,-0.245598782,6.883300626E-02,3.937007874E-04,-0.147567286, 0001365P0001188 +6.883300626E-02,3.937007874E-04; 0001365P0001189 +144,1369,1,0,1371; 0001367P0001190 +128,1,1,1,1,0,0,1,0,0,0.,0.,2.045491503,2.045491503,0.,0.,2.49, 0001369P0001191 +2.49,1.,1.,1.,1.,-0.245598782,0.147573164,0.104901909, 0001369P0001192 +-0.245598782,0.147573164,0.185433071,-0.147567286,0.147573164, 0001369P0001193 +0.104901909,-0.147567286,0.147573164,0.185433071,0.,2.045491503, 0001369P0001194 +0.,2.49; 0001369P0001195 +142,0,1369,1373,1383,3; 0001371P0001196 +102,4,1375,1377,1379,1381; 0001373P0001197 +110,2.045491503,2.49,0.,0.,2.49,0.; 0001375P0001198 +110,0.,2.49,0.,0.,0.,0.; 0001377P0001199 +110,0.,0.,0.,2.045491503,0.,0.; 0001379P0001200 +110,2.045491503,0.,0.,2.045491503,2.49,0.; 0001381P0001201 +102,4,1385,1387,1389,1391; 0001383P0001202 +110,-0.147567286,0.147573164,0.185433071,-0.147567286, 0001385P0001203 +0.147573164,0.104901909; 0001385P0001204 +110,-0.147567286,0.147573164,0.104901909,-0.245598782, 0001387P0001205 +0.147573164,0.104901909; 0001387P0001206 +110,-0.245598782,0.147573164,0.104901909,-0.245598782, 0001389P0001207 +0.147573164,0.185433071; 0001389P0001208 +110,-0.245598782,0.147573164,0.185433071,-0.147567286, 0001391P0001209 +0.147573164,0.185433071; 0001391P0001210 +144,1395,1,0,1397; 0001393P0001211 +128,1,1,1,1,0,0,1,0,0,0.,0.,1.654508497,1.654508497,0.,0.,2.49, 0001395P0001212 +2.49,1.,1.,1.,1.,-0.245598782,6.883300626E-02,3.937007874E-04, 0001395P0001213 +-0.245598782,6.883300626E-02,6.55318306E-02,-0.147567286, 0001395P0001214 +6.883300626E-02,3.937007874E-04,-0.147567286,6.883300626E-02, 0001395P0001215 +6.55318306E-02,0.,1.654508497,0.,2.49; 0001395P0001216 +142,0,1395,1399,1409,3; 0001397P0001217 +102,4,1401,1403,1405,1407; 0001399P0001218 +110,1.654508497,2.49,0.,0.,2.49,0.; 0001401P0001219 +110,0.,2.49,0.,0.,0.,0.; 0001403P0001220 +110,0.,0.,0.,1.654508497,0.,0.; 0001405P0001221 +110,1.654508497,0.,0.,1.654508497,2.49,0.; 0001407P0001222 +102,4,1411,1413,1415,1417; 0001409P0001223 +110,-0.147567286,6.883300626E-02,6.55318306E-02,-0.147567286, 0001411P0001224 +6.883300626E-02,3.937007874E-04; 0001411P0001225 +110,-0.147567286,6.883300626E-02,3.937007874E-04,-0.245598782, 0001413P0001226 +6.883300626E-02,3.937007874E-04; 0001413P0001227 +110,-0.245598782,6.883300626E-02,3.937007874E-04,-0.245598782, 0001415P0001228 +6.883300626E-02,6.55318306E-02; 0001415P0001229 +110,-0.245598782,6.883300626E-02,6.55318306E-02,-0.147567286, 0001417P0001230 +6.883300626E-02,6.55318306E-02; 0001417P0001231 +144,1421,1,0,1423; 0001419P0001232 +128,1,1,1,1,0,0,1,0,0,0.,0.,2.49,2.49,0.,0.,2.236067977, 0001421P0001233 +2.236067977,1.,1.,1.,1.,-0.245598782,0.147573164,0.104901909, 0001421P0001234 +-0.147567286,0.147573164,0.104901909,-0.245598782, 0001421P0001235 +6.883300626E-02,6.55318306E-02,-0.147567286,6.883300626E-02, 0001421P0001236 +6.55318306E-02,0.,2.49,0.,2.236067977; 0001421P0001237 +142,0,1421,1425,1435,3; 0001423P0001238 +102,4,1427,1429,1431,1433; 0001425P0001239 +110,2.49,2.100541963E-13,0.,2.49,2.236067977,0.; 0001427P0001240 +110,2.49,2.236067977,0.,0.,2.236067977,0.; 0001429P0001241 +110,0.,2.236067977,0.,0.,2.100541963E-13,0.; 0001431P0001242 +110,0.,0.,0.,2.49,0.,0.; 0001433P0001243 +102,4,1437,1439,1441,1443; 0001435P0001244 +110,-0.147567286,0.147573164,0.104901909,-0.147567286, 0001437P0001245 +6.883300626E-02,6.55318306E-02; 0001437P0001246 +110,-0.147567286,6.883300626E-02,6.55318306E-02,-0.245598782, 0001439P0001247 +6.883300626E-02,6.55318306E-02; 0001439P0001248 +110,-0.245598782,6.883300626E-02,6.55318306E-02,-0.245598782, 0001441P0001249 +0.147573164,0.104901909; 0001441P0001250 +110,-0.245598782,0.147573164,0.104901909,-0.147567286, 0001443P0001251 +0.147573164,0.104901909; 0001443P0001252 +S 1G 4D 1444P 1252 T0000001 diff --git a/src/Mod/Idf/lib/SOD_323.igs b/src/Mod/Idf/lib/SOD_323.igs index c21e2bd5c..e3c5e943b 100644 --- a/src/Mod/Idf/lib/SOD_323.igs +++ b/src/Mod/Idf/lib/SOD_323.igs @@ -1,4191 +1,4058 @@ - S0000001 -,,31HOpen CASCADE IGES processor 6.3,13HFilename.iges, G0000001 -16HOpen CASCADE 6.3,31HOpen CASCADE IGES processor 6.3,32,308,15,308,15,G0000002 -,1.,2,2HMM,1,0.01,15H20100422.133643,1.51037E-007,1.354999,8Hbrqjzavr,, G0000003 -11,0,15H20100422.133643,; G0000004 - 402 1 0 0 0 0 0 000000000D0000001 - 402 0 0 1 1 0D0000002 - 402 2 0 0 0 0 0 000020000D0000003 - 402 0 0 2 1 0D0000004 - 144 4 0 0 0 0 0 000020000D0000005 - 144 0 0 1 0 0D0000006 - 128 5 0 0 0 0 0 000010000D0000007 - 128 0 0 5 0 0D0000008 - 142 10 0 0 0 0 0 000010500D0000009 - 142 0 0 1 0 0D0000010 - 102 11 0 0 0 0 0 000010000D0000011 - 102 0 0 1 0 0D0000012 - 110 12 0 0 0 0 0 000010000D0000013 - 110 0 0 1 0 0D0000014 - 110 13 0 0 0 0 0 000010000D0000015 - 110 0 0 1 0 0D0000016 - 110 14 0 0 0 0 0 000010000D0000017 - 110 0 0 1 0 0D0000018 - 110 15 0 0 0 0 0 000010000D0000019 - 110 0 0 1 0 0D0000020 - 102 16 0 0 0 0 0 000010000D0000021 - 102 0 0 1 0 0D0000022 - 110 17 0 0 0 0 0 000010000D0000023 - 110 0 0 1 0 0D0000024 - 110 18 0 0 0 0 0 000010000D0000025 - 110 0 0 1 0 0D0000026 - 110 19 0 0 0 0 0 000010000D0000027 - 110 0 0 1 0 0D0000028 - 110 20 0 0 0 0 0 000010000D0000029 - 110 0 0 1 0 0D0000030 - 144 21 0 0 0 0 0 000020000D0000031 - 144 0 0 1 0 0D0000032 - 128 22 0 0 0 0 0 000010000D0000033 - 128 0 0 5 0 0D0000034 - 142 27 0 0 0 0 0 000010500D0000035 - 142 0 0 1 0 0D0000036 - 102 28 0 0 0 0 0 000010000D0000037 - 102 0 0 1 0 0D0000038 - 110 29 0 0 0 0 0 000010000D0000039 - 110 0 0 1 0 0D0000040 - 110 30 0 0 0 0 0 000010000D0000041 - 110 0 0 2 0 0D0000042 - 110 32 0 0 0 0 0 000010000D0000043 - 110 0 0 1 0 0D0000044 - 110 33 0 0 0 0 0 000010000D0000045 - 110 0 0 1 0 0D0000046 - 110 34 0 0 0 0 0 000010000D0000047 - 110 0 0 1 0 0D0000048 - 110 35 0 0 0 0 0 000010000D0000049 - 110 0 0 1 0 0D0000050 - 102 36 0 0 0 0 0 000010000D0000051 - 102 0 0 1 0 0D0000052 - 110 37 0 0 0 0 0 000010000D0000053 - 110 0 0 2 0 0D0000054 - 110 39 0 0 0 0 0 000010000D0000055 - 110 0 0 2 0 0D0000056 - 110 41 0 0 0 0 0 000010000D0000057 - 110 0 0 2 0 0D0000058 - 110 43 0 0 0 0 0 000010000D0000059 - 110 0 0 2 0 0D0000060 - 110 45 0 0 0 0 0 000010000D0000061 - 110 0 0 2 0 0D0000062 - 110 47 0 0 0 0 0 000010000D0000063 - 110 0 0 1 0 0D0000064 - 144 48 0 0 0 0 0 000020000D0000065 - 144 0 0 1 0 0D0000066 - 128 49 0 0 0 0 0 000010000D0000067 - 128 0 0 5 0 0D0000068 - 142 54 0 0 0 0 0 000010500D0000069 - 142 0 0 1 0 0D0000070 - 102 55 0 0 0 0 0 000010000D0000071 - 102 0 0 1 0 0D0000072 - 110 56 0 0 0 0 0 000010000D0000073 - 110 0 0 1 0 0D0000074 - 110 57 0 0 0 0 0 000010000D0000075 - 110 0 0 1 0 0D0000076 - 110 58 0 0 0 0 0 000010000D0000077 - 110 0 0 1 0 0D0000078 - 110 59 0 0 0 0 0 000010000D0000079 - 110 0 0 1 0 0D0000080 - 102 60 0 0 0 0 0 000010000D0000081 - 102 0 0 1 0 0D0000082 - 110 61 0 0 0 0 0 000010000D0000083 - 110 0 0 2 0 0D0000084 - 110 63 0 0 0 0 0 000010000D0000085 - 110 0 0 2 0 0D0000086 - 110 65 0 0 0 0 0 000010000D0000087 - 110 0 0 1 0 0D0000088 - 110 66 0 0 0 0 0 000010000D0000089 - 110 0 0 1 0 0D0000090 - 144 67 0 0 0 0 0 000020000D0000091 - 144 0 0 1 0 0D0000092 - 128 68 0 0 0 0 0 000010000D0000093 - 128 0 0 5 0 0D0000094 - 142 73 0 0 0 0 0 000010500D0000095 - 142 0 0 1 0 0D0000096 - 102 74 0 0 0 0 0 000010000D0000097 - 102 0 0 1 0 0D0000098 - 110 75 0 0 0 0 0 000010000D0000099 - 110 0 0 1 0 0D0000100 - 110 76 0 0 0 0 0 000010000D0000101 - 110 0 0 1 0 0D0000102 - 110 77 0 0 0 0 0 000010000D0000103 - 110 0 0 1 0 0D0000104 - 110 78 0 0 0 0 0 000010000D0000105 - 110 0 0 1 0 0D0000106 - 110 79 0 0 0 0 0 000010000D0000107 - 110 0 0 1 0 0D0000108 - 110 80 0 0 0 0 0 000010000D0000109 - 110 0 0 1 0 0D0000110 - 110 81 0 0 0 0 0 000010000D0000111 - 110 0 0 2 0 0D0000112 - 110 83 0 0 0 0 0 000010000D0000113 - 110 0 0 2 0 0D0000114 - 102 85 0 0 0 0 0 000010000D0000115 - 102 0 0 1 0 0D0000116 - 110 86 0 0 0 0 0 000010000D0000117 - 110 0 0 2 0 0D0000118 - 110 88 0 0 0 0 0 000010000D0000119 - 110 0 0 2 0 0D0000120 - 110 90 0 0 0 0 0 000010000D0000121 - 110 0 0 1 0 0D0000122 - 110 91 0 0 0 0 0 000010000D0000123 - 110 0 0 1 0 0D0000124 - 110 92 0 0 0 0 0 000010000D0000125 - 110 0 0 1 0 0D0000126 - 110 93 0 0 0 0 0 000010000D0000127 - 110 0 0 1 0 0D0000128 - 110 94 0 0 0 0 0 000010000D0000129 - 110 0 0 1 0 0D0000130 - 110 95 0 0 0 0 0 000010000D0000131 - 110 0 0 1 0 0D0000132 - 144 96 0 0 0 0 0 000020000D0000133 - 144 0 0 1 0 0D0000134 - 128 97 0 0 0 0 0 000010000D0000135 - 128 0 0 4 0 0D0000136 - 142 101 0 0 0 0 0 000010500D0000137 - 142 0 0 1 0 0D0000138 - 102 102 0 0 0 0 0 000010000D0000139 - 102 0 0 1 0 0D0000140 - 110 103 0 0 0 0 0 000010000D0000141 - 110 0 0 2 0 0D0000142 - 110 105 0 0 0 0 0 000010000D0000143 - 110 0 0 1 0 0D0000144 - 110 106 0 0 0 0 0 000010000D0000145 - 110 0 0 1 0 0D0000146 - 110 107 0 0 0 0 0 000010000D0000147 - 110 0 0 1 0 0D0000148 - 110 108 0 0 0 0 0 000010000D0000149 - 110 0 0 1 0 0D0000150 - 110 109 0 0 0 0 0 000010000D0000151 - 110 0 0 1 0 0D0000152 - 102 110 0 0 0 0 0 000010000D0000153 - 102 0 0 1 0 0D0000154 - 110 111 0 0 0 0 0 000010000D0000155 - 110 0 0 2 0 0D0000156 - 110 113 0 0 0 0 0 000010000D0000157 - 110 0 0 1 0 0D0000158 - 110 114 0 0 0 0 0 000010000D0000159 - 110 0 0 1 0 0D0000160 - 110 115 0 0 0 0 0 000010000D0000161 - 110 0 0 1 0 0D0000162 - 110 116 0 0 0 0 0 000010000D0000163 - 110 0 0 2 0 0D0000164 - 110 118 0 0 0 0 0 000010000D0000165 - 110 0 0 2 0 0D0000166 - 144 120 0 0 0 0 0 000020000D0000167 - 144 0 0 1 0 0D0000168 - 128 121 0 0 0 0 0 000010000D0000169 - 128 0 0 5 0 0D0000170 - 142 126 0 0 0 0 0 000010500D0000171 - 142 0 0 1 0 0D0000172 - 102 127 0 0 0 0 0 000010000D0000173 - 102 0 0 1 0 0D0000174 - 110 128 0 0 0 0 0 000010000D0000175 - 110 0 0 1 0 0D0000176 - 110 129 0 0 0 0 0 000010000D0000177 - 110 0 0 1 0 0D0000178 - 110 130 0 0 0 0 0 000010000D0000179 - 110 0 0 1 0 0D0000180 - 110 131 0 0 0 0 0 000010000D0000181 - 110 0 0 1 0 0D0000182 - 102 132 0 0 0 0 0 000010000D0000183 - 102 0 0 1 0 0D0000184 - 110 133 0 0 0 0 0 000010000D0000185 - 110 0 0 2 0 0D0000186 - 110 135 0 0 0 0 0 000010000D0000187 - 110 0 0 2 0 0D0000188 - 110 137 0 0 0 0 0 000010000D0000189 - 110 0 0 2 0 0D0000190 - 110 139 0 0 0 0 0 000010000D0000191 - 110 0 0 2 0 0D0000192 - 144 141 0 0 0 0 0 000020000D0000193 - 144 0 0 1 0 0D0000194 - 128 142 0 0 0 0 0 000010000D0000195 - 128 0 0 5 0 0D0000196 - 142 147 0 0 0 0 0 000010500D0000197 - 142 0 0 1 0 0D0000198 - 102 148 0 0 0 0 0 000010000D0000199 - 102 0 0 1 0 0D0000200 - 110 149 0 0 0 0 0 000010000D0000201 - 110 0 0 1 0 0D0000202 - 110 150 0 0 0 0 0 000010000D0000203 - 110 0 0 1 0 0D0000204 - 110 151 0 0 0 0 0 000010000D0000205 - 110 0 0 1 0 0D0000206 - 110 152 0 0 0 0 0 000010000D0000207 - 110 0 0 1 0 0D0000208 - 102 153 0 0 0 0 0 000010000D0000209 - 102 0 0 1 0 0D0000210 - 110 154 0 0 0 0 0 000010000D0000211 - 110 0 0 1 0 0D0000212 - 110 155 0 0 0 0 0 000010000D0000213 - 110 0 0 1 0 0D0000214 - 110 156 0 0 0 0 0 000010000D0000215 - 110 0 0 1 0 0D0000216 - 110 157 0 0 0 0 0 000010000D0000217 - 110 0 0 1 0 0D0000218 - 144 158 0 0 0 0 0 000020000D0000219 - 144 0 0 1 0 0D0000220 - 128 159 0 0 0 0 0 000010000D0000221 - 128 0 0 5 0 0D0000222 - 142 164 0 0 0 0 0 000010500D0000223 - 142 0 0 1 0 0D0000224 - 102 165 0 0 0 0 0 000010000D0000225 - 102 0 0 1 0 0D0000226 - 110 166 0 0 0 0 0 000010000D0000227 - 110 0 0 1 0 0D0000228 - 110 167 0 0 0 0 0 000010000D0000229 - 110 0 0 2 0 0D0000230 - 110 169 0 0 0 0 0 000010000D0000231 - 110 0 0 1 0 0D0000232 - 110 170 0 0 0 0 0 000010000D0000233 - 110 0 0 1 0 0D0000234 - 102 171 0 0 0 0 0 000010000D0000235 - 102 0 0 1 0 0D0000236 - 110 172 0 0 0 0 0 000010000D0000237 - 110 0 0 2 0 0D0000238 - 110 174 0 0 0 0 0 000010000D0000239 - 110 0 0 2 0 0D0000240 - 110 176 0 0 0 0 0 000010000D0000241 - 110 0 0 1 0 0D0000242 - 110 177 0 0 0 0 0 000010000D0000243 - 110 0 0 1 0 0D0000244 - 144 178 0 0 0 0 0 000020000D0000245 - 144 0 0 1 0 0D0000246 - 128 179 0 0 0 0 0 000010000D0000247 - 128 0 0 5 0 0D0000248 - 142 184 0 0 0 0 0 000010500D0000249 - 142 0 0 1 0 0D0000250 - 102 185 0 0 0 0 0 000010000D0000251 - 102 0 0 1 0 0D0000252 - 110 186 0 0 0 0 0 000010000D0000253 - 110 0 0 2 0 0D0000254 - 110 188 0 0 0 0 0 000010000D0000255 - 110 0 0 1 0 0D0000256 - 110 189 0 0 0 0 0 000010000D0000257 - 110 0 0 1 0 0D0000258 - 110 190 0 0 0 0 0 000010000D0000259 - 110 0 0 1 0 0D0000260 - 102 191 0 0 0 0 0 000010000D0000261 - 102 0 0 1 0 0D0000262 - 110 192 0 0 0 0 0 000010000D0000263 - 110 0 0 2 0 0D0000264 - 110 194 0 0 0 0 0 000010000D0000265 - 110 0 0 2 0 0D0000266 - 110 196 0 0 0 0 0 000010000D0000267 - 110 0 0 1 0 0D0000268 - 110 197 0 0 0 0 0 000010000D0000269 - 110 0 0 2 0 0D0000270 - 144 199 0 0 0 0 0 000020000D0000271 - 144 0 0 1 0 0D0000272 - 128 200 0 0 0 0 0 000010000D0000273 - 128 0 0 5 0 0D0000274 - 142 205 0 0 0 0 0 000010500D0000275 - 142 0 0 1 0 0D0000276 - 102 206 0 0 0 0 0 000010000D0000277 - 102 0 0 1 0 0D0000278 - 110 207 0 0 0 0 0 000010000D0000279 - 110 0 0 2 0 0D0000280 - 110 209 0 0 0 0 0 000010000D0000281 - 110 0 0 1 0 0D0000282 - 110 210 0 0 0 0 0 000010000D0000283 - 110 0 0 1 0 0D0000284 - 110 211 0 0 0 0 0 000010000D0000285 - 110 0 0 1 0 0D0000286 - 102 212 0 0 0 0 0 000010000D0000287 - 102 0 0 1 0 0D0000288 - 110 213 0 0 0 0 0 000010000D0000289 - 110 0 0 2 0 0D0000290 - 110 215 0 0 0 0 0 000010000D0000291 - 110 0 0 2 0 0D0000292 - 110 217 0 0 0 0 0 000010000D0000293 - 110 0 0 2 0 0D0000294 - 110 219 0 0 0 0 0 000010000D0000295 - 110 0 0 2 0 0D0000296 - 144 221 0 0 0 0 0 000020000D0000297 - 144 0 0 1 0 0D0000298 - 128 222 0 0 0 0 0 000010000D0000299 - 128 0 0 5 0 0D0000300 - 142 227 0 0 0 0 0 000010500D0000301 - 142 0 0 1 0 0D0000302 - 102 228 0 0 0 0 0 000010000D0000303 - 102 0 0 1 0 0D0000304 - 110 229 0 0 0 0 0 000010000D0000305 - 110 0 0 2 0 0D0000306 - 110 231 0 0 0 0 0 000010000D0000307 - 110 0 0 1 0 0D0000308 - 110 232 0 0 0 0 0 000010000D0000309 - 110 0 0 1 0 0D0000310 - 110 233 0 0 0 0 0 000010000D0000311 - 110 0 0 1 0 0D0000312 - 110 234 0 0 0 0 0 000010000D0000313 - 110 0 0 1 0 0D0000314 - 110 235 0 0 0 0 0 000010000D0000315 - 110 0 0 1 0 0D0000316 - 110 236 0 0 0 0 0 000010000D0000317 - 110 0 0 2 0 0D0000318 - 110 238 0 0 0 0 0 000010000D0000319 - 110 0 0 2 0 0D0000320 - 102 240 0 0 0 0 0 000010000D0000321 - 102 0 0 1 0 0D0000322 - 110 241 0 0 0 0 0 000010000D0000323 - 110 0 0 2 0 0D0000324 - 110 243 0 0 0 0 0 000010000D0000325 - 110 0 0 2 0 0D0000326 - 110 245 0 0 0 0 0 000010000D0000327 - 110 0 0 2 0 0D0000328 - 110 247 0 0 0 0 0 000010000D0000329 - 110 0 0 2 0 0D0000330 - 110 249 0 0 0 0 0 000010000D0000331 - 110 0 0 2 0 0D0000332 - 110 251 0 0 0 0 0 000010000D0000333 - 110 0 0 2 0 0D0000334 - 110 253 0 0 0 0 0 000010000D0000335 - 110 0 0 2 0 0D0000336 - 110 255 0 0 0 0 0 000010000D0000337 - 110 0 0 2 0 0D0000338 - 144 257 0 0 0 0 0 000020000D0000339 - 144 0 0 1 0 0D0000340 - 128 258 0 0 0 0 0 000010000D0000341 - 128 0 0 5 0 0D0000342 - 142 263 0 0 0 0 0 000010500D0000343 - 142 0 0 1 0 0D0000344 - 102 264 0 0 0 0 0 000010000D0000345 - 102 0 0 1 0 0D0000346 - 110 265 0 0 0 0 0 000010000D0000347 - 110 0 0 2 0 0D0000348 - 110 267 0 0 0 0 0 000010000D0000349 - 110 0 0 1 0 0D0000350 - 110 268 0 0 0 0 0 000010000D0000351 - 110 0 0 1 0 0D0000352 - 110 269 0 0 0 0 0 000010000D0000353 - 110 0 0 1 0 0D0000354 - 110 270 0 0 0 0 0 000010000D0000355 - 110 0 0 1 0 0D0000356 - 110 271 0 0 0 0 0 000010000D0000357 - 110 0 0 1 0 0D0000358 - 102 272 0 0 0 0 0 000010000D0000359 - 102 0 0 1 0 0D0000360 - 110 273 0 0 0 0 0 000010000D0000361 - 110 0 0 2 0 0D0000362 - 110 275 0 0 0 0 0 000010000D0000363 - 110 0 0 2 0 0D0000364 - 110 277 0 0 0 0 0 000010000D0000365 - 110 0 0 1 0 0D0000366 - 110 278 0 0 0 0 0 000010000D0000367 - 110 0 0 2 0 0D0000368 - 110 280 0 0 0 0 0 000010000D0000369 - 110 0 0 2 0 0D0000370 - 110 282 0 0 0 0 0 000010000D0000371 - 110 0 0 2 0 0D0000372 - 144 284 0 0 0 0 0 000020000D0000373 - 144 0 0 1 0 0D0000374 - 128 285 0 0 0 0 0 000010000D0000375 - 128 0 0 5 0 0D0000376 - 142 290 0 0 0 0 0 000010500D0000377 - 142 0 0 1 0 0D0000378 - 102 291 0 0 0 0 0 000010000D0000379 - 102 0 0 1 0 0D0000380 - 110 292 0 0 0 0 0 000010000D0000381 - 110 0 0 1 0 0D0000382 - 110 293 0 0 0 0 0 000010000D0000383 - 110 0 0 1 0 0D0000384 - 110 294 0 0 0 0 0 000010000D0000385 - 110 0 0 1 0 0D0000386 - 110 295 0 0 0 0 0 000010000D0000387 - 110 0 0 1 0 0D0000388 - 102 296 0 0 0 0 0 000010000D0000389 - 102 0 0 1 0 0D0000390 - 110 297 0 0 0 0 0 000010000D0000391 - 110 0 0 2 0 0D0000392 - 110 299 0 0 0 0 0 000010000D0000393 - 110 0 0 2 0 0D0000394 - 110 301 0 0 0 0 0 000010000D0000395 - 110 0 0 2 0 0D0000396 - 110 303 0 0 0 0 0 000010000D0000397 - 110 0 0 1 0 0D0000398 - 144 304 0 0 0 0 0 000020000D0000399 - 144 0 0 1 0 0D0000400 - 128 305 0 0 0 0 0 000010000D0000401 - 128 0 0 5 0 0D0000402 - 142 310 0 0 0 0 0 000010500D0000403 - 142 0 0 1 0 0D0000404 - 102 311 0 0 0 0 0 000010000D0000405 - 102 0 0 1 0 0D0000406 - 110 312 0 0 0 0 0 000010000D0000407 - 110 0 0 1 0 0D0000408 - 110 313 0 0 0 0 0 000010000D0000409 - 110 0 0 1 0 0D0000410 - 110 314 0 0 0 0 0 000010000D0000411 - 110 0 0 1 0 0D0000412 - 110 315 0 0 0 0 0 000010000D0000413 - 110 0 0 1 0 0D0000414 - 110 316 0 0 0 0 0 000010000D0000415 - 110 0 0 1 0 0D0000416 - 110 317 0 0 0 0 0 000010000D0000417 - 110 0 0 1 0 0D0000418 - 102 318 0 0 0 0 0 000010000D0000419 - 102 0 0 1 0 0D0000420 - 110 319 0 0 0 0 0 000010000D0000421 - 110 0 0 2 0 0D0000422 - 110 321 0 0 0 0 0 000010000D0000423 - 110 0 0 2 0 0D0000424 - 110 323 0 0 0 0 0 000010000D0000425 - 110 0 0 2 0 0D0000426 - 110 325 0 0 0 0 0 000010000D0000427 - 110 0 0 1 0 0D0000428 - 110 326 0 0 0 0 0 000010000D0000429 - 110 0 0 2 0 0D0000430 - 110 328 0 0 0 0 0 000010000D0000431 - 110 0 0 2 0 0D0000432 - 144 330 0 0 0 0 0 000020000D0000433 - 144 0 0 1 0 0D0000434 - 128 331 0 0 0 0 0 000010000D0000435 - 128 0 0 7 0 0D0000436 - 142 338 0 0 0 0 0 000010500D0000437 - 142 0 0 1 0 0D0000438 - 102 339 0 0 0 0 0 000010000D0000439 - 102 0 0 1 0 0D0000440 - 110 340 0 0 0 0 0 000010000D0000441 - 110 0 0 2 0 0D0000442 - 110 342 0 0 0 0 0 000010000D0000443 - 110 0 0 2 0 0D0000444 - 110 344 0 0 0 0 0 000010000D0000445 - 110 0 0 2 0 0D0000446 - 110 346 0 0 0 0 0 000010000D0000447 - 110 0 0 2 0 0D0000448 - 102 348 0 0 0 0 0 000010000D0000449 - 102 0 0 1 0 0D0000450 - 110 349 0 0 0 0 0 000010000D0000451 - 110 0 0 2 0 0D0000452 - 110 351 0 0 0 0 0 000010000D0000453 - 110 0 0 2 0 0D0000454 - 110 353 0 0 0 0 0 000010000D0000455 - 110 0 0 2 0 0D0000456 - 110 355 0 0 0 0 0 000010000D0000457 - 110 0 0 2 0 0D0000458 - 144 357 0 0 0 0 0 000020000D0000459 - 144 0 0 1 0 0D0000460 - 128 358 0 0 0 0 0 000010000D0000461 - 128 0 0 6 0 0D0000462 - 142 364 0 0 0 0 0 000010500D0000463 - 142 0 0 1 0 0D0000464 - 102 365 0 0 0 0 0 000010000D0000465 - 102 0 0 1 0 0D0000466 - 110 366 0 0 0 0 0 000010000D0000467 - 110 0 0 2 0 0D0000468 - 110 368 0 0 0 0 0 000010000D0000469 - 110 0 0 2 0 0D0000470 - 102 370 0 0 0 0 0 000010000D0000471 - 102 0 0 1 0 0D0000472 - 110 371 0 0 0 0 0 000010000D0000473 - 110 0 0 2 0 0D0000474 - 110 373 0 0 0 0 0 000010000D0000475 - 110 0 0 2 0 0D0000476 - 144 375 0 0 0 0 0 000020000D0000477 - 144 0 0 1 0 0D0000478 - 128 376 0 0 0 0 0 000010000D0000479 - 128 0 0 5 0 0D0000480 - 142 381 0 0 0 0 0 000010500D0000481 - 142 0 0 1 0 0D0000482 - 102 382 0 0 0 0 0 000010000D0000483 - 102 0 0 1 0 0D0000484 - 110 383 0 0 0 0 0 000010000D0000485 - 110 0 0 1 0 0D0000486 - 110 384 0 0 0 0 0 000010000D0000487 - 110 0 0 1 0 0D0000488 - 110 385 0 0 0 0 0 000010000D0000489 - 110 0 0 1 0 0D0000490 - 110 386 0 0 0 0 0 000010000D0000491 - 110 0 0 1 0 0D0000492 - 102 387 0 0 0 0 0 000010000D0000493 - 102 0 0 1 0 0D0000494 - 110 388 0 0 0 0 0 000010000D0000495 - 110 0 0 2 0 0D0000496 - 110 390 0 0 0 0 0 000010000D0000497 - 110 0 0 2 0 0D0000498 - 110 392 0 0 0 0 0 000010000D0000499 - 110 0 0 2 0 0D0000500 - 110 394 0 0 0 0 0 000010000D0000501 - 110 0 0 2 0 0D0000502 - 144 396 0 0 0 0 0 000020000D0000503 - 144 0 0 1 0 0D0000504 - 128 397 0 0 0 0 0 000010000D0000505 - 128 0 0 6 0 0D0000506 - 142 403 0 0 0 0 0 000010500D0000507 - 142 0 0 1 0 0D0000508 - 102 404 0 0 0 0 0 000010000D0000509 - 102 0 0 1 0 0D0000510 - 110 405 0 0 0 0 0 000010000D0000511 - 110 0 0 2 0 0D0000512 - 110 407 0 0 0 0 0 000010000D0000513 - 110 0 0 2 0 0D0000514 - 110 409 0 0 0 0 0 000010000D0000515 - 110 0 0 1 0 0D0000516 - 110 410 0 0 0 0 0 000010000D0000517 - 110 0 0 2 0 0D0000518 - 102 412 0 0 0 0 0 000010000D0000519 - 102 0 0 1 0 0D0000520 - 110 413 0 0 0 0 0 000010000D0000521 - 110 0 0 2 0 0D0000522 - 110 415 0 0 0 0 0 000010000D0000523 - 110 0 0 2 0 0D0000524 - 110 417 0 0 0 0 0 000010000D0000525 - 110 0 0 2 0 0D0000526 - 110 419 0 0 0 0 0 000010000D0000527 - 110 0 0 2 0 0D0000528 - 144 421 0 0 0 0 0 000020000D0000529 - 144 0 0 1 0 0D0000530 - 128 422 0 0 0 0 0 000010000D0000531 - 128 0 0 5 0 0D0000532 - 142 427 0 0 0 0 0 000010500D0000533 - 142 0 0 1 0 0D0000534 - 102 428 0 0 0 0 0 000010000D0000535 - 102 0 0 1 0 0D0000536 - 110 429 0 0 0 0 0 000010000D0000537 - 110 0 0 1 0 0D0000538 - 110 430 0 0 0 0 0 000010000D0000539 - 110 0 0 1 0 0D0000540 - 110 431 0 0 0 0 0 000010000D0000541 - 110 0 0 1 0 0D0000542 - 110 432 0 0 0 0 0 000010000D0000543 - 110 0 0 1 0 0D0000544 - 102 433 0 0 0 0 0 000010000D0000545 - 102 0 0 1 0 0D0000546 - 110 434 0 0 0 0 0 000010000D0000547 - 110 0 0 2 0 0D0000548 - 110 436 0 0 0 0 0 000010000D0000549 - 110 0 0 2 0 0D0000550 - 110 438 0 0 0 0 0 000010000D0000551 - 110 0 0 2 0 0D0000552 - 110 440 0 0 0 0 0 000010000D0000553 - 110 0 0 2 0 0D0000554 - 142 442 0 0 0 0 0 000010500D0000555 - 142 0 0 1 0 0D0000556 - 102 443 0 0 0 0 0 000010000D0000557 - 102 0 0 1 0 0D0000558 - 110 444 0 0 0 0 0 000010000D0000559 - 110 0 0 2 0 0D0000560 - 110 446 0 0 0 0 0 000010000D0000561 - 110 0 0 2 0 0D0000562 - 110 448 0 0 0 0 0 000010000D0000563 - 110 0 0 2 0 0D0000564 - 110 450 0 0 0 0 0 000010000D0000565 - 110 0 0 2 0 0D0000566 - 102 452 0 0 0 0 0 000010000D0000567 - 102 0 0 1 0 0D0000568 - 110 453 0 0 0 0 0 000010000D0000569 - 110 0 0 2 0 0D0000570 - 110 455 0 0 0 0 0 000010000D0000571 - 110 0 0 1 0 0D0000572 - 110 456 0 0 0 0 0 000010000D0000573 - 110 0 0 1 0 0D0000574 - 110 457 0 0 0 0 0 000010000D0000575 - 110 0 0 2 0 0D0000576 - 144 459 0 0 0 0 0 000020000D0000577 - 144 0 0 1 0 0D0000578 - 128 460 0 0 0 0 0 000010000D0000579 - 128 0 0 5 0 0D0000580 - 142 465 0 0 0 0 0 000010500D0000581 - 142 0 0 1 0 0D0000582 - 102 466 0 0 0 0 0 000010000D0000583 - 102 0 0 1 0 0D0000584 - 110 467 0 0 0 0 0 000010000D0000585 - 110 0 0 2 0 0D0000586 - 110 469 0 0 0 0 0 000010000D0000587 - 110 0 0 2 0 0D0000588 - 110 471 0 0 0 0 0 000010000D0000589 - 110 0 0 1 0 0D0000590 - 110 472 0 0 0 0 0 000010000D0000591 - 110 0 0 1 0 0D0000592 - 102 473 0 0 0 0 0 000010000D0000593 - 102 0 0 1 0 0D0000594 - 110 474 0 0 0 0 0 000010000D0000595 - 110 0 0 2 0 0D0000596 - 110 476 0 0 0 0 0 000010000D0000597 - 110 0 0 2 0 0D0000598 - 110 478 0 0 0 0 0 000010000D0000599 - 110 0 0 2 0 0D0000600 - 110 480 0 0 0 0 0 000010000D0000601 - 110 0 0 2 0 0D0000602 - 144 482 0 0 0 0 0 000020000D0000603 - 144 0 0 1 0 0D0000604 - 128 483 0 0 0 0 0 000010000D0000605 - 128 0 0 6 0 0D0000606 - 142 489 0 0 0 0 0 000010500D0000607 - 142 0 0 1 0 0D0000608 - 102 490 0 0 0 0 0 000010000D0000609 - 102 0 0 1 0 0D0000610 - 110 491 0 0 0 0 0 000010000D0000611 - 110 0 0 2 0 0D0000612 - 110 493 0 0 0 0 0 000010000D0000613 - 110 0 0 2 0 0D0000614 - 110 495 0 0 0 0 0 000010000D0000615 - 110 0 0 2 0 0D0000616 - 110 497 0 0 0 0 0 000010000D0000617 - 110 0 0 2 0 0D0000618 - 102 499 0 0 0 0 0 000010000D0000619 - 102 0 0 1 0 0D0000620 - 110 500 0 0 0 0 0 000010000D0000621 - 110 0 0 2 0 0D0000622 - 110 502 0 0 0 0 0 000010000D0000623 - 110 0 0 2 0 0D0000624 - 110 504 0 0 0 0 0 000010000D0000625 - 110 0 0 2 0 0D0000626 - 110 506 0 0 0 0 0 000010000D0000627 - 110 0 0 2 0 0D0000628 - 144 508 0 0 0 0 0 000020000D0000629 - 144 0 0 1 0 0D0000630 - 128 509 0 0 0 0 0 000010000D0000631 - 128 0 0 6 0 0D0000632 - 142 515 0 0 0 0 0 000010500D0000633 - 142 0 0 1 0 0D0000634 - 102 516 0 0 0 0 0 000010000D0000635 - 102 0 0 1 0 0D0000636 - 110 517 0 0 0 0 0 000010000D0000637 - 110 0 0 2 0 0D0000638 - 110 519 0 0 0 0 0 000010000D0000639 - 110 0 0 2 0 0D0000640 - 110 521 0 0 0 0 0 000010000D0000641 - 110 0 0 2 0 0D0000642 - 102 523 0 0 0 0 0 000010000D0000643 - 102 0 0 1 0 0D0000644 - 110 524 0 0 0 0 0 000010000D0000645 - 110 0 0 2 0 0D0000646 - 110 526 0 0 0 0 0 000010000D0000647 - 110 0 0 2 0 0D0000648 - 110 528 0 0 0 0 0 000010000D0000649 - 110 0 0 2 0 0D0000650 - 144 530 0 0 0 0 0 000020000D0000651 - 144 0 0 1 0 0D0000652 - 128 531 0 0 0 0 0 000010000D0000653 - 128 0 0 5 0 0D0000654 - 142 536 0 0 0 0 0 000010500D0000655 - 142 0 0 1 0 0D0000656 - 102 537 0 0 0 0 0 000010000D0000657 - 102 0 0 1 0 0D0000658 - 110 538 0 0 0 0 0 000010000D0000659 - 110 0 0 2 0 0D0000660 - 110 540 0 0 0 0 0 000010000D0000661 - 110 0 0 1 0 0D0000662 - 110 541 0 0 0 0 0 000010000D0000663 - 110 0 0 1 0 0D0000664 - 110 542 0 0 0 0 0 000010000D0000665 - 110 0 0 2 0 0D0000666 - 102 544 0 0 0 0 0 000010000D0000667 - 102 0 0 1 0 0D0000668 - 110 545 0 0 0 0 0 000010000D0000669 - 110 0 0 2 0 0D0000670 - 110 547 0 0 0 0 0 000010000D0000671 - 110 0 0 2 0 0D0000672 - 110 549 0 0 0 0 0 000010000D0000673 - 110 0 0 2 0 0D0000674 - 110 551 0 0 0 0 0 000010000D0000675 - 110 0 0 2 0 0D0000676 - 144 553 0 0 0 0 0 000020000D0000677 - 144 0 0 1 0 0D0000678 - 128 554 0 0 0 0 0 000010000D0000679 - 128 0 0 5 0 0D0000680 - 142 559 0 0 0 0 0 000010500D0000681 - 142 0 0 1 0 0D0000682 - 102 560 0 0 0 0 0 000010000D0000683 - 102 0 0 1 0 0D0000684 - 110 561 0 0 0 0 0 000010000D0000685 - 110 0 0 2 0 0D0000686 - 110 563 0 0 0 0 0 000010000D0000687 - 110 0 0 1 0 0D0000688 - 110 564 0 0 0 0 0 000010000D0000689 - 110 0 0 1 0 0D0000690 - 110 565 0 0 0 0 0 000010000D0000691 - 110 0 0 1 0 0D0000692 - 102 566 0 0 0 0 0 000010000D0000693 - 102 0 0 1 0 0D0000694 - 110 567 0 0 0 0 0 000010000D0000695 - 110 0 0 2 0 0D0000696 - 110 569 0 0 0 0 0 000010000D0000697 - 110 0 0 2 0 0D0000698 - 110 571 0 0 0 0 0 000010000D0000699 - 110 0 0 1 0 0D0000700 - 110 572 0 0 0 0 0 000010000D0000701 - 110 0 0 2 0 0D0000702 - 144 574 0 0 0 0 0 000020000D0000703 - 144 0 0 1 0 0D0000704 - 128 575 0 0 0 0 0 000010000D0000705 - 128 0 0 5 0 0D0000706 - 142 580 0 0 0 0 0 000010500D0000707 - 142 0 0 1 0 0D0000708 - 102 581 0 0 0 0 0 000010000D0000709 - 102 0 0 1 0 0D0000710 - 110 582 0 0 0 0 0 000010000D0000711 - 110 0 0 2 0 0D0000712 - 110 584 0 0 0 0 0 000010000D0000713 - 110 0 0 1 0 0D0000714 - 110 585 0 0 0 0 0 000010000D0000715 - 110 0 0 1 0 0D0000716 - 110 586 0 0 0 0 0 000010000D0000717 - 110 0 0 1 0 0D0000718 - 102 587 0 0 0 0 0 000010000D0000719 - 102 0 0 1 0 0D0000720 - 110 588 0 0 0 0 0 000010000D0000721 - 110 0 0 1 0 0D0000722 - 110 589 0 0 0 0 0 000010000D0000723 - 110 0 0 1 0 0D0000724 - 110 590 0 0 0 0 0 000010000D0000725 - 110 0 0 1 0 0D0000726 - 110 591 0 0 0 0 0 000010000D0000727 - 110 0 0 1 0 0D0000728 - 144 592 0 0 0 0 0 000020000D0000729 - 144 0 0 1 0 0D0000730 - 128 593 0 0 0 0 0 000010000D0000731 - 128 0 0 5 0 0D0000732 - 142 598 0 0 0 0 0 000010500D0000733 - 142 0 0 1 0 0D0000734 - 102 599 0 0 0 0 0 000010000D0000735 - 102 0 0 1 0 0D0000736 - 110 600 0 0 0 0 0 000010000D0000737 - 110 0 0 2 0 0D0000738 - 110 602 0 0 0 0 0 000010000D0000739 - 110 0 0 1 0 0D0000740 - 110 603 0 0 0 0 0 000010000D0000741 - 110 0 0 1 0 0D0000742 - 110 604 0 0 0 0 0 000010000D0000743 - 110 0 0 2 0 0D0000744 - 102 606 0 0 0 0 0 000010000D0000745 - 102 0 0 1 0 0D0000746 - 110 607 0 0 0 0 0 000010000D0000747 - 110 0 0 1 0 0D0000748 - 110 608 0 0 0 0 0 000010000D0000749 - 110 0 0 1 0 0D0000750 - 110 609 0 0 0 0 0 000010000D0000751 - 110 0 0 2 0 0D0000752 - 110 611 0 0 0 0 0 000010000D0000753 - 110 0 0 1 0 0D0000754 - 144 612 0 0 0 0 0 000020000D0000755 - 144 0 0 1 0 0D0000756 - 128 613 0 0 0 0 0 000010000D0000757 - 128 0 0 6 0 0D0000758 - 142 619 0 0 0 0 0 000010500D0000759 - 142 0 0 1 0 0D0000760 - 102 620 0 0 0 0 0 000010000D0000761 - 102 0 0 1 0 0D0000762 - 110 621 0 0 0 0 0 000010000D0000763 - 110 0 0 2 0 0D0000764 - 110 623 0 0 0 0 0 000010000D0000765 - 110 0 0 1 0 0D0000766 - 102 624 0 0 0 0 0 000010000D0000767 - 102 0 0 1 0 0D0000768 - 110 625 0 0 0 0 0 000010000D0000769 - 110 0 0 2 0 0D0000770 - 110 627 0 0 0 0 0 000010000D0000771 - 110 0 0 2 0 0D0000772 - 144 629 0 0 0 0 0 000020000D0000773 - 144 0 0 1 0 0D0000774 - 128 630 0 0 0 0 0 000010000D0000775 - 128 0 0 7 0 0D0000776 - 142 637 0 0 0 0 0 000010500D0000777 - 142 0 0 1 0 0D0000778 - 102 638 0 0 0 0 0 000010000D0000779 - 102 0 0 1 0 0D0000780 - 110 639 0 0 0 0 0 000010000D0000781 - 110 0 0 2 0 0D0000782 - 110 641 0 0 0 0 0 000010000D0000783 - 110 0 0 2 0 0D0000784 - 110 643 0 0 0 0 0 000010000D0000785 - 110 0 0 2 0 0D0000786 - 110 645 0 0 0 0 0 000010000D0000787 - 110 0 0 2 0 0D0000788 - 102 647 0 0 0 0 0 000010000D0000789 - 102 0 0 1 0 0D0000790 - 110 648 0 0 0 0 0 000010000D0000791 - 110 0 0 2 0 0D0000792 - 110 650 0 0 0 0 0 000010000D0000793 - 110 0 0 2 0 0D0000794 - 110 652 0 0 0 0 0 000010000D0000795 - 110 0 0 2 0 0D0000796 - 110 654 0 0 0 0 0 000010000D0000797 - 110 0 0 2 0 0D0000798 - 144 656 0 0 0 0 0 000020000D0000799 - 144 0 0 1 0 0D0000800 - 128 657 0 0 0 0 0 000010000D0000801 - 128 0 0 5 0 0D0000802 - 142 662 0 0 0 0 0 000010500D0000803 - 142 0 0 1 0 0D0000804 - 102 663 0 0 0 0 0 000010000D0000805 - 102 0 0 1 0 0D0000806 - 110 664 0 0 0 0 0 000010000D0000807 - 110 0 0 2 0 0D0000808 - 110 666 0 0 0 0 0 000010000D0000809 - 110 0 0 1 0 0D0000810 - 110 667 0 0 0 0 0 000010000D0000811 - 110 0 0 2 0 0D0000812 - 110 669 0 0 0 0 0 000010000D0000813 - 110 0 0 2 0 0D0000814 - 102 671 0 0 0 0 0 000010000D0000815 - 102 0 0 1 0 0D0000816 - 110 672 0 0 0 0 0 000010000D0000817 - 110 0 0 2 0 0D0000818 - 110 674 0 0 0 0 0 000010000D0000819 - 110 0 0 1 0 0D0000820 - 110 675 0 0 0 0 0 000010000D0000821 - 110 0 0 1 0 0D0000822 - 110 676 0 0 0 0 0 000010000D0000823 - 110 0 0 2 0 0D0000824 - 402 678 0 0 0 0 0 000020000D0000825 - 402 0 0 1 1 0D0000826 - 402 679 0 0 0 0 0 000020000D0000827 - 402 0 0 3 1 0D0000828 - 144 682 0 0 0 0 0 000020000D0000829 - 144 0 0 1 0 0D0000830 - 128 683 0 0 0 0 0 000010000D0000831 - 128 0 0 6 0 0D0000832 - 142 689 0 0 0 0 0 000010500D0000833 - 142 0 0 1 0 0D0000834 - 102 690 0 0 0 0 0 000010000D0000835 - 102 0 0 1 0 0D0000836 - 110 691 0 0 0 0 0 000010000D0000837 - 110 0 0 2 0 0D0000838 - 110 693 0 0 0 0 0 000010000D0000839 - 110 0 0 1 0 0D0000840 - 110 694 0 0 0 0 0 000010000D0000841 - 110 0 0 1 0 0D0000842 - 110 695 0 0 0 0 0 000010000D0000843 - 110 0 0 2 0 0D0000844 - 102 697 0 0 0 0 0 000010000D0000845 - 102 0 0 1 0 0D0000846 - 110 698 0 0 0 0 0 000010000D0000847 - 110 0 0 2 0 0D0000848 - 110 700 0 0 0 0 0 000010000D0000849 - 110 0 0 2 0 0D0000850 - 110 702 0 0 0 0 0 000010000D0000851 - 110 0 0 2 0 0D0000852 - 110 704 0 0 0 0 0 000010000D0000853 - 110 0 0 2 0 0D0000854 - 144 706 0 0 0 0 0 000020000D0000855 - 144 0 0 1 0 0D0000856 - 128 707 0 0 0 0 0 000010000D0000857 - 128 0 0 6 0 0D0000858 - 142 713 0 0 0 0 0 000010500D0000859 - 142 0 0 1 0 0D0000860 - 102 714 0 0 0 0 0 000010000D0000861 - 102 0 0 1 0 0D0000862 - 110 715 0 0 0 0 0 000010000D0000863 - 110 0 0 2 0 0D0000864 - 110 717 0 0 0 0 0 000010000D0000865 - 110 0 0 2 0 0D0000866 - 110 719 0 0 0 0 0 000010000D0000867 - 110 0 0 1 0 0D0000868 - 110 720 0 0 0 0 0 000010000D0000869 - 110 0 0 2 0 0D0000870 - 102 722 0 0 0 0 0 000010000D0000871 - 102 0 0 1 0 0D0000872 - 110 723 0 0 0 0 0 000010000D0000873 - 110 0 0 2 0 0D0000874 - 110 725 0 0 0 0 0 000010000D0000875 - 110 0 0 2 0 0D0000876 - 110 727 0 0 0 0 0 000010000D0000877 - 110 0 0 2 0 0D0000878 - 110 729 0 0 0 0 0 000010000D0000879 - 110 0 0 2 0 0D0000880 - 144 731 0 0 0 0 0 000020000D0000881 - 144 0 0 1 0 0D0000882 - 128 732 0 0 0 0 0 000010000D0000883 - 128 0 0 6 0 0D0000884 - 142 738 0 0 0 0 0 000010500D0000885 - 142 0 0 1 0 0D0000886 - 102 739 0 0 0 0 0 000010000D0000887 - 102 0 0 1 0 0D0000888 - 110 740 0 0 0 0 0 000010000D0000889 - 110 0 0 2 0 0D0000890 - 110 742 0 0 0 0 0 000010000D0000891 - 110 0 0 2 0 0D0000892 - 110 744 0 0 0 0 0 000010000D0000893 - 110 0 0 2 0 0D0000894 - 110 746 0 0 0 0 0 000010000D0000895 - 110 0 0 2 0 0D0000896 - 102 748 0 0 0 0 0 000010000D0000897 - 102 0 0 1 0 0D0000898 - 110 749 0 0 0 0 0 000010000D0000899 - 110 0 0 2 0 0D0000900 - 110 751 0 0 0 0 0 000010000D0000901 - 110 0 0 2 0 0D0000902 - 110 753 0 0 0 0 0 000010000D0000903 - 110 0 0 2 0 0D0000904 - 110 755 0 0 0 0 0 000010000D0000905 - 110 0 0 2 0 0D0000906 - 144 757 0 0 0 0 0 000020000D0000907 - 144 0 0 1 0 0D0000908 - 128 758 0 0 0 0 0 000010000D0000909 - 128 0 0 6 0 0D0000910 - 142 764 0 0 0 0 0 000010500D0000911 - 142 0 0 1 0 0D0000912 - 102 765 0 0 0 0 0 000010000D0000913 - 102 0 0 1 0 0D0000914 - 110 766 0 0 0 0 0 000010000D0000915 - 110 0 0 2 0 0D0000916 - 110 768 0 0 0 0 0 000010000D0000917 - 110 0 0 2 0 0D0000918 - 110 770 0 0 0 0 0 000010000D0000919 - 110 0 0 2 0 0D0000920 - 110 772 0 0 0 0 0 000010000D0000921 - 110 0 0 2 0 0D0000922 - 110 774 0 0 0 0 0 000010000D0000923 - 110 0 0 2 0 0D0000924 - 102 776 0 0 0 0 0 000010000D0000925 - 102 0 0 1 0 0D0000926 - 110 777 0 0 0 0 0 000010000D0000927 - 110 0 0 2 0 0D0000928 - 110 779 0 0 0 0 0 000010000D0000929 - 110 0 0 2 0 0D0000930 - 110 781 0 0 0 0 0 000010000D0000931 - 110 0 0 2 0 0D0000932 - 110 783 0 0 0 0 0 000010000D0000933 - 110 0 0 2 0 0D0000934 - 110 785 0 0 0 0 0 000010000D0000935 - 110 0 0 2 0 0D0000936 - 142 787 0 0 0 0 0 000010500D0000937 - 142 0 0 1 0 0D0000938 - 102 788 0 0 0 0 0 000010000D0000939 - 102 0 0 1 0 0D0000940 - 110 789 0 0 0 0 0 000010000D0000941 - 110 0 0 1 0 0D0000942 - 110 790 0 0 0 0 0 000010000D0000943 - 110 0 0 1 0 0D0000944 - 110 791 0 0 0 0 0 000010000D0000945 - 110 0 0 1 0 0D0000946 - 110 792 0 0 0 0 0 000010000D0000947 - 110 0 0 1 0 0D0000948 - 102 793 0 0 0 0 0 000010000D0000949 - 102 0 0 1 0 0D0000950 - 110 794 0 0 0 0 0 000010000D0000951 - 110 0 0 2 0 0D0000952 - 110 796 0 0 0 0 0 000010000D0000953 - 110 0 0 2 0 0D0000954 - 110 798 0 0 0 0 0 000010000D0000955 - 110 0 0 2 0 0D0000956 - 110 800 0 0 0 0 0 000010000D0000957 - 110 0 0 2 0 0D0000958 - 144 802 0 0 0 0 0 000020000D0000959 - 144 0 0 1 0 0D0000960 - 128 803 0 0 0 0 0 000010000D0000961 - 128 0 0 6 0 0D0000962 - 142 809 0 0 0 0 0 000010500D0000963 - 142 0 0 1 0 0D0000964 - 102 810 0 0 0 0 0 000010000D0000965 - 102 0 0 1 0 0D0000966 - 110 811 0 0 0 0 0 000010000D0000967 - 110 0 0 2 0 0D0000968 - 110 813 0 0 0 0 0 000010000D0000969 - 110 0 0 2 0 0D0000970 - 110 815 0 0 0 0 0 000010000D0000971 - 110 0 0 1 0 0D0000972 - 110 816 0 0 0 0 0 000010000D0000973 - 110 0 0 2 0 0D0000974 - 102 818 0 0 0 0 0 000010000D0000975 - 102 0 0 1 0 0D0000976 - 110 819 0 0 0 0 0 000010000D0000977 - 110 0 0 2 0 0D0000978 - 110 821 0 0 0 0 0 000010000D0000979 - 110 0 0 2 0 0D0000980 - 110 823 0 0 0 0 0 000010000D0000981 - 110 0 0 2 0 0D0000982 - 110 825 0 0 0 0 0 000010000D0000983 - 110 0 0 2 0 0D0000984 - 144 827 0 0 0 0 0 000020000D0000985 - 144 0 0 1 0 0D0000986 - 128 828 0 0 0 0 0 000010000D0000987 - 128 0 0 6 0 0D0000988 - 142 834 0 0 0 0 0 000010500D0000989 - 142 0 0 1 0 0D0000990 - 102 835 0 0 0 0 0 000010000D0000991 - 102 0 0 1 0 0D0000992 - 110 836 0 0 0 0 0 000010000D0000993 - 110 0 0 2 0 0D0000994 - 110 838 0 0 0 0 0 000010000D0000995 - 110 0 0 1 0 0D0000996 - 110 839 0 0 0 0 0 000010000D0000997 - 110 0 0 1 0 0D0000998 - 110 840 0 0 0 0 0 000010000D0000999 - 110 0 0 2 0 0D0001000 - 102 842 0 0 0 0 0 000010000D0001001 - 102 0 0 1 0 0D0001002 - 110 843 0 0 0 0 0 000010000D0001003 - 110 0 0 2 0 0D0001004 - 110 845 0 0 0 0 0 000010000D0001005 - 110 0 0 2 0 0D0001006 - 110 847 0 0 0 0 0 000010000D0001007 - 110 0 0 2 0 0D0001008 - 110 849 0 0 0 0 0 000010000D0001009 - 110 0 0 2 0 0D0001010 - 144 851 0 0 0 0 0 000020000D0001011 - 144 0 0 1 0 0D0001012 - 128 852 0 0 0 0 0 000010000D0001013 - 128 0 0 7 0 0D0001014 - 142 859 0 0 0 0 0 000010500D0001015 - 142 0 0 1 0 0D0001016 - 102 860 0 0 0 0 0 000010000D0001017 - 102 0 0 1 0 0D0001018 - 110 861 0 0 0 0 0 000010000D0001019 - 110 0 0 2 0 0D0001020 - 110 863 0 0 0 0 0 000010000D0001021 - 110 0 0 2 0 0D0001022 - 110 865 0 0 0 0 0 000010000D0001023 - 110 0 0 2 0 0D0001024 - 110 867 0 0 0 0 0 000010000D0001025 - 110 0 0 2 0 0D0001026 - 102 869 0 0 0 0 0 000010000D0001027 - 102 0 0 1 0 0D0001028 - 110 870 0 0 0 0 0 000010000D0001029 - 110 0 0 2 0 0D0001030 - 110 872 0 0 0 0 0 000010000D0001031 - 110 0 0 2 0 0D0001032 - 110 874 0 0 0 0 0 000010000D0001033 - 110 0 0 2 0 0D0001034 - 110 876 0 0 0 0 0 000010000D0001035 - 110 0 0 2 0 0D0001036 - 144 878 0 0 0 0 0 000020000D0001037 - 144 0 0 1 0 0D0001038 - 128 879 0 0 0 0 0 000010000D0001039 - 128 0 0 6 0 0D0001040 - 142 885 0 0 0 0 0 000010500D0001041 - 142 0 0 1 0 0D0001042 - 102 886 0 0 0 0 0 000010000D0001043 - 102 0 0 1 0 0D0001044 - 110 887 0 0 0 0 0 000010000D0001045 - 110 0 0 2 0 0D0001046 - 110 889 0 0 0 0 0 000010000D0001047 - 110 0 0 2 0 0D0001048 - 110 891 0 0 0 0 0 000010000D0001049 - 110 0 0 2 0 0D0001050 - 110 893 0 0 0 0 0 000010000D0001051 - 110 0 0 2 0 0D0001052 - 102 895 0 0 0 0 0 000010000D0001053 - 102 0 0 1 0 0D0001054 - 110 896 0 0 0 0 0 000010000D0001055 - 110 0 0 2 0 0D0001056 - 110 898 0 0 0 0 0 000010000D0001057 - 110 0 0 2 0 0D0001058 - 110 900 0 0 0 0 0 000010000D0001059 - 110 0 0 2 0 0D0001060 - 110 902 0 0 0 0 0 000010000D0001061 - 110 0 0 2 0 0D0001062 - 144 904 0 0 0 0 0 000020000D0001063 - 144 0 0 1 0 0D0001064 - 128 905 0 0 0 0 0 000010000D0001065 - 128 0 0 6 0 0D0001066 - 142 911 0 0 0 0 0 000010500D0001067 - 142 0 0 1 0 0D0001068 - 102 912 0 0 0 0 0 000010000D0001069 - 102 0 0 1 0 0D0001070 - 110 913 0 0 0 0 0 000010000D0001071 - 110 0 0 2 0 0D0001072 - 110 915 0 0 0 0 0 000010000D0001073 - 110 0 0 2 0 0D0001074 - 110 917 0 0 0 0 0 000010000D0001075 - 110 0 0 2 0 0D0001076 - 110 919 0 0 0 0 0 000010000D0001077 - 110 0 0 2 0 0D0001078 - 102 921 0 0 0 0 0 000010000D0001079 - 102 0 0 1 0 0D0001080 - 110 922 0 0 0 0 0 000010000D0001081 - 110 0 0 2 0 0D0001082 - 110 924 0 0 0 0 0 000010000D0001083 - 110 0 0 2 0 0D0001084 - 110 926 0 0 0 0 0 000010000D0001085 - 110 0 0 2 0 0D0001086 - 110 928 0 0 0 0 0 000010000D0001087 - 110 0 0 2 0 0D0001088 - 142 930 0 0 0 0 0 000010500D0001089 - 142 0 0 1 0 0D0001090 - 102 931 0 0 0 0 0 000010000D0001091 - 102 0 0 1 0 0D0001092 - 110 932 0 0 0 0 0 000010000D0001093 - 110 0 0 1 0 0D0001094 - 110 933 0 0 0 0 0 000010000D0001095 - 110 0 0 1 0 0D0001096 - 110 934 0 0 0 0 0 000010000D0001097 - 110 0 0 1 0 0D0001098 - 110 935 0 0 0 0 0 000010000D0001099 - 110 0 0 1 0 0D0001100 - 102 936 0 0 0 0 0 000010000D0001101 - 102 0 0 1 0 0D0001102 - 110 937 0 0 0 0 0 000010000D0001103 - 110 0 0 2 0 0D0001104 - 110 939 0 0 0 0 0 000010000D0001105 - 110 0 0 2 0 0D0001106 - 110 941 0 0 0 0 0 000010000D0001107 - 110 0 0 2 0 0D0001108 - 110 943 0 0 0 0 0 000010000D0001109 - 110 0 0 2 0 0D0001110 - 144 945 0 0 0 0 0 000020000D0001111 - 144 0 0 1 0 0D0001112 - 128 946 0 0 0 0 0 000010000D0001113 - 128 0 0 6 0 0D0001114 - 142 952 0 0 0 0 0 000010500D0001115 - 142 0 0 1 0 0D0001116 - 102 953 0 0 0 0 0 000010000D0001117 - 102 0 0 1 0 0D0001118 - 110 954 0 0 0 0 0 000010000D0001119 - 110 0 0 2 0 0D0001120 - 110 956 0 0 0 0 0 000010000D0001121 - 110 0 0 2 0 0D0001122 - 110 958 0 0 0 0 0 000010000D0001123 - 110 0 0 2 0 0D0001124 - 110 960 0 0 0 0 0 000010000D0001125 - 110 0 0 2 0 0D0001126 - 102 962 0 0 0 0 0 000010000D0001127 - 102 0 0 1 0 0D0001128 - 110 963 0 0 0 0 0 000010000D0001129 - 110 0 0 2 0 0D0001130 - 110 965 0 0 0 0 0 000010000D0001131 - 110 0 0 2 0 0D0001132 - 110 967 0 0 0 0 0 000010000D0001133 - 110 0 0 2 0 0D0001134 - 110 969 0 0 0 0 0 000010000D0001135 - 110 0 0 2 0 0D0001136 - 144 971 0 0 0 0 0 000020000D0001137 - 144 0 0 1 0 0D0001138 - 128 972 0 0 0 0 0 000010000D0001139 - 128 0 0 6 0 0D0001140 - 142 978 0 0 0 0 0 000010500D0001141 - 142 0 0 1 0 0D0001142 - 102 979 0 0 0 0 0 000010000D0001143 - 102 0 0 1 0 0D0001144 - 110 980 0 0 0 0 0 000010000D0001145 - 110 0 0 2 0 0D0001146 - 110 982 0 0 0 0 0 000010000D0001147 - 110 0 0 2 0 0D0001148 - 110 984 0 0 0 0 0 000010000D0001149 - 110 0 0 2 0 0D0001150 - 110 986 0 0 0 0 0 000010000D0001151 - 110 0 0 2 0 0D0001152 - 102 988 0 0 0 0 0 000010000D0001153 - 102 0 0 1 0 0D0001154 - 110 989 0 0 0 0 0 000010000D0001155 - 110 0 0 2 0 0D0001156 - 110 991 0 0 0 0 0 000010000D0001157 - 110 0 0 2 0 0D0001158 - 110 993 0 0 0 0 0 000010000D0001159 - 110 0 0 2 0 0D0001160 - 110 995 0 0 0 0 0 000010000D0001161 - 110 0 0 2 0 0D0001162 - 142 997 0 0 0 0 0 000010500D0001163 - 142 0 0 1 0 0D0001164 - 102 998 0 0 0 0 0 000010000D0001165 - 102 0 0 1 0 0D0001166 - 110 999 0 0 0 0 0 000010000D0001167 - 110 0 0 1 0 0D0001168 - 110 1000 0 0 0 0 0 000010000D0001169 - 110 0 0 1 0 0D0001170 - 110 1001 0 0 0 0 0 000010000D0001171 - 110 0 0 1 0 0D0001172 - 110 1002 0 0 0 0 0 000010000D0001173 - 110 0 0 1 0 0D0001174 - 102 1003 0 0 0 0 0 000010000D0001175 - 102 0 0 1 0 0D0001176 - 110 1004 0 0 0 0 0 000010000D0001177 - 110 0 0 2 0 0D0001178 - 110 1006 0 0 0 0 0 000010000D0001179 - 110 0 0 2 0 0D0001180 - 110 1008 0 0 0 0 0 000010000D0001181 - 110 0 0 2 0 0D0001182 - 110 1010 0 0 0 0 0 000010000D0001183 - 110 0 0 2 0 0D0001184 - 144 1012 0 0 0 0 0 000020000D0001185 - 144 0 0 1 0 0D0001186 - 128 1013 0 0 0 0 0 000010000D0001187 - 128 0 0 6 0 0D0001188 - 142 1019 0 0 0 0 0 000010500D0001189 - 142 0 0 1 0 0D0001190 - 102 1020 0 0 0 0 0 000010000D0001191 - 102 0 0 1 0 0D0001192 - 110 1021 0 0 0 0 0 000010000D0001193 - 110 0 0 2 0 0D0001194 - 110 1023 0 0 0 0 0 000010000D0001195 - 110 0 0 2 0 0D0001196 - 110 1025 0 0 0 0 0 000010000D0001197 - 110 0 0 2 0 0D0001198 - 110 1027 0 0 0 0 0 000010000D0001199 - 110 0 0 2 0 0D0001200 - 110 1029 0 0 0 0 0 000010000D0001201 - 110 0 0 2 0 0D0001202 - 102 1031 0 0 0 0 0 000010000D0001203 - 102 0 0 1 0 0D0001204 - 110 1032 0 0 0 0 0 000010000D0001205 - 110 0 0 2 0 0D0001206 - 110 1034 0 0 0 0 0 000010000D0001207 - 110 0 0 2 0 0D0001208 - 110 1036 0 0 0 0 0 000010000D0001209 - 110 0 0 2 0 0D0001210 - 110 1038 0 0 0 0 0 000010000D0001211 - 110 0 0 2 0 0D0001212 - 110 1040 0 0 0 0 0 000010000D0001213 - 110 0 0 2 0 0D0001214 - 142 1042 0 0 0 0 0 000010500D0001215 - 142 0 0 1 0 0D0001216 - 102 1043 0 0 0 0 0 000010000D0001217 - 102 0 0 1 0 0D0001218 - 110 1044 0 0 0 0 0 000010000D0001219 - 110 0 0 1 0 0D0001220 - 110 1045 0 0 0 0 0 000010000D0001221 - 110 0 0 1 0 0D0001222 - 110 1046 0 0 0 0 0 000010000D0001223 - 110 0 0 1 0 0D0001224 - 110 1047 0 0 0 0 0 000010000D0001225 - 110 0 0 1 0 0D0001226 - 102 1048 0 0 0 0 0 000010000D0001227 - 102 0 0 1 0 0D0001228 - 110 1049 0 0 0 0 0 000010000D0001229 - 110 0 0 2 0 0D0001230 - 110 1051 0 0 0 0 0 000010000D0001231 - 110 0 0 2 0 0D0001232 - 110 1053 0 0 0 0 0 000010000D0001233 - 110 0 0 2 0 0D0001234 - 110 1055 0 0 0 0 0 000010000D0001235 - 110 0 0 2 0 0D0001236 - 144 1057 0 0 0 0 0 000020000D0001237 - 144 0 0 1 0 0D0001238 - 128 1058 0 0 0 0 0 000010000D0001239 - 128 0 0 6 0 0D0001240 - 142 1064 0 0 0 0 0 000010500D0001241 - 142 0 0 1 0 0D0001242 - 102 1065 0 0 0 0 0 000010000D0001243 - 102 0 0 1 0 0D0001244 - 110 1066 0 0 0 0 0 000010000D0001245 - 110 0 0 2 0 0D0001246 - 110 1068 0 0 0 0 0 000010000D0001247 - 110 0 0 2 0 0D0001248 - 110 1070 0 0 0 0 0 000010000D0001249 - 110 0 0 2 0 0D0001250 - 110 1072 0 0 0 0 0 000010000D0001251 - 110 0 0 2 0 0D0001252 - 102 1074 0 0 0 0 0 000010000D0001253 - 102 0 0 1 0 0D0001254 - 110 1075 0 0 0 0 0 000010000D0001255 - 110 0 0 2 0 0D0001256 - 110 1077 0 0 0 0 0 000010000D0001257 - 110 0 0 2 0 0D0001258 - 110 1079 0 0 0 0 0 000010000D0001259 - 110 0 0 2 0 0D0001260 - 110 1081 0 0 0 0 0 000010000D0001261 - 110 0 0 2 0 0D0001262 - 144 1083 0 0 0 0 0 000020000D0001263 - 144 0 0 1 0 0D0001264 - 128 1084 0 0 0 0 0 000010000D0001265 - 128 0 0 7 0 0D0001266 - 142 1091 0 0 0 0 0 000010500D0001267 - 142 0 0 1 0 0D0001268 - 102 1092 0 0 0 0 0 000010000D0001269 - 102 0 0 1 0 0D0001270 - 110 1093 0 0 0 0 0 000010000D0001271 - 110 0 0 2 0 0D0001272 - 110 1095 0 0 0 0 0 000010000D0001273 - 110 0 0 2 0 0D0001274 - 110 1097 0 0 0 0 0 000010000D0001275 - 110 0 0 2 0 0D0001276 - 110 1099 0 0 0 0 0 000010000D0001277 - 110 0 0 2 0 0D0001278 - 102 1101 0 0 0 0 0 000010000D0001279 - 102 0 0 1 0 0D0001280 - 110 1102 0 0 0 0 0 000010000D0001281 - 110 0 0 2 0 0D0001282 - 110 1104 0 0 0 0 0 000010000D0001283 - 110 0 0 2 0 0D0001284 - 110 1106 0 0 0 0 0 000010000D0001285 - 110 0 0 2 0 0D0001286 - 110 1108 0 0 0 0 0 000010000D0001287 - 110 0 0 2 0 0D0001288 - 144 1110 0 0 0 0 0 000020000D0001289 - 144 0 0 1 0 0D0001290 - 128 1111 0 0 0 0 0 000010000D0001291 - 128 0 0 6 0 0D0001292 - 142 1117 0 0 0 0 0 000010500D0001293 - 142 0 0 1 0 0D0001294 - 102 1118 0 0 0 0 0 000010000D0001295 - 102 0 0 1 0 0D0001296 - 110 1119 0 0 0 0 0 000010000D0001297 - 110 0 0 2 0 0D0001298 - 110 1121 0 0 0 0 0 000010000D0001299 - 110 0 0 2 0 0D0001300 - 110 1123 0 0 0 0 0 000010000D0001301 - 110 0 0 1 0 0D0001302 - 110 1124 0 0 0 0 0 000010000D0001303 - 110 0 0 2 0 0D0001304 - 102 1126 0 0 0 0 0 000010000D0001305 - 102 0 0 1 0 0D0001306 - 110 1127 0 0 0 0 0 000010000D0001307 - 110 0 0 2 0 0D0001308 - 110 1129 0 0 0 0 0 000010000D0001309 - 110 0 0 2 0 0D0001310 - 110 1131 0 0 0 0 0 000010000D0001311 - 110 0 0 2 0 0D0001312 - 110 1133 0 0 0 0 0 000010000D0001313 - 110 0 0 2 0 0D0001314 - 144 1135 0 0 0 0 0 000020000D0001315 - 144 0 0 1 0 0D0001316 - 128 1136 0 0 0 0 0 000010000D0001317 - 128 0 0 7 0 0D0001318 - 142 1143 0 0 0 0 0 000010500D0001319 - 142 0 0 1 0 0D0001320 - 102 1144 0 0 0 0 0 000010000D0001321 - 102 0 0 1 0 0D0001322 - 110 1145 0 0 0 0 0 000010000D0001323 - 110 0 0 2 0 0D0001324 - 110 1147 0 0 0 0 0 000010000D0001325 - 110 0 0 2 0 0D0001326 - 110 1149 0 0 0 0 0 000010000D0001327 - 110 0 0 2 0 0D0001328 - 110 1151 0 0 0 0 0 000010000D0001329 - 110 0 0 2 0 0D0001330 - 102 1153 0 0 0 0 0 000010000D0001331 - 102 0 0 1 0 0D0001332 - 110 1154 0 0 0 0 0 000010000D0001333 - 110 0 0 2 0 0D0001334 - 110 1156 0 0 0 0 0 000010000D0001335 - 110 0 0 2 0 0D0001336 - 110 1158 0 0 0 0 0 000010000D0001337 - 110 0 0 2 0 0D0001338 - 110 1160 0 0 0 0 0 000010000D0001339 - 110 0 0 2 0 0D0001340 - 144 1162 0 0 0 0 0 000020000D0001341 - 144 0 0 1 0 0D0001342 - 128 1163 0 0 0 0 0 000010000D0001343 - 128 0 0 6 0 0D0001344 - 142 1169 0 0 0 0 0 000010500D0001345 - 142 0 0 1 0 0D0001346 - 102 1170 0 0 0 0 0 000010000D0001347 - 102 0 0 1 0 0D0001348 - 110 1171 0 0 0 0 0 000010000D0001349 - 110 0 0 2 0 0D0001350 - 110 1173 0 0 0 0 0 000010000D0001351 - 110 0 0 2 0 0D0001352 - 110 1175 0 0 0 0 0 000010000D0001353 - 110 0 0 2 0 0D0001354 - 110 1177 0 0 0 0 0 000010000D0001355 - 110 0 0 2 0 0D0001356 - 102 1179 0 0 0 0 0 000010000D0001357 - 102 0 0 1 0 0D0001358 - 110 1180 0 0 0 0 0 000010000D0001359 - 110 0 0 2 0 0D0001360 - 110 1182 0 0 0 0 0 000010000D0001361 - 110 0 0 2 0 0D0001362 - 110 1184 0 0 0 0 0 000010000D0001363 - 110 0 0 2 0 0D0001364 - 110 1186 0 0 0 0 0 000010000D0001365 - 110 0 0 2 0 0D0001366 - 144 1188 0 0 0 0 0 000020000D0001367 - 144 0 0 1 0 0D0001368 - 128 1189 0 0 0 0 0 000010000D0001369 - 128 0 0 6 0 0D0001370 - 142 1195 0 0 0 0 0 000010500D0001371 - 142 0 0 1 0 0D0001372 - 102 1196 0 0 0 0 0 000010000D0001373 - 102 0 0 1 0 0D0001374 - 110 1197 0 0 0 0 0 000010000D0001375 - 110 0 0 2 0 0D0001376 - 110 1199 0 0 0 0 0 000010000D0001377 - 110 0 0 2 0 0D0001378 - 110 1201 0 0 0 0 0 000010000D0001379 - 110 0 0 2 0 0D0001380 - 110 1203 0 0 0 0 0 000010000D0001381 - 110 0 0 2 0 0D0001382 - 102 1205 0 0 0 0 0 000010000D0001383 - 102 0 0 1 0 0D0001384 - 110 1206 0 0 0 0 0 000010000D0001385 - 110 0 0 2 0 0D0001386 - 110 1208 0 0 0 0 0 000010000D0001387 - 110 0 0 2 0 0D0001388 - 110 1210 0 0 0 0 0 000010000D0001389 - 110 0 0 2 0 0D0001390 - 110 1212 0 0 0 0 0 000010000D0001391 - 110 0 0 2 0 0D0001392 - 144 1214 0 0 0 0 0 000020000D0001393 - 144 0 0 1 0 0D0001394 - 128 1215 0 0 0 0 0 000010000D0001395 - 128 0 0 7 0 0D0001396 - 142 1222 0 0 0 0 0 000010500D0001397 - 142 0 0 1 0 0D0001398 - 102 1223 0 0 0 0 0 000010000D0001399 - 102 0 0 1 0 0D0001400 - 110 1224 0 0 0 0 0 000010000D0001401 - 110 0 0 2 0 0D0001402 - 110 1226 0 0 0 0 0 000010000D0001403 - 110 0 0 2 0 0D0001404 - 110 1228 0 0 0 0 0 000010000D0001405 - 110 0 0 2 0 0D0001406 - 110 1230 0 0 0 0 0 000010000D0001407 - 110 0 0 2 0 0D0001408 - 102 1232 0 0 0 0 0 000010000D0001409 - 102 0 0 1 0 0D0001410 - 110 1233 0 0 0 0 0 000010000D0001411 - 110 0 0 2 0 0D0001412 - 110 1235 0 0 0 0 0 000010000D0001413 - 110 0 0 2 0 0D0001414 - 110 1237 0 0 0 0 0 000010000D0001415 - 110 0 0 2 0 0D0001416 - 110 1239 0 0 0 0 0 000010000D0001417 - 110 0 0 2 0 0D0001418 - 144 1241 0 0 0 0 0 000020000D0001419 - 144 0 0 1 0 0D0001420 - 128 1242 0 0 0 0 0 000010000D0001421 - 128 0 0 7 0 0D0001422 - 142 1249 0 0 0 0 0 000010500D0001423 - 142 0 0 1 0 0D0001424 - 102 1250 0 0 0 0 0 000010000D0001425 - 102 0 0 1 0 0D0001426 - 110 1251 0 0 0 0 0 000010000D0001427 - 110 0 0 2 0 0D0001428 - 110 1253 0 0 0 0 0 000010000D0001429 - 110 0 0 2 0 0D0001430 - 110 1255 0 0 0 0 0 000010000D0001431 - 110 0 0 2 0 0D0001432 - 110 1257 0 0 0 0 0 000010000D0001433 - 110 0 0 1 0 0D0001434 - 102 1258 0 0 0 0 0 000010000D0001435 - 102 0 0 1 0 0D0001436 - 110 1259 0 0 0 0 0 000010000D0001437 - 110 0 0 2 0 0D0001438 - 110 1261 0 0 0 0 0 000010000D0001439 - 110 0 0 2 0 0D0001440 - 110 1263 0 0 0 0 0 000010000D0001441 - 110 0 0 2 0 0D0001442 - 110 1265 0 0 0 0 0 000010000D0001443 - 110 0 0 2 0 0D0001444 - 144 1267 0 0 0 0 0 000020000D0001445 - 144 0 0 1 0 0D0001446 - 128 1268 0 0 0 0 0 000010000D0001447 - 128 0 0 6 0 0D0001448 - 142 1274 0 0 0 0 0 000010500D0001449 - 142 0 0 1 0 0D0001450 - 102 1275 0 0 0 0 0 000010000D0001451 - 102 0 0 1 0 0D0001452 - 110 1276 0 0 0 0 0 000010000D0001453 - 110 0 0 2 0 0D0001454 - 110 1278 0 0 0 0 0 000010000D0001455 - 110 0 0 1 0 0D0001456 - 110 1279 0 0 0 0 0 000010000D0001457 - 110 0 0 1 0 0D0001458 - 110 1280 0 0 0 0 0 000010000D0001459 - 110 0 0 2 0 0D0001460 - 102 1282 0 0 0 0 0 000010000D0001461 - 102 0 0 1 0 0D0001462 - 110 1283 0 0 0 0 0 000010000D0001463 - 110 0 0 2 0 0D0001464 - 110 1285 0 0 0 0 0 000010000D0001465 - 110 0 0 2 0 0D0001466 - 110 1287 0 0 0 0 0 000010000D0001467 - 110 0 0 2 0 0D0001468 - 110 1289 0 0 0 0 0 000010000D0001469 - 110 0 0 2 0 0D0001470 - 144 1291 0 0 0 0 0 000020000D0001471 - 144 0 0 1 0 0D0001472 - 128 1292 0 0 0 0 0 000010000D0001473 - 128 0 0 6 0 0D0001474 - 142 1298 0 0 0 0 0 000010500D0001475 - 142 0 0 1 0 0D0001476 - 102 1299 0 0 0 0 0 000010000D0001477 - 102 0 0 1 0 0D0001478 - 110 1300 0 0 0 0 0 000010000D0001479 - 110 0 0 2 0 0D0001480 - 110 1302 0 0 0 0 0 000010000D0001481 - 110 0 0 2 0 0D0001482 - 110 1304 0 0 0 0 0 000010000D0001483 - 110 0 0 2 0 0D0001484 - 110 1306 0 0 0 0 0 000010000D0001485 - 110 0 0 2 0 0D0001486 - 102 1308 0 0 0 0 0 000010000D0001487 - 102 0 0 1 0 0D0001488 - 110 1309 0 0 0 0 0 000010000D0001489 - 110 0 0 2 0 0D0001490 - 110 1311 0 0 0 0 0 000010000D0001491 - 110 0 0 2 0 0D0001492 - 110 1313 0 0 0 0 0 000010000D0001493 - 110 0 0 2 0 0D0001494 - 110 1315 0 0 0 0 0 000010000D0001495 - 110 0 0 2 0 0D0001496 - 144 1317 0 0 0 0 0 000020000D0001497 - 144 0 0 1 0 0D0001498 - 128 1318 0 0 0 0 0 000010000D0001499 - 128 0 0 6 0 0D0001500 - 142 1324 0 0 0 0 0 000010500D0001501 - 142 0 0 1 0 0D0001502 - 102 1325 0 0 0 0 0 000010000D0001503 - 102 0 0 1 0 0D0001504 - 110 1326 0 0 0 0 0 000010000D0001505 - 110 0 0 2 0 0D0001506 - 110 1328 0 0 0 0 0 000010000D0001507 - 110 0 0 2 0 0D0001508 - 110 1330 0 0 0 0 0 000010000D0001509 - 110 0 0 1 0 0D0001510 - 110 1331 0 0 0 0 0 000010000D0001511 - 110 0 0 2 0 0D0001512 - 102 1333 0 0 0 0 0 000010000D0001513 - 102 0 0 1 0 0D0001514 - 110 1334 0 0 0 0 0 000010000D0001515 - 110 0 0 2 0 0D0001516 - 110 1336 0 0 0 0 0 000010000D0001517 - 110 0 0 2 0 0D0001518 - 110 1338 0 0 0 0 0 000010000D0001519 - 110 0 0 2 0 0D0001520 - 110 1340 0 0 0 0 0 000010000D0001521 - 110 0 0 2 0 0D0001522 - 144 1342 0 0 0 0 0 000020000D0001523 - 144 0 0 1 0 0D0001524 - 128 1343 0 0 0 0 0 000010000D0001525 - 128 0 0 6 0 0D0001526 - 142 1349 0 0 0 0 0 000010500D0001527 - 142 0 0 1 0 0D0001528 - 102 1350 0 0 0 0 0 000010000D0001529 - 102 0 0 1 0 0D0001530 - 110 1351 0 0 0 0 0 000010000D0001531 - 110 0 0 2 0 0D0001532 - 110 1353 0 0 0 0 0 000010000D0001533 - 110 0 0 1 0 0D0001534 - 110 1354 0 0 0 0 0 000010000D0001535 - 110 0 0 1 0 0D0001536 - 110 1355 0 0 0 0 0 000010000D0001537 - 110 0 0 2 0 0D0001538 - 102 1357 0 0 0 0 0 000010000D0001539 - 102 0 0 1 0 0D0001540 - 110 1358 0 0 0 0 0 000010000D0001541 - 110 0 0 2 0 0D0001542 - 110 1360 0 0 0 0 0 000010000D0001543 - 110 0 0 2 0 0D0001544 - 110 1362 0 0 0 0 0 000010000D0001545 - 110 0 0 2 0 0D0001546 - 110 1364 0 0 0 0 0 000010000D0001547 - 110 0 0 2 0 0D0001548 - 144 1366 0 0 0 0 0 000020000D0001549 - 144 0 0 1 0 0D0001550 - 128 1367 0 0 0 0 0 000010000D0001551 - 128 0 0 6 0 0D0001552 - 142 1373 0 0 0 0 0 000010500D0001553 - 142 0 0 1 0 0D0001554 - 102 1374 0 0 0 0 0 000010000D0001555 - 102 0 0 1 0 0D0001556 - 110 1375 0 0 0 0 0 000010000D0001557 - 110 0 0 2 0 0D0001558 - 110 1377 0 0 0 0 0 000010000D0001559 - 110 0 0 2 0 0D0001560 - 110 1379 0 0 0 0 0 000010000D0001561 - 110 0 0 2 0 0D0001562 - 110 1381 0 0 0 0 0 000010000D0001563 - 110 0 0 2 0 0D0001564 - 102 1383 0 0 0 0 0 000010000D0001565 - 102 0 0 1 0 0D0001566 - 110 1384 0 0 0 0 0 000010000D0001567 - 110 0 0 2 0 0D0001568 - 110 1386 0 0 0 0 0 000010000D0001569 - 110 0 0 2 0 0D0001570 - 110 1388 0 0 0 0 0 000010000D0001571 - 110 0 0 2 0 0D0001572 - 110 1390 0 0 0 0 0 000010000D0001573 - 110 0 0 2 0 0D0001574 - 144 1392 0 0 0 0 0 000020000D0001575 - 144 0 0 1 0 0D0001576 - 128 1393 0 0 0 0 0 000010000D0001577 - 128 0 0 7 0 0D0001578 - 142 1400 0 0 0 0 0 000010500D0001579 - 142 0 0 1 0 0D0001580 - 102 1401 0 0 0 0 0 000010000D0001581 - 102 0 0 1 0 0D0001582 - 110 1402 0 0 0 0 0 000010000D0001583 - 110 0 0 2 0 0D0001584 - 110 1404 0 0 0 0 0 000010000D0001585 - 110 0 0 2 0 0D0001586 - 110 1406 0 0 0 0 0 000010000D0001587 - 110 0 0 2 0 0D0001588 - 110 1408 0 0 0 0 0 000010000D0001589 - 110 0 0 2 0 0D0001590 - 102 1410 0 0 0 0 0 000010000D0001591 - 102 0 0 1 0 0D0001592 - 110 1411 0 0 0 0 0 000010000D0001593 - 110 0 0 2 0 0D0001594 - 110 1413 0 0 0 0 0 000010000D0001595 - 110 0 0 2 0 0D0001596 - 110 1415 0 0 0 0 0 000010000D0001597 - 110 0 0 2 0 0D0001598 - 110 1417 0 0 0 0 0 000010000D0001599 - 110 0 0 2 0 0D0001600 - 144 1419 0 0 0 0 0 000020000D0001601 - 144 0 0 1 0 0D0001602 - 128 1420 0 0 0 0 0 000010000D0001603 - 128 0 0 6 0 0D0001604 - 142 1426 0 0 0 0 0 000010500D0001605 - 142 0 0 1 0 0D0001606 - 102 1427 0 0 0 0 0 000010000D0001607 - 102 0 0 1 0 0D0001608 - 110 1428 0 0 0 0 0 000010000D0001609 - 110 0 0 2 0 0D0001610 - 110 1430 0 0 0 0 0 000010000D0001611 - 110 0 0 1 0 0D0001612 - 110 1431 0 0 0 0 0 000010000D0001613 - 110 0 0 2 0 0D0001614 - 110 1433 0 0 0 0 0 000010000D0001615 - 110 0 0 2 0 0D0001616 - 102 1435 0 0 0 0 0 000010000D0001617 - 102 0 0 1 0 0D0001618 - 110 1436 0 0 0 0 0 000010000D0001619 - 110 0 0 2 0 0D0001620 - 110 1438 0 0 0 0 0 000010000D0001621 - 110 0 0 2 0 0D0001622 - 110 1440 0 0 0 0 0 000010000D0001623 - 110 0 0 2 0 0D0001624 - 110 1442 0 0 0 0 0 000010000D0001625 - 110 0 0 2 0 0D0001626 - 402 1444 0 0 0 0 0 000020000D0001627 - 402 0 0 2 1 0D0001628 - 144 1446 0 0 0 0 0 000020000D0001629 - 144 0 0 1 0 0D0001630 - 128 1447 0 0 0 0 0 000010000D0001631 - 128 0 0 6 0 0D0001632 - 142 1453 0 0 0 0 0 000010500D0001633 - 142 0 0 1 0 0D0001634 - 102 1454 0 0 0 0 0 000010000D0001635 - 102 0 0 1 0 0D0001636 - 110 1455 0 0 0 0 0 000010000D0001637 - 110 0 0 1 0 0D0001638 - 110 1456 0 0 0 0 0 000010000D0001639 - 110 0 0 2 0 0D0001640 - 110 1458 0 0 0 0 0 000010000D0001641 - 110 0 0 2 0 0D0001642 - 110 1460 0 0 0 0 0 000010000D0001643 - 110 0 0 2 0 0D0001644 - 102 1462 0 0 0 0 0 000010000D0001645 - 102 0 0 1 0 0D0001646 - 110 1463 0 0 0 0 0 000010000D0001647 - 110 0 0 2 0 0D0001648 - 110 1465 0 0 0 0 0 000010000D0001649 - 110 0 0 2 0 0D0001650 - 110 1467 0 0 0 0 0 000010000D0001651 - 110 0 0 2 0 0D0001652 - 110 1469 0 0 0 0 0 000010000D0001653 - 110 0 0 2 0 0D0001654 - 144 1471 0 0 0 0 0 000020000D0001655 - 144 0 0 1 0 0D0001656 - 128 1472 0 0 0 0 0 000010000D0001657 - 128 0 0 6 0 0D0001658 - 142 1478 0 0 0 0 0 000010500D0001659 - 142 0 0 1 0 0D0001660 - 102 1479 0 0 0 0 0 000010000D0001661 - 102 0 0 1 0 0D0001662 - 110 1480 0 0 0 0 0 000010000D0001663 - 110 0 0 2 0 0D0001664 - 110 1482 0 0 0 0 0 000010000D0001665 - 110 0 0 2 0 0D0001666 - 110 1484 0 0 0 0 0 000010000D0001667 - 110 0 0 2 0 0D0001668 - 110 1486 0 0 0 0 0 000010000D0001669 - 110 0 0 2 0 0D0001670 - 110 1488 0 0 0 0 0 000010000D0001671 - 110 0 0 2 0 0D0001672 - 110 1490 0 0 0 0 0 000010000D0001673 - 110 0 0 2 0 0D0001674 - 102 1492 0 0 0 0 0 000010000D0001675 - 102 0 0 1 0 0D0001676 - 110 1493 0 0 0 0 0 000010000D0001677 - 110 0 0 2 0 0D0001678 - 110 1495 0 0 0 0 0 000010000D0001679 - 110 0 0 2 0 0D0001680 - 110 1497 0 0 0 0 0 000010000D0001681 - 110 0 0 2 0 0D0001682 - 110 1499 0 0 0 0 0 000010000D0001683 - 110 0 0 2 0 0D0001684 - 110 1501 0 0 0 0 0 000010000D0001685 - 110 0 0 2 0 0D0001686 - 110 1503 0 0 0 0 0 000010000D0001687 - 110 0 0 2 0 0D0001688 - 144 1505 0 0 0 0 0 000020000D0001689 - 144 0 0 1 0 0D0001690 - 128 1506 0 0 0 0 0 000010000D0001691 - 128 0 0 6 0 0D0001692 - 142 1512 0 0 0 0 0 000010500D0001693 - 142 0 0 1 0 0D0001694 - 102 1513 0 0 0 0 0 000010000D0001695 - 102 0 0 1 0 0D0001696 - 110 1514 0 0 0 0 0 000010000D0001697 - 110 0 0 2 0 0D0001698 - 110 1516 0 0 0 0 0 000010000D0001699 - 110 0 0 2 0 0D0001700 - 110 1518 0 0 0 0 0 000010000D0001701 - 110 0 0 2 0 0D0001702 - 110 1520 0 0 0 0 0 000010000D0001703 - 110 0 0 2 0 0D0001704 - 102 1522 0 0 0 0 0 000010000D0001705 - 102 0 0 1 0 0D0001706 - 110 1523 0 0 0 0 0 000010000D0001707 - 110 0 0 2 0 0D0001708 - 110 1525 0 0 0 0 0 000010000D0001709 - 110 0 0 2 0 0D0001710 - 110 1527 0 0 0 0 0 000010000D0001711 - 110 0 0 2 0 0D0001712 - 110 1529 0 0 0 0 0 000010000D0001713 - 110 0 0 2 0 0D0001714 - 144 1531 0 0 0 0 0 000020000D0001715 - 144 0 0 1 0 0D0001716 - 128 1532 0 0 0 0 0 000010000D0001717 - 128 0 0 6 0 0D0001718 - 142 1538 0 0 0 0 0 000010500D0001719 - 142 0 0 1 0 0D0001720 - 102 1539 0 0 0 0 0 000010000D0001721 - 102 0 0 1 0 0D0001722 - 110 1540 0 0 0 0 0 000010000D0001723 - 110 0 0 2 0 0D0001724 - 110 1542 0 0 0 0 0 000010000D0001725 - 110 0 0 2 0 0D0001726 - 110 1544 0 0 0 0 0 000010000D0001727 - 110 0 0 2 0 0D0001728 - 110 1546 0 0 0 0 0 000010000D0001729 - 110 0 0 2 0 0D0001730 - 110 1548 0 0 0 0 0 000010000D0001731 - 110 0 0 2 0 0D0001732 - 110 1550 0 0 0 0 0 000010000D0001733 - 110 0 0 2 0 0D0001734 - 110 1552 0 0 0 0 0 000010000D0001735 - 110 0 0 2 0 0D0001736 - 110 1554 0 0 0 0 0 000010000D0001737 - 110 0 0 2 0 0D0001738 - 110 1556 0 0 0 0 0 000010000D0001739 - 110 0 0 2 0 0D0001740 - 102 1558 0 0 0 0 0 000010000D0001741 - 102 0 0 1 0 0D0001742 - 110 1559 0 0 0 0 0 000010000D0001743 - 110 0 0 2 0 0D0001744 - 110 1561 0 0 0 0 0 000010000D0001745 - 110 0 0 2 0 0D0001746 - 110 1563 0 0 0 0 0 000010000D0001747 - 110 0 0 2 0 0D0001748 - 110 1565 0 0 0 0 0 000010000D0001749 - 110 0 0 2 0 0D0001750 - 110 1567 0 0 0 0 0 000010000D0001751 - 110 0 0 2 0 0D0001752 - 110 1569 0 0 0 0 0 000010000D0001753 - 110 0 0 2 0 0D0001754 - 110 1571 0 0 0 0 0 000010000D0001755 - 110 0 0 2 0 0D0001756 - 110 1573 0 0 0 0 0 000010000D0001757 - 110 0 0 2 0 0D0001758 - 110 1575 0 0 0 0 0 000010000D0001759 - 110 0 0 2 0 0D0001760 - 144 1577 0 0 0 0 0 000020000D0001761 - 144 0 0 1 0 0D0001762 - 128 1578 0 0 0 0 0 000010000D0001763 - 128 0 0 6 0 0D0001764 - 142 1584 0 0 0 0 0 000010500D0001765 - 142 0 0 1 0 0D0001766 - 102 1585 0 0 0 0 0 000010000D0001767 - 102 0 0 1 0 0D0001768 - 110 1586 0 0 0 0 0 000010000D0001769 - 110 0 0 2 0 0D0001770 - 110 1588 0 0 0 0 0 000010000D0001771 - 110 0 0 2 0 0D0001772 - 110 1590 0 0 0 0 0 000010000D0001773 - 110 0 0 2 0 0D0001774 - 110 1592 0 0 0 0 0 000010000D0001775 - 110 0 0 2 0 0D0001776 - 110 1594 0 0 0 0 0 000010000D0001777 - 110 0 0 1 0 0D0001778 - 110 1595 0 0 0 0 0 000010000D0001779 - 110 0 0 1 0 0D0001780 - 102 1596 0 0 0 0 0 000010000D0001781 - 102 0 0 1 0 0D0001782 - 110 1597 0 0 0 0 0 000010000D0001783 - 110 0 0 2 0 0D0001784 - 110 1599 0 0 0 0 0 000010000D0001785 - 110 0 0 2 0 0D0001786 - 110 1601 0 0 0 0 0 000010000D0001787 - 110 0 0 2 0 0D0001788 - 110 1603 0 0 0 0 0 000010000D0001789 - 110 0 0 2 0 0D0001790 - 110 1605 0 0 0 0 0 000010000D0001791 - 110 0 0 2 0 0D0001792 - 110 1607 0 0 0 0 0 000010000D0001793 - 110 0 0 2 0 0D0001794 - 144 1609 0 0 0 0 0 000020000D0001795 - 144 0 0 1 0 0D0001796 - 128 1610 0 0 0 0 0 000010000D0001797 - 128 0 0 6 0 0D0001798 - 142 1616 0 0 0 0 0 000010500D0001799 - 142 0 0 1 0 0D0001800 - 102 1617 0 0 0 0 0 000010000D0001801 - 102 0 0 1 0 0D0001802 - 110 1618 0 0 0 0 0 000010000D0001803 - 110 0 0 2 0 0D0001804 - 110 1620 0 0 0 0 0 000010000D0001805 - 110 0 0 2 0 0D0001806 - 110 1622 0 0 0 0 0 000010000D0001807 - 110 0 0 2 0 0D0001808 - 110 1624 0 0 0 0 0 000010000D0001809 - 110 0 0 2 0 0D0001810 - 110 1626 0 0 0 0 0 000010000D0001811 - 110 0 0 2 0 0D0001812 - 110 1628 0 0 0 0 0 000010000D0001813 - 110 0 0 2 0 0D0001814 - 110 1630 0 0 0 0 0 000010000D0001815 - 110 0 0 2 0 0D0001816 - 110 1632 0 0 0 0 0 000010000D0001817 - 110 0 0 2 0 0D0001818 - 110 1634 0 0 0 0 0 000010000D0001819 - 110 0 0 2 0 0D0001820 - 102 1636 0 0 0 0 0 000010000D0001821 - 102 0 0 1 0 0D0001822 - 110 1637 0 0 0 0 0 000010000D0001823 - 110 0 0 2 0 0D0001824 - 110 1639 0 0 0 0 0 000010000D0001825 - 110 0 0 2 0 0D0001826 - 110 1641 0 0 0 0 0 000010000D0001827 - 110 0 0 2 0 0D0001828 - 110 1643 0 0 0 0 0 000010000D0001829 - 110 0 0 2 0 0D0001830 - 110 1645 0 0 0 0 0 000010000D0001831 - 110 0 0 2 0 0D0001832 - 110 1647 0 0 0 0 0 000010000D0001833 - 110 0 0 2 0 0D0001834 - 110 1649 0 0 0 0 0 000010000D0001835 - 110 0 0 2 0 0D0001836 - 110 1651 0 0 0 0 0 000010000D0001837 - 110 0 0 2 0 0D0001838 - 110 1653 0 0 0 0 0 000010000D0001839 - 110 0 0 2 0 0D0001840 - 144 1655 0 0 0 0 0 000020000D0001841 - 144 0 0 1 0 0D0001842 - 128 1656 0 0 0 0 0 000010000D0001843 - 128 0 0 6 0 0D0001844 - 142 1662 0 0 0 0 0 000010500D0001845 - 142 0 0 1 0 0D0001846 - 102 1663 0 0 0 0 0 000010000D0001847 - 102 0 0 1 0 0D0001848 - 110 1664 0 0 0 0 0 000010000D0001849 - 110 0 0 2 0 0D0001850 - 110 1666 0 0 0 0 0 000010000D0001851 - 110 0 0 2 0 0D0001852 - 110 1668 0 0 0 0 0 000010000D0001853 - 110 0 0 2 0 0D0001854 - 110 1670 0 0 0 0 0 000010000D0001855 - 110 0 0 2 0 0D0001856 - 102 1672 0 0 0 0 0 000010000D0001857 - 102 0 0 1 0 0D0001858 - 110 1673 0 0 0 0 0 000010000D0001859 - 110 0 0 2 0 0D0001860 - 110 1675 0 0 0 0 0 000010000D0001861 - 110 0 0 2 0 0D0001862 - 110 1677 0 0 0 0 0 000010000D0001863 - 110 0 0 2 0 0D0001864 - 110 1679 0 0 0 0 0 000010000D0001865 - 110 0 0 2 0 0D0001866 - 144 1681 0 0 0 0 0 000020000D0001867 - 144 0 0 1 0 0D0001868 - 128 1682 0 0 0 0 0 000010000D0001869 - 128 0 0 6 0 0D0001870 - 142 1688 0 0 0 0 0 000010500D0001871 - 142 0 0 1 0 0D0001872 - 102 1689 0 0 0 0 0 000010000D0001873 - 102 0 0 1 0 0D0001874 - 110 1690 0 0 0 0 0 000010000D0001875 - 110 0 0 2 0 0D0001876 - 110 1692 0 0 0 0 0 000010000D0001877 - 110 0 0 2 0 0D0001878 - 110 1694 0 0 0 0 0 000010000D0001879 - 110 0 0 2 0 0D0001880 - 110 1696 0 0 0 0 0 000010000D0001881 - 110 0 0 1 0 0D0001882 - 110 1697 0 0 0 0 0 000010000D0001883 - 110 0 0 1 0 0D0001884 - 110 1698 0 0 0 0 0 000010000D0001885 - 110 0 0 2 0 0D0001886 - 102 1700 0 0 0 0 0 000010000D0001887 - 102 0 0 1 0 0D0001888 - 110 1701 0 0 0 0 0 000010000D0001889 - 110 0 0 2 0 0D0001890 - 110 1703 0 0 0 0 0 000010000D0001891 - 110 0 0 2 0 0D0001892 - 110 1705 0 0 0 0 0 000010000D0001893 - 110 0 0 2 0 0D0001894 - 110 1707 0 0 0 0 0 000010000D0001895 - 110 0 0 2 0 0D0001896 - 110 1709 0 0 0 0 0 000010000D0001897 - 110 0 0 2 0 0D0001898 - 110 1711 0 0 0 0 0 000010000D0001899 - 110 0 0 2 0 0D0001900 - 144 1713 0 0 0 0 0 000020000D0001901 - 144 0 0 1 0 0D0001902 - 128 1714 0 0 0 0 0 000010000D0001903 - 128 0 0 6 0 0D0001904 - 142 1720 0 0 0 0 0 000010500D0001905 - 142 0 0 1 0 0D0001906 - 102 1721 0 0 0 0 0 000010000D0001907 - 102 0 0 1 0 0D0001908 - 110 1722 0 0 0 0 0 000010000D0001909 - 110 0 0 2 0 0D0001910 - 110 1724 0 0 0 0 0 000010000D0001911 - 110 0 0 1 0 0D0001912 - 110 1725 0 0 0 0 0 000010000D0001913 - 110 0 0 1 0 0D0001914 - 110 1726 0 0 0 0 0 000010000D0001915 - 110 0 0 2 0 0D0001916 - 102 1728 0 0 0 0 0 000010000D0001917 - 102 0 0 1 0 0D0001918 - 110 1729 0 0 0 0 0 000010000D0001919 - 110 0 0 2 0 0D0001920 - 110 1731 0 0 0 0 0 000010000D0001921 - 110 0 0 2 0 0D0001922 - 110 1733 0 0 0 0 0 000010000D0001923 - 110 0 0 2 0 0D0001924 - 110 1735 0 0 0 0 0 000010000D0001925 - 110 0 0 2 0 0D0001926 - 144 1737 0 0 0 0 0 000020000D0001927 - 144 0 0 1 0 0D0001928 - 128 1738 0 0 0 0 0 000010000D0001929 - 128 0 0 6 0 0D0001930 - 142 1744 0 0 0 0 0 000010500D0001931 - 142 0 0 1 0 0D0001932 - 102 1745 0 0 0 0 0 000010000D0001933 - 102 0 0 1 0 0D0001934 - 110 1746 0 0 0 0 0 000010000D0001935 - 110 0 0 2 0 0D0001936 - 110 1748 0 0 0 0 0 000010000D0001937 - 110 0 0 2 0 0D0001938 - 110 1750 0 0 0 0 0 000010000D0001939 - 110 0 0 2 0 0D0001940 - 110 1752 0 0 0 0 0 000010000D0001941 - 110 0 0 1 0 0D0001942 - 102 1753 0 0 0 0 0 000010000D0001943 - 102 0 0 1 0 0D0001944 - 110 1754 0 0 0 0 0 000010000D0001945 - 110 0 0 2 0 0D0001946 - 110 1756 0 0 0 0 0 000010000D0001947 - 110 0 0 2 0 0D0001948 - 110 1758 0 0 0 0 0 000010000D0001949 - 110 0 0 2 0 0D0001950 - 110 1760 0 0 0 0 0 000010000D0001951 - 110 0 0 2 0 0D0001952 - 144 1762 0 0 0 0 0 000020000D0001953 - 144 0 0 1 0 0D0001954 - 128 1763 0 0 0 0 0 000010000D0001955 - 128 0 0 6 0 0D0001956 - 142 1769 0 0 0 0 0 000010500D0001957 - 142 0 0 1 0 0D0001958 - 102 1770 0 0 0 0 0 000010000D0001959 - 102 0 0 1 0 0D0001960 - 110 1771 0 0 0 0 0 000010000D0001961 - 110 0 0 2 0 0D0001962 - 110 1773 0 0 0 0 0 000010000D0001963 - 110 0 0 2 0 0D0001964 - 110 1775 0 0 0 0 0 000010000D0001965 - 110 0 0 2 0 0D0001966 - 110 1777 0 0 0 0 0 000010000D0001967 - 110 0 0 1 0 0D0001968 - 102 1778 0 0 0 0 0 000010000D0001969 - 102 0 0 1 0 0D0001970 - 110 1779 0 0 0 0 0 000010000D0001971 - 110 0 0 2 0 0D0001972 - 110 1781 0 0 0 0 0 000010000D0001973 - 110 0 0 2 0 0D0001974 - 110 1783 0 0 0 0 0 000010000D0001975 - 110 0 0 2 0 0D0001976 - 110 1785 0 0 0 0 0 000010000D0001977 - 110 0 0 2 0 0D0001978 - 144 1787 0 0 0 0 0 000020000D0001979 - 144 0 0 1 0 0D0001980 - 128 1788 0 0 0 0 0 000010000D0001981 - 128 0 0 6 0 0D0001982 - 142 1794 0 0 0 0 0 000010500D0001983 - 142 0 0 1 0 0D0001984 - 102 1795 0 0 0 0 0 000010000D0001985 - 102 0 0 1 0 0D0001986 - 110 1796 0 0 0 0 0 000010000D0001987 - 110 0 0 2 0 0D0001988 - 110 1798 0 0 0 0 0 000010000D0001989 - 110 0 0 2 0 0D0001990 - 110 1800 0 0 0 0 0 000010000D0001991 - 110 0 0 2 0 0D0001992 - 110 1802 0 0 0 0 0 000010000D0001993 - 110 0 0 2 0 0D0001994 - 110 1804 0 0 0 0 0 000010000D0001995 - 110 0 0 2 0 0D0001996 - 110 1806 0 0 0 0 0 000010000D0001997 - 110 0 0 2 0 0D0001998 - 102 1808 0 0 0 0 0 000010000D0001999 - 102 0 0 1 0 0D0002000 - 110 1809 0 0 0 0 0 000010000D0002001 - 110 0 0 2 0 0D0002002 - 110 1811 0 0 0 0 0 000010000D0002003 - 110 0 0 2 0 0D0002004 - 110 1813 0 0 0 0 0 000010000D0002005 - 110 0 0 2 0 0D0002006 - 110 1815 0 0 0 0 0 000010000D0002007 - 110 0 0 2 0 0D0002008 - 110 1817 0 0 0 0 0 000010000D0002009 - 110 0 0 2 0 0D0002010 - 110 1819 0 0 0 0 0 000010000D0002011 - 110 0 0 2 0 0D0002012 - 144 1821 0 0 0 0 0 000020000D0002013 - 144 0 0 1 0 0D0002014 - 128 1822 0 0 0 0 0 000010000D0002015 - 128 0 0 6 0 0D0002016 - 142 1828 0 0 0 0 0 000010500D0002017 - 142 0 0 1 0 0D0002018 - 102 1829 0 0 0 0 0 000010000D0002019 - 102 0 0 1 0 0D0002020 - 110 1830 0 0 0 0 0 000010000D0002021 - 110 0 0 2 0 0D0002022 - 110 1832 0 0 0 0 0 000010000D0002023 - 110 0 0 2 0 0D0002024 - 110 1834 0 0 0 0 0 000010000D0002025 - 110 0 0 1 0 0D0002026 - 110 1835 0 0 0 0 0 000010000D0002027 - 110 0 0 1 0 0D0002028 - 102 1836 0 0 0 0 0 000010000D0002029 - 102 0 0 1 0 0D0002030 - 110 1837 0 0 0 0 0 000010000D0002031 - 110 0 0 2 0 0D0002032 - 110 1839 0 0 0 0 0 000010000D0002033 - 110 0 0 2 0 0D0002034 - 110 1841 0 0 0 0 0 000010000D0002035 - 110 0 0 2 0 0D0002036 - 110 1843 0 0 0 0 0 000010000D0002037 - 110 0 0 2 0 0D0002038 - 144 1845 0 0 0 0 0 000020000D0002039 - 144 0 0 1 0 0D0002040 - 128 1846 0 0 0 0 0 000010000D0002041 - 128 0 0 6 0 0D0002042 - 142 1852 0 0 0 0 0 000010500D0002043 - 142 0 0 1 0 0D0002044 - 102 1853 0 0 0 0 0 000010000D0002045 - 102 0 0 1 0 0D0002046 - 110 1854 0 0 0 0 0 000010000D0002047 - 110 0 0 1 0 0D0002048 - 110 1855 0 0 0 0 0 000010000D0002049 - 110 0 0 2 0 0D0002050 - 110 1857 0 0 0 0 0 000010000D0002051 - 110 0 0 1 0 0D0002052 - 110 1858 0 0 0 0 0 000010000D0002053 - 110 0 0 1 0 0D0002054 - 102 1859 0 0 0 0 0 000010000D0002055 - 102 0 0 1 0 0D0002056 - 110 1860 0 0 0 0 0 000010000D0002057 - 110 0 0 2 0 0D0002058 - 110 1862 0 0 0 0 0 000010000D0002059 - 110 0 0 2 0 0D0002060 - 110 1864 0 0 0 0 0 000010000D0002061 - 110 0 0 2 0 0D0002062 - 110 1866 0 0 0 0 0 000010000D0002063 - 110 0 0 2 0 0D0002064 - 144 1868 0 0 0 0 0 000020000D0002065 - 144 0 0 1 0 0D0002066 - 128 1869 0 0 0 0 0 000010000D0002067 - 128 0 0 6 0 0D0002068 - 142 1875 0 0 0 0 0 000010500D0002069 - 142 0 0 1 0 0D0002070 - 102 1876 0 0 0 0 0 000010000D0002071 - 102 0 0 1 0 0D0002072 - 110 1877 0 0 0 0 0 000010000D0002073 - 110 0 0 2 0 0D0002074 - 110 1879 0 0 0 0 0 000010000D0002075 - 110 0 0 1 0 0D0002076 - 110 1880 0 0 0 0 0 000010000D0002077 - 110 0 0 1 0 0D0002078 - 110 1881 0 0 0 0 0 000010000D0002079 - 110 0 0 2 0 0D0002080 - 102 1883 0 0 0 0 0 000010000D0002081 - 102 0 0 1 0 0D0002082 - 110 1884 0 0 0 0 0 000010000D0002083 - 110 0 0 2 0 0D0002084 - 110 1886 0 0 0 0 0 000010000D0002085 - 110 0 0 2 0 0D0002086 - 110 1888 0 0 0 0 0 000010000D0002087 - 110 0 0 2 0 0D0002088 - 110 1890 0 0 0 0 0 000010000D0002089 - 110 0 0 2 0 0D0002090 - 144 1892 0 0 0 0 0 000020000D0002091 - 144 0 0 1 0 0D0002092 - 128 1893 0 0 0 0 0 000010000D0002093 - 128 0 0 7 0 0D0002094 - 142 1900 0 0 0 0 0 000010500D0002095 - 142 0 0 1 0 0D0002096 - 102 1901 0 0 0 0 0 000010000D0002097 - 102 0 0 1 0 0D0002098 - 110 1902 0 0 0 0 0 000010000D0002099 - 110 0 0 2 0 0D0002100 - 110 1904 0 0 0 0 0 000010000D0002101 - 110 0 0 1 0 0D0002102 - 110 1905 0 0 0 0 0 000010000D0002103 - 110 0 0 2 0 0D0002104 - 110 1907 0 0 0 0 0 000010000D0002105 - 110 0 0 2 0 0D0002106 - 102 1909 0 0 0 0 0 000010000D0002107 - 102 0 0 1 0 0D0002108 - 110 1910 0 0 0 0 0 000010000D0002109 - 110 0 0 2 0 0D0002110 - 110 1912 0 0 0 0 0 000010000D0002111 - 110 0 0 2 0 0D0002112 - 110 1914 0 0 0 0 0 000010000D0002113 - 110 0 0 2 0 0D0002114 - 110 1916 0 0 0 0 0 000010000D0002115 - 110 0 0 2 0 0D0002116 - 144 1918 0 0 0 0 0 000020000D0002117 - 144 0 0 1 0 0D0002118 - 128 1919 0 0 0 0 0 000010000D0002119 - 128 0 0 6 0 0D0002120 - 142 1925 0 0 0 0 0 000010500D0002121 - 142 0 0 1 0 0D0002122 - 102 1926 0 0 0 0 0 000010000D0002123 - 102 0 0 1 0 0D0002124 - 110 1927 0 0 0 0 0 000010000D0002125 - 110 0 0 2 0 0D0002126 - 110 1929 0 0 0 0 0 000010000D0002127 - 110 0 0 2 0 0D0002128 - 110 1931 0 0 0 0 0 000010000D0002129 - 110 0 0 1 0 0D0002130 - 110 1932 0 0 0 0 0 000010000D0002131 - 110 0 0 2 0 0D0002132 - 102 1934 0 0 0 0 0 000010000D0002133 - 102 0 0 1 0 0D0002134 - 110 1935 0 0 0 0 0 000010000D0002135 - 110 0 0 2 0 0D0002136 - 110 1937 0 0 0 0 0 000010000D0002137 - 110 0 0 2 0 0D0002138 - 110 1939 0 0 0 0 0 000010000D0002139 - 110 0 0 2 0 0D0002140 - 110 1941 0 0 0 0 0 000010000D0002141 - 110 0 0 2 0 0D0002142 - 144 1943 0 0 0 0 0 000020000D0002143 - 144 0 0 1 0 0D0002144 - 128 1944 0 0 0 0 0 000010000D0002145 - 128 0 0 6 0 0D0002146 - 142 1950 0 0 0 0 0 000010500D0002147 - 142 0 0 1 0 0D0002148 - 102 1951 0 0 0 0 0 000010000D0002149 - 102 0 0 1 0 0D0002150 - 110 1952 0 0 0 0 0 000010000D0002151 - 110 0 0 1 0 0D0002152 - 110 1953 0 0 0 0 0 000010000D0002153 - 110 0 0 1 0 0D0002154 - 110 1954 0 0 0 0 0 000010000D0002155 - 110 0 0 2 0 0D0002156 - 110 1956 0 0 0 0 0 000010000D0002157 - 110 0 0 1 0 0D0002158 - 102 1957 0 0 0 0 0 000010000D0002159 - 102 0 0 1 0 0D0002160 - 110 1958 0 0 0 0 0 000010000D0002161 - 110 0 0 2 0 0D0002162 - 110 1960 0 0 0 0 0 000010000D0002163 - 110 0 0 2 0 0D0002164 - 110 1962 0 0 0 0 0 000010000D0002165 - 110 0 0 2 0 0D0002166 - 110 1964 0 0 0 0 0 000010000D0002167 - 110 0 0 2 0 0D0002168 - 144 1966 0 0 0 0 0 000020000D0002169 - 144 0 0 1 0 0D0002170 - 128 1967 0 0 0 0 0 000010000D0002171 - 128 0 0 6 0 0D0002172 - 142 1973 0 0 0 0 0 000010500D0002173 - 142 0 0 1 0 0D0002174 - 102 1974 0 0 0 0 0 000010000D0002175 - 102 0 0 1 0 0D0002176 - 110 1975 0 0 0 0 0 000010000D0002177 - 110 0 0 2 0 0D0002178 - 110 1977 0 0 0 0 0 000010000D0002179 - 110 0 0 2 0 0D0002180 - 110 1979 0 0 0 0 0 000010000D0002181 - 110 0 0 2 0 0D0002182 - 110 1981 0 0 0 0 0 000010000D0002183 - 110 0 0 2 0 0D0002184 - 102 1983 0 0 0 0 0 000010000D0002185 - 102 0 0 1 0 0D0002186 - 110 1984 0 0 0 0 0 000010000D0002187 - 110 0 0 2 0 0D0002188 - 110 1986 0 0 0 0 0 000010000D0002189 - 110 0 0 2 0 0D0002190 - 110 1988 0 0 0 0 0 000010000D0002191 - 110 0 0 2 0 0D0002192 - 110 1990 0 0 0 0 0 000010000D0002193 - 110 0 0 2 0 0D0002194 -402,2,3,825; 0000001P0000001 -402,29,5,31,65,91,133,167,193,219,245,271,297,339,373,399,433, 0000003P0000002 -459,477,503,529,577,603,629,651,677,703,729,755,773,799; 0000003P0000003 -144,7,1,0,9; 0000005P0000004 -128,1,1,1,1,0,0,1,0,0,-0.4499991,-0.4499991,0.E+000,0.E+000, 0000007P0000005 --0.3999992,-0.3999992,0.E+000,0.E+000,1.,1.,1.,1.,0.90499976, 0000007P0000006 --0.1999996,0.2627,1.35499886,-0.1999996,0.2627,0.90499976, 0000007P0000007 -0.1999996,0.2627,1.35499886,0.1999996,0.2627,-0.4499991,0.E+000, 0000007P0000008 --0.3999992,0.E+000; 0000007P0000009 -142,0,7,11,21,3; 0000009P0000010 -102,4,13,15,17,19; 0000011P0000011 -110,-0.4499991,-0.3999992,0.E+000,0.E+000,-0.3999992,-0.E+000; 0000013P0000012 -110,0.E+000,-0.3999992,0.E+000,0.E+000,0.E+000,0.E+000; 0000015P0000013 -110,0.E+000,0.E+000,0.E+000,-0.4499991,0.E+000,0.E+000; 0000017P0000014 -110,-0.4499991,0.E+000,0.E+000,-0.4499991,-0.3999992,0.E+000; 0000019P0000015 -102,4,23,25,27,29; 0000021P0000016 -110,0.90499976,-0.1999996,0.2627,1.35499886,-0.1999996,0.2627; 0000023P0000017 -110,1.35499886,-0.1999996,0.2627,1.35499886,0.1999996,0.2627; 0000025P0000018 -110,1.35499886,0.1999996,0.2627,0.90499976,0.1999996,0.2627; 0000027P0000019 -110,0.90499976,0.1999996,0.2627,0.90499976,-0.1999996,0.2627; 0000029P0000020 -144,33,1,0,35; 0000031P0000021 -128,1,1,1,1,0,0,1,0,0,-0.25,-0.25,0.E+000,0.E+000,-0.4499991, 0000033P0000022 --0.4499991,0.E+000,0.E+000,1.,1.,1.,1.,0.90499976,-0.1999996, 0000033P0000023 -0.2627,0.90499976,-0.1999996,1.27E-002,1.35499886,-0.1999996, 0000033P0000024 -0.2627,1.35499886,-0.1999996,1.27E-002,-0.25,0.E+000,-0.4499991, 0000033P0000025 -0.E+000; 0000033P0000026 -142,0,33,37,51,3; 0000035P0000027 -102,6,39,41,43,45,47,49; 0000037P0000028 -110,-0.25,-0.4499991,-0.E+000,-0.24800776,-0.4499991,-0.E+000; 0000039P0000029 -110,-0.24800776,-0.4499991,-0.E+000,-0.248006266,-0.4499991, 0000041P0000030 --0.E+000; 0000041P0000031 -110,-0.248006266,-0.4499991,-0.E+000,0.E+000,-0.4499991,0.E+000; 0000043P0000032 -110,0.E+000,-0.4499991,0.E+000,0.E+000,0.E+000,0.E+000; 0000045P0000033 -110,0.E+000,0.E+000,0.E+000,-0.25,0.E+000,0.E+000; 0000047P0000034 -110,-0.25,0.E+000,0.E+000,-0.25,-0.4499991,0.E+000; 0000049P0000035 -102,6,53,55,57,59,61,63; 0000051P0000036 -110,0.90499976,-0.1999996,0.2627,0.90499976,-0.1999996, 0000053P0000037 -0.26070776; 0000053P0000038 -110,0.90499976,-0.1999996,0.26070776,0.90499976,-0.1999996, 0000055P0000039 -0.260706266; 0000055P0000040 -110,0.90499976,-0.1999996,0.260706266,0.90499976,-0.1999996, 0000057P0000041 -1.27E-002; 0000057P0000042 -110,0.90499976,-0.1999996,1.27E-002,1.35499886,-0.1999996, 0000059P0000043 -1.27E-002; 0000059P0000044 -110,1.35499886,-0.1999996,1.27E-002,1.35499886,-0.1999996, 0000061P0000045 -0.2627; 0000061P0000046 -110,1.35499886,-0.1999996,0.2627,0.90499976,-0.1999996,0.2627; 0000063P0000047 -144,67,1,0,69; 0000065P0000048 -128,1,1,1,1,0,0,1,0,0,-0.25,-0.25,0.E+000,0.E+000,-0.3999992, 0000067P0000049 --0.3999992,0.E+000,0.E+000,1.,1.,1.,1.,1.35499886,-0.1999996, 0000067P0000050 -0.2627,1.35499886,-0.1999996,1.27E-002,1.35499886,0.1999996, 0000067P0000051 -0.2627,1.35499886,0.1999996,1.27E-002,-0.25,0.E+000,-0.3999992, 0000067P0000052 -0.E+000; 0000067P0000053 -142,0,67,71,81,3; 0000069P0000054 -102,4,73,75,77,79; 0000071P0000055 -110,-0.25,-0.3999992,-0.E+000,0.E+000,-0.3999992,0.E+000; 0000073P0000056 -110,0.E+000,-0.3999992,0.E+000,0.E+000,0.E+000,0.E+000; 0000075P0000057 -110,0.E+000,0.E+000,0.E+000,-0.25,0.E+000,0.E+000; 0000077P0000058 -110,-0.25,0.E+000,0.E+000,-0.25,-0.3999992,0.E+000; 0000079P0000059 -102,4,83,85,87,89; 0000081P0000060 -110,1.35499886,-0.1999996,0.2627,1.35499886,-0.1999996, 0000083P0000061 -1.27E-002; 0000083P0000062 -110,1.35499886,-0.1999996,1.27E-002,1.35499886,0.1999996, 0000085P0000063 -1.27E-002; 0000085P0000064 -110,1.35499886,0.1999996,1.27E-002,1.35499886,0.1999996,0.2627; 0000087P0000065 -110,1.35499886,0.1999996,0.2627,1.35499886,-0.1999996,0.2627; 0000089P0000066 -144,93,1,0,95; 0000091P0000067 -128,1,1,1,1,0,0,1,0,0,-1.79999894,-1.79999894,0.E+000,0.E+000, 0000093P0000068 --1.34999984,-1.34999984,0.E+000,0.E+000,1.,1.,1.,1.,0.90499976, 0000093P0000069 --0.67499992,0.2627,-0.89499918,-0.67499992,0.2627,0.90499976, 0000093P0000070 -0.67499992,0.2627,-0.89499918,0.67499992,0.2627,-1.79999894, 0000093P0000071 -0.E+000,-1.34999984,0.E+000; 0000093P0000072 -142,0,93,97,115,3; 0000095P0000073 -102,8,99,101,103,105,107,109,111,113; 0000097P0000074 -110,-1.79999894,-1.34999984,0.E+000,0.E+000,-1.34999984,0.E+000; 0000099P0000075 -110,0.E+000,-1.34999984,0.E+000,0.E+000,-0.87499952,0.E+000; 0000101P0000076 -110,0.E+000,-0.87499952,0.E+000,0.E+000,-0.47500032,0.E+000; 0000103P0000077 -110,0.E+000,-0.47500032,0.E+000,0.E+000,0.E+000,0.E+000; 0000105P0000078 -110,0.E+000,0.E+000,0.E+000,-1.79999894,0.E+000,0.E+000; 0000107P0000079 -110,-1.79999894,0.E+000,0.E+000,-1.79999894,-0.47500032,0.E+000; 0000109P0000080 -110,-1.79999894,-0.47500032,0.E+000,-1.79999894,-0.87499952, 0000111P0000081 -0.E+000; 0000111P0000082 -110,-1.79999894,-0.87499952,0.E+000,-1.79999894,-1.34999984, 0000113P0000083 -0.E+000; 0000113P0000084 -102,8,117,119,121,123,125,127,129,131; 0000115P0000085 -110,0.90499976,-0.67499992,0.2627,-0.89499918,-0.67499992, 0000117P0000086 -0.2627; 0000117P0000087 -110,-0.89499918,-0.67499992,0.2627,-0.89499918,-0.1999996, 0000119P0000088 -0.2627; 0000119P0000089 -110,-0.89499918,-0.1999996,0.2627,-0.89499918,0.1999996,0.2627; 0000121P0000090 -110,-0.89499918,0.1999996,0.2627,-0.89499918,0.67499992,0.2627; 0000123P0000091 -110,-0.89499918,0.67499992,0.2627,0.90499976,0.67499992,0.2627; 0000125P0000092 -110,0.90499976,0.67499992,0.2627,0.90499976,0.1999996,0.2627; 0000127P0000093 -110,0.90499976,0.1999996,0.2627,0.90499976,-0.1999996,0.2627; 0000129P0000094 -110,0.90499976,-0.1999996,0.2627,0.90499976,-0.67499992,0.2627; 0000131P0000095 -144,135,1,0,137; 0000133P0000096 -128,1,1,1,1,0,0,1,0,0,0.E+000,0.E+000,0.25,0.25,0.E+000,0.E+000, 0000135P0000097 -0.4499991,0.4499991,1.,1.,1.,1.,0.90499976,0.1999996,1.27E-002, 0000135P0000098 -0.90499976,0.1999996,0.2627,1.35499886,0.1999996,1.27E-002, 0000135P0000099 -1.35499886,0.1999996,0.2627,0.E+000,0.25,0.E+000,0.4499991; 0000135P0000100 -142,0,135,139,153,3; 0000137P0000101 -102,6,141,143,145,147,149,151; 0000139P0000102 -110,0.24800632,2.798160531E-007,0.E+000,0.24800776, 0000141P0000103 -6.938893904E-017,0.E+000; 0000141P0000104 -110,0.24800776,0.E+000,0.E+000,0.25,0.E+000,0.E+000; 0000143P0000105 -110,0.25,0.E+000,0.E+000,0.25,0.4499991,0.E+000; 0000145P0000106 -110,0.25,0.4499991,0.E+000,0.E+000,0.4499991,0.E+000; 0000147P0000107 -110,0.E+000,0.4499991,0.E+000,0.E+000,0.E+000,0.E+000; 0000149P0000108 -110,0.E+000,0.E+000,0.E+000,0.248006266,0.E+000,0.E+000; 0000151P0000109 -102,6,155,157,159,161,163,165; 0000153P0000110 -110,0.90500004,0.1999996,0.26070632,0.90499976,0.1999996, 0000155P0000111 -0.26070776; 0000155P0000112 -110,0.90499976,0.1999996,0.26070776,0.90499976,0.1999996,0.2627; 0000157P0000113 -110,0.90499976,0.1999996,0.2627,1.35499886,0.1999996,0.2627; 0000159P0000114 -110,1.35499886,0.1999996,0.2627,1.35499886,0.1999996,1.27E-002; 0000161P0000115 -110,1.35499886,0.1999996,1.27E-002,0.90499976,0.1999996, 0000163P0000116 -1.27E-002; 0000163P0000117 -110,0.90499976,0.1999996,1.27E-002,0.90499976,0.1999996, 0000165P0000118 -0.260706266; 0000165P0000119 -144,169,1,0,171; 0000167P0000120 -128,1,1,1,1,0,0,1,0,0,-0.4499991,-0.4499991,0.E+000,0.E+000, 0000169P0000121 --0.3999992,-0.3999992,0.E+000,0.E+000,1.,1.,1.,1.,0.90499976, 0000169P0000122 --0.1999996,1.27E-002,1.35499886,-0.1999996,1.27E-002,0.90499976, 0000169P0000123 -0.1999996,1.27E-002,1.35499886,0.1999996,1.27E-002,-0.4499991, 0000169P0000124 -0.E+000,-0.3999992,0.E+000; 0000169P0000125 -142,0,169,173,183,3; 0000171P0000126 -102,4,175,177,179,181; 0000173P0000127 -110,-0.4499991,-0.3999992,-0.E+000,0.E+000,-0.3999992,0.E+000; 0000175P0000128 -110,0.E+000,-0.3999992,0.E+000,0.E+000,0.E+000,0.E+000; 0000177P0000129 -110,0.E+000,0.E+000,0.E+000,-0.4499991,0.E+000,0.E+000; 0000179P0000130 -110,-0.4499991,0.E+000,0.E+000,-0.4499991,-0.3999992,0.E+000; 0000181P0000131 -102,4,185,187,189,191; 0000183P0000132 -110,0.90499976,-0.1999996,1.27E-002,1.35499886,-0.1999996, 0000185P0000133 -1.27E-002; 0000185P0000134 -110,1.35499886,-0.1999996,1.27E-002,1.35499886,0.1999996, 0000187P0000135 -1.27E-002; 0000187P0000136 -110,1.35499886,0.1999996,1.27E-002,0.90499976,0.1999996, 0000189P0000137 -1.27E-002; 0000189P0000138 -110,0.90499976,0.1999996,1.27E-002,0.90499976,-0.1999996, 0000191P0000139 -1.27E-002; 0000191P0000140 -144,195,1,0,197; 0000193P0000141 -128,1,1,1,1,0,0,1,0,0,-0.4499991,-0.4499991,1.110223025E-016, 0000195P0000142 -1.110223025E-016,-0.3999992,-0.3999992,0.E+000,0.E+000,1.,1.,1., 0000195P0000143 -1.,-1.34499828,-0.1999996,0.2627,-0.89499918,-0.1999996,0.2627, 0000195P0000144 --1.34499828,0.1999996,0.2627,-0.89499918,0.1999996,0.2627, 0000195P0000145 --0.4499991,1.110223025E-016,-0.3999992,0.E+000; 0000195P0000146 -142,0,195,199,209,3; 0000197P0000147 -102,4,201,203,205,207; 0000199P0000148 -110,-0.4499991,-0.3999992,0.E+000,0.E+000,-0.3999992,-0.E+000; 0000201P0000149 -110,0.E+000,-0.3999992,0.E+000,0.E+000,0.E+000,0.E+000; 0000203P0000150 -110,1.110223025E-016,0.E+000,0.E+000,-0.4499991,0.E+000,0.E+000; 0000205P0000151 -110,-0.4499991,0.E+000,0.E+000,-0.4499991,-0.3999992,0.E+000; 0000207P0000152 -102,4,211,213,215,217; 0000209P0000153 -110,-1.34499828,-0.1999996,0.2627,-0.89499918,-0.1999996,0.2627; 0000211P0000154 -110,-0.89499918,-0.1999996,0.2627,-0.89499918,0.1999996,0.2627; 0000213P0000155 -110,-0.89499918,0.1999996,0.2627,-1.34499828,0.1999996,0.2627; 0000215P0000156 -110,-1.34499828,0.1999996,0.2627,-1.34499828,-0.1999996,0.2627; 0000217P0000157 -144,221,1,0,223; 0000219P0000158 -128,1,1,1,1,0,0,1,0,0,0.248007027,0.248007027,0.25,0.25, 0000221P0000159 -0.87499952,0.87499952,1.34999984,1.34999984,1.,1.,1.,1., 0000221P0000160 -0.90499976,0.1999996,0.260707027,0.90499976,0.1999996,0.2627, 0000221P0000161 -0.90499976,0.67499992,0.260707027,0.90499976,0.67499992,0.2627, 0000221P0000162 -0.248007027,0.25,0.87499952,1.34999984; 0000221P0000163 -142,0,221,225,235,3; 0000223P0000164 -102,4,227,229,231,233; 0000225P0000165 -110,0.25,1.34999984,0.E+000,0.248007027,1.34999984,0.E+000; 0000227P0000166 -110,0.24800776,1.34999984,-0.E+000,0.24800776,0.87499952, 0000229P0000167 --0.E+000; 0000229P0000168 -110,0.24800776,0.87499952,0.E+000,0.25,0.87499952,0.E+000; 0000231P0000169 -110,0.25,0.87499952,0.E+000,0.25,1.34999984,0.E+000; 0000233P0000170 -102,4,237,239,241,243; 0000235P0000171 -110,0.90499976,0.67499992,0.2627,0.90499976,0.67499992, 0000237P0000172 -0.260707027; 0000237P0000173 -110,0.90499976,0.67499992,0.26070776,0.90499976,0.1999996, 0000239P0000174 -0.26070776; 0000239P0000175 -110,0.90499976,0.1999996,0.26070776,0.90499976,0.1999996,0.2627; 0000241P0000176 -110,0.90499976,0.1999996,0.2627,0.90499976,0.67499992,0.2627; 0000243P0000177 -144,247,1,0,249; 0000245P0000178 -128,1,1,1,1,0,0,1,0,0,-0.25,-0.25,-0.248007027,-0.248007027, 0000247P0000179 --1.79999894,-1.79999894,0.E+000,0.E+000,1.,1.,1.,1.,-0.89499918, 0000247P0000180 -0.67499992,0.2627,-0.89499918,0.67499992,0.260707027,0.90499976, 0000247P0000181 -0.67499992,0.2627,0.90499976,0.67499992,0.260707027,-0.25, 0000247P0000182 --0.248007027,-1.79999894,0.E+000; 0000247P0000183 -142,0,247,251,261,3; 0000249P0000184 -102,4,253,255,257,259; 0000251P0000185 -110,-0.24800776,-1.79999894,0.E+000,-0.24800776, 0000253P0000186 --1.972152263E-031,0.E+000; 0000253P0000187 -110,-0.248007027,0.E+000,0.E+000,-0.25,0.E+000,0.E+000; 0000255P0000188 -110,-0.25,-1.110223025E-016,0.E+000,-0.25,-1.79999894,0.E+000; 0000257P0000189 -110,-0.25,-1.79999894,0.E+000,-0.248007027,-1.79999894,0.E+000; 0000259P0000190 -102,4,263,265,267,269; 0000261P0000191 -110,-0.89499918,0.67499992,0.26070776,0.90499976,0.67499992, 0000263P0000192 -0.26070776; 0000263P0000193 -110,0.90499976,0.67499992,0.260707027,0.90499976,0.67499992, 0000265P0000194 -0.2627; 0000265P0000195 -110,0.90499976,0.67499992,0.2627,-0.89499918,0.67499992,0.2627; 0000267P0000196 -110,-0.89499918,0.67499992,0.2627,-0.89499918,0.67499992, 0000269P0000197 -0.260707027; 0000269P0000198 -144,273,1,0,275; 0000271P0000199 -128,1,1,1,1,0,0,1,0,0,0.E+000,0.E+000,0.248007027,0.248007027, 0000273P0000200 -0.87499952,0.87499952,1.34999984,1.34999984,1.,1.,1.,1., 0000273P0000201 -0.90499976,0.1999996,1.27E-002,0.90499976,0.1999996,0.260707027, 0000273P0000202 -0.90499976,0.67499992,1.27E-002,0.90499976,0.67499992, 0000273P0000203 -0.260707027,0.E+000,0.248007027,0.87499952,1.34999984; 0000273P0000204 -142,0,273,277,287,3; 0000275P0000205 -102,4,279,281,283,285; 0000277P0000206 -110,0.248006266,0.87499952,0.E+000,0.248006266,1.34999984, 0000279P0000207 -0.E+000; 0000279P0000208 -110,0.248007027,1.34999984,0.E+000,0.E+000,1.34999984,0.E+000; 0000281P0000209 -110,0.E+000,1.34999984,0.E+000,0.E+000,0.87499952,0.E+000; 0000283P0000210 -110,0.E+000,0.87499952,0.E+000,0.248006266,0.87499952,0.E+000; 0000285P0000211 -102,4,289,291,293,295; 0000287P0000212 -110,0.90499976,0.1999996,0.260706266,0.90499976,0.67499992, 0000289P0000213 -0.260706266; 0000289P0000214 -110,0.90499976,0.67499992,0.260707027,0.90499976,0.67499992, 0000291P0000215 -1.27E-002; 0000291P0000216 -110,0.90499976,0.67499992,1.27E-002,0.90499976,0.1999996, 0000293P0000217 -1.27E-002; 0000293P0000218 -110,0.90499976,0.1999996,1.27E-002,0.90499976,0.1999996, 0000295P0000219 -0.260706266; 0000295P0000220 -144,299,1,0,301; 0000297P0000221 -128,1,1,1,1,0,0,1,0,0,-1.79999894,-1.79999894,0.E+000,0.E+000, 0000299P0000222 --1.34999984,-1.34999984,0.E+000,0.E+000,1.,1.,1.,1.,0.90499976, 0000299P0000223 --0.67499992,1.27E-002,-0.89499918,-0.67499992,1.27E-002, 0000299P0000224 -0.90499976,0.67499992,1.27E-002,-0.89499918,0.67499992, 0000299P0000225 -1.27E-002,-1.79999894,0.E+000,-1.34999984,0.E+000; 0000299P0000226 -142,0,299,303,321,3; 0000301P0000227 -102,8,305,307,309,311,313,315,317,319; 0000303P0000228 -110,-1.79999894,-1.34999984,-0.E+000,0.E+000,-1.34999984, 0000305P0000229 -0.E+000; 0000305P0000230 -110,0.E+000,-1.34999984,0.E+000,0.E+000,-0.87499952,0.E+000; 0000307P0000231 -110,0.E+000,-0.87499952,0.E+000,0.E+000,-0.47500032,0.E+000; 0000309P0000232 -110,0.E+000,-0.47500032,0.E+000,0.E+000,0.E+000,0.E+000; 0000311P0000233 -110,0.E+000,0.E+000,0.E+000,-1.79999894,0.E+000,0.E+000; 0000313P0000234 -110,-1.79999894,0.E+000,0.E+000,-1.79999894,-0.47500032,0.E+000; 0000315P0000235 -110,-1.79999894,-0.47500032,0.E+000,-1.79999894,-0.87499952, 0000317P0000236 -0.E+000; 0000317P0000237 -110,-1.79999894,-0.87499952,0.E+000,-1.79999894,-1.34999984, 0000319P0000238 -0.E+000; 0000319P0000239 -102,8,323,325,327,329,331,333,335,337; 0000321P0000240 -110,0.90499976,-0.67499992,1.27E-002,-0.89499918,-0.67499992, 0000323P0000241 -1.27E-002; 0000323P0000242 -110,-0.89499918,-0.67499992,1.27E-002,-0.89499918,-0.1999996, 0000325P0000243 -1.27E-002; 0000325P0000244 -110,-0.89499918,-0.1999996,1.27E-002,-0.89499918,0.1999996, 0000327P0000245 -1.27E-002; 0000327P0000246 -110,-0.89499918,0.1999996,1.27E-002,-0.89499918,0.67499992, 0000329P0000247 -1.27E-002; 0000329P0000248 -110,-0.89499918,0.67499992,1.27E-002,0.90499976,0.67499992, 0000331P0000249 -1.27E-002; 0000331P0000250 -110,0.90499976,0.67499992,1.27E-002,0.90499976,0.1999996, 0000333P0000251 -1.27E-002; 0000333P0000252 -110,0.90499976,0.1999996,1.27E-002,0.90499976,-0.1999996, 0000335P0000253 -1.27E-002; 0000335P0000254 -110,0.90499976,-0.1999996,1.27E-002,0.90499976,-0.67499992, 0000337P0000255 -1.27E-002; 0000337P0000256 -144,341,1,0,343; 0000339P0000257 -128,1,1,1,1,0,0,1,0,0,-0.25,-0.25,0.E+000,0.E+000,-0.4499991, 0000341P0000258 --0.4499991,0.E+000,0.E+000,1.,1.,1.,1.,-1.34499828,-0.1999996, 0000341P0000259 -0.2627,-1.34499828,-0.1999996,1.27E-002,-0.89499918,-0.1999996, 0000341P0000260 -0.2627,-0.89499918,-0.1999996,1.27E-002,-0.25,0.E+000, 0000341P0000261 --0.4499991,0.E+000; 0000341P0000262 -142,0,341,345,359,3; 0000343P0000263 -102,6,347,349,351,353,355,357; 0000345P0000264 -110,-0.24800632,-2.798160528E-007,0.E+000,-0.24800776,0.E+000, 0000347P0000265 -0.E+000; 0000347P0000266 -110,-0.24800776,0.E+000,0.E+000,-0.25,0.E+000,0.E+000; 0000349P0000267 -110,-0.25,0.E+000,0.E+000,-0.25,-0.4499991,0.E+000; 0000351P0000268 -110,-0.25,-0.4499991,-0.E+000,0.E+000,-0.4499991,0.E+000; 0000353P0000269 -110,0.E+000,-0.4499991,0.E+000,0.E+000,0.E+000,0.E+000; 0000355P0000270 -110,0.E+000,0.E+000,0.E+000,-0.24800632,0.E+000,0.E+000; 0000357P0000271 -102,6,361,363,365,367,369,371; 0000359P0000272 -110,-0.89499946,-0.1999996,0.26070632,-0.89499918,-0.1999996, 0000361P0000273 -0.26070776; 0000361P0000274 -110,-0.89499918,-0.1999996,0.26070776,-0.89499918,-0.1999996, 0000363P0000275 -0.2627; 0000363P0000276 -110,-0.89499918,-0.1999996,0.2627,-1.34499828,-0.1999996,0.2627; 0000365P0000277 -110,-1.34499828,-0.1999996,0.2627,-1.34499828,-0.1999996, 0000367P0000278 -1.27E-002; 0000367P0000279 -110,-1.34499828,-0.1999996,1.27E-002,-0.89499918,-0.1999996, 0000369P0000280 -1.27E-002; 0000369P0000281 -110,-0.89499918,-0.1999996,1.27E-002,-0.89499918,-0.1999996, 0000371P0000282 -0.26070632; 0000371P0000283 -144,375,1,0,377; 0000373P0000284 -128,1,1,1,1,0,0,1,0,0,0.E+000,0.E+000,0.25,0.25,0.E+000,0.E+000, 0000375P0000285 -0.3999992,0.3999992,1.,1.,1.,1.,-1.34499828,-0.1999996, 0000375P0000286 -1.27E-002,-1.34499828,-0.1999996,0.2627,-1.34499828,0.1999996, 0000375P0000287 -1.27E-002,-1.34499828,0.1999996,0.2627,0.E+000,0.25,0.E+000, 0000375P0000288 -0.3999992; 0000375P0000289 -142,0,375,379,389,3; 0000377P0000290 -102,4,381,383,385,387; 0000379P0000291 -110,0.25,0.3999992,0.E+000,0.E+000,0.3999992,0.E+000; 0000381P0000292 -110,0.E+000,0.3999992,0.E+000,0.E+000,0.E+000,0.E+000; 0000383P0000293 -110,0.E+000,0.E+000,0.E+000,0.25,0.E+000,0.E+000; 0000385P0000294 -110,0.25,0.E+000,0.E+000,0.25,0.3999992,0.E+000; 0000387P0000295 -102,4,391,393,395,397; 0000389P0000296 -110,-1.34499828,0.1999996,0.2627,-1.34499828,0.1999996, 0000391P0000297 -1.27E-002; 0000391P0000298 -110,-1.34499828,0.1999996,1.27E-002,-1.34499828,-0.1999996, 0000393P0000299 -1.27E-002; 0000393P0000300 -110,-1.34499828,-0.1999996,1.27E-002,-1.34499828,-0.1999996, 0000395P0000301 -0.2627; 0000395P0000302 -110,-1.34499828,-0.1999996,0.2627,-1.34499828,0.1999996,0.2627; 0000397P0000303 -144,401,1,0,403; 0000399P0000304 -128,1,1,1,1,0,0,1,0,0,0.E+000,0.E+000,0.25,0.25, 0000401P0000305 --1.110223025E-016,-1.110223025E-016,0.4499991,0.4499991,1.,1., 0000401P0000306 -1.,1.,-1.34499828,0.1999996,1.27E-002,-1.34499828,0.1999996, 0000401P0000307 -0.2627,-0.89499918,0.1999996,1.27E-002,-0.89499918,0.1999996, 0000401P0000308 -0.2627,0.E+000,0.25,-1.110223025E-016,0.4499991; 0000401P0000309 -142,0,401,405,419,3; 0000403P0000310 -102,6,407,409,411,413,415,417; 0000405P0000311 -110,0.248006266,0.4499991,0.E+000,0.E+000,0.4499991,0.E+000; 0000407P0000312 -110,0.E+000,0.4499991,0.E+000,0.E+000,-1.110223025E-016,0.E+000; 0000409P0000313 -110,0.E+000,0.E+000,0.E+000,0.25,0.E+000,0.E+000; 0000411P0000314 -110,0.25,0.E+000,0.E+000,0.25,0.4499991,0.E+000; 0000413P0000315 -110,0.25,0.4499991,0.E+000,0.24800776,0.4499991,0.E+000; 0000415P0000316 -110,0.24800776,0.4499991,0.E+000,0.248006266,0.4499991,0.E+000; 0000417P0000317 -102,6,421,423,425,427,429,431; 0000419P0000318 -110,-0.89499918,0.1999996,0.260706266,-0.89499918,0.1999996, 0000421P0000319 -1.27E-002; 0000421P0000320 -110,-0.89499918,0.1999996,1.27E-002,-1.34499828,0.1999996, 0000423P0000321 -1.27E-002; 0000423P0000322 -110,-1.34499828,0.1999996,1.27E-002,-1.34499828,0.1999996, 0000425P0000323 -0.2627; 0000425P0000324 -110,-1.34499828,0.1999996,0.2627,-0.89499918,0.1999996,0.2627; 0000427P0000325 -110,-0.89499918,0.1999996,0.2627,-0.89499918,0.1999996, 0000429P0000326 -0.26070776; 0000429P0000327 -110,-0.89499918,0.1999996,0.26070776,-0.89499918,0.1999996, 0000431P0000328 -0.260706266; 0000431P0000329 -144,435,1,0,437; 0000433P0000330 -128,1,1,1,1,0,0,1,0,0,-3.108624503E-015,-3.108624503E-015, 0000435P0000331 -1.79999894,1.79999894,-1.09984628E-016,-1.09984628E-016, 0000435P0000332 -1.466471987E-006,1.466471987E-006,1.,1.,1.,1.,0.90499976, 0000435P0000333 -0.6750002,0.26070632,-0.89499918,0.6750002,0.26070632, 0000435P0000334 -0.90499976,0.67499992,0.26070776,-0.89499918,0.67499992, 0000435P0000335 -0.26070776,-3.108624503E-015,1.79999894,-1.09984628E-016, 0000435P0000336 -1.466471987E-006; 0000435P0000337 -142,0,435,439,449,3; 0000437P0000338 -102,4,441,443,445,447; 0000439P0000339 -110,1.79999894,-1.09984628E-016,-0.E+000,1.7999988, 0000441P0000340 -7.196388002E-007,0.E+000; 0000441P0000341 -110,1.79999894,1.466471987E-006,0.E+000,-3.108624503E-015, 0000443P0000342 -1.466471986E-006,0.E+000; 0000443P0000343 -110,1.398839634E-007,7.196387836E-007,0.E+000,-6.938893904E-017, 0000445P0000344 -0.E+000,0.E+000; 0000445P0000345 -110,0.E+000,-3.082693043E-019,0.E+000,1.79999894, 0000447P0000346 --3.082693043E-019,0.E+000; 0000447P0000347 -102,4,451,453,455,457; 0000449P0000348 -110,-0.89499918,0.6750002,0.26070632,-0.89499904,0.675000063, 0000451P0000349 -0.260707027; 0000451P0000350 -110,-0.89499918,0.67499992,0.26070776,0.90499976,0.67499992, 0000453P0000351 -0.26070776; 0000453P0000352 -110,0.90499962,0.675000063,0.260707027,0.90499976,0.6750002, 0000455P0000353 -0.26070632; 0000455P0000354 -110,0.90499976,0.6750002,0.26070632,-0.89499918,0.6750002, 0000457P0000355 -0.26070632; 0000457P0000356 -144,461,1,0,463; 0000459P0000357 -128,1,1,1,1,0,0,1,0,0,-1.E-002,-1.E-002,-9.999714947E-003, 0000461P0000358 --9.999714947E-003,-0.47500032,-0.47500032,0.E+000,0.E+000,1.,1., 0000461P0000359 -1.,1.,0.90500004,0.1999996,0.26070632,0.90499976,0.1999996, 0000461P0000360 -0.260706266,0.90500004,0.67499992,0.26070632,0.90499976, 0000461P0000361 -0.67499992,0.260706266,-1.E-002,-9.999714947E-003,-0.47500032, 0000461P0000362 -0.E+000; 0000461P0000363 -142,0,461,465,471,3; 0000463P0000364 -102,2,467,469; 0000465P0000365 -110,-9.999714947E-003,-0.47500032,0.E+000,-9.999714947E-003, 0000467P0000366 -0.E+000,0.E+000; 0000467P0000367 -110,-1.E-002,-4.407585408E-014,0.E+000,-1.E-002,-0.47500032, 0000469P0000368 -0.E+000; 0000469P0000369 -102,2,473,475; 0000471P0000370 -110,0.90499976,0.1999996,0.260706266,0.90499976,0.67499992, 0000473P0000371 -0.260706266; 0000473P0000372 -110,0.90500004,0.67499992,0.26070632,0.90500004,0.1999996, 0000475P0000373 -0.26070632; 0000475P0000374 -144,479,1,0,481; 0000477P0000375 -128,1,1,1,1,0,0,1,0,0,0.E+000,0.E+000,0.248006266,0.248006266, 0000479P0000376 -0.E+000,0.E+000,1.79999894,1.79999894,1.,1.,1.,1.,-0.89499918, 0000479P0000377 --0.67499992,1.27E-002,-0.89499918,-0.67499992,0.260706266, 0000479P0000378 -0.90499976,-0.67499992,1.27E-002,0.90499976,-0.67499992, 0000479P0000379 -0.260706266,0.E+000,0.248006266,0.E+000,1.79999894; 0000479P0000380 -142,0,479,483,493,3; 0000481P0000381 -102,4,485,487,489,491; 0000483P0000382 -110,0.248006266,0.E+000,0.E+000,0.248006266,1.79999894,0.E+000; 0000485P0000383 -110,0.248006225,1.79999894,0.E+000,0.E+000,1.79999894,0.E+000; 0000487P0000384 -110,0.E+000,1.79999894,0.E+000,0.E+000,0.E+000,0.E+000; 0000489P0000385 -110,0.E+000,0.E+000,0.E+000,0.248006225,0.E+000,0.E+000; 0000491P0000386 -102,4,495,497,499,501; 0000493P0000387 -110,-0.89499918,-0.67499992,0.260706266,0.90499976,-0.67499992, 0000495P0000388 -0.260706266; 0000495P0000389 -110,0.90499976,-0.67499992,0.260706225,0.90499976,-0.67499992, 0000497P0000390 -1.27E-002; 0000497P0000391 -110,0.90499976,-0.67499992,1.27E-002,-0.89499918,-0.67499992, 0000499P0000392 -1.27E-002; 0000499P0000393 -110,-0.89499918,-0.67499992,1.27E-002,-0.89499918,-0.67499992, 0000501P0000394 -0.260706225; 0000501P0000395 -144,505,1,0,507; 0000503P0000396 -128,1,1,1,1,0,0,1,0,0,-0.24800632,-0.24800632,0.E+000,0.E+000, 0000505P0000397 --1.34999984,-1.34999984,-0.87499952,-0.87499952,1.,1.,1.,1., 0000505P0000398 --0.89499918,-0.67499992,0.26070632,-0.89499918,-0.67499992, 0000505P0000399 -1.27E-002,-0.89499918,-0.1999996,0.26070632,-0.89499918, 0000505P0000400 --0.1999996,1.27E-002,-0.24800632,0.E+000,-1.34999984, 0000505P0000401 --0.87499952; 0000505P0000402 -142,0,505,509,519,3; 0000507P0000403 -102,4,511,513,515,517; 0000509P0000404 -110,-0.248006266,-0.87499952,0.E+000,-0.248006266,-1.34999984, 0000511P0000405 -0.E+000; 0000511P0000406 -110,-0.248006225,-1.34999984,-0.E+000,0.E+000,-1.34999984, 0000513P0000407 -0.E+000; 0000513P0000408 -110,0.E+000,-1.34999984,0.E+000,0.E+000,-0.87499952,0.E+000; 0000515P0000409 -110,0.E+000,-0.87499952,-0.E+000,-0.24800632,-0.87499952, 0000517P0000410 -0.E+000; 0000517P0000411 -102,4,521,523,525,527; 0000519P0000412 -110,-0.89499918,-0.1999996,0.260706266,-0.89499918,-0.67499992, 0000521P0000413 -0.260706266; 0000521P0000414 -110,-0.89499918,-0.67499992,0.260706225,-0.89499918,-0.67499992, 0000523P0000415 -1.27E-002; 0000523P0000416 -110,-0.89499918,-0.67499992,1.27E-002,-0.89499918,-0.1999996, 0000525P0000417 -1.27E-002; 0000525P0000418 -110,-0.89499918,-0.1999996,1.27E-002,-0.89499918,-0.1999996, 0000527P0000419 -0.26070632; 0000527P0000420 -144,531,1,1,533,555; 0000529P0000421 -128,1,1,1,1,0,0,1,0,0,-0.4499991,-0.4499991,0.E+000,0.E+000, 0000531P0000422 --0.3999992,-0.3999992,0.E+000,0.E+000,1.,1.,1.,1.,-1.34499828, 0000531P0000423 --0.1999996,1.27E-002,-0.89499918,-0.1999996,1.27E-002, 0000531P0000424 --1.34499828,0.1999996,1.27E-002,-0.89499918,0.1999996,1.27E-002, 0000531P0000425 --0.4499991,0.E+000,-0.3999992,0.E+000; 0000531P0000426 -142,0,531,535,545,3; 0000533P0000427 -102,4,537,539,541,543; 0000535P0000428 -110,-0.4499991,-0.3999992,-0.E+000,0.E+000,-0.3999992,0.E+000; 0000537P0000429 -110,0.E+000,-0.3999992,0.E+000,0.E+000,0.E+000,0.E+000; 0000539P0000430 -110,0.E+000,0.E+000,0.E+000,-0.4499991,0.E+000,0.E+000; 0000541P0000431 -110,-0.4499991,0.E+000,0.E+000,-0.4499991,-0.3999992,0.E+000; 0000543P0000432 -102,4,547,549,551,553; 0000545P0000433 -110,-1.34499828,-0.1999996,1.27E-002,-0.89499918,-0.1999996, 0000547P0000434 -1.27E-002; 0000547P0000435 -110,-0.89499918,-0.1999996,1.27E-002,-0.89499918,0.1999996, 0000549P0000436 -1.27E-002; 0000549P0000437 -110,-0.89499918,0.1999996,1.27E-002,-1.34499828,0.1999996, 0000551P0000438 -1.27E-002; 0000551P0000439 -110,-1.34499828,0.1999996,1.27E-002,-1.34499828,-0.1999996, 0000553P0000440 -1.27E-002; 0000553P0000441 -142,0,531,557,567,3; 0000555P0000442 -102,4,559,561,563,565; 0000557P0000443 -110,-0.22400006,-0.19899884,0.E+000,-0.22400006,-0.1999996, 0000559P0000444 -0.E+000; 0000559P0000445 -110,-0.22400006,-0.1999996,0.E+000,-0.22500082,-0.1999996, 0000561P0000446 -0.E+000; 0000561P0000447 -110,-0.22500082,-0.1999996,0.E+000,-0.22500082,-0.19899884, 0000563P0000448 -0.E+000; 0000563P0000449 -110,-0.22500082,-0.19899884,0.E+000,-0.22400006,-0.19899884, 0000565P0000450 -0.E+000; 0000565P0000451 -102,4,569,571,573,575; 0000567P0000452 -110,-1.11899924,1.00076E-003,1.27E-002,-1.11899924,0.E+000, 0000569P0000453 -1.27E-002; 0000569P0000454 -110,-1.11899924,0.E+000,1.27E-002,-1.12,0.E+000,1.27E-002; 0000571P0000455 -110,-1.12,0.E+000,1.27E-002,-1.12,1.00076E-003,1.27E-002; 0000573P0000456 -110,-1.12,1.00076E-003,1.27E-002,-1.11899924,1.00076E-003, 0000575P0000457 -1.27E-002; 0000575P0000458 -144,579,1,0,581; 0000577P0000459 -128,1,1,1,1,0,0,1,0,0,-0.248007027,-0.248007027,0.E+000,0.E+000, 0000579P0000460 --0.47500032,-0.47500032,0.E+000,0.E+000,1.,1.,1.,1.,-0.89499918, 0000579P0000461 -0.1999996,0.260707027,-0.89499918,0.1999996,1.27E-002, 0000579P0000462 --0.89499918,0.67499992,0.260707027,-0.89499918,0.67499992, 0000579P0000463 -1.27E-002,-0.248007027,0.E+000,-0.47500032,0.E+000; 0000579P0000464 -142,0,579,583,593,3; 0000581P0000465 -102,4,585,587,589,591; 0000583P0000466 -110,-0.248006266,0.E+000,0.E+000,-0.248006266,-0.47500032, 0000585P0000467 -0.E+000; 0000585P0000468 -110,-0.248006266,-0.47500032,0.E+000,0.E+000,-0.47500032, 0000587P0000469 -0.E+000; 0000587P0000470 -110,0.E+000,-0.47500032,0.E+000,0.E+000,0.E+000,0.E+000; 0000589P0000471 -110,0.E+000,0.E+000,0.E+000,-0.248007027,0.E+000,0.E+000; 0000591P0000472 -102,4,595,597,599,601; 0000593P0000473 -110,-0.89499918,0.67499992,0.260706266,-0.89499918,0.1999996, 0000595P0000474 -0.260706266; 0000595P0000475 -110,-0.89499918,0.1999996,0.260706266,-0.89499918,0.1999996, 0000597P0000476 -1.27E-002; 0000597P0000477 -110,-0.89499918,0.1999996,1.27E-002,-0.89499918,0.67499992, 0000599P0000478 -1.27E-002; 0000599P0000479 -110,-0.89499918,0.67499992,1.27E-002,-0.89499918,0.67499992, 0000601P0000480 -0.260707027; 0000601P0000481 -144,605,1,0,607; 0000603P0000482 -128,1,1,1,1,0,0,1,0,0,-1.E-002,-1.E-002,-9.999707119E-003, 0000605P0000483 --9.999707119E-003,-1.79999894,-1.79999894,-3.108624469E-015, 0000605P0000484 --3.108624469E-015,1.,1.,1.,1.,-0.89499918,-0.6750002,0.26070632, 0000605P0000485 --0.89499918,-0.674999912,0.260706264,0.90499976,-0.6750002, 0000605P0000486 -0.26070632,0.90499976,-0.674999912,0.260706264,-1.E-002, 0000605P0000487 --9.999707119E-003,-1.79999894,-3.108624469E-015; 0000605P0000488 -142,0,605,609,619,3; 0000607P0000489 -102,4,611,613,615,617; 0000609P0000490 -110,-9.999714947E-003,-1.79999894,0.E+000,-9.999714947E-003, 0000611P0000491 --3.108624469E-015,0.E+000; 0000611P0000492 -110,-9.999707119E-003,-1.766364832E-013,0.E+000,-1.E-002, 0000613P0000493 --1.766364832E-013,0.E+000; 0000613P0000494 -110,-1.E-002,-4.407585408E-014,0.E+000,-1.E-002,-1.79999894, 0000615P0000495 -0.E+000; 0000615P0000496 -110,-1.E-002,-1.79999894,0.E+000,-9.999707119E-003,-1.79999894, 0000617P0000497 -0.E+000; 0000617P0000498 -102,4,621,623,625,627; 0000619P0000499 -110,-0.89499918,-0.67499992,0.260706266,0.90499976,-0.67499992, 0000621P0000500 -0.260706266; 0000621P0000501 -110,0.90499976,-0.674999912,0.260706264,0.90499976,-0.6750002, 0000623P0000502 -0.26070632; 0000623P0000503 -110,0.90499976,-0.6750002,0.26070632,-0.89499918,-0.6750002, 0000625P0000504 -0.26070632; 0000625P0000505 -110,-0.89499918,-0.6750002,0.26070632,-0.89499918,-0.674999912, 0000627P0000506 -0.260706264; 0000627P0000507 -144,631,1,0,633; 0000629P0000508 -128,1,1,1,1,0,0,1,0,0,-1.E-002,-1.E-002,-9.99949996E-003, 0000631P0000509 --9.99949996E-003,-0.47500032,-0.47500032,0.E+000,0.E+000,1.,1., 0000631P0000510 -1.,1.,-0.89499946,-0.1999996,0.26070632,-0.894998969,-0.1999996, 0000631P0000511 -0.260706225,-0.89499946,-0.67499992,0.26070632,-0.894998969, 0000631P0000512 --0.67499992,0.260706225,-1.E-002,-9.99949996E-003,-0.47500032, 0000631P0000513 -0.E+000; 0000631P0000514 -142,0,631,635,643,3; 0000633P0000515 -102,3,637,639,641; 0000635P0000516 -110,-9.999714947E-003,-0.47500032,0.E+000,-9.999714947E-003, 0000637P0000517 -0.E+000,0.E+000; 0000637P0000518 -110,-9.99949996E-003,-1.764143735E-013,0.E+000,-1.E-002, 0000639P0000519 --1.764143735E-013,0.E+000; 0000639P0000520 -110,-1.E-002,-4.407356851E-014,0.E+000,-1.E-002,-0.47500032, 0000641P0000521 -0.E+000; 0000641P0000522 -102,3,645,647,649; 0000643P0000523 -110,-0.89499918,-0.1999996,0.260706266,-0.89499918,-0.67499992, 0000645P0000524 -0.260706266; 0000645P0000525 -110,-0.894998969,-0.67499992,0.260706225,-0.89499946, 0000647P0000526 --0.67499992,0.26070632; 0000647P0000527 -110,-0.89499946,-0.67499992,0.26070632,-0.89499946,-0.1999996, 0000649P0000528 -0.26070632; 0000649P0000529 -144,653,1,0,655; 0000651P0000530 -128,1,1,1,1,0,0,1,0,0,-9.652E-002,-9.652E-002,0.E+000,0.E+000, 0000653P0000531 --1.00076E-003,-1.00076E-003,0.E+000,0.E+000,1.,1.,1.,1., 0000653P0000532 --1.11899924,0.E+000,1.27E-002,-1.11899924,0.E+000,-8.382E-002, 0000653P0000533 --1.11899924,1.00076E-003,1.27E-002,-1.11899924,1.00076E-003, 0000653P0000534 --8.382E-002,-9.652E-002,0.E+000,-1.00076E-003,0.E+000; 0000653P0000535 -142,0,653,657,667,3; 0000655P0000536 -102,4,659,661,663,665; 0000657P0000537 -110,-9.652E-002,-1.00076E-003,0.E+000,0.E+000,-1.00076E-003, 0000659P0000538 -0.E+000; 0000659P0000539 -110,0.E+000,-1.00076E-003,0.E+000,0.E+000,0.E+000,0.E+000; 0000661P0000540 -110,0.E+000,0.E+000,0.E+000,-9.652E-002,0.E+000,0.E+000; 0000663P0000541 -110,-9.652E-002,0.E+000,0.E+000,-9.652E-002,-1.00076E-003, 0000665P0000542 -0.E+000; 0000665P0000543 -102,4,669,671,673,675; 0000667P0000544 -110,-1.11899924,0.E+000,1.27E-002,-1.11899924,0.E+000, 0000669P0000545 --8.382E-002; 0000669P0000546 -110,-1.11899924,0.E+000,-8.382E-002,-1.11899924,1.00076E-003, 0000671P0000547 --8.382E-002; 0000671P0000548 -110,-1.11899924,1.00076E-003,-8.382E-002,-1.11899924, 0000673P0000549 -1.00076E-003,1.27E-002; 0000673P0000550 -110,-1.11899924,1.00076E-003,1.27E-002,-1.11899924,0.E+000, 0000675P0000551 -1.27E-002; 0000675P0000552 -144,679,1,0,681; 0000677P0000553 -128,1,1,1,1,0,0,1,0,0,0.E+000,0.E+000,9.652E-002,9.652E-002, 0000679P0000554 -0.E+000,0.E+000,1.00076E-003,1.00076E-003,1.,1.,1.,1.,-1.12, 0000679P0000555 -1.00076E-003,-8.382E-002,-1.12,1.00076E-003,1.27E-002, 0000679P0000556 --1.11899924,1.00076E-003,-8.382E-002,-1.11899924,1.00076E-003, 0000679P0000557 -1.27E-002,0.E+000,9.652E-002,0.E+000,1.00076E-003; 0000679P0000558 -142,0,679,683,693,3; 0000681P0000559 -102,4,685,687,689,691; 0000683P0000560 -110,9.652E-002,1.00076E-003,0.E+000,0.E+000,1.00076E-003, 0000685P0000561 -0.E+000; 0000685P0000562 -110,0.E+000,1.00076E-003,0.E+000,0.E+000,0.E+000,0.E+000; 0000687P0000563 -110,0.E+000,0.E+000,0.E+000,9.652E-002,0.E+000,0.E+000; 0000689P0000564 -110,9.652E-002,0.E+000,0.E+000,9.652E-002,1.00076E-003,0.E+000; 0000691P0000565 -102,4,695,697,699,701; 0000693P0000566 -110,-1.11899924,1.00076E-003,1.27E-002,-1.11899924,1.00076E-003, 0000695P0000567 --8.382E-002; 0000695P0000568 -110,-1.11899924,1.00076E-003,-8.382E-002,-1.12,1.00076E-003, 0000697P0000569 --8.382E-002; 0000697P0000570 -110,-1.12,1.00076E-003,-8.382E-002,-1.12,1.00076E-003,1.27E-002; 0000699P0000571 -110,-1.12,1.00076E-003,1.27E-002,-1.11899924,1.00076E-003, 0000701P0000572 -1.27E-002; 0000701P0000573 -144,705,1,0,707; 0000703P0000574 -128,1,1,1,1,0,0,1,0,0,0.E+000,0.E+000,9.652E-002,9.652E-002, 0000705P0000575 -0.E+000,0.E+000,1.00076E-003,1.00076E-003,1.,1.,1.,1.,-1.12, 0000705P0000576 -0.E+000,-8.382E-002,-1.12,0.E+000,1.27E-002,-1.12,1.00076E-003, 0000705P0000577 --8.382E-002,-1.12,1.00076E-003,1.27E-002,0.E+000,9.652E-002, 0000705P0000578 -0.E+000,1.00076E-003; 0000705P0000579 -142,0,705,709,719,3; 0000707P0000580 -102,4,711,713,715,717; 0000709P0000581 -110,9.652E-002,1.00076E-003,0.E+000,0.E+000,1.00076E-003, 0000711P0000582 -0.E+000; 0000711P0000583 -110,0.E+000,1.00076E-003,0.E+000,0.E+000,0.E+000,0.E+000; 0000713P0000584 -110,0.E+000,0.E+000,0.E+000,9.652E-002,0.E+000,0.E+000; 0000715P0000585 -110,9.652E-002,0.E+000,0.E+000,9.652E-002,1.00076E-003,0.E+000; 0000717P0000586 -102,4,721,723,725,727; 0000719P0000587 -110,-1.12,1.00076E-003,1.27E-002,-1.12,1.00076E-003,-8.382E-002; 0000721P0000588 -110,-1.12,1.00076E-003,-8.382E-002,-1.12,0.E+000,-8.382E-002; 0000723P0000589 -110,-1.12,0.E+000,-8.382E-002,-1.12,0.E+000,1.27E-002; 0000725P0000590 -110,-1.12,0.E+000,1.27E-002,-1.12,1.00076E-003,1.27E-002; 0000727P0000591 -144,731,1,0,733; 0000729P0000592 -128,1,1,1,1,0,0,1,0,0,-9.652E-002,-9.652E-002,0.E+000,0.E+000, 0000731P0000593 --1.00076E-003,-1.00076E-003,0.E+000,0.E+000,1.,1.,1.,1.,-1.12, 0000731P0000594 -0.E+000,1.27E-002,-1.12,0.E+000,-8.382E-002,-1.11899924,0.E+000, 0000731P0000595 -1.27E-002,-1.11899924,0.E+000,-8.382E-002,-9.652E-002,0.E+000, 0000731P0000596 --1.00076E-003,0.E+000; 0000731P0000597 -142,0,731,735,745,3; 0000733P0000598 -102,4,737,739,741,743; 0000735P0000599 -110,-9.652E-002,-1.00076E-003,0.E+000,0.E+000,-1.00076E-003, 0000737P0000600 -0.E+000; 0000737P0000601 -110,0.E+000,-1.00076E-003,0.E+000,0.E+000,0.E+000,0.E+000; 0000739P0000602 -110,0.E+000,0.E+000,0.E+000,-9.652E-002,0.E+000,0.E+000; 0000741P0000603 -110,-9.652E-002,-3.621235256E-017,0.E+000,-9.652E-002, 0000743P0000604 --1.00076E-003,0.E+000; 0000743P0000605 -102,4,747,749,751,753; 0000745P0000606 -110,-1.12,0.E+000,1.27E-002,-1.12,0.E+000,-8.382E-002; 0000747P0000607 -110,-1.12,0.E+000,-8.382E-002,-1.11899924,0.E+000,-8.382E-002; 0000749P0000608 -110,-1.11899924,0.E+000,-8.382E-002,-1.11899924,0.E+000, 0000751P0000609 -1.27E-002; 0000751P0000610 -110,-1.11899924,0.E+000,1.27E-002,-1.12,0.E+000,1.27E-002; 0000753P0000611 -144,757,1,0,759; 0000755P0000612 -128,1,1,1,1,0,0,1,0,0,-1.E-002,-1.E-002,-9.999714947E-003, 0000757P0000613 --9.999714947E-003,-1.34999984,-1.34999984,-0.87499952, 0000757P0000614 --0.87499952,1.,1.,1.,1.,-0.89499946,0.67499992,0.26070632, 0000757P0000615 --0.89499918,0.67499992,0.260706266,-0.89499946,0.1999996, 0000757P0000616 -0.26070632,-0.89499918,0.1999996,0.260706266,-1.E-002, 0000757P0000617 --9.999714947E-003,-1.34999984,-0.87499952; 0000757P0000618 -142,0,757,761,767,3; 0000759P0000619 -102,2,763,765; 0000761P0000620 -110,-9.999714947E-003,-1.34999984,0.E+000,-9.999714947E-003, 0000763P0000621 --0.87499952,0.E+000; 0000763P0000622 -110,-1.E-002,-0.87499952,0.E+000,-1.E-002,-1.34999984,0.E+000; 0000765P0000623 -102,2,769,771; 0000767P0000624 -110,-0.89499918,0.67499992,0.260706266,-0.89499918,0.1999996, 0000769P0000625 -0.260706266; 0000769P0000626 -110,-0.89499946,0.1999996,0.26070632,-0.89499946,0.67499992, 0000771P0000627 -0.26070632; 0000771P0000628 -144,775,1,0,777; 0000773P0000629 -128,1,1,1,1,0,0,1,0,0,-3.330669074E-015,-3.330669074E-015, 0000775P0000630 -1.79999894,1.79999894,-1.096763587E-016,-1.096763587E-016, 0000775P0000631 -1.466471987E-006,1.466471987E-006,1.,1.,1.,1.,-0.89499918, 0000775P0000632 --0.6750002,0.26070632,0.90499976,-0.6750002,0.26070632, 0000775P0000633 --0.89499918,-0.67499992,0.26070776,0.90499976,-0.67499992, 0000775P0000634 -0.26070776,-3.330669074E-015,1.79999894,-1.096763587E-016, 0000775P0000635 -1.466471987E-006; 0000775P0000636 -142,0,775,779,789,3; 0000777P0000637 -102,4,781,783,785,787; 0000779P0000638 -110,1.79999894,1.466471987E-006,0.E+000,-3.330669074E-015, 0000781P0000639 -1.466471987E-006,0.E+000; 0000781P0000640 -110,2.85054E-007,1.466471987E-006,0.E+000,-5.551115123E-017, 0000783P0000641 -0.E+000,0.E+000; 0000783P0000642 -110,0.E+000,-1.638831609E-032,0.E+000,1.79999894, 0000785P0000643 --1.638831609E-032,0.E+000; 0000785P0000644 -110,1.79999894,-1.096763587E-016,-0.E+000,1.799998655, 0000787P0000645 -1.466471987E-006,0.E+000; 0000787P0000646 -102,4,791,793,795,797; 0000789P0000647 -110,0.90499976,-0.67499992,0.26070776,-0.89499918,-0.67499992, 0000791P0000648 -0.26070776; 0000791P0000649 -110,-0.894998895,-0.67499992,0.26070776,-0.89499918,-0.6750002, 0000793P0000650 -0.26070632; 0000793P0000651 -110,-0.89499918,-0.6750002,0.26070632,0.90499976,-0.6750002, 0000795P0000652 -0.26070632; 0000795P0000653 -110,0.90499976,-0.6750002,0.26070632,0.904999475,-0.67499992, 0000797P0000654 -0.26070776; 0000797P0000655 -144,801,1,0,803; 0000799P0000656 -128,1,1,1,1,0,0,1,0,0,0.E+000,0.E+000,1.00076E-003,1.00076E-003, 0000801P0000657 -0.E+000,0.E+000,1.00076E-003,1.00076E-003,1.,1.,1.,1.,-1.12, 0000801P0000658 -0.E+000,-8.382E-002,-1.11899924,0.E+000,-8.382E-002,-1.12, 0000801P0000659 -1.00076E-003,-8.382E-002,-1.11899924,1.00076E-003,-8.382E-002, 0000801P0000660 -0.E+000,1.00076E-003,0.E+000,1.00076E-003; 0000801P0000661 -142,0,801,805,815,3; 0000803P0000662 -102,4,807,809,811,813; 0000805P0000663 -110,1.00076E-003,1.00076E-003,0.E+000,0.E+000,1.00076E-003, 0000807P0000664 -0.E+000; 0000807P0000665 -110,0.E+000,1.00076E-003,0.E+000,0.E+000,0.E+000,0.E+000; 0000809P0000666 -110,3.621235256E-017,0.E+000,0.E+000,1.00076E-003,0.E+000, 0000811P0000667 -0.E+000; 0000811P0000668 -110,1.00076E-003,0.E+000,0.E+000,1.00076E-003,1.00076E-003, 0000813P0000669 -0.E+000; 0000813P0000670 -102,4,817,819,821,823; 0000815P0000671 -110,-1.11899924,1.00076E-003,-8.382E-002,-1.12,1.00076E-003, 0000817P0000672 --8.382E-002; 0000817P0000673 -110,-1.12,1.00076E-003,-8.382E-002,-1.12,0.E+000,-8.382E-002; 0000819P0000674 -110,-1.12,0.E+000,-8.382E-002,-1.11899924,0.E+000,-8.382E-002; 0000821P0000675 -110,-1.11899924,0.E+000,-8.382E-002,-1.11899924,1.00076E-003, 0000823P0000676 --8.382E-002; 0000823P0000677 -402,2,827,1627; 0000825P0000678 -402,27,829,855,881,907,959,985,1011,1037,1063,1111,1137,1185, 0000827P0000679 -1237,1263,1289,1315,1341,1367,1393,1419,1445,1471,1497,1523, 0000827P0000680 -1549,1575,1601; 0000827P0000681 -144,831,1,0,833; 0000829P0000682 -128,1,1,1,1,0,0,1,0,0,-9.652E-002,-9.652E-002,0.E+000,0.E+000, 0000831P0000683 --1.00076E-003,-1.00076E-003,5.421010862E-018,5.421010862E-018, 0000831P0000684 -1.,1.,1.,1.,3.99826E-003,0.627022205,0.455123274,3.99826E-003, 0000831P0000685 -0.532275549,0.43670639,3.99826E-003,0.626831251,0.456105647, 0000831P0000686 -3.99826E-003,0.532084595,0.437688763,-9.652E-002,0.E+000, 0000831P0000687 --1.00076E-003,5.421010862E-018; 0000831P0000688 -142,0,831,835,845,3; 0000833P0000689 -102,4,837,839,841,843; 0000835P0000690 -110,-9.652E-002,-1.00076E-003,0.E+000,-1.290200585E-017, 0000837P0000691 --1.00076E-003,0.E+000; 0000837P0000692 -110,0.E+000,-1.00076E-003,0.E+000,0.E+000,0.E+000,0.E+000; 0000839P0000693 -110,0.E+000,0.E+000,0.E+000,-9.652E-002,0.E+000,0.E+000; 0000841P0000694 -110,-9.652E-002,5.421010862E-018,0.E+000,-9.652E-002, 0000843P0000695 --1.00076E-003,0.E+000; 0000843P0000696 -102,4,847,849,851,853; 0000845P0000697 -110,3.99826E-003,0.627022205,0.455123274,3.99826E-003, 0000847P0000698 -0.532275549,0.43670639; 0000847P0000699 -110,3.99826E-003,0.532275549,0.43670639,3.99826E-003, 0000849P0000700 -0.532084595,0.437688763; 0000849P0000701 -110,3.99826E-003,0.532084595,0.437688763,3.99826E-003, 0000851P0000702 -0.626831251,0.456105647; 0000851P0000703 -110,3.99826E-003,0.626831251,0.456105647,3.99826E-003, 0000853P0000704 -0.627022205,0.455123274; 0000853P0000705 -144,857,1,0,859; 0000855P0000706 -128,1,1,1,1,0,0,1,0,0,-9.652E-002,-9.652E-002,7.636363001E-036, 0000857P0000707 -7.636363001E-036,-1.00076E-003,-1.00076E-003,6.505213035E-019, 0000857P0000708 -6.505213035E-019,1.,1.,1.,1.,4.99902E-003,0.627022205, 0000857P0000709 -0.455123274,4.99902E-003,0.532275549,0.43670639,3.99826E-003, 0000857P0000710 -0.627022205,0.455123274,3.99826E-003,0.532275549,0.43670639, 0000857P0000711 --9.652E-002,7.636363001E-036,-1.00076E-003,6.505213035E-019; 0000857P0000712 -142,0,857,861,871,3; 0000859P0000713 -102,4,863,865,867,869; 0000861P0000714 -110,-9.652E-002,-1.00076E-003,0.E+000,-1.203020487E-019, 0000863P0000715 --1.00076E-003,0.E+000; 0000863P0000716 -110,7.636363001E-036,-1.00076E-003,0.E+000,0.E+000,0.E+000, 0000865P0000717 -0.E+000; 0000865P0000718 -110,0.E+000,0.E+000,0.E+000,-9.652E-002,6.79762562E-034,0.E+000; 0000867P0000719 -110,-9.652E-002,6.505213035E-019,0.E+000,-9.652E-002, 0000869P0000720 --1.00076E-003,0.E+000; 0000869P0000721 -102,4,873,875,877,879; 0000871P0000722 -110,4.99902E-003,0.627022205,0.455123274,4.99902E-003, 0000873P0000723 -0.532275549,0.43670639; 0000873P0000724 -110,4.99902E-003,0.532275549,0.43670639,3.99826E-003, 0000875P0000725 -0.532275549,0.43670639; 0000875P0000726 -110,3.99826E-003,0.532275549,0.43670639,3.99826E-003, 0000877P0000727 -0.627022205,0.455123274; 0000877P0000728 -110,3.99826E-003,0.627022205,0.455123274,4.99902E-003, 0000879P0000729 -0.627022205,0.455123274; 0000879P0000730 -144,883,1,0,885; 0000881P0000731 -128,1,1,1,1,0,0,1,0,0,-2.168404345E-019,-2.168404345E-019, 0000883P0000732 -1.00076E-003,1.00076E-003,-1.301042607E-017,-1.301042607E-017, 0000883P0000733 -1.00076E-003,1.00076E-003,1.,1.,1.,1.,4.99902E-003,0.532275549, 0000883P0000734 -0.43670639,3.99826E-003,0.532275549,0.43670639,4.99902E-003, 0000883P0000735 -0.532084595,0.437688763,3.99826E-003,0.532084595,0.437688763, 0000883P0000736 --2.168404345E-019,1.00076E-003,-1.301042607E-017,1.00076E-003; 0000883P0000737 -142,0,883,887,897,3; 0000885P0000738 -102,4,889,891,893,895; 0000887P0000739 -110,1.00076E-003,1.00076E-003,0.E+000,-2.338434942E-020, 0000889P0000740 -1.00076E-003,0.E+000; 0000889P0000741 -110,-3.140887281E-036,1.00076E-003,0.E+000,0.E+000,0.E+000, 0000891P0000742 -0.E+000; 0000891P0000743 -110,-2.168404345E-019,2.338434942E-020,0.E+000,1.00076E-003, 0000893P0000744 -2.338434942E-020,0.E+000; 0000893P0000745 -110,1.00076E-003,-1.301042607E-017,0.E+000,1.00076E-003, 0000895P0000746 -1.00076E-003,0.E+000; 0000895P0000747 -102,4,899,901,903,905; 0000897P0000748 -110,3.99826E-003,0.532084595,0.437688763,4.99902E-003, 0000899P0000749 -0.532084595,0.437688763; 0000899P0000750 -110,4.99902E-003,0.532084595,0.437688763,4.99902E-003, 0000901P0000751 -0.532275549,0.43670639; 0000901P0000752 -110,4.99902E-003,0.532275549,0.43670639,3.99826E-003, 0000903P0000753 -0.532275549,0.43670639; 0000903P0000754 -110,3.99826E-003,0.532275549,0.43670639,3.99826E-003, 0000905P0000755 -0.532084595,0.437688763; 0000905P0000756 -144,909,1,1,911,937; 0000907P0000757 -128,1,1,1,1,0,0,1,0,0,1.057441924E-002,1.057441924E-002, 0000909P0000758 -1.789424521,1.789424521,3.974798032E-003,3.974798032E-003, 0000909P0000759 -0.531669516,0.531669516,1.,1.,1.,1.,0.894425341,0.664425501, 0000909P0000760 -0.2627,-0.884424761,0.664425501,0.2627,0.894425341,0.563736602, 0000909P0000761 -0.78069948,-0.884424761,0.563736602,0.78069948,1.057441924E-002, 0000909P0000762 -1.789424521,3.974798032E-003,0.531669516; 0000909P0000763 -142,0,909,913,925,3; 0000911P0000764 -102,5,915,917,919,921,923; 0000913P0000765 -110,1.05999788,0.531669516,0.E+000,0.111263318,0.531669516, 0000915P0000766 -0.E+000; 0000915P0000767 -110,0.111263318,0.531669516,0.E+000,1.057441924E-002, 0000917P0000768 -3.974798032E-003,0.E+000; 0000917P0000769 -110,1.057441924E-002,3.974798032E-003,0.E+000,1.789424521, 0000919P0000770 -3.974798032E-003,0.E+000; 0000919P0000771 -110,1.789424521,3.974798032E-003,0.E+000,1.688735622, 0000921P0000772 -0.531669516,0.E+000; 0000921P0000773 -110,1.688735622,0.531669516,0.E+000,1.05999788,0.531669516, 0000923P0000774 -0.E+000; 0000923P0000775 -102,5,927,929,931,933,935; 0000925P0000776 -110,-0.15499812,0.563736602,0.78069948,0.793736442,0.563736602, 0000927P0000777 -0.78069948; 0000927P0000778 -110,0.793736442,0.563736602,0.78069948,0.894425341,0.664425501, 0000929P0000779 -0.2627; 0000929P0000780 -110,0.894425341,0.664425501,0.2627,-0.884424761,0.664425501, 0000931P0000781 -0.2627; 0000931P0000782 -110,-0.884424761,0.664425501,0.2627,-0.783735862,0.563736602, 0000933P0000783 -0.78069948; 0000933P0000784 -110,-0.783735862,0.563736602,0.78069948,-0.15499812,0.563736602, 0000935P0000785 -0.78069948; 0000935P0000786 -142,0,909,939,949,3; 0000937P0000787 -102,4,941,943,945,947; 0000939P0000788 -110,0.9010015,0.20100036,0.E+000,0.9010015,0.1999996,0.E+000; 0000941P0000789 -110,0.9010015,0.1999996,0.E+000,0.90000074,0.1999996,0.E+000; 0000943P0000790 -110,0.90000074,0.1999996,0.E+000,0.90000074,0.20100036,0.E+000; 0000945P0000791 -110,0.90000074,0.20100036,0.E+000,0.9010015,0.20100036,0.E+000; 0000947P0000792 -102,4,951,953,955,957; 0000949P0000793 -110,3.99826E-003,0.626831251,0.456105647,3.99826E-003, 0000951P0000794 -0.627022205,0.455123274; 0000951P0000795 -110,3.99826E-003,0.627022205,0.455123274,4.99902E-003, 0000953P0000796 -0.627022205,0.455123274; 0000953P0000797 -110,4.99902E-003,0.627022205,0.455123274,4.99902E-003, 0000955P0000798 -0.626831251,0.456105647; 0000955P0000799 -110,4.99902E-003,0.626831251,0.456105647,3.99826E-003, 0000957P0000800 -0.626831251,0.456105647; 0000957P0000801 -144,961,1,0,963; 0000959P0000802 -128,1,1,1,1,0,0,1,0,0,-1.203020487E-019,-1.203020487E-019, 0000961P0000803 -9.652E-002,9.652E-002,0.E+000,0.E+000,1.00076E-003,1.00076E-003, 0000961P0000804 -1.,1.,1.,1.,4.99902E-003,0.532084595,0.437688763,4.99902E-003, 0000961P0000805 -0.626831251,0.456105647,3.99826E-003,0.532084595,0.437688763, 0000961P0000806 -3.99826E-003,0.626831251,0.456105647,-1.203020487E-019, 0000961P0000807 -9.652E-002,0.E+000,1.00076E-003; 0000961P0000808 -142,0,961,965,975,3; 0000963P0000809 -102,4,967,969,971,973; 0000965P0000810 -110,9.652E-002,1.00076E-003,0.E+000,-1.203020487E-019, 0000967P0000811 -1.00076E-003,0.E+000; 0000967P0000812 -110,7.636363001E-036,1.00076E-003,0.E+000,0.E+000,0.E+000, 0000969P0000813 -0.E+000; 0000969P0000814 -110,0.E+000,0.E+000,0.E+000,9.652E-002,6.79762562E-034,0.E+000; 0000971P0000815 -110,9.652E-002,3.270330692E-019,0.E+000,9.652E-002,1.00076E-003, 0000973P0000816 -0.E+000; 0000973P0000817 -102,4,977,979,981,983; 0000975P0000818 -110,3.99826E-003,0.626831251,0.456105647,3.99826E-003, 0000977P0000819 -0.532084595,0.437688763; 0000977P0000820 -110,3.99826E-003,0.532084595,0.437688763,4.99902E-003, 0000979P0000821 -0.532084595,0.437688763; 0000979P0000822 -110,4.99902E-003,0.532084595,0.437688763,4.99902E-003, 0000981P0000823 -0.626831251,0.456105647; 0000981P0000824 -110,4.99902E-003,0.626831251,0.456105647,3.99826E-003, 0000983P0000825 -0.626831251,0.456105647; 0000983P0000826 -144,987,1,0,989; 0000985P0000827 -128,1,1,1,1,0,0,1,0,0,-1.290200585E-017,-1.290200585E-017, 0000987P0000828 -9.652E-002,9.652E-002,-1.040834086E-017,-1.040834086E-017, 0000987P0000829 -1.00076E-003,1.00076E-003,1.,1.,1.,1.,4.99902E-003,0.532275549, 0000987P0000830 -0.43670639,4.99902E-003,0.627022205,0.455123274,4.99902E-003, 0000987P0000831 -0.532084595,0.437688763,4.99902E-003,0.626831251,0.456105647, 0000987P0000832 --1.290200585E-017,9.652E-002,-1.040834086E-017,1.00076E-003; 0000987P0000833 -142,0,987,991,1001,3; 0000989P0000834 -102,4,993,995,997,999; 0000991P0000835 -110,9.652E-002,1.00076E-003,0.E+000,-1.290200585E-017, 0000993P0000836 -1.00076E-003,0.E+000; 0000993P0000837 -110,0.E+000,1.00076E-003,0.E+000,0.E+000,0.E+000,0.E+000; 0000995P0000838 -110,0.E+000,0.E+000,0.E+000,9.652E-002,0.E+000,0.E+000; 0000997P0000839 -110,9.652E-002,-1.040834086E-017,0.E+000,9.652E-002, 0000999P0000840 -1.00076E-003,0.E+000; 0000999P0000841 -102,4,1003,1005,1007,1009; 0001001P0000842 -110,4.99902E-003,0.626831251,0.456105647,4.99902E-003, 0001003P0000843 -0.532084595,0.437688763; 0001003P0000844 -110,4.99902E-003,0.532084595,0.437688763,4.99902E-003, 0001005P0000845 -0.532275549,0.43670639; 0001005P0000846 -110,4.99902E-003,0.532275549,0.43670639,4.99902E-003, 0001007P0000847 -0.627022205,0.455123274; 0001007P0000848 -110,4.99902E-003,0.627022205,0.455123274,4.99902E-003, 0001009P0000849 -0.626831251,0.456105647; 0001009P0000850 -144,1013,1,0,1015; 0001011P0000851 -128,1,1,1,1,0,0,1,0,0,-0.948734562,-0.948734562, 0001013P0000852 -2.220446049E-016,2.220446049E-016,-1.133735462,-1.133735462, 0001013P0000853 --6.262258294E-003,-6.262258294E-003,1.,1.,1.,1.,0.793736442, 0001013P0000854 --0.563736602,0.78069948,-0.15499812,-0.563736602,0.78069948, 0001013P0000855 -0.793736442,0.563736602,0.78069948,-0.15499812,0.563736602, 0001013P0000856 -0.78069948,-0.948734562,2.220446049E-016,-1.133735462, 0001013P0000857 --6.262258294E-003; 0001013P0000858 -142,0,1013,1017,1027,3; 0001015P0000859 -102,4,1019,1021,1023,1025; 0001017P0000860 -110,0.E+000,-6.262258294E-003,0.E+000,-0.948734562, 0001019P0000861 --6.262258294E-003,0.E+000; 0001019P0000862 -110,-0.948734562,-6.262258294E-003,0.E+000,-0.948734562, 0001021P0000863 --1.133735462,0.E+000; 0001021P0000864 -110,-0.948734562,-1.133735462,-0.E+000,0.E+000,-1.133735462, 0001023P0000865 --0.E+000; 0001023P0000866 -110,2.220446049E-016,-1.133735462,0.E+000,2.220446049E-016, 0001025P0000867 --6.262258294E-003,0.E+000; 0001025P0000868 -102,4,1029,1031,1033,1035; 0001027P0000869 -110,-0.15499812,0.563736602,0.78069948,0.793736442,0.563736602, 0001029P0000870 -0.78069948; 0001029P0000871 -110,0.793736442,0.563736602,0.78069948,0.793736442,-0.563736602, 0001031P0000872 -0.78069948; 0001031P0000873 -110,0.793736442,-0.563736602,0.78069948,-0.15499812, 0001033P0000874 --0.563736602,0.78069948; 0001033P0000875 -110,-0.15499812,-0.563736602,0.78069948,-0.15499812,0.563736602, 0001035P0000876 -0.78069948; 0001035P0000877 -144,1039,1,0,1041; 0001037P0000878 -128,1,1,1,1,0,0,1,0,0,-0.63000128,-0.63000128,-1.263538294E-003, 0001039P0000879 --1.263538294E-003,-1.133735462,-1.133735462,-6.262258294E-003, 0001039P0000880 --6.262258294E-003,1.,1.,1.,1.,-0.15499812,-0.563736602, 0001039P0000881 -0.78069948,-0.783735862,-0.563736602,0.78069948,-0.15499812, 0001039P0000882 -0.563736602,0.78069948,-0.783735862,0.563736602,0.78069948, 0001039P0000883 --0.63000128,-1.263538294E-003,-1.133735462,-6.262258294E-003; 0001039P0000884 -142,0,1039,1043,1053,3; 0001041P0000885 -102,4,1045,1047,1049,1051; 0001043P0000886 -110,-0.63000128,-6.262258294E-003,0.E+000,-0.63000128, 0001045P0000887 --1.133735462,0.E+000; 0001045P0000888 -110,-0.63000128,-1.133735462,-0.E+000,-1.263538294E-003, 0001047P0000889 --1.133735462,-0.E+000; 0001047P0000890 -110,-1.263538294E-003,-1.133735462,0.E+000,-1.263538294E-003, 0001049P0000891 --6.262258294E-003,0.E+000; 0001049P0000892 -110,-1.263538294E-003,-6.262258294E-003,0.E+000,-0.63000128, 0001051P0000893 --6.262258294E-003,0.E+000; 0001051P0000894 -102,4,1055,1057,1059,1061; 0001053P0000895 -110,-0.15499812,0.563736602,0.78069948,-0.15499812,-0.563736602, 0001055P0000896 -0.78069948; 0001055P0000897 -110,-0.15499812,-0.563736602,0.78069948,-0.783735862, 0001057P0000898 --0.563736602,0.78069948; 0001057P0000899 -110,-0.783735862,-0.563736602,0.78069948,-0.783735862, 0001059P0000900 -0.563736602,0.78069948; 0001059P0000901 -110,-0.783735862,0.563736602,0.78069948,-0.15499812,0.563736602, 0001061P0000902 -0.78069948; 0001061P0000903 -144,1065,1,1,1067,1089; 0001063P0000904 -128,1,1,1,1,0,0,1,0,0,1.057441924E-002,1.057441924E-002, 0001065P0000905 -1.339425421,1.339425421,3.974798032E-003,3.974798032E-003, 0001065P0000906 -0.531669516,0.531669516,1.,1.,1.,1.,-0.884424761,0.664425501, 0001065P0000907 -0.2627,-0.884424761,-0.664425501,0.2627,-0.783735862, 0001065P0000908 -0.664425501,0.78069948,-0.783735862,-0.664425501,0.78069948, 0001065P0000909 -1.057441924E-002,1.339425421,3.974798032E-003,0.531669516; 0001065P0000910 -142,0,1065,1069,1079,3; 0001067P0000911 -102,4,1071,1073,1075,1077; 0001069P0000912 -110,1.057441924E-002,3.974798032E-003,0.E+000,1.339425421, 0001071P0000913 -3.974798032E-003,0.E+000; 0001071P0000914 -110,1.339425421,3.974798032E-003,0.E+000,1.238736522, 0001073P0000915 -0.531669516,0.E+000; 0001073P0000916 -110,1.238736522,0.531669516,0.E+000,0.111263318,0.531669516, 0001075P0000917 -0.E+000; 0001075P0000918 -110,0.111263318,0.531669516,0.E+000,1.057441924E-002, 0001077P0000919 -3.974798032E-003,0.E+000; 0001077P0000920 -102,4,1081,1083,1085,1087; 0001079P0000921 -110,-0.884424761,0.664425501,0.2627,-0.884424761,-0.664425501, 0001081P0000922 -0.2627; 0001081P0000923 -110,-0.884424761,-0.664425501,0.2627,-0.783735862,-0.563736602, 0001083P0000924 -0.78069948; 0001083P0000925 -110,-0.783735862,-0.563736602,0.78069948,-0.783735862, 0001085P0000926 -0.563736602,0.78069948; 0001085P0000927 -110,-0.783735862,0.563736602,0.78069948,-0.884424761, 0001087P0000928 -0.664425501,0.2627; 0001087P0000929 -142,0,1065,1091,1101,3; 0001089P0000930 -102,4,1093,1095,1097,1099; 0001091P0000931 -110,0.67600068,0.20100036,0.E+000,0.67600068,0.1999996,0.E+000; 0001093P0000932 -110,0.67600068,0.1999996,0.E+000,0.67499992,0.1999996,0.E+000; 0001095P0000933 -110,0.67499992,0.1999996,0.E+000,0.67499992,0.20100036,0.E+000; 0001097P0000934 -110,0.67499992,0.20100036,0.E+000,0.67600068,0.20100036,0.E+000; 0001099P0000935 -102,4,1103,1105,1107,1109; 0001101P0000936 -110,-0.846830511,-1.00076E-003,0.456105647,-0.847021465, 0001103P0000937 --1.00076E-003,0.455123274; 0001103P0000938 -110,-0.847021465,-1.00076E-003,0.455123274,-0.847021465, 0001105P0000939 -3.16191728E-018,0.455123274; 0001105P0000940 -110,-0.847021465,3.16191728E-018,0.455123274,-0.846830511, 0001107P0000941 -3.16191728E-018,0.456105647; 0001107P0000942 -110,-0.846830511,3.16191728E-018,0.456105647,-0.846830511, 0001109P0000943 --1.00076E-003,0.456105647; 0001109P0000944 -144,1113,1,0,1115; 0001111P0000945 -128,1,1,1,1,0,0,1,0,0,-1.789424521,-1.789424521, 0001113P0000946 --1.057441924E-002,-1.057441924E-002,-1.339425421,-1.339425421, 0001113P0000947 --1.057441924E-002,-1.057441924E-002,1.,1.,1.,1.,0.894425341, 0001113P0000948 --0.664425501,0.2627,-0.884424761,-0.664425501,0.2627, 0001113P0000949 -0.894425341,0.664425501,0.2627,-0.884424761,0.664425501,0.2627, 0001113P0000950 --1.789424521,-1.057441924E-002,-1.339425421,-1.057441924E-002; 0001113P0000951 -142,0,1113,1117,1127,3; 0001115P0000952 -102,4,1119,1121,1123,1125; 0001117P0000953 -110,-1.057441924E-002,-1.057441924E-002,0.E+000,-1.789424521, 0001119P0000954 --1.057441924E-002,0.E+000; 0001119P0000955 -110,-1.789424521,-1.057441924E-002,0.E+000,-1.789424521, 0001121P0000956 --1.339425421,0.E+000; 0001121P0000957 -110,-1.789424521,-1.339425421,0.E+000,-1.057441924E-002, 0001123P0000958 --1.339425421,0.E+000; 0001123P0000959 -110,-1.057441924E-002,-1.339425421,0.E+000,-1.057441924E-002, 0001125P0000960 --1.057441924E-002,0.E+000; 0001125P0000961 -102,4,1129,1131,1133,1135; 0001127P0000962 -110,-0.884424761,0.664425501,0.2627,0.894425341,0.664425501, 0001129P0000963 -0.2627; 0001129P0000964 -110,0.894425341,0.664425501,0.2627,0.894425341,-0.664425501, 0001131P0000965 -0.2627; 0001131P0000966 -110,0.894425341,-0.664425501,0.2627,-0.884424761,-0.664425501, 0001133P0000967 -0.2627; 0001133P0000968 -110,-0.884424761,-0.664425501,0.2627,-0.884424761,0.664425501, 0001135P0000969 -0.2627; 0001135P0000970 -144,1139,1,1,1141,1163; 0001137P0000971 -128,1,1,1,1,0,0,1,0,0,1.057441924E-002,1.057441924E-002, 0001139P0000972 -1.339425421,1.339425421,3.974798032E-003,3.974798032E-003, 0001139P0000973 -0.531669516,0.531669516,1.,1.,1.,1.,0.894425341,-0.664425501, 0001139P0000974 -0.2627,0.894425341,0.664425501,0.2627,0.793736442,-0.664425501, 0001139P0000975 -0.78069948,0.793736442,0.664425501,0.78069948,1.057441924E-002, 0001139P0000976 -1.339425421,3.974798032E-003,0.531669516; 0001139P0000977 -142,0,1139,1143,1153,3; 0001141P0000978 -102,4,1145,1147,1149,1151; 0001143P0000979 -110,1.057441924E-002,3.974798032E-003,0.E+000,1.339425421, 0001145P0000980 -3.974798032E-003,0.E+000; 0001145P0000981 -110,1.339425421,3.974798032E-003,0.E+000,1.238736522, 0001147P0000982 -0.531669516,0.E+000; 0001147P0000983 -110,1.238736522,0.531669516,0.E+000,0.111263318,0.531669516, 0001149P0000984 -0.E+000; 0001149P0000985 -110,0.111263318,0.531669516,0.E+000,1.057441924E-002, 0001151P0000986 -3.974798032E-003,0.E+000; 0001151P0000987 -102,4,1155,1157,1159,1161; 0001153P0000988 -110,0.894425341,-0.664425501,0.2627,0.894425341,0.664425501, 0001155P0000989 -0.2627; 0001155P0000990 -110,0.894425341,0.664425501,0.2627,0.793736442,0.563736602, 0001157P0000991 -0.78069948; 0001157P0000992 -110,0.793736442,0.563736602,0.78069948,0.793736442,-0.563736602, 0001159P0000993 -0.78069948; 0001159P0000994 -110,0.793736442,-0.563736602,0.78069948,0.894425341, 0001161P0000995 --0.664425501,0.2627; 0001161P0000996 -142,0,1139,1165,1175,3; 0001163P0000997 -102,4,1167,1169,1171,1173; 0001165P0000998 -110,0.67600068,0.20100036,0.E+000,0.67600068,0.1999996,0.E+000; 0001167P0000999 -110,0.67600068,0.1999996,0.E+000,0.67499992,0.1999996,0.E+000; 0001169P0001000 -110,0.67499992,0.1999996,0.E+000,0.67499992,0.20100036,0.E+000; 0001171P0001001 -110,0.67499992,0.20100036,0.E+000,0.67600068,0.20100036,0.E+000; 0001173P0001002 -102,4,1177,1179,1181,1183; 0001175P0001003 -110,0.856831091,1.00076E-003,0.456105647,0.857022045, 0001177P0001004 -1.00076E-003,0.455123274; 0001177P0001005 -110,0.857022045,1.00076E-003,0.455123274,0.857022045, 0001179P0001006 --6.938894957E-018,0.455123274; 0001179P0001007 -110,0.857022045,-6.938894957E-018,0.455123274,0.856831091, 0001181P0001008 --6.938894957E-018,0.456105647; 0001181P0001009 -110,0.856831091,-6.938894957E-018,0.456105647,0.856831091, 0001183P0001010 -1.00076E-003,0.456105647; 0001183P0001011 -144,1187,1,1,1189,1215; 0001185P0001012 -128,1,1,1,1,0,0,1,0,0,1.057441924E-002,1.057441924E-002, 0001187P0001013 -1.789424521,1.789424521,3.974798032E-003,3.974798032E-003, 0001187P0001014 -0.531669516,0.531669516,1.,1.,1.,1.,-0.884424761,-0.664425501, 0001187P0001015 -0.2627,0.894425341,-0.664425501,0.2627,-0.884424761, 0001187P0001016 --0.563736602,0.78069948,0.894425341,-0.563736602,0.78069948, 0001187P0001017 -1.057441924E-002,1.789424521,3.974798032E-003,0.531669516; 0001187P0001018 -142,0,1187,1191,1203,3; 0001189P0001019 -102,5,1193,1195,1197,1199,1201; 0001191P0001020 -110,1.057441924E-002,3.974798032E-003,0.E+000,1.789424521, 0001193P0001021 -3.974798032E-003,0.E+000; 0001193P0001022 -110,1.789424521,3.974798032E-003,0.E+000,1.688735622, 0001195P0001023 -0.531669516,0.E+000; 0001195P0001024 -110,1.688735622,0.531669516,0.E+000,0.74000106,0.531669516, 0001197P0001025 -0.E+000; 0001197P0001026 -110,0.74000106,0.531669516,0.E+000,0.111263318,0.531669516, 0001199P0001027 -0.E+000; 0001199P0001028 -110,0.111263318,0.531669516,0.E+000,1.057441924E-002, 0001201P0001029 -3.974798032E-003,0.E+000; 0001201P0001030 -102,5,1205,1207,1209,1211,1213; 0001203P0001031 -110,-0.884424761,-0.664425501,0.2627,0.894425341,-0.664425501, 0001205P0001032 -0.2627; 0001205P0001033 -110,0.894425341,-0.664425501,0.2627,0.793736442,-0.563736602, 0001207P0001034 -0.78069948; 0001207P0001035 -110,0.793736442,-0.563736602,0.78069948,-0.15499812, 0001209P0001036 --0.563736602,0.78069948; 0001209P0001037 -110,-0.15499812,-0.563736602,0.78069948,-0.783735862, 0001211P0001038 --0.563736602,0.78069948; 0001211P0001039 -110,-0.783735862,-0.563736602,0.78069948,-0.884424761, 0001213P0001040 --0.664425501,0.2627; 0001213P0001041 -142,0,1187,1217,1227,3; 0001215P0001042 -102,4,1219,1221,1223,1225; 0001217P0001043 -110,0.9010015,0.20100036,0.E+000,0.9010015,0.1999996,0.E+000; 0001219P0001044 -110,0.9010015,0.1999996,0.E+000,0.90000074,0.1999996,0.E+000; 0001221P0001045 -110,0.90000074,0.1999996,0.E+000,0.90000074,0.20100036,0.E+000; 0001223P0001046 -110,0.90000074,0.20100036,0.E+000,0.9010015,0.20100036,0.E+000; 0001225P0001047 -102,4,1229,1231,1233,1235; 0001227P0001048 -110,6.00232E-003,-0.626831251,0.456105647,6.00232E-003, 0001229P0001049 --0.627022205,0.455123274; 0001229P0001050 -110,6.00232E-003,-0.627022205,0.455123274,5.00156E-003, 0001231P0001051 --0.627022205,0.455123274; 0001231P0001052 -110,5.00156E-003,-0.627022205,0.455123274,5.00156E-003, 0001233P0001053 --0.626831251,0.456105647; 0001233P0001054 -110,5.00156E-003,-0.626831251,0.456105647,6.00232E-003, 0001235P0001055 --0.626831251,0.456105647; 0001235P0001056 -144,1239,1,0,1241; 0001237P0001057 -128,1,1,1,1,0,0,1,0,0,-9.652E-002,-9.652E-002,0.E+000,0.E+000, 0001239P0001058 --1.00076E-003,-1.00076E-003,5.421010862E-018,5.421010862E-018, 0001239P0001059 -1.,1.,1.,1.,-0.847021465,-1.00076E-003,0.455123274,-0.752274809, 0001239P0001060 --1.00076E-003,0.43670639,-0.846830511,-1.00076E-003,0.456105647, 0001239P0001061 --0.752083855,-1.00076E-003,0.437688763,-9.652E-002,0.E+000, 0001239P0001062 --1.00076E-003,5.421010862E-018; 0001239P0001063 -142,0,1239,1243,1253,3; 0001241P0001064 -102,4,1245,1247,1249,1251; 0001243P0001065 -110,-9.652E-002,-1.00076E-003,0.E+000,-1.301042607E-017, 0001245P0001066 --1.00076E-003,0.E+000; 0001245P0001067 -110,-5.555333971E-020,-1.00076E-003,0.E+000,0.E+000,0.E+000, 0001247P0001068 -0.E+000; 0001247P0001069 -110,0.E+000,0.E+000,0.E+000,-9.652E-002,-5.357936317E-018, 0001249P0001070 -0.E+000; 0001249P0001071 -110,-9.652E-002,5.421010862E-018,0.E+000,-9.652E-002, 0001251P0001072 --1.00076E-003,0.E+000; 0001251P0001073 -102,4,1255,1257,1259,1261; 0001253P0001074 -110,-0.847021465,-1.00076E-003,0.455123274,-0.752274809, 0001255P0001075 --1.00076E-003,0.43670639; 0001255P0001076 -110,-0.752274809,-1.00076E-003,0.43670639,-0.752083855, 0001257P0001077 --1.00076E-003,0.437688763; 0001257P0001078 -110,-0.752083855,-1.00076E-003,0.437688763,-0.846830511, 0001259P0001079 --1.00076E-003,0.456105647; 0001259P0001080 -110,-0.846830511,-1.00076E-003,0.456105647,-0.847021465, 0001261P0001081 --1.00076E-003,0.455123274; 0001261P0001082 -144,1265,1,0,1267; 0001263P0001083 -128,1,1,1,1,0,0,1,0,0,-9.652E-002,-9.652E-002,6.517391662E-021, 0001265P0001084 -6.517391662E-021,-1.00076E-003,-1.00076E-003,6.505213035E-019, 0001265P0001085 -6.505213035E-019,1.,1.,1.,1.,-0.847021465,3.252606517E-018, 0001265P0001086 -0.455123274,-0.752274809,-1.82145965E-017,0.43670639, 0001265P0001087 --0.847021465,-1.00076E-003,0.455123274,-0.752274809, 0001265P0001088 --1.00076E-003,0.43670639,-9.652E-002,6.517391662E-021, 0001265P0001089 --1.00076E-003,6.505213035E-019; 0001265P0001090 -142,0,1265,1269,1279,3; 0001267P0001091 -102,4,1271,1273,1275,1277; 0001269P0001092 -110,-9.652E-002,-1.00076E-003,0.E+000,-2.222133588E-019, 0001271P0001093 --1.00076E-003,0.E+000; 0001271P0001094 -110,6.517391662E-021,-1.00076E-003,0.E+000,0.E+000,0.E+000, 0001273P0001095 -0.E+000; 0001273P0001096 -110,0.E+000,0.E+000,0.E+000,-9.652E-002,6.285809217E-019, 0001275P0001097 -0.E+000; 0001275P0001098 -110,-9.652E-002,6.505213035E-019,0.E+000,-9.652E-002, 0001277P0001099 --1.00076E-003,0.E+000; 0001277P0001100 -102,4,1281,1283,1285,1287; 0001279P0001101 -110,-0.847021465,3.16191728E-018,0.455123274,-0.752274809, 0001281P0001102 --1.826982799E-017,0.43670639; 0001281P0001103 -110,-0.752274809,-1.82145965E-017,0.43670639,-0.752274809, 0001283P0001104 --1.00076E-003,0.43670639; 0001283P0001105 -110,-0.752274809,-1.00076E-003,0.43670639,-0.847021465, 0001285P0001106 --1.00076E-003,0.455123274; 0001285P0001107 -110,-0.847021465,-1.00076E-003,0.455123274,-0.847021465, 0001287P0001108 -3.16191728E-018,0.455123274; 0001287P0001109 -144,1291,1,0,1293; 0001289P0001110 -128,1,1,1,1,0,0,1,0,0,-2.222133588E-019,-2.222133588E-019, 0001291P0001111 -9.652E-002,9.652E-002,0.E+000,0.E+000,1.00076E-003,1.00076E-003, 0001291P0001112 -1.,1.,1.,1.,-0.752083855,-1.826982799E-017,0.437688763, 0001291P0001113 --0.846830511,3.16191728E-018,0.456105647,-0.752083855, 0001291P0001114 --1.00076E-003,0.437688763,-0.846830511,-1.00076E-003, 0001291P0001115 -0.456105647,-2.222133588E-019,9.652E-002,0.E+000,1.00076E-003; 0001291P0001116 -142,0,1291,1295,1305,3; 0001293P0001117 -102,4,1297,1299,1301,1303; 0001295P0001118 -110,9.652E-002,1.00076E-003,0.E+000,-2.222133588E-019, 0001297P0001119 -1.00076E-003,0.E+000; 0001297P0001120 -110,6.517391662E-021,1.00076E-003,0.E+000,0.E+000,0.E+000, 0001299P0001121 -0.E+000; 0001299P0001122 -110,0.E+000,0.E+000,0.E+000,9.652E-002,6.285809217E-019,0.E+000; 0001301P0001123 -110,9.652E-002,6.285809217E-019,0.E+000,9.652E-002,1.00076E-003, 0001303P0001124 -0.E+000; 0001303P0001125 -102,4,1307,1309,1311,1313; 0001305P0001126 -110,-0.846830511,-1.00076E-003,0.456105647,-0.752083855, 0001307P0001127 --1.00076E-003,0.437688763; 0001307P0001128 -110,-0.752083855,-1.00076E-003,0.437688763,-0.752083855, 0001309P0001129 --1.826982799E-017,0.437688763; 0001309P0001130 -110,-0.752083855,-1.826982799E-017,0.437688763,-0.846830511, 0001311P0001131 -3.16191728E-018,0.456105647; 0001311P0001132 -110,-0.846830511,3.16191728E-018,0.456105647,-0.846830511, 0001313P0001133 --1.00076E-003,0.456105647; 0001313P0001134 -144,1317,1,0,1319; 0001315P0001135 -128,1,1,1,1,0,0,1,0,0,-1.301042607E-017,-1.301042607E-017, 0001317P0001136 -9.652E-002,9.652E-002,-5.357936317E-018,-5.357936317E-018, 0001317P0001137 -1.00076E-003,1.00076E-003,1.,1.,1.,1.,-0.752274809, 0001317P0001138 --1.826982799E-017,0.43670639,-0.847021465,3.16191728E-018, 0001317P0001139 -0.455123274,-0.752083855,-1.826982799E-017,0.437688763, 0001317P0001140 --0.846830511,3.16191728E-018,0.456105647,-1.301042607E-017, 0001317P0001141 -9.652E-002,-5.357936317E-018,1.00076E-003; 0001317P0001142 -142,0,1317,1321,1331,3; 0001319P0001143 -102,4,1323,1325,1327,1329; 0001321P0001144 -110,9.652E-002,1.00076E-003,0.E+000,-1.301042607E-017, 0001323P0001145 -1.00076E-003,0.E+000; 0001323P0001146 -110,-5.555333971E-020,1.00076E-003,0.E+000,0.E+000,0.E+000, 0001325P0001147 -0.E+000; 0001325P0001148 -110,0.E+000,0.E+000,0.E+000,9.652E-002,-5.357936317E-018, 0001327P0001149 -0.E+000; 0001327P0001150 -110,9.652E-002,-3.469446952E-018,0.E+000,9.652E-002, 0001329P0001151 -1.00076E-003,0.E+000; 0001329P0001152 -102,4,1333,1335,1337,1339; 0001331P0001153 -110,-0.846830511,3.16191728E-018,0.456105647,-0.752083855, 0001333P0001154 --1.826982799E-017,0.437688763; 0001333P0001155 -110,-0.752083855,-1.826982799E-017,0.437688763,-0.752274809, 0001335P0001156 --1.826982799E-017,0.43670639; 0001335P0001157 -110,-0.752274809,-1.826982799E-017,0.43670639,-0.847021465, 0001337P0001158 -3.16191728E-018,0.455123274; 0001337P0001159 -110,-0.847021465,3.16191728E-018,0.455123274,-0.846830511, 0001339P0001160 -3.16191728E-018,0.456105647; 0001339P0001161 -144,1343,1,0,1345; 0001341P0001162 -128,1,1,1,1,0,0,1,0,0,-9.652E-002,-9.652E-002,0.E+000,0.E+000, 0001343P0001163 --1.00076E-003,-1.00076E-003,1.235990477E-017,1.235990477E-017, 0001343P0001164 -1.,1.,1.,1.,0.857022045,1.00076E-003,0.455123274,0.762275389, 0001343P0001165 -1.00076E-003,0.43670639,0.856831091,1.00076E-003,0.456105647, 0001343P0001166 -0.762084435,1.00076E-003,0.437688763,-9.652E-002,0.E+000, 0001343P0001167 --1.00076E-003,1.235990477E-017; 0001343P0001168 -142,0,1343,1347,1357,3; 0001345P0001169 -102,4,1349,1351,1353,1355; 0001347P0001170 -110,-9.652E-002,-1.00076E-003,0.E+000,-1.314595134E-017, 0001349P0001171 --1.00076E-003,0.E+000; 0001349P0001172 -110,-1.388833493E-019,-1.00076E-003,0.E+000,0.E+000,0.E+000, 0001351P0001173 -0.E+000; 0001351P0001174 -110,0.E+000,0.E+000,0.E+000,-9.652E-002,-1.339484079E-017, 0001353P0001175 -0.E+000; 0001353P0001176 -110,-9.652E-002,1.235990477E-017,0.E+000,-9.652E-002, 0001355P0001177 --1.00076E-003,0.E+000; 0001355P0001178 -102,4,1359,1361,1363,1365; 0001357P0001179 -110,0.857022045,1.00076E-003,0.455123274,0.762275389, 0001359P0001180 -1.00076E-003,0.43670639; 0001359P0001181 -110,0.762275389,1.00076E-003,0.43670639,0.762084435, 0001361P0001182 -1.00076E-003,0.437688763; 0001361P0001183 -110,0.762084435,1.00076E-003,0.437688763,0.856831091, 0001363P0001184 -1.00076E-003,0.456105647; 0001363P0001185 -110,0.856831091,1.00076E-003,0.456105647,0.857022045, 0001365P0001186 -1.00076E-003,0.455123274; 0001365P0001187 -144,1369,1,0,1371; 0001367P0001188 -128,1,1,1,1,0,0,1,0,0,-9.652E-002,-9.652E-002,0.E+000,0.E+000, 0001369P0001189 --1.00076E-003,-1.00076E-003,0.E+000,0.E+000,1.,1.,1.,1., 0001369P0001190 -0.857022045,-2.298508606E-017,0.455123274,0.762275389, 0001369P0001191 --6.938893904E-018,0.43670639,0.857022045,1.00076E-003, 0001369P0001192 -0.455123274,0.762275389,1.00076E-003,0.43670639,-9.652E-002, 0001369P0001193 -0.E+000,-1.00076E-003,0.E+000; 0001369P0001194 -142,0,1369,1373,1383,3; 0001371P0001195 -102,4,1375,1377,1379,1381; 0001373P0001196 -110,-9.652E-002,-1.00076E-003,0.E+000,-1.666600191E-019, 0001375P0001197 --1.00076E-003,0.E+000; 0001375P0001198 -110,-1.666600191E-019,-1.00076E-003,0.E+000,0.E+000,0.E+000, 0001377P0001199 -0.E+000; 0001377P0001200 -110,0.E+000,0.E+000,0.E+000,-9.652E-002,-1.607380895E-017, 0001379P0001201 -0.E+000; 0001379P0001202 -110,-9.652E-002,-1.604619215E-017,0.E+000,-9.652E-002, 0001381P0001203 --1.00076E-003,0.E+000; 0001381P0001204 -102,4,1385,1387,1389,1391; 0001383P0001205 -110,0.857022045,-6.938894957E-018,0.455123274,0.762275389, 0001385P0001206 -9.134913994E-018,0.43670639; 0001385P0001207 -110,0.762275389,9.107298249E-018,0.43670639,0.762275389, 0001387P0001208 -1.00076E-003,0.43670639; 0001387P0001209 -110,0.762275389,1.00076E-003,0.43670639,0.857022045, 0001389P0001210 -1.00076E-003,0.455123274; 0001389P0001211 -110,0.857022045,1.00076E-003,0.455123274,0.857022045, 0001391P0001212 --6.938894957E-018,0.455123274; 0001391P0001213 -144,1395,1,0,1397; 0001393P0001214 -128,1,1,1,1,0,0,1,0,0,-1.666600191E-019,-1.666600191E-019, 0001395P0001215 -9.652E-002,9.652E-002,-1.607380895E-017,-1.607380895E-017, 0001395P0001216 -1.00076E-003,1.00076E-003,1.,1.,1.,1.,0.762084435, 0001395P0001217 --6.938894957E-018,0.437688763,0.856831091,-2.301270391E-017, 0001395P0001218 -0.456105647,0.762084435,1.00076E-003,0.437688763,0.856831091, 0001395P0001219 -1.00076E-003,0.456105647,-1.666600191E-019,9.652E-002, 0001395P0001220 --1.607380895E-017,1.00076E-003; 0001395P0001221 -142,0,1395,1399,1409,3; 0001397P0001222 -102,4,1401,1403,1405,1407; 0001399P0001223 -110,9.652E-002,1.00076E-003,0.E+000,-1.666600191E-019, 0001401P0001224 -1.00076E-003,0.E+000; 0001401P0001225 -110,-1.666600191E-019,1.00076E-003,0.E+000,0.E+000,0.E+000, 0001403P0001226 -0.E+000; 0001403P0001227 -110,0.E+000,0.E+000,0.E+000,9.652E-002,-1.607380895E-017, 0001405P0001228 -0.E+000; 0001405P0001229 -110,9.652E-002,-1.607380895E-017,0.E+000,9.652E-002, 0001407P0001230 -1.00076E-003,0.E+000; 0001407P0001231 -102,4,1411,1413,1415,1417; 0001409P0001232 -110,0.856831091,1.00076E-003,0.456105647,0.762084435, 0001411P0001233 -1.00076E-003,0.437688763; 0001411P0001234 -110,0.762084435,1.00076E-003,0.437688763,0.762084435, 0001413P0001235 -9.134913994E-018,0.437688763; 0001413P0001236 -110,0.762084435,9.134913994E-018,0.437688763,0.856831091, 0001415P0001237 --6.938894957E-018,0.456105647; 0001415P0001238 -110,0.856831091,-6.938894957E-018,0.456105647,0.856831091, 0001417P0001239 -1.00076E-003,0.456105647; 0001417P0001240 -144,1421,1,0,1423; 0001419P0001241 -128,1,1,1,1,0,0,1,0,0,-1.314595134E-017,-1.314595134E-017, 0001421P0001242 -9.652E-002,9.652E-002,-1.339484079E-017,-1.339484079E-017, 0001421P0001243 -1.00076E-003,1.00076E-003,1.,1.,1.,1.,0.762275389, 0001421P0001244 -9.134913994E-018,0.43670639,0.857022045,-6.938894957E-018, 0001421P0001245 -0.455123274,0.762084435,9.134913994E-018,0.437688763, 0001421P0001246 -0.856831091,-6.938894957E-018,0.456105647,-1.314595134E-017, 0001421P0001247 -9.652E-002,-1.339484079E-017,1.00076E-003; 0001421P0001248 -142,0,1421,1425,1435,3; 0001423P0001249 -102,4,1427,1429,1431,1433; 0001425P0001250 -110,9.652E-002,1.00076E-003,0.E+000,-1.314595134E-017, 0001427P0001251 -1.00076E-003,0.E+000; 0001427P0001252 -110,-1.388833493E-019,1.00076E-003,0.E+000,0.E+000,0.E+000, 0001429P0001253 -0.E+000; 0001429P0001254 -110,0.E+000,0.E+000,0.E+000,9.652E-002,-1.339484079E-017, 0001431P0001255 -0.E+000; 0001431P0001256 -110,9.652E-002,0.E+000,0.E+000,9.652E-002,1.00076E-003,0.E+000; 0001433P0001257 -102,4,1437,1439,1441,1443; 0001435P0001258 -110,0.856831091,-6.938894957E-018,0.456105647,0.762084435, 0001437P0001259 -9.134913994E-018,0.437688763; 0001437P0001260 -110,0.762084435,9.134913994E-018,0.437688763,0.762275389, 0001439P0001261 -9.134913994E-018,0.43670639; 0001439P0001262 -110,0.762275389,9.134913994E-018,0.43670639,0.857022045, 0001441P0001263 --6.938894957E-018,0.455123274; 0001441P0001264 -110,0.857022045,-6.938894957E-018,0.455123274,0.856831091, 0001443P0001265 --6.938894957E-018,0.456105647; 0001443P0001266 -144,1447,1,0,1449; 0001445P0001267 -128,1,1,1,1,0,0,1,0,0,-9.652E-002,-9.652E-002,0.E+000,0.E+000, 0001447P0001268 --1.00076E-003,-1.00076E-003,5.421010862E-018,5.421010862E-018, 0001447P0001269 -1.,1.,1.,1.,6.00232E-003,-0.627022205,0.455123274,6.00232E-003, 0001447P0001270 --0.532275549,0.43670639,6.00232E-003,-0.626831251,0.456105647, 0001447P0001271 -6.00232E-003,-0.532084595,0.437688763,-9.652E-002,0.E+000, 0001447P0001272 --1.00076E-003,5.421010862E-018; 0001447P0001273 -142,0,1447,1451,1461,3; 0001449P0001274 -102,4,1453,1455,1457,1459; 0001451P0001275 -110,-9.652E-002,-1.00076E-003,0.E+000,-1.290200585E-017, 0001453P0001276 --1.00076E-003,0.E+000; 0001453P0001277 -110,0.E+000,-1.00076E-003,0.E+000,0.E+000,0.E+000,0.E+000; 0001455P0001278 -110,0.E+000,0.E+000,0.E+000,-9.652E-002,0.E+000,0.E+000; 0001457P0001279 -110,-9.652E-002,5.421010862E-018,0.E+000,-9.652E-002, 0001459P0001280 --1.00076E-003,0.E+000; 0001459P0001281 -102,4,1463,1465,1467,1469; 0001461P0001282 -110,6.00232E-003,-0.627022205,0.455123274,6.00232E-003, 0001463P0001283 --0.532275549,0.43670639; 0001463P0001284 -110,6.00232E-003,-0.532275549,0.43670639,6.00232E-003, 0001465P0001285 --0.532084595,0.437688763; 0001465P0001286 -110,6.00232E-003,-0.532084595,0.437688763,6.00232E-003, 0001467P0001287 --0.626831251,0.456105647; 0001467P0001288 -110,6.00232E-003,-0.626831251,0.456105647,6.00232E-003, 0001469P0001289 --0.627022205,0.455123274; 0001469P0001290 -144,1473,1,0,1475; 0001471P0001291 -128,1,1,1,1,0,0,1,0,0,-9.652E-002,-9.652E-002,1.883056392E-051, 0001473P0001292 -1.883056392E-051,-1.00076E-003,-1.00076E-003,2.168404345E-019, 0001473P0001293 -2.168404345E-019,1.,1.,1.,1.,5.00156E-003,-0.627022205, 0001473P0001294 -0.455123274,5.00156E-003,-0.532275549,0.43670639,6.00232E-003, 0001473P0001295 --0.627022205,0.455123274,6.00232E-003,-0.532275549,0.43670639, 0001473P0001296 --9.652E-002,1.883056392E-051,-1.00076E-003,2.168404345E-019; 0001473P0001297 -142,0,1473,1477,1487,3; 0001475P0001298 -102,4,1479,1481,1483,1485; 0001477P0001299 -110,-9.652E-002,-1.00076E-003,0.E+000,-1.62218674E-035, 0001479P0001300 --1.00076E-003,0.E+000; 0001479P0001301 -110,1.883056392E-051,-1.00076E-003,0.E+000,0.E+000,0.E+000, 0001481P0001302 -0.E+000; 0001481P0001303 -110,0.E+000,0.E+000,0.E+000,-9.652E-002,1.816145759E-049, 0001483P0001304 -0.E+000; 0001483P0001305 -110,-9.652E-002,2.168404345E-019,0.E+000,-9.652E-002, 0001485P0001306 --1.00076E-003,0.E+000; 0001485P0001307 -102,4,1489,1491,1493,1495; 0001487P0001308 -110,5.00156E-003,-0.627022205,0.455123274,5.00156E-003, 0001489P0001309 --0.532275549,0.43670639; 0001489P0001310 -110,5.00156E-003,-0.532275549,0.43670639,6.00232E-003, 0001491P0001311 --0.532275549,0.43670639; 0001491P0001312 -110,6.00232E-003,-0.532275549,0.43670639,6.00232E-003, 0001493P0001313 --0.627022205,0.455123274; 0001493P0001314 -110,6.00232E-003,-0.627022205,0.455123274,5.00156E-003, 0001495P0001315 --0.627022205,0.455123274; 0001495P0001316 -144,1499,1,0,1501; 0001497P0001317 -128,1,1,1,1,0,0,1,0,0,-1.62218674E-035,-1.62218674E-035, 0001499P0001318 -9.652E-002,9.652E-002,0.E+000,0.E+000,1.00076E-003,1.00076E-003, 0001499P0001319 -1.,1.,1.,1.,5.00156E-003,-0.532084595,0.437688763,5.00156E-003, 0001499P0001320 --0.626831251,0.456105647,6.00232E-003,-0.532084595,0.437688763, 0001499P0001321 -6.00232E-003,-0.626831251,0.456105647,-1.62218674E-035, 0001499P0001322 -9.652E-002,0.E+000,1.00076E-003; 0001499P0001323 -142,0,1499,1503,1513,3; 0001501P0001324 -102,4,1505,1507,1509,1511; 0001503P0001325 -110,9.652E-002,1.00076E-003,0.E+000,-1.62218674E-035, 0001505P0001326 -1.00076E-003,0.E+000; 0001505P0001327 -110,1.883056392E-051,1.00076E-003,0.E+000,0.E+000,0.E+000, 0001507P0001328 -0.E+000; 0001507P0001329 -110,0.E+000,0.E+000,0.E+000,9.652E-002,1.816145759E-049,0.E+000; 0001509P0001330 -110,9.652E-002,1.564545586E-033,0.E+000,9.652E-002,1.00076E-003, 0001511P0001331 -0.E+000; 0001511P0001332 -102,4,1515,1517,1519,1521; 0001513P0001333 -110,6.00232E-003,-0.626831251,0.456105647,6.00232E-003, 0001515P0001334 --0.532084595,0.437688763; 0001515P0001335 -110,6.00232E-003,-0.532084595,0.437688763,5.00156E-003, 0001517P0001336 --0.532084595,0.437688763; 0001517P0001337 -110,5.00156E-003,-0.532084595,0.437688763,5.00156E-003, 0001519P0001338 --0.626831251,0.456105647; 0001519P0001339 -110,5.00156E-003,-0.626831251,0.456105647,6.00232E-003, 0001521P0001340 --0.626831251,0.456105647; 0001521P0001341 -144,1525,1,0,1527; 0001523P0001342 -128,1,1,1,1,0,0,1,0,0,-1.290200585E-017,-1.290200585E-017, 0001525P0001343 -9.652E-002,9.652E-002,-1.040834086E-017,-1.040834086E-017, 0001525P0001344 -1.00076E-003,1.00076E-003,1.,1.,1.,1.,5.00156E-003,-0.532275549, 0001525P0001345 -0.43670639,5.00156E-003,-0.627022205,0.455123274,5.00156E-003, 0001525P0001346 --0.532084595,0.437688763,5.00156E-003,-0.626831251,0.456105647, 0001525P0001347 --1.290200585E-017,9.652E-002,-1.040834086E-017,1.00076E-003; 0001525P0001348 -142,0,1525,1529,1539,3; 0001527P0001349 -102,4,1531,1533,1535,1537; 0001529P0001350 -110,9.652E-002,1.00076E-003,0.E+000,-1.290200585E-017, 0001531P0001351 -1.00076E-003,0.E+000; 0001531P0001352 -110,0.E+000,1.00076E-003,0.E+000,0.E+000,0.E+000,0.E+000; 0001533P0001353 -110,0.E+000,0.E+000,0.E+000,9.652E-002,0.E+000,0.E+000; 0001535P0001354 -110,9.652E-002,-1.040834086E-017,0.E+000,9.652E-002, 0001537P0001355 -1.00076E-003,0.E+000; 0001537P0001356 -102,4,1541,1543,1545,1547; 0001539P0001357 -110,5.00156E-003,-0.626831251,0.456105647,5.00156E-003, 0001541P0001358 --0.532084595,0.437688763; 0001541P0001359 -110,5.00156E-003,-0.532084595,0.437688763,5.00156E-003, 0001543P0001360 --0.532275549,0.43670639; 0001543P0001361 -110,5.00156E-003,-0.532275549,0.43670639,5.00156E-003, 0001545P0001362 --0.627022205,0.455123274; 0001545P0001363 -110,5.00156E-003,-0.627022205,0.455123274,5.00156E-003, 0001547P0001364 --0.626831251,0.456105647; 0001547P0001365 -144,1551,1,0,1553; 0001549P0001366 -128,1,1,1,1,0,0,1,0,0,0.E+000,0.E+000,1.00076E-003,1.00076E-003, 0001551P0001367 --1.301042607E-017,-1.301042607E-017,1.00076E-003,1.00076E-003, 0001551P0001368 -1.,1.,1.,1.,-0.752274809,-1.826982799E-017,0.43670639, 0001551P0001369 --0.752274809,-1.00076E-003,0.43670639,-0.752083855, 0001551P0001370 --1.826982799E-017,0.437688763,-0.752083855,-1.00076E-003, 0001551P0001371 -0.437688763,0.E+000,1.00076E-003,-1.301042607E-017,1.00076E-003; 0001551P0001372 -142,0,1551,1555,1565,3; 0001553P0001373 -102,4,1557,1559,1561,1563; 0001555P0001374 -110,1.00076E-003,1.00076E-003,0.E+000,1.213236063E-020, 0001557P0001375 -1.00076E-003,0.E+000; 0001557P0001376 -110,1.213236063E-020,1.00076E-003,0.E+000,0.E+000,0.E+000, 0001559P0001377 -0.E+000; 0001559P0001378 -110,0.E+000,-1.213236063E-020,0.E+000,1.00076E-003,0.E+000, 0001561P0001379 -0.E+000; 0001561P0001380 -110,1.00076E-003,-1.301042607E-017,0.E+000,1.00076E-003, 0001563P0001381 -1.00076E-003,0.E+000; 0001563P0001382 -102,4,1567,1569,1571,1573; 0001565P0001383 -110,-0.752083855,-1.00076E-003,0.437688763,-0.752083855, 0001567P0001384 --1.826982799E-017,0.437688763; 0001567P0001385 -110,-0.752083855,-1.826982799E-017,0.437688763,-0.752274809, 0001569P0001386 --1.826982799E-017,0.43670639; 0001569P0001387 -110,-0.752274809,-1.82145965E-017,0.43670639,-0.752274809, 0001571P0001388 --1.00076E-003,0.43670639; 0001571P0001389 -110,-0.752274809,-1.00076E-003,0.43670639,-0.752083855, 0001573P0001390 --1.00076E-003,0.437688763; 0001573P0001391 -144,1577,1,0,1579; 0001575P0001392 -128,1,1,1,1,0,0,1,0,0,-1.540743956E-033,-1.540743956E-033, 0001577P0001393 -1.00076E-003,1.00076E-003,-1.301042607E-017,-1.301042607E-017, 0001577P0001394 -1.00076E-003,1.00076E-003,1.,1.,1.,1.,0.762275389, 0001577P0001395 -9.134913994E-018,0.43670639,0.762275389,1.00076E-003,0.43670639, 0001577P0001396 -0.762084435,9.134913994E-018,0.437688763,0.762084435, 0001577P0001397 -1.00076E-003,0.437688763,-1.540743956E-033,1.00076E-003, 0001577P0001398 --1.301042607E-017,1.00076E-003; 0001577P0001399 -142,0,1577,1581,1591,3; 0001579P0001400 -102,4,1583,1585,1587,1589; 0001581P0001401 -110,1.00076E-003,1.00076E-003,0.E+000,-1.540743956E-033, 0001583P0001402 -1.00076E-003,0.E+000; 0001583P0001403 -110,-2.312872381E-035,1.00076E-003,0.E+000,0.E+000,0.E+000, 0001585P0001404 -0.E+000; 0001585P0001405 -110,0.E+000,2.467063873E-035,0.E+000,1.00076E-003,0.E+000, 0001587P0001406 -0.E+000; 0001587P0001407 -110,1.00076E-003,-1.301042607E-017,0.E+000,1.00076E-003, 0001589P0001408 -1.00076E-003,0.E+000; 0001589P0001409 -102,4,1593,1595,1597,1599; 0001591P0001410 -110,0.762084435,1.00076E-003,0.437688763,0.762084435, 0001593P0001411 -9.134913994E-018,0.437688763; 0001593P0001412 -110,0.762084435,9.134913994E-018,0.437688763,0.762275389, 0001595P0001413 -9.134913994E-018,0.43670639; 0001595P0001414 -110,0.762275389,9.107298249E-018,0.43670639,0.762275389, 0001597P0001415 -1.00076E-003,0.43670639; 0001597P0001416 -110,0.762275389,1.00076E-003,0.43670639,0.762084435, 0001599P0001417 -1.00076E-003,0.437688763; 0001599P0001418 -144,1603,1,0,1605; 0001601P0001419 -128,1,1,1,1,0,0,1,0,0,-2.168404345E-019,-2.168404345E-019, 0001603P0001420 -1.00076E-003,1.00076E-003,-1.301042607E-017,-1.301042607E-017, 0001603P0001421 -1.00076E-003,1.00076E-003,1.,1.,1.,1.,5.00156E-003,-0.532275549, 0001603P0001422 -0.43670639,6.00232E-003,-0.532275549,0.43670639,5.00156E-003, 0001603P0001423 --0.532084595,0.437688763,6.00232E-003,-0.532084595,0.437688763, 0001603P0001424 --2.168404345E-019,1.00076E-003,-1.301042607E-017,1.00076E-003; 0001603P0001425 -142,0,1603,1607,1617,3; 0001605P0001426 -102,4,1609,1611,1613,1615; 0001607P0001427 -110,1.00076E-003,1.00076E-003,0.E+000,9.812950815E-037, 0001609P0001428 -1.00076E-003,0.E+000; 0001609P0001429 -110,0.E+000,1.00076E-003,0.E+000,0.E+000,0.E+000,0.E+000; 0001611P0001430 -110,-2.168404345E-019,-9.812950815E-037,0.E+000,1.00076E-003, 0001613P0001431 --9.812950815E-037,-0.E+000; 0001613P0001432 -110,1.00076E-003,-1.301042607E-017,0.E+000,1.00076E-003, 0001615P0001433 -1.00076E-003,0.E+000; 0001615P0001434 -102,4,1619,1621,1623,1625; 0001617P0001435 -110,6.00232E-003,-0.532084595,0.437688763,5.00156E-003, 0001619P0001436 --0.532084595,0.437688763; 0001619P0001437 -110,5.00156E-003,-0.532084595,0.437688763,5.00156E-003, 0001621P0001438 --0.532275549,0.43670639; 0001621P0001439 -110,5.00156E-003,-0.532275549,0.43670639,6.00232E-003, 0001623P0001440 --0.532275549,0.43670639; 0001623P0001441 -110,6.00232E-003,-0.532275549,0.43670639,6.00232E-003, 0001625P0001442 --0.532084595,0.437688763; 0001625P0001443 -402,19,1629,1655,1689,1715,1761,1795,1841,1867,1901,1927,1953, 0001627P0001444 -1979,2013,2039,2065,2091,2117,2143,2169; 0001627P0001445 -144,1631,1,0,1633; 0001629P0001446 -128,1,1,1,1,0,0,1,0,0,3.947864243E-004,3.947864243E-004, 0001631P0001447 -1.349605054,1.349605054,2.030994941E-003,2.030994941E-003, 0001631P0001448 -0.53989478,0.53989478,1.,1.,1.,1.,0.904612508,-0.674605134, 0001631P0001449 -0.2627,0.904612508,0.674605134,0.2627,0.801983259,-0.674605134, 0001631P0001450 -0.790681712,0.801983259,0.674605134,0.790681712, 0001631P0001451 -3.947864243E-004,1.349605054,2.030994941E-003,0.53989478; 0001631P0001452 -142,0,1631,1635,1645,3; 0001633P0001453 -102,4,1637,1639,1641,1643; 0001635P0001454 -110,1.24505466,0.53989478,0.E+000,0.10494518,0.53989478,0.E+000; 0001637P0001455 -110,0.10494518,0.53989478,0.E+000,3.947864243E-004, 0001639P0001456 -2.030994941E-003,0.E+000; 0001639P0001457 -110,3.947864243E-004,2.030994941E-003,0.E+000,1.349605054, 0001641P0001458 -2.030994941E-003,0.E+000; 0001641P0001459 -110,1.349605054,2.030994941E-003,0.E+000,1.24505466,0.53989478, 0001643P0001460 -0.E+000; 0001643P0001461 -102,4,1647,1649,1651,1653; 0001645P0001462 -110,0.801983259,0.57005474,0.790681712,0.801983259,-0.57005474, 0001647P0001463 -0.790681712; 0001647P0001464 -110,0.801983259,-0.57005474,0.790681712,0.904612508, 0001649P0001465 --0.674605134,0.2627; 0001649P0001466 -110,0.904612508,-0.674605134,0.2627,0.904612508,0.674605134, 0001651P0001467 -0.2627; 0001651P0001468 -110,0.904612508,0.674605134,0.2627,0.801983259,0.57005474, 0001653P0001469 -0.790681712; 0001653P0001470 -144,1657,1,0,1659; 0001655P0001471 -128,1,1,1,1,0,0,1,0,0,2.886016858E-003,2.886016858E-003,1.E-002, 0001657P0001472 -1.E-002,-1.766381486E-013,-1.766381486E-013,1.14010948, 0001657P0001473 -1.14010948,1.,1.,1.,1.,0.79499998,-0.57005474,0.7893243, 0001657P0001474 -0.801983259,-0.57005474,0.790681712,0.79499998,0.57005474, 0001657P0001475 -0.7893243,0.801983259,0.57005474,0.790681712,2.886016858E-003, 0001657P0001476 -1.E-002,-1.766381486E-013,1.14010948; 0001657P0001477 -142,0,1657,1661,1675,3; 0001659P0001478 -102,6,1663,1665,1667,1669,1671,1673; 0001661P0001479 -110,1.E-002,1.14010948,0.E+000,8.035222265E-003,1.14010948, 0001663P0001480 -0.E+000; 0001663P0001481 -110,8.035222264E-003,1.14010948,0.E+000,2.886016858E-003, 0001665P0001482 -1.13505488,0.E+000; 0001665P0001483 -110,2.886016858E-003,1.13505488,0.E+000,2.886016858E-003, 0001667P0001484 -5.0546E-003,0.E+000; 0001667P0001485 -110,2.886016858E-003,5.0546E-003,0.E+000,8.035222264E-003, 0001669P0001486 --1.763589275E-013,0.E+000; 0001669P0001487 -110,8.035222264E-003,-1.766378214E-013,-0.E+000,1.E-002, 0001671P0001488 --1.766381486E-013,-0.E+000; 0001671P0001489 -110,1.E-002,-4.418687638E-014,0.E+000,1.E-002,1.14010948, 0001673P0001490 -0.E+000; 0001673P0001491 -102,6,1677,1679,1681,1683,1685,1687; 0001675P0001492 -110,0.801983259,0.57005474,0.790681712,0.80005458,0.57005474, 0001677P0001493 -0.790306815; 0001677P0001494 -110,0.80005458,0.57005474,0.790306815,0.79499998,0.56500014, 0001679P0001495 -0.7893243; 0001679P0001496 -110,0.79499998,0.56500014,0.7893243,0.79499998,-0.56500014, 0001681P0001497 -0.7893243; 0001681P0001498 -110,0.79499998,-0.56500014,0.7893243,0.80005458,-0.57005474, 0001683P0001499 -0.790306815; 0001683P0001500 -110,0.80005458,-0.57005474,0.790306815,0.801983259,-0.57005474, 0001685P0001501 -0.790681712; 0001685P0001502 -110,0.801983259,-0.57005474,0.790681712,0.801983259,0.57005474, 0001687P0001503 -0.790681712; 0001687P0001504 -144,1691,1,0,1693; 0001689P0001505 -128,1,1,1,1,0,0,1,0,0,-0.547930868,-0.547930868,1.33226763E-015, 0001691P0001506 -1.33226763E-015,8.035222264E-003,8.035222264E-003,1.E-002, 0001691P0001507 -1.E-002,1.,1.,1.,1.,0.902683828,0.674605134,0.262325103, 0001691P0001508 -0.80005458,0.57005474,0.790306815,0.904612508,0.674605134, 0001691P0001509 -0.2627,0.801983259,0.57005474,0.790681712,-0.547930868, 0001691P0001510 -1.33226763E-015,8.035222264E-003,1.E-002; 0001691P0001511 -142,0,1691,1695,1705,3; 0001693P0001512 -102,4,1697,1699,1701,1703; 0001695P0001513 -110,-0.547930868,1.E-002,0.E+000,-0.547929347,9.992319418E-003, 0001697P0001514 -0.E+000; 0001697P0001515 -110,-0.547929347,9.992319418E-003,0.E+000,1.33226763E-015, 0001699P0001516 -8.035222264E-003,0.E+000; 0001699P0001517 -110,-8.920888766E-019,8.035222265E-003,0.E+000, 0001701P0001518 --1.110223025E-018,1.E-002,0.E+000; 0001701P0001519 -110,-3.809961552E-017,1.E-002,0.E+000,-0.547930868,1.E-002, 0001703P0001520 -0.E+000; 0001703P0001521 -102,4,1707,1709,1711,1713; 0001705P0001522 -110,0.904612508,0.674605134,0.2627,0.904604683,0.674604843, 0001707P0001523 -0.2627; 0001707P0001524 -110,0.904604683,0.674604843,0.2627,0.80005458,0.57005474, 0001709P0001525 -0.790306815; 0001709P0001526 -110,0.80005458,0.57005474,0.790306815,0.801983259,0.57005474, 0001711P0001527 -0.790681712; 0001711P0001528 -110,0.801983259,0.57005474,0.790681712,0.904612508,0.674605134, 0001713P0001529 -0.2627; 0001713P0001530 -144,1717,1,0,1719; 0001715P0001531 -128,1,1,1,1,0,0,1,0,0,2.886016858E-003,2.886016858E-003,1.E-002, 0001717P0001532 -1.E-002,-1.766364832E-013,-1.766364832E-013,1.59010858, 0001717P0001533 -1.59010858,1.,1.,1.,1.,-0.790054,-0.56500014,0.7893243, 0001717P0001534 --0.790054,-0.571983419,0.790681712,0.80005458,-0.56500014, 0001717P0001535 -0.7893243,0.80005458,-0.571983419,0.790681712,2.886016858E-003, 0001717P0001536 -1.E-002,-1.766364832E-013,1.59010858; 0001717P0001537 -142,0,1717,1721,1741,3; 0001719P0001538 -102,9,1723,1725,1727,1729,1731,1733,1735,1737,1739; 0001721P0001539 -110,7.978296375E-003,5.0546E-003,0.E+000,2.886016858E-003, 0001723P0001540 -5.0546E-003,0.E+000; 0001723P0001541 -110,2.886016858E-003,5.0546E-003,0.E+000,8.035222264E-003, 0001725P0001542 --1.763589275E-013,0.E+000; 0001725P0001543 -110,8.035222264E-003,-1.766364832E-013,0.E+000,1.E-002, 0001727P0001544 --1.766364832E-013,0.E+000; 0001727P0001545 -110,1.E-002,-4.429789868E-014,0.E+000,1.E-002,1.59010858, 0001729P0001546 -0.E+000; 0001729P0001547 -110,1.E-002,1.59010858,0.E+000,8.035222264E-003,1.59010858, 0001731P0001548 -0.E+000; 0001731P0001549 -110,8.035222264E-003,1.59010858,0.E+000,2.886016858E-003, 0001733P0001550 -1.58505398,0.E+000; 0001733P0001551 -110,2.886016858E-003,1.58505398,0.E+000,7.978296375E-003, 0001735P0001552 -1.58505398,0.E+000; 0001735P0001553 -110,7.978296375E-003,1.58505398,0.E+000,7.978296375E-003, 0001737P0001554 -0.63505588,0.E+000; 0001737P0001555 -110,7.978296375E-003,0.63505588,0.E+000,7.978296375E-003, 0001739P0001556 -5.0546E-003,0.E+000; 0001739P0001557 -102,9,1743,1745,1747,1749,1751,1753,1755,1757,1759; 0001741P0001558 -110,-0.7849994,-0.56999886,0.790295953,-0.7849994,-0.56500014, 0001743P0001559 -0.7893243; 0001743P0001560 -110,-0.7849994,-0.56500014,0.7893243,-0.790054,-0.57005474, 0001745P0001561 -0.790306815; 0001745P0001562 -110,-0.790054,-0.57005474,0.790306815,-0.790054,-0.571983419, 0001747P0001563 -0.790681712; 0001747P0001564 -110,-0.790054,-0.571983419,0.790681712,0.80005458,-0.571983419, 0001749P0001565 -0.790681712; 0001749P0001566 -110,0.80005458,-0.571983419,0.790681712,0.80005458,-0.57005474, 0001751P0001567 -0.790306815; 0001751P0001568 -110,0.80005458,-0.57005474,0.790306815,0.79499998,-0.56500014, 0001753P0001569 -0.7893243; 0001753P0001570 -110,0.79499998,-0.56500014,0.7893243,0.79499998,-0.56999886, 0001755P0001571 -0.790295953; 0001755P0001572 -110,0.79499998,-0.56999886,0.790295953,-0.15499812,-0.56999886, 0001757P0001573 -0.790295953; 0001757P0001574 -110,-0.15499812,-0.56999886,0.790295953,-0.7849994,-0.56999886, 0001759P0001575 -0.790295953; 0001759P0001576 -144,1763,1,0,1765; 0001761P0001577 -128,1,1,1,1,0,0,1,0,0,8.624820429E-003,8.624820429E-003,1.E-002, 0001763P0001578 -1.E-002,-1.647987302E-017,-1.647987302E-017,1.13999772, 0001763P0001579 -1.13999772,1.,1.,1.,1.,0.79499998,-0.56999886,0.7893243, 0001763P0001580 -0.79499998,-0.56999886,0.79069948,0.79499998,0.56999886, 0001763P0001581 -0.7893243,0.79499998,0.56999886,0.79069948,8.624820429E-003, 0001763P0001582 -1.E-002,-1.647987302E-017,1.13999772; 0001763P0001583 -142,0,1763,1767,1781,3; 0001765P0001584 -102,6,1769,1771,1773,1775,1777,1779; 0001767P0001585 -110,1.E-002,1.13999772,0.E+000,9.596473168E-003,1.13999772, 0001769P0001586 -0.E+000; 0001769P0001587 -110,9.596473168E-003,1.13999772,0.E+000,8.624820429E-003, 0001771P0001588 -1.134999,0.E+000; 0001771P0001589 -110,8.624820429E-003,1.134999,0.E+000,8.624820429E-003, 0001773P0001590 -4.99872E-003,0.E+000; 0001773P0001591 -110,8.624820429E-003,4.99872E-003,0.E+000,9.596473168E-003, 0001775P0001592 --1.647987302E-017,0.E+000; 0001775P0001593 -110,9.596473168E-003,0.E+000,0.E+000,1.E-002,0.E+000,0.E+000; 0001777P0001594 -110,1.E-002,0.E+000,0.E+000,1.E-002,1.13999772,0.E+000; 0001779P0001595 -102,6,1783,1785,1787,1789,1791,1793; 0001781P0001596 -110,0.79499998,0.56999886,0.79069948,0.79499998,0.56999886, 0001783P0001597 -0.790295953; 0001783P0001598 -110,0.79499998,0.56999886,0.790295953,0.79499998,0.56500014, 0001785P0001599 -0.7893243; 0001785P0001600 -110,0.79499998,0.56500014,0.7893243,0.79499998,-0.56500014, 0001787P0001601 -0.7893243; 0001787P0001602 -110,0.79499998,-0.56500014,0.7893243,0.79499998,-0.56999886, 0001789P0001603 -0.790295953; 0001789P0001604 -110,0.79499998,-0.56999886,0.790295953,0.79499998,-0.56999886, 0001791P0001605 -0.79069948; 0001791P0001606 -110,0.79499998,-0.56999886,0.79069948,0.79499998,0.56999886, 0001793P0001607 -0.79069948; 0001793P0001608 -144,1797,1,0,1799; 0001795P0001609 -128,1,1,1,1,0,0,1,0,0,2.886016858E-003,2.886016858E-003,1.E-002, 0001797P0001610 -1.E-002,-1.766364832E-013,-1.766364832E-013,1.59010858, 0001797P0001611 -1.59010858,1.,1.,1.,1.,0.80005458,0.56500014,0.7893243, 0001797P0001612 -0.80005458,0.571983419,0.790681712,-0.790054,0.56500014, 0001797P0001613 -0.7893243,-0.790054,0.571983419,0.790681712,2.886016858E-003, 0001797P0001614 -1.E-002,-1.766364832E-013,1.59010858; 0001797P0001615 -142,0,1797,1801,1821,3; 0001799P0001616 -102,9,1803,1805,1807,1809,1811,1813,1815,1817,1819; 0001801P0001617 -110,2.886016858E-003,5.0546E-003,0.E+000,8.035222264E-003, 0001803P0001618 --1.766364832E-013,0.E+000; 0001803P0001619 -110,8.035222264E-003,-1.766364832E-013,-0.E+000,1.E-002, 0001805P0001620 --1.766364832E-013,-0.E+000; 0001805P0001621 -110,1.E-002,-4.429789868E-014,0.E+000,1.E-002,1.59010858, 0001807P0001622 -0.E+000; 0001807P0001623 -110,1.E-002,1.59010858,0.E+000,8.035222264E-003,1.59010858, 0001809P0001624 -0.E+000; 0001809P0001625 -110,8.035222264E-003,1.59010858,0.E+000,2.886016858E-003, 0001811P0001626 -1.58505398,0.E+000; 0001811P0001627 -110,2.886016858E-003,1.58505398,0.E+000,7.978296375E-003, 0001813P0001628 -1.58505398,0.E+000; 0001813P0001629 -110,7.978296375E-003,1.58505398,0.E+000,7.978296375E-003, 0001815P0001630 -0.9550527,0.E+000; 0001815P0001631 -110,7.978296375E-003,0.9550527,0.E+000,7.978296375E-003, 0001817P0001632 -5.0546E-003,0.E+000; 0001817P0001633 -110,7.978296375E-003,5.0546E-003,0.E+000,2.886016858E-003, 0001819P0001634 -5.0546E-003,0.E+000; 0001819P0001635 -102,9,1823,1825,1827,1829,1831,1833,1835,1837,1839; 0001821P0001636 -110,0.79499998,0.56500014,0.7893243,0.80005458,0.57005474, 0001823P0001637 -0.790306815; 0001823P0001638 -110,0.80005458,0.57005474,0.790306815,0.80005458,0.571983419, 0001825P0001639 -0.790681712; 0001825P0001640 -110,0.80005458,0.571983419,0.790681712,-0.790054,0.571983419, 0001827P0001641 -0.790681712; 0001827P0001642 -110,-0.790054,0.571983419,0.790681712,-0.790054,0.57005474, 0001829P0001643 -0.790306815; 0001829P0001644 -110,-0.790054,0.57005474,0.790306815,-0.7849994,0.56500014, 0001831P0001645 -0.7893243; 0001831P0001646 -110,-0.7849994,0.56500014,0.7893243,-0.7849994,0.56999886, 0001833P0001647 -0.790295953; 0001833P0001648 -110,-0.7849994,0.56999886,0.790295953,-0.15499812,0.56999886, 0001835P0001649 -0.790295953; 0001835P0001650 -110,-0.15499812,0.56999886,0.790295953,0.79499998,0.56999886, 0001837P0001651 -0.790295953; 0001837P0001652 -110,0.79499998,0.56999886,0.790295953,0.79499998,0.56500014, 0001839P0001653 -0.7893243; 0001839P0001654 -144,1843,1,0,1845; 0001841P0001655 -128,1,1,1,1,0,0,1,0,0,-0.549999877,-0.549999877, 0001843P0001656 --2.069008645E-003,-2.069008645E-003,8.035222264E-003, 0001843P0001657 -8.035222264E-003,1.E-002,1.E-002,1.,1.,1.,1.,0.80005458, 0001843P0001658 -0.57005474,0.790306815,0.904604974,0.672683988,0.262325103, 0001843P0001659 -0.80005458,0.571983419,0.790681712,0.904604974,0.674612668, 0001843P0001660 -0.2627,-0.549999877,-2.069008645E-003,8.035222264E-003,1.E-002; 0001843P0001661 -142,0,1843,1847,1857,3; 0001845P0001662 -102,4,1849,1851,1853,1855; 0001847P0001663 -110,-0.549999877,8.035222264E-003,0.E+000,-2.070529542E-003, 0001849P0001664 -9.992319417E-003,0.E+000; 0001849P0001665 -110,-2.070529542E-003,9.992319417E-003,0.E+000, 0001851P0001666 --2.069008645E-003,1.E-002,0.E+000; 0001851P0001667 -110,-2.069008645E-003,1.E-002,0.E+000,-0.549999877,1.E-002, 0001853P0001668 -0.E+000; 0001853P0001669 -110,-0.549999877,1.E-002,0.E+000,-0.549999877,8.035222264E-003, 0001855P0001670 -0.E+000; 0001855P0001671 -102,4,1859,1861,1863,1865; 0001857P0001672 -110,0.80005458,0.57005474,0.790306815,0.904604683,0.674604843, 0001859P0001673 -0.2627; 0001859P0001674 -110,0.904604683,0.674604843,0.2627,0.904604974,0.674612668, 0001861P0001675 -0.2627; 0001861P0001676 -110,0.904604974,0.674612668,0.2627,0.80005458,0.571983419, 0001863P0001677 -0.790681712; 0001863P0001678 -110,0.80005458,0.571983419,0.790681712,0.80005458,0.57005474, 0001865P0001679 -0.790306815; 0001865P0001680 -144,1869,1,0,1871; 0001867P0001681 -128,1,1,1,1,0,0,1,0,0,-1.E-002,-1.E-002,-8.624820429E-003, 0001869P0001682 --8.624820429E-003,-1.13999772,-1.13999772,1.647987302E-017, 0001869P0001683 -1.647987302E-017,1.,1.,1.,1.,-0.7849994,-0.56999886,0.79069948, 0001869P0001684 --0.7849994,-0.56999886,0.7893243,-0.7849994,0.56999886, 0001869P0001685 -0.79069948,-0.7849994,0.56999886,0.7893243,-1.E-002, 0001869P0001686 --8.624820429E-003,-1.13999772,1.647987302E-017; 0001869P0001687 -142,0,1869,1873,1887,3; 0001871P0001688 -102,6,1875,1877,1879,1881,1883,1885; 0001873P0001689 -110,-9.596473168E-003,-1.13999772,-0.E+000,-8.624820429E-003, 0001875P0001690 --1.134999,-0.E+000; 0001875P0001691 -110,-8.624820429E-003,-1.134999,0.E+000,-8.624820429E-003, 0001877P0001692 --4.99872E-003,0.E+000; 0001877P0001693 -110,-8.624820429E-003,-4.99872E-003,0.E+000,-9.596473168E-003, 0001879P0001694 -1.647987302E-017,0.E+000; 0001879P0001695 -110,-9.596473168E-003,0.E+000,0.E+000,-1.E-002,0.E+000,0.E+000; 0001881P0001696 -110,-1.E-002,0.E+000,0.E+000,-1.E-002,-1.13999772,0.E+000; 0001883P0001697 -110,-1.E-002,-1.13999772,-0.E+000,-9.596473168E-003,-1.13999772, 0001885P0001698 --0.E+000; 0001885P0001699 -102,6,1889,1891,1893,1895,1897,1899; 0001887P0001700 -110,-0.7849994,-0.56999886,0.790295953,-0.7849994,-0.56500014, 0001889P0001701 -0.7893243; 0001889P0001702 -110,-0.7849994,-0.56500014,0.7893243,-0.7849994,0.56500014, 0001891P0001703 -0.7893243; 0001891P0001704 -110,-0.7849994,0.56500014,0.7893243,-0.7849994,0.56999886, 0001893P0001705 -0.790295953; 0001893P0001706 -110,-0.7849994,0.56999886,0.790295953,-0.7849994,0.56999886, 0001895P0001707 -0.79069948; 0001895P0001708 -110,-0.7849994,0.56999886,0.79069948,-0.7849994,-0.56999886, 0001897P0001709 -0.79069948; 0001897P0001710 -110,-0.7849994,-0.56999886,0.79069948,-0.7849994,-0.56999886, 0001899P0001711 -0.790295953; 0001899P0001712 -144,1903,1,0,1905; 0001901P0001713 -128,1,1,1,1,0,0,1,0,0,9.596473168E-003,9.596473168E-003,1.E-002, 0001903P0001714 -1.E-002,0.E+000,0.E+000,0.63000128,0.63000128,1.,1.,1.,1., 0001903P0001715 --0.7849994,-0.56999886,0.790295953,-0.7849994,-0.56999886, 0001903P0001716 -0.79069948,-0.15499812,-0.56999886,0.790295953,-0.15499812, 0001903P0001717 --0.56999886,0.79069948,9.596473168E-003,1.E-002,0.E+000, 0001903P0001718 -0.63000128; 0001903P0001719 -142,0,1903,1907,1917,3; 0001905P0001720 -102,4,1909,1911,1913,1915; 0001907P0001721 -110,9.596473168E-003,0.63000128,-0.E+000,9.596473168E-003, 0001909P0001722 -0.E+000,-0.E+000; 0001909P0001723 -110,9.596473168E-003,0.E+000,0.E+000,1.E-002,0.E+000,0.E+000; 0001911P0001724 -110,1.E-002,0.E+000,0.E+000,1.E-002,0.63000128,0.E+000; 0001913P0001725 -110,1.E-002,0.63000128,0.E+000,9.596473168E-003,0.63000128, 0001915P0001726 -0.E+000; 0001915P0001727 -102,4,1919,1921,1923,1925; 0001917P0001728 -110,-0.15499812,-0.56999886,0.790295953,-0.7849994,-0.56999886, 0001919P0001729 -0.790295953; 0001919P0001730 -110,-0.7849994,-0.56999886,0.790295953,-0.7849994,-0.56999886, 0001921P0001731 -0.79069948; 0001921P0001732 -110,-0.7849994,-0.56999886,0.79069948,-0.15499812,-0.56999886, 0001923P0001733 -0.79069948; 0001923P0001734 -110,-0.15499812,-0.56999886,0.79069948,-0.15499812,-0.56999886, 0001925P0001735 -0.790295953; 0001925P0001736 -144,1929,1,0,1931; 0001927P0001737 -128,1,1,1,1,0,0,1,0,0,9.596473168E-003,9.596473168E-003,1.E-002, 0001929P0001738 -1.E-002,-2.220446049E-016,-2.220446049E-016,0.9499981,0.9499981, 0001929P0001739 -1.,1.,1.,1.,-0.15499812,-0.56999886,0.790295953,-0.15499812, 0001929P0001740 --0.56999886,0.79069948,0.79499998,-0.56999886,0.790295953, 0001929P0001741 -0.79499998,-0.56999886,0.79069948,9.596473168E-003,1.E-002, 0001929P0001742 --2.220446049E-016,0.9499981; 0001929P0001743 -142,0,1929,1933,1943,3; 0001931P0001744 -102,4,1935,1937,1939,1941; 0001933P0001745 -110,1.E-002,0.9499981,0.E+000,9.596473168E-003,0.9499981, 0001935P0001746 -0.E+000; 0001935P0001747 -110,9.596473168E-003,0.9499981,-0.E+000,9.596473168E-003, 0001937P0001748 -0.E+000,-0.E+000; 0001937P0001749 -110,9.596473168E-003,-2.220446049E-016,-0.E+000,1.E-002, 0001939P0001750 --2.220446049E-016,-0.E+000; 0001939P0001751 -110,1.E-002,0.E+000,0.E+000,1.E-002,0.9499981,0.E+000; 0001941P0001752 -102,4,1945,1947,1949,1951; 0001943P0001753 -110,0.79499998,-0.56999886,0.79069948,0.79499998,-0.56999886, 0001945P0001754 -0.790295953; 0001945P0001755 -110,0.79499998,-0.56999886,0.790295953,-0.15499812,-0.56999886, 0001947P0001756 -0.790295953; 0001947P0001757 -110,-0.15499812,-0.56999886,0.790295953,-0.15499812,-0.56999886, 0001949P0001758 -0.79069948; 0001949P0001759 -110,-0.15499812,-0.56999886,0.79069948,0.79499998,-0.56999886, 0001951P0001760 -0.79069948; 0001951P0001761 -144,1955,1,0,1957; 0001953P0001762 -128,1,1,1,1,0,0,1,0,0,3.947864243E-004,3.947864243E-004, 0001955P0001763 -1.799604154,1.799604154,2.030994941E-003,2.030994941E-003, 0001955P0001764 -0.53989478,0.53989478,1.,1.,1.,1.,-0.894604394,-0.674612668, 0001955P0001765 -0.2627,0.904604974,-0.674612668,0.2627,-0.894604394, 0001955P0001766 --0.571983419,0.790681712,0.904604974,-0.571983419,0.790681712, 0001955P0001767 -3.947864243E-004,1.799604154,2.030994941E-003,0.53989478; 0001955P0001768 -142,0,1955,1959,1969,3; 0001957P0001769 -102,4,1961,1963,1965,1967; 0001959P0001770 -110,0.10494518,0.53989478,0.E+000,3.947864243E-004, 0001961P0001771 -2.030994941E-003,0.E+000; 0001961P0001772 -110,3.947864243E-004,2.030994941E-003,0.E+000,1.799604154, 0001963P0001773 -2.030994941E-003,0.E+000; 0001963P0001774 -110,1.799604154,2.030994941E-003,0.E+000,1.69505376,0.53989478, 0001965P0001775 -0.E+000; 0001965P0001776 -110,1.69505376,0.53989478,0.E+000,0.10494518,0.53989478,0.E+000; 0001967P0001777 -102,4,1971,1973,1975,1977; 0001969P0001778 -110,-0.790054,-0.571983419,0.790681712,-0.894604394, 0001971P0001779 --0.674612668,0.2627; 0001971P0001780 -110,-0.894604394,-0.674612668,0.2627,0.904604974,-0.674612668, 0001973P0001781 -0.2627; 0001973P0001782 -110,0.904604974,-0.674612668,0.2627,0.80005458,-0.571983419, 0001975P0001783 -0.790681712; 0001975P0001784 -110,0.80005458,-0.571983419,0.790681712,-0.790054,-0.571983419, 0001977P0001785 -0.790681712; 0001977P0001786 -144,1981,1,0,1983; 0001979P0001787 -128,1,1,1,1,0,0,1,0,0,2.886016858E-003,2.886016858E-003,1.E-002, 0001981P0001788 -1.E-002,-1.766364309E-013,-1.766364309E-013,1.14010948, 0001981P0001789 -1.14010948,1.,1.,1.,1.,-0.7849994,0.57005474,0.7893243, 0001981P0001790 --0.791982679,0.57005474,0.790681712,-0.7849994,-0.57005474, 0001981P0001791 -0.7893243,-0.791982679,-0.57005474,0.790681712,2.886016858E-003, 0001981P0001792 -1.E-002,-1.766364309E-013,1.14010948; 0001981P0001793 -142,0,1981,1985,1999,3; 0001983P0001794 -102,6,1987,1989,1991,1993,1995,1997; 0001985P0001795 -110,2.886016858E-003,1.13505488,0.E+000,2.886016858E-003, 0001987P0001796 -5.0546E-003,0.E+000; 0001987P0001797 -110,2.886016858E-003,5.0546E-003,0.E+000,8.035222264E-003, 0001989P0001798 --2.664535259E-015,0.E+000; 0001989P0001799 -110,8.035222264E-003,-1.766364309E-013,0.E+000,1.E-002, 0001991P0001800 --1.766364181E-013,0.E+000; 0001991P0001801 -110,1.E-002,-4.418459081E-014,0.E+000,1.E-002,1.14010948, 0001993P0001802 -0.E+000; 0001993P0001803 -110,1.E-002,1.14010948,0.E+000,8.035222264E-003,1.14010948, 0001995P0001804 -0.E+000; 0001995P0001805 -110,8.035222264E-003,1.14010948,0.E+000,2.886016858E-003, 0001997P0001806 -1.13505488,0.E+000; 0001997P0001807 -102,6,2001,2003,2005,2007,2009,2011; 0001999P0001808 -110,-0.7849994,-0.56500014,0.7893243,-0.7849994,0.56500014, 0002001P0001809 -0.7893243; 0002001P0001810 -110,-0.7849994,0.56500014,0.7893243,-0.790054,0.57005474, 0002003P0001811 -0.790306815; 0002003P0001812 -110,-0.790054,0.57005474,0.790306815,-0.791982679,0.57005474, 0002005P0001813 -0.790681712; 0002005P0001814 -110,-0.791982679,0.57005474,0.790681712,-0.791982679, 0002007P0001815 --0.57005474,0.790681712; 0002007P0001816 -110,-0.791982679,-0.57005474,0.790681712,-0.790054,-0.57005474, 0002009P0001817 -0.790306815; 0002009P0001818 -110,-0.790054,-0.57005474,0.790306815,-0.7849994,-0.56500014, 0002011P0001819 -0.7893243; 0002011P0001820 -144,2015,1,0,2017; 0002013P0001821 -128,1,1,1,1,0,0,1,0,0,-1.E-002,-1.E-002,-9.596473168E-003, 0002015P0001822 --9.596473168E-003,-0.9499981,-0.9499981,0.E+000,0.E+000,1.,1., 0002015P0001823 -1.,1.,-0.15499812,0.56999886,0.79069948,-0.15499812,0.56999886, 0002015P0001824 -0.790295953,0.79499998,0.56999886,0.79069948,0.79499998, 0002015P0001825 -0.56999886,0.790295953,-1.E-002,-9.596473168E-003,-0.9499981, 0002015P0001826 -0.E+000; 0002015P0001827 -142,0,2015,2019,2029,3; 0002017P0001828 -102,4,2021,2023,2025,2027; 0002019P0001829 -110,-1.E-002,-0.9499981,-0.E+000,-9.596473168E-003,-0.9499981, 0002021P0001830 --0.E+000; 0002021P0001831 -110,-9.596473168E-003,-0.9499981,0.E+000,-9.596473168E-003, 0002023P0001832 -0.E+000,0.E+000; 0002023P0001833 -110,-9.596473168E-003,0.E+000,0.E+000,-1.E-002,0.E+000,0.E+000; 0002025P0001834 -110,-1.E-002,0.E+000,0.E+000,-1.E-002,-0.9499981,0.E+000; 0002027P0001835 -102,4,2031,2033,2035,2037; 0002029P0001836 -110,-0.15499812,0.56999886,0.79069948,-0.15499812,0.56999886, 0002031P0001837 -0.790295953; 0002031P0001838 -110,-0.15499812,0.56999886,0.790295953,0.79499998,0.56999886, 0002033P0001839 -0.790295953; 0002033P0001840 -110,0.79499998,0.56999886,0.790295953,0.79499998,0.56999886, 0002035P0001841 -0.79069948; 0002035P0001842 -110,0.79499998,0.56999886,0.79069948,-0.15499812,0.56999886, 0002037P0001843 -0.79069948; 0002037P0001844 -144,2041,1,0,2043; 0002039P0001845 -128,1,1,1,1,0,0,1,0,0,-0.9499981,-0.9499981,2.220446049E-016, 0002041P0001846 -2.220446049E-016,-1.13999772,-1.13999772,0.E+000,0.E+000,1.,1., 0002041P0001847 -1.,1.,0.79499998,-0.56999886,0.79069948,-0.15499812,-0.56999886, 0002041P0001848 -0.79069948,0.79499998,0.56999886,0.79069948,-0.15499812, 0002041P0001849 -0.56999886,0.79069948,-0.9499981,2.220446049E-016,-1.13999772, 0002041P0001850 -0.E+000; 0002041P0001851 -142,0,2041,2045,2055,3; 0002043P0001852 -102,4,2047,2049,2051,2053; 0002045P0001853 -110,-0.9499981,-1.13999772,0.E+000,0.E+000,-1.13999772,0.E+000; 0002047P0001854 -110,2.220446049E-016,-1.13999772,0.E+000,2.220446049E-016, 0002049P0001855 -0.E+000,0.E+000; 0002049P0001856 -110,0.E+000,0.E+000,0.E+000,-0.9499981,0.E+000,0.E+000; 0002051P0001857 -110,-0.9499981,0.E+000,0.E+000,-0.9499981,-1.13999772,0.E+000; 0002053P0001858 -102,4,2057,2059,2061,2063; 0002055P0001859 -110,0.79499998,-0.56999886,0.79069948,-0.15499812,-0.56999886, 0002057P0001860 -0.79069948; 0002057P0001861 -110,-0.15499812,-0.56999886,0.79069948,-0.15499812,0.56999886, 0002059P0001862 -0.79069948; 0002059P0001863 -110,-0.15499812,0.56999886,0.79069948,0.79499998,0.56999886, 0002061P0001864 -0.79069948; 0002061P0001865 -110,0.79499998,0.56999886,0.79069948,0.79499998,-0.56999886, 0002063P0001866 -0.79069948; 0002063P0001867 -144,2067,1,0,2069; 0002065P0001868 -128,1,1,1,1,0,0,1,0,0,-1.E-002,-1.E-002,-9.596473168E-003, 0002067P0001869 --9.596473168E-003,-0.63000128,-0.63000128,1.110223025E-016, 0002067P0001870 -1.110223025E-016,1.,1.,1.,1.,-0.7849994,0.56999886,0.79069948, 0002067P0001871 --0.7849994,0.56999886,0.790295953,-0.15499812,0.56999886, 0002067P0001872 -0.79069948,-0.15499812,0.56999886,0.790295953,-1.E-002, 0002067P0001873 --9.596473168E-003,-0.63000128,1.110223025E-016; 0002067P0001874 -142,0,2067,2071,2081,3; 0002069P0001875 -102,4,2073,2075,2077,2079; 0002071P0001876 -110,-9.596473168E-003,-0.63000128,0.E+000,-9.596473168E-003, 0002073P0001877 -1.110223025E-016,0.E+000; 0002073P0001878 -110,-9.596473168E-003,0.E+000,0.E+000,-1.E-002,0.E+000,0.E+000; 0002075P0001879 -110,-1.E-002,0.E+000,0.E+000,-1.E-002,-0.63000128,0.E+000; 0002077P0001880 -110,-1.E-002,-0.63000128,0.E+000,-9.596473168E-003,-0.63000128, 0002079P0001881 -0.E+000; 0002079P0001882 -102,4,2083,2085,2087,2089; 0002081P0001883 -110,-0.7849994,0.56999886,0.790295953,-0.15499812,0.56999886, 0002083P0001884 -0.790295953; 0002083P0001885 -110,-0.15499812,0.56999886,0.790295953,-0.15499812,0.56999886, 0002085P0001886 -0.79069948; 0002085P0001887 -110,-0.15499812,0.56999886,0.79069948,-0.7849994,0.56999886, 0002087P0001888 -0.79069948; 0002087P0001889 -110,-0.7849994,0.56999886,0.79069948,-0.7849994,0.56999886, 0002089P0001890 -0.790295953; 0002089P0001891 -144,2093,1,0,2095; 0002091P0001892 -128,1,1,1,1,0,0,1,0,0,-0.547930868,-0.547930868, 0002093P0001893 -5.551115123E-017,5.551115123E-017,8.035222264E-003, 0002093P0001894 -8.035222264E-003,1.E-002,1.E-002,1.,1.,1.,1.,-0.894604394, 0002093P0001895 -0.672683988,0.262325103,-0.790054,0.57005474,0.790306815, 0002093P0001896 --0.894604394,0.674612668,0.2627,-0.790054,0.571983419, 0002093P0001897 -0.790681712,-0.547930868,5.551115123E-017,8.035222264E-003, 0002093P0001898 -1.E-002; 0002093P0001899 -142,0,2093,2097,2107,3; 0002095P0001900 -102,4,2099,2101,2103,2105; 0002097P0001901 -110,-0.547929347,9.992319418E-003,0.E+000,5.551115123E-017, 0002099P0001902 -8.035222264E-003,0.E+000; 0002099P0001903 -110,0.E+000,8.035222264E-003,0.E+000,0.E+000,1.E-002,0.E+000; 0002101P0001904 -110,-1.110223025E-016,1.E-002,0.E+000,-0.547930868,1.E-002, 0002103P0001905 -0.E+000; 0002103P0001906 -110,-0.547930868,1.E-002,0.E+000,-0.547929347,9.992319418E-003, 0002105P0001907 -0.E+000; 0002105P0001908 -102,4,2109,2111,2113,2115; 0002107P0001909 -110,-0.894604103,0.674604843,0.2627,-0.790054,0.57005474, 0002109P0001910 -0.790306815; 0002109P0001911 -110,-0.790054,0.57005474,0.790306815,-0.790054,0.571983419, 0002111P0001912 -0.790681712; 0002111P0001913 -110,-0.790054,0.571983419,0.790681712,-0.894604394,0.674612668, 0002113P0001914 -0.2627; 0002113P0001915 -110,-0.894604394,0.674612668,0.2627,-0.894604103,0.674604843, 0002115P0001916 -0.2627; 0002115P0001917 -144,2119,1,0,2121; 0002117P0001918 -128,1,1,1,1,0,0,1,0,0,3.947864243E-004,3.947864243E-004, 0002119P0001919 -1.799604154,1.799604154,2.030994941E-003,2.030994941E-003, 0002119P0001920 -0.53989478,0.53989478,1.,1.,1.,1.,0.904604974,0.674612668, 0002119P0001921 -0.2627,-0.894604394,0.674612668,0.2627,0.904604974,0.571983419, 0002119P0001922 -0.790681712,-0.894604394,0.571983419,0.790681712, 0002119P0001923 -3.947864243E-004,1.799604154,2.030994941E-003,0.53989478; 0002119P0001924 -142,0,2119,2123,2133,3; 0002121P0001925 -102,4,2125,2127,2129,2131; 0002123P0001926 -110,3.947864243E-004,2.030994941E-003,0.E+000,1.799604154, 0002125P0001927 -2.030994941E-003,0.E+000; 0002125P0001928 -110,1.799604154,2.030994941E-003,0.E+000,1.69505376,0.53989478, 0002127P0001929 -0.E+000; 0002127P0001930 -110,1.69505376,0.53989478,0.E+000,0.10494518,0.53989478,0.E+000; 0002129P0001931 -110,0.10494518,0.53989478,0.E+000,3.947864243E-004, 0002131P0001932 -2.030994941E-003,0.E+000; 0002131P0001933 -102,4,2135,2137,2139,2141; 0002133P0001934 -110,0.904604974,0.674612668,0.2627,-0.894604394,0.674612668, 0002135P0001935 -0.2627; 0002135P0001936 -110,-0.894604394,0.674612668,0.2627,-0.790054,0.571983419, 0002137P0001937 -0.790681712; 0002137P0001938 -110,-0.790054,0.571983419,0.790681712,0.80005458,0.571983419, 0002139P0001939 -0.790681712; 0002139P0001940 -110,0.80005458,0.571983419,0.790681712,0.904604974,0.674612668, 0002141P0001941 -0.2627; 0002141P0001942 -144,2145,1,0,2147; 0002143P0001943 -128,1,1,1,1,0,0,1,0,0,-0.63000128,-0.63000128,1.110223025E-016, 0002145P0001944 -1.110223025E-016,-1.13999772,-1.13999772,0.E+000,0.E+000,1.,1., 0002145P0001945 -1.,1.,-0.15499812,-0.56999886,0.79069948,-0.7849994,-0.56999886, 0002145P0001946 -0.79069948,-0.15499812,0.56999886,0.79069948,-0.7849994, 0002145P0001947 -0.56999886,0.79069948,-0.63000128,1.110223025E-016,-1.13999772, 0002145P0001948 -0.E+000; 0002145P0001949 -142,0,2145,2149,2159,3; 0002147P0001950 -102,4,2151,2153,2155,2157; 0002149P0001951 -110,-0.63000128,-1.13999772,0.E+000,0.E+000,-1.13999772,0.E+000; 0002151P0001952 -110,0.E+000,-1.13999772,0.E+000,0.E+000,0.E+000,0.E+000; 0002153P0001953 -110,1.110223025E-016,0.E+000,0.E+000,-0.63000128,0.E+000, 0002155P0001954 -0.E+000; 0002155P0001955 -110,-0.63000128,0.E+000,0.E+000,-0.63000128,-1.13999772,0.E+000; 0002157P0001956 -102,4,2161,2163,2165,2167; 0002159P0001957 -110,-0.15499812,-0.56999886,0.79069948,-0.7849994,-0.56999886, 0002161P0001958 -0.79069948; 0002161P0001959 -110,-0.7849994,-0.56999886,0.79069948,-0.7849994,0.56999886, 0002163P0001960 -0.79069948; 0002163P0001961 -110,-0.7849994,0.56999886,0.79069948,-0.15499812,0.56999886, 0002165P0001962 -0.79069948; 0002165P0001963 -110,-0.15499812,0.56999886,0.79069948,-0.15499812,-0.56999886, 0002167P0001964 -0.79069948; 0002167P0001965 -144,2171,1,0,2173; 0002169P0001966 -128,1,1,1,1,0,0,1,0,0,-0.549999877,-0.549999877, 0002171P0001967 --2.069008645E-003,-2.069008645E-003,8.035222264E-003, 0002171P0001968 -8.035222264E-003,1.E-002,1.E-002,1.,1.,1.,1.,-0.790054, 0002171P0001969 -0.57005474,0.790306815,-0.892683248,0.674605134,0.262325103, 0002171P0001970 --0.791982679,0.57005474,0.790681712,-0.894611928,0.674605134, 0002171P0001971 -0.2627,-0.549999877,-2.069008645E-003,8.035222264E-003,1.E-002; 0002171P0001972 -142,0,2171,2175,2185,3; 0002173P0001973 -102,4,2177,2179,2181,2183; 0002175P0001974 -110,-2.070529542E-003,9.992319417E-003,0.E+000, 0002177P0001975 --2.069008645E-003,1.E-002,0.E+000; 0002177P0001976 -110,-2.069008645E-003,1.E-002,0.E+000,-0.549999877,1.E-002, 0002179P0001977 -0.E+000; 0002179P0001978 -110,-0.549999877,1.E-002,0.E+000,-0.549999877,8.035222264E-003, 0002181P0001979 -0.E+000; 0002181P0001980 -110,-0.549999877,8.035222264E-003,0.E+000,-2.070529542E-003, 0002183P0001981 -9.992319417E-003,0.E+000; 0002183P0001982 -102,4,2187,2189,2191,2193; 0002185P0001983 -110,-0.894604103,0.674604843,0.2627,-0.894611928,0.674605134, 0002187P0001984 -0.2627; 0002187P0001985 -110,-0.894611928,0.674605134,0.2627,-0.791982679,0.57005474, 0002189P0001986 -0.790681712; 0002189P0001987 -110,-0.791982679,0.57005474,0.790681712,-0.790054,0.57005474, 0002191P0001988 -0.790306815; 0002191P0001989 -110,-0.790054,0.57005474,0.790306815,-0.894604103,0.674604843, 0002193P0001990 -0.2627; 0002193P0001991 -S 1G 4D 2194P 1991 T0000001 + S0000001 +,,31HOpen CASCADE IGES processor 6.5,13HFilename.iges, G0000001 +16HOpen CASCADE 6.5,31HOpen CASCADE IGES processor 6.5,32,308,15,308,15,G0000002 +,1.,2,2HMM,1,0.01,15H20120128.220456,3.64646E-06,1.363206,3Htux,,11,0, G0000003 +15H20120128.220456,; G0000004 + 402 1 0 0 0 0 0 000000000D0000001 + 402 0 0 6 1 SOD323 D0000002 + 144 7 0 0 0 0 0 000020000D0000003 + 144 0 -2195 1 0 0D0000004 + 128 8 0 0 0 0 0 000010000D0000005 + 128 0 0 4 0 0D0000006 + 142 12 0 0 0 0 0 000010500D0000007 + 142 0 0 1 0 0D0000008 + 102 13 0 0 0 0 0 000010000D0000009 + 102 0 0 1 0 0D0000010 + 110 14 0 0 0 0 0 000010000D0000011 + 110 0 -2195 1 0 0D0000012 + 110 15 0 0 0 0 0 000010000D0000013 + 110 0 -2195 1 0 0D0000014 + 110 16 0 0 0 0 0 000010000D0000015 + 110 0 -2195 1 0 0D0000016 + 110 17 0 0 0 0 0 000010000D0000017 + 110 0 -2195 1 0 0D0000018 + 102 18 0 0 0 0 0 000010000D0000019 + 102 0 0 1 0 0D0000020 + 110 19 0 0 0 0 0 000010000D0000021 + 110 0 0 1 0 0D0000022 + 110 20 0 0 0 0 0 000010000D0000023 + 110 0 0 1 0 0D0000024 + 110 21 0 0 0 0 0 000010000D0000025 + 110 0 0 1 0 0D0000026 + 110 22 0 0 0 0 0 000010000D0000027 + 110 0 0 1 0 0D0000028 + 144 23 0 0 0 0 0 000020000D0000029 + 144 0 -2195 1 0 0D0000030 + 128 24 0 0 0 0 0 000010000D0000031 + 128 0 0 4 0 0D0000032 + 142 28 0 0 0 0 0 000010500D0000033 + 142 0 0 1 0 0D0000034 + 102 29 0 0 0 0 0 000010000D0000035 + 102 0 0 1 0 0D0000036 + 110 30 0 0 0 0 0 000010000D0000037 + 110 0 -2195 1 0 0D0000038 + 110 31 0 0 0 0 0 000010000D0000039 + 110 0 -2195 1 0 0D0000040 + 110 32 0 0 0 0 0 000010000D0000041 + 110 0 -2195 1 0 0D0000042 + 110 33 0 0 0 0 0 000010000D0000043 + 110 0 -2195 1 0 0D0000044 + 110 34 0 0 0 0 0 000010000D0000045 + 110 0 -2195 1 0 0D0000046 + 110 35 0 0 0 0 0 000010000D0000047 + 110 0 -2195 1 0 0D0000048 + 102 36 0 0 0 0 0 000010000D0000049 + 102 0 0 1 0 0D0000050 + 110 37 0 0 0 0 0 000010000D0000051 + 110 0 0 2 0 0D0000052 + 110 39 0 0 0 0 0 000010000D0000053 + 110 0 0 2 0 0D0000054 + 110 41 0 0 0 0 0 000010000D0000055 + 110 0 0 2 0 0D0000056 + 110 43 0 0 0 0 0 000010000D0000057 + 110 0 0 2 0 0D0000058 + 110 45 0 0 0 0 0 000010000D0000059 + 110 0 0 1 0 0D0000060 + 110 46 0 0 0 0 0 000010000D0000061 + 110 0 0 1 0 0D0000062 + 144 47 0 0 0 0 0 000020000D0000063 + 144 0 -2195 1 0 0D0000064 + 128 48 0 0 0 0 0 000010000D0000065 + 128 0 0 4 0 0D0000066 + 142 52 0 0 0 0 0 000010500D0000067 + 142 0 0 1 0 0D0000068 + 102 53 0 0 0 0 0 000010000D0000069 + 102 0 0 1 0 0D0000070 + 110 54 0 0 0 0 0 000010000D0000071 + 110 0 -2195 1 0 0D0000072 + 110 55 0 0 0 0 0 000010000D0000073 + 110 0 -2195 1 0 0D0000074 + 110 56 0 0 0 0 0 000010000D0000075 + 110 0 -2195 1 0 0D0000076 + 110 57 0 0 0 0 0 000010000D0000077 + 110 0 -2195 1 0 0D0000078 + 102 58 0 0 0 0 0 000010000D0000079 + 102 0 0 1 0 0D0000080 + 110 59 0 0 0 0 0 000010000D0000081 + 110 0 0 1 0 0D0000082 + 110 60 0 0 0 0 0 000010000D0000083 + 110 0 0 2 0 0D0000084 + 110 62 0 0 0 0 0 000010000D0000085 + 110 0 0 1 0 0D0000086 + 110 63 0 0 0 0 0 000010000D0000087 + 110 0 0 1 0 0D0000088 + 144 64 0 0 0 0 0 000020000D0000089 + 144 0 -2195 1 0 0D0000090 + 128 65 0 0 0 0 0 000010000D0000091 + 128 0 0 4 0 0D0000092 + 142 69 0 0 0 0 0 000010500D0000093 + 142 0 0 1 0 0D0000094 + 102 70 0 0 0 0 0 000010000D0000095 + 102 0 0 1 0 0D0000096 + 110 71 0 0 0 0 0 000010000D0000097 + 110 0 -2195 1 0 0D0000098 + 110 72 0 0 0 0 0 000010000D0000099 + 110 0 -2195 1 0 0D0000100 + 110 73 0 0 0 0 0 000010000D0000101 + 110 0 -2195 1 0 0D0000102 + 110 74 0 0 0 0 0 000010000D0000103 + 110 0 -2195 1 0 0D0000104 + 110 75 0 0 0 0 0 000010000D0000105 + 110 0 -2195 1 0 0D0000106 + 110 76 0 0 0 0 0 000010000D0000107 + 110 0 -2195 1 0 0D0000108 + 110 77 0 0 0 0 0 000010000D0000109 + 110 0 -2195 1 0 0D0000110 + 110 78 0 0 0 0 0 000010000D0000111 + 110 0 -2195 1 0 0D0000112 + 102 79 0 0 0 0 0 000010000D0000113 + 102 0 0 1 0 0D0000114 + 110 80 0 0 0 0 0 000010000D0000115 + 110 0 0 2 0 0D0000116 + 110 82 0 0 0 0 0 000010000D0000117 + 110 0 0 2 0 0D0000118 + 110 84 0 0 0 0 0 000010000D0000119 + 110 0 0 1 0 0D0000120 + 110 85 0 0 0 0 0 000010000D0000121 + 110 0 0 1 0 0D0000122 + 110 86 0 0 0 0 0 000010000D0000123 + 110 0 0 1 0 0D0000124 + 110 87 0 0 0 0 0 000010000D0000125 + 110 0 0 1 0 0D0000126 + 110 88 0 0 0 0 0 000010000D0000127 + 110 0 0 1 0 0D0000128 + 110 89 0 0 0 0 0 000010000D0000129 + 110 0 0 1 0 0D0000130 + 144 90 0 0 0 0 0 000020000D0000131 + 144 0 -2195 1 0 0D0000132 + 128 91 0 0 0 0 0 000010000D0000133 + 128 0 0 4 0 0D0000134 + 142 95 0 0 0 0 0 000010500D0000135 + 142 0 0 1 0 0D0000136 + 102 96 0 0 0 0 0 000010000D0000137 + 102 0 0 1 0 0D0000138 + 126 97 0 0 0 0 0 000010000D0000139 + 126 0 -2195 3 0 0D0000140 + 110 100 0 0 0 0 0 000010000D0000141 + 110 0 -2195 1 0 0D0000142 + 110 101 0 0 0 0 0 000010000D0000143 + 110 0 -2195 1 0 0D0000144 + 110 102 0 0 0 0 0 000010000D0000145 + 110 0 -2195 1 0 0D0000146 + 110 103 0 0 0 0 0 000010000D0000147 + 110 0 -2195 1 0 0D0000148 + 126 104 0 0 0 0 0 000010000D0000149 + 126 0 -2195 2 0 0D0000150 + 102 106 0 0 0 0 0 000010000D0000151 + 102 0 0 1 0 0D0000152 + 110 107 0 0 0 0 0 000010000D0000153 + 110 0 0 2 0 0D0000154 + 110 109 0 0 0 0 0 000010000D0000155 + 110 0 0 1 0 0D0000156 + 110 110 0 0 0 0 0 000010000D0000157 + 110 0 0 1 0 0D0000158 + 110 111 0 0 0 0 0 000010000D0000159 + 110 0 0 1 0 0D0000160 + 110 112 0 0 0 0 0 000010000D0000161 + 110 0 0 1 0 0D0000162 + 110 113 0 0 0 0 0 000010000D0000163 + 110 0 0 2 0 0D0000164 + 144 115 0 0 0 0 0 000020000D0000165 + 144 0 -2195 1 0 0D0000166 + 128 116 0 0 0 0 0 000010000D0000167 + 128 0 0 4 0 0D0000168 + 142 120 0 0 0 0 0 000010500D0000169 + 142 0 0 1 0 0D0000170 + 102 121 0 0 0 0 0 000010000D0000171 + 102 0 0 1 0 0D0000172 + 110 122 0 0 0 0 0 000010000D0000173 + 110 0 -2195 1 0 0D0000174 + 110 123 0 0 0 0 0 000010000D0000175 + 110 0 -2195 1 0 0D0000176 + 110 124 0 0 0 0 0 000010000D0000177 + 110 0 -2195 1 0 0D0000178 + 110 125 0 0 0 0 0 000010000D0000179 + 110 0 -2195 1 0 0D0000180 + 102 126 0 0 0 0 0 000010000D0000181 + 102 0 0 1 0 0D0000182 + 110 127 0 0 0 0 0 000010000D0000183 + 110 0 0 2 0 0D0000184 + 110 129 0 0 0 0 0 000010000D0000185 + 110 0 0 2 0 0D0000186 + 110 131 0 0 0 0 0 000010000D0000187 + 110 0 0 1 0 0D0000188 + 110 132 0 0 0 0 0 000010000D0000189 + 110 0 0 2 0 0D0000190 + 144 134 0 0 0 0 0 000020000D0000191 + 144 0 -2195 1 0 0D0000192 + 128 135 0 0 0 0 0 000010000D0000193 + 128 0 0 5 0 0D0000194 + 142 140 0 0 0 0 0 000010500D0000195 + 142 0 0 1 0 0D0000196 + 102 141 0 0 0 0 0 000010000D0000197 + 102 0 0 1 0 0D0000198 + 110 142 0 0 0 0 0 000010000D0000199 + 110 0 -2195 1 0 0D0000200 + 110 143 0 0 0 0 0 000010000D0000201 + 110 0 -2195 1 0 0D0000202 + 110 144 0 0 0 0 0 000010000D0000203 + 110 0 -2195 1 0 0D0000204 + 110 145 0 0 0 0 0 000010000D0000205 + 110 0 -2195 1 0 0D0000206 + 102 146 0 0 0 0 0 000010000D0000207 + 102 0 0 1 0 0D0000208 + 110 147 0 0 0 0 0 000010000D0000209 + 110 0 0 1 0 0D0000210 + 110 148 0 0 0 0 0 000010000D0000211 + 110 0 0 1 0 0D0000212 + 110 149 0 0 0 0 0 000010000D0000213 + 110 0 0 1 0 0D0000214 + 110 150 0 0 0 0 0 000010000D0000215 + 110 0 0 1 0 0D0000216 + 144 151 0 0 0 0 0 000020000D0000217 + 144 0 -2195 1 0 0D0000218 + 128 152 0 0 0 0 0 000010000D0000219 + 128 0 0 5 0 0D0000220 + 142 157 0 0 0 0 0 000010500D0000221 + 142 0 0 1 0 0D0000222 + 102 158 0 0 0 0 0 000010000D0000223 + 102 0 0 1 0 0D0000224 + 110 159 0 0 0 0 0 000010000D0000225 + 110 0 -2195 1 0 0D0000226 + 110 160 0 0 0 0 0 000010000D0000227 + 110 0 -2195 1 0 0D0000228 + 110 161 0 0 0 0 0 000010000D0000229 + 110 0 -2195 1 0 0D0000230 + 110 162 0 0 0 0 0 000010000D0000231 + 110 0 -2195 1 0 0D0000232 + 102 163 0 0 0 0 0 000010000D0000233 + 102 0 0 1 0 0D0000234 + 110 164 0 0 0 0 0 000010000D0000235 + 110 0 0 2 0 0D0000236 + 110 166 0 0 0 0 0 000010000D0000237 + 110 0 0 1 0 0D0000238 + 110 167 0 0 0 0 0 000010000D0000239 + 110 0 0 1 0 0D0000240 + 110 168 0 0 0 0 0 000010000D0000241 + 110 0 0 2 0 0D0000242 + 144 170 0 0 0 0 0 000020000D0000243 + 144 0 -2195 1 0 0D0000244 + 128 171 0 0 0 0 0 000010000D0000245 + 128 0 0 5 0 0D0000246 + 142 176 0 0 0 0 0 000010500D0000247 + 142 0 0 1 0 0D0000248 + 102 177 0 0 0 0 0 000010000D0000249 + 102 0 0 1 0 0D0000250 + 110 178 0 0 0 0 0 000010000D0000251 + 110 0 -2195 1 0 0D0000252 + 110 179 0 0 0 0 0 000010000D0000253 + 110 0 -2195 1 0 0D0000254 + 110 180 0 0 0 0 0 000010000D0000255 + 110 0 -2195 1 0 0D0000256 + 110 181 0 0 0 0 0 000010000D0000257 + 110 0 -2195 1 0 0D0000258 + 102 182 0 0 0 0 0 000010000D0000259 + 102 0 0 1 0 0D0000260 + 110 183 0 0 0 0 0 000010000D0000261 + 110 0 0 2 0 0D0000262 + 110 185 0 0 0 0 0 000010000D0000263 + 110 0 0 2 0 0D0000264 + 110 187 0 0 0 0 0 000010000D0000265 + 110 0 0 1 0 0D0000266 + 110 188 0 0 0 0 0 000010000D0000267 + 110 0 0 2 0 0D0000268 + 144 190 0 0 0 0 0 000020000D0000269 + 144 0 -2195 1 0 0D0000270 + 128 191 0 0 0 0 0 000010000D0000271 + 128 0 0 5 0 0D0000272 + 142 196 0 0 0 0 0 000010500D0000273 + 142 0 0 1 0 0D0000274 + 102 197 0 0 0 0 0 000010000D0000275 + 102 0 0 1 0 0D0000276 + 110 198 0 0 0 0 0 000010000D0000277 + 110 0 -2195 1 0 0D0000278 + 110 199 0 0 0 0 0 000010000D0000279 + 110 0 -2195 1 0 0D0000280 + 110 200 0 0 0 0 0 000010000D0000281 + 110 0 -2195 1 0 0D0000282 + 110 201 0 0 0 0 0 000010000D0000283 + 110 0 -2195 1 0 0D0000284 + 102 202 0 0 0 0 0 000010000D0000285 + 102 0 0 1 0 0D0000286 + 110 203 0 0 0 0 0 000010000D0000287 + 110 0 0 2 0 0D0000288 + 110 205 0 0 0 0 0 000010000D0000289 + 110 0 0 2 0 0D0000290 + 110 207 0 0 0 0 0 000010000D0000291 + 110 0 0 2 0 0D0000292 + 110 209 0 0 0 0 0 000010000D0000293 + 110 0 0 2 0 0D0000294 + 144 211 0 0 0 0 0 000020000D0000295 + 144 0 -2195 1 0 0D0000296 + 128 212 0 0 0 0 0 000010000D0000297 + 128 0 0 4 0 0D0000298 + 142 216 0 0 0 0 0 000010500D0000299 + 142 0 0 1 0 0D0000300 + 102 217 0 0 0 0 0 000010000D0000301 + 102 0 0 1 0 0D0000302 + 110 218 0 0 0 0 0 000010000D0000303 + 110 0 -2195 1 0 0D0000304 + 110 219 0 0 0 0 0 000010000D0000305 + 110 0 -2195 1 0 0D0000306 + 110 220 0 0 0 0 0 000010000D0000307 + 110 0 -2195 1 0 0D0000308 + 110 221 0 0 0 0 0 000010000D0000309 + 110 0 -2195 1 0 0D0000310 + 110 222 0 0 0 0 0 000010000D0000311 + 110 0 -2195 1 0 0D0000312 + 110 223 0 0 0 0 0 000010000D0000313 + 110 0 -2195 1 0 0D0000314 + 110 224 0 0 0 0 0 000010000D0000315 + 110 0 -2195 1 0 0D0000316 + 110 225 0 0 0 0 0 000010000D0000317 + 110 0 -2195 1 0 0D0000318 + 102 226 0 0 0 0 0 000010000D0000319 + 102 0 0 1 0 0D0000320 + 110 227 0 0 0 0 0 000010000D0000321 + 110 0 0 2 0 0D0000322 + 110 229 0 0 0 0 0 000010000D0000323 + 110 0 0 2 0 0D0000324 + 110 231 0 0 0 0 0 000010000D0000325 + 110 0 0 2 0 0D0000326 + 110 233 0 0 0 0 0 000010000D0000327 + 110 0 0 2 0 0D0000328 + 110 235 0 0 0 0 0 000010000D0000329 + 110 0 0 2 0 0D0000330 + 110 237 0 0 0 0 0 000010000D0000331 + 110 0 0 2 0 0D0000332 + 110 239 0 0 0 0 0 000010000D0000333 + 110 0 0 2 0 0D0000334 + 110 241 0 0 0 0 0 000010000D0000335 + 110 0 0 2 0 0D0000336 + 144 243 0 0 0 0 0 000020000D0000337 + 144 0 -2195 1 0 0D0000338 + 128 244 0 0 0 0 0 000010000D0000339 + 128 0 0 4 0 0D0000340 + 142 248 0 0 0 0 0 000010500D0000341 + 142 0 0 1 0 0D0000342 + 102 249 0 0 0 0 0 000010000D0000343 + 102 0 0 1 0 0D0000344 + 126 250 0 0 0 0 0 000010000D0000345 + 126 0 -2195 4 0 0D0000346 + 110 254 0 0 0 0 0 000010000D0000347 + 110 0 -2195 1 0 0D0000348 + 110 255 0 0 0 0 0 000010000D0000349 + 110 0 -2195 1 0 0D0000350 + 110 256 0 0 0 0 0 000010000D0000351 + 110 0 -2195 1 0 0D0000352 + 110 257 0 0 0 0 0 000010000D0000353 + 110 0 -2195 1 0 0D0000354 + 126 258 0 0 0 0 0 000010000D0000355 + 126 0 -2195 2 0 0D0000356 + 102 260 0 0 0 0 0 000010000D0000357 + 102 0 0 1 0 0D0000358 + 110 261 0 0 0 0 0 000010000D0000359 + 110 0 0 2 0 0D0000360 + 110 263 0 0 0 0 0 000010000D0000361 + 110 0 0 2 0 0D0000362 + 110 265 0 0 0 0 0 000010000D0000363 + 110 0 0 1 0 0D0000364 + 110 266 0 0 0 0 0 000010000D0000365 + 110 0 0 2 0 0D0000366 + 110 268 0 0 0 0 0 000010000D0000367 + 110 0 0 2 0 0D0000368 + 110 270 0 0 0 0 0 000010000D0000369 + 110 0 0 2 0 0D0000370 + 144 272 0 0 0 0 0 000020000D0000371 + 144 0 -2195 1 0 0D0000372 + 128 273 0 0 0 0 0 000010000D0000373 + 128 0 0 4 0 0D0000374 + 142 277 0 0 0 0 0 000010500D0000375 + 142 0 0 1 0 0D0000376 + 102 278 0 0 0 0 0 000010000D0000377 + 102 0 0 1 0 0D0000378 + 110 279 0 0 0 0 0 000010000D0000379 + 110 0 -2195 1 0 0D0000380 + 110 280 0 0 0 0 0 000010000D0000381 + 110 0 -2195 1 0 0D0000382 + 110 281 0 0 0 0 0 000010000D0000383 + 110 0 -2195 1 0 0D0000384 + 110 282 0 0 0 0 0 000010000D0000385 + 110 0 -2195 1 0 0D0000386 + 102 283 0 0 0 0 0 000010000D0000387 + 102 0 0 1 0 0D0000388 + 110 284 0 0 0 0 0 000010000D0000389 + 110 0 0 1 0 0D0000390 + 110 285 0 0 0 0 0 000010000D0000391 + 110 0 0 2 0 0D0000392 + 110 287 0 0 0 0 0 000010000D0000393 + 110 0 0 2 0 0D0000394 + 110 289 0 0 0 0 0 000010000D0000395 + 110 0 0 1 0 0D0000396 + 144 290 0 0 0 0 0 000020000D0000397 + 144 0 -2195 1 0 0D0000398 + 128 291 0 0 0 0 0 000010000D0000399 + 128 0 0 5 0 0D0000400 + 142 296 0 0 0 0 0 000010500D0000401 + 142 0 0 1 0 0D0000402 + 102 297 0 0 0 0 0 000010000D0000403 + 102 0 0 1 0 0D0000404 + 110 298 0 0 0 0 0 000010000D0000405 + 110 0 -2195 1 0 0D0000406 + 110 299 0 0 0 0 0 000010000D0000407 + 110 0 -2195 1 0 0D0000408 + 110 300 0 0 0 0 0 000010000D0000409 + 110 0 -2195 1 0 0D0000410 + 110 301 0 0 0 0 0 000010000D0000411 + 110 0 -2195 1 0 0D0000412 + 110 302 0 0 0 0 0 000010000D0000413 + 110 0 -2195 1 0 0D0000414 + 110 303 0 0 0 0 0 000010000D0000415 + 110 0 -2195 1 0 0D0000416 + 102 304 0 0 0 0 0 000010000D0000417 + 102 0 0 1 0 0D0000418 + 110 305 0 0 0 0 0 000010000D0000419 + 110 0 0 2 0 0D0000420 + 110 307 0 0 0 0 0 000010000D0000421 + 110 0 0 2 0 0D0000422 + 110 309 0 0 0 0 0 000010000D0000423 + 110 0 0 1 0 0D0000424 + 110 310 0 0 0 0 0 000010000D0000425 + 110 0 0 1 0 0D0000426 + 110 311 0 0 0 0 0 000010000D0000427 + 110 0 0 2 0 0D0000428 + 110 313 0 0 0 0 0 000010000D0000429 + 110 0 0 2 0 0D0000430 + 144 315 0 0 0 0 0 000020000D0000431 + 144 0 -2195 1 0 0D0000432 + 128 316 0 0 0 0 0 000010000D0000433 + 128 0 0 7 0 0D0000434 + 142 323 0 0 0 0 0 000010500D0000435 + 142 0 0 1 0 0D0000436 + 102 324 0 0 0 0 0 000010000D0000437 + 102 0 0 1 0 0D0000438 + 110 325 0 0 0 0 0 000010000D0000439 + 110 0 -2195 1 0 0D0000440 + 110 326 0 0 0 0 0 000010000D0000441 + 110 0 -2195 2 0 0D0000442 + 110 328 0 0 0 0 0 000010000D0000443 + 110 0 -2195 1 0 0D0000444 + 110 329 0 0 0 0 0 000010000D0000445 + 110 0 -2195 1 0 0D0000446 + 110 330 0 0 0 0 0 000010000D0000447 + 110 0 -2195 1 0 0D0000448 + 110 331 0 0 0 0 0 000010000D0000449 + 110 0 -2195 1 0 0D0000450 + 102 332 0 0 0 0 0 000010000D0000451 + 102 0 0 1 0 0D0000452 + 126 333 0 0 0 0 0 000010000D0000453 + 126 0 0 3 0 0D0000454 + 110 336 0 0 0 0 0 000010000D0000455 + 110 0 0 2 0 0D0000456 + 110 338 0 0 0 0 0 000010000D0000457 + 110 0 0 2 0 0D0000458 + 110 340 0 0 0 0 0 000010000D0000459 + 110 0 0 2 0 0D0000460 + 126 342 0 0 0 0 0 000010000D0000461 + 126 0 0 3 0 0D0000462 + 110 345 0 0 0 0 0 000010000D0000463 + 110 0 0 2 0 0D0000464 + 144 347 0 0 0 0 0 000020000D0000465 + 144 0 -2195 1 0 0D0000466 + 128 348 0 0 0 0 0 000010000D0000467 + 128 0 0 6 0 0D0000468 + 142 354 0 0 0 0 0 000010500D0000469 + 142 0 0 1 0 0D0000470 + 102 355 0 0 0 0 0 000010000D0000471 + 102 0 0 1 0 0D0000472 + 126 356 0 0 0 0 0 000010000D0000473 + 126 0 -2195 3 0 0D0000474 + 126 359 0 0 0 0 0 000010000D0000475 + 126 0 -2195 3 0 0D0000476 + 102 362 0 0 0 0 0 000010000D0000477 + 102 0 0 1 0 0D0000478 + 110 363 0 0 0 0 0 000010000D0000479 + 110 0 0 2 0 0D0000480 + 110 365 0 0 0 0 0 000010000D0000481 + 110 0 0 2 0 0D0000482 + 144 367 0 0 0 0 0 000020000D0000483 + 144 0 -2195 1 0 0D0000484 + 128 368 0 0 0 0 0 000010000D0000485 + 128 0 0 5 0 0D0000486 + 142 373 0 0 0 0 0 000010500D0000487 + 142 0 0 1 0 0D0000488 + 102 374 0 0 0 0 0 000010000D0000489 + 102 0 0 1 0 0D0000490 + 110 375 0 0 0 0 0 000010000D0000491 + 110 0 -2195 1 0 0D0000492 + 126 376 0 0 0 0 0 000010000D0000493 + 126 0 -2195 3 0 0D0000494 + 110 379 0 0 0 0 0 000010000D0000495 + 110 0 -2195 1 0 0D0000496 + 126 380 0 0 0 0 0 000010000D0000497 + 126 0 -2195 2 0 0D0000498 + 102 382 0 0 0 0 0 000010000D0000499 + 102 0 0 1 0 0D0000500 + 110 383 0 0 0 0 0 000010000D0000501 + 110 0 0 2 0 0D0000502 + 110 385 0 0 0 0 0 000010000D0000503 + 110 0 0 2 0 0D0000504 + 110 387 0 0 0 0 0 000010000D0000505 + 110 0 0 2 0 0D0000506 + 110 389 0 0 0 0 0 000010000D0000507 + 110 0 0 2 0 0D0000508 + 144 391 0 0 0 0 0 000020000D0000509 + 144 0 -2195 1 0 0D0000510 + 128 392 0 0 0 0 0 000010000D0000511 + 128 0 0 5 0 0D0000512 + 142 397 0 0 0 0 0 000010500D0000513 + 142 0 0 1 0 0D0000514 + 102 398 0 0 0 0 0 000010000D0000515 + 102 0 0 1 0 0D0000516 + 110 399 0 0 0 0 0 000010000D0000517 + 110 0 -2195 1 0 0D0000518 + 126 400 0 0 0 0 0 000010000D0000519 + 126 0 -2195 3 0 0D0000520 + 110 403 0 0 0 0 0 000010000D0000521 + 110 0 -2195 1 0 0D0000522 + 126 404 0 0 0 0 0 000010000D0000523 + 126 0 -2195 3 0 0D0000524 + 102 407 0 0 0 0 0 000010000D0000525 + 102 0 0 1 0 0D0000526 + 110 408 0 0 0 0 0 000010000D0000527 + 110 0 0 2 0 0D0000528 + 110 410 0 0 0 0 0 000010000D0000529 + 110 0 0 2 0 0D0000530 + 110 412 0 0 0 0 0 000010000D0000531 + 110 0 0 2 0 0D0000532 + 110 414 0 0 0 0 0 000010000D0000533 + 110 0 0 2 0 0D0000534 + 144 416 0 0 0 0 0 000020000D0000535 + 144 0 -2195 1 0 0D0000536 + 128 417 0 0 0 0 0 000010000D0000537 + 128 0 0 4 0 0D0000538 + 142 421 0 0 0 0 0 000010500D0000539 + 142 0 0 1 0 0D0000540 + 102 422 0 0 0 0 0 000010000D0000541 + 102 0 0 1 0 0D0000542 + 110 423 0 0 0 0 0 000010000D0000543 + 110 0 -2195 1 0 0D0000544 + 110 424 0 0 0 0 0 000010000D0000545 + 110 0 -2195 1 0 0D0000546 + 110 425 0 0 0 0 0 000010000D0000547 + 110 0 -2195 1 0 0D0000548 + 110 426 0 0 0 0 0 000010000D0000549 + 110 0 -2195 1 0 0D0000550 + 102 427 0 0 0 0 0 000010000D0000551 + 102 0 0 1 0 0D0000552 + 110 428 0 0 0 0 0 000010000D0000553 + 110 0 0 2 0 0D0000554 + 110 430 0 0 0 0 0 000010000D0000555 + 110 0 0 2 0 0D0000556 + 110 432 0 0 0 0 0 000010000D0000557 + 110 0 0 2 0 0D0000558 + 110 434 0 0 0 0 0 000010000D0000559 + 110 0 0 2 0 0D0000560 + 142 436 0 0 0 0 0 000010500D0000561 + 142 0 0 1 0 0D0000562 + 102 437 0 0 0 0 0 000010000D0000563 + 102 0 0 1 0 0D0000564 + 110 438 0 0 0 0 0 000010000D0000565 + 110 0 -2195 1 0 0D0000566 + 110 439 0 0 0 0 0 000010000D0000567 + 110 0 -2195 1 0 0D0000568 + 110 440 0 0 0 0 0 000010000D0000569 + 110 0 -2195 1 0 0D0000570 + 110 441 0 0 0 0 0 000010000D0000571 + 110 0 -2195 1 0 0D0000572 + 102 442 0 0 0 0 0 000010000D0000573 + 102 0 0 1 0 0D0000574 + 110 443 0 0 0 0 0 000010000D0000575 + 110 0 0 1 0 0D0000576 + 110 444 0 0 0 0 0 000010000D0000577 + 110 0 0 1 0 0D0000578 + 110 445 0 0 0 0 0 000010000D0000579 + 110 0 0 1 0 0D0000580 + 110 446 0 0 0 0 0 000010000D0000581 + 110 0 0 1 0 0D0000582 + 144 447 0 0 0 0 0 000020000D0000583 + 144 0 -2195 1 0 0D0000584 + 128 448 0 0 0 0 0 000010000D0000585 + 128 0 0 5 0 0D0000586 + 142 453 0 0 0 0 0 000010500D0000587 + 142 0 0 1 0 0D0000588 + 102 454 0 0 0 0 0 000010000D0000589 + 102 0 0 1 0 0D0000590 + 110 455 0 0 0 0 0 000010000D0000591 + 110 0 -2195 1 0 0D0000592 + 110 456 0 0 0 0 0 000010000D0000593 + 110 0 -2195 1 0 0D0000594 + 110 457 0 0 0 0 0 000010000D0000595 + 110 0 -2195 1 0 0D0000596 + 110 458 0 0 0 0 0 000010000D0000597 + 110 0 -2195 1 0 0D0000598 + 102 459 0 0 0 0 0 000010000D0000599 + 102 0 0 1 0 0D0000600 + 110 460 0 0 0 0 0 000010000D0000601 + 110 0 0 2 0 0D0000602 + 110 462 0 0 0 0 0 000010000D0000603 + 110 0 0 2 0 0D0000604 + 110 464 0 0 0 0 0 000010000D0000605 + 110 0 0 2 0 0D0000606 + 110 466 0 0 0 0 0 000010000D0000607 + 110 0 0 2 0 0D0000608 + 144 468 0 0 0 0 0 000020000D0000609 + 144 0 -2195 1 0 0D0000610 + 128 469 0 0 0 0 0 000010000D0000611 + 128 0 0 6 0 0D0000612 + 142 475 0 0 0 0 0 000010500D0000613 + 142 0 0 1 0 0D0000614 + 102 476 0 0 0 0 0 000010000D0000615 + 102 0 0 1 0 0D0000616 + 110 477 0 0 0 0 0 000010000D0000617 + 110 0 -2195 1 0 0D0000618 + 126 478 0 0 0 0 0 000010000D0000619 + 126 0 -2195 4 0 0D0000620 + 110 482 0 0 0 0 0 000010000D0000621 + 110 0 -2195 1 0 0D0000622 + 126 483 0 0 0 0 0 000010000D0000623 + 126 0 -2195 3 0 0D0000624 + 102 486 0 0 0 0 0 000010000D0000625 + 102 0 0 1 0 0D0000626 + 110 487 0 0 0 0 0 000010000D0000627 + 110 0 0 2 0 0D0000628 + 110 489 0 0 0 0 0 000010000D0000629 + 110 0 0 2 0 0D0000630 + 110 491 0 0 0 0 0 000010000D0000631 + 110 0 0 2 0 0D0000632 + 110 493 0 0 0 0 0 000010000D0000633 + 110 0 0 2 0 0D0000634 + 144 495 0 0 0 0 0 000020000D0000635 + 144 0 -2195 1 0 0D0000636 + 128 496 0 0 0 0 0 000010000D0000637 + 128 0 0 5 0 0D0000638 + 142 501 0 0 0 0 0 000010500D0000639 + 142 0 0 1 0 0D0000640 + 102 502 0 0 0 0 0 000010000D0000641 + 102 0 0 1 0 0D0000642 + 126 503 0 0 0 0 0 000010000D0000643 + 126 0 -2195 3 0 0D0000644 + 110 506 0 0 0 0 0 000010000D0000645 + 110 0 -2195 2 0 0D0000646 + 126 508 0 0 0 0 0 000010000D0000647 + 126 0 -2195 3 0 0D0000648 + 102 511 0 0 0 0 0 000010000D0000649 + 102 0 0 1 0 0D0000650 + 110 512 0 0 0 0 0 000010000D0000651 + 110 0 0 2 0 0D0000652 + 110 514 0 0 0 0 0 000010000D0000653 + 110 0 0 2 0 0D0000654 + 110 516 0 0 0 0 0 000010000D0000655 + 110 0 0 2 0 0D0000656 + 144 518 0 0 0 0 0 000020000D0000657 + 144 0 -2195 1 0 0D0000658 + 128 519 0 0 0 0 0 000010000D0000659 + 128 0 0 5 0 0D0000660 + 142 524 0 0 0 0 0 000010500D0000661 + 142 0 0 1 0 0D0000662 + 102 525 0 0 0 0 0 000010000D0000663 + 102 0 0 1 0 0D0000664 + 110 526 0 0 0 0 0 000010000D0000665 + 110 0 -2195 1 0 0D0000666 + 110 527 0 0 0 0 0 000010000D0000667 + 110 0 -2195 1 0 0D0000668 + 110 528 0 0 0 0 0 000010000D0000669 + 110 0 -2195 1 0 0D0000670 + 110 529 0 0 0 0 0 000010000D0000671 + 110 0 -2195 1 0 0D0000672 + 102 530 0 0 0 0 0 000010000D0000673 + 102 0 0 1 0 0D0000674 + 110 531 0 0 0 0 0 000010000D0000675 + 110 0 0 1 0 0D0000676 + 110 532 0 0 0 0 0 000010000D0000677 + 110 0 0 2 0 0D0000678 + 110 534 0 0 0 0 0 000010000D0000679 + 110 0 0 2 0 0D0000680 + 110 536 0 0 0 0 0 000010000D0000681 + 110 0 0 1 0 0D0000682 + 144 537 0 0 0 0 0 000020000D0000683 + 144 0 -2195 1 0 0D0000684 + 128 538 0 0 0 0 0 000010000D0000685 + 128 0 0 5 0 0D0000686 + 142 543 0 0 0 0 0 000010500D0000687 + 142 0 0 1 0 0D0000688 + 102 544 0 0 0 0 0 000010000D0000689 + 102 0 0 1 0 0D0000690 + 110 545 0 0 0 0 0 000010000D0000691 + 110 0 -2195 1 0 0D0000692 + 110 546 0 0 0 0 0 000010000D0000693 + 110 0 -2195 1 0 0D0000694 + 110 547 0 0 0 0 0 000010000D0000695 + 110 0 -2195 1 0 0D0000696 + 110 548 0 0 0 0 0 000010000D0000697 + 110 0 -2195 1 0 0D0000698 + 102 549 0 0 0 0 0 000010000D0000699 + 102 0 0 1 0 0D0000700 + 110 550 0 0 0 0 0 000010000D0000701 + 110 0 0 2 0 0D0000702 + 110 552 0 0 0 0 0 000010000D0000703 + 110 0 0 2 0 0D0000704 + 110 554 0 0 0 0 0 000010000D0000705 + 110 0 0 1 0 0D0000706 + 110 555 0 0 0 0 0 000010000D0000707 + 110 0 0 1 0 0D0000708 + 144 556 0 0 0 0 0 000020000D0000709 + 144 0 -2195 1 0 0D0000710 + 128 557 0 0 0 0 0 000010000D0000711 + 128 0 0 4 0 0D0000712 + 142 561 0 0 0 0 0 000010500D0000713 + 142 0 0 1 0 0D0000714 + 102 562 0 0 0 0 0 000010000D0000715 + 102 0 0 1 0 0D0000716 + 110 563 0 0 0 0 0 000010000D0000717 + 110 0 -2195 1 0 0D0000718 + 110 564 0 0 0 0 0 000010000D0000719 + 110 0 -2195 1 0 0D0000720 + 110 565 0 0 0 0 0 000010000D0000721 + 110 0 -2195 1 0 0D0000722 + 110 566 0 0 0 0 0 000010000D0000723 + 110 0 -2195 1 0 0D0000724 + 102 567 0 0 0 0 0 000010000D0000725 + 102 0 0 1 0 0D0000726 + 110 568 0 0 0 0 0 000010000D0000727 + 110 0 0 1 0 0D0000728 + 110 569 0 0 0 0 0 000010000D0000729 + 110 0 0 1 0 0D0000730 + 110 570 0 0 0 0 0 000010000D0000731 + 110 0 0 1 0 0D0000732 + 110 571 0 0 0 0 0 000010000D0000733 + 110 0 0 1 0 0D0000734 + 144 572 0 0 0 0 0 000020000D0000735 + 144 0 -2195 1 0 0D0000736 + 128 573 0 0 0 0 0 000010000D0000737 + 128 0 0 4 0 0D0000738 + 142 577 0 0 0 0 0 000010500D0000739 + 142 0 0 1 0 0D0000740 + 102 578 0 0 0 0 0 000010000D0000741 + 102 0 0 1 0 0D0000742 + 110 579 0 0 0 0 0 000010000D0000743 + 110 0 -2195 1 0 0D0000744 + 110 580 0 0 0 0 0 000010000D0000745 + 110 0 -2195 1 0 0D0000746 + 110 581 0 0 0 0 0 000010000D0000747 + 110 0 -2195 1 0 0D0000748 + 110 582 0 0 0 0 0 000010000D0000749 + 110 0 -2195 1 0 0D0000750 + 102 583 0 0 0 0 0 000010000D0000751 + 102 0 0 1 0 0D0000752 + 110 584 0 0 0 0 0 000010000D0000753 + 110 0 0 1 0 0D0000754 + 110 585 0 0 0 0 0 000010000D0000755 + 110 0 0 1 0 0D0000756 + 110 586 0 0 0 0 0 000010000D0000757 + 110 0 0 1 0 0D0000758 + 110 587 0 0 0 0 0 000010000D0000759 + 110 0 0 1 0 0D0000760 + 144 588 0 0 0 0 0 000020000D0000761 + 144 0 -2195 1 0 0D0000762 + 128 589 0 0 0 0 0 000010000D0000763 + 128 0 0 6 0 0D0000764 + 142 595 0 0 0 0 0 000010500D0000765 + 142 0 0 1 0 0D0000766 + 102 596 0 0 0 0 0 000010000D0000767 + 102 0 0 1 0 0D0000768 + 126 597 0 0 0 0 0 000010000D0000769 + 126 0 -2195 3 0 0D0000770 + 126 600 0 0 0 0 0 000010000D0000771 + 126 0 -2195 3 0 0D0000772 + 102 603 0 0 0 0 0 000010000D0000773 + 102 0 0 1 0 0D0000774 + 110 604 0 0 0 0 0 000010000D0000775 + 110 0 0 2 0 0D0000776 + 110 606 0 0 0 0 0 000010000D0000777 + 110 0 0 2 0 0D0000778 + 144 608 0 0 0 0 0 000020000D0000779 + 144 0 -2195 1 0 0D0000780 + 128 609 0 0 0 0 0 000010000D0000781 + 128 0 0 7 0 0D0000782 + 142 616 0 0 0 0 0 000010500D0000783 + 142 0 0 1 0 0D0000784 + 102 617 0 0 0 0 0 000010000D0000785 + 102 0 0 1 0 0D0000786 + 110 618 0 0 0 0 0 000010000D0000787 + 110 0 -2195 1 0 0D0000788 + 126 619 0 0 0 0 0 000010000D0000789 + 126 0 -2195 4 0 0D0000790 + 110 623 0 0 0 0 0 000010000D0000791 + 110 0 -2195 1 0 0D0000792 + 126 624 0 0 0 0 0 000010000D0000793 + 126 0 -2195 3 0 0D0000794 + 102 627 0 0 0 0 0 000010000D0000795 + 102 0 0 1 0 0D0000796 + 110 628 0 0 0 0 0 000010000D0000797 + 110 0 0 2 0 0D0000798 + 110 630 0 0 0 0 0 000010000D0000799 + 110 0 0 2 0 0D0000800 + 110 632 0 0 0 0 0 000010000D0000801 + 110 0 0 2 0 0D0000802 + 110 634 0 0 0 0 0 000010000D0000803 + 110 0 0 2 0 0D0000804 + 144 636 0 0 0 0 0 000020000D0000805 + 144 0 -2195 1 0 0D0000806 + 128 637 0 0 0 0 0 000010000D0000807 + 128 0 0 5 0 0D0000808 + 142 642 0 0 0 0 0 000010500D0000809 + 142 0 0 1 0 0D0000810 + 102 643 0 0 0 0 0 000010000D0000811 + 102 0 0 1 0 0D0000812 + 110 644 0 0 0 0 0 000010000D0000813 + 110 0 -2195 1 0 0D0000814 + 110 645 0 0 0 0 0 000010000D0000815 + 110 0 -2195 1 0 0D0000816 + 110 646 0 0 0 0 0 000010000D0000817 + 110 0 -2195 1 0 0D0000818 + 110 647 0 0 0 0 0 000010000D0000819 + 110 0 -2195 1 0 0D0000820 + 102 648 0 0 0 0 0 000010000D0000821 + 102 0 0 1 0 0D0000822 + 110 649 0 0 0 0 0 000010000D0000823 + 110 0 0 2 0 0D0000824 + 110 651 0 0 0 0 0 000010000D0000825 + 110 0 0 1 0 0D0000826 + 110 652 0 0 0 0 0 000010000D0000827 + 110 0 0 1 0 0D0000828 + 110 653 0 0 0 0 0 000010000D0000829 + 110 0 0 2 0 0D0000830 + 144 655 0 0 0 0 0 000020000D0000831 + 144 0 -2195 1 0 0D0000832 + 128 656 0 0 0 0 0 000010000D0000833 + 128 0 0 6 0 0D0000834 + 142 662 0 0 0 0 0 000010500D0000835 + 142 0 0 1 0 0D0000836 + 102 663 0 0 0 0 0 000010000D0000837 + 102 0 0 1 0 0D0000838 + 110 664 0 0 0 0 0 000010000D0000839 + 110 0 -2195 1 0 0D0000840 + 110 665 0 0 0 0 0 000010000D0000841 + 110 0 -2195 1 0 0D0000842 + 110 666 0 0 0 0 0 000010000D0000843 + 110 0 -2195 1 0 0D0000844 + 110 667 0 0 0 0 0 000010000D0000845 + 110 0 -2195 2 0 0D0000846 + 102 669 0 0 0 0 0 000010000D0000847 + 102 0 0 1 0 0D0000848 + 110 670 0 0 0 0 0 000010000D0000849 + 110 0 0 2 0 0D0000850 + 110 672 0 0 0 0 0 000010000D0000851 + 110 0 0 2 0 0D0000852 + 110 674 0 0 0 0 0 000010000D0000853 + 110 0 0 2 0 0D0000854 + 110 676 0 0 0 0 0 000010000D0000855 + 110 0 0 2 0 0D0000856 + 144 678 0 0 0 0 0 000020000D0000857 + 144 0 -2195 1 0 0D0000858 + 128 679 0 0 0 0 0 000010000D0000859 + 128 0 0 6 0 0D0000860 + 142 685 0 0 0 0 0 000010500D0000861 + 142 0 0 1 0 0D0000862 + 102 686 0 0 0 0 0 000010000D0000863 + 102 0 0 1 0 0D0000864 + 110 687 0 0 0 0 0 000010000D0000865 + 110 0 -2195 1 0 0D0000866 + 110 688 0 0 0 0 0 000010000D0000867 + 110 0 -2195 2 0 0D0000868 + 110 690 0 0 0 0 0 000010000D0000869 + 110 0 -2195 1 0 0D0000870 + 110 691 0 0 0 0 0 000010000D0000871 + 110 0 -2195 1 0 0D0000872 + 102 692 0 0 0 0 0 000010000D0000873 + 102 0 0 1 0 0D0000874 + 110 693 0 0 0 0 0 000010000D0000875 + 110 0 0 2 0 0D0000876 + 110 695 0 0 0 0 0 000010000D0000877 + 110 0 0 2 0 0D0000878 + 110 697 0 0 0 0 0 000010000D0000879 + 110 0 0 2 0 0D0000880 + 110 699 0 0 0 0 0 000010000D0000881 + 110 0 0 2 0 0D0000882 + 144 701 0 0 0 0 0 000020000D0000883 + 144 0 -2195 1 0 0D0000884 + 128 702 0 0 0 0 0 000010000D0000885 + 128 0 0 6 0 0D0000886 + 142 708 0 0 0 0 0 000010500D0000887 + 142 0 0 1 0 0D0000888 + 102 709 0 0 0 0 0 000010000D0000889 + 102 0 0 1 0 0D0000890 + 110 710 0 0 0 0 0 000010000D0000891 + 110 0 -2195 1 0 0D0000892 + 110 711 0 0 0 0 0 000010000D0000893 + 110 0 -2195 2 0 0D0000894 + 110 713 0 0 0 0 0 000010000D0000895 + 110 0 -2195 2 0 0D0000896 + 110 715 0 0 0 0 0 000010000D0000897 + 110 0 -2195 2 0 0D0000898 + 102 717 0 0 0 0 0 000010000D0000899 + 102 0 0 1 0 0D0000900 + 110 718 0 0 0 0 0 000010000D0000901 + 110 0 0 2 0 0D0000902 + 110 720 0 0 0 0 0 000010000D0000903 + 110 0 0 2 0 0D0000904 + 110 722 0 0 0 0 0 000010000D0000905 + 110 0 0 2 0 0D0000906 + 110 724 0 0 0 0 0 000010000D0000907 + 110 0 0 2 0 0D0000908 + 144 726 0 0 0 0 0 000020000D0000909 + 144 0 -2195 1 0 0D0000910 + 128 727 0 0 0 0 0 000010000D0000911 + 128 0 0 6 0 0D0000912 + 142 733 0 0 0 0 0 000010500D0000913 + 142 0 0 1 0 0D0000914 + 102 734 0 0 0 0 0 000010000D0000915 + 102 0 0 1 0 0D0000916 + 110 735 0 0 0 0 0 000010000D0000917 + 110 0 -2195 1 0 0D0000918 + 110 736 0 0 0 0 0 000010000D0000919 + 110 0 -2195 2 0 0D0000920 + 110 738 0 0 0 0 0 000010000D0000921 + 110 0 -2195 2 0 0D0000922 + 110 740 0 0 0 0 0 000010000D0000923 + 110 0 -2195 1 0 0D0000924 + 110 741 0 0 0 0 0 000010000D0000925 + 110 0 -2195 1 0 0D0000926 + 102 742 0 0 0 0 0 000010000D0000927 + 102 0 0 1 0 0D0000928 + 110 743 0 0 0 0 0 000010000D0000929 + 110 0 0 2 0 0D0000930 + 110 745 0 0 0 0 0 000010000D0000931 + 110 0 0 2 0 0D0000932 + 110 747 0 0 0 0 0 000010000D0000933 + 110 0 0 2 0 0D0000934 + 110 749 0 0 0 0 0 000010000D0000935 + 110 0 0 2 0 0D0000936 + 110 751 0 0 0 0 0 000010000D0000937 + 110 0 0 2 0 0D0000938 + 142 753 0 0 0 0 0 000010500D0000939 + 142 0 0 1 0 0D0000940 + 102 754 0 0 0 0 0 000010000D0000941 + 102 0 0 1 0 0D0000942 + 110 755 0 0 0 0 0 000010000D0000943 + 110 0 -2195 1 0 0D0000944 + 110 756 0 0 0 0 0 000010000D0000945 + 110 0 -2195 1 0 0D0000946 + 110 757 0 0 0 0 0 000010000D0000947 + 110 0 -2195 1 0 0D0000948 + 110 758 0 0 0 0 0 000010000D0000949 + 110 0 -2195 1 0 0D0000950 + 102 759 0 0 0 0 0 000010000D0000951 + 102 0 0 1 0 0D0000952 + 110 760 0 0 0 0 0 000010000D0000953 + 110 0 0 2 0 0D0000954 + 110 762 0 0 0 0 0 000010000D0000955 + 110 0 0 2 0 0D0000956 + 110 764 0 0 0 0 0 000010000D0000957 + 110 0 0 2 0 0D0000958 + 110 766 0 0 0 0 0 000010000D0000959 + 110 0 0 2 0 0D0000960 + 144 768 0 0 0 0 0 000020000D0000961 + 144 0 -2195 1 0 0D0000962 + 128 769 0 0 0 0 0 000010000D0000963 + 128 0 0 6 0 0D0000964 + 142 775 0 0 0 0 0 000010500D0000965 + 142 0 0 1 0 0D0000966 + 102 776 0 0 0 0 0 000010000D0000967 + 102 0 0 1 0 0D0000968 + 110 777 0 0 0 0 0 000010000D0000969 + 110 0 -2195 1 0 0D0000970 + 110 778 0 0 0 0 0 000010000D0000971 + 110 0 -2195 2 0 0D0000972 + 110 780 0 0 0 0 0 000010000D0000973 + 110 0 -2195 1 0 0D0000974 + 110 781 0 0 0 0 0 000010000D0000975 + 110 0 -2195 1 0 0D0000976 + 102 782 0 0 0 0 0 000010000D0000977 + 102 0 0 1 0 0D0000978 + 110 783 0 0 0 0 0 000010000D0000979 + 110 0 0 2 0 0D0000980 + 110 785 0 0 0 0 0 000010000D0000981 + 110 0 0 2 0 0D0000982 + 110 787 0 0 0 0 0 000010000D0000983 + 110 0 0 2 0 0D0000984 + 110 789 0 0 0 0 0 000010000D0000985 + 110 0 0 2 0 0D0000986 + 144 791 0 0 0 0 0 000020000D0000987 + 144 0 -2195 1 0 0D0000988 + 128 792 0 0 0 0 0 000010000D0000989 + 128 0 0 6 0 0D0000990 + 142 798 0 0 0 0 0 000010500D0000991 + 142 0 0 1 0 0D0000992 + 102 799 0 0 0 0 0 000010000D0000993 + 102 0 0 1 0 0D0000994 + 110 800 0 0 0 0 0 000010000D0000995 + 110 0 -2195 1 0 0D0000996 + 110 801 0 0 0 0 0 000010000D0000997 + 110 0 -2195 1 0 0D0000998 + 110 802 0 0 0 0 0 000010000D0000999 + 110 0 -2195 1 0 0D0001000 + 110 803 0 0 0 0 0 000010000D0001001 + 110 0 -2195 1 0 0D0001002 + 102 804 0 0 0 0 0 000010000D0001003 + 102 0 0 1 0 0D0001004 + 110 805 0 0 0 0 0 000010000D0001005 + 110 0 0 2 0 0D0001006 + 110 807 0 0 0 0 0 000010000D0001007 + 110 0 0 2 0 0D0001008 + 110 809 0 0 0 0 0 000010000D0001009 + 110 0 0 2 0 0D0001010 + 110 811 0 0 0 0 0 000010000D0001011 + 110 0 0 2 0 0D0001012 + 144 813 0 0 0 0 0 000020000D0001013 + 144 0 -2195 1 0 0D0001014 + 128 814 0 0 0 0 0 000010000D0001015 + 128 0 0 6 0 0D0001016 + 142 820 0 0 0 0 0 000010500D0001017 + 142 0 0 1 0 0D0001018 + 102 821 0 0 0 0 0 000010000D0001019 + 102 0 0 1 0 0D0001020 + 110 822 0 0 0 0 0 000010000D0001021 + 110 0 -2195 1 0 0D0001022 + 110 823 0 0 0 0 0 000010000D0001023 + 110 0 -2195 2 0 0D0001024 + 110 825 0 0 0 0 0 000010000D0001025 + 110 0 -2195 2 0 0D0001026 + 110 827 0 0 0 0 0 000010000D0001027 + 110 0 -2195 2 0 0D0001028 + 102 829 0 0 0 0 0 000010000D0001029 + 102 0 0 1 0 0D0001030 + 110 830 0 0 0 0 0 000010000D0001031 + 110 0 0 2 0 0D0001032 + 110 832 0 0 0 0 0 000010000D0001033 + 110 0 0 2 0 0D0001034 + 110 834 0 0 0 0 0 000010000D0001035 + 110 0 0 2 0 0D0001036 + 110 836 0 0 0 0 0 000010000D0001037 + 110 0 0 2 0 0D0001038 + 144 838 0 0 0 0 0 000020000D0001039 + 144 0 -2195 1 0 0D0001040 + 128 839 0 0 0 0 0 000010000D0001041 + 128 0 0 6 0 0D0001042 + 142 845 0 0 0 0 0 000010500D0001043 + 142 0 0 1 0 0D0001044 + 102 846 0 0 0 0 0 000010000D0001045 + 102 0 0 1 0 0D0001046 + 110 847 0 0 0 0 0 000010000D0001047 + 110 0 -2195 1 0 0D0001048 + 110 848 0 0 0 0 0 000010000D0001049 + 110 0 -2195 1 0 0D0001050 + 110 849 0 0 0 0 0 000010000D0001051 + 110 0 -2195 2 0 0D0001052 + 110 851 0 0 0 0 0 000010000D0001053 + 110 0 -2195 2 0 0D0001054 + 102 853 0 0 0 0 0 000010000D0001055 + 102 0 0 1 0 0D0001056 + 110 854 0 0 0 0 0 000010000D0001057 + 110 0 0 2 0 0D0001058 + 110 856 0 0 0 0 0 000010000D0001059 + 110 0 0 2 0 0D0001060 + 110 858 0 0 0 0 0 000010000D0001061 + 110 0 0 2 0 0D0001062 + 110 860 0 0 0 0 0 000010000D0001063 + 110 0 0 2 0 0D0001064 + 144 862 0 0 0 0 0 000020000D0001065 + 144 0 -2195 1 0 0D0001066 + 128 863 0 0 0 0 0 000010000D0001067 + 128 0 0 6 0 0D0001068 + 142 869 0 0 0 0 0 000010500D0001069 + 142 0 0 1 0 0D0001070 + 102 870 0 0 0 0 0 000010000D0001071 + 102 0 0 1 0 0D0001072 + 110 871 0 0 0 0 0 000010000D0001073 + 110 0 -2195 2 0 0D0001074 + 110 873 0 0 0 0 0 000010000D0001075 + 110 0 -2195 1 0 0D0001076 + 110 874 0 0 0 0 0 000010000D0001077 + 110 0 -2195 1 0 0D0001078 + 110 875 0 0 0 0 0 000010000D0001079 + 110 0 -2195 2 0 0D0001080 + 102 877 0 0 0 0 0 000010000D0001081 + 102 0 0 1 0 0D0001082 + 110 878 0 0 0 0 0 000010000D0001083 + 110 0 0 2 0 0D0001084 + 110 880 0 0 0 0 0 000010000D0001085 + 110 0 0 2 0 0D0001086 + 110 882 0 0 0 0 0 000010000D0001087 + 110 0 0 2 0 0D0001088 + 110 884 0 0 0 0 0 000010000D0001089 + 110 0 0 2 0 0D0001090 + 142 886 0 0 0 0 0 000010500D0001091 + 142 0 0 1 0 0D0001092 + 102 887 0 0 0 0 0 000010000D0001093 + 102 0 0 1 0 0D0001094 + 110 888 0 0 0 0 0 000010000D0001095 + 110 0 -2195 1 0 0D0001096 + 110 889 0 0 0 0 0 000010000D0001097 + 110 0 -2195 1 0 0D0001098 + 110 890 0 0 0 0 0 000010000D0001099 + 110 0 -2195 1 0 0D0001100 + 110 891 0 0 0 0 0 000010000D0001101 + 110 0 -2195 1 0 0D0001102 + 102 892 0 0 0 0 0 000010000D0001103 + 102 0 0 1 0 0D0001104 + 110 893 0 0 0 0 0 000010000D0001105 + 110 0 0 2 0 0D0001106 + 110 895 0 0 0 0 0 000010000D0001107 + 110 0 0 2 0 0D0001108 + 110 897 0 0 0 0 0 000010000D0001109 + 110 0 0 2 0 0D0001110 + 110 899 0 0 0 0 0 000010000D0001111 + 110 0 0 2 0 0D0001112 + 144 901 0 0 0 0 0 000020000D0001113 + 144 0 -2195 1 0 0D0001114 + 128 902 0 0 0 0 0 000010000D0001115 + 128 0 0 6 0 0D0001116 + 142 908 0 0 0 0 0 000010500D0001117 + 142 0 0 1 0 0D0001118 + 102 909 0 0 0 0 0 000010000D0001119 + 102 0 0 1 0 0D0001120 + 110 910 0 0 0 0 0 000010000D0001121 + 110 0 -2195 2 0 0D0001122 + 110 912 0 0 0 0 0 000010000D0001123 + 110 0 -2195 2 0 0D0001124 + 110 914 0 0 0 0 0 000010000D0001125 + 110 0 -2195 1 0 0D0001126 + 110 915 0 0 0 0 0 000010000D0001127 + 110 0 -2195 2 0 0D0001128 + 102 917 0 0 0 0 0 000010000D0001129 + 102 0 0 1 0 0D0001130 + 110 918 0 0 0 0 0 000010000D0001131 + 110 0 0 2 0 0D0001132 + 110 920 0 0 0 0 0 000010000D0001133 + 110 0 0 2 0 0D0001134 + 110 922 0 0 0 0 0 000010000D0001135 + 110 0 0 2 0 0D0001136 + 110 924 0 0 0 0 0 000010000D0001137 + 110 0 0 2 0 0D0001138 + 144 926 0 0 0 0 0 000020000D0001139 + 144 0 -2195 1 0 0D0001140 + 128 927 0 0 0 0 0 000010000D0001141 + 128 0 0 6 0 0D0001142 + 142 933 0 0 0 0 0 000010500D0001143 + 142 0 0 1 0 0D0001144 + 102 934 0 0 0 0 0 000010000D0001145 + 102 0 0 1 0 0D0001146 + 110 935 0 0 0 0 0 000010000D0001147 + 110 0 -2195 2 0 0D0001148 + 110 937 0 0 0 0 0 000010000D0001149 + 110 0 -2195 1 0 0D0001150 + 110 938 0 0 0 0 0 000010000D0001151 + 110 0 -2195 1 0 0D0001152 + 110 939 0 0 0 0 0 000010000D0001153 + 110 0 -2195 2 0 0D0001154 + 102 941 0 0 0 0 0 000010000D0001155 + 102 0 0 1 0 0D0001156 + 110 942 0 0 0 0 0 000010000D0001157 + 110 0 0 2 0 0D0001158 + 110 944 0 0 0 0 0 000010000D0001159 + 110 0 0 2 0 0D0001160 + 110 946 0 0 0 0 0 000010000D0001161 + 110 0 0 2 0 0D0001162 + 110 948 0 0 0 0 0 000010000D0001163 + 110 0 0 2 0 0D0001164 + 142 950 0 0 0 0 0 000010500D0001165 + 142 0 0 1 0 0D0001166 + 102 951 0 0 0 0 0 000010000D0001167 + 102 0 0 1 0 0D0001168 + 110 952 0 0 0 0 0 000010000D0001169 + 110 0 -2195 1 0 0D0001170 + 110 953 0 0 0 0 0 000010000D0001171 + 110 0 -2195 1 0 0D0001172 + 110 954 0 0 0 0 0 000010000D0001173 + 110 0 -2195 1 0 0D0001174 + 110 955 0 0 0 0 0 000010000D0001175 + 110 0 -2195 1 0 0D0001176 + 102 956 0 0 0 0 0 000010000D0001177 + 102 0 0 1 0 0D0001178 + 110 957 0 0 0 0 0 000010000D0001179 + 110 0 0 2 0 0D0001180 + 110 959 0 0 0 0 0 000010000D0001181 + 110 0 0 2 0 0D0001182 + 110 961 0 0 0 0 0 000010000D0001183 + 110 0 0 2 0 0D0001184 + 110 963 0 0 0 0 0 000010000D0001185 + 110 0 0 2 0 0D0001186 + 144 965 0 0 0 0 0 000020000D0001187 + 144 0 -2195 1 0 0D0001188 + 128 966 0 0 0 0 0 000010000D0001189 + 128 0 0 6 0 0D0001190 + 142 972 0 0 0 0 0 000010500D0001191 + 142 0 0 1 0 0D0001192 + 102 973 0 0 0 0 0 000010000D0001193 + 102 0 0 1 0 0D0001194 + 110 974 0 0 0 0 0 000010000D0001195 + 110 0 -2195 2 0 0D0001196 + 110 976 0 0 0 0 0 000010000D0001197 + 110 0 -2195 1 0 0D0001198 + 110 977 0 0 0 0 0 000010000D0001199 + 110 0 -2195 1 0 0D0001200 + 110 978 0 0 0 0 0 000010000D0001201 + 110 0 -2195 1 0 0D0001202 + 110 979 0 0 0 0 0 000010000D0001203 + 110 0 -2195 2 0 0D0001204 + 102 981 0 0 0 0 0 000010000D0001205 + 102 0 0 1 0 0D0001206 + 110 982 0 0 0 0 0 000010000D0001207 + 110 0 0 2 0 0D0001208 + 110 984 0 0 0 0 0 000010000D0001209 + 110 0 0 2 0 0D0001210 + 110 986 0 0 0 0 0 000010000D0001211 + 110 0 0 2 0 0D0001212 + 110 988 0 0 0 0 0 000010000D0001213 + 110 0 0 2 0 0D0001214 + 110 990 0 0 0 0 0 000010000D0001215 + 110 0 0 2 0 0D0001216 + 142 992 0 0 0 0 0 000010500D0001217 + 142 0 0 1 0 0D0001218 + 102 993 0 0 0 0 0 000010000D0001219 + 102 0 0 1 0 0D0001220 + 110 994 0 0 0 0 0 000010000D0001221 + 110 0 -2195 1 0 0D0001222 + 110 995 0 0 0 0 0 000010000D0001223 + 110 0 -2195 1 0 0D0001224 + 110 996 0 0 0 0 0 000010000D0001225 + 110 0 -2195 1 0 0D0001226 + 110 997 0 0 0 0 0 000010000D0001227 + 110 0 -2195 1 0 0D0001228 + 102 998 0 0 0 0 0 000010000D0001229 + 102 0 0 1 0 0D0001230 + 110 999 0 0 0 0 0 000010000D0001231 + 110 0 0 2 0 0D0001232 + 110 1001 0 0 0 0 0 000010000D0001233 + 110 0 0 2 0 0D0001234 + 110 1003 0 0 0 0 0 000010000D0001235 + 110 0 0 2 0 0D0001236 + 110 1005 0 0 0 0 0 000010000D0001237 + 110 0 0 2 0 0D0001238 + 144 1007 0 0 0 0 0 000020000D0001239 + 144 0 -2195 1 0 0D0001240 + 128 1008 0 0 0 0 0 000010000D0001241 + 128 0 0 6 0 0D0001242 + 142 1014 0 0 0 0 0 000010500D0001243 + 142 0 0 1 0 0D0001244 + 102 1015 0 0 0 0 0 000010000D0001245 + 102 0 0 1 0 0D0001246 + 110 1016 0 0 0 0 0 000010000D0001247 + 110 0 -2195 1 0 0D0001248 + 110 1017 0 0 0 0 0 000010000D0001249 + 110 0 -2195 2 0 0D0001250 + 110 1019 0 0 0 0 0 000010000D0001251 + 110 0 -2195 1 0 0D0001252 + 110 1020 0 0 0 0 0 000010000D0001253 + 110 0 -2195 2 0 0D0001254 + 102 1022 0 0 0 0 0 000010000D0001255 + 102 0 0 1 0 0D0001256 + 110 1023 0 0 0 0 0 000010000D0001257 + 110 0 0 2 0 0D0001258 + 110 1025 0 0 0 0 0 000010000D0001259 + 110 0 0 2 0 0D0001260 + 110 1027 0 0 0 0 0 000010000D0001261 + 110 0 0 2 0 0D0001262 + 110 1029 0 0 0 0 0 000010000D0001263 + 110 0 0 2 0 0D0001264 + 144 1031 0 0 0 0 0 000020000D0001265 + 144 0 -2195 1 0 0D0001266 + 128 1032 0 0 0 0 0 000010000D0001267 + 128 0 0 7 0 0D0001268 + 142 1039 0 0 0 0 0 000010500D0001269 + 142 0 0 1 0 0D0001270 + 102 1040 0 0 0 0 0 000010000D0001271 + 102 0 0 1 0 0D0001272 + 110 1041 0 0 0 0 0 000010000D0001273 + 110 0 -2195 1 0 0D0001274 + 110 1042 0 0 0 0 0 000010000D0001275 + 110 0 -2195 2 0 0D0001276 + 110 1044 0 0 0 0 0 000010000D0001277 + 110 0 -2195 1 0 0D0001278 + 110 1045 0 0 0 0 0 000010000D0001279 + 110 0 -2195 1 0 0D0001280 + 102 1046 0 0 0 0 0 000010000D0001281 + 102 0 0 1 0 0D0001282 + 110 1047 0 0 0 0 0 000010000D0001283 + 110 0 0 2 0 0D0001284 + 110 1049 0 0 0 0 0 000010000D0001285 + 110 0 0 2 0 0D0001286 + 110 1051 0 0 0 0 0 000010000D0001287 + 110 0 0 2 0 0D0001288 + 110 1053 0 0 0 0 0 000010000D0001289 + 110 0 0 2 0 0D0001290 + 144 1055 0 0 0 0 0 000020000D0001291 + 144 0 -2195 1 0 0D0001292 + 128 1056 0 0 0 0 0 000010000D0001293 + 128 0 0 6 0 0D0001294 + 142 1062 0 0 0 0 0 000010500D0001295 + 142 0 0 1 0 0D0001296 + 102 1063 0 0 0 0 0 000010000D0001297 + 102 0 0 1 0 0D0001298 + 110 1064 0 0 0 0 0 000010000D0001299 + 110 0 -2195 1 0 0D0001300 + 110 1065 0 0 0 0 0 000010000D0001301 + 110 0 -2195 2 0 0D0001302 + 110 1067 0 0 0 0 0 000010000D0001303 + 110 0 -2195 2 0 0D0001304 + 110 1069 0 0 0 0 0 000010000D0001305 + 110 0 -2195 1 0 0D0001306 + 102 1070 0 0 0 0 0 000010000D0001307 + 102 0 0 1 0 0D0001308 + 110 1071 0 0 0 0 0 000010000D0001309 + 110 0 0 2 0 0D0001310 + 110 1073 0 0 0 0 0 000010000D0001311 + 110 0 0 2 0 0D0001312 + 110 1075 0 0 0 0 0 000010000D0001313 + 110 0 0 2 0 0D0001314 + 110 1077 0 0 0 0 0 000010000D0001315 + 110 0 0 2 0 0D0001316 + 144 1079 0 0 0 0 0 000020000D0001317 + 144 0 -2195 1 0 0D0001318 + 128 1080 0 0 0 0 0 000010000D0001319 + 128 0 0 7 0 0D0001320 + 142 1087 0 0 0 0 0 000010500D0001321 + 142 0 0 1 0 0D0001322 + 102 1088 0 0 0 0 0 000010000D0001323 + 102 0 0 1 0 0D0001324 + 110 1089 0 0 0 0 0 000010000D0001325 + 110 0 -2195 1 0 0D0001326 + 110 1090 0 0 0 0 0 000010000D0001327 + 110 0 -2195 2 0 0D0001328 + 110 1092 0 0 0 0 0 000010000D0001329 + 110 0 -2195 1 0 0D0001330 + 110 1093 0 0 0 0 0 000010000D0001331 + 110 0 -2195 1 0 0D0001332 + 102 1094 0 0 0 0 0 000010000D0001333 + 102 0 0 1 0 0D0001334 + 110 1095 0 0 0 0 0 000010000D0001335 + 110 0 0 2 0 0D0001336 + 110 1097 0 0 0 0 0 000010000D0001337 + 110 0 0 2 0 0D0001338 + 110 1099 0 0 0 0 0 000010000D0001339 + 110 0 0 2 0 0D0001340 + 110 1101 0 0 0 0 0 000010000D0001341 + 110 0 0 2 0 0D0001342 + 144 1103 0 0 0 0 0 000020000D0001343 + 144 0 -2195 1 0 0D0001344 + 128 1104 0 0 0 0 0 000010000D0001345 + 128 0 0 6 0 0D0001346 + 142 1110 0 0 0 0 0 000010500D0001347 + 142 0 0 1 0 0D0001348 + 102 1111 0 0 0 0 0 000010000D0001349 + 102 0 0 1 0 0D0001350 + 110 1112 0 0 0 0 0 000010000D0001351 + 110 0 -2195 1 0 0D0001352 + 110 1113 0 0 0 0 0 000010000D0001353 + 110 0 -2195 2 0 0D0001354 + 110 1115 0 0 0 0 0 000010000D0001355 + 110 0 -2195 1 0 0D0001356 + 110 1116 0 0 0 0 0 000010000D0001357 + 110 0 -2195 2 0 0D0001358 + 102 1118 0 0 0 0 0 000010000D0001359 + 102 0 0 1 0 0D0001360 + 110 1119 0 0 0 0 0 000010000D0001361 + 110 0 0 2 0 0D0001362 + 110 1121 0 0 0 0 0 000010000D0001363 + 110 0 0 2 0 0D0001364 + 110 1123 0 0 0 0 0 000010000D0001365 + 110 0 0 2 0 0D0001366 + 110 1125 0 0 0 0 0 000010000D0001367 + 110 0 0 2 0 0D0001368 + 144 1127 0 0 0 0 0 000020000D0001369 + 144 0 -2195 1 0 0D0001370 + 128 1128 0 0 0 0 0 000010000D0001371 + 128 0 0 5 0 0D0001372 + 142 1133 0 0 0 0 0 000010500D0001373 + 142 0 0 1 0 0D0001374 + 102 1134 0 0 0 0 0 000010000D0001375 + 102 0 0 1 0 0D0001376 + 110 1135 0 0 0 0 0 000010000D0001377 + 110 0 -2195 1 0 0D0001378 + 110 1136 0 0 0 0 0 000010000D0001379 + 110 0 -2195 2 0 0D0001380 + 110 1138 0 0 0 0 0 000010000D0001381 + 110 0 -2195 1 0 0D0001382 + 110 1139 0 0 0 0 0 000010000D0001383 + 110 0 -2195 1 0 0D0001384 + 102 1140 0 0 0 0 0 000010000D0001385 + 102 0 0 1 0 0D0001386 + 110 1141 0 0 0 0 0 000010000D0001387 + 110 0 0 2 0 0D0001388 + 110 1143 0 0 0 0 0 000010000D0001389 + 110 0 0 2 0 0D0001390 + 110 1145 0 0 0 0 0 000010000D0001391 + 110 0 0 2 0 0D0001392 + 110 1147 0 0 0 0 0 000010000D0001393 + 110 0 0 2 0 0D0001394 + 144 1149 0 0 0 0 0 000020000D0001395 + 144 0 -2195 1 0 0D0001396 + 128 1150 0 0 0 0 0 000010000D0001397 + 128 0 0 7 0 0D0001398 + 142 1157 0 0 0 0 0 000010500D0001399 + 142 0 0 1 0 0D0001400 + 102 1158 0 0 0 0 0 000010000D0001401 + 102 0 0 1 0 0D0001402 + 110 1159 0 0 0 0 0 000010000D0001403 + 110 0 -2195 1 0 0D0001404 + 110 1160 0 0 0 0 0 000010000D0001405 + 110 0 -2195 2 0 0D0001406 + 110 1162 0 0 0 0 0 000010000D0001407 + 110 0 -2195 2 0 0D0001408 + 110 1164 0 0 0 0 0 000010000D0001409 + 110 0 -2195 1 0 0D0001410 + 102 1165 0 0 0 0 0 000010000D0001411 + 102 0 0 1 0 0D0001412 + 110 1166 0 0 0 0 0 000010000D0001413 + 110 0 0 2 0 0D0001414 + 110 1168 0 0 0 0 0 000010000D0001415 + 110 0 0 2 0 0D0001416 + 110 1170 0 0 0 0 0 000010000D0001417 + 110 0 0 2 0 0D0001418 + 110 1172 0 0 0 0 0 000010000D0001419 + 110 0 0 2 0 0D0001420 + 144 1174 0 0 0 0 0 000020000D0001421 + 144 0 -2195 1 0 0D0001422 + 128 1175 0 0 0 0 0 000010000D0001423 + 128 0 0 7 0 0D0001424 + 142 1182 0 0 0 0 0 000010500D0001425 + 142 0 0 1 0 0D0001426 + 102 1183 0 0 0 0 0 000010000D0001427 + 102 0 0 1 0 0D0001428 + 110 1184 0 0 0 0 0 000010000D0001429 + 110 0 -2195 1 0 0D0001430 + 110 1185 0 0 0 0 0 000010000D0001431 + 110 0 -2195 2 0 0D0001432 + 110 1187 0 0 0 0 0 000010000D0001433 + 110 0 -2195 1 0 0D0001434 + 110 1188 0 0 0 0 0 000010000D0001435 + 110 0 -2195 1 0 0D0001436 + 102 1189 0 0 0 0 0 000010000D0001437 + 102 0 0 1 0 0D0001438 + 110 1190 0 0 0 0 0 000010000D0001439 + 110 0 0 2 0 0D0001440 + 110 1192 0 0 0 0 0 000010000D0001441 + 110 0 0 2 0 0D0001442 + 110 1194 0 0 0 0 0 000010000D0001443 + 110 0 0 2 0 0D0001444 + 110 1196 0 0 0 0 0 000010000D0001445 + 110 0 0 2 0 0D0001446 + 144 1198 0 0 0 0 0 000020000D0001447 + 144 0 -2195 1 0 0D0001448 + 128 1199 0 0 0 0 0 000010000D0001449 + 128 0 0 6 0 0D0001450 + 142 1205 0 0 0 0 0 000010500D0001451 + 142 0 0 1 0 0D0001452 + 102 1206 0 0 0 0 0 000010000D0001453 + 102 0 0 1 0 0D0001454 + 110 1207 0 0 0 0 0 000010000D0001455 + 110 0 -2195 1 0 0D0001456 + 110 1208 0 0 0 0 0 000010000D0001457 + 110 0 -2195 1 0 0D0001458 + 110 1209 0 0 0 0 0 000010000D0001459 + 110 0 -2195 1 0 0D0001460 + 110 1210 0 0 0 0 0 000010000D0001461 + 110 0 -2195 2 0 0D0001462 + 102 1212 0 0 0 0 0 000010000D0001463 + 102 0 0 1 0 0D0001464 + 110 1213 0 0 0 0 0 000010000D0001465 + 110 0 0 2 0 0D0001466 + 110 1215 0 0 0 0 0 000010000D0001467 + 110 0 0 2 0 0D0001468 + 110 1217 0 0 0 0 0 000010000D0001469 + 110 0 0 2 0 0D0001470 + 110 1219 0 0 0 0 0 000010000D0001471 + 110 0 0 2 0 0D0001472 + 144 1221 0 0 0 0 0 000020000D0001473 + 144 0 -2195 1 0 0D0001474 + 128 1222 0 0 0 0 0 000010000D0001475 + 128 0 0 6 0 0D0001476 + 142 1228 0 0 0 0 0 000010500D0001477 + 142 0 0 1 0 0D0001478 + 102 1229 0 0 0 0 0 000010000D0001479 + 102 0 0 1 0 0D0001480 + 110 1230 0 0 0 0 0 000010000D0001481 + 110 0 -2195 1 0 0D0001482 + 110 1231 0 0 0 0 0 000010000D0001483 + 110 0 -2195 2 0 0D0001484 + 110 1233 0 0 0 0 0 000010000D0001485 + 110 0 -2195 1 0 0D0001486 + 110 1234 0 0 0 0 0 000010000D0001487 + 110 0 -2195 1 0 0D0001488 + 102 1235 0 0 0 0 0 000010000D0001489 + 102 0 0 1 0 0D0001490 + 110 1236 0 0 0 0 0 000010000D0001491 + 110 0 0 2 0 0D0001492 + 110 1238 0 0 0 0 0 000010000D0001493 + 110 0 0 2 0 0D0001494 + 110 1240 0 0 0 0 0 000010000D0001495 + 110 0 0 2 0 0D0001496 + 110 1242 0 0 0 0 0 000010000D0001497 + 110 0 0 2 0 0D0001498 + 144 1244 0 0 0 0 0 000020000D0001499 + 144 0 -2195 1 0 0D0001500 + 128 1245 0 0 0 0 0 000010000D0001501 + 128 0 0 5 0 0D0001502 + 142 1250 0 0 0 0 0 000010500D0001503 + 142 0 0 1 0 0D0001504 + 102 1251 0 0 0 0 0 000010000D0001505 + 102 0 0 1 0 0D0001506 + 110 1252 0 0 0 0 0 000010000D0001507 + 110 0 -2195 1 0 0D0001508 + 110 1253 0 0 0 0 0 000010000D0001509 + 110 0 -2195 2 0 0D0001510 + 110 1255 0 0 0 0 0 000010000D0001511 + 110 0 -2195 1 0 0D0001512 + 110 1256 0 0 0 0 0 000010000D0001513 + 110 0 -2195 1 0 0D0001514 + 102 1257 0 0 0 0 0 000010000D0001515 + 102 0 0 1 0 0D0001516 + 110 1258 0 0 0 0 0 000010000D0001517 + 110 0 0 2 0 0D0001518 + 110 1260 0 0 0 0 0 000010000D0001519 + 110 0 0 2 0 0D0001520 + 110 1262 0 0 0 0 0 000010000D0001521 + 110 0 0 2 0 0D0001522 + 110 1264 0 0 0 0 0 000010000D0001523 + 110 0 0 2 0 0D0001524 + 144 1266 0 0 0 0 0 000020000D0001525 + 144 0 -2195 1 0 0D0001526 + 128 1267 0 0 0 0 0 000010000D0001527 + 128 0 0 6 0 0D0001528 + 142 1273 0 0 0 0 0 000010500D0001529 + 142 0 0 1 0 0D0001530 + 102 1274 0 0 0 0 0 000010000D0001531 + 102 0 0 1 0 0D0001532 + 110 1275 0 0 0 0 0 000010000D0001533 + 110 0 -2195 1 0 0D0001534 + 110 1276 0 0 0 0 0 000010000D0001535 + 110 0 -2195 1 0 0D0001536 + 110 1277 0 0 0 0 0 000010000D0001537 + 110 0 -2195 1 0 0D0001538 + 110 1278 0 0 0 0 0 000010000D0001539 + 110 0 -2195 1 0 0D0001540 + 102 1279 0 0 0 0 0 000010000D0001541 + 102 0 0 1 0 0D0001542 + 110 1280 0 0 0 0 0 000010000D0001543 + 110 0 0 2 0 0D0001544 + 110 1282 0 0 0 0 0 000010000D0001545 + 110 0 0 2 0 0D0001546 + 110 1284 0 0 0 0 0 000010000D0001547 + 110 0 0 2 0 0D0001548 + 110 1286 0 0 0 0 0 000010000D0001549 + 110 0 0 2 0 0D0001550 + 144 1288 0 0 0 0 0 000020000D0001551 + 144 0 -2195 1 0 0D0001552 + 128 1289 0 0 0 0 0 000010000D0001553 + 128 0 0 6 0 0D0001554 + 142 1295 0 0 0 0 0 000010500D0001555 + 142 0 0 1 0 0D0001556 + 102 1296 0 0 0 0 0 000010000D0001557 + 102 0 0 1 0 0D0001558 + 110 1297 0 0 0 0 0 000010000D0001559 + 110 0 -2195 1 0 0D0001560 + 110 1298 0 0 0 0 0 000010000D0001561 + 110 0 -2195 2 0 0D0001562 + 110 1300 0 0 0 0 0 000010000D0001563 + 110 0 -2195 2 0 0D0001564 + 110 1302 0 0 0 0 0 000010000D0001565 + 110 0 -2195 2 0 0D0001566 + 102 1304 0 0 0 0 0 000010000D0001567 + 102 0 0 1 0 0D0001568 + 110 1305 0 0 0 0 0 000010000D0001569 + 110 0 0 2 0 0D0001570 + 110 1307 0 0 0 0 0 000010000D0001571 + 110 0 0 2 0 0D0001572 + 110 1309 0 0 0 0 0 000010000D0001573 + 110 0 0 2 0 0D0001574 + 110 1311 0 0 0 0 0 000010000D0001575 + 110 0 0 2 0 0D0001576 + 144 1313 0 0 0 0 0 000020000D0001577 + 144 0 -2195 1 0 0D0001578 + 128 1314 0 0 0 0 0 000010000D0001579 + 128 0 0 6 0 0D0001580 + 142 1320 0 0 0 0 0 000010500D0001581 + 142 0 0 1 0 0D0001582 + 102 1321 0 0 0 0 0 000010000D0001583 + 102 0 0 1 0 0D0001584 + 110 1322 0 0 0 0 0 000010000D0001585 + 110 0 -2195 1 0 0D0001586 + 110 1323 0 0 0 0 0 000010000D0001587 + 110 0 -2195 2 0 0D0001588 + 110 1325 0 0 0 0 0 000010000D0001589 + 110 0 -2195 2 0 0D0001590 + 110 1327 0 0 0 0 0 000010000D0001591 + 110 0 -2195 2 0 0D0001592 + 102 1329 0 0 0 0 0 000010000D0001593 + 102 0 0 1 0 0D0001594 + 110 1330 0 0 0 0 0 000010000D0001595 + 110 0 0 2 0 0D0001596 + 110 1332 0 0 0 0 0 000010000D0001597 + 110 0 0 2 0 0D0001598 + 110 1334 0 0 0 0 0 000010000D0001599 + 110 0 0 2 0 0D0001600 + 110 1336 0 0 0 0 0 000010000D0001601 + 110 0 0 2 0 0D0001602 + 144 1338 0 0 0 0 0 000020000D0001603 + 144 0 -2195 1 0 0D0001604 + 128 1339 0 0 0 0 0 000010000D0001605 + 128 0 0 6 0 0D0001606 + 142 1345 0 0 0 0 0 000010500D0001607 + 142 0 0 1 0 0D0001608 + 102 1346 0 0 0 0 0 000010000D0001609 + 102 0 0 1 0 0D0001610 + 110 1347 0 0 0 0 0 000010000D0001611 + 110 0 -2195 1 0 0D0001612 + 110 1348 0 0 0 0 0 000010000D0001613 + 110 0 -2195 1 0 0D0001614 + 110 1349 0 0 0 0 0 000010000D0001615 + 110 0 -2195 2 0 0D0001616 + 110 1351 0 0 0 0 0 000010000D0001617 + 110 0 -2195 2 0 0D0001618 + 102 1353 0 0 0 0 0 000010000D0001619 + 102 0 0 1 0 0D0001620 + 110 1354 0 0 0 0 0 000010000D0001621 + 110 0 0 2 0 0D0001622 + 110 1356 0 0 0 0 0 000010000D0001623 + 110 0 0 2 0 0D0001624 + 110 1358 0 0 0 0 0 000010000D0001625 + 110 0 0 2 0 0D0001626 + 110 1360 0 0 0 0 0 000010000D0001627 + 110 0 0 2 0 0D0001628 + 144 1362 0 0 0 0 0 000020000D0001629 + 144 0 -2195 1 0 0D0001630 + 128 1363 0 0 0 0 0 000010000D0001631 + 128 0 0 6 0 0D0001632 + 142 1369 0 0 0 0 0 000010500D0001633 + 142 0 0 1 0 0D0001634 + 102 1370 0 0 0 0 0 000010000D0001635 + 102 0 0 1 0 0D0001636 + 110 1371 0 0 0 0 0 000010000D0001637 + 110 0 -2195 1 0 0D0001638 + 110 1372 0 0 0 0 0 000010000D0001639 + 110 0 -2195 1 0 0D0001640 + 110 1373 0 0 0 0 0 000010000D0001641 + 110 0 -2195 2 0 0D0001642 + 110 1375 0 0 0 0 0 000010000D0001643 + 110 0 -2195 1 0 0D0001644 + 102 1376 0 0 0 0 0 000010000D0001645 + 102 0 0 1 0 0D0001646 + 110 1377 0 0 0 0 0 000010000D0001647 + 110 0 0 2 0 0D0001648 + 110 1379 0 0 0 0 0 000010000D0001649 + 110 0 0 2 0 0D0001650 + 110 1381 0 0 0 0 0 000010000D0001651 + 110 0 0 2 0 0D0001652 + 110 1383 0 0 0 0 0 000010000D0001653 + 110 0 0 2 0 0D0001654 + 144 1385 0 0 0 0 0 000020000D0001655 + 144 0 -2195 1 0 0D0001656 + 128 1386 0 0 0 0 0 000010000D0001657 + 128 0 0 6 0 0D0001658 + 142 1392 0 0 0 0 0 000010500D0001659 + 142 0 0 1 0 0D0001660 + 102 1393 0 0 0 0 0 000010000D0001661 + 102 0 0 1 0 0D0001662 + 110 1394 0 0 0 0 0 000010000D0001663 + 110 0 -2195 1 0 0D0001664 + 110 1395 0 0 0 0 0 000010000D0001665 + 110 0 -2195 1 0 0D0001666 + 110 1396 0 0 0 0 0 000010000D0001667 + 110 0 -2195 1 0 0D0001668 + 110 1397 0 0 0 0 0 000010000D0001669 + 110 0 -2195 2 0 0D0001670 + 110 1399 0 0 0 0 0 000010000D0001671 + 110 0 -2195 2 0 0D0001672 + 110 1401 0 0 0 0 0 000010000D0001673 + 110 0 -2195 1 0 0D0001674 + 102 1402 0 0 0 0 0 000010000D0001675 + 102 0 0 1 0 0D0001676 + 110 1403 0 0 0 0 0 000010000D0001677 + 110 0 0 2 0 0D0001678 + 110 1405 0 0 0 0 0 000010000D0001679 + 110 0 0 2 0 0D0001680 + 110 1407 0 0 0 0 0 000010000D0001681 + 110 0 0 2 0 0D0001682 + 110 1409 0 0 0 0 0 000010000D0001683 + 110 0 0 2 0 0D0001684 + 110 1411 0 0 0 0 0 000010000D0001685 + 110 0 0 2 0 0D0001686 + 110 1413 0 0 0 0 0 000010000D0001687 + 110 0 0 2 0 0D0001688 + 144 1415 0 0 0 0 0 000020000D0001689 + 144 0 -2195 1 0 0D0001690 + 128 1416 0 0 0 0 0 000010000D0001691 + 128 0 0 6 0 0D0001692 + 142 1422 0 0 0 0 0 000010500D0001693 + 142 0 0 1 0 0D0001694 + 102 1423 0 0 0 0 0 000010000D0001695 + 102 0 0 1 0 0D0001696 + 110 1424 0 0 0 0 0 000010000D0001697 + 110 0 -2195 1 0 0D0001698 + 110 1425 0 0 0 0 0 000010000D0001699 + 110 0 -2195 2 0 0D0001700 + 110 1427 0 0 0 0 0 000010000D0001701 + 110 0 -2195 2 0 0D0001702 + 110 1429 0 0 0 0 0 000010000D0001703 + 110 0 -2195 1 0 0D0001704 + 102 1430 0 0 0 0 0 000010000D0001705 + 102 0 0 1 0 0D0001706 + 110 1431 0 0 0 0 0 000010000D0001707 + 110 0 0 2 0 0D0001708 + 110 1433 0 0 0 0 0 000010000D0001709 + 110 0 0 2 0 0D0001710 + 110 1435 0 0 0 0 0 000010000D0001711 + 110 0 0 2 0 0D0001712 + 110 1437 0 0 0 0 0 000010000D0001713 + 110 0 0 2 0 0D0001714 + 144 1439 0 0 0 0 0 000020000D0001715 + 144 0 -2195 1 0 0D0001716 + 128 1440 0 0 0 0 0 000010000D0001717 + 128 0 0 6 0 0D0001718 + 142 1446 0 0 0 0 0 000010500D0001719 + 142 0 0 1 0 0D0001720 + 102 1447 0 0 0 0 0 000010000D0001721 + 102 0 0 1 0 0D0001722 + 110 1448 0 0 0 0 0 000010000D0001723 + 110 0 -2195 1 0 0D0001724 + 110 1449 0 0 0 0 0 000010000D0001725 + 110 0 -2195 2 0 0D0001726 + 110 1451 0 0 0 0 0 000010000D0001727 + 110 0 -2195 2 0 0D0001728 + 110 1453 0 0 0 0 0 000010000D0001729 + 110 0 -2195 1 0 0D0001730 + 110 1454 0 0 0 0 0 000010000D0001731 + 110 0 -2195 1 0 0D0001732 + 110 1455 0 0 0 0 0 000010000D0001733 + 110 0 -2195 1 0 0D0001734 + 110 1456 0 0 0 0 0 000010000D0001735 + 110 0 -2195 1 0 0D0001736 + 110 1457 0 0 0 0 0 000010000D0001737 + 110 0 -2195 1 0 0D0001738 + 110 1458 0 0 0 0 0 000010000D0001739 + 110 0 -2195 1 0 0D0001740 + 102 1459 0 0 0 0 0 000010000D0001741 + 102 0 0 1 0 0D0001742 + 110 1460 0 0 0 0 0 000010000D0001743 + 110 0 0 2 0 0D0001744 + 110 1462 0 0 0 0 0 000010000D0001745 + 110 0 0 2 0 0D0001746 + 110 1464 0 0 0 0 0 000010000D0001747 + 110 0 0 2 0 0D0001748 + 110 1466 0 0 0 0 0 000010000D0001749 + 110 0 0 2 0 0D0001750 + 110 1468 0 0 0 0 0 000010000D0001751 + 110 0 0 2 0 0D0001752 + 110 1470 0 0 0 0 0 000010000D0001753 + 110 0 0 2 0 0D0001754 + 110 1472 0 0 0 0 0 000010000D0001755 + 110 0 0 2 0 0D0001756 + 110 1474 0 0 0 0 0 000010000D0001757 + 110 0 0 2 0 0D0001758 + 110 1476 0 0 0 0 0 000010000D0001759 + 110 0 0 2 0 0D0001760 + 144 1478 0 0 0 0 0 000020000D0001761 + 144 0 -2195 1 0 0D0001762 + 128 1479 0 0 0 0 0 000010000D0001763 + 128 0 0 6 0 0D0001764 + 142 1485 0 0 0 0 0 000010500D0001765 + 142 0 0 1 0 0D0001766 + 102 1486 0 0 0 0 0 000010000D0001767 + 102 0 0 1 0 0D0001768 + 110 1487 0 0 0 0 0 000010000D0001769 + 110 0 -2195 1 0 0D0001770 + 110 1488 0 0 0 0 0 000010000D0001771 + 110 0 -2195 1 0 0D0001772 + 110 1489 0 0 0 0 0 000010000D0001773 + 110 0 -2195 1 0 0D0001774 + 110 1490 0 0 0 0 0 000010000D0001775 + 110 0 -2195 2 0 0D0001776 + 110 1492 0 0 0 0 0 000010000D0001777 + 110 0 -2195 1 0 0D0001778 + 110 1493 0 0 0 0 0 000010000D0001779 + 110 0 -2195 1 0 0D0001780 + 102 1494 0 0 0 0 0 000010000D0001781 + 102 0 0 1 0 0D0001782 + 110 1495 0 0 0 0 0 000010000D0001783 + 110 0 0 2 0 0D0001784 + 110 1497 0 0 0 0 0 000010000D0001785 + 110 0 0 2 0 0D0001786 + 110 1499 0 0 0 0 0 000010000D0001787 + 110 0 0 2 0 0D0001788 + 110 1501 0 0 0 0 0 000010000D0001789 + 110 0 0 2 0 0D0001790 + 110 1503 0 0 0 0 0 000010000D0001791 + 110 0 0 2 0 0D0001792 + 110 1505 0 0 0 0 0 000010000D0001793 + 110 0 0 2 0 0D0001794 + 144 1507 0 0 0 0 0 000020000D0001795 + 144 0 -2195 1 0 0D0001796 + 128 1508 0 0 0 0 0 000010000D0001797 + 128 0 0 6 0 0D0001798 + 142 1514 0 0 0 0 0 000010500D0001799 + 142 0 0 1 0 0D0001800 + 102 1515 0 0 0 0 0 000010000D0001801 + 102 0 0 1 0 0D0001802 + 110 1516 0 0 0 0 0 000010000D0001803 + 110 0 -2195 2 0 0D0001804 + 110 1518 0 0 0 0 0 000010000D0001805 + 110 0 -2195 2 0 0D0001806 + 110 1520 0 0 0 0 0 000010000D0001807 + 110 0 -2195 1 0 0D0001808 + 110 1521 0 0 0 0 0 000010000D0001809 + 110 0 -2195 1 0 0D0001810 + 110 1522 0 0 0 0 0 000010000D0001811 + 110 0 -2195 1 0 0D0001812 + 110 1523 0 0 0 0 0 000010000D0001813 + 110 0 -2195 1 0 0D0001814 + 110 1524 0 0 0 0 0 000010000D0001815 + 110 0 -2195 1 0 0D0001816 + 110 1525 0 0 0 0 0 000010000D0001817 + 110 0 -2195 1 0 0D0001818 + 110 1526 0 0 0 0 0 000010000D0001819 + 110 0 -2195 1 0 0D0001820 + 102 1527 0 0 0 0 0 000010000D0001821 + 102 0 0 1 0 0D0001822 + 110 1528 0 0 0 0 0 000010000D0001823 + 110 0 0 2 0 0D0001824 + 110 1530 0 0 0 0 0 000010000D0001825 + 110 0 0 2 0 0D0001826 + 110 1532 0 0 0 0 0 000010000D0001827 + 110 0 0 2 0 0D0001828 + 110 1534 0 0 0 0 0 000010000D0001829 + 110 0 0 2 0 0D0001830 + 110 1536 0 0 0 0 0 000010000D0001831 + 110 0 0 2 0 0D0001832 + 110 1538 0 0 0 0 0 000010000D0001833 + 110 0 0 2 0 0D0001834 + 110 1540 0 0 0 0 0 000010000D0001835 + 110 0 0 2 0 0D0001836 + 110 1542 0 0 0 0 0 000010000D0001837 + 110 0 0 2 0 0D0001838 + 110 1544 0 0 0 0 0 000010000D0001839 + 110 0 0 2 0 0D0001840 + 144 1546 0 0 0 0 0 000020000D0001841 + 144 0 -2195 1 0 0D0001842 + 128 1547 0 0 0 0 0 000010000D0001843 + 128 0 0 6 0 0D0001844 + 142 1553 0 0 0 0 0 000010500D0001845 + 142 0 0 1 0 0D0001846 + 102 1554 0 0 0 0 0 000010000D0001847 + 102 0 0 1 0 0D0001848 + 110 1555 0 0 0 0 0 000010000D0001849 + 110 0 -2195 2 0 0D0001850 + 110 1557 0 0 0 0 0 000010000D0001851 + 110 0 -2195 2 0 0D0001852 + 110 1559 0 0 0 0 0 000010000D0001853 + 110 0 -2195 1 0 0D0001854 + 110 1560 0 0 0 0 0 000010000D0001855 + 110 0 -2195 1 0 0D0001856 + 102 1561 0 0 0 0 0 000010000D0001857 + 102 0 0 1 0 0D0001858 + 110 1562 0 0 0 0 0 000010000D0001859 + 110 0 0 2 0 0D0001860 + 110 1564 0 0 0 0 0 000010000D0001861 + 110 0 0 2 0 0D0001862 + 110 1566 0 0 0 0 0 000010000D0001863 + 110 0 0 2 0 0D0001864 + 110 1568 0 0 0 0 0 000010000D0001865 + 110 0 0 2 0 0D0001866 + 144 1570 0 0 0 0 0 000020000D0001867 + 144 0 -2195 1 0 0D0001868 + 128 1571 0 0 0 0 0 000010000D0001869 + 128 0 0 6 0 0D0001870 + 142 1577 0 0 0 0 0 000010500D0001871 + 142 0 0 1 0 0D0001872 + 102 1578 0 0 0 0 0 000010000D0001873 + 102 0 0 1 0 0D0001874 + 110 1579 0 0 0 0 0 000010000D0001875 + 110 0 -2195 2 0 0D0001876 + 110 1581 0 0 0 0 0 000010000D0001877 + 110 0 -2195 2 0 0D0001878 + 110 1583 0 0 0 0 0 000010000D0001879 + 110 0 -2195 2 0 0D0001880 + 110 1585 0 0 0 0 0 000010000D0001881 + 110 0 -2195 1 0 0D0001882 + 110 1586 0 0 0 0 0 000010000D0001883 + 110 0 -2195 1 0 0D0001884 + 110 1587 0 0 0 0 0 000010000D0001885 + 110 0 -2195 1 0 0D0001886 + 102 1588 0 0 0 0 0 000010000D0001887 + 102 0 0 1 0 0D0001888 + 110 1589 0 0 0 0 0 000010000D0001889 + 110 0 0 2 0 0D0001890 + 110 1591 0 0 0 0 0 000010000D0001891 + 110 0 0 2 0 0D0001892 + 110 1593 0 0 0 0 0 000010000D0001893 + 110 0 0 2 0 0D0001894 + 110 1595 0 0 0 0 0 000010000D0001895 + 110 0 0 2 0 0D0001896 + 110 1597 0 0 0 0 0 000010000D0001897 + 110 0 0 2 0 0D0001898 + 110 1599 0 0 0 0 0 000010000D0001899 + 110 0 0 2 0 0D0001900 + 144 1601 0 0 0 0 0 000020000D0001901 + 144 0 -2195 1 0 0D0001902 + 128 1602 0 0 0 0 0 000010000D0001903 + 128 0 0 5 0 0D0001904 + 142 1607 0 0 0 0 0 000010500D0001905 + 142 0 0 1 0 0D0001906 + 102 1608 0 0 0 0 0 000010000D0001907 + 102 0 0 1 0 0D0001908 + 110 1609 0 0 0 0 0 000010000D0001909 + 110 0 -2195 1 0 0D0001910 + 110 1610 0 0 0 0 0 000010000D0001911 + 110 0 -2195 1 0 0D0001912 + 110 1611 0 0 0 0 0 000010000D0001913 + 110 0 -2195 1 0 0D0001914 + 110 1612 0 0 0 0 0 000010000D0001915 + 110 0 -2195 1 0 0D0001916 + 102 1613 0 0 0 0 0 000010000D0001917 + 102 0 0 1 0 0D0001918 + 110 1614 0 0 0 0 0 000010000D0001919 + 110 0 0 2 0 0D0001920 + 110 1616 0 0 0 0 0 000010000D0001921 + 110 0 0 2 0 0D0001922 + 110 1618 0 0 0 0 0 000010000D0001923 + 110 0 0 2 0 0D0001924 + 110 1620 0 0 0 0 0 000010000D0001925 + 110 0 0 2 0 0D0001926 + 144 1622 0 0 0 0 0 000020000D0001927 + 144 0 -2195 1 0 0D0001928 + 128 1623 0 0 0 0 0 000010000D0001929 + 128 0 0 6 0 0D0001930 + 142 1629 0 0 0 0 0 000010500D0001931 + 142 0 0 1 0 0D0001932 + 102 1630 0 0 0 0 0 000010000D0001933 + 102 0 0 1 0 0D0001934 + 110 1631 0 0 0 0 0 000010000D0001935 + 110 0 -2195 1 0 0D0001936 + 110 1632 0 0 0 0 0 000010000D0001937 + 110 0 -2195 2 0 0D0001938 + 110 1634 0 0 0 0 0 000010000D0001939 + 110 0 -2195 2 0 0D0001940 + 110 1636 0 0 0 0 0 000010000D0001941 + 110 0 -2195 1 0 0D0001942 + 102 1637 0 0 0 0 0 000010000D0001943 + 102 0 0 1 0 0D0001944 + 110 1638 0 0 0 0 0 000010000D0001945 + 110 0 0 2 0 0D0001946 + 110 1640 0 0 0 0 0 000010000D0001947 + 110 0 0 2 0 0D0001948 + 110 1642 0 0 0 0 0 000010000D0001949 + 110 0 0 2 0 0D0001950 + 110 1644 0 0 0 0 0 000010000D0001951 + 110 0 0 2 0 0D0001952 + 144 1646 0 0 0 0 0 000020000D0001953 + 144 0 -2195 1 0 0D0001954 + 128 1647 0 0 0 0 0 000010000D0001955 + 128 0 0 6 0 0D0001956 + 142 1653 0 0 0 0 0 000010500D0001957 + 142 0 0 1 0 0D0001958 + 102 1654 0 0 0 0 0 000010000D0001959 + 102 0 0 1 0 0D0001960 + 110 1655 0 0 0 0 0 000010000D0001961 + 110 0 -2195 1 0 0D0001962 + 110 1656 0 0 0 0 0 000010000D0001963 + 110 0 -2195 2 0 0D0001964 + 110 1658 0 0 0 0 0 000010000D0001965 + 110 0 -2195 1 0 0D0001966 + 110 1659 0 0 0 0 0 000010000D0001967 + 110 0 -2195 1 0 0D0001968 + 102 1660 0 0 0 0 0 000010000D0001969 + 102 0 0 1 0 0D0001970 + 110 1661 0 0 0 0 0 000010000D0001971 + 110 0 0 2 0 0D0001972 + 110 1663 0 0 0 0 0 000010000D0001973 + 110 0 0 2 0 0D0001974 + 110 1665 0 0 0 0 0 000010000D0001975 + 110 0 0 2 0 0D0001976 + 110 1667 0 0 0 0 0 000010000D0001977 + 110 0 0 2 0 0D0001978 + 144 1669 0 0 0 0 0 000020000D0001979 + 144 0 -2195 1 0 0D0001980 + 128 1670 0 0 0 0 0 000010000D0001981 + 128 0 0 6 0 0D0001982 + 142 1676 0 0 0 0 0 000010500D0001983 + 142 0 0 1 0 0D0001984 + 102 1677 0 0 0 0 0 000010000D0001985 + 102 0 0 1 0 0D0001986 + 110 1678 0 0 0 0 0 000010000D0001987 + 110 0 -2195 1 0 0D0001988 + 110 1679 0 0 0 0 0 000010000D0001989 + 110 0 -2195 2 0 0D0001990 + 110 1681 0 0 0 0 0 000010000D0001991 + 110 0 -2195 2 0 0D0001992 + 110 1683 0 0 0 0 0 000010000D0001993 + 110 0 -2195 1 0 0D0001994 + 110 1684 0 0 0 0 0 000010000D0001995 + 110 0 -2195 1 0 0D0001996 + 110 1685 0 0 0 0 0 000010000D0001997 + 110 0 -2195 1 0 0D0001998 + 102 1686 0 0 0 0 0 000010000D0001999 + 102 0 0 1 0 0D0002000 + 110 1687 0 0 0 0 0 000010000D0002001 + 110 0 0 2 0 0D0002002 + 110 1689 0 0 0 0 0 000010000D0002003 + 110 0 0 2 0 0D0002004 + 110 1691 0 0 0 0 0 000010000D0002005 + 110 0 0 2 0 0D0002006 + 110 1693 0 0 0 0 0 000010000D0002007 + 110 0 0 2 0 0D0002008 + 110 1695 0 0 0 0 0 000010000D0002009 + 110 0 0 2 0 0D0002010 + 110 1697 0 0 0 0 0 000010000D0002011 + 110 0 0 2 0 0D0002012 + 144 1699 0 0 0 0 0 000020000D0002013 + 144 0 -2195 1 0 0D0002014 + 128 1700 0 0 0 0 0 000010000D0002015 + 128 0 0 5 0 0D0002016 + 142 1705 0 0 0 0 0 000010500D0002017 + 142 0 0 1 0 0D0002018 + 102 1706 0 0 0 0 0 000010000D0002019 + 102 0 0 1 0 0D0002020 + 110 1707 0 0 0 0 0 000010000D0002021 + 110 0 -2195 1 0 0D0002022 + 110 1708 0 0 0 0 0 000010000D0002023 + 110 0 -2195 2 0 0D0002024 + 110 1710 0 0 0 0 0 000010000D0002025 + 110 0 -2195 1 0 0D0002026 + 110 1711 0 0 0 0 0 000010000D0002027 + 110 0 -2195 1 0 0D0002028 + 102 1712 0 0 0 0 0 000010000D0002029 + 102 0 0 1 0 0D0002030 + 110 1713 0 0 0 0 0 000010000D0002031 + 110 0 0 2 0 0D0002032 + 110 1715 0 0 0 0 0 000010000D0002033 + 110 0 0 2 0 0D0002034 + 110 1717 0 0 0 0 0 000010000D0002035 + 110 0 0 2 0 0D0002036 + 110 1719 0 0 0 0 0 000010000D0002037 + 110 0 0 2 0 0D0002038 + 144 1721 0 0 0 0 0 000020000D0002039 + 144 0 -2195 1 0 0D0002040 + 128 1722 0 0 0 0 0 000010000D0002041 + 128 0 0 5 0 0D0002042 + 142 1727 0 0 0 0 0 000010500D0002043 + 142 0 0 1 0 0D0002044 + 102 1728 0 0 0 0 0 000010000D0002045 + 102 0 0 1 0 0D0002046 + 110 1729 0 0 0 0 0 000010000D0002047 + 110 0 -2195 1 0 0D0002048 + 110 1730 0 0 0 0 0 000010000D0002049 + 110 0 -2195 1 0 0D0002050 + 110 1731 0 0 0 0 0 000010000D0002051 + 110 0 -2195 1 0 0D0002052 + 110 1732 0 0 0 0 0 000010000D0002053 + 110 0 -2195 1 0 0D0002054 + 102 1733 0 0 0 0 0 000010000D0002055 + 102 0 0 1 0 0D0002056 + 110 1734 0 0 0 0 0 000010000D0002057 + 110 0 0 2 0 0D0002058 + 110 1736 0 0 0 0 0 000010000D0002059 + 110 0 0 2 0 0D0002060 + 110 1738 0 0 0 0 0 000010000D0002061 + 110 0 0 2 0 0D0002062 + 110 1740 0 0 0 0 0 000010000D0002063 + 110 0 0 2 0 0D0002064 + 144 1742 0 0 0 0 0 000020000D0002065 + 144 0 -2195 1 0 0D0002066 + 128 1743 0 0 0 0 0 000010000D0002067 + 128 0 0 6 0 0D0002068 + 142 1749 0 0 0 0 0 000010500D0002069 + 142 0 0 1 0 0D0002070 + 102 1750 0 0 0 0 0 000010000D0002071 + 102 0 0 1 0 0D0002072 + 110 1751 0 0 0 0 0 000010000D0002073 + 110 0 -2195 1 0 0D0002074 + 110 1752 0 0 0 0 0 000010000D0002075 + 110 0 -2195 1 0 0D0002076 + 110 1753 0 0 0 0 0 000010000D0002077 + 110 0 -2195 1 0 0D0002078 + 110 1754 0 0 0 0 0 000010000D0002079 + 110 0 -2195 1 0 0D0002080 + 102 1755 0 0 0 0 0 000010000D0002081 + 102 0 0 1 0 0D0002082 + 110 1756 0 0 0 0 0 000010000D0002083 + 110 0 0 2 0 0D0002084 + 110 1758 0 0 0 0 0 000010000D0002085 + 110 0 0 2 0 0D0002086 + 110 1760 0 0 0 0 0 000010000D0002087 + 110 0 0 2 0 0D0002088 + 110 1762 0 0 0 0 0 000010000D0002089 + 110 0 0 2 0 0D0002090 + 144 1764 0 0 0 0 0 000020000D0002091 + 144 0 -2195 1 0 0D0002092 + 128 1765 0 0 0 0 0 000010000D0002093 + 128 0 0 6 0 0D0002094 + 142 1771 0 0 0 0 0 000010500D0002095 + 142 0 0 1 0 0D0002096 + 102 1772 0 0 0 0 0 000010000D0002097 + 102 0 0 1 0 0D0002098 + 110 1773 0 0 0 0 0 000010000D0002099 + 110 0 -2195 2 0 0D0002100 + 110 1775 0 0 0 0 0 000010000D0002101 + 110 0 -2195 1 0 0D0002102 + 110 1776 0 0 0 0 0 000010000D0002103 + 110 0 -2195 1 0 0D0002104 + 110 1777 0 0 0 0 0 000010000D0002105 + 110 0 -2195 1 0 0D0002106 + 102 1778 0 0 0 0 0 000010000D0002107 + 102 0 0 1 0 0D0002108 + 110 1779 0 0 0 0 0 000010000D0002109 + 110 0 0 2 0 0D0002110 + 110 1781 0 0 0 0 0 000010000D0002111 + 110 0 0 2 0 0D0002112 + 110 1783 0 0 0 0 0 000010000D0002113 + 110 0 0 2 0 0D0002114 + 110 1785 0 0 0 0 0 000010000D0002115 + 110 0 0 2 0 0D0002116 + 144 1787 0 0 0 0 0 000020000D0002117 + 144 0 -2195 1 0 0D0002118 + 128 1788 0 0 0 0 0 000010000D0002119 + 128 0 0 6 0 0D0002120 + 142 1794 0 0 0 0 0 000010500D0002121 + 142 0 0 1 0 0D0002122 + 102 1795 0 0 0 0 0 000010000D0002123 + 102 0 0 1 0 0D0002124 + 110 1796 0 0 0 0 0 000010000D0002125 + 110 0 -2195 2 0 0D0002126 + 110 1798 0 0 0 0 0 000010000D0002127 + 110 0 -2195 1 0 0D0002128 + 110 1799 0 0 0 0 0 000010000D0002129 + 110 0 -2195 1 0 0D0002130 + 110 1800 0 0 0 0 0 000010000D0002131 + 110 0 -2195 1 0 0D0002132 + 102 1801 0 0 0 0 0 000010000D0002133 + 102 0 0 1 0 0D0002134 + 110 1802 0 0 0 0 0 000010000D0002135 + 110 0 0 2 0 0D0002136 + 110 1804 0 0 0 0 0 000010000D0002137 + 110 0 0 2 0 0D0002138 + 110 1806 0 0 0 0 0 000010000D0002139 + 110 0 0 2 0 0D0002140 + 110 1808 0 0 0 0 0 000010000D0002141 + 110 0 0 2 0 0D0002142 + 144 1810 0 0 0 0 0 000020000D0002143 + 144 0 -2195 1 0 0D0002144 + 128 1811 0 0 0 0 0 000010000D0002145 + 128 0 0 6 0 0D0002146 + 142 1817 0 0 0 0 0 000010500D0002147 + 142 0 0 1 0 0D0002148 + 102 1818 0 0 0 0 0 000010000D0002149 + 102 0 0 1 0 0D0002150 + 110 1819 0 0 0 0 0 000010000D0002151 + 110 0 -2195 1 0 0D0002152 + 110 1820 0 0 0 0 0 000010000D0002153 + 110 0 -2195 1 0 0D0002154 + 110 1821 0 0 0 0 0 000010000D0002155 + 110 0 -2195 1 0 0D0002156 + 110 1822 0 0 0 0 0 000010000D0002157 + 110 0 -2195 1 0 0D0002158 + 102 1823 0 0 0 0 0 000010000D0002159 + 102 0 0 1 0 0D0002160 + 110 1824 0 0 0 0 0 000010000D0002161 + 110 0 0 2 0 0D0002162 + 110 1826 0 0 0 0 0 000010000D0002163 + 110 0 0 2 0 0D0002164 + 110 1828 0 0 0 0 0 000010000D0002165 + 110 0 0 2 0 0D0002166 + 110 1830 0 0 0 0 0 000010000D0002167 + 110 0 0 2 0 0D0002168 + 144 1832 0 0 0 0 0 000020000D0002169 + 144 0 -2195 1 0 0D0002170 + 128 1833 0 0 0 0 0 000010000D0002171 + 128 0 0 6 0 0D0002172 + 142 1839 0 0 0 0 0 000010500D0002173 + 142 0 0 1 0 0D0002174 + 102 1840 0 0 0 0 0 000010000D0002175 + 102 0 0 1 0 0D0002176 + 110 1841 0 0 0 0 0 000010000D0002177 + 110 0 -2195 2 0 0D0002178 + 110 1843 0 0 0 0 0 000010000D0002179 + 110 0 -2195 1 0 0D0002180 + 110 1844 0 0 0 0 0 000010000D0002181 + 110 0 -2195 1 0 0D0002182 + 110 1845 0 0 0 0 0 000010000D0002183 + 110 0 -2195 2 0 0D0002184 + 102 1847 0 0 0 0 0 000010000D0002185 + 102 0 0 1 0 0D0002186 + 110 1848 0 0 0 0 0 000010000D0002187 + 110 0 0 2 0 0D0002188 + 110 1850 0 0 0 0 0 000010000D0002189 + 110 0 0 2 0 0D0002190 + 110 1852 0 0 0 0 0 000010000D0002191 + 110 0 0 2 0 0D0002192 + 110 1854 0 0 0 0 0 000010000D0002193 + 110 0 0 2 0 0D0002194 + 314 1856 0 0 0 0 0 000000200D0002195 + 314 0 0 1 0 0D0002196 +402,75,3,29,63,89,131,165,191,217,243,269,295,337,371,397,431, 0000001P0000001 +465,483,509,535,583,609,635,657,683,709,735,761,779,805,831,857, 0000001P0000002 +883,909,961,987,1013,1039,1065,1113,1139,1187,1239,1265,1291, 0000001P0000003 +1317,1343,1369,1395,1421,1447,1473,1499,1525,1551,1577,1603, 0000001P0000004 +1629,1655,1689,1715,1761,1795,1841,1867,1901,1927,1953,1979, 0000001P0000005 +2013,2039,2065,2091,2117,2143,2169; 0000001P0000006 +144,5,1,0,7; 0000003P0000007 +128,1,1,1,1,0,0,1,0,0,-0.4499991,-0.4499991,0.,0.,-0.3999992, 0000005P0000008 +-0.3999992,0.,0.,1.,1.,1.,1.,0.90499976,-0.1999996,0.2627, 0000005P0000009 +1.35499886,-0.1999996,0.2627,0.90499976,0.1999996,0.2627, 0000005P0000010 +1.35499886,0.1999996,0.2627,-0.4499991,0.,-0.3999992,0.; 0000005P0000011 +142,0,5,9,19,3; 0000007P0000012 +102,4,11,13,15,17; 0000009P0000013 +110,-0.4499991,-0.3999992,0.,0.,-0.3999992,0.; 0000011P0000014 +110,0.,-0.3999992,0.,0.,0.,0.; 0000013P0000015 +110,0.,0.,0.,-0.4499991,0.,0.; 0000015P0000016 +110,-0.4499991,0.,0.,-0.4499991,-0.3999992,0.; 0000017P0000017 +102,4,21,23,25,27; 0000019P0000018 +110,0.90499976,-0.1999996,0.2627,1.35499886,-0.1999996,0.2627; 0000021P0000019 +110,1.35499886,-0.1999996,0.2627,1.35499886,0.1999996,0.2627; 0000023P0000020 +110,1.35499886,0.1999996,0.2627,0.90499976,0.1999996,0.2627; 0000025P0000021 +110,0.90499976,0.1999996,0.2627,0.90499976,-0.1999996,0.2627; 0000027P0000022 +144,31,1,0,33; 0000029P0000023 +128,1,1,1,1,0,0,1,0,0,-0.25,-0.25,0.,0.,-0.4499991,-0.4499991, 0000031P0000024 +0.,0.,1.,1.,1.,1.,0.90499976,-0.1999996,0.2627,0.90499976, 0000031P0000025 +-0.1999996,1.27E-02,1.35499886,-0.1999996,0.2627,1.35499886, 0000031P0000026 +-0.1999996,1.27E-02,-0.25,0.,-0.4499991,0.; 0000031P0000027 +142,0,31,35,49,3; 0000033P0000028 +102,6,37,39,41,43,45,47; 0000035P0000029 +110,-0.25,-0.4499991,0.,-0.24800776,-0.4499991,0.; 0000037P0000030 +110,-0.24800776,-0.4499991,0.,-0.248006266,-0.4499991,0.; 0000039P0000031 +110,-0.248006266,-0.4499991,0.,2.775557562E-17,-0.4499991,0.; 0000041P0000032 +110,0.,-0.4499991,0.,0.,0.,0.; 0000043P0000033 +110,0.,0.,0.,-0.25,0.,0.; 0000045P0000034 +110,-0.25,0.,0.,-0.25,-0.4499991,0.; 0000047P0000035 +102,6,51,53,55,57,59,61; 0000049P0000036 +110,0.90499976,-0.1999996,0.2627,0.90499976,-0.1999996, 0000051P0000037 +0.26070776; 0000051P0000038 +110,0.90499976,-0.1999996,0.26070776,0.90499976,-0.1999996, 0000053P0000039 +0.260706266; 0000053P0000040 +110,0.90499976,-0.1999996,0.260706266,0.90499976,-0.1999996, 0000055P0000041 +1.27E-02; 0000055P0000042 +110,0.90499976,-0.1999996,1.27E-02,1.35499886,-0.1999996, 0000057P0000043 +1.27E-02; 0000057P0000044 +110,1.35499886,-0.1999996,1.27E-02,1.35499886,-0.1999996,0.2627; 0000059P0000045 +110,1.35499886,-0.1999996,0.2627,0.90499976,-0.1999996,0.2627; 0000061P0000046 +144,65,1,0,67; 0000063P0000047 +128,1,1,1,1,0,0,1,0,0,-0.25,-0.25,0.,0.,-0.3999992,-0.3999992, 0000065P0000048 +0.,0.,1.,1.,1.,1.,1.35499886,-0.1999996,0.2627,1.35499886, 0000065P0000049 +-0.1999996,1.27E-02,1.35499886,0.1999996,0.2627,1.35499886, 0000065P0000050 +0.1999996,1.27E-02,-0.25,0.,-0.3999992,0.; 0000065P0000051 +142,0,65,69,79,3; 0000067P0000052 +102,4,71,73,75,77; 0000069P0000053 +110,-0.25,-0.3999992,0.,0.,-0.3999992,0.; 0000071P0000054 +110,0.,-0.3999992,0.,0.,0.,0.; 0000073P0000055 +110,0.,0.,0.,-0.25,0.,0.; 0000075P0000056 +110,-0.25,0.,0.,-0.25,-0.3999992,0.; 0000077P0000057 +102,4,81,83,85,87; 0000079P0000058 +110,1.35499886,-0.1999996,0.2627,1.35499886,-0.1999996,1.27E-02; 0000081P0000059 +110,1.35499886,-0.1999996,1.27E-02,1.35499886,0.1999996, 0000083P0000060 +1.27E-02; 0000083P0000061 +110,1.35499886,0.1999996,1.27E-02,1.35499886,0.1999996,0.2627; 0000085P0000062 +110,1.35499886,0.1999996,0.2627,1.35499886,-0.1999996,0.2627; 0000087P0000063 +144,91,1,0,93; 0000089P0000064 +128,1,1,1,1,0,0,1,0,0,-1.79999894,-1.79999894,0.,0.,-1.34999984, 0000091P0000065 +-1.34999984,0.,0.,1.,1.,1.,1.,0.90499976,-0.67499992,0.2627, 0000091P0000066 +-0.89499918,-0.67499992,0.2627,0.90499976,0.67499992,0.2627, 0000091P0000067 +-0.89499918,0.67499992,0.2627,-1.79999894,0.,-1.34999984,0.; 0000091P0000068 +142,0,91,95,113,3; 0000093P0000069 +102,8,97,99,101,103,105,107,109,111; 0000095P0000070 +110,-1.79999894,-1.34999984,0.,0.,-1.34999984,0.; 0000097P0000071 +110,0.,-1.34999984,0.,0.,-0.87499952,0.; 0000099P0000072 +110,0.,-0.87499952,0.,0.,-0.47500032,0.; 0000101P0000073 +110,0.,-0.47500032,0.,0.,0.,0.; 0000103P0000074 +110,0.,0.,0.,-1.79999894,0.,0.; 0000105P0000075 +110,-1.79999894,0.,0.,-1.79999894,-0.47500032,0.; 0000107P0000076 +110,-1.79999894,-0.47500032,0.,-1.79999894,-0.87499952,0.; 0000109P0000077 +110,-1.79999894,-0.87499952,0.,-1.79999894,-1.34999984,0.; 0000111P0000078 +102,8,115,117,119,121,123,125,127,129; 0000113P0000079 +110,0.90499976,-0.67499992,0.2627,-0.89499918,-0.67499992, 0000115P0000080 +0.2627; 0000115P0000081 +110,-0.89499918,-0.67499992,0.2627,-0.89499918,-0.1999996, 0000117P0000082 +0.2627; 0000117P0000083 +110,-0.89499918,-0.1999996,0.2627,-0.89499918,0.1999996,0.2627; 0000119P0000084 +110,-0.89499918,0.1999996,0.2627,-0.89499918,0.67499992,0.2627; 0000121P0000085 +110,-0.89499918,0.67499992,0.2627,0.90499976,0.67499992,0.2627; 0000123P0000086 +110,0.90499976,0.67499992,0.2627,0.90499976,0.1999996,0.2627; 0000125P0000087 +110,0.90499976,0.1999996,0.2627,0.90499976,-0.1999996,0.2627; 0000127P0000088 +110,0.90499976,-0.1999996,0.2627,0.90499976,-0.67499992,0.2627; 0000129P0000089 +144,133,1,0,135; 0000131P0000090 +128,1,1,1,1,0,0,1,0,0,0.,0.,0.25,0.25,0.,0.,0.4499991,0.4499991, 0000133P0000091 +1.,1.,1.,1.,0.90499976,0.1999996,1.27E-02,0.90499976,0.1999996, 0000133P0000092 +0.2627,1.35499886,0.1999996,1.27E-02,1.35499886,0.1999996, 0000133P0000093 +0.2627,0.,0.25,0.,0.4499991; 0000133P0000094 +142,0,133,137,151,3; 0000135P0000095 +102,6,139,141,143,145,147,149; 0000137P0000096 +126,1,1,1,0,1,0,2.181367433E-10,2.181367433E-10,1.466969666E-06, 0000139P0000097 +1.466969666E-06,1.,1.,0.248006307,1.398872219E-07,0.,0.24800776, 0000139P0000098 +-6.694986185E-12,-0.,2.181367433E-10,1.466969666E-06,0.,0.,1.; 0000139P0000099 +110,0.24800776,0.,0.,0.25,0.,0.; 0000141P0000100 +110,0.25,0.,0.,0.25,0.4499991,0.; 0000143P0000101 +110,0.25,0.4499991,0.,0.,0.4499991,0.; 0000145P0000102 +110,0.,0.4499991,0.,0.,0.,0.; 0000147P0000103 +126,1,1,1,0,1,0,0.,0.,0.248006293,0.248006293,1.,1.,0.,0.,0., 0000149P0000104 +0.248006307,1.398872219E-07,0.,0.,0.248006293,0.,0.,1.; 0000149P0000105 +102,6,153,155,157,159,161,163; 0000151P0000106 +110,0.90500004,0.1999996,0.26070632,0.90499976,0.1999996, 0000153P0000107 +0.26070776; 0000153P0000108 +110,0.90499976,0.1999996,0.26070776,0.90499976,0.1999996,0.2627; 0000155P0000109 +110,0.90499976,0.1999996,0.2627,1.35499886,0.1999996,0.2627; 0000157P0000110 +110,1.35499886,0.1999996,0.2627,1.35499886,0.1999996,1.27E-02; 0000159P0000111 +110,1.35499886,0.1999996,1.27E-02,0.90499976,0.1999996,1.27E-02; 0000161P0000112 +110,0.90499976,0.1999996,1.27E-02,0.90499976,0.1999996, 0000163P0000113 +0.260706293; 0000163P0000114 +144,167,1,0,169; 0000165P0000115 +128,1,1,1,1,0,0,1,0,0,-0.4499991,-0.4499991,0.,0.,-0.3999992, 0000167P0000116 +-0.3999992,0.,0.,1.,1.,1.,1.,0.90499976,-0.1999996,1.27E-02, 0000167P0000117 +1.35499886,-0.1999996,1.27E-02,0.90499976,0.1999996,1.27E-02, 0000167P0000118 +1.35499886,0.1999996,1.27E-02,-0.4499991,0.,-0.3999992,0.; 0000167P0000119 +142,0,167,171,181,3; 0000169P0000120 +102,4,173,175,177,179; 0000171P0000121 +110,-0.4499991,-0.3999992,0.,0.,-0.3999992,0.; 0000173P0000122 +110,0.,-0.3999992,0.,0.,0.,0.; 0000175P0000123 +110,0.,0.,0.,-0.4499991,0.,0.; 0000177P0000124 +110,-0.4499991,0.,0.,-0.4499991,-0.3999992,0.; 0000179P0000125 +102,4,183,185,187,189; 0000181P0000126 +110,0.90499976,-0.1999996,1.27E-02,1.35499886,-0.1999996, 0000183P0000127 +1.27E-02; 0000183P0000128 +110,1.35499886,-0.1999996,1.27E-02,1.35499886,0.1999996, 0000185P0000129 +1.27E-02; 0000185P0000130 +110,1.35499886,0.1999996,1.27E-02,0.90499976,0.1999996,1.27E-02; 0000187P0000131 +110,0.90499976,0.1999996,1.27E-02,0.90499976,-0.1999996, 0000189P0000132 +1.27E-02; 0000189P0000133 +144,193,1,0,195; 0000191P0000134 +128,1,1,1,1,0,0,1,0,0,-0.4499991,-0.4499991,1.110223025E-16, 0000193P0000135 +1.110223025E-16,-0.3999992,-0.3999992,0.,0.,1.,1.,1.,1., 0000193P0000136 +-1.34499828,-0.1999996,0.2627,-0.89499918,-0.1999996,0.2627, 0000193P0000137 +-1.34499828,0.1999996,0.2627,-0.89499918,0.1999996,0.2627, 0000193P0000138 +-0.4499991,1.110223025E-16,-0.3999992,0.; 0000193P0000139 +142,0,193,197,207,3; 0000195P0000140 +102,4,199,201,203,205; 0000197P0000141 +110,-0.4499991,-0.3999992,0.,0.,-0.3999992,0.; 0000199P0000142 +110,0.,-0.3999992,0.,0.,0.,0.; 0000201P0000143 +110,1.110223025E-16,0.,0.,-0.4499991,0.,0.; 0000203P0000144 +110,-0.4499991,0.,0.,-0.4499991,-0.3999992,0.; 0000205P0000145 +102,4,209,211,213,215; 0000207P0000146 +110,-1.34499828,-0.1999996,0.2627,-0.89499918,-0.1999996,0.2627; 0000209P0000147 +110,-0.89499918,-0.1999996,0.2627,-0.89499918,0.1999996,0.2627; 0000211P0000148 +110,-0.89499918,0.1999996,0.2627,-1.34499828,0.1999996,0.2627; 0000213P0000149 +110,-1.34499828,0.1999996,0.2627,-1.34499828,-0.1999996,0.2627; 0000215P0000150 +144,219,1,0,221; 0000217P0000151 +128,1,1,1,1,0,0,1,0,0,0.248007027,0.248007027,0.25,0.25, 0000219P0000152 +0.87499952,0.87499952,1.34999984,1.34999984,1.,1.,1.,1., 0000219P0000153 +0.90499976,0.1999996,0.260707027,0.90499976,0.1999996,0.2627, 0000219P0000154 +0.90499976,0.67499992,0.260707027,0.90499976,0.67499992,0.2627, 0000219P0000155 +0.248007394,0.25,0.87499952,1.34999984; 0000219P0000156 +142,0,219,223,233,3; 0000221P0000157 +102,4,225,227,229,231; 0000223P0000158 +110,0.24800776,1.34999984,0.,0.24800776,0.87499952,0.; 0000225P0000159 +110,0.24800776,0.87499952,0.,0.25,0.87499952,0.; 0000227P0000160 +110,0.25,0.87499952,0.,0.25,1.34999984,0.; 0000229P0000161 +110,0.25,1.34999984,0.,0.248007394,1.34999984,0.; 0000231P0000162 +102,4,235,237,239,241; 0000233P0000163 +110,0.90499976,0.67499992,0.26070776,0.90499976,0.1999996, 0000235P0000164 +0.26070776; 0000235P0000165 +110,0.90499976,0.1999996,0.26070776,0.90499976,0.1999996,0.2627; 0000237P0000166 +110,0.90499976,0.1999996,0.2627,0.90499976,0.67499992,0.2627; 0000239P0000167 +110,0.90499976,0.67499992,0.2627,0.90499976,0.67499992, 0000241P0000168 +0.260707393; 0000241P0000169 +144,245,1,0,247; 0000243P0000170 +128,1,1,1,1,0,0,1,0,0,-0.25,-0.25,-0.248007027,-0.248007027, 0000245P0000171 +-1.79999894,-1.79999894,0.,0.,1.,1.,1.,1.,-0.89499918, 0000245P0000172 +0.67499992,0.2627,-0.89499918,0.67499992,0.260707027,0.90499976, 0000245P0000173 +0.67499992,0.2627,0.90499976,0.67499992,0.260707027,-0.25, 0000245P0000174 +-0.248007394,-1.79999894,0.; 0000245P0000175 +142,0,245,249,259,3; 0000247P0000176 +102,4,251,253,255,257; 0000249P0000177 +110,-0.24800776,-1.79999894,0.,-0.24800776,0.,0.; 0000251P0000178 +110,-0.248007394,0.,0.,-0.25,0.,0.; 0000253P0000179 +110,-0.25,-1.110223025E-16,0.,-0.25,-1.79999894,0.; 0000255P0000180 +110,-0.25,-1.79999894,0.,-0.248007394,-1.79999894,0.; 0000257P0000181 +102,4,261,263,265,267; 0000259P0000182 +110,-0.89499918,0.67499992,0.26070776,0.90499976,0.67499992, 0000261P0000183 +0.26070776; 0000261P0000184 +110,0.90499976,0.67499992,0.260707393,0.90499976,0.67499992, 0000263P0000185 +0.2627; 0000263P0000186 +110,0.90499976,0.67499992,0.2627,-0.89499918,0.67499992,0.2627; 0000265P0000187 +110,-0.89499918,0.67499992,0.2627,-0.89499918,0.67499992, 0000267P0000188 +0.260707393; 0000267P0000189 +144,271,1,0,273; 0000269P0000190 +128,1,1,1,1,0,0,1,0,0,0.,0.,0.248007027,0.248007027,0.87499952, 0000271P0000191 +0.87499952,1.34999984,1.34999984,1.,1.,1.,1.,0.90499976, 0000271P0000192 +0.1999996,1.27E-02,0.90499976,0.1999996,0.260707027,0.90499976, 0000271P0000193 +0.67499992,1.27E-02,0.90499976,0.67499992,0.260707027,0., 0000271P0000194 +0.248006647,0.87499952,1.34999984; 0000271P0000195 +142,0,271,275,285,3; 0000273P0000196 +102,4,277,279,281,283; 0000275P0000197 +110,0.248006647,1.34999984,0.,0.,1.34999984,0.; 0000277P0000198 +110,0.,1.34999984,0.,0.,0.87499952,0.; 0000279P0000199 +110,0.,0.87499952,0.,0.248006266,0.87499952,0.; 0000281P0000200 +110,0.248006266,0.87499952,0.,0.248006266,1.34999984,0.; 0000283P0000201 +102,4,287,289,291,293; 0000285P0000202 +110,0.90499976,0.67499992,0.260706647,0.90499976,0.67499992, 0000287P0000203 +1.27E-02; 0000287P0000204 +110,0.90499976,0.67499992,1.27E-02,0.90499976,0.1999996, 0000289P0000205 +1.27E-02; 0000289P0000206 +110,0.90499976,0.1999996,1.27E-02,0.90499976,0.1999996, 0000291P0000207 +0.260706266; 0000291P0000208 +110,0.90499976,0.1999996,0.260706266,0.90499976,0.67499992, 0000293P0000209 +0.260706266; 0000293P0000210 +144,297,1,0,299; 0000295P0000211 +128,1,1,1,1,0,0,1,0,0,-1.79999894,-1.79999894,0.,0.,-1.34999984, 0000297P0000212 +-1.34999984,0.,0.,1.,1.,1.,1.,0.90499976,-0.67499992,1.27E-02, 0000297P0000213 +-0.89499918,-0.67499992,1.27E-02,0.90499976,0.67499992,1.27E-02, 0000297P0000214 +-0.89499918,0.67499992,1.27E-02,-1.79999894,0.,-1.34999984,0.; 0000297P0000215 +142,0,297,301,319,3; 0000299P0000216 +102,8,303,305,307,309,311,313,315,317; 0000301P0000217 +110,-1.79999894,-1.34999984,0.,0.,-1.34999984,0.; 0000303P0000218 +110,0.,-1.34999984,0.,0.,-0.87499952,0.; 0000305P0000219 +110,0.,-0.87499952,0.,0.,-0.47500032,0.; 0000307P0000220 +110,0.,-0.47500032,0.,0.,0.,0.; 0000309P0000221 +110,0.,0.,0.,-1.79999894,0.,0.; 0000311P0000222 +110,-1.79999894,0.,0.,-1.79999894,-0.47500032,0.; 0000313P0000223 +110,-1.79999894,-0.47500032,0.,-1.79999894,-0.87499952,0.; 0000315P0000224 +110,-1.79999894,-0.87499952,0.,-1.79999894,-1.34999984,0.; 0000317P0000225 +102,8,321,323,325,327,329,331,333,335; 0000319P0000226 +110,0.90499976,-0.67499992,1.27E-02,-0.89499918,-0.67499992, 0000321P0000227 +1.27E-02; 0000321P0000228 +110,-0.89499918,-0.67499992,1.27E-02,-0.89499918,-0.1999996, 0000323P0000229 +1.27E-02; 0000323P0000230 +110,-0.89499918,-0.1999996,1.27E-02,-0.89499918,0.1999996, 0000325P0000231 +1.27E-02; 0000325P0000232 +110,-0.89499918,0.1999996,1.27E-02,-0.89499918,0.67499992, 0000327P0000233 +1.27E-02; 0000327P0000234 +110,-0.89499918,0.67499992,1.27E-02,0.90499976,0.67499992, 0000329P0000235 +1.27E-02; 0000329P0000236 +110,0.90499976,0.67499992,1.27E-02,0.90499976,0.1999996, 0000331P0000237 +1.27E-02; 0000331P0000238 +110,0.90499976,0.1999996,1.27E-02,0.90499976,-0.1999996, 0000333P0000239 +1.27E-02; 0000333P0000240 +110,0.90499976,-0.1999996,1.27E-02,0.90499976,-0.67499992, 0000335P0000241 +1.27E-02; 0000335P0000242 +144,339,1,0,341; 0000337P0000243 +128,1,1,1,1,0,0,1,0,0,-0.25,-0.25,0.,0.,-0.4499991,-0.4499991, 0000339P0000244 +0.,0.,1.,1.,1.,1.,-1.34499828,-0.1999996,0.2627,-1.34499828, 0000339P0000245 +-0.1999996,1.27E-02,-0.89499918,-0.1999996,0.2627,-0.89499918, 0000339P0000246 +-0.1999996,1.27E-02,-0.25,0.,-0.4499991,0.; 0000339P0000247 +142,0,339,343,357,3; 0000341P0000248 +102,6,345,347,349,351,353,355; 0000343P0000249 +126,1,1,1,0,1,0,2.672175226E-08,2.672175226E-08,1.466969666E-06, 0000345P0000250 +1.466969666E-06,1.,1.,-0.248006333,-1.373594549E-07,0., 0000345P0000251 +-0.24800776,6.695064491E-12,0.,2.672175226E-08,1.466969666E-06, 0000345P0000252 +0.,0.,1.; 0000345P0000253 +110,-0.24800776,0.,0.,-0.25,0.,0.; 0000347P0000254 +110,-0.25,0.,0.,-0.25,-0.4499991,0.; 0000349P0000255 +110,-0.25,-0.4499991,0.,0.,-0.4499991,0.; 0000351P0000256 +110,0.,-0.4499991,0.,0.,0.,0.; 0000353P0000257 +126,1,1,1,0,1,0,0.,0.,0.24800632,0.24800632,1.,1.,0.,0.,0., 0000355P0000258 +-0.248006333,-1.373594549E-07,0.,0.,0.24800632,0.,0.,1.; 0000355P0000259 +102,6,359,361,363,365,367,369; 0000357P0000260 +110,-0.894999455,-0.1999996,0.260706346,-0.89499918,-0.1999996, 0000359P0000261 +0.26070776; 0000359P0000262 +110,-0.89499918,-0.1999996,0.26070776,-0.89499918,-0.1999996, 0000361P0000263 +0.2627; 0000361P0000264 +110,-0.89499918,-0.1999996,0.2627,-1.34499828,-0.1999996,0.2627; 0000363P0000265 +110,-1.34499828,-0.1999996,0.2627,-1.34499828,-0.1999996, 0000365P0000266 +1.27E-02; 0000365P0000267 +110,-1.34499828,-0.1999996,1.27E-02,-0.89499918,-0.1999996, 0000367P0000268 +1.27E-02; 0000367P0000269 +110,-0.89499918,-0.1999996,1.27E-02,-0.89499918,-0.1999996, 0000369P0000270 +0.26070632; 0000369P0000271 +144,373,1,0,375; 0000371P0000272 +128,1,1,1,1,0,0,1,0,0,0.,0.,0.25,0.25,0.,0.,0.3999992,0.3999992, 0000373P0000273 +1.,1.,1.,1.,-1.34499828,-0.1999996,1.27E-02,-1.34499828, 0000373P0000274 +-0.1999996,0.2627,-1.34499828,0.1999996,1.27E-02,-1.34499828, 0000373P0000275 +0.1999996,0.2627,0.,0.25,0.,0.3999992; 0000373P0000276 +142,0,373,377,387,3; 0000375P0000277 +102,4,379,381,383,385; 0000377P0000278 +110,0.25,0.3999992,0.,0.,0.3999992,0.; 0000379P0000279 +110,0.,0.3999992,0.,0.,0.,0.; 0000381P0000280 +110,0.,0.,0.,0.25,0.,0.; 0000383P0000281 +110,0.25,0.,0.,0.25,0.3999992,0.; 0000385P0000282 +102,4,389,391,393,395; 0000387P0000283 +110,-1.34499828,0.1999996,0.2627,-1.34499828,0.1999996,1.27E-02; 0000389P0000284 +110,-1.34499828,0.1999996,1.27E-02,-1.34499828,-0.1999996, 0000391P0000285 +1.27E-02; 0000391P0000286 +110,-1.34499828,-0.1999996,1.27E-02,-1.34499828,-0.1999996, 0000393P0000287 +0.2627; 0000393P0000288 +110,-1.34499828,-0.1999996,0.2627,-1.34499828,0.1999996,0.2627; 0000395P0000289 +144,399,1,0,401; 0000397P0000290 +128,1,1,1,1,0,0,1,0,0,0.,0.,0.25,0.25,-1.110223025E-16, 0000399P0000291 +-1.110223025E-16,0.4499991,0.4499991,1.,1.,1.,1.,-1.34499828, 0000399P0000292 +0.1999996,1.27E-02,-1.34499828,0.1999996,0.2627,-0.89499918, 0000399P0000293 +0.1999996,1.27E-02,-0.89499918,0.1999996,0.2627,0.,0.25,0., 0000399P0000294 +0.4499991; 0000399P0000295 +142,0,399,403,417,3; 0000401P0000296 +102,6,405,407,409,411,413,415; 0000403P0000297 +110,0.248006266,0.4499991,0.,-2.775557562E-17,0.4499991,0.; 0000405P0000298 +110,0.,0.4499991,0.,0.,0.,0.; 0000407P0000299 +110,0.,0.,0.,0.25,0.,0.; 0000409P0000300 +110,0.25,0.,0.,0.25,0.4499991,0.; 0000411P0000301 +110,0.25,0.4499991,0.,0.24800776,0.4499991,0.; 0000413P0000302 +110,0.24800776,0.4499991,0.,0.248006266,0.4499991,0.; 0000415P0000303 +102,6,419,421,423,425,427,429; 0000417P0000304 +110,-0.89499918,0.1999996,0.260706266,-0.89499918,0.1999996, 0000419P0000305 +1.27E-02; 0000419P0000306 +110,-0.89499918,0.1999996,1.27E-02,-1.34499828,0.1999996, 0000421P0000307 +1.27E-02; 0000421P0000308 +110,-1.34499828,0.1999996,1.27E-02,-1.34499828,0.1999996,0.2627; 0000423P0000309 +110,-1.34499828,0.1999996,0.2627,-0.89499918,0.1999996,0.2627; 0000425P0000310 +110,-0.89499918,0.1999996,0.2627,-0.89499918,0.1999996, 0000427P0000311 +0.26070776; 0000427P0000312 +110,-0.89499918,0.1999996,0.26070776,-0.89499918,0.1999996, 0000429P0000313 +0.260706266; 0000429P0000314 +144,433,1,0,435; 0000431P0000315 +128,1,1,1,1,0,0,1,0,0,-3.108624503E-15,-3.108624503E-15, 0000433P0000316 +1.79999894,1.79999894,-1.09984628E-16,-1.09984628E-16, 0000433P0000317 +1.466471987E-06,1.466471987E-06,1.,1.,1.,1.,0.90499976, 0000433P0000318 +0.6750002,0.26070632,-0.89499918,0.6750002,0.26070632, 0000433P0000319 +0.90499976,0.67499992,0.26070776,-0.89499918,0.67499992, 0000433P0000320 +0.26070776,-3.108624503E-15,1.79999894,-1.09984628E-16, 0000433P0000321 +1.466471987E-06; 0000433P0000322 +142,0,433,437,451,3; 0000435P0000323 +102,6,439,441,443,445,447,449; 0000437P0000324 +110,0.,1.466471986E-06,0.,1.398839634E-07,7.196387836E-07,0.; 0000439P0000325 +110,1.398839634E-07,7.196387836E-07,0.,-1.002346956E-10, 0000441P0000326 +-5.156611416E-10,0.; 0000441P0000327 +110,0.,-3.082693043E-19,0.,1.79999894,-3.082693043E-19,0.; 0000443P0000328 +110,1.79999894,-1.09984628E-16,0.,1.7999988,7.201326876E-07,0.; 0000445P0000329 +110,1.7999988,7.201326876E-07,0.,1.79999894,1.466471987E-06,0.; 0000447P0000330 +110,1.79999894,1.466471987E-06,0.,0.,1.466471986E-06,0.; 0000449P0000331 +102,6,453,455,457,459,461,463; 0000451P0000332 +126,1,1,1,0,1,0,0.,0.,7.598206074E-07,7.598206074E-07,1.,1., 0000453P0000333 +0.90499976,0.67499992,0.26070776,0.90499962,0.675000063, 0000453P0000334 +0.260707027,0.,7.598206074E-07,-0.982289809,-0.,0.187367905; 0000453P0000335 +110,0.90499962,0.675000063,0.260707027,0.90499976,0.6750002, 0000455P0000336 +0.26070632; 0000455P0000337 +110,0.90499976,0.6750002,0.26070632,-0.89499918,0.6750002, 0000457P0000338 +0.26070632; 0000457P0000339 +110,-0.89499918,0.6750002,0.26070632,-0.89499904,0.675000063, 0000459P0000340 +0.260707027; 0000459P0000341 +126,1,1,1,0,1,0,0.,0.,7.593742569E-07,7.593742569E-07,1.,1., 0000461P0000342 +-0.89499904,0.675000063,0.260707027,-0.89499918,0.67499992, 0000461P0000343 +0.26070776,0.,7.593742569E-07,0.982214616,-0.,0.18776168; 0000461P0000344 +110,-0.89499918,0.67499992,0.26070776,0.90499976,0.67499992, 0000463P0000345 +0.26070776; 0000463P0000346 +144,467,1,0,469; 0000465P0000347 +128,1,1,1,1,0,0,1,0,0,-1.E-02,-1.E-02,-9.999714947E-03, 0000467P0000348 +-9.999714947E-03,-0.47500032,-0.47500032,0.,0.,1.,1.,1.,1., 0000467P0000349 +0.90500004,0.1999996,0.26070632,0.90499976,0.1999996, 0000467P0000350 +0.260706266,0.90500004,0.67499992,0.26070632,0.90499976, 0000467P0000351 +0.67499992,0.260706266,-9.999857474E-03,-9.999857474E-03, 0000467P0000352 +-0.47500032,-2.195188205E-14; 0000467P0000353 +142,0,467,471,477,3; 0000469P0000354 +102,2,473,475; 0000471P0000355 +126,1,1,1,0,1,0,0.,0.,0.47500032,0.47500032,1.,1., 0000473P0000356 +-9.999857474E-03,-0.47500032,0.,-9.999857474E-03, 0000473P0000357 +-2.203514877E-14,0.,0.,0.47500032,0.,0.,1.; 0000473P0000358 +126,1,1,1,0,1,0,-0.,-0.,0.47500032,0.47500032,1.,1., 0000475P0000359 +-9.999857474E-03,-2.203514877E-14,0.,-9.999857474E-03, 0000475P0000360 +-0.47500032,0.,-0.,0.47500032,0.,0.,1.; 0000475P0000361 +102,2,479,481; 0000477P0000362 +110,0.90499976,0.1999996,0.260706266,0.90499976,0.67499992, 0000479P0000363 +0.260706266; 0000479P0000364 +110,0.90500004,0.67499992,0.26070632,0.90500004,0.1999996, 0000481P0000365 +0.26070632; 0000481P0000366 +144,485,1,0,487; 0000483P0000367 +128,1,1,1,1,0,0,1,0,0,0.,0.,0.248006266,0.248006266,0.,0., 0000485P0000368 +1.79999894,1.79999894,1.,1.,1.,1.,-0.89499918,-0.67499992, 0000485P0000369 +1.27E-02,-0.89499918,-0.67499992,0.260706266,0.90499976, 0000485P0000370 +-0.67499992,1.27E-02,0.90499976,-0.67499992,0.260706266,0., 0000485P0000371 +0.248006266,0.,1.79999894; 0000485P0000372 +142,0,485,489,499,3; 0000487P0000373 +102,4,491,493,495,497; 0000489P0000374 +110,0.248006266,0.,0.,0.248006266,1.79999894,0.; 0000491P0000375 +126,1,1,1,0,1,0,-2.049999998E-08,-2.049999998E-08,0.248006225, 0000493P0000376 +0.248006225,1.,1.,0.248006266,1.79999894,0.,0.,1.79999894,0., 0000493P0000377 +-2.049999998E-08,0.248006225,0.,0.,1.; 0000493P0000378 +110,0.,1.79999894,0.,0.,0.,0.; 0000495P0000379 +126,1,1,1,0,1,0,0.,0.,0.248006245,0.248006245,1.,1.,0.,0.,0., 0000497P0000380 +0.248006266,0.,0.,0.,0.248006245,0.,0.,1.; 0000497P0000381 +102,4,501,503,505,507; 0000499P0000382 +110,-0.89499918,-0.67499992,0.260706266,0.90499976,-0.67499992, 0000501P0000383 +0.260706266; 0000501P0000384 +110,0.90499976,-0.67499992,0.260706245,0.90499976,-0.67499992, 0000503P0000385 +1.27E-02; 0000503P0000386 +110,0.90499976,-0.67499992,1.27E-02,-0.89499918,-0.67499992, 0000505P0000387 +1.27E-02; 0000505P0000388 +110,-0.89499918,-0.67499992,1.27E-02,-0.89499918,-0.67499992, 0000507P0000389 +0.260706245; 0000507P0000390 +144,511,1,0,513; 0000509P0000391 +128,1,1,1,1,0,0,1,0,0,-0.24800632,-0.24800632,0.,0.,-1.34999984, 0000511P0000392 +-1.34999984,-0.87499952,-0.87499952,1.,1.,1.,1.,-0.89499918, 0000511P0000393 +-0.67499992,0.26070632,-0.89499918,-0.67499992,1.27E-02, 0000511P0000394 +-0.89499918,-0.1999996,0.26070632,-0.89499918,-0.1999996, 0000511P0000395 +1.27E-02,-0.24800632,0.,-1.34999984,-0.87499952; 0000511P0000396 +142,0,511,515,525,3; 0000513P0000397 +102,4,517,519,521,523; 0000515P0000398 +110,-0.248006266,-0.87499952,0.,-0.248006266,-1.34999984,0.; 0000517P0000399 +126,1,1,1,0,1,0,-2.049999998E-08,-2.049999998E-08,0.248006225, 0000519P0000400 +0.248006225,1.,1.,-0.24800632,-1.34999984,0.,0.,-1.34999984,-0., 0000519P0000401 +-2.049999998E-08,0.248006225,0.,0.,1.; 0000519P0000402 +110,0.,-1.34999984,0.,0.,-0.87499952,0.; 0000521P0000403 +126,1,1,1,0,1,0,0.,0.,0.248006293,0.248006293,1.,1.,0., 0000523P0000404 +-0.87499952,-0.,-0.24800632,-0.87499952,0.,0.,0.248006293,0.,0., 0000523P0000405 +1.; 0000523P0000406 +102,4,527,529,531,533; 0000525P0000407 +110,-0.89499918,-0.1999996,0.260706266,-0.89499918,-0.67499992, 0000527P0000408 +0.260706266; 0000527P0000409 +110,-0.89499918,-0.67499992,0.260706245,-0.89499918,-0.67499992, 0000529P0000410 +1.27E-02; 0000529P0000411 +110,-0.89499918,-0.67499992,1.27E-02,-0.89499918,-0.1999996, 0000531P0000412 +1.27E-02; 0000531P0000413 +110,-0.89499918,-0.1999996,1.27E-02,-0.89499918,-0.1999996, 0000533P0000414 +0.260706293; 0000533P0000415 +144,537,1,1,539,561; 0000535P0000416 +128,1,1,1,1,0,0,1,0,0,-0.4499991,-0.4499991,0.,0.,-0.3999992, 0000537P0000417 +-0.3999992,0.,0.,1.,1.,1.,1.,-1.34499828,-0.1999996,1.27E-02, 0000537P0000418 +-0.89499918,-0.1999996,1.27E-02,-1.34499828,0.1999996,1.27E-02, 0000537P0000419 +-0.89499918,0.1999996,1.27E-02,-0.4499991,0.,-0.3999992,0.; 0000537P0000420 +142,0,537,541,551,3; 0000539P0000421 +102,4,543,545,547,549; 0000541P0000422 +110,-0.4499991,-0.3999992,0.,0.,-0.3999992,0.; 0000543P0000423 +110,0.,-0.3999992,0.,0.,0.,0.; 0000545P0000424 +110,0.,0.,0.,-0.4499991,0.,0.; 0000547P0000425 +110,-0.4499991,0.,0.,-0.4499991,-0.3999992,0.; 0000549P0000426 +102,4,553,555,557,559; 0000551P0000427 +110,-1.34499828,-0.1999996,1.27E-02,-0.89499918,-0.1999996, 0000553P0000428 +1.27E-02; 0000553P0000429 +110,-0.89499918,-0.1999996,1.27E-02,-0.89499918,0.1999996, 0000555P0000430 +1.27E-02; 0000555P0000431 +110,-0.89499918,0.1999996,1.27E-02,-1.34499828,0.1999996, 0000557P0000432 +1.27E-02; 0000557P0000433 +110,-1.34499828,0.1999996,1.27E-02,-1.34499828,-0.1999996, 0000559P0000434 +1.27E-02; 0000559P0000435 +142,0,537,563,573,3; 0000561P0000436 +102,4,565,567,569,571; 0000563P0000437 +110,-0.22400006,-0.19899884,0.,-0.22400006,-0.1999996,0.; 0000565P0000438 +110,-0.22400006,-0.1999996,0.,-0.22500082,-0.1999996,0.; 0000567P0000439 +110,-0.22500082,-0.1999996,0.,-0.22500082,-0.19899884,0.; 0000569P0000440 +110,-0.22500082,-0.19899884,0.,-0.22400006,-0.19899884,0.; 0000571P0000441 +102,4,575,577,579,581; 0000573P0000442 +110,-1.11899924,1.00076E-03,1.27E-02,-1.11899924,0.,1.27E-02; 0000575P0000443 +110,-1.11899924,0.,1.27E-02,-1.12,0.,1.27E-02; 0000577P0000444 +110,-1.12,0.,1.27E-02,-1.12,1.00076E-03,1.27E-02; 0000579P0000445 +110,-1.12,1.00076E-03,1.27E-02,-1.11899924,1.00076E-03,1.27E-02; 0000581P0000446 +144,585,1,0,587; 0000583P0000447 +128,1,1,1,1,0,0,1,0,0,-0.248007027,-0.248007027,0.,0., 0000585P0000448 +-0.47500032,-0.47500032,0.,0.,1.,1.,1.,1.,-0.89499918,0.1999996, 0000585P0000449 +0.260707027,-0.89499918,0.1999996,1.27E-02,-0.89499918, 0000585P0000450 +0.67499992,0.260707027,-0.89499918,0.67499992,1.27E-02, 0000585P0000451 +-0.248006647,0.,-0.47500032,0.; 0000585P0000452 +142,0,585,589,599,3; 0000587P0000453 +102,4,591,593,595,597; 0000589P0000454 +110,-0.248006266,0.,0.,-0.248006266,-0.47500032,0.; 0000591P0000455 +110,-0.248006266,-0.47500032,0.,2.775557562E-17,-0.47500032,0.; 0000593P0000456 +110,0.,-0.47500032,0.,0.,0.,0.; 0000595P0000457 +110,0.,0.,0.,-0.248006647,0.,0.; 0000597P0000458 +102,4,601,603,605,607; 0000599P0000459 +110,-0.89499918,0.67499992,0.260706266,-0.89499918,0.1999996, 0000601P0000460 +0.260706266; 0000601P0000461 +110,-0.89499918,0.1999996,0.260706266,-0.89499918,0.1999996, 0000603P0000462 +1.27E-02; 0000603P0000463 +110,-0.89499918,0.1999996,1.27E-02,-0.89499918,0.67499992, 0000605P0000464 +1.27E-02; 0000605P0000465 +110,-0.89499918,0.67499992,1.27E-02,-0.89499918,0.67499992, 0000607P0000466 +0.260706647; 0000607P0000467 +144,611,1,0,613; 0000609P0000468 +128,1,1,1,1,0,0,1,0,0,-1.E-02,-1.E-02,-9.999707119E-03, 0000611P0000469 +-9.999707119E-03,-1.79999894,-1.79999894,-3.108624469E-15, 0000611P0000470 +-3.108624469E-15,1.,1.,1.,1.,-0.89499918,-0.6750002,0.26070632, 0000611P0000471 +-0.89499918,-0.674999912,0.260706264,0.90499976,-0.6750002, 0000611P0000472 +0.26070632,0.90499976,-0.674999912,0.260706264,-1.E-02, 0000611P0000473 +-9.999707119E-03,-1.79999894,-3.108624469E-15; 0000611P0000474 +142,0,611,615,625,3; 0000613P0000475 +102,4,617,619,621,623; 0000615P0000476 +110,-9.999714947E-03,-1.79999894,0.,-9.999714947E-03,0.,0.; 0000617P0000477 +126,1,1,1,0,1,0,4.11733121E-09,4.11733121E-09,2.933939332E-07, 0000619P0000478 +2.933939332E-07,1.,1.,-9.999707119E-03,-1.766364832E-13,0., 0000619P0000479 +-1.E-02,-1.766364832E-13,0.,4.11733121E-09,2.933939332E-07,0., 0000619P0000480 +0.,1.; 0000619P0000481 +110,-1.E-02,-4.407585408E-14,0.,-1.E-02,-1.79999894,0.; 0000621P0000482 +126,1,1,1,0,1,0,0.,0.,2.89276602E-07,2.89276602E-07,1.,1., 0000623P0000483 +-1.E-02,-1.79999894,0.,-9.999707119E-03,-1.79999894,0.,0., 0000623P0000484 +2.89276602E-07,0.,0.,1.; 0000623P0000485 +102,4,627,629,631,633; 0000625P0000486 +110,-0.89499918,-0.67499992,0.260706266,0.90499976,-0.67499992, 0000627P0000487 +0.260706266; 0000627P0000488 +110,0.90499976,-0.674999916,0.260706265,0.90499976,-0.6750002, 0000629P0000489 +0.26070632; 0000629P0000490 +110,0.90499976,-0.6750002,0.26070632,-0.89499918,-0.6750002, 0000631P0000491 +0.26070632; 0000631P0000492 +110,-0.89499918,-0.6750002,0.26070632,-0.89499918,-0.674999916, 0000633P0000493 +0.260706265; 0000633P0000494 +144,637,1,0,639; 0000635P0000495 +128,1,1,1,1,0,0,1,0,0,-1.E-02,-1.E-02,-9.99949996E-03, 0000637P0000496 +-9.99949996E-03,-0.47500032,-0.47500032,0.,0.,1.,1.,1.,1., 0000637P0000497 +-0.89499946,-0.1999996,0.26070632,-0.894998969,-0.1999996, 0000637P0000498 +0.260706225,-0.89499946,-0.67499992,0.26070632,-0.894998969, 0000637P0000499 +-0.67499992,0.260706225,-1.E-02,-9.999607433E-03,-0.47500032,0.; 0000637P0000500 +142,0,637,641,649,3; 0000639P0000501 +102,3,643,645,647; 0000641P0000502 +126,1,1,1,0,1,0,0.,0.,0.47500032,0.47500032,1.,1., 0000643P0000503 +-9.999857474E-03,-0.47500032,0.,-9.999714947E-03,0.,0.,0., 0000643P0000504 +0.47500032,0.,0.,1.; 0000643P0000505 +110,-9.999607433E-03,-1.764143735E-13,0.,-1.000000007E-02, 0000645P0000506 +-1.764143735E-13,0.; 0000645P0000507 +126,1,1,1,0,1,0,0.,0.,0.47500032,0.47500032,1.,1.,-1.E-02, 0000647P0000508 +-4.407356851E-14,0.,-9.999857474E-03,-0.47500032,0.,0., 0000647P0000509 +0.47500032,0.,0.,1.; 0000647P0000510 +102,3,651,653,655; 0000649P0000511 +110,-0.89499918,-0.1999996,0.260706266,-0.89499918,-0.67499992, 0000651P0000512 +0.260706266; 0000651P0000513 +110,-0.894999075,-0.67499992,0.260706245,-0.89499946, 0000653P0000514 +-0.67499992,0.26070632; 0000653P0000515 +110,-0.89499946,-0.67499992,0.26070632,-0.89499946,-0.1999996, 0000655P0000516 +0.26070632; 0000655P0000517 +144,659,1,0,661; 0000657P0000518 +128,1,1,1,1,0,0,1,0,0,-9.652E-02,-9.652E-02,0.,0.,-1.00076E-03, 0000659P0000519 +-1.00076E-03,0.,0.,1.,1.,1.,1.,-1.11899924,0.,1.27E-02, 0000659P0000520 +-1.11899924,0.,-8.382E-02,-1.11899924,1.00076E-03,1.27E-02, 0000659P0000521 +-1.11899924,1.00076E-03,-8.382E-02,-9.652E-02,0.,-1.00076E-03, 0000659P0000522 +0.; 0000659P0000523 +142,0,659,663,673,3; 0000661P0000524 +102,4,665,667,669,671; 0000663P0000525 +110,-9.652E-02,-1.00076E-03,0.,1.387778781E-17,-1.00076E-03,0.; 0000665P0000526 +110,0.,-1.00076E-03,0.,0.,0.,0.; 0000667P0000527 +110,0.,0.,0.,-9.652E-02,0.,0.; 0000669P0000528 +110,-9.652E-02,0.,0.,-9.652E-02,-1.00076E-03,0.; 0000671P0000529 +102,4,675,677,679,681; 0000673P0000530 +110,-1.11899924,0.,1.27E-02,-1.11899924,0.,-8.382E-02; 0000675P0000531 +110,-1.11899924,0.,-8.382E-02,-1.11899924,1.00076E-03, 0000677P0000532 +-8.382E-02; 0000677P0000533 +110,-1.11899924,1.00076E-03,-8.382E-02,-1.11899924,1.00076E-03, 0000679P0000534 +1.27E-02; 0000679P0000535 +110,-1.11899924,1.00076E-03,1.27E-02,-1.11899924,0.,1.27E-02; 0000681P0000536 +144,685,1,0,687; 0000683P0000537 +128,1,1,1,1,0,0,1,0,0,0.,0.,9.652E-02,9.652E-02,0.,0., 0000685P0000538 +1.00076E-03,1.00076E-03,1.,1.,1.,1.,-1.12,1.00076E-03, 0000685P0000539 +-8.382E-02,-1.12,1.00076E-03,1.27E-02,-1.11899924,1.00076E-03, 0000685P0000540 +-8.382E-02,-1.11899924,1.00076E-03,1.27E-02,0.,9.652E-02,0., 0000685P0000541 +1.00076E-03; 0000685P0000542 +142,0,685,689,699,3; 0000687P0000543 +102,4,691,693,695,697; 0000689P0000544 +110,9.652E-02,1.00076E-03,0.,-1.387778781E-17,1.00076E-03,0.; 0000691P0000545 +110,0.,1.00076E-03,0.,0.,-1.559082724E-16,0.; 0000693P0000546 +110,0.,0.,0.,9.652E-02,0.,0.; 0000695P0000547 +110,9.652E-02,0.,0.,9.652E-02,1.00076E-03,0.; 0000697P0000548 +102,4,701,703,705,707; 0000699P0000549 +110,-1.11899924,1.00076E-03,1.27E-02,-1.11899924,1.00076E-03, 0000701P0000550 +-8.382E-02; 0000701P0000551 +110,-1.11899924,1.00076E-03,-8.382E-02,-1.12,1.00076E-03, 0000703P0000552 +-8.382E-02; 0000703P0000553 +110,-1.12,1.00076E-03,-8.382E-02,-1.12,1.00076E-03,1.27E-02; 0000705P0000554 +110,-1.12,1.00076E-03,1.27E-02,-1.11899924,1.00076E-03,1.27E-02; 0000707P0000555 +144,711,1,0,713; 0000709P0000556 +128,1,1,1,1,0,0,1,0,0,0.,0.,9.652E-02,9.652E-02,0.,0., 0000711P0000557 +1.00076E-03,1.00076E-03,1.,1.,1.,1.,-1.12,0.,-8.382E-02,-1.12, 0000711P0000558 +0.,1.27E-02,-1.12,1.00076E-03,-8.382E-02,-1.12,1.00076E-03, 0000711P0000559 +1.27E-02,0.,9.652E-02,0.,1.00076E-03; 0000711P0000560 +142,0,711,715,725,3; 0000713P0000561 +102,4,717,719,721,723; 0000715P0000562 +110,9.652E-02,1.00076E-03,0.,-1.387778781E-17,1.00076E-03,0.; 0000717P0000563 +110,0.,1.00076E-03,0.,0.,0.,0.; 0000719P0000564 +110,0.,0.,0.,9.652E-02,0.,0.; 0000721P0000565 +110,9.652E-02,0.,0.,9.652E-02,1.00076E-03,0.; 0000723P0000566 +102,4,727,729,731,733; 0000725P0000567 +110,-1.12,1.00076E-03,1.27E-02,-1.12,1.00076E-03,-8.382E-02; 0000727P0000568 +110,-1.12,1.00076E-03,-8.382E-02,-1.12,0.,-8.382E-02; 0000729P0000569 +110,-1.12,0.,-8.382E-02,-1.12,0.,1.27E-02; 0000731P0000570 +110,-1.12,0.,1.27E-02,-1.12,1.00076E-03,1.27E-02; 0000733P0000571 +144,737,1,0,739; 0000735P0000572 +128,1,1,1,1,0,0,1,0,0,-9.652E-02,-9.652E-02,0.,0.,-1.00076E-03, 0000737P0000573 +-1.00076E-03,0.,0.,1.,1.,1.,1.,-1.12,0.,1.27E-02,-1.12,0., 0000737P0000574 +-8.382E-02,-1.11899924,0.,1.27E-02,-1.11899924,0.,-8.382E-02, 0000737P0000575 +-9.652E-02,0.,-1.00076E-03,0.; 0000737P0000576 +142,0,737,741,751,3; 0000739P0000577 +102,4,743,745,747,749; 0000741P0000578 +110,-9.652E-02,-1.00076E-03,0.,1.387778781E-17,-1.00076E-03,0.; 0000743P0000579 +110,0.,-1.00076E-03,0.,0.,1.559082724E-16,0.; 0000745P0000580 +110,0.,0.,0.,-9.652E-02,0.,0.; 0000747P0000581 +110,-9.652E-02,-3.621235256E-17,0.,-9.652E-02,-1.00076E-03,0.; 0000749P0000582 +102,4,753,755,757,759; 0000751P0000583 +110,-1.12,0.,1.27E-02,-1.12,0.,-8.382E-02; 0000753P0000584 +110,-1.12,0.,-8.382E-02,-1.11899924,0.,-8.382E-02; 0000755P0000585 +110,-1.11899924,0.,-8.382E-02,-1.11899924,0.,1.27E-02; 0000757P0000586 +110,-1.11899924,0.,1.27E-02,-1.12,0.,1.27E-02; 0000759P0000587 +144,763,1,0,765; 0000761P0000588 +128,1,1,1,1,0,0,1,0,0,-1.E-02,-1.E-02,-9.999714947E-03, 0000763P0000589 +-9.999714947E-03,-1.34999984,-1.34999984,-0.87499952, 0000763P0000590 +-0.87499952,1.,1.,1.,1.,-0.89499946,0.67499992,0.26070632, 0000763P0000591 +-0.89499918,0.67499992,0.260706266,-0.89499946,0.1999996, 0000763P0000592 +0.26070632,-0.89499918,0.1999996,0.260706266,-9.999857474E-03, 0000763P0000593 +-9.999857474E-03,-1.34999984,-0.87499952; 0000763P0000594 +142,0,763,767,773,3; 0000765P0000595 +102,2,769,771; 0000767P0000596 +126,1,1,1,0,1,0,0.,0.,0.47500032,0.47500032,1.,1., 0000769P0000597 +-9.999857474E-03,-1.34999984,0.,-9.999857474E-03,-0.87499952,0., 0000769P0000598 +0.,0.47500032,0.,0.,1.; 0000769P0000599 +126,1,1,1,0,1,0,0.,0.,0.47500032,0.47500032,1.,1., 0000771P0000600 +-9.999857474E-03,-0.87499952,0.,-9.999857474E-03,-1.34999984,0., 0000771P0000601 +0.,0.47500032,0.,0.,1.; 0000771P0000602 +102,2,775,777; 0000773P0000603 +110,-0.89499918,0.67499992,0.260706266,-0.89499918,0.1999996, 0000775P0000604 +0.260706266; 0000775P0000605 +110,-0.89499946,0.1999996,0.26070632,-0.89499946,0.67499992, 0000777P0000606 +0.26070632; 0000777P0000607 +144,781,1,0,783; 0000779P0000608 +128,1,1,1,1,0,0,1,0,0,-3.330669074E-15,-3.330669074E-15, 0000781P0000609 +1.79999894,1.79999894,-1.096763587E-16,-1.096763587E-16, 0000781P0000610 +1.466471987E-06,1.466471987E-06,1.,1.,1.,1.,-0.89499918, 0000781P0000611 +-0.6750002,0.26070632,0.90499976,-0.6750002,0.26070632, 0000781P0000612 +-0.89499918,-0.67499992,0.26070776,0.90499976,-0.67499992, 0000781P0000613 +0.26070776,-7.661943913E-17,1.79999894,-1.096763587E-16, 0000781P0000614 +1.466471987E-06; 0000781P0000615 +142,0,781,785,795,3; 0000783P0000616 +102,4,787,789,791,793; 0000785P0000617 +110,1.799998798,1.466471987E-06,0.,1.425E-07,1.466471987E-06,0.; 0000787P0000618 +126,1,1,1,0,1,0,2.717649748E-08,2.717649748E-08,1.494397872E-06, 0000789P0000619 +1.494397872E-06,1.,1.,2.85054E-07,1.466471987E-06,0., 0000789P0000620 +-7.661939943E-17,-1.096764067E-16,0.,2.717649748E-08, 0000789P0000621 +1.494397872E-06,0.,0.,1.; 0000789P0000622 +110,0.,-1.638831609E-32,0.,1.79999894,-1.638831609E-32,0.; 0000791P0000623 +126,1,1,1,0,1,0,0.,0.,1.467221375E-06,1.467221375E-06,1.,1., 0000793P0000624 +1.79999894,-1.096763587E-16,-0.,1.799998655,1.466471987E-06,0., 0000793P0000625 +0.,1.467221375E-06,0.,0.,1.; 0000793P0000626 +102,4,797,799,801,803; 0000795P0000627 +110,0.904999618,-0.67499992,0.26070776,-0.894999037,-0.67499992, 0000797P0000628 +0.26070776; 0000797P0000629 +110,-0.8949989,-0.674999925,0.260707734,-0.89499918,-0.6750002, 0000799P0000630 +0.26070632; 0000799P0000631 +110,-0.89499918,-0.6750002,0.26070632,0.90499976,-0.6750002, 0000801P0000632 +0.26070632; 0000801P0000633 +110,0.90499976,-0.6750002,0.26070632,0.90499948,-0.674999925, 0000803P0000634 +0.260707734; 0000803P0000635 +144,807,1,0,809; 0000805P0000636 +128,1,1,1,1,0,0,1,0,0,0.,0.,1.00076E-03,1.00076E-03,0.,0., 0000807P0000637 +1.00076E-03,1.00076E-03,1.,1.,1.,1.,-1.12,0.,-8.382E-02, 0000807P0000638 +-1.11899924,0.,-8.382E-02,-1.12,1.00076E-03,-8.382E-02, 0000807P0000639 +-1.11899924,1.00076E-03,-8.382E-02,0.,1.00076E-03,0., 0000807P0000640 +1.00076E-03; 0000807P0000641 +142,0,807,811,821,3; 0000809P0000642 +102,4,813,815,817,819; 0000811P0000643 +110,1.00076E-03,1.00076E-03,0.,-1.559082724E-16,1.00076E-03,0.; 0000813P0000644 +110,0.,1.00076E-03,0.,0.,0.,0.; 0000815P0000645 +110,3.621235256E-17,0.,0.,1.00076E-03,0.,0.; 0000817P0000646 +110,1.00076E-03,0.,0.,1.00076E-03,1.00076E-03,0.; 0000819P0000647 +102,4,823,825,827,829; 0000821P0000648 +110,-1.11899924,1.00076E-03,-8.382E-02,-1.12,1.00076E-03, 0000823P0000649 +-8.382E-02; 0000823P0000650 +110,-1.12,1.00076E-03,-8.382E-02,-1.12,0.,-8.382E-02; 0000825P0000651 +110,-1.12,0.,-8.382E-02,-1.11899924,0.,-8.382E-02; 0000827P0000652 +110,-1.11899924,0.,-8.382E-02,-1.11899924,1.00076E-03, 0000829P0000653 +-8.382E-02; 0000829P0000654 +144,833,1,0,835; 0000831P0000655 +128,1,1,1,1,0,0,1,0,0,-9.652E-02,-9.652E-02,0.,0.,-1.00076E-03, 0000833P0000656 +-1.00076E-03,5.421010862E-18,5.421010862E-18,1.,1.,1.,1., 0000833P0000657 +3.99826E-03,0.627022205,0.455123274,3.99826E-03,0.532275549, 0000833P0000658 +0.43670639,3.99826E-03,0.626831251,0.456105647,3.99826E-03, 0000833P0000659 +0.532084595,0.437688763,-9.652E-02,0.,-1.00076E-03, 0000833P0000660 +5.421010862E-18; 0000833P0000661 +142,0,833,837,847,3; 0000835P0000662 +102,4,839,841,843,845; 0000837P0000663 +110,-9.652E-02,-1.00076E-03,0.,2.043711728E-10,-1.00076E-03,0.; 0000839P0000664 +110,0.,-1.00076E-03,0.,0.,-2.180118709E-10,0.; 0000841P0000665 +110,0.,0.,0.,-9.65200002E-02,0.,0.; 0000843P0000666 +110,-9.652E-02,5.421010862E-18,0.,-9.652E-02,-1.000759782E-03, 0000845P0000667 +0.; 0000845P0000668 +102,4,849,851,853,855; 0000847P0000669 +110,3.99826E-03,0.627022205,0.455123274,3.99826E-03,0.532275549, 0000849P0000670 +0.43670639; 0000849P0000671 +110,3.99826E-03,0.532275549,0.43670639,3.99826E-03,0.532084595, 0000851P0000672 +0.437688763; 0000851P0000673 +110,3.99826E-03,0.532084595,0.437688763,3.99826E-03,0.626831251, 0000853P0000674 +0.456105647; 0000853P0000675 +110,3.99826E-03,0.626831251,0.456105647,3.99826E-03,0.627022205, 0000855P0000676 +0.455123274; 0000855P0000677 +144,859,1,0,861; 0000857P0000678 +128,1,1,1,1,0,0,1,0,0,-9.652E-02,-9.652E-02,7.636363001E-36, 0000859P0000679 +7.636363001E-36,-1.00076E-03,-1.00076E-03,6.505213035E-19, 0000859P0000680 +6.505213035E-19,1.,1.,1.,1.,4.99902E-03,0.627022205,0.455123274, 0000859P0000681 +4.99902E-03,0.532275549,0.43670639,3.99826E-03,0.627022205, 0000859P0000682 +0.455123274,3.99826E-03,0.532275549,0.43670639,-9.652E-02, 0000859P0000683 +7.636363001E-36,-1.00076E-03,6.505213035E-19; 0000859P0000684 +142,0,859,863,873,3; 0000861P0000685 +102,4,865,867,869,871; 0000863P0000686 +110,-9.652E-02,-1.00076E-03,0.,2.043711728E-10,-1.00076E-03,0.; 0000865P0000687 +110,7.636363001E-36,-1.00076E-03,0.,-1.236010122E-49, 0000867P0000688 +-2.168404345E-19,0.; 0000867P0000689 +110,0.,0.,0.,-9.65200002E-02,6.797625634E-34,0.; 0000869P0000690 +110,-9.652E-02,6.505213035E-19,0.,-9.652E-02,-1.00076E-03,0.; 0000871P0000691 +102,4,875,877,879,881; 0000873P0000692 +110,4.99902E-03,0.627022205,0.455123274,4.99902E-03,0.532275549, 0000875P0000693 +0.43670639; 0000875P0000694 +110,4.99902E-03,0.532275549,0.43670639,3.99826E-03,0.532275549, 0000877P0000695 +0.43670639; 0000877P0000696 +110,3.99826E-03,0.532275549,0.43670639,3.99826E-03,0.627022205, 0000879P0000697 +0.455123274; 0000879P0000698 +110,3.99826E-03,0.627022205,0.455123274,4.99902E-03,0.627022205, 0000881P0000699 +0.455123274; 0000881P0000700 +144,885,1,0,887; 0000883P0000701 +128,1,1,1,1,0,0,1,0,0,-2.168404345E-19,-2.168404345E-19, 0000885P0000702 +1.00076E-03,1.00076E-03,-1.301042607E-17,-1.301042607E-17, 0000885P0000703 +1.00076E-03,1.00076E-03,1.,1.,1.,1.,4.99902E-03,0.532275549, 0000885P0000704 +0.43670639,3.99826E-03,0.532275549,0.43670639,4.99902E-03, 0000885P0000705 +0.532084595,0.437688763,3.99826E-03,0.532084595,0.437688763, 0000885P0000706 +-2.168404345E-19,1.00076E-03,-1.301042607E-17,1.00076E-03; 0000885P0000707 +142,0,885,889,899,3; 0000887P0000708 +102,4,891,893,895,897; 0000889P0000709 +110,1.00076E-03,1.00076E-03,0.,2.168404345E-19,1.00076E-03,0.; 0000891P0000710 +110,-3.140887281E-36,1.00076E-03,0.,-6.842309034E-43, 0000893P0000711 +2.180118709E-10,0.; 0000893P0000712 +110,-2.168404345E-19,2.338434942E-20,0.,1.00076E-03, 0000895P0000713 +2.338434942E-20,0.; 0000895P0000714 +110,1.00076E-03,-1.301042607E-17,0.,1.00076E-03,1.000759782E-03, 0000897P0000715 +0.; 0000897P0000716 +102,4,901,903,905,907; 0000899P0000717 +110,3.99826E-03,0.532084595,0.437688763,4.99902E-03,0.532084595, 0000901P0000718 +0.437688763; 0000901P0000719 +110,4.99902E-03,0.532084595,0.437688763,4.99902E-03,0.532275549, 0000903P0000720 +0.43670639; 0000903P0000721 +110,4.99902E-03,0.532275549,0.43670639,3.99826E-03,0.532275549, 0000905P0000722 +0.43670639; 0000905P0000723 +110,3.99826E-03,0.532275549,0.43670639,3.99826E-03,0.532084595, 0000907P0000724 +0.437688763; 0000907P0000725 +144,911,1,1,913,939; 0000909P0000726 +128,1,1,1,1,0,0,1,0,0,1.057441924E-02,1.057441924E-02, 0000911P0000727 +1.789424521,1.789424521,3.974798032E-03,3.974798032E-03, 0000911P0000728 +0.531669516,0.531669516,1.,1.,1.,1.,0.894425341,0.664425501, 0000911P0000729 +0.2627,-0.884424761,0.664425501,0.2627,0.894425341,0.563736602, 0000911P0000730 +0.78069948,-0.884424761,0.563736602,0.78069948,1.057441924E-02, 0000911P0000731 +1.789424521,3.974798032E-03,0.531669516; 0000911P0000732 +142,0,911,915,927,3; 0000913P0000733 +102,5,917,919,921,923,925; 0000915P0000734 +110,1.05999788,0.531669516,0.,0.111263318,0.531669516,0.; 0000917P0000735 +110,0.111263318,0.531669516,0.,1.057441918E-02,3.974797722E-03, 0000919P0000736 +0.; 0000919P0000737 +110,1.057441924E-02,3.974798032E-03,0.,1.789424521, 0000921P0000738 +3.974798032E-03,0.; 0000921P0000739 +110,1.789424521,3.974798032E-03,0.,1.688735622,0.531669516,0.; 0000923P0000740 +110,1.688735622,0.531669516,0.,1.05999788,0.531669516,0.; 0000925P0000741 +102,5,929,931,933,935,937; 0000927P0000742 +110,-0.15499812,0.563736602,0.78069948,0.793736442,0.563736602, 0000929P0000743 +0.78069948; 0000929P0000744 +110,0.793736442,0.563736602,0.78069948,0.894425341,0.664425501, 0000931P0000745 +0.2627; 0000931P0000746 +110,0.894425341,0.664425501,0.2627,-0.884424761,0.664425501, 0000933P0000747 +0.2627; 0000933P0000748 +110,-0.884424761,0.664425501,0.2627,-0.783735862,0.563736602, 0000935P0000749 +0.78069948; 0000935P0000750 +110,-0.783735862,0.563736602,0.78069948,-0.15499812,0.563736602, 0000937P0000751 +0.78069948; 0000937P0000752 +142,0,911,941,951,3; 0000939P0000753 +102,4,943,945,947,949; 0000941P0000754 +110,0.9010015,0.20100036,0.,0.9010015,0.1999996,0.; 0000943P0000755 +110,0.9010015,0.1999996,0.,0.90000074,0.1999996,0.; 0000945P0000756 +110,0.90000074,0.1999996,0.,0.90000074,0.20100036,0.; 0000947P0000757 +110,0.90000074,0.20100036,0.,0.9010015,0.20100036,0.; 0000949P0000758 +102,4,953,955,957,959; 0000951P0000759 +110,3.99826E-03,0.626831251,0.456105647,3.99826E-03,0.627022205, 0000953P0000760 +0.455123274; 0000953P0000761 +110,3.99826E-03,0.627022205,0.455123274,4.99902E-03,0.627022205, 0000955P0000762 +0.455123274; 0000955P0000763 +110,4.99902E-03,0.627022205,0.455123274,4.99902E-03,0.626831251, 0000957P0000764 +0.456105647; 0000957P0000765 +110,4.99902E-03,0.626831251,0.456105647,3.99826E-03,0.626831251, 0000959P0000766 +0.456105647; 0000959P0000767 +144,963,1,0,965; 0000961P0000768 +128,1,1,1,1,0,0,1,0,0,-1.203020487E-19,-1.203020487E-19, 0000963P0000769 +9.652E-02,9.652E-02,0.,0.,1.00076E-03,1.00076E-03,1.,1.,1.,1., 0000963P0000770 +4.99902E-03,0.532084595,0.437688763,4.99902E-03,0.626831251, 0000963P0000771 +0.456105647,3.99826E-03,0.532084595,0.437688763,3.99826E-03, 0000963P0000772 +0.626831251,0.456105647,-1.203020487E-19,9.652E-02,0., 0000963P0000773 +1.00076E-03; 0000963P0000774 +142,0,963,967,977,3; 0000965P0000775 +102,4,969,971,973,975; 0000967P0000776 +110,9.652E-02,1.00076E-03,0.,-2.043710617E-10,1.00076E-03,0.; 0000969P0000777 +110,7.636363001E-36,1.00076E-03,0.,-1.236010122E-49, 0000971P0000778 +2.168404345E-19,0.; 0000971P0000779 +110,0.,0.,0.,9.65200002E-02,6.797625634E-34,0.; 0000973P0000780 +110,9.652E-02,3.270330692E-19,0.,9.652E-02,1.00076E-03,0.; 0000975P0000781 +102,4,979,981,983,985; 0000977P0000782 +110,3.99826E-03,0.626831251,0.456105647,3.99826E-03,0.532084595, 0000979P0000783 +0.437688763; 0000979P0000784 +110,3.99826E-03,0.532084595,0.437688763,4.99902E-03,0.532084595, 0000981P0000785 +0.437688763; 0000981P0000786 +110,4.99902E-03,0.532084595,0.437688763,4.99902E-03,0.626831251, 0000983P0000787 +0.456105647; 0000983P0000788 +110,4.99902E-03,0.626831251,0.456105647,3.99826E-03,0.626831251, 0000985P0000789 +0.456105647; 0000985P0000790 +144,989,1,0,991; 0000987P0000791 +128,1,1,1,1,0,0,1,0,0,-1.290200585E-17,-1.290200585E-17, 0000989P0000792 +9.652E-02,9.652E-02,-1.040834086E-17,-1.040834086E-17, 0000989P0000793 +1.00076E-03,1.00076E-03,1.,1.,1.,1.,4.99902E-03,0.532275549, 0000989P0000794 +0.43670639,4.99902E-03,0.627022205,0.455123274,4.99902E-03, 0000989P0000795 +0.532084595,0.437688763,4.99902E-03,0.626831251,0.456105647, 0000989P0000796 +-1.290200585E-17,9.652E-02,-1.040834086E-17,1.00076E-03; 0000989P0000797 +142,0,989,993,1003,3; 0000991P0000798 +102,4,995,997,999,1001; 0000993P0000799 +110,9.652E-02,1.00076E-03,0.,-2.043710617E-10,1.00076E-03,0.; 0000995P0000800 +110,0.,1.00076E-03,0.,0.,2.180118709E-10,0.; 0000997P0000801 +110,0.,0.,0.,9.65200002E-02,0.,0.; 0000999P0000802 +110,9.652E-02,-1.040834086E-17,0.,9.652E-02,1.000759782E-03,0.; 0001001P0000803 +102,4,1005,1007,1009,1011; 0001003P0000804 +110,4.99902E-03,0.626831251,0.456105647,4.99902E-03,0.532084595, 0001005P0000805 +0.437688763; 0001005P0000806 +110,4.99902E-03,0.532084595,0.437688763,4.99902E-03,0.532275549, 0001007P0000807 +0.43670639; 0001007P0000808 +110,4.99902E-03,0.532275549,0.43670639,4.99902E-03,0.627022205, 0001009P0000809 +0.455123274; 0001009P0000810 +110,4.99902E-03,0.627022205,0.455123274,4.99902E-03,0.626831251, 0001011P0000811 +0.456105647; 0001011P0000812 +144,1015,1,0,1017; 0001013P0000813 +128,1,1,1,1,0,0,1,0,0,-0.948734562,-0.948734562,2.220446049E-16, 0001015P0000814 +2.220446049E-16,-1.133735462,-1.133735462,-6.262258294E-03, 0001015P0000815 +-6.262258294E-03,1.,1.,1.,1.,0.793736442,-0.563736602, 0001015P0000816 +0.78069948,-0.15499812,-0.563736602,0.78069948,0.793736442, 0001015P0000817 +0.563736602,0.78069948,-0.15499812,0.563736602,0.78069948, 0001015P0000818 +-0.948734562,2.220446049E-16,-1.133735462,-6.262258294E-03; 0001015P0000819 +142,0,1015,1019,1029,3; 0001017P0000820 +102,4,1021,1023,1025,1027; 0001019P0000821 +110,0.,-6.262258294E-03,0.,-0.948734562,-6.262258294E-03,0.; 0001021P0000822 +110,-0.948734562,-6.262258294E-03,0.,-0.948734562,-1.133735462, 0001023P0000823 +0.; 0001023P0000824 +110,-0.948734562,-1.133735462,0.,1.110223025E-16,-1.133735462, 0001025P0000825 +0.; 0001025P0000826 +110,2.220446049E-16,-1.133735462,0.,2.220446049E-16, 0001027P0000827 +-6.262258E-03,0.; 0001027P0000828 +102,4,1031,1033,1035,1037; 0001029P0000829 +110,-0.15499812,0.563736602,0.78069948,0.793736442,0.563736602, 0001031P0000830 +0.78069948; 0001031P0000831 +110,0.793736442,0.563736602,0.78069948,0.793736442,-0.563736602, 0001033P0000832 +0.78069948; 0001033P0000833 +110,0.793736442,-0.563736602,0.78069948,-0.15499812, 0001035P0000834 +-0.563736602,0.78069948; 0001035P0000835 +110,-0.15499812,-0.563736602,0.78069948,-0.15499812,0.563736602, 0001037P0000836 +0.78069948; 0001037P0000837 +144,1041,1,0,1043; 0001039P0000838 +128,1,1,1,1,0,0,1,0,0,-0.63000128,-0.63000128,-1.263538294E-03, 0001041P0000839 +-1.263538294E-03,-1.133735462,-1.133735462,-6.262258294E-03, 0001041P0000840 +-6.262258294E-03,1.,1.,1.,1.,-0.15499812,-0.563736602, 0001041P0000841 +0.78069948,-0.783735862,-0.563736602,0.78069948,-0.15499812, 0001041P0000842 +0.563736602,0.78069948,-0.783735862,0.563736602,0.78069948, 0001041P0000843 +-0.63000128,-1.263538294E-03,-1.133735462,-6.262258294E-03; 0001041P0000844 +142,0,1041,1045,1055,3; 0001043P0000845 +102,4,1047,1049,1051,1053; 0001045P0000846 +110,-0.63000128,-6.262258294E-03,0.,-0.63000128,-1.133735462,0.; 0001047P0000847 +110,-0.63000128,-1.133735462,0.,-1.263538E-03,-1.133735462,0.; 0001049P0000848 +110,-1.263538294E-03,-1.133735462,0.,-1.263538294E-03, 0001051P0000849 +-6.262258E-03,0.; 0001051P0000850 +110,-1.263538294E-03,-6.262258294E-03,0.,-0.63000128, 0001053P0000851 +-6.262258294E-03,0.; 0001053P0000852 +102,4,1057,1059,1061,1063; 0001055P0000853 +110,-0.15499812,0.563736602,0.78069948,-0.15499812,-0.563736602, 0001057P0000854 +0.78069948; 0001057P0000855 +110,-0.15499812,-0.563736602,0.78069948,-0.783735862, 0001059P0000856 +-0.563736602,0.78069948; 0001059P0000857 +110,-0.783735862,-0.563736602,0.78069948,-0.783735862, 0001061P0000858 +0.563736602,0.78069948; 0001061P0000859 +110,-0.783735862,0.563736602,0.78069948,-0.15499812,0.563736602, 0001063P0000860 +0.78069948; 0001063P0000861 +144,1067,1,1,1069,1091; 0001065P0000862 +128,1,1,1,1,0,0,1,0,0,1.057441924E-02,1.057441924E-02, 0001067P0000863 +1.339425421,1.339425421,3.974798032E-03,3.974798032E-03, 0001067P0000864 +0.531669516,0.531669516,1.,1.,1.,1.,-0.884424761,0.664425501, 0001067P0000865 +0.2627,-0.884424761,-0.664425501,0.2627,-0.783735862, 0001067P0000866 +0.664425501,0.78069948,-0.783735862,-0.664425501,0.78069948, 0001067P0000867 +1.057441924E-02,1.339425421,3.974798032E-03,0.531669516; 0001067P0000868 +142,0,1067,1071,1081,3; 0001069P0000869 +102,4,1073,1075,1077,1079; 0001071P0000870 +110,1.057441924E-02,3.974798032E-03,0.,1.339425421, 0001073P0000871 +3.974798032E-03,0.; 0001073P0000872 +110,1.339425421,3.974798032E-03,0.,1.238736522,0.531669516,0.; 0001075P0000873 +110,1.238736522,0.531669516,0.,0.111263318,0.531669516,0.; 0001077P0000874 +110,0.111263318,0.531669516,0.,1.057441918E-02,3.974797722E-03, 0001079P0000875 +0.; 0001079P0000876 +102,4,1083,1085,1087,1089; 0001081P0000877 +110,-0.884424761,0.664425501,0.2627,-0.884424761,-0.664425501, 0001083P0000878 +0.2627; 0001083P0000879 +110,-0.884424761,-0.664425501,0.2627,-0.783735862,-0.563736602, 0001085P0000880 +0.78069948; 0001085P0000881 +110,-0.783735862,-0.563736602,0.78069948,-0.783735862, 0001087P0000882 +0.563736602,0.78069948; 0001087P0000883 +110,-0.783735862,0.563736602,0.78069948,-0.884424761, 0001089P0000884 +0.664425501,0.2627; 0001089P0000885 +142,0,1067,1093,1103,3; 0001091P0000886 +102,4,1095,1097,1099,1101; 0001093P0000887 +110,0.67600068,0.20100036,0.,0.67600068,0.1999996,0.; 0001095P0000888 +110,0.67600068,0.1999996,0.,0.67499992,0.1999996,0.; 0001097P0000889 +110,0.67499992,0.1999996,0.,0.67499992,0.20100036,0.; 0001099P0000890 +110,0.67499992,0.20100036,0.,0.67600068,0.20100036,0.; 0001101P0000891 +102,4,1105,1107,1109,1111; 0001103P0000892 +110,-0.846830511,-1.00076E-03,0.456105647,-0.847021465, 0001105P0000893 +-1.00076E-03,0.455123274; 0001105P0000894 +110,-0.847021465,-1.00076E-03,0.455123274,-0.847021465, 0001107P0000895 +3.252606517E-18,0.455123274; 0001107P0000896 +110,-0.847021465,3.16191728E-18,0.455123274,-0.846830511, 0001109P0000897 +3.16191728E-18,0.456105647; 0001109P0000898 +110,-0.846830511,3.16191728E-18,0.456105647,-0.846830511, 0001111P0000899 +-1.00076E-03,0.456105647; 0001111P0000900 +144,1115,1,0,1117; 0001113P0000901 +128,1,1,1,1,0,0,1,0,0,-1.789424521,-1.789424521, 0001115P0000902 +-1.057441924E-02,-1.057441924E-02,-1.339425421,-1.339425421, 0001115P0000903 +-1.057441924E-02,-1.057441924E-02,1.,1.,1.,1.,0.894425341, 0001115P0000904 +-0.664425501,0.2627,-0.884424761,-0.664425501,0.2627, 0001115P0000905 +0.894425341,0.664425501,0.2627,-0.884424761,0.664425501,0.2627, 0001115P0000906 +-1.789424521,-1.057441924E-02,-1.339425421,-1.057441924E-02; 0001115P0000907 +142,0,1115,1119,1129,3; 0001117P0000908 +102,4,1121,1123,1125,1127; 0001119P0000909 +110,-1.057441924E-02,-1.057441924E-02,0.,-1.789424521, 0001121P0000910 +-1.057441924E-02,0.; 0001121P0000911 +110,-1.789424521,-1.057441924E-02,0.,-1.789424521,-1.339425421, 0001123P0000912 +0.; 0001123P0000913 +110,-1.789424521,-1.339425421,0.,-1.0574419E-02,-1.339425421,0.; 0001125P0000914 +110,-1.057441924E-02,-1.339425421,0.,-1.057441924E-02, 0001127P0000915 +-1.0574419E-02,0.; 0001127P0000916 +102,4,1131,1133,1135,1137; 0001129P0000917 +110,-0.884424761,0.664425501,0.2627,0.894425341,0.664425501, 0001131P0000918 +0.2627; 0001131P0000919 +110,0.894425341,0.664425501,0.2627,0.894425341,-0.664425501, 0001133P0000920 +0.2627; 0001133P0000921 +110,0.894425341,-0.664425501,0.2627,-0.884424761,-0.664425501, 0001135P0000922 +0.2627; 0001135P0000923 +110,-0.884424761,-0.664425501,0.2627,-0.884424761,0.664425501, 0001137P0000924 +0.2627; 0001137P0000925 +144,1141,1,1,1143,1165; 0001139P0000926 +128,1,1,1,1,0,0,1,0,0,1.057441924E-02,1.057441924E-02, 0001141P0000927 +1.339425421,1.339425421,3.974798032E-03,3.974798032E-03, 0001141P0000928 +0.531669516,0.531669516,1.,1.,1.,1.,0.894425341,-0.664425501, 0001141P0000929 +0.2627,0.894425341,0.664425501,0.2627,0.793736442,-0.664425501, 0001141P0000930 +0.78069948,0.793736442,0.664425501,0.78069948,1.057441924E-02, 0001141P0000931 +1.339425421,3.974798032E-03,0.531669516; 0001141P0000932 +142,0,1141,1145,1155,3; 0001143P0000933 +102,4,1147,1149,1151,1153; 0001145P0000934 +110,1.057441924E-02,3.974798032E-03,0.,1.339425421, 0001147P0000935 +3.974798032E-03,0.; 0001147P0000936 +110,1.339425421,3.974798032E-03,0.,1.238736522,0.531669516,0.; 0001149P0000937 +110,1.238736522,0.531669516,0.,0.111263318,0.531669516,0.; 0001151P0000938 +110,0.111263318,0.531669516,0.,1.057441918E-02,3.974797722E-03, 0001153P0000939 +0.; 0001153P0000940 +102,4,1157,1159,1161,1163; 0001155P0000941 +110,0.894425341,-0.664425501,0.2627,0.894425341,0.664425501, 0001157P0000942 +0.2627; 0001157P0000943 +110,0.894425341,0.664425501,0.2627,0.793736442,0.563736602, 0001159P0000944 +0.78069948; 0001159P0000945 +110,0.793736442,0.563736602,0.78069948,0.793736442,-0.563736602, 0001161P0000946 +0.78069948; 0001161P0000947 +110,0.793736442,-0.563736602,0.78069948,0.894425341, 0001163P0000948 +-0.664425501,0.2627; 0001163P0000949 +142,0,1141,1167,1177,3; 0001165P0000950 +102,4,1169,1171,1173,1175; 0001167P0000951 +110,0.67600068,0.20100036,0.,0.67600068,0.1999996,0.; 0001169P0000952 +110,0.67600068,0.1999996,0.,0.67499992,0.1999996,0.; 0001171P0000953 +110,0.67499992,0.1999996,0.,0.67499992,0.20100036,0.; 0001173P0000954 +110,0.67499992,0.20100036,0.,0.67600068,0.20100036,0.; 0001175P0000955 +102,4,1179,1181,1183,1185; 0001177P0000956 +110,0.856831091,1.00076E-03,0.456105647,0.857022045,1.00076E-03, 0001179P0000957 +0.455123274; 0001179P0000958 +110,0.857022045,1.00076E-03,0.455123274,0.857022045, 0001181P0000959 +-6.938893904E-18,0.455123274; 0001181P0000960 +110,0.857022045,-6.938894957E-18,0.455123274,0.856831091, 0001183P0000961 +-6.938894957E-18,0.456105647; 0001183P0000962 +110,0.856831091,-6.938894957E-18,0.456105647,0.856831091, 0001185P0000963 +1.00076E-03,0.456105647; 0001185P0000964 +144,1189,1,1,1191,1217; 0001187P0000965 +128,1,1,1,1,0,0,1,0,0,1.057441924E-02,1.057441924E-02, 0001189P0000966 +1.789424521,1.789424521,3.974798032E-03,3.974798032E-03, 0001189P0000967 +0.531669516,0.531669516,1.,1.,1.,1.,-0.884424761,-0.664425501, 0001189P0000968 +0.2627,0.894425341,-0.664425501,0.2627,-0.884424761, 0001189P0000969 +-0.563736602,0.78069948,0.894425341,-0.563736602,0.78069948, 0001189P0000970 +1.057441924E-02,1.789424521,3.974798032E-03,0.531669516; 0001189P0000971 +142,0,1189,1193,1205,3; 0001191P0000972 +102,5,1195,1197,1199,1201,1203; 0001193P0000973 +110,1.057441924E-02,3.974798032E-03,0.,1.789424521, 0001195P0000974 +3.974798032E-03,0.; 0001195P0000975 +110,1.789424521,3.974798032E-03,0.,1.688735622,0.531669516,0.; 0001197P0000976 +110,1.688735622,0.531669516,0.,0.74000106,0.531669516,0.; 0001199P0000977 +110,0.74000106,0.531669516,0.,0.111263318,0.531669516,0.; 0001201P0000978 +110,0.111263318,0.531669516,0.,1.057441918E-02,3.974797722E-03, 0001203P0000979 +0.; 0001203P0000980 +102,5,1207,1209,1211,1213,1215; 0001205P0000981 +110,-0.884424761,-0.664425501,0.2627,0.894425341,-0.664425501, 0001207P0000982 +0.2627; 0001207P0000983 +110,0.894425341,-0.664425501,0.2627,0.793736442,-0.563736602, 0001209P0000984 +0.78069948; 0001209P0000985 +110,0.793736442,-0.563736602,0.78069948,-0.15499812, 0001211P0000986 +-0.563736602,0.78069948; 0001211P0000987 +110,-0.15499812,-0.563736602,0.78069948,-0.783735862, 0001213P0000988 +-0.563736602,0.78069948; 0001213P0000989 +110,-0.783735862,-0.563736602,0.78069948,-0.884424761, 0001215P0000990 +-0.664425501,0.2627; 0001215P0000991 +142,0,1189,1219,1229,3; 0001217P0000992 +102,4,1221,1223,1225,1227; 0001219P0000993 +110,0.9010015,0.20100036,0.,0.9010015,0.1999996,0.; 0001221P0000994 +110,0.9010015,0.1999996,0.,0.90000074,0.1999996,0.; 0001223P0000995 +110,0.90000074,0.1999996,0.,0.90000074,0.20100036,0.; 0001225P0000996 +110,0.90000074,0.20100036,0.,0.9010015,0.20100036,0.; 0001227P0000997 +102,4,1231,1233,1235,1237; 0001229P0000998 +110,6.00232E-03,-0.626831251,0.456105647,6.00232E-03, 0001231P0000999 +-0.627022205,0.455123274; 0001231P0001000 +110,6.00232E-03,-0.627022205,0.455123274,5.00156E-03, 0001233P0001001 +-0.627022205,0.455123274; 0001233P0001002 +110,5.00156E-03,-0.627022205,0.455123274,5.00156E-03, 0001235P0001003 +-0.626831251,0.456105647; 0001235P0001004 +110,5.00156E-03,-0.626831251,0.456105647,6.00232E-03, 0001237P0001005 +-0.626831251,0.456105647; 0001237P0001006 +144,1241,1,0,1243; 0001239P0001007 +128,1,1,1,1,0,0,1,0,0,-9.652E-02,-9.652E-02,0.,0.,-1.00076E-03, 0001241P0001008 +-1.00076E-03,5.421010862E-18,5.421010862E-18,1.,1.,1.,1., 0001241P0001009 +-0.847021465,-1.00076E-03,0.455123274,-0.752274809,-1.00076E-03, 0001241P0001010 +0.43670639,-0.846830511,-1.00076E-03,0.456105647,-0.752083855, 0001241P0001011 +-1.00076E-03,0.437688763,-9.652E-02,0.,-1.00076E-03, 0001241P0001012 +5.421010862E-18; 0001241P0001013 +142,0,1241,1245,1255,3; 0001243P0001014 +102,4,1247,1249,1251,1253; 0001245P0001015 +110,-9.652E-02,-1.00076E-03,0.,2.043710617E-10,-1.00076E-03,0.; 0001247P0001016 +110,-5.555333971E-20,-1.00076E-03,0.,-1.210209011E-26, 0001249P0001017 +-2.180118497E-10,0.; 0001249P0001018 +110,0.,0.,0.,-9.65200002E-02,-5.357936328E-18,0.; 0001251P0001019 +110,-9.652E-02,5.421010862E-18,0.,-9.652E-02,-1.000759782E-03, 0001253P0001020 +0.; 0001253P0001021 +102,4,1257,1259,1261,1263; 0001255P0001022 +110,-0.847021465,-1.00076E-03,0.455123274,-0.752274809, 0001257P0001023 +-1.00076E-03,0.43670639; 0001257P0001024 +110,-0.752274809,-1.00076E-03,0.43670639,-0.752083855, 0001259P0001025 +-1.00076E-03,0.437688763; 0001259P0001026 +110,-0.752083855,-1.00076E-03,0.437688763,-0.846830511, 0001261P0001027 +-1.00076E-03,0.456105647; 0001261P0001028 +110,-0.846830511,-1.00076E-03,0.456105647,-0.847021465, 0001263P0001029 +-1.00076E-03,0.455123274; 0001263P0001030 +144,1267,1,0,1269; 0001265P0001031 +128,1,1,1,1,0,0,1,0,0,-9.652E-02,-9.652E-02,6.517391662E-21, 0001267P0001032 +6.517391662E-21,-1.00076E-03,-1.00076E-03,6.505213035E-19, 0001267P0001033 +6.505213035E-19,1.,1.,1.,1.,-0.847021465,3.252606517E-18, 0001267P0001034 +0.455123274,-0.752274809,-1.82145965E-17,0.43670639, 0001267P0001035 +-0.847021465,-1.00076E-03,0.455123274,-0.752274809,-1.00076E-03, 0001267P0001036 +0.43670639,-9.652E-02,6.517391662E-21,-1.00076E-03, 0001267P0001037 +6.505213035E-19; 0001267P0001038 +142,0,1267,1271,1281,3; 0001269P0001039 +102,4,1273,1275,1277,1279; 0001271P0001040 +110,-9.652E-02,-1.00076E-03,0.,2.043710617E-10,-1.00076E-03,0.; 0001273P0001041 +110,6.517391662E-21,-1.00076E-03,0.,6.168358851E-34, 0001275P0001042 +-1.82145965E-17,0.; 0001275P0001043 +110,0.,0.,0.,-9.65200002E-02,6.28580923E-19,0.; 0001277P0001044 +110,-9.652E-02,6.505213035E-19,0.,-9.652E-02,-1.00076E-03,0.; 0001279P0001045 +102,4,1283,1285,1287,1289; 0001281P0001046 +110,-0.847021465,3.16191728E-18,0.455123274,-0.752274809, 0001283P0001047 +-1.826982799E-17,0.43670639; 0001283P0001048 +110,-0.752274809,-1.824221225E-17,0.43670639,-0.752274809, 0001285P0001049 +-1.00076E-03,0.43670639; 0001285P0001050 +110,-0.752274809,-1.00076E-03,0.43670639,-0.847021465, 0001287P0001051 +-1.00076E-03,0.455123274; 0001287P0001052 +110,-0.847021465,-1.00076E-03,0.455123274,-0.847021465, 0001289P0001053 +3.252606517E-18,0.455123274; 0001289P0001054 +144,1293,1,0,1295; 0001291P0001055 +128,1,1,1,1,0,0,1,0,0,-2.222133588E-19,-2.222133588E-19, 0001293P0001056 +9.652E-02,9.652E-02,0.,0.,1.00076E-03,1.00076E-03,1.,1.,1.,1., 0001293P0001057 +-0.752083855,-1.826982799E-17,0.437688763,-0.846830511, 0001293P0001058 +3.16191728E-18,0.456105647,-0.752083855,-1.00076E-03, 0001293P0001059 +0.437688763,-0.846830511,-1.00076E-03,0.456105647, 0001293P0001060 +-2.222133588E-19,9.652E-02,3.993382296E-53,1.00076E-03; 0001293P0001061 +142,0,1293,1297,1307,3; 0001295P0001062 +102,4,1299,1301,1303,1305; 0001297P0001063 +110,9.652E-02,1.00076E-03,0.,-2.043710617E-10,1.00076E-03,0.; 0001299P0001064 +110,6.517391662E-21,1.00076E-03,0.,6.168358851E-34, 0001301P0001065 +1.82145965E-17,0.; 0001301P0001066 +110,6.131927425E-36,3.993382296E-53,0.,9.65200002E-02, 0001303P0001067 +6.28580923E-19,0.; 0001303P0001068 +110,9.652E-02,6.285809217E-19,0.,9.652E-02,1.00076E-03,0.; 0001305P0001069 +102,4,1309,1311,1313,1315; 0001307P0001070 +110,-0.846830511,-1.00076E-03,0.456105647,-0.752083855, 0001309P0001071 +-1.00076E-03,0.437688763; 0001309P0001072 +110,-0.752083855,-1.00076E-03,0.437688763,-0.752083855, 0001311P0001073 +-1.82145965E-17,0.437688763; 0001311P0001074 +110,-0.752083855,-1.826982799E-17,0.437688763,-0.846830511, 0001313P0001075 +3.16191728E-18,0.456105647; 0001313P0001076 +110,-0.846830511,3.16191728E-18,0.456105647,-0.846830511, 0001315P0001077 +-1.00076E-03,0.456105647; 0001315P0001078 +144,1319,1,0,1321; 0001317P0001079 +128,1,1,1,1,0,0,1,0,0,-1.301042607E-17,-1.301042607E-17, 0001319P0001080 +9.652E-02,9.652E-02,-5.357936317E-18,-5.357936317E-18, 0001319P0001081 +1.00076E-03,1.00076E-03,1.,1.,1.,1.,-0.752274809, 0001319P0001082 +-1.826982799E-17,0.43670639,-0.847021465,3.16191728E-18, 0001319P0001083 +0.455123274,-0.752083855,-1.826982799E-17,0.437688763, 0001319P0001084 +-0.846830511,3.16191728E-18,0.456105647,-1.301042607E-17, 0001319P0001085 +9.652E-02,-5.357936317E-18,1.00076E-03; 0001319P0001086 +142,0,1319,1323,1333,3; 0001321P0001087 +102,4,1325,1327,1329,1331; 0001323P0001088 +110,9.652E-02,1.00076E-03,0.,-2.043710617E-10,1.00076E-03,0.; 0001325P0001089 +110,-5.555333971E-20,1.00076E-03,0.,-1.210209011E-26, 0001327P0001090 +2.180118497E-10,0.; 0001327P0001091 +110,0.,0.,0.,9.65200002E-02,-5.357936328E-18,0.; 0001329P0001092 +110,9.652E-02,-3.469446952E-18,0.,9.652E-02,1.000759782E-03,0.; 0001331P0001093 +102,4,1335,1337,1339,1341; 0001333P0001094 +110,-0.846830511,3.16191728E-18,0.456105647,-0.752083855, 0001335P0001095 +-1.826982799E-17,0.437688763; 0001335P0001096 +110,-0.752083855,-1.826982799E-17,0.437688763,-0.752274809, 0001337P0001097 +-1.826982799E-17,0.43670639; 0001337P0001098 +110,-0.752274809,-1.826982799E-17,0.43670639,-0.847021465, 0001339P0001099 +3.16191728E-18,0.455123274; 0001339P0001100 +110,-0.847021465,3.16191728E-18,0.455123274,-0.846830511, 0001341P0001101 +3.16191728E-18,0.456105647; 0001341P0001102 +144,1345,1,0,1347; 0001343P0001103 +128,1,1,1,1,0,0,1,0,0,-9.652E-02,-9.652E-02,0.,0.,-1.00076E-03, 0001345P0001104 +-1.00076E-03,1.235990477E-17,1.235990477E-17,1.,1.,1.,1., 0001345P0001105 +0.857022045,1.00076E-03,0.455123274,0.762275389,1.00076E-03, 0001345P0001106 +0.43670639,0.856831091,1.00076E-03,0.456105647,0.762084435, 0001345P0001107 +1.00076E-03,0.437688763,-9.652E-02,0.,-1.00076E-03, 0001345P0001108 +1.235990477E-17; 0001345P0001109 +142,0,1345,1349,1359,3; 0001347P0001110 +102,4,1351,1353,1355,1357; 0001349P0001111 +110,-9.652E-02,-1.00076E-03,0.,2.043710617E-10,-1.00076E-03,0.; 0001351P0001112 +110,-1.388833493E-19,-1.00076E-03,0.,-3.02552563E-26, 0001353P0001113 +-2.180118497E-10,0.; 0001353P0001114 +110,0.,0.,0.,-9.65200002E-02,-1.339484082E-17,0.; 0001355P0001115 +110,-9.652E-02,1.235990477E-17,0.,-9.652E-02,-1.000759782E-03, 0001357P0001116 +0.; 0001357P0001117 +102,4,1361,1363,1365,1367; 0001359P0001118 +110,0.857022045,1.00076E-03,0.455123274,0.762275389,1.00076E-03, 0001361P0001119 +0.43670639; 0001361P0001120 +110,0.762275389,1.00076E-03,0.43670639,0.762084435,1.00076E-03, 0001363P0001121 +0.437688763; 0001363P0001122 +110,0.762084435,1.00076E-03,0.437688763,0.856831091,1.00076E-03, 0001365P0001123 +0.456105647; 0001365P0001124 +110,0.856831091,1.00076E-03,0.456105647,0.857022045,1.00076E-03, 0001367P0001125 +0.455123274; 0001367P0001126 +144,1371,1,0,1373; 0001369P0001127 +128,1,1,1,1,0,0,1,0,0,-9.652E-02,-9.652E-02,0.,0.,-1.00076E-03, 0001371P0001128 +-1.00076E-03,0.,0.,1.,1.,1.,1.,0.857022045,-2.298508606E-17, 0001371P0001129 +0.455123274,0.762275389,-6.938893904E-18,0.43670639,0.857022045, 0001371P0001130 +1.00076E-03,0.455123274,0.762275389,1.00076E-03,0.43670639, 0001371P0001131 +-9.652E-02,0.,-1.00076E-03,0.; 0001371P0001132 +142,0,1371,1375,1385,3; 0001373P0001133 +102,4,1377,1379,1381,1383; 0001375P0001134 +110,-9.652E-02,-1.00076E-03,0.,2.043710617E-10,-1.00076E-03,0.; 0001377P0001135 +110,-1.666600191E-19,-1.00076E-03,0.,-8.357800099E-33, 0001379P0001136 +-9.107298249E-18,0.; 0001379P0001137 +110,0.,0.,0.,-9.65200002E-02,-1.607380898E-17,0.; 0001381P0001138 +110,-9.652E-02,-1.604619215E-17,0.,-9.652E-02,-1.00076E-03,0.; 0001383P0001139 +102,4,1387,1389,1391,1393; 0001385P0001140 +110,0.857022045,-6.938894957E-18,0.455123274,0.762275389, 0001387P0001141 +9.134913994E-18,0.43670639; 0001387P0001142 +110,0.762275389,9.121106122E-18,0.43670639,0.762275389, 0001389P0001143 +1.00076E-03,0.43670639; 0001389P0001144 +110,0.762275389,1.00076E-03,0.43670639,0.857022045,1.00076E-03, 0001391P0001145 +0.455123274; 0001391P0001146 +110,0.857022045,1.00076E-03,0.455123274,0.857022045, 0001393P0001147 +-6.938893904E-18,0.455123274; 0001393P0001148 +144,1397,1,0,1399; 0001395P0001149 +128,1,1,1,1,0,0,1,0,0,-1.666600191E-19,-1.666600191E-19, 0001397P0001150 +9.652E-02,9.652E-02,-1.607380895E-17,-1.607380895E-17, 0001397P0001151 +1.00076E-03,1.00076E-03,1.,1.,1.,1.,0.762084435, 0001397P0001152 +-6.938894957E-18,0.437688763,0.856831091,-2.301270391E-17, 0001397P0001153 +0.456105647,0.762084435,1.00076E-03,0.437688763,0.856831091, 0001397P0001154 +1.00076E-03,0.456105647,-1.666600191E-19,9.652E-02, 0001397P0001155 +-1.607380895E-17,1.00076E-03; 0001397P0001156 +142,0,1397,1401,1411,3; 0001399P0001157 +102,4,1403,1405,1407,1409; 0001401P0001158 +110,9.652E-02,1.00076E-03,0.,-2.043710617E-10,1.00076E-03,0.; 0001403P0001159 +110,-1.666600191E-19,1.00076E-03,0.,-8.357800099E-33, 0001405P0001160 +9.107298249E-18,0.; 0001405P0001161 +110,2.299472701E-36,-3.829391306E-52,0.,9.65200002E-02, 0001407P0001162 +-1.607380898E-17,0.; 0001407P0001163 +110,9.652E-02,-1.607380895E-17,0.,9.652E-02,1.00076E-03,0.; 0001409P0001164 +102,4,1413,1415,1417,1419; 0001411P0001165 +110,0.856831091,1.00076E-03,0.456105647,0.762084435,1.00076E-03, 0001413P0001166 +0.437688763; 0001413P0001167 +110,0.762084435,1.00076E-03,0.437688763,0.762084435, 0001415P0001168 +9.107298249E-18,0.437688763; 0001415P0001169 +110,0.762084435,9.134913994E-18,0.437688763,0.856831091, 0001417P0001170 +-6.938894957E-18,0.456105647; 0001417P0001171 +110,0.856831091,-6.938894957E-18,0.456105647,0.856831091, 0001419P0001172 +1.00076E-03,0.456105647; 0001419P0001173 +144,1423,1,0,1425; 0001421P0001174 +128,1,1,1,1,0,0,1,0,0,-1.314595134E-17,-1.314595134E-17, 0001423P0001175 +9.652E-02,9.652E-02,-1.339484079E-17,-1.339484079E-17, 0001423P0001176 +1.00076E-03,1.00076E-03,1.,1.,1.,1.,0.762275389,9.134913994E-18, 0001423P0001177 +0.43670639,0.857022045,-6.938894957E-18,0.455123274,0.762084435, 0001423P0001178 +9.134913994E-18,0.437688763,0.856831091,-6.938894957E-18, 0001423P0001179 +0.456105647,-1.314595134E-17,9.652E-02,-1.339484079E-17, 0001423P0001180 +1.00076E-03; 0001423P0001181 +142,0,1423,1427,1437,3; 0001425P0001182 +102,4,1429,1431,1433,1435; 0001427P0001183 +110,9.652E-02,1.00076E-03,0.,-2.043710617E-10,1.00076E-03,0.; 0001429P0001184 +110,-1.388833493E-19,1.00076E-03,0.,-3.02552563E-26, 0001431P0001185 +2.180118497E-10,0.; 0001431P0001186 +110,0.,0.,0.,9.65200002E-02,-1.339484082E-17,0.; 0001433P0001187 +110,9.652E-02,0.,0.,9.652E-02,1.000759782E-03,0.; 0001435P0001188 +102,4,1439,1441,1443,1445; 0001437P0001189 +110,0.856831091,-6.938894957E-18,0.456105647,0.762084435, 0001439P0001190 +9.134913994E-18,0.437688763; 0001439P0001191 +110,0.762084435,9.134913994E-18,0.437688763,0.762275389, 0001441P0001192 +9.134913994E-18,0.43670639; 0001441P0001193 +110,0.762275389,9.134913994E-18,0.43670639,0.857022045, 0001443P0001194 +-6.938894957E-18,0.455123274; 0001443P0001195 +110,0.857022045,-6.938894957E-18,0.455123274,0.856831091, 0001445P0001196 +-6.938894957E-18,0.456105647; 0001445P0001197 +144,1449,1,0,1451; 0001447P0001198 +128,1,1,1,1,0,0,1,0,0,-9.652E-02,-9.652E-02,0.,0.,-1.00076E-03, 0001449P0001199 +-1.00076E-03,5.421010862E-18,5.421010862E-18,1.,1.,1.,1., 0001449P0001200 +6.00232E-03,-0.627022205,0.455123274,6.00232E-03,-0.532275549, 0001449P0001201 +0.43670639,6.00232E-03,-0.626831251,0.456105647,6.00232E-03, 0001449P0001202 +-0.532084595,0.437688763,-9.652E-02,0.,-1.00076E-03, 0001449P0001203 +5.421010862E-18; 0001449P0001204 +142,0,1449,1453,1463,3; 0001451P0001205 +102,4,1455,1457,1459,1461; 0001453P0001206 +110,-9.652E-02,-1.00076E-03,0.,2.043711728E-10,-1.00076E-03,0.; 0001455P0001207 +110,0.,-1.00076E-03,0.,0.,-2.180118709E-10,0.; 0001457P0001208 +110,0.,0.,0.,-9.65200002E-02,0.,0.; 0001459P0001209 +110,-9.652E-02,5.421010862E-18,0.,-9.652E-02,-1.000759782E-03, 0001461P0001210 +0.; 0001461P0001211 +102,4,1465,1467,1469,1471; 0001463P0001212 +110,6.00232E-03,-0.627022205,0.455123274,6.00232E-03, 0001465P0001213 +-0.532275549,0.43670639; 0001465P0001214 +110,6.00232E-03,-0.532275549,0.43670639,6.00232E-03, 0001467P0001215 +-0.532084595,0.437688763; 0001467P0001216 +110,6.00232E-03,-0.532084595,0.437688763,6.00232E-03, 0001469P0001217 +-0.626831251,0.456105647; 0001469P0001218 +110,6.00232E-03,-0.626831251,0.456105647,6.00232E-03, 0001471P0001219 +-0.627022205,0.455123274; 0001471P0001220 +144,1475,1,0,1477; 0001473P0001221 +128,1,1,1,1,0,0,1,0,0,-9.652E-02,-9.652E-02,1.883056392E-51, 0001475P0001222 +1.883056392E-51,-1.00076E-03,-1.00076E-03,2.168404345E-19, 0001475P0001223 +2.168404345E-19,1.,1.,1.,1.,5.00156E-03,-0.627022205, 0001475P0001224 +0.455123274,5.00156E-03,-0.532275549,0.43670639,6.00232E-03, 0001475P0001225 +-0.627022205,0.455123274,6.00232E-03,-0.532275549,0.43670639, 0001475P0001226 +-9.652E-02,1.883056392E-51,-1.00076E-03,2.168404345E-19; 0001475P0001227 +142,0,1475,1479,1489,3; 0001477P0001228 +102,4,1481,1483,1485,1487; 0001479P0001229 +110,-9.652E-02,-1.00076E-03,0.,2.043711728E-10,-1.00076E-03,0.; 0001481P0001230 +110,1.883056392E-51,-1.00076E-03,0.,4.639183823E-64, 0001483P0001231 +-2.168404345E-19,0.; 0001483P0001232 +110,0.,0.,0.,-9.65200002E-02,1.816145763E-49,0.; 0001485P0001233 +110,-9.652E-02,2.168404345E-19,0.,-9.652E-02,-1.00076E-03,0.; 0001487P0001234 +102,4,1491,1493,1495,1497; 0001489P0001235 +110,5.00156E-03,-0.627022205,0.455123274,5.00156E-03, 0001491P0001236 +-0.532275549,0.43670639; 0001491P0001237 +110,5.00156E-03,-0.532275549,0.43670639,6.00232E-03, 0001493P0001238 +-0.532275549,0.43670639; 0001493P0001239 +110,6.00232E-03,-0.532275549,0.43670639,6.00232E-03, 0001495P0001240 +-0.627022205,0.455123274; 0001495P0001241 +110,6.00232E-03,-0.627022205,0.455123274,5.00156E-03, 0001497P0001242 +-0.627022205,0.455123274; 0001497P0001243 +144,1501,1,0,1503; 0001499P0001244 +128,1,1,1,1,0,0,1,0,0,-1.62218674E-35,-1.62218674E-35,9.652E-02, 0001501P0001245 +9.652E-02,0.,0.,1.00076E-03,1.00076E-03,1.,1.,1.,1.,5.00156E-03, 0001501P0001246 +-0.532084595,0.437688763,5.00156E-03,-0.626831251,0.456105647, 0001501P0001247 +6.00232E-03,-0.532084595,0.437688763,6.00232E-03,-0.626831251, 0001501P0001248 +0.456105647,-1.62218674E-35,9.652E-02,0.,1.00076E-03; 0001501P0001249 +142,0,1501,1505,1515,3; 0001503P0001250 +102,4,1507,1509,1511,1513; 0001505P0001251 +110,9.652E-02,1.00076E-03,0.,-2.043710617E-10,1.00076E-03,0.; 0001507P0001252 +110,1.883056392E-51,1.00076E-03,0.,4.639183823E-64, 0001509P0001253 +2.168404345E-19,0.; 0001509P0001254 +110,0.,0.,0.,9.65200002E-02,1.816145763E-49,0.; 0001511P0001255 +110,9.652E-02,1.564545586E-33,0.,9.652E-02,1.00076E-03,0.; 0001513P0001256 +102,4,1517,1519,1521,1523; 0001515P0001257 +110,6.00232E-03,-0.626831251,0.456105647,6.00232E-03, 0001517P0001258 +-0.532084595,0.437688763; 0001517P0001259 +110,6.00232E-03,-0.532084595,0.437688763,5.00156E-03, 0001519P0001260 +-0.532084595,0.437688763; 0001519P0001261 +110,5.00156E-03,-0.532084595,0.437688763,5.00156E-03, 0001521P0001262 +-0.626831251,0.456105647; 0001521P0001263 +110,5.00156E-03,-0.626831251,0.456105647,6.00232E-03, 0001523P0001264 +-0.626831251,0.456105647; 0001523P0001265 +144,1527,1,0,1529; 0001525P0001266 +128,1,1,1,1,0,0,1,0,0,-1.290200585E-17,-1.290200585E-17, 0001527P0001267 +9.652E-02,9.652E-02,-1.040834086E-17,-1.040834086E-17, 0001527P0001268 +1.00076E-03,1.00076E-03,1.,1.,1.,1.,5.00156E-03,-0.532275549, 0001527P0001269 +0.43670639,5.00156E-03,-0.627022205,0.455123274,5.00156E-03, 0001527P0001270 +-0.532084595,0.437688763,5.00156E-03,-0.626831251,0.456105647, 0001527P0001271 +-1.290200585E-17,9.652E-02,-1.040834086E-17,1.00076E-03; 0001527P0001272 +142,0,1527,1531,1541,3; 0001529P0001273 +102,4,1533,1535,1537,1539; 0001531P0001274 +110,9.652E-02,1.00076E-03,0.,-2.043710617E-10,1.00076E-03,0.; 0001533P0001275 +110,0.,1.00076E-03,0.,0.,2.180118709E-10,0.; 0001535P0001276 +110,0.,0.,0.,9.65200002E-02,0.,0.; 0001537P0001277 +110,9.652E-02,-1.040834086E-17,0.,9.652E-02,1.000759782E-03,0.; 0001539P0001278 +102,4,1543,1545,1547,1549; 0001541P0001279 +110,5.00156E-03,-0.626831251,0.456105647,5.00156E-03, 0001543P0001280 +-0.532084595,0.437688763; 0001543P0001281 +110,5.00156E-03,-0.532084595,0.437688763,5.00156E-03, 0001545P0001282 +-0.532275549,0.43670639; 0001545P0001283 +110,5.00156E-03,-0.532275549,0.43670639,5.00156E-03, 0001547P0001284 +-0.627022205,0.455123274; 0001547P0001285 +110,5.00156E-03,-0.627022205,0.455123274,5.00156E-03, 0001549P0001286 +-0.626831251,0.456105647; 0001549P0001287 +144,1553,1,0,1555; 0001551P0001288 +128,1,1,1,1,0,0,1,0,0,0.,0.,1.00076E-03,1.00076E-03, 0001553P0001289 +-1.301042607E-17,-1.301042607E-17,1.00076E-03,1.00076E-03,1.,1., 0001553P0001290 +1.,1.,-0.752274809,-1.826982799E-17,0.43670639,-0.752274809, 0001553P0001291 +-1.00076E-03,0.43670639,-0.752083855,-1.826982799E-17, 0001553P0001292 +0.437688763,-0.752083855,-1.00076E-03,0.437688763, 0001553P0001293 +2.642990638E-27,1.00076E-03,-1.301042607E-17,1.00076E-03; 0001553P0001294 +142,0,1553,1557,1567,3; 0001555P0001295 +102,4,1559,1561,1563,1565; 0001557P0001296 +110,1.00076E-03,1.00076E-03,0.,1.82145965E-17,1.00076E-03,0.; 0001559P0001297 +110,1.213236063E-20,1.00076E-03,0.,2.642990638E-27, 0001561P0001298 +2.180118497E-10,0.; 0001561P0001299 +110,2.7615745E-20,-1.213236063E-20,0.,1.00076E-03, 0001563P0001300 +-1.149615108E-33,0.; 0001563P0001301 +110,1.00076E-03,-1.301042607E-17,0.,1.00076E-03,1.000759782E-03, 0001565P0001302 +0.; 0001565P0001303 +102,4,1569,1571,1573,1575; 0001567P0001304 +110,-0.752083855,-1.00076E-03,0.437688763,-0.752083855, 0001569P0001305 +-1.82145965E-17,0.437688763; 0001569P0001306 +110,-0.752083855,-1.826982799E-17,0.437688763,-0.752274809, 0001571P0001307 +-1.826982799E-17,0.43670639; 0001571P0001308 +110,-0.752274809,-1.824221225E-17,0.43670639,-0.752274809, 0001573P0001309 +-1.00076E-03,0.43670639; 0001573P0001310 +110,-0.752274809,-1.00076E-03,0.43670639,-0.752083855, 0001575P0001311 +-1.00076E-03,0.437688763; 0001575P0001312 +144,1579,1,0,1581; 0001577P0001313 +128,1,1,1,1,0,0,1,0,0,-1.540743956E-33,-1.540743956E-33, 0001579P0001314 +1.00076E-03,1.00076E-03,-1.301042607E-17,-1.301042607E-17, 0001579P0001315 +1.00076E-03,1.00076E-03,1.,1.,1.,1.,0.762275389,9.134913994E-18, 0001579P0001316 +0.43670639,0.762275389,1.00076E-03,0.43670639,0.762084435, 0001579P0001317 +9.134913994E-18,0.437688763,0.762084435,1.00076E-03,0.437688763, 0001579P0001318 +-2.312872381E-35,1.00076E-03,-1.301042607E-17,1.00076E-03; 0001579P0001319 +142,0,1579,1583,1593,3; 0001581P0001320 +102,4,1585,1587,1589,1591; 0001583P0001321 +110,1.00076E-03,1.00076E-03,0.,9.107298249E-18,1.00076E-03,0.; 0001585P0001322 +110,-2.312872381E-35,1.00076E-03,0.,-5.03850662E-42, 0001587P0001323 +2.180118497E-10,0.; 0001587P0001324 +110,1.38078725E-20,2.467063873E-35,0.,1.00076E-03, 0001589P0001325 +4.762984169E-48,0.; 0001589P0001326 +110,1.00076E-03,-1.301042607E-17,0.,1.00076E-03,1.000759782E-03, 0001591P0001327 +0.; 0001591P0001328 +102,4,1595,1597,1599,1601; 0001593P0001329 +110,0.762084435,1.00076E-03,0.437688763,0.762084435, 0001595P0001330 +9.107298249E-18,0.437688763; 0001595P0001331 +110,0.762084435,9.134913994E-18,0.437688763,0.762275389, 0001597P0001332 +9.134913994E-18,0.43670639; 0001597P0001333 +110,0.762275389,9.121106122E-18,0.43670639,0.762275389, 0001599P0001334 +1.00076E-03,0.43670639; 0001599P0001335 +110,0.762275389,1.00076E-03,0.43670639,0.762084435,1.00076E-03, 0001601P0001336 +0.437688763; 0001601P0001337 +144,1605,1,0,1607; 0001603P0001338 +128,1,1,1,1,0,0,1,0,0,-2.168404345E-19,-2.168404345E-19, 0001605P0001339 +1.00076E-03,1.00076E-03,-1.301042607E-17,-1.301042607E-17, 0001605P0001340 +1.00076E-03,1.00076E-03,1.,1.,1.,1.,5.00156E-03,-0.532275549, 0001605P0001341 +0.43670639,6.00232E-03,-0.532275549,0.43670639,5.00156E-03, 0001605P0001342 +-0.532084595,0.437688763,6.00232E-03,-0.532084595,0.437688763, 0001605P0001343 +-2.168404345E-19,1.00076E-03,-1.301042607E-17,1.00076E-03; 0001605P0001344 +142,0,1605,1609,1619,3; 0001607P0001345 +102,4,1611,1613,1615,1617; 0001609P0001346 +110,1.00076E-03,1.00076E-03,0.,2.168404345E-19,1.00076E-03,0.; 0001611P0001347 +110,0.,1.00076E-03,0.,0.,2.180118709E-10,0.; 0001613P0001348 +110,-2.168404345E-19,-9.812950815E-37,0.,1.00076E-03, 0001615P0001349 +-9.812950815E-37,0.; 0001615P0001350 +110,1.00076E-03,-1.301042607E-17,0.,1.00076E-03,1.000759782E-03, 0001617P0001351 +0.; 0001617P0001352 +102,4,1621,1623,1625,1627; 0001619P0001353 +110,6.00232E-03,-0.532084595,0.437688763,5.00156E-03, 0001621P0001354 +-0.532084595,0.437688763; 0001621P0001355 +110,5.00156E-03,-0.532084595,0.437688763,5.00156E-03, 0001623P0001356 +-0.532275549,0.43670639; 0001623P0001357 +110,5.00156E-03,-0.532275549,0.43670639,6.00232E-03, 0001625P0001358 +-0.532275549,0.43670639; 0001625P0001359 +110,6.00232E-03,-0.532275549,0.43670639,6.00232E-03, 0001627P0001360 +-0.532084595,0.437688763; 0001627P0001361 +144,1631,1,0,1633; 0001629P0001362 +128,1,1,1,1,0,0,1,0,0,3.947864243E-04,3.947864243E-04, 0001631P0001363 +1.349605054,1.349605054,2.030994941E-03,2.030994941E-03, 0001631P0001364 +0.53989478,0.53989478,1.,1.,1.,1.,0.904612508,-0.674605134, 0001631P0001365 +0.2627,0.904612508,0.674605134,0.2627,0.801983259,-0.674605134, 0001631P0001366 +0.790681712,0.801983259,0.674605134,0.790681712,3.947864243E-04, 0001631P0001367 +1.349605054,2.030994941E-03,0.53989478; 0001631P0001368 +142,0,1631,1635,1645,3; 0001633P0001369 +102,4,1637,1639,1641,1643; 0001635P0001370 +110,1.24505466,0.53989478,0.,0.10494518,0.53989478,0.; 0001637P0001371 +110,0.10494518,0.53989478,0.,3.947864649E-04,2.030995149E-03,0.; 0001639P0001372 +110,3.947864243E-04,2.030994941E-03,0.,1.349605054, 0001641P0001373 +2.030994941E-03,0.; 0001641P0001374 +110,1.349605054,2.030994941E-03,0.,1.24505466,0.53989478,0.; 0001643P0001375 +102,4,1647,1649,1651,1653; 0001645P0001376 +110,0.801983259,0.57005474,0.790681712,0.801983259,-0.57005474, 0001647P0001377 +0.790681712; 0001647P0001378 +110,0.801983259,-0.57005474,0.790681712,0.904612508, 0001649P0001379 +-0.674605134,0.2627; 0001649P0001380 +110,0.904612508,-0.674605134,0.2627,0.904612508,0.674605134, 0001651P0001381 +0.2627; 0001651P0001382 +110,0.904612508,0.674605134,0.2627,0.801983259,0.57005474, 0001653P0001383 +0.790681712; 0001653P0001384 +144,1657,1,0,1659; 0001655P0001385 +128,1,1,1,1,0,0,1,0,0,2.886016858E-03,2.886016858E-03,1.E-02, 0001657P0001386 +1.E-02,-1.766381486E-13,-1.766381486E-13,1.14010948,1.14010948, 0001657P0001387 +1.,1.,1.,1.,0.79499998,-0.57005474,0.7893243,0.801983259, 0001657P0001388 +-0.57005474,0.790681712,0.79499998,0.57005474,0.7893243, 0001657P0001389 +0.801983259,0.57005474,0.790681712,2.886016858E-03,1.E-02, 0001657P0001390 +-1.766381486E-13,1.14010948; 0001657P0001391 +142,0,1657,1661,1675,3; 0001659P0001392 +102,6,1663,1665,1667,1669,1671,1673; 0001661P0001393 +110,1.E-02,1.14010948,0.,8.035222546E-03,1.14010948,0.; 0001663P0001394 +110,8.035222264E-03,1.14010948,0.,2.88601683E-03,1.13505488,0.; 0001665P0001395 +110,2.886016858E-03,1.13505488,0.,2.886016858E-03,5.0546E-03,0.; 0001667P0001396 +110,2.886016858E-03,5.0546E-03,0.,8.035222292E-03, 0001669P0001397 +-2.785678139E-11,0.; 0001669P0001398 +110,8.035222264E-03,-1.766378214E-13,-0.,9.999999718E-03, 0001671P0001399 +-1.766381486E-13,-0.; 0001671P0001400 +110,1.E-02,-4.418687638E-14,0.,1.E-02,1.14010948,0.; 0001673P0001401 +102,6,1677,1679,1681,1683,1685,1687; 0001675P0001402 +110,0.801983259,0.57005474,0.790681712,0.80005458,0.57005474, 0001677P0001403 +0.790306815; 0001677P0001404 +110,0.80005458,0.57005474,0.790306815,0.79499998,0.56500014, 0001679P0001405 +0.7893243; 0001679P0001406 +110,0.79499998,0.56500014,0.7893243,0.79499998,-0.56500014, 0001681P0001407 +0.7893243; 0001681P0001408 +110,0.79499998,-0.56500014,0.7893243,0.80005458,-0.57005474, 0001683P0001409 +0.790306815; 0001683P0001410 +110,0.80005458,-0.57005474,0.790306815,0.801983259,-0.57005474, 0001685P0001411 +0.790681712; 0001685P0001412 +110,0.801983259,-0.57005474,0.790681712,0.801983259,0.57005474, 0001687P0001413 +0.790681712; 0001687P0001414 +144,1691,1,0,1693; 0001689P0001415 +128,1,1,1,1,0,0,1,0,0,-0.547930868,-0.547930868,1.33226763E-15, 0001691P0001416 +1.33226763E-15,8.035222264E-03,8.035222264E-03,1.E-02,1.E-02,1., 0001691P0001417 +1.,1.,1.,0.902683828,0.674605134,0.262325103,0.80005458, 0001691P0001418 +0.57005474,0.790306815,0.904612508,0.674605134,0.2627, 0001691P0001419 +0.801983259,0.57005474,0.790681712,-0.547930868, 0001691P0001420 +-8.920888766E-19,8.035222265E-03,1.E-02; 0001691P0001421 +142,0,1691,1695,1705,3; 0001693P0001422 +102,4,1697,1699,1701,1703; 0001695P0001423 +110,-0.547930868,1.E-02,0.,-0.547929347,9.992318759E-03,0.; 0001697P0001424 +110,-0.547929347,9.992319418E-03,0.,-2.044498692E-10, 0001699P0001425 +8.035222265E-03,0.; 0001699P0001426 +110,-8.920888766E-19,8.035222265E-03,0.,-1.110222994E-18, 0001701P0001427 +9.999999719E-03,0.; 0001701P0001428 +110,-3.809961552E-17,1.E-02,0.,-0.547930868,1.E-02,0.; 0001703P0001429 +102,4,1707,1709,1711,1713; 0001705P0001430 +110,0.904612508,0.674605134,0.2627,0.904604683,0.674604843, 0001707P0001431 +0.2627; 0001707P0001432 +110,0.904604683,0.674604843,0.2627,0.80005458,0.57005474, 0001709P0001433 +0.790306815; 0001709P0001434 +110,0.80005458,0.57005474,0.790306815,0.801983259,0.57005474, 0001711P0001435 +0.790681712; 0001711P0001436 +110,0.801983259,0.57005474,0.790681712,0.904612508,0.674605134, 0001713P0001437 +0.2627; 0001713P0001438 +144,1717,1,0,1719; 0001715P0001439 +128,1,1,1,1,0,0,1,0,0,2.886016858E-03,2.886016858E-03,1.E-02, 0001717P0001440 +1.E-02,-1.766364832E-13,-1.766364832E-13,1.59010858,1.59010858, 0001717P0001441 +1.,1.,1.,1.,-0.790054,-0.56500014,0.7893243,-0.790054, 0001717P0001442 +-0.571983419,0.790681712,0.80005458,-0.56500014,0.7893243, 0001717P0001443 +0.80005458,-0.571983419,0.790681712,2.886016858E-03,1.E-02, 0001717P0001444 +-1.766364832E-13,1.59010858; 0001717P0001445 +142,0,1717,1721,1741,3; 0001719P0001446 +102,9,1723,1725,1727,1729,1731,1733,1735,1737,1739; 0001721P0001447 +110,7.978296375E-03,5.0546E-03,0.,2.886016808E-03,5.0546E-03,0.; 0001723P0001448 +110,2.886016858E-03,5.0546E-03,0.,8.035222292E-03, 0001725P0001449 +-2.785683547E-11,0.; 0001725P0001450 +110,8.035222264E-03,-1.766364832E-13,0.,9.999999718E-03, 0001727P0001451 +-1.766364832E-13,0.; 0001727P0001452 +110,1.E-02,-4.429789868E-14,0.,1.E-02,1.59010858,0.; 0001729P0001453 +110,1.E-02,1.59010858,0.,8.035222546E-03,1.59010858,0.; 0001731P0001454 +110,8.035222264E-03,1.59010858,0.,2.88601683E-03,1.58505398,0.; 0001733P0001455 +110,2.886016858E-03,1.58505398,0.,7.978296425E-03,1.58505398,0.; 0001735P0001456 +110,7.978296375E-03,1.58505398,0.,7.978296375E-03,0.63505588,0.; 0001737P0001457 +110,7.978296375E-03,0.63505588,0.,7.978296375E-03,5.0546E-03,0.; 0001739P0001458 +102,9,1743,1745,1747,1749,1751,1753,1755,1757,1759; 0001741P0001459 +110,-0.7849994,-0.56999886,0.790295953,-0.7849994,-0.56500014, 0001743P0001460 +0.7893243; 0001743P0001461 +110,-0.7849994,-0.56500014,0.7893243,-0.790054,-0.57005474, 0001745P0001462 +0.790306815; 0001745P0001463 +110,-0.790054,-0.57005474,0.790306815,-0.790054,-0.571983419, 0001747P0001464 +0.790681712; 0001747P0001465 +110,-0.790054,-0.571983419,0.790681712,0.80005458,-0.571983419, 0001749P0001466 +0.790681712; 0001749P0001467 +110,0.80005458,-0.571983419,0.790681712,0.80005458,-0.57005474, 0001751P0001468 +0.790306815; 0001751P0001469 +110,0.80005458,-0.57005474,0.790306815,0.79499998,-0.56500014, 0001753P0001470 +0.7893243; 0001753P0001471 +110,0.79499998,-0.56500014,0.7893243,0.79499998,-0.56999886, 0001755P0001472 +0.790295953; 0001755P0001473 +110,0.79499998,-0.56999886,0.790295953,-0.15499812,-0.56999886, 0001757P0001474 +0.790295953; 0001757P0001475 +110,-0.15499812,-0.56999886,0.790295953,-0.7849994,-0.56999886, 0001759P0001476 +0.790295953; 0001759P0001477 +144,1763,1,0,1765; 0001761P0001478 +128,1,1,1,1,0,0,1,0,0,8.624820429E-03,8.624820429E-03,1.E-02, 0001763P0001479 +1.E-02,-1.647987302E-17,-1.647987302E-17,1.13999772,1.13999772, 0001763P0001480 +1.,1.,1.,1.,0.79499998,-0.56999886,0.7893243,0.79499998, 0001763P0001481 +-0.56999886,0.79069948,0.79499998,0.56999886,0.7893243, 0001763P0001482 +0.79499998,0.56999886,0.79069948,8.624820429E-03,1.E-02, 0001763P0001483 +-1.647987302E-17,1.13999772; 0001763P0001484 +142,0,1763,1767,1781,3; 0001765P0001485 +102,6,1769,1771,1773,1775,1777,1779; 0001767P0001486 +110,1.E-02,1.13999772,0.,9.596473E-03,1.13999772,0.; 0001769P0001487 +110,9.596473168E-03,1.13999772,0.,8.624820419E-03,1.134999,0.; 0001771P0001488 +110,8.624820429E-03,1.134999,0.,8.624820429E-03,4.99872E-03,0.; 0001773P0001489 +110,8.624820429E-03,4.99872E-03,0.,9.596473178E-03, 0001775P0001490 +-4.888605322E-11,0.; 0001775P0001491 +110,9.596473168E-03,0.,0.,1.000000017E-02,0.,0.; 0001777P0001492 +110,1.E-02,0.,0.,1.E-02,1.13999772,0.; 0001779P0001493 +102,6,1783,1785,1787,1789,1791,1793; 0001781P0001494 +110,0.79499998,0.56999886,0.79069948,0.79499998,0.56999886, 0001783P0001495 +0.790295953; 0001783P0001496 +110,0.79499998,0.56999886,0.790295953,0.79499998,0.56500014, 0001785P0001497 +0.7893243; 0001785P0001498 +110,0.79499998,0.56500014,0.7893243,0.79499998,-0.56500014, 0001787P0001499 +0.7893243; 0001787P0001500 +110,0.79499998,-0.56500014,0.7893243,0.79499998,-0.56999886, 0001789P0001501 +0.790295953; 0001789P0001502 +110,0.79499998,-0.56999886,0.790295953,0.79499998,-0.56999886, 0001791P0001503 +0.79069948; 0001791P0001504 +110,0.79499998,-0.56999886,0.79069948,0.79499998,0.56999886, 0001793P0001505 +0.79069948; 0001793P0001506 +144,1797,1,0,1799; 0001795P0001507 +128,1,1,1,1,0,0,1,0,0,2.886016858E-03,2.886016858E-03,1.E-02, 0001797P0001508 +1.E-02,-1.766364832E-13,-1.766364832E-13,1.59010858,1.59010858, 0001797P0001509 +1.,1.,1.,1.,0.80005458,0.56500014,0.7893243,0.80005458, 0001797P0001510 +0.571983419,0.790681712,-0.790054,0.56500014,0.7893243, 0001797P0001511 +-0.790054,0.571983419,0.790681712,2.886016858E-03,1.E-02, 0001797P0001512 +-1.766364832E-13,1.59010858; 0001797P0001513 +142,0,1797,1801,1821,3; 0001799P0001514 +102,9,1803,1805,1807,1809,1811,1813,1815,1817,1819; 0001801P0001515 +110,2.886016858E-03,5.0546E-03,0.,8.035222292E-03, 0001803P0001516 +-2.785678139E-11,0.; 0001803P0001517 +110,8.035222264E-03,-1.766364832E-13,0.,9.999999718E-03, 0001805P0001518 +-1.766364832E-13,0.; 0001805P0001519 +110,1.E-02,-4.429789868E-14,0.,1.E-02,1.59010858,0.; 0001807P0001520 +110,1.E-02,1.59010858,0.,8.035222546E-03,1.59010858,0.; 0001809P0001521 +110,8.035222264E-03,1.59010858,0.,2.88601683E-03,1.58505398,0.; 0001811P0001522 +110,2.886016858E-03,1.58505398,0.,7.978296425E-03,1.58505398,0.; 0001813P0001523 +110,7.978296375E-03,1.58505398,0.,7.978296375E-03,0.9550527,0.; 0001815P0001524 +110,7.978296375E-03,0.9550527,0.,7.978296375E-03,5.0546E-03,0.; 0001817P0001525 +110,7.978296375E-03,5.0546E-03,0.,2.886016808E-03,5.0546E-03,0.; 0001819P0001526 +102,9,1823,1825,1827,1829,1831,1833,1835,1837,1839; 0001821P0001527 +110,0.79499998,0.56500014,0.7893243,0.80005458,0.57005474, 0001823P0001528 +0.790306815; 0001823P0001529 +110,0.80005458,0.57005474,0.790306815,0.80005458,0.571983419, 0001825P0001530 +0.790681712; 0001825P0001531 +110,0.80005458,0.571983419,0.790681712,-0.790054,0.571983419, 0001827P0001532 +0.790681712; 0001827P0001533 +110,-0.790054,0.571983419,0.790681712,-0.790054,0.57005474, 0001829P0001534 +0.790306815; 0001829P0001535 +110,-0.790054,0.57005474,0.790306815,-0.7849994,0.56500014, 0001831P0001536 +0.7893243; 0001831P0001537 +110,-0.7849994,0.56500014,0.7893243,-0.7849994,0.56999886, 0001833P0001538 +0.790295953; 0001833P0001539 +110,-0.7849994,0.56999886,0.790295953,-0.15499812,0.56999886, 0001835P0001540 +0.790295953; 0001835P0001541 +110,-0.15499812,0.56999886,0.790295953,0.79499998,0.56999886, 0001837P0001542 +0.790295953; 0001837P0001543 +110,0.79499998,0.56999886,0.790295953,0.79499998,0.56500014, 0001839P0001544 +0.7893243; 0001839P0001545 +144,1843,1,0,1845; 0001841P0001546 +128,1,1,1,1,0,0,1,0,0,-0.549999877,-0.549999877, 0001843P0001547 +-2.069008645E-03,-2.069008645E-03,8.035222264E-03, 0001843P0001548 +8.035222264E-03,1.E-02,1.E-02,1.,1.,1.,1.,0.80005458,0.57005474, 0001843P0001549 +0.790306815,0.904604974,0.672683988,0.262325103,0.80005458, 0001843P0001550 +0.571983419,0.790681712,0.904604974,0.674612668,0.2627, 0001843P0001551 +-0.549999877,-2.069008645E-03,8.035222264E-03,1.E-02; 0001843P0001552 +142,0,1843,1847,1857,3; 0001845P0001553 +102,4,1849,1851,1853,1855; 0001847P0001554 +110,-0.549999877,8.035222264E-03,0.,-2.070530204E-03, 0001849P0001555 +9.992319415E-03,0.; 0001849P0001556 +110,-2.070529542E-03,9.992319417E-03,0.,-2.069008511E-03, 0001851P0001557 +1.000000068E-02,0.; 0001851P0001558 +110,-2.069008645E-03,1.E-02,0.,-0.549999876,1.E-02,0.; 0001853P0001559 +110,-0.549999877,1.E-02,0.,-0.549999877,8.035222546E-03,0.; 0001855P0001560 +102,4,1859,1861,1863,1865; 0001857P0001561 +110,0.80005458,0.57005474,0.790306815,0.904604683,0.674604843, 0001859P0001562 +0.2627; 0001859P0001563 +110,0.904604683,0.674604843,0.2627,0.904604974,0.674612668, 0001861P0001564 +0.2627; 0001861P0001565 +110,0.904604974,0.674612668,0.2627,0.80005458,0.571983419, 0001863P0001566 +0.790681712; 0001863P0001567 +110,0.80005458,0.571983419,0.790681712,0.80005458,0.57005474, 0001865P0001568 +0.790306815; 0001865P0001569 +144,1869,1,0,1871; 0001867P0001570 +128,1,1,1,1,0,0,1,0,0,-1.E-02,-1.E-02,-8.624820429E-03, 0001869P0001571 +-8.624820429E-03,-1.13999772,-1.13999772,1.647987302E-17, 0001869P0001572 +1.647987302E-17,1.,1.,1.,1.,-0.7849994,-0.56999886,0.79069948, 0001869P0001573 +-0.7849994,-0.56999886,0.7893243,-0.7849994,0.56999886, 0001869P0001574 +0.79069948,-0.7849994,0.56999886,0.7893243,-1.E-02, 0001869P0001575 +-8.624820429E-03,-1.13999772,1.647987302E-17; 0001869P0001576 +142,0,1869,1873,1887,3; 0001871P0001577 +102,6,1875,1877,1879,1881,1883,1885; 0001873P0001578 +110,-9.596473168E-03,-1.13999772,0.,-8.624820419E-03,-1.134999, 0001875P0001579 +0.; 0001875P0001580 +110,-8.624820429E-03,-1.134999,0.,-8.624820429E-03,-4.99872E-03, 0001877P0001581 +0.; 0001877P0001582 +110,-8.624820429E-03,-4.99872E-03,0.,-9.596473178E-03, 0001879P0001583 +4.888605322E-11,0.; 0001879P0001584 +110,-9.596473168E-03,0.,0.,-1.000000017E-02,0.,0.; 0001881P0001585 +110,-1.E-02,0.,0.,-1.E-02,-1.13999772,0.; 0001883P0001586 +110,-1.E-02,-1.13999772,0.,-9.596473E-03,-1.13999772,0.; 0001885P0001587 +102,6,1889,1891,1893,1895,1897,1899; 0001887P0001588 +110,-0.7849994,-0.56999886,0.790295953,-0.7849994,-0.56500014, 0001889P0001589 +0.7893243; 0001889P0001590 +110,-0.7849994,-0.56500014,0.7893243,-0.7849994,0.56500014, 0001891P0001591 +0.7893243; 0001891P0001592 +110,-0.7849994,0.56500014,0.7893243,-0.7849994,0.56999886, 0001893P0001593 +0.790295953; 0001893P0001594 +110,-0.7849994,0.56999886,0.790295953,-0.7849994,0.56999886, 0001895P0001595 +0.79069948; 0001895P0001596 +110,-0.7849994,0.56999886,0.79069948,-0.7849994,-0.56999886, 0001897P0001597 +0.79069948; 0001897P0001598 +110,-0.7849994,-0.56999886,0.79069948,-0.7849994,-0.56999886, 0001899P0001599 +0.790295953; 0001899P0001600 +144,1903,1,0,1905; 0001901P0001601 +128,1,1,1,1,0,0,1,0,0,9.596473168E-03,9.596473168E-03,1.E-02, 0001903P0001602 +1.E-02,0.,0.,0.63000128,0.63000128,1.,1.,1.,1.,-0.7849994, 0001903P0001603 +-0.56999886,0.790295953,-0.7849994,-0.56999886,0.79069948, 0001903P0001604 +-0.15499812,-0.56999886,0.790295953,-0.15499812,-0.56999886, 0001903P0001605 +0.79069948,9.596473168E-03,1.E-02,0.,0.63000128; 0001903P0001606 +142,0,1903,1907,1917,3; 0001905P0001607 +102,4,1909,1911,1913,1915; 0001907P0001608 +110,9.596473168E-03,0.63000128,0.,9.596473168E-03,0.,0.; 0001909P0001609 +110,9.596473168E-03,0.,0.,1.000000017E-02,0.,0.; 0001911P0001610 +110,1.E-02,0.,0.,1.E-02,0.63000128,0.; 0001913P0001611 +110,1.E-02,0.63000128,0.,9.596473E-03,0.63000128,0.; 0001915P0001612 +102,4,1919,1921,1923,1925; 0001917P0001613 +110,-0.15499812,-0.56999886,0.790295953,-0.7849994,-0.56999886, 0001919P0001614 +0.790295953; 0001919P0001615 +110,-0.7849994,-0.56999886,0.790295953,-0.7849994,-0.56999886, 0001921P0001616 +0.79069948; 0001921P0001617 +110,-0.7849994,-0.56999886,0.79069948,-0.15499812,-0.56999886, 0001923P0001618 +0.79069948; 0001923P0001619 +110,-0.15499812,-0.56999886,0.79069948,-0.15499812,-0.56999886, 0001925P0001620 +0.790295953; 0001925P0001621 +144,1929,1,0,1931; 0001927P0001622 +128,1,1,1,1,0,0,1,0,0,9.596473168E-03,9.596473168E-03,1.E-02, 0001929P0001623 +1.E-02,-2.220446049E-16,-2.220446049E-16,0.9499981,0.9499981,1., 0001929P0001624 +1.,1.,1.,-0.15499812,-0.56999886,0.790295953,-0.15499812, 0001929P0001625 +-0.56999886,0.79069948,0.79499998,-0.56999886,0.790295953, 0001929P0001626 +0.79499998,-0.56999886,0.79069948,9.596473168E-03,1.E-02, 0001929P0001627 +-2.220446049E-16,0.9499981; 0001929P0001628 +142,0,1929,1933,1943,3; 0001931P0001629 +102,4,1935,1937,1939,1941; 0001933P0001630 +110,1.E-02,0.9499981,0.,9.596473E-03,0.9499981,0.; 0001935P0001631 +110,9.596473168E-03,0.9499981,0.,9.596473168E-03, 0001937P0001632 +-1.110223025E-16,0.; 0001937P0001633 +110,9.596473168E-03,-2.220446049E-16,0.,1.000000017E-02, 0001939P0001634 +-2.220446049E-16,0.; 0001939P0001635 +110,1.E-02,0.,0.,1.E-02,0.9499981,0.; 0001941P0001636 +102,4,1945,1947,1949,1951; 0001943P0001637 +110,0.79499998,-0.56999886,0.79069948,0.79499998,-0.56999886, 0001945P0001638 +0.790295953; 0001945P0001639 +110,0.79499998,-0.56999886,0.790295953,-0.15499812,-0.56999886, 0001947P0001640 +0.790295953; 0001947P0001641 +110,-0.15499812,-0.56999886,0.790295953,-0.15499812,-0.56999886, 0001949P0001642 +0.79069948; 0001949P0001643 +110,-0.15499812,-0.56999886,0.79069948,0.79499998,-0.56999886, 0001951P0001644 +0.79069948; 0001951P0001645 +144,1955,1,0,1957; 0001953P0001646 +128,1,1,1,1,0,0,1,0,0,3.947864243E-04,3.947864243E-04, 0001955P0001647 +1.799604154,1.799604154,2.030994941E-03,2.030994941E-03, 0001955P0001648 +0.53989478,0.53989478,1.,1.,1.,1.,-0.894604394,-0.674612668, 0001955P0001649 +0.2627,0.904604974,-0.674612668,0.2627,-0.894604394, 0001955P0001650 +-0.571983419,0.790681712,0.904604974,-0.571983419,0.790681712, 0001955P0001651 +3.947864243E-04,1.799604154,2.030994941E-03,0.53989478; 0001955P0001652 +142,0,1955,1959,1969,3; 0001957P0001653 +102,4,1961,1963,1965,1967; 0001959P0001654 +110,0.10494518,0.53989478,0.,3.947864649E-04,2.030995149E-03,0.; 0001961P0001655 +110,3.947864243E-04,2.030994941E-03,0.,1.799604154, 0001963P0001656 +2.030994941E-03,0.; 0001963P0001657 +110,1.799604154,2.030994941E-03,0.,1.69505376,0.53989478,0.; 0001965P0001658 +110,1.69505376,0.53989478,0.,0.10494518,0.53989478,0.; 0001967P0001659 +102,4,1971,1973,1975,1977; 0001969P0001660 +110,-0.790054,-0.571983419,0.790681712,-0.894604394, 0001971P0001661 +-0.674612668,0.2627; 0001971P0001662 +110,-0.894604394,-0.674612668,0.2627,0.904604974,-0.674612668, 0001973P0001663 +0.2627; 0001973P0001664 +110,0.904604974,-0.674612668,0.2627,0.80005458,-0.571983419, 0001975P0001665 +0.790681712; 0001975P0001666 +110,0.80005458,-0.571983419,0.790681712,-0.790054,-0.571983419, 0001977P0001667 +0.790681712; 0001977P0001668 +144,1981,1,0,1983; 0001979P0001669 +128,1,1,1,1,0,0,1,0,0,2.886016858E-03,2.886016858E-03,1.E-02, 0001981P0001670 +1.E-02,-1.766364309E-13,-1.766364309E-13,1.14010948,1.14010948, 0001981P0001671 +1.,1.,1.,1.,-0.7849994,0.57005474,0.7893243,-0.791982679, 0001981P0001672 +0.57005474,0.790681712,-0.7849994,-0.57005474,0.7893243, 0001981P0001673 +-0.791982679,-0.57005474,0.790681712,2.886016858E-03,1.E-02, 0001981P0001674 +-1.766364309E-13,1.14010948; 0001981P0001675 +142,0,1981,1985,1999,3; 0001983P0001676 +102,6,1987,1989,1991,1993,1995,1997; 0001985P0001677 +110,2.886016858E-03,1.13505488,0.,2.886016858E-03,5.0546E-03,0.; 0001987P0001678 +110,2.886016858E-03,5.0546E-03,0.,8.035222292E-03, 0001989P0001679 +-2.776945443E-11,0.; 0001989P0001680 +110,8.035222264E-03,-1.766364309E-13,0.,9.999999718E-03, 0001991P0001681 +-1.766364181E-13,0.; 0001991P0001682 +110,1.E-02,-4.418459081E-14,0.,1.E-02,1.14010948,0.; 0001993P0001683 +110,1.E-02,1.14010948,0.,8.035222546E-03,1.14010948,0.; 0001995P0001684 +110,8.035222264E-03,1.14010948,0.,2.88601683E-03,1.13505488,0.; 0001997P0001685 +102,6,2001,2003,2005,2007,2009,2011; 0001999P0001686 +110,-0.7849994,-0.56500014,0.7893243,-0.7849994,0.56500014, 0002001P0001687 +0.7893243; 0002001P0001688 +110,-0.7849994,0.56500014,0.7893243,-0.790054,0.57005474, 0002003P0001689 +0.790306815; 0002003P0001690 +110,-0.790054,0.57005474,0.790306815,-0.791982679,0.57005474, 0002005P0001691 +0.790681712; 0002005P0001692 +110,-0.791982679,0.57005474,0.790681712,-0.791982679, 0002007P0001693 +-0.57005474,0.790681712; 0002007P0001694 +110,-0.791982679,-0.57005474,0.790681712,-0.790054,-0.57005474, 0002009P0001695 +0.790306815; 0002009P0001696 +110,-0.790054,-0.57005474,0.790306815,-0.7849994,-0.56500014, 0002011P0001697 +0.7893243; 0002011P0001698 +144,2015,1,0,2017; 0002013P0001699 +128,1,1,1,1,0,0,1,0,0,-1.E-02,-1.E-02,-9.596473168E-03, 0002015P0001700 +-9.596473168E-03,-0.9499981,-0.9499981,0.,0.,1.,1.,1.,1., 0002015P0001701 +-0.15499812,0.56999886,0.79069948,-0.15499812,0.56999886, 0002015P0001702 +0.790295953,0.79499998,0.56999886,0.79069948,0.79499998, 0002015P0001703 +0.56999886,0.790295953,-1.E-02,-9.596473168E-03,-0.9499981,0.; 0002015P0001704 +142,0,2015,2019,2029,3; 0002017P0001705 +102,4,2021,2023,2025,2027; 0002019P0001706 +110,-1.E-02,-0.9499981,0.,-9.596473E-03,-0.9499981,0.; 0002021P0001707 +110,-9.596473168E-03,-0.9499981,0.,-9.596473168E-03, 0002023P0001708 +1.110223025E-16,0.; 0002023P0001709 +110,-9.596473168E-03,0.,0.,-1.000000017E-02,0.,0.; 0002025P0001710 +110,-1.E-02,0.,0.,-1.E-02,-0.9499981,0.; 0002027P0001711 +102,4,2031,2033,2035,2037; 0002029P0001712 +110,-0.15499812,0.56999886,0.79069948,-0.15499812,0.56999886, 0002031P0001713 +0.790295953; 0002031P0001714 +110,-0.15499812,0.56999886,0.790295953,0.79499998,0.56999886, 0002033P0001715 +0.790295953; 0002033P0001716 +110,0.79499998,0.56999886,0.790295953,0.79499998,0.56999886, 0002035P0001717 +0.79069948; 0002035P0001718 +110,0.79499998,0.56999886,0.79069948,-0.15499812,0.56999886, 0002037P0001719 +0.79069948; 0002037P0001720 +144,2041,1,0,2043; 0002039P0001721 +128,1,1,1,1,0,0,1,0,0,-0.9499981,-0.9499981,2.220446049E-16, 0002041P0001722 +2.220446049E-16,-1.13999772,-1.13999772,0.,0.,1.,1.,1.,1., 0002041P0001723 +0.79499998,-0.56999886,0.79069948,-0.15499812,-0.56999886, 0002041P0001724 +0.79069948,0.79499998,0.56999886,0.79069948,-0.15499812, 0002041P0001725 +0.56999886,0.79069948,-0.9499981,2.220446049E-16,-1.13999772,0.; 0002041P0001726 +142,0,2041,2045,2055,3; 0002043P0001727 +102,4,2047,2049,2051,2053; 0002045P0001728 +110,-0.9499981,-1.13999772,0.,1.110223025E-16,-1.13999772,0.; 0002047P0001729 +110,2.220446049E-16,-1.13999772,0.,2.220446049E-16,0.,0.; 0002049P0001730 +110,0.,0.,0.,-0.9499981,0.,0.; 0002051P0001731 +110,-0.9499981,0.,0.,-0.9499981,-1.13999772,0.; 0002053P0001732 +102,4,2057,2059,2061,2063; 0002055P0001733 +110,0.79499998,-0.56999886,0.79069948,-0.15499812,-0.56999886, 0002057P0001734 +0.79069948; 0002057P0001735 +110,-0.15499812,-0.56999886,0.79069948,-0.15499812,0.56999886, 0002059P0001736 +0.79069948; 0002059P0001737 +110,-0.15499812,0.56999886,0.79069948,0.79499998,0.56999886, 0002061P0001738 +0.79069948; 0002061P0001739 +110,0.79499998,0.56999886,0.79069948,0.79499998,-0.56999886, 0002063P0001740 +0.79069948; 0002063P0001741 +144,2067,1,0,2069; 0002065P0001742 +128,1,1,1,1,0,0,1,0,0,-1.E-02,-1.E-02,-9.596473168E-03, 0002067P0001743 +-9.596473168E-03,-0.63000128,-0.63000128,1.110223025E-16, 0002067P0001744 +1.110223025E-16,1.,1.,1.,1.,-0.7849994,0.56999886,0.79069948, 0002067P0001745 +-0.7849994,0.56999886,0.790295953,-0.15499812,0.56999886, 0002067P0001746 +0.79069948,-0.15499812,0.56999886,0.790295953,-1.E-02, 0002067P0001747 +-9.596473168E-03,-0.63000128,0.; 0002067P0001748 +142,0,2067,2071,2081,3; 0002069P0001749 +102,4,2073,2075,2077,2079; 0002071P0001750 +110,-9.596473168E-03,-0.63000128,0.,-9.596473168E-03,0.,0.; 0002073P0001751 +110,-9.596473168E-03,0.,0.,-1.000000017E-02,0.,0.; 0002075P0001752 +110,-1.E-02,0.,0.,-1.E-02,-0.63000128,0.; 0002077P0001753 +110,-1.E-02,-0.63000128,0.,-9.596473E-03,-0.63000128,0.; 0002079P0001754 +102,4,2083,2085,2087,2089; 0002081P0001755 +110,-0.7849994,0.56999886,0.790295953,-0.15499812,0.56999886, 0002083P0001756 +0.790295953; 0002083P0001757 +110,-0.15499812,0.56999886,0.790295953,-0.15499812,0.56999886, 0002085P0001758 +0.79069948; 0002085P0001759 +110,-0.15499812,0.56999886,0.79069948,-0.7849994,0.56999886, 0002087P0001760 +0.79069948; 0002087P0001761 +110,-0.7849994,0.56999886,0.79069948,-0.7849994,0.56999886, 0002089P0001762 +0.790295953; 0002089P0001763 +144,2093,1,0,2095; 0002091P0001764 +128,1,1,1,1,0,0,1,0,0,-0.547930868,-0.547930868,5.551115123E-17, 0002093P0001765 +5.551115123E-17,8.035222264E-03,8.035222264E-03,1.E-02,1.E-02, 0002093P0001766 +1.,1.,1.,1.,-0.894604394,0.672683988,0.262325103,-0.790054, 0002093P0001767 +0.57005474,0.790306815,-0.894604394,0.674612668,0.2627, 0002093P0001768 +-0.790054,0.571983419,0.790681712,-0.547930868,0., 0002093P0001769 +8.035222264E-03,1.E-02; 0002093P0001770 +142,0,2093,2097,2107,3; 0002095P0001771 +102,4,2099,2101,2103,2105; 0002097P0001772 +110,-0.547929347,9.992319418E-03,0.,-2.044498692E-10, 0002099P0001773 +8.035222265E-03,0.; 0002099P0001774 +110,0.,8.035222264E-03,0.,0.,9.999999718E-03,0.; 0002101P0001775 +110,-1.110223025E-16,1.E-02,0.,-0.547930868,1.E-02,0.; 0002103P0001776 +110,-0.547930868,1.E-02,0.,-0.547929347,9.992318759E-03,0.; 0002105P0001777 +102,4,2109,2111,2113,2115; 0002107P0001778 +110,-0.894604103,0.674604843,0.2627,-0.790054,0.57005474, 0002109P0001779 +0.790306815; 0002109P0001780 +110,-0.790054,0.57005474,0.790306815,-0.790054,0.571983419, 0002111P0001781 +0.790681712; 0002111P0001782 +110,-0.790054,0.571983419,0.790681712,-0.894604394,0.674612668, 0002113P0001783 +0.2627; 0002113P0001784 +110,-0.894604394,0.674612668,0.2627,-0.894604103,0.674604843, 0002115P0001785 +0.2627; 0002115P0001786 +144,2119,1,0,2121; 0002117P0001787 +128,1,1,1,1,0,0,1,0,0,3.947864243E-04,3.947864243E-04, 0002119P0001788 +1.799604154,1.799604154,2.030994941E-03,2.030994941E-03, 0002119P0001789 +0.53989478,0.53989478,1.,1.,1.,1.,0.904604974,0.674612668, 0002119P0001790 +0.2627,-0.894604394,0.674612668,0.2627,0.904604974,0.571983419, 0002119P0001791 +0.790681712,-0.894604394,0.571983419,0.790681712, 0002119P0001792 +3.947864243E-04,1.799604154,2.030994941E-03,0.53989478; 0002119P0001793 +142,0,2119,2123,2133,3; 0002121P0001794 +102,4,2125,2127,2129,2131; 0002123P0001795 +110,3.947864243E-04,2.030994941E-03,0.,1.799604154, 0002125P0001796 +2.030994941E-03,0.; 0002125P0001797 +110,1.799604154,2.030994941E-03,0.,1.69505376,0.53989478,0.; 0002127P0001798 +110,1.69505376,0.53989478,0.,0.10494518,0.53989478,0.; 0002129P0001799 +110,0.10494518,0.53989478,0.,3.947864649E-04,2.030995149E-03,0.; 0002131P0001800 +102,4,2135,2137,2139,2141; 0002133P0001801 +110,0.904604974,0.674612668,0.2627,-0.894604394,0.674612668, 0002135P0001802 +0.2627; 0002135P0001803 +110,-0.894604394,0.674612668,0.2627,-0.790054,0.571983419, 0002137P0001804 +0.790681712; 0002137P0001805 +110,-0.790054,0.571983419,0.790681712,0.80005458,0.571983419, 0002139P0001806 +0.790681712; 0002139P0001807 +110,0.80005458,0.571983419,0.790681712,0.904604974,0.674612668, 0002141P0001808 +0.2627; 0002141P0001809 +144,2145,1,0,2147; 0002143P0001810 +128,1,1,1,1,0,0,1,0,0,-0.63000128,-0.63000128,1.110223025E-16, 0002145P0001811 +1.110223025E-16,-1.13999772,-1.13999772,0.,0.,1.,1.,1.,1., 0002145P0001812 +-0.15499812,-0.56999886,0.79069948,-0.7849994,-0.56999886, 0002145P0001813 +0.79069948,-0.15499812,0.56999886,0.79069948,-0.7849994, 0002145P0001814 +0.56999886,0.79069948,-0.63000128,1.110223025E-16,-1.13999772, 0002145P0001815 +0.; 0002145P0001816 +142,0,2145,2149,2159,3; 0002147P0001817 +102,4,2151,2153,2155,2157; 0002149P0001818 +110,-0.63000128,-1.13999772,0.,0.,-1.13999772,0.; 0002151P0001819 +110,0.,-1.13999772,0.,0.,0.,0.; 0002153P0001820 +110,1.110223025E-16,0.,0.,-0.63000128,0.,0.; 0002155P0001821 +110,-0.63000128,0.,0.,-0.63000128,-1.13999772,0.; 0002157P0001822 +102,4,2161,2163,2165,2167; 0002159P0001823 +110,-0.15499812,-0.56999886,0.79069948,-0.7849994,-0.56999886, 0002161P0001824 +0.79069948; 0002161P0001825 +110,-0.7849994,-0.56999886,0.79069948,-0.7849994,0.56999886, 0002163P0001826 +0.79069948; 0002163P0001827 +110,-0.7849994,0.56999886,0.79069948,-0.15499812,0.56999886, 0002165P0001828 +0.79069948; 0002165P0001829 +110,-0.15499812,0.56999886,0.79069948,-0.15499812,-0.56999886, 0002167P0001830 +0.79069948; 0002167P0001831 +144,2171,1,0,2173; 0002169P0001832 +128,1,1,1,1,0,0,1,0,0,-0.549999877,-0.549999877, 0002171P0001833 +-2.069008645E-03,-2.069008645E-03,8.035222264E-03, 0002171P0001834 +8.035222264E-03,1.E-02,1.E-02,1.,1.,1.,1.,-0.790054,0.57005474, 0002171P0001835 +0.790306815,-0.892683248,0.674605134,0.262325103,-0.791982679, 0002171P0001836 +0.57005474,0.790681712,-0.894611928,0.674605134,0.2627, 0002171P0001837 +-0.549999877,-2.069008645E-03,8.035222264E-03,1.E-02; 0002171P0001838 +142,0,2171,2175,2185,3; 0002173P0001839 +102,4,2177,2179,2181,2183; 0002175P0001840 +110,-2.070529542E-03,9.992319417E-03,0.,-2.069008511E-03, 0002177P0001841 +1.000000068E-02,0.; 0002177P0001842 +110,-2.069008645E-03,1.E-02,0.,-0.549999876,1.E-02,0.; 0002179P0001843 +110,-0.549999877,1.E-02,0.,-0.549999877,8.035222546E-03,0.; 0002181P0001844 +110,-0.549999877,8.035222264E-03,0.,-2.070530204E-03, 0002183P0001845 +9.992319415E-03,0.; 0002183P0001846 +102,4,2187,2189,2191,2193; 0002185P0001847 +110,-0.894604103,0.674604843,0.2627,-0.894611928,0.674605134, 0002187P0001848 +0.2627; 0002187P0001849 +110,-0.894611928,0.674605134,0.2627,-0.791982679,0.57005474, 0002189P0001850 +0.790681712; 0002189P0001851 +110,-0.791982679,0.57005474,0.790681712,-0.790054,0.57005474, 0002191P0001852 +0.790306815; 0002191P0001853 +110,-0.790054,0.57005474,0.790306815,-0.894604103,0.674604843, 0002193P0001854 +0.2627; 0002193P0001855 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002195P0001856 +S 1G 4D 2196P 1856 T0000001 diff --git a/src/Mod/Idf/lib/SOT23.igs b/src/Mod/Idf/lib/SOT23.igs new file mode 100644 index 000000000..ba22f2c65 --- /dev/null +++ b/src/Mod/Idf/lib/SOT23.igs @@ -0,0 +1,9026 @@ + S0000001 +,,31HOpen CASCADE IGES processor 6.5,13HFilename.iges, G0000001 +16HOpen CASCADE 6.5,31HOpen CASCADE IGES processor 6.5,32,308,15,308,15,G0000002 +,1.,1,4HINCH,1,0.000394,15H20120128.235219,5.5076E-11,0.057518,3Htux,, G0000003 +11,0,15H20120128.235219,; G0000004 + 144 1 0 0 0 0 0 000000000D0000001 + 144 0 -2531 1 0 SOT23008 D0000002 + 128 2 0 0 0 0 0 000010000D0000003 + 128 0 0 8 0 0D0000004 + 142 10 0 0 0 0 0 000010500D0000005 + 142 0 0 1 0 0D0000006 + 102 11 0 0 0 0 0 000010000D0000007 + 102 0 0 1 0 0D0000008 + 110 12 0 0 0 0 0 000010000D0000009 + 110 0 -2531 2 0 0D0000010 + 126 14 0 0 0 0 0 000010000D0000011 + 126 0 -2531 21 0 0D0000012 + 110 35 0 0 0 0 0 000010000D0000013 + 110 0 -2531 1 0 0D0000014 + 126 36 0 0 0 0 0 000010000D0000015 + 126 0 -2531 20 0 0D0000016 + 102 56 0 0 0 0 0 000010000D0000017 + 102 0 0 1 0 0D0000018 + 110 57 0 0 0 0 0 000010000D0000019 + 110 0 0 2 0 0D0000020 + 110 59 0 0 0 0 0 000010000D0000021 + 110 0 0 2 0 0D0000022 + 110 61 0 0 0 0 0 000010000D0000023 + 110 0 0 2 0 0D0000024 + 110 63 0 0 0 0 0 000010000D0000025 + 110 0 0 2 0 0D0000026 + 144 65 0 0 0 0 0 000000000D0000027 + 144 0 -2533 1 0 SOT23006 D0000028 + 128 66 0 0 0 0 0 000010000D0000029 + 128 0 0 8 0 0D0000030 + 142 74 0 0 0 0 0 000010500D0000031 + 142 0 0 1 0 0D0000032 + 102 75 0 0 0 0 0 000010000D0000033 + 102 0 0 1 0 0D0000034 + 110 76 0 0 0 0 0 000010000D0000035 + 110 0 -2533 1 0 0D0000036 + 110 77 0 0 0 0 0 000010000D0000037 + 110 0 -2533 2 0 0D0000038 + 110 79 0 0 0 0 0 000010000D0000039 + 110 0 -2533 2 0 0D0000040 + 110 81 0 0 0 0 0 000010000D0000041 + 110 0 -2533 1 0 0D0000042 + 102 82 0 0 0 0 0 000010000D0000043 + 102 0 0 1 0 0D0000044 + 110 83 0 0 0 0 0 000010000D0000045 + 110 0 0 2 0 0D0000046 + 110 85 0 0 0 0 0 000010000D0000047 + 110 0 0 2 0 0D0000048 + 110 87 0 0 0 0 0 000010000D0000049 + 110 0 0 2 0 0D0000050 + 110 89 0 0 0 0 0 000010000D0000051 + 110 0 0 2 0 0D0000052 + 144 91 0 0 0 0 0 000000000D0000053 + 144 0 -2535 1 0 SOT23001 D0000054 + 128 92 0 0 0 0 0 000010000D0000055 + 128 0 0 8 0 0D0000056 + 142 100 0 0 0 0 0 000010500D0000057 + 142 0 0 1 0 0D0000058 + 102 101 0 0 0 0 0 000010000D0000059 + 102 0 0 1 0 0D0000060 + 126 102 0 0 0 0 0 000010000D0000061 + 126 0 -2535 21 0 0D0000062 + 110 123 0 0 0 0 0 000010000D0000063 + 110 0 -2535 2 0 0D0000064 + 126 125 0 0 0 0 0 000010000D0000065 + 126 0 -2535 21 0 0D0000066 + 110 146 0 0 0 0 0 000010000D0000067 + 110 0 -2535 1 0 0D0000068 + 126 147 0 0 0 0 0 000010000D0000069 + 126 0 -2535 20 0 0D0000070 + 110 167 0 0 0 0 0 000010000D0000071 + 110 0 -2535 1 0 0D0000072 + 126 168 0 0 0 0 0 000010000D0000073 + 126 0 -2535 21 0 0D0000074 + 126 189 0 0 0 0 0 000010000D0000075 + 126 0 -2535 20 0 0D0000076 + 102 209 0 0 0 0 0 000010000D0000077 + 102 0 0 1 0 0D0000078 + 110 210 0 0 0 0 0 000010000D0000079 + 110 0 0 2 0 0D0000080 + 110 212 0 0 0 0 0 000010000D0000081 + 110 0 0 2 0 0D0000082 + 110 214 0 0 0 0 0 000010000D0000083 + 110 0 0 2 0 0D0000084 + 110 216 0 0 0 0 0 000010000D0000085 + 110 0 0 2 0 0D0000086 + 110 218 0 0 0 0 0 000010000D0000087 + 110 0 0 2 0 0D0000088 + 110 220 0 0 0 0 0 000010000D0000089 + 110 0 0 2 0 0D0000090 + 110 222 0 0 0 0 0 000010000D0000091 + 110 0 0 2 0 0D0000092 + 110 224 0 0 0 0 0 000010000D0000093 + 110 0 0 2 0 0D0000094 + 144 226 0 0 0 0 0 000000000D0000095 + 144 0 -2537 1 0 SOT23015 D0000096 + 120 227 0 0 0 0 0 000010000D0000097 + 120 0 0 1 0 0D0000098 + 110 228 0 0 0 0 0 000010000D0000099 + 110 0 0 2 0 0D0000100 + 110 230 0 0 0 0 0 000010000D0000101 + 110 0 0 2 0 0D0000102 + 142 232 0 0 0 0 0 000010500D0000103 + 142 0 0 1 0 0D0000104 + 102 233 0 0 0 0 0 000010000D0000105 + 102 0 0 1 0 0D0000106 + 126 234 0 0 0 0 0 000010000D0000107 + 126 0 -2537 17 0 0D0000108 + 126 251 0 0 0 0 0 000010000D0000109 + 126 0 -2537 20 0 0D0000110 + 110 271 0 0 0 0 0 000010000D0000111 + 110 0 -2537 2 0 0D0000112 + 126 273 0 0 0 0 0 000010000D0000113 + 126 0 -2537 18 0 0D0000114 + 102 291 0 0 0 0 0 000010000D0000115 + 102 0 0 1 0 0D0000116 + 100 292 0 0 0 0 119 000010000D0000117 + 100 0 0 3 0 0D0000118 + 124 295 0 0 0 0 0 000000000D0000119 + 124 0 0 3 0 0D0000120 + 110 298 0 0 0 0 0 000010000D0000121 + 110 0 0 2 0 0D0000122 + 100 300 0 0 0 0 125 000010000D0000123 + 100 0 0 3 0 0D0000124 + 124 303 0 0 0 0 0 000000000D0000125 + 124 0 0 3 0 0D0000126 + 110 306 0 0 0 0 0 000010000D0000127 + 110 0 0 2 0 0D0000128 + 144 308 0 0 0 0 0 000000000D0000129 + 144 0 -2539 1 0 SOT23016 D0000130 + 120 309 0 0 0 0 0 000010000D0000131 + 120 0 0 1 0 0D0000132 + 110 310 0 0 0 0 0 000010000D0000133 + 110 0 0 2 0 0D0000134 + 110 312 0 0 0 0 0 000010000D0000135 + 110 0 0 2 0 0D0000136 + 142 314 0 0 0 0 0 000010500D0000137 + 142 0 0 1 0 0D0000138 + 102 315 0 0 0 0 0 000010000D0000139 + 102 0 0 1 0 0D0000140 + 110 316 0 0 0 0 0 000010000D0000141 + 110 0 -2539 1 0 0D0000142 + 126 317 0 0 0 0 0 000010000D0000143 + 126 0 -2539 20 0 0D0000144 + 126 337 0 0 0 0 0 000010000D0000145 + 126 0 -2539 21 0 0D0000146 + 126 358 0 0 0 0 0 000010000D0000147 + 126 0 -2539 20 0 0D0000148 + 102 378 0 0 0 0 0 000010000D0000149 + 102 0 0 1 0 0D0000150 + 100 379 0 0 0 0 153 000010000D0000151 + 100 0 0 3 0 0D0000152 + 124 382 0 0 0 0 0 000000000D0000153 + 124 0 0 3 0 0D0000154 + 110 385 0 0 0 0 0 000010000D0000155 + 110 0 0 2 0 0D0000156 + 100 387 0 0 0 0 159 000010000D0000157 + 100 0 0 3 0 0D0000158 + 124 390 0 0 0 0 0 000000000D0000159 + 124 0 0 3 0 0D0000160 + 110 393 0 0 0 0 0 000010000D0000161 + 110 0 0 2 0 0D0000162 + 144 395 0 0 0 0 0 000000000D0000163 + 144 0 -2541 1 0 SOT23022 D0000164 + 120 396 0 0 0 0 0 000010000D0000165 + 120 0 0 1 0 0D0000166 + 110 397 0 0 0 0 0 000010000D0000167 + 110 0 0 2 0 0D0000168 + 110 399 0 0 0 0 0 000010000D0000169 + 110 0 0 2 0 0D0000170 + 142 401 0 0 0 0 0 000010500D0000171 + 142 0 0 1 0 0D0000172 + 102 402 0 0 0 0 0 000010000D0000173 + 102 0 0 1 0 0D0000174 + 110 403 0 0 0 0 0 000010000D0000175 + 110 0 -2541 2 0 0D0000176 + 110 405 0 0 0 0 0 000010000D0000177 + 110 0 -2541 1 0 0D0000178 + 110 406 0 0 0 0 0 000010000D0000179 + 110 0 -2541 1 0 0D0000180 + 126 407 0 0 0 0 0 000010000D0000181 + 126 0 -2541 20 0 0D0000182 + 102 427 0 0 0 0 0 000010000D0000183 + 102 0 0 1 0 0D0000184 + 100 428 0 0 0 0 187 000010000D0000185 + 100 0 0 3 0 0D0000186 + 124 431 0 0 0 0 0 000000000D0000187 + 124 0 0 3 0 0D0000188 + 110 434 0 0 0 0 0 000010000D0000189 + 110 0 0 2 0 0D0000190 + 100 436 0 0 0 0 193 000010000D0000191 + 100 0 0 3 0 0D0000192 + 124 439 0 0 0 0 0 000000000D0000193 + 124 0 0 3 0 0D0000194 + 110 442 0 0 0 0 0 000010000D0000195 + 110 0 0 2 0 0D0000196 + 144 444 0 0 0 0 0 000000000D0000197 + 144 0 -2543 1 0 SOT23011 D0000198 + 120 445 0 0 0 0 0 000010000D0000199 + 120 0 0 1 0 0D0000200 + 110 446 0 0 0 0 0 000010000D0000201 + 110 0 0 2 0 0D0000202 + 100 448 0 0 0 0 205 000010000D0000203 + 100 0 0 2 0 0D0000204 + 124 450 0 0 0 0 0 000000000D0000205 + 124 0 0 3 0 0D0000206 + 142 453 0 0 0 0 0 000010500D0000207 + 142 0 0 1 0 0D0000208 + 102 454 0 0 0 0 0 000010000D0000209 + 102 0 0 1 0 0D0000210 + 126 455 0 0 0 0 0 000010000D0000211 + 126 0 -2543 21 0 0D0000212 + 126 476 0 0 0 0 0 000010000D0000213 + 126 0 -2543 21 0 0D0000214 + 126 497 0 0 0 0 0 000010000D0000215 + 126 0 -2543 21 0 0D0000216 + 102 518 0 0 0 0 0 000010000D0000217 + 102 0 0 1 0 0D0000218 + 100 519 0 0 0 0 221 000010000D0000219 + 100 0 0 2 0 0D0000220 + 124 521 0 0 0 0 0 000000000D0000221 + 124 0 0 3 0 0D0000222 + 100 524 0 0 0 0 225 000010000D0000223 + 100 0 0 3 0 0D0000224 + 124 527 0 0 0 0 0 000000000D0000225 + 124 0 0 3 0 0D0000226 + 100 530 0 0 0 0 229 000010000D0000227 + 100 0 0 3 0 0D0000228 + 124 533 0 0 0 0 0 000000000D0000229 + 124 0 0 4 0 0D0000230 + 144 537 0 0 0 0 0 000000000D0000231 + 144 0 -2545 1 0 SOT23029 D0000232 + 120 538 0 0 0 0 0 000010000D0000233 + 120 0 0 1 0 0D0000234 + 110 539 0 0 0 0 0 000010000D0000235 + 110 0 0 2 0 0D0000236 + 110 541 0 0 0 0 0 000010000D0000237 + 110 0 0 2 0 0D0000238 + 142 543 0 0 0 0 0 000010500D0000239 + 142 0 0 1 0 0D0000240 + 102 544 0 0 0 0 0 000010000D0000241 + 102 0 0 1 0 0D0000242 + 126 545 0 0 0 0 0 000010000D0000243 + 126 0 -2545 20 0 0D0000244 + 126 565 0 0 0 0 0 000010000D0000245 + 126 0 -2545 20 0 0D0000246 + 126 585 0 0 0 0 0 000010000D0000247 + 126 0 -2545 21 0 0D0000248 + 126 606 0 0 0 0 0 000010000D0000249 + 126 0 -2545 21 0 0D0000250 + 102 627 0 0 0 0 0 000010000D0000251 + 102 0 0 1 0 0D0000252 + 126 628 0 0 0 0 0 000010000D0000253 + 126 0 0 7 0 0D0000254 + 110 635 0 0 0 0 0 000010000D0000255 + 110 0 0 2 0 0D0000256 + 100 637 0 0 0 0 259 000010000D0000257 + 100 0 0 3 0 0D0000258 + 124 640 0 0 0 0 0 000000000D0000259 + 124 0 0 4 0 0D0000260 + 110 644 0 0 0 0 0 000010000D0000261 + 110 0 0 2 0 0D0000262 + 144 646 0 0 0 0 0 000000000D0000263 + 144 0 -2547 1 0 SOT23018 D0000264 + 120 647 0 0 0 0 0 000010000D0000265 + 120 0 0 1 0 0D0000266 + 110 648 0 0 0 0 0 000010000D0000267 + 110 0 0 2 0 0D0000268 + 110 650 0 0 0 0 0 000010000D0000269 + 110 0 0 2 0 0D0000270 + 142 652 0 0 0 0 0 000010500D0000271 + 142 0 0 1 0 0D0000272 + 102 653 0 0 0 0 0 000010000D0000273 + 102 0 0 1 0 0D0000274 + 126 654 0 0 0 0 0 000010000D0000275 + 126 0 -2547 20 0 0D0000276 + 126 674 0 0 0 0 0 000010000D0000277 + 126 0 -2547 20 0 0D0000278 + 126 694 0 0 0 0 0 000010000D0000279 + 126 0 -2547 21 0 0D0000280 + 126 715 0 0 0 0 0 000010000D0000281 + 126 0 -2547 21 0 0D0000282 + 102 736 0 0 0 0 0 000010000D0000283 + 102 0 0 1 0 0D0000284 + 126 737 0 0 0 0 0 000010000D0000285 + 126 0 0 7 0 0D0000286 + 110 744 0 0 0 0 0 000010000D0000287 + 110 0 0 2 0 0D0000288 + 100 746 0 0 0 0 291 000010000D0000289 + 100 0 0 3 0 0D0000290 + 124 749 0 0 0 0 0 000000000D0000291 + 124 0 0 4 0 0D0000292 + 110 753 0 0 0 0 0 000010000D0000293 + 110 0 0 2 0 0D0000294 + 144 755 0 0 0 0 0 000000000D0000295 + 144 0 -2549 1 0 SOT23005 D0000296 + 128 756 0 0 0 0 0 000010000D0000297 + 128 0 0 8 0 0D0000298 + 142 764 0 0 0 0 0 000010500D0000299 + 142 0 0 1 0 0D0000300 + 102 765 0 0 0 0 0 000010000D0000301 + 102 0 0 1 0 0D0000302 + 110 766 0 0 0 0 0 000010000D0000303 + 110 0 -2549 1 0 0D0000304 + 126 767 0 0 0 0 0 000010000D0000305 + 126 0 -2549 22 0 0D0000306 + 110 789 0 0 0 0 0 000010000D0000307 + 110 0 -2549 2 0 0D0000308 + 126 791 0 0 0 0 0 000010000D0000309 + 126 0 -2549 21 0 0D0000310 + 102 812 0 0 0 0 0 000010000D0000311 + 102 0 0 1 0 0D0000312 + 110 813 0 0 0 0 0 000010000D0000313 + 110 0 0 2 0 0D0000314 + 110 815 0 0 0 0 0 000010000D0000315 + 110 0 0 2 0 0D0000316 + 110 817 0 0 0 0 0 000010000D0000317 + 110 0 0 2 0 0D0000318 + 110 819 0 0 0 0 0 000010000D0000319 + 110 0 0 2 0 0D0000320 + 144 821 0 0 0 0 0 000000000D0000321 + 144 0 -2551 1 0 SOT23002 D0000322 + 128 822 0 0 0 0 0 000010000D0000323 + 128 0 0 7 0 0D0000324 + 142 829 0 0 0 0 0 000010500D0000325 + 142 0 0 1 0 0D0000326 + 102 830 0 0 0 0 0 000010000D0000327 + 102 0 0 1 0 0D0000328 + 110 831 0 0 0 0 0 000010000D0000329 + 110 0 -2551 1 0 0D0000330 + 126 832 0 0 0 0 0 000010000D0000331 + 126 0 -2551 21 0 0D0000332 + 126 853 0 0 0 0 0 000010000D0000333 + 126 0 -2551 20 0 0D0000334 + 126 873 0 0 0 0 0 000010000D0000335 + 126 0 -2551 21 0 0D0000336 + 110 894 0 0 0 0 0 000010000D0000337 + 110 0 -2551 2 0 0D0000338 + 126 896 0 0 0 0 0 000010000D0000339 + 126 0 -2551 22 0 0D0000340 + 110 918 0 0 0 0 0 000010000D0000341 + 110 0 -2551 1 0 0D0000342 + 126 919 0 0 0 0 0 000010000D0000343 + 126 0 -2551 20 0 0D0000344 + 110 939 0 0 0 0 0 000010000D0000345 + 110 0 -2551 1 0 0D0000346 + 126 940 0 0 0 0 0 000010000D0000347 + 126 0 -2551 21 0 0D0000348 + 126 961 0 0 0 0 0 000010000D0000349 + 126 0 -2551 20 0 0D0000350 + 126 981 0 0 0 0 0 000010000D0000351 + 126 0 -2551 21 0 0D0000352 + 102 1002 0 0 0 0 0 000010000D0000353 + 102 0 0 1 0 0D0000354 + 110 1003 0 0 0 0 0 000010000D0000355 + 110 0 0 2 0 0D0000356 + 110 1005 0 0 0 0 0 000010000D0000357 + 110 0 0 2 0 0D0000358 + 110 1007 0 0 0 0 0 000010000D0000359 + 110 0 0 2 0 0D0000360 + 110 1009 0 0 0 0 0 000010000D0000361 + 110 0 0 2 0 0D0000362 + 110 1011 0 0 0 0 0 000010000D0000363 + 110 0 0 2 0 0D0000364 + 110 1013 0 0 0 0 0 000010000D0000365 + 110 0 0 2 0 0D0000366 + 110 1015 0 0 0 0 0 000010000D0000367 + 110 0 0 2 0 0D0000368 + 110 1017 0 0 0 0 0 000010000D0000369 + 110 0 0 2 0 0D0000370 + 110 1019 0 0 0 0 0 000010000D0000371 + 110 0 0 2 0 0D0000372 + 110 1021 0 0 0 0 0 000010000D0000373 + 110 0 0 2 0 0D0000374 + 110 1023 0 0 0 0 0 000010000D0000375 + 110 0 0 2 0 0D0000376 + 110 1025 0 0 0 0 0 000010000D0000377 + 110 0 0 2 0 0D0000378 + 144 1027 0 0 0 0 0 000000000D0000379 + 144 0 -2553 1 0 SOT23017 D0000380 + 120 1028 0 0 0 0 0 000010000D0000381 + 120 0 0 1 0 0D0000382 + 110 1029 0 0 0 0 0 000010000D0000383 + 110 0 0 2 0 0D0000384 + 110 1031 0 0 0 0 0 000010000D0000385 + 110 0 0 2 0 0D0000386 + 142 1033 0 0 0 0 0 000010500D0000387 + 142 0 0 1 0 0D0000388 + 102 1034 0 0 0 0 0 000010000D0000389 + 102 0 0 1 0 0D0000390 + 126 1035 0 0 0 0 0 000010000D0000391 + 126 0 -2553 21 0 0D0000392 + 126 1056 0 0 0 0 0 000010000D0000393 + 126 0 -2553 21 0 0D0000394 + 126 1077 0 0 0 0 0 000010000D0000395 + 126 0 -2553 21 0 0D0000396 + 126 1098 0 0 0 0 0 000010000D0000397 + 126 0 -2553 20 0 0D0000398 + 102 1118 0 0 0 0 0 000010000D0000399 + 102 0 0 1 0 0D0000400 + 100 1119 0 0 0 0 403 000010000D0000401 + 100 0 0 3 0 0D0000402 + 124 1122 0 0 0 0 0 000000000D0000403 + 124 0 0 4 0 0D0000404 + 110 1126 0 0 0 0 0 000010000D0000405 + 110 0 0 2 0 0D0000406 + 126 1128 0 0 0 0 0 000010000D0000407 + 126 0 0 7 0 0D0000408 + 110 1135 0 0 0 0 0 000010000D0000409 + 110 0 0 2 0 0D0000410 + 144 1137 0 0 0 0 0 000000000D0000411 + 144 0 -2555 1 0 SOT23027 D0000412 + 120 1138 0 0 0 0 0 000010000D0000413 + 120 0 0 1 0 0D0000414 + 110 1139 0 0 0 0 0 000010000D0000415 + 110 0 0 2 0 0D0000416 + 110 1141 0 0 0 0 0 000010000D0000417 + 110 0 0 2 0 0D0000418 + 142 1143 0 0 0 0 0 000010500D0000419 + 142 0 0 1 0 0D0000420 + 102 1144 0 0 0 0 0 000010000D0000421 + 102 0 0 1 0 0D0000422 + 110 1145 0 0 0 0 0 000010000D0000423 + 110 0 -2555 1 0 0D0000424 + 126 1146 0 0 0 0 0 000010000D0000425 + 126 0 -2555 20 0 0D0000426 + 126 1166 0 0 0 0 0 000010000D0000427 + 126 0 -2555 21 0 0D0000428 + 110 1187 0 0 0 0 0 000010000D0000429 + 110 0 -2555 1 0 0D0000430 + 102 1188 0 0 0 0 0 000010000D0000431 + 102 0 0 1 0 0D0000432 + 100 1189 0 0 0 0 435 000010000D0000433 + 100 0 0 3 0 0D0000434 + 124 1192 0 0 0 0 0 000000000D0000435 + 124 0 0 3 0 0D0000436 + 110 1195 0 0 0 0 0 000010000D0000437 + 110 0 0 2 0 0D0000438 + 100 1197 0 0 0 0 441 000010000D0000439 + 100 0 0 3 0 0D0000440 + 124 1200 0 0 0 0 0 000000000D0000441 + 124 0 0 3 0 0D0000442 + 110 1203 0 0 0 0 0 000010000D0000443 + 110 0 0 2 0 0D0000444 + 144 1205 0 0 0 0 0 000000000D0000445 + 144 0 -2557 1 0 SOT23028 D0000446 + 120 1206 0 0 0 0 0 000010000D0000447 + 120 0 0 1 0 0D0000448 + 110 1207 0 0 0 0 0 000010000D0000449 + 110 0 0 2 0 0D0000450 + 110 1209 0 0 0 0 0 000010000D0000451 + 110 0 0 2 0 0D0000452 + 142 1211 0 0 0 0 0 000010500D0000453 + 142 0 0 1 0 0D0000454 + 102 1212 0 0 0 0 0 000010000D0000455 + 102 0 0 1 0 0D0000456 + 126 1213 0 0 0 0 0 000010000D0000457 + 126 0 -2557 20 0 0D0000458 + 126 1233 0 0 0 0 0 000010000D0000459 + 126 0 -2557 20 0 0D0000460 + 126 1253 0 0 0 0 0 000010000D0000461 + 126 0 -2557 21 0 0D0000462 + 126 1274 0 0 0 0 0 000010000D0000463 + 126 0 -2557 21 0 0D0000464 + 102 1295 0 0 0 0 0 000010000D0000465 + 102 0 0 1 0 0D0000466 + 126 1296 0 0 0 0 0 000010000D0000467 + 126 0 0 6 0 0D0000468 + 110 1302 0 0 0 0 0 000010000D0000469 + 110 0 0 2 0 0D0000470 + 100 1304 0 0 0 0 473 000010000D0000471 + 100 0 0 3 0 0D0000472 + 124 1307 0 0 0 0 0 000000000D0000473 + 124 0 0 4 0 0D0000474 + 110 1311 0 0 0 0 0 000010000D0000475 + 110 0 0 2 0 0D0000476 + 144 1313 0 0 0 0 0 000000000D0000477 + 144 0 -2559 1 0 SOT23026 D0000478 + 120 1314 0 0 0 0 0 000010000D0000479 + 120 0 0 1 0 0D0000480 + 110 1315 0 0 0 0 0 000010000D0000481 + 110 0 0 2 0 0D0000482 + 100 1317 0 0 0 0 485 000010000D0000483 + 100 0 0 3 0 0D0000484 + 124 1320 0 0 0 0 0 000000000D0000485 + 124 0 0 3 0 0D0000486 + 142 1323 0 0 0 0 0 000010500D0000487 + 142 0 0 1 0 0D0000488 + 102 1324 0 0 0 0 0 000010000D0000489 + 102 0 0 1 0 0D0000490 + 126 1325 0 0 0 0 0 000010000D0000491 + 126 0 -2559 21 0 0D0000492 + 126 1346 0 0 0 0 0 000010000D0000493 + 126 0 -2559 20 0 0D0000494 + 126 1366 0 0 0 0 0 000010000D0000495 + 126 0 -2559 21 0 0D0000496 + 102 1387 0 0 0 0 0 000010000D0000497 + 102 0 0 1 0 0D0000498 + 100 1388 0 0 0 0 501 000010000D0000499 + 100 0 0 3 0 0D0000500 + 124 1391 0 0 0 0 0 000000000D0000501 + 124 0 0 3 0 0D0000502 + 100 1394 0 0 0 0 505 000010000D0000503 + 100 0 0 3 0 0D0000504 + 124 1397 0 0 0 0 0 000000000D0000505 + 124 0 0 4 0 0D0000506 + 100 1401 0 0 0 0 509 000010000D0000507 + 100 0 0 3 0 0D0000508 + 124 1404 0 0 0 0 0 000000000D0000509 + 124 0 0 3 0 0D0000510 + 144 1407 0 0 0 0 0 000000000D0000511 + 144 0 -2561 1 0 SOT23013 D0000512 + 120 1408 0 0 0 0 0 000010000D0000513 + 120 0 0 1 0 0D0000514 + 110 1409 0 0 0 0 0 000010000D0000515 + 110 0 0 2 0 0D0000516 + 110 1411 0 0 0 0 0 000010000D0000517 + 110 0 0 2 0 0D0000518 + 142 1413 0 0 0 0 0 000010500D0000519 + 142 0 0 1 0 0D0000520 + 102 1414 0 0 0 0 0 000010000D0000521 + 102 0 0 1 0 0D0000522 + 126 1415 0 0 0 0 0 000010000D0000523 + 126 0 -2561 20 0 0D0000524 + 126 1435 0 0 0 0 0 000010000D0000525 + 126 0 -2561 22 0 0D0000526 + 126 1457 0 0 0 0 0 000010000D0000527 + 126 0 -2561 21 0 0D0000528 + 126 1478 0 0 0 0 0 000010000D0000529 + 126 0 -2561 20 0 0D0000530 + 102 1498 0 0 0 0 0 000010000D0000531 + 102 0 0 1 0 0D0000532 + 100 1499 0 0 0 0 535 000010000D0000533 + 100 0 0 3 0 0D0000534 + 124 1502 0 0 0 0 0 000000000D0000535 + 124 0 0 4 0 0D0000536 + 110 1506 0 0 0 0 0 000010000D0000537 + 110 0 0 2 0 0D0000538 + 126 1508 0 0 0 0 0 000010000D0000539 + 126 0 0 7 0 0D0000540 + 110 1515 0 0 0 0 0 000010000D0000541 + 110 0 0 2 0 0D0000542 + 144 1517 0 0 0 0 0 000000000D0000543 + 144 0 -2563 1 0 SOT23010 D0000544 + 120 1518 0 0 0 0 0 000010000D0000545 + 120 0 0 1 0 0D0000546 + 110 1519 0 0 0 0 0 000010000D0000547 + 110 0 0 2 0 0D0000548 + 110 1521 0 0 0 0 0 000010000D0000549 + 110 0 0 2 0 0D0000550 + 142 1523 0 0 0 0 0 000010500D0000551 + 142 0 0 1 0 0D0000552 + 102 1524 0 0 0 0 0 000010000D0000553 + 102 0 0 1 0 0D0000554 + 110 1525 0 0 0 0 0 000010000D0000555 + 110 0 -2563 1 0 0D0000556 + 126 1526 0 0 0 0 0 000010000D0000557 + 126 0 -2563 20 0 0D0000558 + 126 1546 0 0 0 0 0 000010000D0000559 + 126 0 -2563 20 0 0D0000560 + 126 1566 0 0 0 0 0 000010000D0000561 + 126 0 -2563 20 0 0D0000562 + 102 1586 0 0 0 0 0 000010000D0000563 + 102 0 0 1 0 0D0000564 + 100 1587 0 0 0 0 567 000010000D0000565 + 100 0 0 3 0 0D0000566 + 124 1590 0 0 0 0 0 000000000D0000567 + 124 0 0 3 0 0D0000568 + 110 1593 0 0 0 0 0 000010000D0000569 + 110 0 0 2 0 0D0000570 + 100 1595 0 0 0 0 573 000010000D0000571 + 100 0 0 3 0 0D0000572 + 124 1598 0 0 0 0 0 000000000D0000573 + 124 0 0 3 0 0D0000574 + 110 1601 0 0 0 0 0 000010000D0000575 + 110 0 0 2 0 0D0000576 + 144 1603 0 0 0 0 0 000000000D0000577 + 144 0 -2565 1 0 SOT23035 D0000578 + 128 1604 0 0 0 0 0 000010000D0000579 + 128 0 0 7 0 0D0000580 + 142 1611 0 0 0 0 0 000010500D0000581 + 142 0 0 1 0 0D0000582 + 102 1612 0 0 0 0 0 000010000D0000583 + 102 0 0 1 0 0D0000584 + 110 1613 0 0 0 0 0 000010000D0000585 + 110 0 -2565 2 0 0D0000586 + 110 1615 0 0 0 0 0 000010000D0000587 + 110 0 -2565 1 0 0D0000588 + 110 1616 0 0 0 0 0 000010000D0000589 + 110 0 -2565 1 0 0D0000590 + 110 1617 0 0 0 0 0 000010000D0000591 + 110 0 -2565 1 0 0D0000592 + 102 1618 0 0 0 0 0 000010000D0000593 + 102 0 0 1 0 0D0000594 + 110 1619 0 0 0 0 0 000010000D0000595 + 110 0 0 2 0 0D0000596 + 110 1621 0 0 0 0 0 000010000D0000597 + 110 0 0 2 0 0D0000598 + 110 1623 0 0 0 0 0 000010000D0000599 + 110 0 0 2 0 0D0000600 + 110 1625 0 0 0 0 0 000010000D0000601 + 110 0 0 2 0 0D0000602 + 144 1627 0 0 0 0 0 000000000D0000603 + 144 0 -2567 1 0 SOT23007 D0000604 + 128 1628 0 0 0 0 0 000010000D0000605 + 128 0 0 7 0 0D0000606 + 142 1635 0 0 0 0 0 000010500D0000607 + 142 0 0 1 0 0D0000608 + 102 1636 0 0 0 0 0 000010000D0000609 + 102 0 0 1 0 0D0000610 + 110 1637 0 0 0 0 0 000010000D0000611 + 110 0 -2567 1 0 0D0000612 + 126 1638 0 0 0 0 0 000010000D0000613 + 126 0 -2567 21 0 0D0000614 + 110 1659 0 0 0 0 0 000010000D0000615 + 110 0 -2567 1 0 0D0000616 + 126 1660 0 0 0 0 0 000010000D0000617 + 126 0 -2567 20 0 0D0000618 + 102 1680 0 0 0 0 0 000010000D0000619 + 102 0 0 1 0 0D0000620 + 110 1681 0 0 0 0 0 000010000D0000621 + 110 0 0 2 0 0D0000622 + 110 1683 0 0 0 0 0 000010000D0000623 + 110 0 0 2 0 0D0000624 + 110 1685 0 0 0 0 0 000010000D0000625 + 110 0 0 2 0 0D0000626 + 110 1687 0 0 0 0 0 000010000D0000627 + 110 0 0 2 0 0D0000628 + 144 1689 0 0 0 0 0 000000000D0000629 + 144 0 -2569 1 0 SOT23023 D0000630 + 120 1690 0 0 0 0 0 000010000D0000631 + 120 0 0 1 0 0D0000632 + 110 1691 0 0 0 0 0 000010000D0000633 + 110 0 0 2 0 0D0000634 + 100 1693 0 0 0 0 637 000010000D0000635 + 100 0 0 2 0 0D0000636 + 124 1695 0 0 0 0 0 000000000D0000637 + 124 0 0 3 0 0D0000638 + 142 1698 0 0 0 0 0 000010500D0000639 + 142 0 0 1 0 0D0000640 + 102 1699 0 0 0 0 0 000010000D0000641 + 102 0 0 1 0 0D0000642 + 126 1700 0 0 0 0 0 000010000D0000643 + 126 0 -2569 20 0 0D0000644 + 126 1720 0 0 0 0 0 000010000D0000645 + 126 0 -2569 21 0 0D0000646 + 126 1741 0 0 0 0 0 000010000D0000647 + 126 0 -2569 21 0 0D0000648 + 102 1762 0 0 0 0 0 000010000D0000649 + 102 0 0 1 0 0D0000650 + 100 1763 0 0 0 0 653 000010000D0000651 + 100 0 0 3 0 0D0000652 + 124 1766 0 0 0 0 0 000000000D0000653 + 124 0 0 4 0 0D0000654 + 100 1770 0 0 0 0 657 000010000D0000655 + 100 0 0 3 0 0D0000656 + 124 1773 0 0 0 0 0 000000000D0000657 + 124 0 0 3 0 0D0000658 + 100 1776 0 0 0 0 661 000010000D0000659 + 100 0 0 3 0 0D0000660 + 124 1779 0 0 0 0 0 000000000D0000661 + 124 0 0 3 0 0D0000662 + 144 1782 0 0 0 0 0 000000000D0000663 + 144 0 -2571 1 0 SOT23 D0000664 + 128 1783 0 0 0 0 0 000010000D0000665 + 128 0 0 8 0 0D0000666 + 142 1791 0 0 0 0 0 000010500D0000667 + 142 0 0 1 0 0D0000668 + 102 1792 0 0 0 0 0 000010000D0000669 + 102 0 0 1 0 0D0000670 + 110 1793 0 0 0 0 0 000010000D0000671 + 110 0 -2571 2 0 0D0000672 + 126 1795 0 0 0 0 0 000010000D0000673 + 126 0 -2571 21 0 0D0000674 + 126 1816 0 0 0 0 0 000010000D0000675 + 126 0 -2571 20 0 0D0000676 + 126 1836 0 0 0 0 0 000010000D0000677 + 126 0 -2571 21 0 0D0000678 + 110 1857 0 0 0 0 0 000010000D0000679 + 110 0 -2571 1 0 0D0000680 + 126 1858 0 0 0 0 0 000010000D0000681 + 126 0 -2571 21 0 0D0000682 + 110 1879 0 0 0 0 0 000010000D0000683 + 110 0 -2571 1 0 0D0000684 + 126 1880 0 0 0 0 0 000010000D0000685 + 126 0 -2571 22 0 0D0000686 + 102 1902 0 0 0 0 0 000010000D0000687 + 102 0 0 1 0 0D0000688 + 110 1903 0 0 0 0 0 000010000D0000689 + 110 0 0 2 0 0D0000690 + 110 1905 0 0 0 0 0 000010000D0000691 + 110 0 0 2 0 0D0000692 + 110 1907 0 0 0 0 0 000010000D0000693 + 110 0 0 2 0 0D0000694 + 110 1909 0 0 0 0 0 000010000D0000695 + 110 0 0 2 0 0D0000696 + 110 1911 0 0 0 0 0 000010000D0000697 + 110 0 0 2 0 0D0000698 + 110 1913 0 0 0 0 0 000010000D0000699 + 110 0 0 2 0 0D0000700 + 110 1915 0 0 0 0 0 000010000D0000701 + 110 0 0 2 0 0D0000702 + 110 1917 0 0 0 0 0 000010000D0000703 + 110 0 0 2 0 0D0000704 + 144 1919 0 0 0 0 0 000000000D0000705 + 144 0 -2573 1 0 SOT23071 D0000706 + 128 1920 0 0 0 0 0 000010000D0000707 + 128 0 0 7 0 0D0000708 + 142 1927 0 0 0 0 0 000010500D0000709 + 142 0 0 1 0 0D0000710 + 102 1928 0 0 0 0 0 000010000D0000711 + 102 0 0 1 0 0D0000712 + 110 1929 0 0 0 0 0 000010000D0000713 + 110 0 -2573 1 0 0D0000714 + 110 1930 0 0 0 0 0 000010000D0000715 + 110 0 -2573 2 0 0D0000716 + 110 1932 0 0 0 0 0 000010000D0000717 + 110 0 -2573 1 0 0D0000718 + 110 1933 0 0 0 0 0 000010000D0000719 + 110 0 -2573 1 0 0D0000720 + 102 1934 0 0 0 0 0 000010000D0000721 + 102 0 0 1 0 0D0000722 + 110 1935 0 0 0 0 0 000010000D0000723 + 110 0 0 2 0 0D0000724 + 110 1937 0 0 0 0 0 000010000D0000725 + 110 0 0 2 0 0D0000726 + 110 1939 0 0 0 0 0 000010000D0000727 + 110 0 0 2 0 0D0000728 + 110 1941 0 0 0 0 0 000010000D0000729 + 110 0 0 2 0 0D0000730 + 144 1943 0 0 0 0 0 000000000D0000731 + 144 0 -2575 1 0 SOT23072 D0000732 + 128 1944 0 0 0 0 0 000010000D0000733 + 128 0 0 7 0 0D0000734 + 142 1951 0 0 0 0 0 000010500D0000735 + 142 0 0 1 0 0D0000736 + 102 1952 0 0 0 0 0 000010000D0000737 + 102 0 0 1 0 0D0000738 + 110 1953 0 0 0 0 0 000010000D0000739 + 110 0 -2575 1 0 0D0000740 + 110 1954 0 0 0 0 0 000010000D0000741 + 110 0 -2575 2 0 0D0000742 + 110 1956 0 0 0 0 0 000010000D0000743 + 110 0 -2575 1 0 0D0000744 + 110 1957 0 0 0 0 0 000010000D0000745 + 110 0 -2575 1 0 0D0000746 + 102 1958 0 0 0 0 0 000010000D0000747 + 102 0 0 1 0 0D0000748 + 110 1959 0 0 0 0 0 000010000D0000749 + 110 0 0 2 0 0D0000750 + 110 1961 0 0 0 0 0 000010000D0000751 + 110 0 0 2 0 0D0000752 + 110 1963 0 0 0 0 0 000010000D0000753 + 110 0 0 2 0 0D0000754 + 110 1965 0 0 0 0 0 000010000D0000755 + 110 0 0 2 0 0D0000756 + 144 1967 0 0 0 0 0 000000000D0000757 + 144 0 -2577 1 0 SOT23069 D0000758 + 128 1968 0 0 0 0 0 000010000D0000759 + 128 0 0 8 0 0D0000760 + 142 1976 0 0 0 0 0 000010500D0000761 + 142 0 0 1 0 0D0000762 + 102 1977 0 0 0 0 0 000010000D0000763 + 102 0 0 1 0 0D0000764 + 110 1978 0 0 0 0 0 000010000D0000765 + 110 0 -2577 1 0 0D0000766 + 110 1979 0 0 0 0 0 000010000D0000767 + 110 0 -2577 2 0 0D0000768 + 110 1981 0 0 0 0 0 000010000D0000769 + 110 0 -2577 1 0 0D0000770 + 110 1982 0 0 0 0 0 000010000D0000771 + 110 0 -2577 1 0 0D0000772 + 102 1983 0 0 0 0 0 000010000D0000773 + 102 0 0 1 0 0D0000774 + 110 1984 0 0 0 0 0 000010000D0000775 + 110 0 0 2 0 0D0000776 + 110 1986 0 0 0 0 0 000010000D0000777 + 110 0 0 2 0 0D0000778 + 110 1988 0 0 0 0 0 000010000D0000779 + 110 0 0 2 0 0D0000780 + 110 1990 0 0 0 0 0 000010000D0000781 + 110 0 0 2 0 0D0000782 + 144 1992 0 0 0 0 0 000000000D0000783 + 144 0 -2579 1 0 SOT23070 D0000784 + 128 1993 0 0 0 0 0 000010000D0000785 + 128 0 0 8 0 0D0000786 + 142 2001 0 0 0 0 0 000010500D0000787 + 142 0 0 1 0 0D0000788 + 102 2002 0 0 0 0 0 000010000D0000789 + 102 0 0 1 0 0D0000790 + 126 2003 0 0 0 0 0 000010000D0000791 + 126 0 -2579 21 0 0D0000792 + 126 2024 0 0 0 0 0 000010000D0000793 + 126 0 -2579 21 0 0D0000794 + 110 2045 0 0 0 0 0 000010000D0000795 + 110 0 -2579 1 0 0D0000796 + 126 2046 0 0 0 0 0 000010000D0000797 + 126 0 -2579 20 0 0D0000798 + 126 2066 0 0 0 0 0 000010000D0000799 + 126 0 -2579 22 0 0D0000800 + 126 2088 0 0 0 0 0 000010000D0000801 + 126 0 -2579 21 0 0D0000802 + 126 2109 0 0 0 0 0 000010000D0000803 + 126 0 -2579 18 0 0D0000804 + 110 2127 0 0 0 0 0 000010000D0000805 + 110 0 -2579 1 0 0D0000806 + 126 2128 0 0 0 0 0 000010000D0000807 + 126 0 -2579 25 0 0D0000808 + 126 2153 0 0 0 0 0 000010000D0000809 + 126 0 -2579 23 0 0D0000810 + 126 2176 0 0 0 0 0 000010000D0000811 + 126 0 -2579 21 0 0D0000812 + 126 2197 0 0 0 0 0 000010000D0000813 + 126 0 -2579 20 0 0D0000814 + 110 2217 0 0 0 0 0 000010000D0000815 + 110 0 -2579 1 0 0D0000816 + 102 2218 0 0 0 0 0 000010000D0000817 + 102 0 0 1 0 0D0000818 + 110 2219 0 0 0 0 0 000010000D0000819 + 110 0 0 2 0 0D0000820 + 110 2221 0 0 0 0 0 000010000D0000821 + 110 0 0 2 0 0D0000822 + 110 2223 0 0 0 0 0 000010000D0000823 + 110 0 0 2 0 0D0000824 + 100 2225 0 0 0 0 827 000010000D0000825 + 100 0 0 3 0 0D0000826 + 124 2228 0 0 0 0 0 000000000D0000827 + 124 0 0 3 0 0D0000828 + 110 2231 0 0 0 0 0 000010000D0000829 + 110 0 0 2 0 0D0000830 + 100 2233 0 0 0 0 833 000010000D0000831 + 100 0 0 2 0 0D0000832 + 124 2235 0 0 0 0 0 000000000D0000833 + 124 0 0 3 0 0D0000834 + 110 2238 0 0 0 0 0 000010000D0000835 + 110 0 0 2 0 0D0000836 + 110 2240 0 0 0 0 0 000010000D0000837 + 110 0 0 2 0 0D0000838 + 110 2242 0 0 0 0 0 000010000D0000839 + 110 0 0 2 0 0D0000840 + 100 2244 0 0 0 0 843 000010000D0000841 + 100 0 0 3 0 0D0000842 + 124 2247 0 0 0 0 0 000000000D0000843 + 124 0 0 3 0 0D0000844 + 110 2250 0 0 0 0 0 000010000D0000845 + 110 0 0 2 0 0D0000846 + 100 2252 0 0 0 0 849 000010000D0000847 + 100 0 0 3 0 0D0000848 + 124 2255 0 0 0 0 0 000000000D0000849 + 124 0 0 3 0 0D0000850 + 110 2258 0 0 0 0 0 000010000D0000851 + 110 0 0 2 0 0D0000852 + 144 2260 0 0 0 0 0 000000000D0000853 + 144 0 -2581 1 0 SOT23004 D0000854 + 128 2261 0 0 0 0 0 000010000D0000855 + 128 0 0 7 0 0D0000856 + 142 2268 0 0 0 0 0 000010500D0000857 + 142 0 0 1 0 0D0000858 + 102 2269 0 0 0 0 0 000010000D0000859 + 102 0 0 1 0 0D0000860 + 110 2270 0 0 0 0 0 000010000D0000861 + 110 0 -2581 2 0 0D0000862 + 126 2272 0 0 0 0 0 000010000D0000863 + 126 0 -2581 22 0 0D0000864 + 110 2294 0 0 0 0 0 000010000D0000865 + 110 0 -2581 1 0 0D0000866 + 126 2295 0 0 0 0 0 000010000D0000867 + 126 0 -2581 20 0 0D0000868 + 102 2315 0 0 0 0 0 000010000D0000869 + 102 0 0 1 0 0D0000870 + 110 2316 0 0 0 0 0 000010000D0000871 + 110 0 0 2 0 0D0000872 + 110 2318 0 0 0 0 0 000010000D0000873 + 110 0 0 2 0 0D0000874 + 110 2320 0 0 0 0 0 000010000D0000875 + 110 0 0 2 0 0D0000876 + 110 2322 0 0 0 0 0 000010000D0000877 + 110 0 0 2 0 0D0000878 + 144 2324 0 0 0 0 0 000000000D0000879 + 144 0 -2583 1 0 SOT23012 D0000880 + 120 2325 0 0 0 0 0 000010000D0000881 + 120 0 0 1 0 0D0000882 + 110 2326 0 0 0 0 0 000010000D0000883 + 110 0 0 2 0 0D0000884 + 100 2328 0 0 0 0 887 000010000D0000885 + 100 0 0 3 0 0D0000886 + 124 2331 0 0 0 0 0 000000000D0000887 + 124 0 0 3 0 0D0000888 + 142 2334 0 0 0 0 0 000010500D0000889 + 142 0 0 1 0 0D0000890 + 102 2335 0 0 0 0 0 000010000D0000891 + 102 0 0 1 0 0D0000892 + 126 2336 0 0 0 0 0 000010000D0000893 + 126 0 -2583 20 0 0D0000894 + 126 2356 0 0 0 0 0 000010000D0000895 + 126 0 -2583 21 0 0D0000896 + 126 2377 0 0 0 0 0 000010000D0000897 + 126 0 -2583 21 0 0D0000898 + 102 2398 0 0 0 0 0 000010000D0000899 + 102 0 0 1 0 0D0000900 + 100 2399 0 0 0 0 903 000010000D0000901 + 100 0 0 3 0 0D0000902 + 124 2402 0 0 0 0 0 000000000D0000903 + 124 0 0 4 0 0D0000904 + 100 2406 0 0 0 0 907 000010000D0000905 + 100 0 0 3 0 0D0000906 + 124 2409 0 0 0 0 0 000000000D0000907 + 124 0 0 3 0 0D0000908 + 100 2412 0 0 0 0 911 000010000D0000909 + 100 0 0 3 0 0D0000910 + 124 2415 0 0 0 0 0 000000000D0000911 + 124 0 0 3 0 0D0000912 + 144 2418 0 0 0 0 0 000000000D0000913 + 144 0 -2585 1 0 SOT23003 D0000914 + 128 2419 0 0 0 0 0 000010000D0000915 + 128 0 0 7 0 0D0000916 + 142 2426 0 0 0 0 0 000010500D0000917 + 142 0 0 1 0 0D0000918 + 102 2427 0 0 0 0 0 000010000D0000919 + 102 0 0 1 0 0D0000920 + 126 2428 0 0 0 0 0 000010000D0000921 + 126 0 -2585 21 0 0D0000922 + 110 2449 0 0 0 0 0 000010000D0000923 + 110 0 -2585 1 0 0D0000924 + 126 2450 0 0 0 0 0 000010000D0000925 + 126 0 -2585 21 0 0D0000926 + 126 2471 0 0 0 0 0 000010000D0000927 + 126 0 -2585 20 0 0D0000928 + 126 2491 0 0 0 0 0 000010000D0000929 + 126 0 -2585 21 0 0D0000930 + 110 2512 0 0 0 0 0 000010000D0000931 + 110 0 -2585 1 0 0D0000932 + 126 2513 0 0 0 0 0 000010000D0000933 + 126 0 -2585 20 0 0D0000934 + 110 2533 0 0 0 0 0 000010000D0000935 + 110 0 -2585 1 0 0D0000936 + 126 2534 0 0 0 0 0 000010000D0000937 + 126 0 -2585 21 0 0D0000938 + 110 2555 0 0 0 0 0 000010000D0000939 + 110 0 -2585 2 0 0D0000940 + 126 2557 0 0 0 0 0 000010000D0000941 + 126 0 -2585 21 0 0D0000942 + 126 2578 0 0 0 0 0 000010000D0000943 + 126 0 -2585 20 0 0D0000944 + 102 2598 0 0 0 0 0 000010000D0000945 + 102 0 0 1 0 0D0000946 + 110 2599 0 0 0 0 0 000010000D0000947 + 110 0 0 2 0 0D0000948 + 110 2601 0 0 0 0 0 000010000D0000949 + 110 0 0 2 0 0D0000950 + 110 2603 0 0 0 0 0 000010000D0000951 + 110 0 0 2 0 0D0000952 + 110 2605 0 0 0 0 0 000010000D0000953 + 110 0 0 2 0 0D0000954 + 110 2607 0 0 0 0 0 000010000D0000955 + 110 0 0 2 0 0D0000956 + 110 2609 0 0 0 0 0 000010000D0000957 + 110 0 0 2 0 0D0000958 + 110 2611 0 0 0 0 0 000010000D0000959 + 110 0 0 2 0 0D0000960 + 110 2613 0 0 0 0 0 000010000D0000961 + 110 0 0 2 0 0D0000962 + 110 2615 0 0 0 0 0 000010000D0000963 + 110 0 0 2 0 0D0000964 + 110 2617 0 0 0 0 0 000010000D0000965 + 110 0 0 2 0 0D0000966 + 110 2619 0 0 0 0 0 000010000D0000967 + 110 0 0 2 0 0D0000968 + 110 2621 0 0 0 0 0 000010000D0000969 + 110 0 0 2 0 0D0000970 + 144 2623 0 0 0 0 0 000000000D0000971 + 144 0 -2587 1 0 SOT23041 D0000972 + 120 2624 0 0 0 0 0 000010000D0000973 + 120 0 0 1 0 0D0000974 + 110 2625 0 0 0 0 0 000010000D0000975 + 110 0 0 2 0 0D0000976 + 110 2627 0 0 0 0 0 000010000D0000977 + 110 0 0 2 0 0D0000978 + 142 2629 0 0 0 0 0 000010500D0000979 + 142 0 0 1 0 0D0000980 + 102 2630 0 0 0 0 0 000010000D0000981 + 102 0 0 1 0 0D0000982 + 126 2631 0 0 0 0 0 000010000D0000983 + 126 0 -2587 21 0 0D0000984 + 126 2652 0 0 0 0 0 000010000D0000985 + 126 0 -2587 21 0 0D0000986 + 110 2673 0 0 0 0 0 000010000D0000987 + 110 0 -2587 1 0 0D0000988 + 126 2674 0 0 0 0 0 000010000D0000989 + 126 0 -2587 16 0 0D0000990 + 102 2690 0 0 0 0 0 000010000D0000991 + 102 0 0 1 0 0D0000992 + 110 2691 0 0 0 0 0 000010000D0000993 + 110 0 0 2 0 0D0000994 + 100 2693 0 0 0 0 997 000010000D0000995 + 100 0 0 3 0 0D0000996 + 124 2696 0 0 0 0 0 000000000D0000997 + 124 0 0 3 0 0D0000998 + 110 2699 0 0 0 0 0 000010000D0000999 + 110 0 0 2 0 0D0001000 + 100 2701 0 0 0 0 1003 000010000D0001001 + 100 0 0 2 0 0D0001002 + 124 2703 0 0 0 0 0 000000000D0001003 + 124 0 0 3 0 0D0001004 + 144 2706 0 0 0 0 0 000000000D0001005 + 144 0 -2589 1 0 SOT23042 D0001006 + 128 2707 0 0 0 0 0 000010000D0001007 + 128 0 0 7 0 0D0001008 + 142 2714 0 0 0 0 0 000010500D0001009 + 142 0 0 1 0 0D0001010 + 102 2715 0 0 0 0 0 000010000D0001011 + 102 0 0 2 0 0D0001012 + 126 2717 0 0 0 0 0 000010000D0001013 + 126 0 -2589 21 0 0D0001014 + 126 2738 0 0 0 0 0 000010000D0001015 + 126 0 -2589 21 0 0D0001016 + 110 2759 0 0 0 0 0 000010000D0001017 + 110 0 -2589 1 0 0D0001018 + 126 2760 0 0 0 0 0 000010000D0001019 + 126 0 -2589 20 0 0D0001020 + 126 2780 0 0 0 0 0 000010000D0001021 + 126 0 -2589 23 0 0D0001022 + 126 2803 0 0 0 0 0 000010000D0001023 + 126 0 -2589 23 0 0D0001024 + 126 2826 0 0 0 0 0 000010000D0001025 + 126 0 -2589 18 0 0D0001026 + 110 2844 0 0 0 0 0 000010000D0001027 + 110 0 -2589 1 0 0D0001028 + 110 2845 0 0 0 0 0 000010000D0001029 + 110 0 -2589 2 0 0D0001030 + 126 2847 0 0 0 0 0 000010000D0001031 + 126 0 -2589 25 0 0D0001032 + 126 2872 0 0 0 0 0 000010000D0001033 + 126 0 -2589 24 0 0D0001034 + 126 2896 0 0 0 0 0 000010000D0001035 + 126 0 -2589 21 0 0D0001036 + 110 2917 0 0 0 0 0 000010000D0001037 + 110 0 -2589 1 0 0D0001038 + 102 2918 0 0 0 0 0 000010000D0001039 + 102 0 0 2 0 0D0001040 + 110 2920 0 0 0 0 0 000010000D0001041 + 110 0 0 2 0 0D0001042 + 110 2922 0 0 0 0 0 000010000D0001043 + 110 0 0 2 0 0D0001044 + 110 2924 0 0 0 0 0 000010000D0001045 + 110 0 0 2 0 0D0001046 + 100 2926 0 0 0 0 1049 000010000D0001047 + 100 0 0 3 0 0D0001048 + 124 2929 0 0 0 0 0 000000000D0001049 + 124 0 0 3 0 0D0001050 + 110 2932 0 0 0 0 0 000010000D0001051 + 110 0 0 2 0 0D0001052 + 100 2934 0 0 0 0 1055 000010000D0001053 + 100 0 0 2 0 0D0001054 + 124 2936 0 0 0 0 0 000000000D0001055 + 124 0 0 3 0 0D0001056 + 110 2939 0 0 0 0 0 000010000D0001057 + 110 0 0 2 0 0D0001058 + 110 2941 0 0 0 0 0 000010000D0001059 + 110 0 0 2 0 0D0001060 + 110 2943 0 0 0 0 0 000010000D0001061 + 110 0 0 2 0 0D0001062 + 100 2945 0 0 0 0 1065 000010000D0001063 + 100 0 0 3 0 0D0001064 + 124 2948 0 0 0 0 0 000000000D0001065 + 124 0 0 3 0 0D0001066 + 110 2951 0 0 0 0 0 000010000D0001067 + 110 0 0 2 0 0D0001068 + 100 2953 0 0 0 0 1071 000010000D0001069 + 100 0 0 2 0 0D0001070 + 124 2955 0 0 0 0 0 000000000D0001071 + 124 0 0 3 0 0D0001072 + 110 2958 0 0 0 0 0 000010000D0001073 + 110 0 0 2 0 0D0001074 + 144 2960 0 0 0 0 0 000000000D0001075 + 144 0 -2591 1 0 SOT23052 D0001076 + 128 2961 0 0 0 0 0 000010000D0001077 + 128 0 0 6 0 0D0001078 + 142 2967 0 0 0 0 0 000010500D0001079 + 142 0 0 1 0 0D0001080 + 102 2968 0 0 0 0 0 000010000D0001081 + 102 0 0 1 0 0D0001082 + 110 2969 0 0 0 0 0 000010000D0001083 + 110 0 -2591 2 0 0D0001084 + 110 2971 0 0 0 0 0 000010000D0001085 + 110 0 -2591 1 0 0D0001086 + 110 2972 0 0 0 0 0 000010000D0001087 + 110 0 -2591 1 0 0D0001088 + 110 2973 0 0 0 0 0 000010000D0001089 + 110 0 -2591 1 0 0D0001090 + 102 2974 0 0 0 0 0 000010000D0001091 + 102 0 0 1 0 0D0001092 + 110 2975 0 0 0 0 0 000010000D0001093 + 110 0 0 2 0 0D0001094 + 110 2977 0 0 0 0 0 000010000D0001095 + 110 0 0 2 0 0D0001096 + 110 2979 0 0 0 0 0 000010000D0001097 + 110 0 0 2 0 0D0001098 + 110 2981 0 0 0 0 0 000010000D0001099 + 110 0 0 2 0 0D0001100 + 144 2983 0 0 0 0 0 000000000D0001101 + 144 0 -2593 1 0 SOT23053 D0001102 + 120 2984 0 0 0 0 0 000010000D0001103 + 120 0 0 1 0 0D0001104 + 110 2985 0 0 0 0 0 000010000D0001105 + 110 0 0 2 0 0D0001106 + 110 2987 0 0 0 0 0 000010000D0001107 + 110 0 0 2 0 0D0001108 + 142 2989 0 0 0 0 0 000010500D0001109 + 142 0 0 1 0 0D0001110 + 102 2990 0 0 0 0 0 000010000D0001111 + 102 0 0 1 0 0D0001112 + 126 2991 0 0 0 0 0 000010000D0001113 + 126 0 -2593 21 0 0D0001114 + 110 3012 0 0 0 0 0 000010000D0001115 + 110 0 -2593 2 0 0D0001116 + 110 3014 0 0 0 0 0 000010000D0001117 + 110 0 -2593 1 0 0D0001118 + 126 3015 0 0 0 0 0 000010000D0001119 + 126 0 -2593 16 0 0D0001120 + 102 3031 0 0 0 0 0 000010000D0001121 + 102 0 0 1 0 0D0001122 + 110 3032 0 0 0 0 0 000010000D0001123 + 110 0 0 2 0 0D0001124 + 100 3034 0 0 0 0 1127 000010000D0001125 + 100 0 0 3 0 0D0001126 + 124 3037 0 0 0 0 0 000000000D0001127 + 124 0 0 3 0 0D0001128 + 110 3040 0 0 0 0 0 000010000D0001129 + 110 0 0 2 0 0D0001130 + 100 3042 0 0 0 0 1133 000010000D0001131 + 100 0 0 2 0 0D0001132 + 124 3044 0 0 0 0 0 000000000D0001133 + 124 0 0 3 0 0D0001134 + 144 3047 0 0 0 0 0 000000000D0001135 + 144 0 -2595 1 0 SOT23051 D0001136 + 128 3048 0 0 0 0 0 000010000D0001137 + 128 0 0 7 0 0D0001138 + 142 3055 0 0 0 0 0 000010500D0001139 + 142 0 0 1 0 0D0001140 + 102 3056 0 0 0 0 0 000010000D0001141 + 102 0 0 1 0 0D0001142 + 110 3057 0 0 0 0 0 000010000D0001143 + 110 0 -2595 2 0 0D0001144 + 110 3059 0 0 0 0 0 000010000D0001145 + 110 0 -2595 1 0 0D0001146 + 110 3060 0 0 0 0 0 000010000D0001147 + 110 0 -2595 1 0 0D0001148 + 110 3061 0 0 0 0 0 000010000D0001149 + 110 0 -2595 2 0 0D0001150 + 102 3063 0 0 0 0 0 000010000D0001151 + 102 0 0 1 0 0D0001152 + 110 3064 0 0 0 0 0 000010000D0001153 + 110 0 0 2 0 0D0001154 + 110 3066 0 0 0 0 0 000010000D0001155 + 110 0 0 2 0 0D0001156 + 110 3068 0 0 0 0 0 000010000D0001157 + 110 0 0 2 0 0D0001158 + 110 3070 0 0 0 0 0 000010000D0001159 + 110 0 0 2 0 0D0001160 + 144 3072 0 0 0 0 0 000000000D0001161 + 144 0 -2597 1 0 SOT23050 D0001162 + 120 3073 0 0 0 0 0 000010000D0001163 + 120 0 0 1 0 0D0001164 + 110 3074 0 0 0 0 0 000010000D0001165 + 110 0 0 2 0 0D0001166 + 110 3076 0 0 0 0 0 000010000D0001167 + 110 0 0 2 0 0D0001168 + 142 3078 0 0 0 0 0 000010500D0001169 + 142 0 0 1 0 0D0001170 + 102 3079 0 0 0 0 0 000010000D0001171 + 102 0 0 1 0 0D0001172 + 126 3080 0 0 0 0 0 000010000D0001173 + 126 0 -2597 19 0 0D0001174 + 126 3099 0 0 0 0 0 000010000D0001175 + 126 0 -2597 21 0 0D0001176 + 110 3120 0 0 0 0 0 000010000D0001177 + 110 0 -2597 1 0 0D0001178 + 110 3121 0 0 0 0 0 000010000D0001179 + 110 0 -2597 1 0 0D0001180 + 102 3122 0 0 0 0 0 000010000D0001181 + 102 0 0 1 0 0D0001182 + 110 3123 0 0 0 0 0 000010000D0001183 + 110 0 0 2 0 0D0001184 + 100 3125 0 0 0 0 1187 000010000D0001185 + 100 0 0 2 0 0D0001186 + 124 3127 0 0 0 0 0 000000000D0001187 + 124 0 0 3 0 0D0001188 + 110 3130 0 0 0 0 0 000010000D0001189 + 110 0 0 2 0 0D0001190 + 100 3132 0 0 0 0 1193 000010000D0001191 + 100 0 0 3 0 0D0001192 + 124 3135 0 0 0 0 0 000000000D0001193 + 124 0 0 3 0 0D0001194 + 144 3138 0 0 0 0 0 000000000D0001195 + 144 0 -2599 1 0 SOT23057 D0001196 + 128 3139 0 0 0 0 0 000010000D0001197 + 128 0 0 7 0 0D0001198 + 142 3146 0 0 0 0 0 000010500D0001199 + 142 0 0 1 0 0D0001200 + 102 3147 0 0 0 0 0 000010000D0001201 + 102 0 0 2 0 0D0001202 + 126 3149 0 0 0 0 0 000010000D0001203 + 126 0 -2599 21 0 0D0001204 + 126 3170 0 0 0 0 0 000010000D0001205 + 126 0 -2599 21 0 0D0001206 + 126 3191 0 0 0 0 0 000010000D0001207 + 126 0 -2599 17 0 0D0001208 + 126 3208 0 0 0 0 0 000010000D0001209 + 126 0 -2599 20 0 0D0001210 + 126 3228 0 0 0 0 0 000010000D0001211 + 126 0 -2599 23 0 0D0001212 + 126 3251 0 0 0 0 0 000010000D0001213 + 126 0 -2599 25 0 0D0001214 + 126 3276 0 0 0 0 0 000010000D0001215 + 126 0 -2599 22 0 0D0001216 + 110 3298 0 0 0 0 0 000010000D0001217 + 110 0 -2599 1 0 0D0001218 + 126 3299 0 0 0 0 0 000010000D0001219 + 126 0 -2599 19 0 0D0001220 + 126 3318 0 0 0 0 0 000010000D0001221 + 126 0 -2599 23 0 0D0001222 + 126 3341 0 0 0 0 0 000010000D0001223 + 126 0 -2599 22 0 0D0001224 + 126 3363 0 0 0 0 0 000010000D0001225 + 126 0 -2599 20 0 0D0001226 + 126 3383 0 0 0 0 0 000010000D0001227 + 126 0 -2599 17 0 0D0001228 + 102 3400 0 0 0 0 0 000010000D0001229 + 102 0 0 2 0 0D0001230 + 110 3402 0 0 0 0 0 000010000D0001231 + 110 0 0 2 0 0D0001232 + 110 3404 0 0 0 0 0 000010000D0001233 + 110 0 0 2 0 0D0001234 + 110 3406 0 0 0 0 0 000010000D0001235 + 110 0 0 2 0 0D0001236 + 100 3408 0 0 0 0 1239 000010000D0001237 + 100 0 0 3 0 0D0001238 + 124 3411 0 0 0 0 0 000000000D0001239 + 124 0 0 3 0 0D0001240 + 110 3414 0 0 0 0 0 000010000D0001241 + 110 0 0 2 0 0D0001242 + 100 3416 0 0 0 0 1245 000010000D0001243 + 100 0 0 2 0 0D0001244 + 124 3418 0 0 0 0 0 000000000D0001245 + 124 0 0 3 0 0D0001246 + 110 3421 0 0 0 0 0 000010000D0001247 + 110 0 0 2 0 0D0001248 + 110 3423 0 0 0 0 0 000010000D0001249 + 110 0 0 2 0 0D0001250 + 110 3425 0 0 0 0 0 000010000D0001251 + 110 0 0 2 0 0D0001252 + 100 3427 0 0 0 0 1255 000010000D0001253 + 100 0 0 3 0 0D0001254 + 124 3430 0 0 0 0 0 000000000D0001255 + 124 0 0 3 0 0D0001256 + 110 3433 0 0 0 0 0 000010000D0001257 + 110 0 0 2 0 0D0001258 + 100 3435 0 0 0 0 1261 000010000D0001259 + 100 0 0 3 0 0D0001260 + 124 3438 0 0 0 0 0 000000000D0001261 + 124 0 0 3 0 0D0001262 + 110 3441 0 0 0 0 0 000010000D0001263 + 110 0 0 2 0 0D0001264 + 144 3443 0 0 0 0 0 000000000D0001265 + 144 0 -2601 1 0 SOT23058 D0001266 + 128 3444 0 0 0 0 0 000010000D0001267 + 128 0 0 6 0 0D0001268 + 142 3450 0 0 0 0 0 000010500D0001269 + 142 0 0 1 0 0D0001270 + 102 3451 0 0 0 0 0 000010000D0001271 + 102 0 0 1 0 0D0001272 + 110 3452 0 0 0 0 0 000010000D0001273 + 110 0 -2601 1 0 0D0001274 + 110 3453 0 0 0 0 0 000010000D0001275 + 110 0 -2601 1 0 0D0001276 + 110 3454 0 0 0 0 0 000010000D0001277 + 110 0 -2601 1 0 0D0001278 + 110 3455 0 0 0 0 0 000010000D0001279 + 110 0 -2601 1 0 0D0001280 + 102 3456 0 0 0 0 0 000010000D0001281 + 102 0 0 1 0 0D0001282 + 110 3457 0 0 0 0 0 000010000D0001283 + 110 0 0 2 0 0D0001284 + 110 3459 0 0 0 0 0 000010000D0001285 + 110 0 0 2 0 0D0001286 + 110 3461 0 0 0 0 0 000010000D0001287 + 110 0 0 2 0 0D0001288 + 110 3463 0 0 0 0 0 000010000D0001289 + 110 0 0 2 0 0D0001290 + 144 3465 0 0 0 0 0 000000000D0001291 + 144 0 -2603 1 0 SOT23054 D0001292 + 120 3466 0 0 0 0 0 000010000D0001293 + 120 0 0 1 0 0D0001294 + 110 3467 0 0 0 0 0 000010000D0001295 + 110 0 0 2 0 0D0001296 + 110 3469 0 0 0 0 0 000010000D0001297 + 110 0 0 2 0 0D0001298 + 142 3471 0 0 0 0 0 000010500D0001299 + 142 0 0 1 0 0D0001300 + 102 3472 0 0 0 0 0 000010000D0001301 + 102 0 0 1 0 0D0001302 + 126 3473 0 0 0 0 0 000010000D0001303 + 126 0 -2603 19 0 0D0001304 + 110 3492 0 0 0 0 0 000010000D0001305 + 110 0 -2603 2 0 0D0001306 + 126 3494 0 0 0 0 0 000010000D0001307 + 126 0 -2603 19 0 0D0001308 + 126 3513 0 0 0 0 0 000010000D0001309 + 126 0 -2603 16 0 0D0001310 + 102 3529 0 0 0 0 0 000010000D0001311 + 102 0 0 1 0 0D0001312 + 110 3530 0 0 0 0 0 000010000D0001313 + 110 0 0 2 0 0D0001314 + 100 3532 0 0 0 0 1317 000010000D0001315 + 100 0 0 3 0 0D0001316 + 124 3535 0 0 0 0 0 000000000D0001317 + 124 0 0 3 0 0D0001318 + 110 3538 0 0 0 0 0 000010000D0001319 + 110 0 0 2 0 0D0001320 + 100 3540 0 0 0 0 1323 000010000D0001321 + 100 0 0 3 0 0D0001322 + 124 3543 0 0 0 0 0 000000000D0001323 + 124 0 0 3 0 0D0001324 + 144 3546 0 0 0 0 0 000000000D0001325 + 144 0 -2605 1 0 SOT23056 D0001326 + 128 3547 0 0 0 0 0 000010000D0001327 + 128 0 0 5 0 0D0001328 + 142 3552 0 0 0 0 0 000010500D0001329 + 142 0 0 1 0 0D0001330 + 102 3553 0 0 0 0 0 000010000D0001331 + 102 0 0 1 0 0D0001332 + 110 3554 0 0 0 0 0 000010000D0001333 + 110 0 -2605 1 0 0D0001334 + 110 3555 0 0 0 0 0 000010000D0001335 + 110 0 -2605 1 0 0D0001336 + 110 3556 0 0 0 0 0 000010000D0001337 + 110 0 -2605 1 0 0D0001338 + 110 3557 0 0 0 0 0 000010000D0001339 + 110 0 -2605 1 0 0D0001340 + 102 3558 0 0 0 0 0 000010000D0001341 + 102 0 0 1 0 0D0001342 + 110 3559 0 0 0 0 0 000010000D0001343 + 110 0 0 2 0 0D0001344 + 110 3561 0 0 0 0 0 000010000D0001345 + 110 0 0 2 0 0D0001346 + 110 3563 0 0 0 0 0 000010000D0001347 + 110 0 0 2 0 0D0001348 + 110 3565 0 0 0 0 0 000010000D0001349 + 110 0 0 2 0 0D0001350 + 144 3567 0 0 0 0 0 000000000D0001351 + 144 0 -2607 1 0 SOT23055 D0001352 + 128 3568 0 0 0 0 0 000010000D0001353 + 128 0 0 7 0 0D0001354 + 142 3575 0 0 0 0 0 000010500D0001355 + 142 0 0 1 0 0D0001356 + 102 3576 0 0 0 0 0 000010000D0001357 + 102 0 0 2 0 0D0001358 + 126 3578 0 0 0 0 0 000010000D0001359 + 126 0 -2607 21 0 0D0001360 + 110 3599 0 0 0 0 0 000010000D0001361 + 110 0 -2607 1 0 0D0001362 + 126 3600 0 0 0 0 0 000010000D0001363 + 126 0 -2607 20 0 0D0001364 + 126 3620 0 0 0 0 0 000010000D0001365 + 126 0 -2607 23 0 0D0001366 + 126 3643 0 0 0 0 0 000010000D0001367 + 126 0 -2607 23 0 0D0001368 + 126 3666 0 0 0 0 0 000010000D0001369 + 126 0 -2607 18 0 0D0001370 + 110 3684 0 0 0 0 0 000010000D0001371 + 110 0 -2607 1 0 0D0001372 + 110 3685 0 0 0 0 0 000010000D0001373 + 110 0 -2607 2 0 0D0001374 + 126 3687 0 0 0 0 0 000010000D0001375 + 126 0 -2607 25 0 0D0001376 + 126 3712 0 0 0 0 0 000010000D0001377 + 126 0 -2607 24 0 0D0001378 + 126 3736 0 0 0 0 0 000010000D0001379 + 126 0 -2607 21 0 0D0001380 + 110 3757 0 0 0 0 0 000010000D0001381 + 110 0 -2607 1 0 0D0001382 + 126 3758 0 0 0 0 0 000010000D0001383 + 126 0 -2607 21 0 0D0001384 + 102 3779 0 0 0 0 0 000010000D0001385 + 102 0 0 2 0 0D0001386 + 110 3781 0 0 0 0 0 000010000D0001387 + 110 0 0 2 0 0D0001388 + 110 3783 0 0 0 0 0 000010000D0001389 + 110 0 0 2 0 0D0001390 + 100 3785 0 0 0 0 1393 000010000D0001391 + 100 0 0 3 0 0D0001392 + 124 3788 0 0 0 0 0 000000000D0001393 + 124 0 0 3 0 0D0001394 + 110 3791 0 0 0 0 0 000010000D0001395 + 110 0 0 2 0 0D0001396 + 100 3793 0 0 0 0 1399 000010000D0001397 + 100 0 0 2 0 0D0001398 + 124 3795 0 0 0 0 0 000000000D0001399 + 124 0 0 3 0 0D0001400 + 110 3798 0 0 0 0 0 000010000D0001401 + 110 0 0 2 0 0D0001402 + 110 3800 0 0 0 0 0 000010000D0001403 + 110 0 0 2 0 0D0001404 + 110 3802 0 0 0 0 0 000010000D0001405 + 110 0 0 2 0 0D0001406 + 100 3804 0 0 0 0 1409 000010000D0001407 + 100 0 0 3 0 0D0001408 + 124 3807 0 0 0 0 0 000000000D0001409 + 124 0 0 3 0 0D0001410 + 110 3810 0 0 0 0 0 000010000D0001411 + 110 0 0 2 0 0D0001412 + 100 3812 0 0 0 0 1415 000010000D0001413 + 100 0 0 2 0 0D0001414 + 124 3814 0 0 0 0 0 000000000D0001415 + 124 0 0 3 0 0D0001416 + 110 3817 0 0 0 0 0 000010000D0001417 + 110 0 0 2 0 0D0001418 + 110 3819 0 0 0 0 0 000010000D0001419 + 110 0 0 2 0 0D0001420 + 144 3821 0 0 0 0 0 000000000D0001421 + 144 0 -2609 1 0 SOT23038 D0001422 + 128 3822 0 0 0 0 0 000010000D0001423 + 128 0 0 7 0 0D0001424 + 142 3829 0 0 0 0 0 000010500D0001425 + 142 0 0 1 0 0D0001426 + 102 3830 0 0 0 0 0 000010000D0001427 + 102 0 0 1 0 0D0001428 + 110 3831 0 0 0 0 0 000010000D0001429 + 110 0 -2609 2 0 0D0001430 + 110 3833 0 0 0 0 0 000010000D0001431 + 110 0 -2609 1 0 0D0001432 + 110 3834 0 0 0 0 0 000010000D0001433 + 110 0 -2609 1 0 0D0001434 + 110 3835 0 0 0 0 0 000010000D0001435 + 110 0 -2609 1 0 0D0001436 + 102 3836 0 0 0 0 0 000010000D0001437 + 102 0 0 1 0 0D0001438 + 110 3837 0 0 0 0 0 000010000D0001439 + 110 0 0 2 0 0D0001440 + 110 3839 0 0 0 0 0 000010000D0001441 + 110 0 0 2 0 0D0001442 + 110 3841 0 0 0 0 0 000010000D0001443 + 110 0 0 2 0 0D0001444 + 110 3843 0 0 0 0 0 000010000D0001445 + 110 0 0 2 0 0D0001446 + 144 3845 0 0 0 0 0 000000000D0001447 + 144 0 -2611 1 0 SOT23036 D0001448 + 120 3846 0 0 0 0 0 000010000D0001449 + 120 0 0 1 0 0D0001450 + 110 3847 0 0 0 0 0 000010000D0001451 + 110 0 0 2 0 0D0001452 + 110 3849 0 0 0 0 0 000010000D0001453 + 110 0 0 2 0 0D0001454 + 142 3851 0 0 0 0 0 000010500D0001455 + 142 0 0 1 0 0D0001456 + 102 3852 0 0 0 0 0 000010000D0001457 + 102 0 0 1 0 0D0001458 + 126 3853 0 0 0 0 0 000010000D0001459 + 126 0 -2611 19 0 0D0001460 + 110 3872 0 0 0 0 0 000010000D0001461 + 110 0 -2611 2 0 0D0001462 + 110 3874 0 0 0 0 0 000010000D0001463 + 110 0 -2611 1 0 0D0001464 + 110 3875 0 0 0 0 0 000010000D0001465 + 110 0 -2611 1 0 0D0001466 + 102 3876 0 0 0 0 0 000010000D0001467 + 102 0 0 1 0 0D0001468 + 110 3877 0 0 0 0 0 000010000D0001469 + 110 0 0 2 0 0D0001470 + 100 3879 0 0 0 0 1473 000010000D0001471 + 100 0 0 2 0 0D0001472 + 124 3881 0 0 0 0 0 000000000D0001473 + 124 0 0 3 0 0D0001474 + 110 3884 0 0 0 0 0 000010000D0001475 + 110 0 0 2 0 0D0001476 + 100 3886 0 0 0 0 1479 000010000D0001477 + 100 0 0 3 0 0D0001478 + 124 3889 0 0 0 0 0 000000000D0001479 + 124 0 0 3 0 0D0001480 + 144 3892 0 0 0 0 0 000000000D0001481 + 144 0 -2613 1 0 SOT23037 D0001482 + 120 3893 0 0 0 0 0 000010000D0001483 + 120 0 0 1 0 0D0001484 + 110 3894 0 0 0 0 0 000010000D0001485 + 110 0 0 2 0 0D0001486 + 110 3896 0 0 0 0 0 000010000D0001487 + 110 0 0 2 0 0D0001488 + 142 3898 0 0 0 0 0 000010500D0001489 + 142 0 0 1 0 0D0001490 + 102 3899 0 0 0 0 0 000010000D0001491 + 102 0 0 1 0 0D0001492 + 126 3900 0 0 0 0 0 000010000D0001493 + 126 0 -2613 19 0 0D0001494 + 110 3919 0 0 0 0 0 000010000D0001495 + 110 0 -2613 2 0 0D0001496 + 110 3921 0 0 0 0 0 000010000D0001497 + 110 0 -2613 1 0 0D0001498 + 126 3922 0 0 0 0 0 000010000D0001499 + 126 0 -2613 16 0 0D0001500 + 102 3938 0 0 0 0 0 000010000D0001501 + 102 0 0 1 0 0D0001502 + 110 3939 0 0 0 0 0 000010000D0001503 + 110 0 0 2 0 0D0001504 + 100 3941 0 0 0 0 1507 000010000D0001505 + 100 0 0 2 0 0D0001506 + 124 3943 0 0 0 0 0 000000000D0001507 + 124 0 0 3 0 0D0001508 + 110 3946 0 0 0 0 0 000010000D0001509 + 110 0 0 2 0 0D0001510 + 100 3948 0 0 0 0 1513 000010000D0001511 + 100 0 0 3 0 0D0001512 + 124 3951 0 0 0 0 0 000000000D0001513 + 124 0 0 3 0 0D0001514 + 144 3954 0 0 0 0 0 000000000D0001515 + 144 0 -2615 1 0 SOT23040 D0001516 + 120 3955 0 0 0 0 0 000010000D0001517 + 120 0 0 1 0 0D0001518 + 110 3956 0 0 0 0 0 000010000D0001519 + 110 0 0 2 0 0D0001520 + 110 3958 0 0 0 0 0 000010000D0001521 + 110 0 0 2 0 0D0001522 + 142 3960 0 0 0 0 0 000010500D0001523 + 142 0 0 1 0 0D0001524 + 102 3961 0 0 0 0 0 000010000D0001525 + 102 0 0 1 0 0D0001526 + 126 3962 0 0 0 0 0 000010000D0001527 + 126 0 -2615 19 0 0D0001528 + 126 3981 0 0 0 0 0 000010000D0001529 + 126 0 -2615 21 0 0D0001530 + 126 4002 0 0 0 0 0 000010000D0001531 + 126 0 -2615 19 0 0D0001532 + 126 4021 0 0 0 0 0 000010000D0001533 + 126 0 -2615 16 0 0D0001534 + 102 4037 0 0 0 0 0 000010000D0001535 + 102 0 0 1 0 0D0001536 + 110 4038 0 0 0 0 0 000010000D0001537 + 110 0 0 2 0 0D0001538 + 100 4040 0 0 0 0 1541 000010000D0001539 + 100 0 0 3 0 0D0001540 + 124 4043 0 0 0 0 0 000000000D0001541 + 124 0 0 3 0 0D0001542 + 110 4046 0 0 0 0 0 000010000D0001543 + 110 0 0 2 0 0D0001544 + 100 4048 0 0 0 0 1547 000010000D0001545 + 100 0 0 2 0 0D0001546 + 124 4050 0 0 0 0 0 000000000D0001547 + 124 0 0 3 0 0D0001548 + 144 4053 0 0 0 0 0 000000000D0001549 + 144 0 -2617 1 0 SOT23039 D0001550 + 128 4054 0 0 0 0 0 000010000D0001551 + 128 0 0 7 0 0D0001552 + 142 4061 0 0 0 0 0 000010500D0001553 + 142 0 0 1 0 0D0001554 + 102 4062 0 0 0 0 0 000010000D0001555 + 102 0 0 1 0 0D0001556 + 110 4063 0 0 0 0 0 000010000D0001557 + 110 0 -2617 2 0 0D0001558 + 110 4065 0 0 0 0 0 000010000D0001559 + 110 0 -2617 1 0 0D0001560 + 110 4066 0 0 0 0 0 000010000D0001561 + 110 0 -2617 1 0 0D0001562 + 110 4067 0 0 0 0 0 000010000D0001563 + 110 0 -2617 2 0 0D0001564 + 102 4069 0 0 0 0 0 000010000D0001565 + 102 0 0 1 0 0D0001566 + 110 4070 0 0 0 0 0 000010000D0001567 + 110 0 0 2 0 0D0001568 + 110 4072 0 0 0 0 0 000010000D0001569 + 110 0 0 2 0 0D0001570 + 110 4074 0 0 0 0 0 000010000D0001571 + 110 0 0 2 0 0D0001572 + 110 4076 0 0 0 0 0 000010000D0001573 + 110 0 0 2 0 0D0001574 + 144 4078 0 0 0 0 0 000000000D0001575 + 144 0 -2619 1 0 SOT23034 D0001576 + 128 4079 0 0 0 0 0 000010000D0001577 + 128 0 0 7 0 0D0001578 + 142 4086 0 0 0 0 0 000010500D0001579 + 142 0 0 1 0 0D0001580 + 102 4087 0 0 0 0 0 000010000D0001581 + 102 0 0 1 0 0D0001582 + 110 4088 0 0 0 0 0 000010000D0001583 + 110 0 -2619 1 0 0D0001584 + 110 4089 0 0 0 0 0 000010000D0001585 + 110 0 -2619 2 0 0D0001586 + 110 4091 0 0 0 0 0 000010000D0001587 + 110 0 -2619 1 0 0D0001588 + 110 4092 0 0 0 0 0 000010000D0001589 + 110 0 -2619 1 0 0D0001590 + 102 4093 0 0 0 0 0 000010000D0001591 + 102 0 0 1 0 0D0001592 + 110 4094 0 0 0 0 0 000010000D0001593 + 110 0 0 2 0 0D0001594 + 110 4096 0 0 0 0 0 000010000D0001595 + 110 0 0 2 0 0D0001596 + 110 4098 0 0 0 0 0 000010000D0001597 + 110 0 0 2 0 0D0001598 + 110 4100 0 0 0 0 0 000010000D0001599 + 110 0 0 2 0 0D0001600 + 144 4102 0 0 0 0 0 000000000D0001601 + 144 0 -2621 1 0 SOT23031 D0001602 + 120 4103 0 0 0 0 0 000010000D0001603 + 120 0 0 1 0 0D0001604 + 110 4104 0 0 0 0 0 000010000D0001605 + 110 0 0 2 0 0D0001606 + 100 4106 0 0 0 0 1609 000010000D0001607 + 100 0 0 2 0 0D0001608 + 124 4108 0 0 0 0 0 000000000D0001609 + 124 0 0 3 0 0D0001610 + 142 4111 0 0 0 0 0 000010500D0001611 + 142 0 0 1 0 0D0001612 + 102 4112 0 0 0 0 0 000010000D0001613 + 102 0 0 1 0 0D0001614 + 126 4113 0 0 0 0 0 000010000D0001615 + 126 0 -2621 20 0 0D0001616 + 126 4133 0 0 0 0 0 000010000D0001617 + 126 0 -2621 21 0 0D0001618 + 126 4154 0 0 0 0 0 000010000D0001619 + 126 0 -2621 21 0 0D0001620 + 102 4175 0 0 0 0 0 000010000D0001621 + 102 0 0 1 0 0D0001622 + 100 4176 0 0 0 0 1625 000010000D0001623 + 100 0 0 3 0 0D0001624 + 124 4179 0 0 0 0 0 000000000D0001625 + 124 0 0 4 0 0D0001626 + 100 4183 0 0 0 0 1629 000010000D0001627 + 100 0 0 3 0 0D0001628 + 124 4186 0 0 0 0 0 000000000D0001629 + 124 0 0 3 0 0D0001630 + 100 4189 0 0 0 0 1633 000010000D0001631 + 100 0 0 3 0 0D0001632 + 124 4192 0 0 0 0 0 000000000D0001633 + 124 0 0 3 0 0D0001634 + 144 4195 0 0 0 0 0 000000000D0001635 + 144 0 -2623 1 0 SOT23009 D0001636 + 128 4196 0 0 0 0 0 000010000D0001637 + 128 0 0 7 0 0D0001638 + 142 4203 0 0 0 0 0 000010500D0001639 + 142 0 0 1 0 0D0001640 + 102 4204 0 0 0 0 0 000010000D0001641 + 102 0 0 1 0 0D0001642 + 110 4205 0 0 0 0 0 000010000D0001643 + 110 0 -2623 1 0 0D0001644 + 110 4206 0 0 0 0 0 000010000D0001645 + 110 0 -2623 2 0 0D0001646 + 110 4208 0 0 0 0 0 000010000D0001647 + 110 0 -2623 2 0 0D0001648 + 110 4210 0 0 0 0 0 000010000D0001649 + 110 0 -2623 1 0 0D0001650 + 102 4211 0 0 0 0 0 000010000D0001651 + 102 0 0 1 0 0D0001652 + 110 4212 0 0 0 0 0 000010000D0001653 + 110 0 0 2 0 0D0001654 + 110 4214 0 0 0 0 0 000010000D0001655 + 110 0 0 2 0 0D0001656 + 110 4216 0 0 0 0 0 000010000D0001657 + 110 0 0 2 0 0D0001658 + 110 4218 0 0 0 0 0 000010000D0001659 + 110 0 0 2 0 0D0001660 + 144 4220 0 0 0 0 0 000000000D0001661 + 144 0 -2625 1 0 SOT23019 D0001662 + 120 4221 0 0 0 0 0 000010000D0001663 + 120 0 0 1 0 0D0001664 + 110 4222 0 0 0 0 0 000010000D0001665 + 110 0 0 2 0 0D0001666 + 100 4224 0 0 0 0 1669 000010000D0001667 + 100 0 0 3 0 0D0001668 + 124 4227 0 0 0 0 0 000000000D0001669 + 124 0 0 3 0 0D0001670 + 142 4230 0 0 0 0 0 000010500D0001671 + 142 0 0 1 0 0D0001672 + 102 4231 0 0 0 0 0 000010000D0001673 + 102 0 0 1 0 0D0001674 + 126 4232 0 0 0 0 0 000010000D0001675 + 126 0 -2625 20 0 0D0001676 + 126 4252 0 0 0 0 0 000010000D0001677 + 126 0 -2625 21 0 0D0001678 + 126 4273 0 0 0 0 0 000010000D0001679 + 126 0 -2625 20 0 0D0001680 + 102 4293 0 0 0 0 0 000010000D0001681 + 102 0 0 1 0 0D0001682 + 100 4294 0 0 0 0 1685 000010000D0001683 + 100 0 0 3 0 0D0001684 + 124 4297 0 0 0 0 0 000000000D0001685 + 124 0 0 3 0 0D0001686 + 100 4300 0 0 0 0 1689 000010000D0001687 + 100 0 0 3 0 0D0001688 + 124 4303 0 0 0 0 0 000000000D0001689 + 124 0 0 3 0 0D0001690 + 100 4306 0 0 0 0 1693 000010000D0001691 + 100 0 0 3 0 0D0001692 + 124 4309 0 0 0 0 0 000000000D0001693 + 124 0 0 4 0 0D0001694 + 144 4313 0 0 0 0 0 000000000D0001695 + 144 0 -2627 1 0 SOT23024 D0001696 + 120 4314 0 0 0 0 0 000010000D0001697 + 120 0 0 1 0 0D0001698 + 110 4315 0 0 0 0 0 000010000D0001699 + 110 0 0 2 0 0D0001700 + 110 4317 0 0 0 0 0 000010000D0001701 + 110 0 0 2 0 0D0001702 + 142 4319 0 0 0 0 0 000010500D0001703 + 142 0 0 1 0 0D0001704 + 102 4320 0 0 0 0 0 000010000D0001705 + 102 0 0 1 0 0D0001706 + 126 4321 0 0 0 0 0 000010000D0001707 + 126 0 -2627 21 0 0D0001708 + 126 4342 0 0 0 0 0 000010000D0001709 + 126 0 -2627 21 0 0D0001710 + 126 4363 0 0 0 0 0 000010000D0001711 + 126 0 -2627 20 0 0D0001712 + 126 4383 0 0 0 0 0 000010000D0001713 + 126 0 -2627 19 0 0D0001714 + 102 4402 0 0 0 0 0 000010000D0001715 + 102 0 0 1 0 0D0001716 + 100 4403 0 0 0 0 1719 000010000D0001717 + 100 0 0 3 0 0D0001718 + 124 4406 0 0 0 0 0 000000000D0001719 + 124 0 0 3 0 0D0001720 + 110 4409 0 0 0 0 0 000010000D0001721 + 110 0 0 2 0 0D0001722 + 126 4411 0 0 0 0 0 000010000D0001723 + 126 0 0 6 0 0D0001724 + 110 4417 0 0 0 0 0 000010000D0001725 + 110 0 0 2 0 0D0001726 + 144 4419 0 0 0 0 0 000000000D0001727 + 144 0 -2629 1 0 SOT23025 D0001728 + 120 4420 0 0 0 0 0 000010000D0001729 + 120 0 0 1 0 0D0001730 + 110 4421 0 0 0 0 0 000010000D0001731 + 110 0 0 2 0 0D0001732 + 110 4423 0 0 0 0 0 000010000D0001733 + 110 0 0 2 0 0D0001734 + 142 4425 0 0 0 0 0 000010500D0001735 + 142 0 0 1 0 0D0001736 + 102 4426 0 0 0 0 0 000010000D0001737 + 102 0 0 1 0 0D0001738 + 126 4427 0 0 0 0 0 000010000D0001739 + 126 0 -2629 21 0 0D0001740 + 126 4448 0 0 0 0 0 000010000D0001741 + 126 0 -2629 22 0 0D0001742 + 126 4470 0 0 0 0 0 000010000D0001743 + 126 0 -2629 21 0 0D0001744 + 126 4491 0 0 0 0 0 000010000D0001745 + 126 0 -2629 20 0 0D0001746 + 102 4511 0 0 0 0 0 000010000D0001747 + 102 0 0 1 0 0D0001748 + 100 4512 0 0 0 0 1751 000010000D0001749 + 100 0 0 3 0 0D0001750 + 124 4515 0 0 0 0 0 000000000D0001751 + 124 0 0 4 0 0D0001752 + 110 4519 0 0 0 0 0 000010000D0001753 + 110 0 0 2 0 0D0001754 + 126 4521 0 0 0 0 0 000010000D0001755 + 126 0 0 7 0 0D0001756 + 110 4528 0 0 0 0 0 000010000D0001757 + 110 0 0 2 0 0D0001758 + 144 4530 0 0 0 0 0 000000000D0001759 + 144 0 -2631 1 0 SOT23030 D0001760 + 120 4531 0 0 0 0 0 000010000D0001761 + 120 0 0 1 0 0D0001762 + 110 4532 0 0 0 0 0 000010000D0001763 + 110 0 0 2 0 0D0001764 + 110 4534 0 0 0 0 0 000010000D0001765 + 110 0 0 2 0 0D0001766 + 142 4536 0 0 0 0 0 000010500D0001767 + 142 0 0 1 0 0D0001768 + 102 4537 0 0 0 0 0 000010000D0001769 + 102 0 0 1 0 0D0001770 + 110 4538 0 0 0 0 0 000010000D0001771 + 110 0 -2631 2 0 0D0001772 + 110 4540 0 0 0 0 0 000010000D0001773 + 110 0 -2631 1 0 0D0001774 + 110 4541 0 0 0 0 0 000010000D0001775 + 110 0 -2631 1 0 0D0001776 + 126 4542 0 0 0 0 0 000010000D0001777 + 126 0 -2631 20 0 0D0001778 + 102 4562 0 0 0 0 0 000010000D0001779 + 102 0 0 1 0 0D0001780 + 100 4563 0 0 0 0 1783 000010000D0001781 + 100 0 0 3 0 0D0001782 + 124 4566 0 0 0 0 0 000000000D0001783 + 124 0 0 3 0 0D0001784 + 110 4569 0 0 0 0 0 000010000D0001785 + 110 0 0 2 0 0D0001786 + 100 4571 0 0 0 0 1789 000010000D0001787 + 100 0 0 2 0 0D0001788 + 124 4573 0 0 0 0 0 000000000D0001789 + 124 0 0 3 0 0D0001790 + 110 4576 0 0 0 0 0 000010000D0001791 + 110 0 0 2 0 0D0001792 + 144 4578 0 0 0 0 0 000000000D0001793 + 144 0 -2633 1 0 SOT23020 D0001794 + 120 4579 0 0 0 0 0 000010000D0001795 + 120 0 0 1 0 0D0001796 + 110 4580 0 0 0 0 0 000010000D0001797 + 110 0 0 2 0 0D0001798 + 100 4582 0 0 0 0 1801 000010000D0001799 + 100 0 0 2 0 0D0001800 + 124 4584 0 0 0 0 0 000000000D0001801 + 124 0 0 3 0 0D0001802 + 142 4587 0 0 0 0 0 000010500D0001803 + 142 0 0 1 0 0D0001804 + 102 4588 0 0 0 0 0 000010000D0001805 + 102 0 0 1 0 0D0001806 + 126 4589 0 0 0 0 0 000010000D0001807 + 126 0 -2633 19 0 0D0001808 + 126 4608 0 0 0 0 0 000010000D0001809 + 126 0 -2633 21 0 0D0001810 + 126 4629 0 0 0 0 0 000010000D0001811 + 126 0 -2633 21 0 0D0001812 + 102 4650 0 0 0 0 0 000010000D0001813 + 102 0 0 1 0 0D0001814 + 100 4651 0 0 0 0 1817 000010000D0001815 + 100 0 0 3 0 0D0001816 + 124 4654 0 0 0 0 0 000000000D0001817 + 124 0 0 3 0 0D0001818 + 100 4657 0 0 0 0 1821 000010000D0001819 + 100 0 0 3 0 0D0001820 + 124 4660 0 0 0 0 0 000000000D0001821 + 124 0 0 3 0 0D0001822 + 100 4663 0 0 0 0 1825 000010000D0001823 + 100 0 0 3 0 0D0001824 + 124 4666 0 0 0 0 0 000000000D0001825 + 124 0 0 4 0 0D0001826 + 144 4670 0 0 0 0 0 000000000D0001827 + 144 0 -2635 1 0 SOT23021 D0001828 + 120 4671 0 0 0 0 0 000010000D0001829 + 120 0 0 1 0 0D0001830 + 110 4672 0 0 0 0 0 000010000D0001831 + 110 0 0 2 0 0D0001832 + 110 4674 0 0 0 0 0 000010000D0001833 + 110 0 0 2 0 0D0001834 + 142 4676 0 0 0 0 0 000010500D0001835 + 142 0 0 1 0 0D0001836 + 102 4677 0 0 0 0 0 000010000D0001837 + 102 0 0 1 0 0D0001838 + 126 4678 0 0 0 0 0 000010000D0001839 + 126 0 -2635 20 0 0D0001840 + 126 4698 0 0 0 0 0 000010000D0001841 + 126 0 -2635 20 0 0D0001842 + 126 4718 0 0 0 0 0 000010000D0001843 + 126 0 -2635 20 0 0D0001844 + 126 4738 0 0 0 0 0 000010000D0001845 + 126 0 -2635 21 0 0D0001846 + 102 4759 0 0 0 0 0 000010000D0001847 + 102 0 0 1 0 0D0001848 + 126 4760 0 0 0 0 0 000010000D0001849 + 126 0 0 7 0 0D0001850 + 110 4767 0 0 0 0 0 000010000D0001851 + 110 0 0 2 0 0D0001852 + 100 4769 0 0 0 0 1855 000010000D0001853 + 100 0 0 3 0 0D0001854 + 124 4772 0 0 0 0 0 000000000D0001855 + 124 0 0 4 0 0D0001856 + 110 4776 0 0 0 0 0 000010000D0001857 + 110 0 0 2 0 0D0001858 + 144 4778 0 0 0 0 0 000000000D0001859 + 144 0 -2637 1 0 SOT23061 D0001860 + 128 4779 0 0 0 0 0 000010000D0001861 + 128 0 0 7 0 0D0001862 + 142 4786 0 0 0 0 0 000010500D0001863 + 142 0 0 1 0 0D0001864 + 102 4787 0 0 0 0 0 000010000D0001865 + 102 0 0 1 0 0D0001866 + 110 4788 0 0 0 0 0 000010000D0001867 + 110 0 -2637 1 0 0D0001868 + 110 4789 0 0 0 0 0 000010000D0001869 + 110 0 -2637 2 0 0D0001870 + 110 4791 0 0 0 0 0 000010000D0001871 + 110 0 -2637 2 0 0D0001872 + 110 4793 0 0 0 0 0 000010000D0001873 + 110 0 -2637 1 0 0D0001874 + 102 4794 0 0 0 0 0 000010000D0001875 + 102 0 0 1 0 0D0001876 + 110 4795 0 0 0 0 0 000010000D0001877 + 110 0 0 2 0 0D0001878 + 110 4797 0 0 0 0 0 000010000D0001879 + 110 0 0 2 0 0D0001880 + 110 4799 0 0 0 0 0 000010000D0001881 + 110 0 0 2 0 0D0001882 + 110 4801 0 0 0 0 0 000010000D0001883 + 110 0 0 2 0 0D0001884 + 144 4803 0 0 0 0 0 000000000D0001885 + 144 0 -2639 1 0 SOT23062 D0001886 + 120 4804 0 0 0 0 0 000010000D0001887 + 120 0 0 1 0 0D0001888 + 110 4805 0 0 0 0 0 000010000D0001889 + 110 0 0 2 0 0D0001890 + 110 4807 0 0 0 0 0 000010000D0001891 + 110 0 0 2 0 0D0001892 + 142 4809 0 0 0 0 0 000010500D0001893 + 142 0 0 1 0 0D0001894 + 102 4810 0 0 0 0 0 000010000D0001895 + 102 0 0 1 0 0D0001896 + 126 4811 0 0 0 0 0 000010000D0001897 + 126 0 -2639 19 0 0D0001898 + 126 4830 0 0 0 0 0 000010000D0001899 + 126 0 -2639 21 0 0D0001900 + 110 4851 0 0 0 0 0 000010000D0001901 + 110 0 -2639 1 0 0D0001902 + 126 4852 0 0 0 0 0 000010000D0001903 + 126 0 -2639 16 0 0D0001904 + 102 4868 0 0 0 0 0 000010000D0001905 + 102 0 0 1 0 0D0001906 + 110 4869 0 0 0 0 0 000010000D0001907 + 110 0 0 2 0 0D0001908 + 100 4871 0 0 0 0 1911 000010000D0001909 + 100 0 0 2 0 0D0001910 + 124 4873 0 0 0 0 0 000000000D0001911 + 124 0 0 3 0 0D0001912 + 110 4876 0 0 0 0 0 000010000D0001913 + 110 0 0 2 0 0D0001914 + 100 4878 0 0 0 0 1917 000010000D0001915 + 100 0 0 3 0 0D0001916 + 124 4881 0 0 0 0 0 000000000D0001917 + 124 0 0 3 0 0D0001918 + 144 4884 0 0 0 0 0 000000000D0001919 + 144 0 -2641 1 0 SOT23060 D0001920 + 128 4885 0 0 0 0 0 000010000D0001921 + 128 0 0 7 0 0D0001922 + 142 4892 0 0 0 0 0 000010500D0001923 + 142 0 0 1 0 0D0001924 + 102 4893 0 0 0 0 0 000010000D0001925 + 102 0 0 1 0 0D0001926 + 110 4894 0 0 0 0 0 000010000D0001927 + 110 0 -2641 2 0 0D0001928 + 110 4896 0 0 0 0 0 000010000D0001929 + 110 0 -2641 2 0 0D0001930 + 110 4898 0 0 0 0 0 000010000D0001931 + 110 0 -2641 1 0 0D0001932 + 110 4899 0 0 0 0 0 000010000D0001933 + 110 0 -2641 1 0 0D0001934 + 102 4900 0 0 0 0 0 000010000D0001935 + 102 0 0 1 0 0D0001936 + 110 4901 0 0 0 0 0 000010000D0001937 + 110 0 0 2 0 0D0001938 + 110 4903 0 0 0 0 0 000010000D0001939 + 110 0 0 2 0 0D0001940 + 110 4905 0 0 0 0 0 000010000D0001941 + 110 0 0 2 0 0D0001942 + 110 4907 0 0 0 0 0 000010000D0001943 + 110 0 0 2 0 0D0001944 + 144 4909 0 0 0 0 0 000000000D0001945 + 144 0 -2643 1 0 SOT23059 D0001946 + 128 4910 0 0 0 0 0 000010000D0001947 + 128 0 0 6 0 0D0001948 + 142 4916 0 0 0 0 0 000010500D0001949 + 142 0 0 1 0 0D0001950 + 102 4917 0 0 0 0 0 000010000D0001951 + 102 0 0 1 0 0D0001952 + 110 4918 0 0 0 0 0 000010000D0001953 + 110 0 -2643 2 0 0D0001954 + 110 4920 0 0 0 0 0 000010000D0001955 + 110 0 -2643 2 0 0D0001956 + 110 4922 0 0 0 0 0 000010000D0001957 + 110 0 -2643 1 0 0D0001958 + 110 4923 0 0 0 0 0 000010000D0001959 + 110 0 -2643 1 0 0D0001960 + 102 4924 0 0 0 0 0 000010000D0001961 + 102 0 0 1 0 0D0001962 + 110 4925 0 0 0 0 0 000010000D0001963 + 110 0 0 2 0 0D0001964 + 110 4927 0 0 0 0 0 000010000D0001965 + 110 0 0 2 0 0D0001966 + 110 4929 0 0 0 0 0 000010000D0001967 + 110 0 0 2 0 0D0001968 + 110 4931 0 0 0 0 0 000010000D0001969 + 110 0 0 2 0 0D0001970 + 144 4933 0 0 0 0 0 000000000D0001971 + 144 0 -2645 1 0 SOT23066 D0001972 + 120 4934 0 0 0 0 0 000010000D0001973 + 120 0 0 1 0 0D0001974 + 110 4935 0 0 0 0 0 000010000D0001975 + 110 0 0 2 0 0D0001976 + 110 4937 0 0 0 0 0 000010000D0001977 + 110 0 0 2 0 0D0001978 + 142 4939 0 0 0 0 0 000010500D0001979 + 142 0 0 1 0 0D0001980 + 102 4940 0 0 0 0 0 000010000D0001981 + 102 0 0 1 0 0D0001982 + 126 4941 0 0 0 0 0 000010000D0001983 + 126 0 -2645 21 0 0D0001984 + 126 4962 0 0 0 0 0 000010000D0001985 + 126 0 -2645 21 0 0D0001986 + 110 4983 0 0 0 0 0 000010000D0001987 + 110 0 -2645 1 0 0D0001988 + 126 4984 0 0 0 0 0 000010000D0001989 + 126 0 -2645 16 0 0D0001990 + 102 5000 0 0 0 0 0 000010000D0001991 + 102 0 0 1 0 0D0001992 + 110 5001 0 0 0 0 0 000010000D0001993 + 110 0 0 2 0 0D0001994 + 100 5003 0 0 0 0 1997 000010000D0001995 + 100 0 0 3 0 0D0001996 + 124 5006 0 0 0 0 0 000000000D0001997 + 124 0 0 3 0 0D0001998 + 110 5009 0 0 0 0 0 000010000D0001999 + 110 0 0 2 0 0D0002000 + 100 5011 0 0 0 0 2003 000010000D0002001 + 100 0 0 3 0 0D0002002 + 124 5014 0 0 0 0 0 000000000D0002003 + 124 0 0 3 0 0D0002004 + 144 5017 0 0 0 0 0 000000000D0002005 + 144 0 -2647 1 0 SOT23064 D0002006 + 128 5018 0 0 0 0 0 000010000D0002007 + 128 0 0 7 0 0D0002008 + 142 5025 0 0 0 0 0 000010500D0002009 + 142 0 0 1 0 0D0002010 + 102 5026 0 0 0 0 0 000010000D0002011 + 102 0 0 1 0 0D0002012 + 110 5027 0 0 0 0 0 000010000D0002013 + 110 0 -2647 2 0 0D0002014 + 110 5029 0 0 0 0 0 000010000D0002015 + 110 0 -2647 1 0 0D0002016 + 110 5030 0 0 0 0 0 000010000D0002017 + 110 0 -2647 1 0 0D0002018 + 110 5031 0 0 0 0 0 000010000D0002019 + 110 0 -2647 2 0 0D0002020 + 102 5033 0 0 0 0 0 000010000D0002021 + 102 0 0 1 0 0D0002022 + 110 5034 0 0 0 0 0 000010000D0002023 + 110 0 0 2 0 0D0002024 + 110 5036 0 0 0 0 0 000010000D0002025 + 110 0 0 2 0 0D0002026 + 110 5038 0 0 0 0 0 000010000D0002027 + 110 0 0 2 0 0D0002028 + 110 5040 0 0 0 0 0 000010000D0002029 + 110 0 0 2 0 0D0002030 + 144 5042 0 0 0 0 0 000000000D0002031 + 144 0 -2649 1 0 SOT23063 D0002032 + 120 5043 0 0 0 0 0 000010000D0002033 + 120 0 0 1 0 0D0002034 + 110 5044 0 0 0 0 0 000010000D0002035 + 110 0 0 2 0 0D0002036 + 110 5046 0 0 0 0 0 000010000D0002037 + 110 0 0 2 0 0D0002038 + 142 5048 0 0 0 0 0 000010500D0002039 + 142 0 0 1 0 0D0002040 + 102 5049 0 0 0 0 0 000010000D0002041 + 102 0 0 1 0 0D0002042 + 126 5050 0 0 0 0 0 000010000D0002043 + 126 0 -2649 19 0 0D0002044 + 126 5069 0 0 0 0 0 000010000D0002045 + 126 0 -2649 21 0 0D0002046 + 110 5090 0 0 0 0 0 000010000D0002047 + 110 0 -2649 1 0 0D0002048 + 126 5091 0 0 0 0 0 000010000D0002049 + 126 0 -2649 16 0 0D0002050 + 102 5107 0 0 0 0 0 000010000D0002051 + 102 0 0 1 0 0D0002052 + 110 5108 0 0 0 0 0 000010000D0002053 + 110 0 0 2 0 0D0002054 + 100 5110 0 0 0 0 2057 000010000D0002055 + 100 0 0 2 0 0D0002056 + 124 5112 0 0 0 0 0 000000000D0002057 + 124 0 0 3 0 0D0002058 + 110 5115 0 0 0 0 0 000010000D0002059 + 110 0 0 2 0 0D0002060 + 100 5117 0 0 0 0 2063 000010000D0002061 + 100 0 0 3 0 0D0002062 + 124 5120 0 0 0 0 0 000000000D0002063 + 124 0 0 3 0 0D0002064 + 144 5123 0 0 0 0 0 000000000D0002065 + 144 0 -2651 1 0 SOT23067 D0002066 + 120 5124 0 0 0 0 0 000010000D0002067 + 120 0 0 1 0 0D0002068 + 110 5125 0 0 0 0 0 000010000D0002069 + 110 0 0 2 0 0D0002070 + 110 5127 0 0 0 0 0 000010000D0002071 + 110 0 0 2 0 0D0002072 + 142 5129 0 0 0 0 0 000010500D0002073 + 142 0 0 1 0 0D0002074 + 102 5130 0 0 0 0 0 000010000D0002075 + 102 0 0 1 0 0D0002076 + 126 5131 0 0 0 0 0 000010000D0002077 + 126 0 -2651 19 0 0D0002078 + 126 5150 0 0 0 0 0 000010000D0002079 + 126 0 -2651 21 0 0D0002080 + 126 5171 0 0 0 0 0 000010000D0002081 + 126 0 -2651 19 0 0D0002082 + 126 5190 0 0 0 0 0 000010000D0002083 + 126 0 -2651 16 0 0D0002084 + 102 5206 0 0 0 0 0 000010000D0002085 + 102 0 0 1 0 0D0002086 + 110 5207 0 0 0 0 0 000010000D0002087 + 110 0 0 2 0 0D0002088 + 100 5209 0 0 0 0 2091 000010000D0002089 + 100 0 0 3 0 0D0002090 + 124 5212 0 0 0 0 0 000000000D0002091 + 124 0 0 3 0 0D0002092 + 110 5215 0 0 0 0 0 000010000D0002093 + 110 0 0 2 0 0D0002094 + 100 5217 0 0 0 0 2097 000010000D0002095 + 100 0 0 3 0 0D0002096 + 124 5220 0 0 0 0 0 000000000D0002097 + 124 0 0 3 0 0D0002098 + 144 5223 0 0 0 0 0 000000000D0002099 + 144 0 -2653 1 0 SOT23068 D0002100 + 128 5224 0 0 0 0 0 000010000D0002101 + 128 0 0 7 0 0D0002102 + 142 5231 0 0 0 0 0 000010500D0002103 + 142 0 0 1 0 0D0002104 + 102 5232 0 0 0 0 0 000010000D0002105 + 102 0 0 2 0 0D0002106 + 126 5234 0 0 0 0 0 000010000D0002107 + 126 0 -2653 21 0 0D0002108 + 126 5255 0 0 0 0 0 000010000D0002109 + 126 0 -2653 17 0 0D0002110 + 126 5272 0 0 0 0 0 000010000D0002111 + 126 0 -2653 20 0 0D0002112 + 126 5292 0 0 0 0 0 000010000D0002113 + 126 0 -2653 22 0 0D0002114 + 126 5314 0 0 0 0 0 000010000D0002115 + 126 0 -2653 21 0 0D0002116 + 126 5335 0 0 0 0 0 000010000D0002117 + 126 0 -2653 19 0 0D0002118 + 110 5354 0 0 0 0 0 000010000D0002119 + 110 0 -2653 1 0 0D0002120 + 110 5355 0 0 0 0 0 000010000D0002121 + 110 0 -2653 2 0 0D0002122 + 126 5357 0 0 0 0 0 000010000D0002123 + 126 0 -2653 25 0 0D0002124 + 126 5382 0 0 0 0 0 000010000D0002125 + 126 0 -2653 23 0 0D0002126 + 126 5405 0 0 0 0 0 000010000D0002127 + 126 0 -2653 20 0 0D0002128 + 126 5425 0 0 0 0 0 000010000D0002129 + 126 0 -2653 17 0 0D0002130 + 126 5442 0 0 0 0 0 000010000D0002131 + 126 0 -2653 21 0 0D0002132 + 102 5463 0 0 0 0 0 000010000D0002133 + 102 0 0 2 0 0D0002134 + 110 5465 0 0 0 0 0 000010000D0002135 + 110 0 0 2 0 0D0002136 + 110 5467 0 0 0 0 0 000010000D0002137 + 110 0 0 2 0 0D0002138 + 100 5469 0 0 0 0 2141 000010000D0002139 + 100 0 0 3 0 0D0002140 + 124 5472 0 0 0 0 0 000000000D0002141 + 124 0 0 3 0 0D0002142 + 110 5475 0 0 0 0 0 000010000D0002143 + 110 0 0 2 0 0D0002144 + 100 5477 0 0 0 0 2147 000010000D0002145 + 100 0 0 3 0 0D0002146 + 124 5480 0 0 0 0 0 000000000D0002147 + 124 0 0 3 0 0D0002148 + 110 5483 0 0 0 0 0 000010000D0002149 + 110 0 0 2 0 0D0002150 + 110 5485 0 0 0 0 0 000010000D0002151 + 110 0 0 2 0 0D0002152 + 110 5487 0 0 0 0 0 000010000D0002153 + 110 0 0 2 0 0D0002154 + 100 5489 0 0 0 0 2157 000010000D0002155 + 100 0 0 3 0 0D0002156 + 124 5492 0 0 0 0 0 000000000D0002157 + 124 0 0 3 0 0D0002158 + 110 5495 0 0 0 0 0 000010000D0002159 + 110 0 0 2 0 0D0002160 + 100 5497 0 0 0 0 2163 000010000D0002161 + 100 0 0 3 0 0D0002162 + 124 5500 0 0 0 0 0 000000000D0002163 + 124 0 0 3 0 0D0002164 + 110 5503 0 0 0 0 0 000010000D0002165 + 110 0 0 2 0 0D0002166 + 110 5505 0 0 0 0 0 000010000D0002167 + 110 0 0 2 0 0D0002168 + 144 5507 0 0 0 0 0 000000000D0002169 + 144 0 -2655 1 0 SOT23065 D0002170 + 128 5508 0 0 0 0 0 000010000D0002171 + 128 0 0 7 0 0D0002172 + 142 5515 0 0 0 0 0 000010500D0002173 + 142 0 0 1 0 0D0002174 + 102 5516 0 0 0 0 0 000010000D0002175 + 102 0 0 1 0 0D0002176 + 110 5517 0 0 0 0 0 000010000D0002177 + 110 0 -2655 1 0 0D0002178 + 110 5518 0 0 0 0 0 000010000D0002179 + 110 0 -2655 1 0 0D0002180 + 110 5519 0 0 0 0 0 000010000D0002181 + 110 0 -2655 1 0 0D0002182 + 110 5520 0 0 0 0 0 000010000D0002183 + 110 0 -2655 1 0 0D0002184 + 102 5521 0 0 0 0 0 000010000D0002185 + 102 0 0 1 0 0D0002186 + 110 5522 0 0 0 0 0 000010000D0002187 + 110 0 0 2 0 0D0002188 + 110 5524 0 0 0 0 0 000010000D0002189 + 110 0 0 2 0 0D0002190 + 110 5526 0 0 0 0 0 000010000D0002191 + 110 0 0 2 0 0D0002192 + 110 5528 0 0 0 0 0 000010000D0002193 + 110 0 0 2 0 0D0002194 + 144 5530 0 0 0 0 0 000000000D0002195 + 144 0 -2657 1 0 SOT23044 D0002196 + 128 5531 0 0 0 0 0 000010000D0002197 + 128 0 0 7 0 0D0002198 + 142 5538 0 0 0 0 0 000010500D0002199 + 142 0 0 1 0 0D0002200 + 102 5539 0 0 0 0 0 000010000D0002201 + 102 0 0 2 0 0D0002202 + 126 5541 0 0 0 0 0 000010000D0002203 + 126 0 -2657 17 0 0D0002204 + 126 5558 0 0 0 0 0 000010000D0002205 + 126 0 -2657 21 0 0D0002206 + 126 5579 0 0 0 0 0 000010000D0002207 + 126 0 -2657 21 0 0D0002208 + 126 5600 0 0 0 0 0 000010000D0002209 + 126 0 -2657 17 0 0D0002210 + 126 5617 0 0 0 0 0 000010000D0002211 + 126 0 -2657 20 0 0D0002212 + 126 5637 0 0 0 0 0 000010000D0002213 + 126 0 -2657 23 0 0D0002214 + 126 5660 0 0 0 0 0 000010000D0002215 + 126 0 -2657 25 0 0D0002216 + 126 5685 0 0 0 0 0 000010000D0002217 + 126 0 -2657 22 0 0D0002218 + 110 5707 0 0 0 0 0 000010000D0002219 + 110 0 -2657 1 0 0D0002220 + 126 5708 0 0 0 0 0 000010000D0002221 + 126 0 -2657 19 0 0D0002222 + 126 5727 0 0 0 0 0 000010000D0002223 + 126 0 -2657 23 0 0D0002224 + 126 5750 0 0 0 0 0 000010000D0002225 + 126 0 -2657 22 0 0D0002226 + 126 5772 0 0 0 0 0 000010000D0002227 + 126 0 -2657 20 0 0D0002228 + 102 5792 0 0 0 0 0 000010000D0002229 + 102 0 0 2 0 0D0002230 + 110 5794 0 0 0 0 0 000010000D0002231 + 110 0 0 2 0 0D0002232 + 110 5796 0 0 0 0 0 000010000D0002233 + 110 0 0 2 0 0D0002234 + 110 5798 0 0 0 0 0 000010000D0002235 + 110 0 0 2 0 0D0002236 + 110 5800 0 0 0 0 0 000010000D0002237 + 110 0 0 2 0 0D0002238 + 100 5802 0 0 0 0 2241 000010000D0002239 + 100 0 0 3 0 0D0002240 + 124 5805 0 0 0 0 0 000000000D0002241 + 124 0 0 3 0 0D0002242 + 110 5808 0 0 0 0 0 000010000D0002243 + 110 0 0 2 0 0D0002244 + 100 5810 0 0 0 0 2247 000010000D0002245 + 100 0 0 2 0 0D0002246 + 124 5812 0 0 0 0 0 000000000D0002247 + 124 0 0 3 0 0D0002248 + 110 5815 0 0 0 0 0 000010000D0002249 + 110 0 0 2 0 0D0002250 + 110 5817 0 0 0 0 0 000010000D0002251 + 110 0 0 2 0 0D0002252 + 110 5819 0 0 0 0 0 000010000D0002253 + 110 0 0 2 0 0D0002254 + 100 5821 0 0 0 0 2257 000010000D0002255 + 100 0 0 3 0 0D0002256 + 124 5824 0 0 0 0 0 000000000D0002257 + 124 0 0 3 0 0D0002258 + 110 5827 0 0 0 0 0 000010000D0002259 + 110 0 0 2 0 0D0002260 + 100 5829 0 0 0 0 2263 000010000D0002261 + 100 0 0 2 0 0D0002262 + 124 5831 0 0 0 0 0 000000000D0002263 + 124 0 0 3 0 0D0002264 + 144 5834 0 0 0 0 0 000000000D0002265 + 144 0 -2659 1 0 SOT23045 D0002266 + 128 5835 0 0 0 0 0 000010000D0002267 + 128 0 0 6 0 0D0002268 + 142 5841 0 0 0 0 0 000010500D0002269 + 142 0 0 1 0 0D0002270 + 102 5842 0 0 0 0 0 000010000D0002271 + 102 0 0 1 0 0D0002272 + 110 5843 0 0 0 0 0 000010000D0002273 + 110 0 -2659 1 0 0D0002274 + 110 5844 0 0 0 0 0 000010000D0002275 + 110 0 -2659 1 0 0D0002276 + 110 5845 0 0 0 0 0 000010000D0002277 + 110 0 -2659 1 0 0D0002278 + 110 5846 0 0 0 0 0 000010000D0002279 + 110 0 -2659 1 0 0D0002280 + 102 5847 0 0 0 0 0 000010000D0002281 + 102 0 0 1 0 0D0002282 + 110 5848 0 0 0 0 0 000010000D0002283 + 110 0 0 2 0 0D0002284 + 110 5850 0 0 0 0 0 000010000D0002285 + 110 0 0 2 0 0D0002286 + 110 5852 0 0 0 0 0 000010000D0002287 + 110 0 0 2 0 0D0002288 + 110 5854 0 0 0 0 0 000010000D0002289 + 110 0 0 2 0 0D0002290 + 144 5856 0 0 0 0 0 000000000D0002291 + 144 0 -2661 1 0 SOT23043 D0002292 + 128 5857 0 0 0 0 0 000010000D0002293 + 128 0 0 7 0 0D0002294 + 142 5864 0 0 0 0 0 000010500D0002295 + 142 0 0 1 0 0D0002296 + 102 5865 0 0 0 0 0 000010000D0002297 + 102 0 0 1 0 0D0002298 + 110 5866 0 0 0 0 0 000010000D0002299 + 110 0 -2661 1 0 0D0002300 + 110 5867 0 0 0 0 0 000010000D0002301 + 110 0 -2661 1 0 0D0002302 + 110 5868 0 0 0 0 0 000010000D0002303 + 110 0 -2661 1 0 0D0002304 + 110 5869 0 0 0 0 0 000010000D0002305 + 110 0 -2661 1 0 0D0002306 + 102 5870 0 0 0 0 0 000010000D0002307 + 102 0 0 1 0 0D0002308 + 110 5871 0 0 0 0 0 000010000D0002309 + 110 0 0 2 0 0D0002310 + 110 5873 0 0 0 0 0 000010000D0002311 + 110 0 0 2 0 0D0002312 + 110 5875 0 0 0 0 0 000010000D0002313 + 110 0 0 2 0 0D0002314 + 110 5877 0 0 0 0 0 000010000D0002315 + 110 0 0 2 0 0D0002316 + 144 5879 0 0 0 0 0 000000000D0002317 + 144 0 -2663 1 0 SOT23048 D0002318 + 128 5880 0 0 0 0 0 000010000D0002319 + 128 0 0 6 0 0D0002320 + 142 5886 0 0 0 0 0 000010500D0002321 + 142 0 0 1 0 0D0002322 + 102 5887 0 0 0 0 0 000010000D0002323 + 102 0 0 1 0 0D0002324 + 110 5888 0 0 0 0 0 000010000D0002325 + 110 0 -2663 1 0 0D0002326 + 110 5889 0 0 0 0 0 000010000D0002327 + 110 0 -2663 2 0 0D0002328 + 110 5891 0 0 0 0 0 000010000D0002329 + 110 0 -2663 1 0 0D0002330 + 110 5892 0 0 0 0 0 000010000D0002331 + 110 0 -2663 1 0 0D0002332 + 102 5893 0 0 0 0 0 000010000D0002333 + 102 0 0 1 0 0D0002334 + 110 5894 0 0 0 0 0 000010000D0002335 + 110 0 0 2 0 0D0002336 + 110 5896 0 0 0 0 0 000010000D0002337 + 110 0 0 2 0 0D0002338 + 110 5898 0 0 0 0 0 000010000D0002339 + 110 0 0 2 0 0D0002340 + 110 5900 0 0 0 0 0 000010000D0002341 + 110 0 0 2 0 0D0002342 + 144 5902 0 0 0 0 0 000000000D0002343 + 144 0 -2665 1 0 SOT23049 D0002344 + 120 5903 0 0 0 0 0 000010000D0002345 + 120 0 0 1 0 0D0002346 + 110 5904 0 0 0 0 0 000010000D0002347 + 110 0 0 2 0 0D0002348 + 110 5906 0 0 0 0 0 000010000D0002349 + 110 0 0 2 0 0D0002350 + 142 5908 0 0 0 0 0 000010500D0002351 + 142 0 0 1 0 0D0002352 + 102 5909 0 0 0 0 0 000010000D0002353 + 102 0 0 1 0 0D0002354 + 126 5910 0 0 0 0 0 000010000D0002355 + 126 0 -2665 19 0 0D0002356 + 126 5929 0 0 0 0 0 000010000D0002357 + 126 0 -2665 21 0 0D0002358 + 110 5950 0 0 0 0 0 000010000D0002359 + 110 0 -2665 1 0 0D0002360 + 126 5951 0 0 0 0 0 000010000D0002361 + 126 0 -2665 16 0 0D0002362 + 102 5967 0 0 0 0 0 000010000D0002363 + 102 0 0 1 0 0D0002364 + 110 5968 0 0 0 0 0 000010000D0002365 + 110 0 0 2 0 0D0002366 + 100 5970 0 0 0 0 2369 000010000D0002367 + 100 0 0 2 0 0D0002368 + 124 5972 0 0 0 0 0 000000000D0002369 + 124 0 0 3 0 0D0002370 + 110 5975 0 0 0 0 0 000010000D0002371 + 110 0 0 2 0 0D0002372 + 100 5977 0 0 0 0 2375 000010000D0002373 + 100 0 0 3 0 0D0002374 + 124 5980 0 0 0 0 0 000000000D0002375 + 124 0 0 3 0 0D0002376 + 144 5983 0 0 0 0 0 000000000D0002377 + 144 0 -2667 1 0 SOT23047 D0002378 + 128 5984 0 0 0 0 0 000010000D0002379 + 128 0 0 6 0 0D0002380 + 142 5990 0 0 0 0 0 000010500D0002381 + 142 0 0 1 0 0D0002382 + 102 5991 0 0 0 0 0 000010000D0002383 + 102 0 0 1 0 0D0002384 + 110 5992 0 0 0 0 0 000010000D0002385 + 110 0 -2667 1 0 0D0002386 + 110 5993 0 0 0 0 0 000010000D0002387 + 110 0 -2667 1 0 0D0002388 + 110 5994 0 0 0 0 0 000010000D0002389 + 110 0 -2667 2 0 0D0002390 + 110 5996 0 0 0 0 0 000010000D0002391 + 110 0 -2667 1 0 0D0002392 + 102 5997 0 0 0 0 0 000010000D0002393 + 102 0 0 1 0 0D0002394 + 110 5998 0 0 0 0 0 000010000D0002395 + 110 0 0 2 0 0D0002396 + 110 6000 0 0 0 0 0 000010000D0002397 + 110 0 0 2 0 0D0002398 + 110 6002 0 0 0 0 0 000010000D0002399 + 110 0 0 2 0 0D0002400 + 110 6004 0 0 0 0 0 000010000D0002401 + 110 0 0 2 0 0D0002402 + 144 6006 0 0 0 0 0 000000000D0002403 + 144 0 -2669 1 0 SOT23046 D0002404 + 128 6007 0 0 0 0 0 000010000D0002405 + 128 0 0 7 0 0D0002406 + 142 6014 0 0 0 0 0 000010500D0002407 + 142 0 0 1 0 0D0002408 + 102 6015 0 0 0 0 0 000010000D0002409 + 102 0 0 1 0 0D0002410 + 110 6016 0 0 0 0 0 000010000D0002411 + 110 0 -2669 2 0 0D0002412 + 110 6018 0 0 0 0 0 000010000D0002413 + 110 0 -2669 1 0 0D0002414 + 110 6019 0 0 0 0 0 000010000D0002415 + 110 0 -2669 1 0 0D0002416 + 110 6020 0 0 0 0 0 000010000D0002417 + 110 0 -2669 2 0 0D0002418 + 102 6022 0 0 0 0 0 000010000D0002419 + 102 0 0 1 0 0D0002420 + 110 6023 0 0 0 0 0 000010000D0002421 + 110 0 0 2 0 0D0002422 + 110 6025 0 0 0 0 0 000010000D0002423 + 110 0 0 2 0 0D0002424 + 110 6027 0 0 0 0 0 000010000D0002425 + 110 0 0 2 0 0D0002426 + 110 6029 0 0 0 0 0 000010000D0002427 + 110 0 0 2 0 0D0002428 + 144 6031 0 0 0 0 0 000000000D0002429 + 144 0 -2671 1 0 SOT23014 D0002430 + 120 6032 0 0 0 0 0 000010000D0002431 + 120 0 0 1 0 0D0002432 + 110 6033 0 0 0 0 0 000010000D0002433 + 110 0 0 2 0 0D0002434 + 110 6035 0 0 0 0 0 000010000D0002435 + 110 0 0 2 0 0D0002436 + 142 6037 0 0 0 0 0 000010500D0002437 + 142 0 0 1 0 0D0002438 + 102 6038 0 0 0 0 0 000010000D0002439 + 102 0 0 1 0 0D0002440 + 110 6039 0 0 0 0 0 000010000D0002441 + 110 0 -2671 2 0 0D0002442 + 126 6041 0 0 0 0 0 000010000D0002443 + 126 0 -2671 18 0 0D0002444 + 110 6059 0 0 0 0 0 000010000D0002445 + 110 0 -2671 1 0 0D0002446 + 126 6060 0 0 0 0 0 000010000D0002447 + 126 0 -2671 20 0 0D0002448 + 102 6080 0 0 0 0 0 000010000D0002449 + 102 0 0 1 0 0D0002450 + 100 6081 0 0 0 0 2453 000010000D0002451 + 100 0 0 3 0 0D0002452 + 124 6084 0 0 0 0 0 000000000D0002453 + 124 0 0 3 0 0D0002454 + 110 6087 0 0 0 0 0 000010000D0002455 + 110 0 0 2 0 0D0002456 + 100 6089 0 0 0 0 2459 000010000D0002457 + 100 0 0 3 0 0D0002458 + 124 6092 0 0 0 0 0 000000000D0002459 + 124 0 0 3 0 0D0002460 + 110 6095 0 0 0 0 0 000010000D0002461 + 110 0 0 2 0 0D0002462 + 144 6097 0 0 0 0 0 000000000D0002463 + 144 0 -2673 1 0 SOT23032 D0002464 + 120 6098 0 0 0 0 0 000010000D0002465 + 120 0 0 1 0 0D0002466 + 110 6099 0 0 0 0 0 000010000D0002467 + 110 0 0 2 0 0D0002468 + 100 6101 0 0 0 0 2471 000010000D0002469 + 100 0 0 3 0 0D0002470 + 124 6104 0 0 0 0 0 000000000D0002471 + 124 0 0 3 0 0D0002472 + 142 6107 0 0 0 0 0 000010500D0002473 + 142 0 0 1 0 0D0002474 + 102 6108 0 0 0 0 0 000010000D0002475 + 102 0 0 1 0 0D0002476 + 126 6109 0 0 0 0 0 000010000D0002477 + 126 0 -2673 20 0 0D0002478 + 126 6129 0 0 0 0 0 000010000D0002479 + 126 0 -2673 19 0 0D0002480 + 126 6148 0 0 0 0 0 000010000D0002481 + 126 0 -2673 21 0 0D0002482 + 102 6169 0 0 0 0 0 000010000D0002483 + 102 0 0 1 0 0D0002484 + 100 6170 0 0 0 0 2487 000010000D0002485 + 100 0 0 3 0 0D0002486 + 124 6173 0 0 0 0 0 000000000D0002487 + 124 0 0 3 0 0D0002488 + 100 6176 0 0 0 0 2491 000010000D0002489 + 100 0 0 3 0 0D0002490 + 124 6179 0 0 0 0 0 000000000D0002491 + 124 0 0 4 0 0D0002492 + 100 6183 0 0 0 0 2495 000010000D0002493 + 100 0 0 3 0 0D0002494 + 124 6186 0 0 0 0 0 000000000D0002495 + 124 0 0 3 0 0D0002496 + 144 6189 0 0 0 0 0 000000000D0002497 + 144 0 -2675 1 0 SOT23033 D0002498 + 120 6190 0 0 0 0 0 000010000D0002499 + 120 0 0 1 0 0D0002500 + 110 6191 0 0 0 0 0 000010000D0002501 + 110 0 0 2 0 0D0002502 + 110 6193 0 0 0 0 0 000010000D0002503 + 110 0 0 2 0 0D0002504 + 142 6195 0 0 0 0 0 000010500D0002505 + 142 0 0 1 0 0D0002506 + 102 6196 0 0 0 0 0 000010000D0002507 + 102 0 0 1 0 0D0002508 + 126 6197 0 0 0 0 0 000010000D0002509 + 126 0 -2675 17 0 0D0002510 + 126 6214 0 0 0 0 0 000010000D0002511 + 126 0 -2675 20 0 0D0002512 + 126 6234 0 0 0 0 0 000010000D0002513 + 126 0 -2675 21 0 0D0002514 + 110 6255 0 0 0 0 0 000010000D0002515 + 110 0 -2675 1 0 0D0002516 + 102 6256 0 0 0 0 0 000010000D0002517 + 102 0 0 1 0 0D0002518 + 100 6257 0 0 0 0 2521 000010000D0002519 + 100 0 0 2 0 0D0002520 + 124 6259 0 0 0 0 0 000000000D0002521 + 124 0 0 3 0 0D0002522 + 110 6262 0 0 0 0 0 000010000D0002523 + 110 0 0 2 0 0D0002524 + 100 6264 0 0 0 0 2527 000010000D0002525 + 100 0 0 3 0 0D0002526 + 124 6267 0 0 0 0 0 000000000D0002527 + 124 0 0 3 0 0D0002528 + 110 6270 0 0 0 0 0 000010000D0002529 + 110 0 0 2 0 0D0002530 + 314 6272 0 0 0 0 0 000000200D0002531 + 314 0 0 1 0 0D0002532 + 314 6273 0 0 0 0 0 000000200D0002533 + 314 0 0 1 0 0D0002534 + 314 6274 0 0 0 0 0 000000200D0002535 + 314 0 0 1 0 0D0002536 + 314 6275 0 0 0 0 0 000000200D0002537 + 314 0 0 1 0 0D0002538 + 314 6276 0 0 0 0 0 000000200D0002539 + 314 0 0 1 0 0D0002540 + 314 6277 0 0 0 0 0 000000200D0002541 + 314 0 0 1 0 0D0002542 + 314 6278 0 0 0 0 0 000000200D0002543 + 314 0 0 1 0 0D0002544 + 314 6279 0 0 0 0 0 000000200D0002545 + 314 0 0 1 0 0D0002546 + 314 6280 0 0 0 0 0 000000200D0002547 + 314 0 0 1 0 0D0002548 + 314 6281 0 0 0 0 0 000000200D0002549 + 314 0 0 1 0 0D0002550 + 314 6282 0 0 0 0 0 000000200D0002551 + 314 0 0 1 0 0D0002552 + 314 6283 0 0 0 0 0 000000200D0002553 + 314 0 0 1 0 0D0002554 + 314 6284 0 0 0 0 0 000000200D0002555 + 314 0 0 1 0 0D0002556 + 314 6285 0 0 0 0 0 000000200D0002557 + 314 0 0 1 0 0D0002558 + 314 6286 0 0 0 0 0 000000200D0002559 + 314 0 0 1 0 0D0002560 + 314 6287 0 0 0 0 0 000000200D0002561 + 314 0 0 1 0 0D0002562 + 314 6288 0 0 0 0 0 000000200D0002563 + 314 0 0 1 0 0D0002564 + 314 6289 0 0 0 0 0 000000200D0002565 + 314 0 0 1 0 0D0002566 + 314 6290 0 0 0 0 0 000000200D0002567 + 314 0 0 1 0 0D0002568 + 314 6291 0 0 0 0 0 000000200D0002569 + 314 0 0 1 0 0D0002570 + 314 6292 0 0 0 0 0 000000200D0002571 + 314 0 0 1 0 0D0002572 + 314 6293 0 0 0 0 0 000000200D0002573 + 314 0 0 1 0 0D0002574 + 314 6294 0 0 0 0 0 000000200D0002575 + 314 0 0 1 0 0D0002576 + 314 6295 0 0 0 0 0 000000200D0002577 + 314 0 0 1 0 0D0002578 + 314 6296 0 0 0 0 0 000000200D0002579 + 314 0 0 1 0 0D0002580 + 314 6297 0 0 0 0 0 000000200D0002581 + 314 0 0 1 0 0D0002582 + 314 6298 0 0 0 0 0 000000200D0002583 + 314 0 0 1 0 0D0002584 + 314 6299 0 0 0 0 0 000000200D0002585 + 314 0 0 1 0 0D0002586 + 314 6300 0 0 0 0 0 000000200D0002587 + 314 0 0 1 0 0D0002588 + 314 6301 0 0 0 0 0 000000200D0002589 + 314 0 0 1 0 0D0002590 + 314 6302 0 0 0 0 0 000000200D0002591 + 314 0 0 1 0 0D0002592 + 314 6303 0 0 0 0 0 000000200D0002593 + 314 0 0 1 0 0D0002594 + 314 6304 0 0 0 0 0 000000200D0002595 + 314 0 0 1 0 0D0002596 + 314 6305 0 0 0 0 0 000000200D0002597 + 314 0 0 1 0 0D0002598 + 314 6306 0 0 0 0 0 000000200D0002599 + 314 0 0 1 0 0D0002600 + 314 6307 0 0 0 0 0 000000200D0002601 + 314 0 0 1 0 0D0002602 + 314 6308 0 0 0 0 0 000000200D0002603 + 314 0 0 1 0 0D0002604 + 314 6309 0 0 0 0 0 000000200D0002605 + 314 0 0 1 0 0D0002606 + 314 6310 0 0 0 0 0 000000200D0002607 + 314 0 0 1 0 0D0002608 + 314 6311 0 0 0 0 0 000000200D0002609 + 314 0 0 1 0 0D0002610 + 314 6312 0 0 0 0 0 000000200D0002611 + 314 0 0 1 0 0D0002612 + 314 6313 0 0 0 0 0 000000200D0002613 + 314 0 0 1 0 0D0002614 + 314 6314 0 0 0 0 0 000000200D0002615 + 314 0 0 1 0 0D0002616 + 314 6315 0 0 0 0 0 000000200D0002617 + 314 0 0 1 0 0D0002618 + 314 6316 0 0 0 0 0 000000200D0002619 + 314 0 0 1 0 0D0002620 + 314 6317 0 0 0 0 0 000000200D0002621 + 314 0 0 1 0 0D0002622 + 314 6318 0 0 0 0 0 000000200D0002623 + 314 0 0 1 0 0D0002624 + 314 6319 0 0 0 0 0 000000200D0002625 + 314 0 0 1 0 0D0002626 + 314 6320 0 0 0 0 0 000000200D0002627 + 314 0 0 1 0 0D0002628 + 314 6321 0 0 0 0 0 000000200D0002629 + 314 0 0 1 0 0D0002630 + 314 6322 0 0 0 0 0 000000200D0002631 + 314 0 0 1 0 0D0002632 + 314 6323 0 0 0 0 0 000000200D0002633 + 314 0 0 1 0 0D0002634 + 314 6324 0 0 0 0 0 000000200D0002635 + 314 0 0 1 0 0D0002636 + 314 6325 0 0 0 0 0 000000200D0002637 + 314 0 0 1 0 0D0002638 + 314 6326 0 0 0 0 0 000000200D0002639 + 314 0 0 1 0 0D0002640 + 314 6327 0 0 0 0 0 000000200D0002641 + 314 0 0 1 0 0D0002642 + 314 6328 0 0 0 0 0 000000200D0002643 + 314 0 0 1 0 0D0002644 + 314 6329 0 0 0 0 0 000000200D0002645 + 314 0 0 1 0 0D0002646 + 314 6330 0 0 0 0 0 000000200D0002647 + 314 0 0 1 0 0D0002648 + 314 6331 0 0 0 0 0 000000200D0002649 + 314 0 0 1 0 0D0002650 + 314 6332 0 0 0 0 0 000000200D0002651 + 314 0 0 1 0 0D0002652 + 314 6333 0 0 0 0 0 000000200D0002653 + 314 0 0 1 0 0D0002654 + 314 6334 0 0 0 0 0 000000200D0002655 + 314 0 0 1 0 0D0002656 + 314 6335 0 0 0 0 0 000000200D0002657 + 314 0 0 1 0 0D0002658 + 314 6336 0 0 0 0 0 000000200D0002659 + 314 0 0 1 0 0D0002660 + 314 6337 0 0 0 0 0 000000200D0002661 + 314 0 0 1 0 0D0002662 + 314 6338 0 0 0 0 0 000000200D0002663 + 314 0 0 1 0 0D0002664 + 314 6339 0 0 0 0 0 000000200D0002665 + 314 0 0 1 0 0D0002666 + 314 6340 0 0 0 0 0 000000200D0002667 + 314 0 0 1 0 0D0002668 + 314 6341 0 0 0 0 0 000000200D0002669 + 314 0 0 1 0 0D0002670 + 314 6342 0 0 0 0 0 000000200D0002671 + 314 0 0 1 0 0D0002672 + 314 6343 0 0 0 0 0 000000200D0002673 + 314 0 0 1 0 0D0002674 + 314 6344 0 0 0 0 0 000000200D0002675 + 314 0 0 1 0 0D0002676 +144,3,1,0,5; 0000001P0000001 +128,1,1,1,1,0,0,1,0,0,-4.163336342E-17,-4.163336342E-17, 0000003P0000002 +0.639029968,0.639029968,1.248286918E-02,1.248286918E-02, 0000003P0000003 +1.287517131,1.287517131,1.,1.,1.,1.,-5.748031496E-02, 0000003P0000004 +-2.509909964E-02,1.456692913E-02,-5.616361242E-02, 0000003P0000005 +-2.509909964E-02,3.969111021E-02,-5.748031496E-02, 0000003P0000006 +2.509909964E-02,1.456692913E-02,-5.616361242E-02, 0000003P0000007 +2.509909964E-02,3.969111021E-02,-4.163336342E-17,0.639029968, 0000003P0000008 +1.248286918E-02,1.287517131; 0000003P0000009 +142,0,3,7,17,3; 0000005P0000010 +102,4,9,11,13,15; 0000007P0000011 +110,-4.163336342E-17,1.287517131,0.,-4.163336342E-17, 0000009P0000012 +1.248286929E-02,0.; 0000009P0000013 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.908656989E-02,5.817313978E-02, 0000011P0000014 +8.725970967E-02,0.11634628,0.145432849,0.174519419,0.203605989, 0000011P0000015 +0.232692559,0.261779129,0.290865699,0.319952269,0.349038839, 0000011P0000016 +0.378125409,0.407211978,0.436298548,0.465385118,0.494471688, 0000011P0000017 +0.523558258,0.552644828,0.581731398,0.610817968,0.639904538, 0000011P0000018 +0.639904538,0.639904538,0.639904538,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000011P0000019 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000011P0000020 +-4.163336342E-17,1.248286918E-02,0.,9.682272242E-03, 0000011P0000021 +1.298960016E-02,0.,2.904681673E-02,1.400306211E-02,0., 0000011P0000022 +5.809363345E-02,1.552325505E-02,0.,8.714045018E-02, 0000011P0000023 +1.704344798E-02,0.,0.116187267,1.856364091E-02,0.,0.145234084, 0000011P0000024 +2.008383384E-02,0.,0.1742809,2.160402678E-02,0.,0.203327717, 0000011P0000025 +2.312421971E-02,0.,0.232374534,2.464441264E-02,0.,0.261421351, 0000011P0000026 +2.616460557E-02,0.,0.290468167,2.768479851E-02,0.,0.319514984, 0000011P0000027 +2.920499144E-02,0.,0.348561801,3.072518437E-02,0.,0.377608617, 0000011P0000028 +3.22453773E-02,0.,0.406655434,3.376557024E-02,0.,0.435702251, 0000011P0000029 +3.528576317E-02,0.,0.464749068,3.68059561E-02,0.,0.493795884, 0000011P0000030 +3.832614904E-02,0.,0.522842701,3.984634197E-02,0.,0.551889518, 0000011P0000031 +4.13665349E-02,0.,0.580936335,4.288672783E-02,0.,0.609983151, 0000011P0000032 +4.440692077E-02,0.,0.629347696,4.542038272E-02,0.,0.639029968, 0000011P0000033 +4.59271137E-02,0.,0.,0.639904538,0.,0.,1.; 0000011P0000034 +110,0.639029968,4.59271137E-02,0.,0.639029968,1.254072886,0.; 0000013P0000035 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.908656989E-02,5.817313978E-02, 0000015P0000036 +8.725970967E-02,0.11634628,0.145432849,0.174519419,0.203605989, 0000015P0000037 +0.232692559,0.261779129,0.290865699,0.319952269,0.349038839, 0000015P0000038 +0.378125409,0.407211978,0.436298548,0.465385118,0.494471688, 0000015P0000039 +0.523558258,0.552644828,0.581731398,0.610817968,0.639904538, 0000015P0000040 +0.639904538,0.639904538,0.639904538,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000015P0000041 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,0.639029968, 0000015P0000042 +1.254072886,0.,0.629347696,1.254579617,0.,0.609983151, 0000015P0000043 +1.255593079,0.,0.580936335,1.257113272,0.,0.551889518, 0000015P0000044 +1.258633465,0.,0.522842701,1.260153658,0.,0.493795884, 0000015P0000045 +1.261673851,0.,0.464749068,1.263194044,0.,0.435702251, 0000015P0000046 +1.264714237,0.,0.406655434,1.26623443,0.,0.377608617, 0000015P0000047 +1.267754623,0.,0.348561801,1.269274816,0.,0.319514984, 0000015P0000048 +1.270795009,0.,0.290468167,1.272315202,0.,0.261421351, 0000015P0000049 +1.273835395,0.,0.232374534,1.275355588,0.,0.203327717, 0000015P0000050 +1.27687578,0.,0.1742809,1.278395973,0.,0.145234084,1.279916166, 0000015P0000051 +0.,0.116187267,1.281436359,0.,8.714045018E-02,1.282956552,0., 0000015P0000052 +5.809363345E-02,1.284476745,0.,2.904681673E-02,1.285996938,0., 0000015P0000053 +9.682272242E-03,1.2870104,0.,-4.163336342E-17,1.287517131,0.,0., 0000015P0000054 +0.639904538,0.,0.,1.; 0000015P0000055 +102,4,19,21,23,25; 0000017P0000056 +110,-5.748031496E-02,2.509909964E-02,1.456692913E-02, 0000019P0000057 +-5.748031496E-02,-2.509909964E-02,1.456692913E-02; 0000019P0000058 +110,-5.748031496E-02,-2.509909964E-02,1.456692913E-02, 0000021P0000059 +-5.616361242E-02,-2.37823971E-02,3.969111021E-02; 0000021P0000060 +110,-5.616361242E-02,-2.37823971E-02,3.969111021E-02, 0000023P0000061 +-5.616361242E-02,2.37823971E-02,3.969111021E-02; 0000023P0000062 +110,-5.616361242E-02,2.37823971E-02,3.969111021E-02, 0000025P0000063 +-5.748031496E-02,2.509909964E-02,1.456692913E-02; 0000025P0000064 +144,29,1,0,31; 0000027P0000065 +128,1,1,1,1,0,0,1,0,0,2.653623528E-02,2.653623528E-02, 0000029P0000066 +1.273463765,1.273463765,2.653623528E-02,2.653623528E-02, 0000029P0000067 +2.893463765,2.893463765,1.,1.,1.,1.,5.643558129E-02, 0000029P0000068 +-2.454581751E-02,3.543307087E-03,5.643558129E-02, 0000029P0000069 +2.454581751E-02,3.543307087E-03,-5.643558129E-02, 0000029P0000070 +-2.454581751E-02,3.543307087E-03,-5.643558129E-02, 0000029P0000071 +2.454581751E-02,3.543307087E-03,2.653623528E-02,1.273463765, 0000029P0000072 +2.653623528E-02,2.893463765; 0000029P0000073 +142,0,29,33,43,3; 0000031P0000074 +102,4,35,37,39,41; 0000033P0000075 +110,1.273463765,2.893463765,0.,2.653623549E-02,2.893463765,0.; 0000035P0000076 +110,2.653623528E-02,2.893463765,0.,2.653623528E-02, 0000037P0000077 +2.653623547E-02,0.; 0000037P0000078 +110,2.653623528E-02,2.653623528E-02,0.,1.273463765, 0000039P0000079 +2.653623528E-02,0.; 0000039P0000080 +110,1.273463765,2.653623528E-02,0.,1.273463765,2.893463765,0.; 0000041P0000081 +102,4,45,47,49,51; 0000043P0000082 +110,-5.643558129E-02,2.454581751E-02,3.543307087E-03, 0000045P0000083 +-5.643558129E-02,-2.454581751E-02,3.543307087E-03; 0000045P0000084 +110,-5.643558129E-02,-2.454581751E-02,3.543307087E-03, 0000047P0000085 +5.643558129E-02,-2.454581751E-02,3.543307087E-03; 0000047P0000086 +110,5.643558129E-02,-2.454581751E-02,3.543307087E-03, 0000049P0000087 +5.643558129E-02,2.454581751E-02,3.543307087E-03; 0000049P0000088 +110,5.643558129E-02,2.454581751E-02,3.543307087E-03, 0000051P0000089 +-5.643558129E-02,2.454581751E-02,3.543307087E-03; 0000051P0000090 +144,55,1,0,57; 0000053P0000091 +128,1,1,1,1,0,0,1,0,0,-1.398620803E-17,-1.398620803E-17, 0000055P0000092 +0.639029968,0.639029968,1.248286918E-02,1.248286918E-02, 0000055P0000093 +2.907517131,2.907517131,1.,1.,1.,1.,5.698886342E-02, 0000055P0000094 +-2.559055118E-02,1.456692913E-02,5.698886342E-02, 0000055P0000095 +-2.427384864E-02,3.969111021E-02,-5.698886342E-02, 0000055P0000096 +-2.559055118E-02,1.456692913E-02,-5.698886342E-02, 0000055P0000097 +-2.427384864E-02,3.969111021E-02,-1.398620803E-17,0.639029968, 0000055P0000098 +1.248286918E-02,2.907517131; 0000055P0000099 +142,0,55,59,77,3; 0000057P0000100 +102,8,61,63,65,67,69,71,73,75; 0000059P0000101 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600115E-03,5.91720023E-03, 0000061P0000102 +8.875800345E-03,1.183440046E-02,1.479300058E-02,1.775160069E-02, 0000061P0000103 +2.071020081E-02,2.366880092E-02,2.662740104E-02,2.958600115E-02, 0000061P0000104 +3.254460127E-02,3.550320138E-02,3.84618015E-02,4.142040161E-02, 0000061P0000105 +4.437900173E-02,4.733760184E-02,5.029620196E-02,5.325480207E-02, 0000061P0000106 +5.621340219E-02,5.91720023E-02,6.213060242E-02,6.508920253E-02, 0000061P0000107 +6.508920253E-02,6.508920253E-02,6.508920253E-02,1.,1.,1.,1.,1., 0000061P0000108 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000061P0000109 +6.508920255E-02,1.2375,0.,6.410300251E-02,1.2375,0., 0000061P0000110 +6.213060243E-02,1.2375,0.,5.917200232E-02,1.2375,0., 0000061P0000111 +5.62134022E-02,1.2375,0.,5.325480209E-02,1.2375,0., 0000061P0000112 +5.029620197E-02,1.2375,0.,4.733760186E-02,1.2375,0., 0000061P0000113 +4.437900174E-02,1.2375,0.,4.142040162E-02,1.2375,0., 0000061P0000114 +3.846180151E-02,1.2375,0.,3.550320139E-02,1.2375,0., 0000061P0000115 +3.254460128E-02,1.2375,0.,2.958600116E-02,1.2375,0., 0000061P0000116 +2.662740104E-02,1.2375,0.,2.366880093E-02,1.2375,0., 0000061P0000117 +2.071020081E-02,1.2375,0.,1.77516007E-02,1.2375,0., 0000061P0000118 +1.479300058E-02,1.2375,0.,1.183440046E-02,1.2375,0., 0000061P0000119 +8.875800348E-03,1.2375,0.,5.917200232E-03,1.2375,0., 0000061P0000120 +2.958600116E-03,1.2375,0.,9.862000386E-04,1.2375,0., 0000061P0000121 +-1.398620803E-17,1.2375,0.,0.,6.508920253E-02,0.,0.,1.; 0000061P0000122 +110,-1.398620803E-17,1.2375,0.,-1.398620803E-17,1.248286922E-02, 0000063P0000123 +0.; 0000063P0000124 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.908656989E-02,5.817313978E-02, 0000065P0000125 +8.725970967E-02,0.11634628,0.145432849,0.174519419,0.203605989, 0000065P0000126 +0.232692559,0.261779129,0.290865699,0.319952269,0.349038839, 0000065P0000127 +0.378125409,0.407211978,0.436298548,0.465385118,0.494471688, 0000065P0000128 +0.523558258,0.552644828,0.581731398,0.610817968,0.639904538, 0000065P0000129 +0.639904538,0.639904538,0.639904538,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000065P0000130 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000065P0000131 +-1.398620803E-17,1.248286918E-02,0.,9.682272242E-03, 0000065P0000132 +1.298960016E-02,0.,2.904681673E-02,1.400306211E-02,0., 0000065P0000133 +5.809363345E-02,1.552325505E-02,0.,8.714045018E-02, 0000065P0000134 +1.704344798E-02,0.,0.116187267,1.856364091E-02,0.,0.145234084, 0000065P0000135 +2.008383384E-02,0.,0.1742809,2.160402678E-02,0.,0.203327717, 0000065P0000136 +2.312421971E-02,0.,0.232374534,2.464441264E-02,0.,0.261421351, 0000065P0000137 +2.616460557E-02,0.,0.290468167,2.768479851E-02,0.,0.319514984, 0000065P0000138 +2.920499144E-02,0.,0.348561801,3.072518437E-02,0.,0.377608617, 0000065P0000139 +3.22453773E-02,0.,0.406655434,3.376557024E-02,0.,0.435702251, 0000065P0000140 +3.528576317E-02,0.,0.464749068,3.68059561E-02,0.,0.493795884, 0000065P0000141 +3.832614903E-02,0.,0.522842701,3.984634197E-02,0.,0.551889518, 0000065P0000142 +4.13665349E-02,0.,0.580936335,4.288672783E-02,0.,0.609983151, 0000065P0000143 +4.440692076E-02,0.,0.629347696,4.542038272E-02,0.,0.639029968, 0000065P0000144 +4.59271137E-02,0.,0.,0.639904538,0.,0.,1.; 0000065P0000145 +110,0.639029968,4.59271137E-02,0.,0.639029968,2.874072886,0.; 0000067P0000146 +126,24,3,0,0,1,0,-0.,-0.,-0.,-0.,2.908656989E-02, 0000069P0000147 +5.817313978E-02,8.725970967E-02,0.11634628,0.145432849, 0000069P0000148 +0.174519419,0.203605989,0.232692559,0.261779129,0.290865699, 0000069P0000149 +0.319952269,0.349038839,0.378125409,0.407211978,0.436298548, 0000069P0000150 +0.465385118,0.494471688,0.523558258,0.552644828,0.581731398, 0000069P0000151 +0.610817968,0.639904538,0.639904538,0.639904538,0.639904538,1., 0000069P0000152 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000069P0000153 +1.,1.,1.,0.639029968,2.874072886,0.,0.629347696,2.874579617,0., 0000069P0000154 +0.609983151,2.875593079,0.,0.580936335,2.877113272,0., 0000069P0000155 +0.551889518,2.878633465,0.,0.522842701,2.880153658,0., 0000069P0000156 +0.493795884,2.881673851,0.,0.464749068,2.883194044,0., 0000069P0000157 +0.435702251,2.884714237,0.,0.406655434,2.88623443,0., 0000069P0000158 +0.377608617,2.887754623,0.,0.348561801,2.889274816,0., 0000069P0000159 +0.319514984,2.890795009,0.,0.290468167,2.892315202,0., 0000069P0000160 +0.261421351,2.893835395,0.,0.232374534,2.895355588,0., 0000069P0000161 +0.203327717,2.89687578,0.,0.1742809,2.898395973,0.,0.145234084, 0000069P0000162 +2.899916166,0.,0.116187267,2.901436359,0.,8.714045018E-02, 0000069P0000163 +2.902956552,0.,5.809363345E-02,2.904476745,0.,2.904681673E-02, 0000069P0000164 +2.905996938,0.,9.682272242E-03,2.9070104,0.,-1.398620803E-17, 0000069P0000165 +2.907517131,0.,-0.,0.639904538,0.,0.,1.; 0000069P0000166 +110,-1.398620803E-17,2.907517131,0.,-1.398620803E-17,1.6825,0.; 0000071P0000167 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600115E-03,5.91720023E-03, 0000073P0000168 +8.875800345E-03,1.183440046E-02,1.479300058E-02,1.775160069E-02, 0000073P0000169 +2.071020081E-02,2.366880092E-02,2.662740104E-02,2.958600115E-02, 0000073P0000170 +3.254460127E-02,3.550320138E-02,3.84618015E-02,4.142040161E-02, 0000073P0000171 +4.437900173E-02,4.733760184E-02,5.029620196E-02,5.325480207E-02, 0000073P0000172 +5.621340219E-02,5.91720023E-02,6.213060242E-02,6.508920253E-02, 0000073P0000173 +6.508920253E-02,6.508920253E-02,6.508920253E-02,1.,1.,1.,1.,1., 0000073P0000174 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000073P0000175 +-1.398620803E-17,1.6825,0.,9.862000386E-04,1.6825,0., 0000073P0000176 +2.958600116E-03,1.6825,0.,5.917200232E-03,1.6825,0., 0000073P0000177 +8.875800348E-03,1.6825,0.,1.183440046E-02,1.6825,0., 0000073P0000178 +1.479300058E-02,1.6825,0.,1.77516007E-02,1.6825,0., 0000073P0000179 +2.071020081E-02,1.6825,0.,2.366880093E-02,1.6825,0., 0000073P0000180 +2.662740104E-02,1.6825,0.,2.958600116E-02,1.6825,0., 0000073P0000181 +3.254460128E-02,1.6825,0.,3.550320139E-02,1.6825,0., 0000073P0000182 +3.846180151E-02,1.6825,0.,4.142040162E-02,1.6825,0., 0000073P0000183 +4.437900174E-02,1.6825,0.,4.733760186E-02,1.6825,0., 0000073P0000184 +5.029620197E-02,1.6825,0.,5.325480209E-02,1.6825,0., 0000073P0000185 +5.62134022E-02,1.6825,0.,5.917200232E-02,1.6825,0., 0000073P0000186 +6.213060243E-02,1.6825,0.,6.410300251E-02,1.6825,0., 0000073P0000187 +6.508920255E-02,1.6825,0.,0.,6.508920253E-02,0.,0.,1.; 0000073P0000188 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.022727273E-02,4.045454546E-02, 0000075P0000189 +6.068181818E-02,8.090909091E-02,0.101136364,0.121363636, 0000075P0000190 +0.141590909,0.161818182,0.182045455,0.202272727,0.2225, 0000075P0000191 +0.242727273,0.262954545,0.283181818,0.303409091,0.323636364, 0000075P0000192 +0.343863636,0.364090909,0.384318182,0.404545455,0.424772727, 0000075P0000193 +0.445,0.445,0.445,0.445,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000075P0000194 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.508920255E-02,1.6825,0., 0000075P0000195 +6.508920255E-02,1.675757576,0.,6.508920255E-02,1.662272727,0., 0000075P0000196 +6.508920255E-02,1.642045455,0.,6.508920255E-02,1.621818182,0., 0000075P0000197 +6.508920255E-02,1.601590909,0.,6.508920255E-02,1.581363636,0., 0000075P0000198 +6.508920255E-02,1.561136364,0.,6.508920255E-02,1.540909091,0., 0000075P0000199 +6.508920255E-02,1.520681818,0.,6.508920255E-02,1.500454546,0., 0000075P0000200 +6.508920255E-02,1.480227273,0.,6.508920255E-02,1.46,0., 0000075P0000201 +6.508920255E-02,1.439772727,0.,6.508920255E-02,1.419545455,0., 0000075P0000202 +6.508920255E-02,1.399318182,0.,6.508920255E-02,1.379090909,0., 0000075P0000203 +6.508920255E-02,1.358863636,0.,6.508920255E-02,1.338636364,0., 0000075P0000204 +6.508920255E-02,1.318409091,0.,6.508920255E-02,1.298181818,0., 0000075P0000205 +6.508920255E-02,1.277954546,0.,6.508920255E-02,1.257727273,0., 0000075P0000206 +6.508920255E-02,1.244242424,0.,6.508920255E-02,1.2375,0.,0., 0000075P0000207 +0.445,0.,0.,1.; 0000075P0000208 +102,8,79,81,83,85,87,89,91,93; 0000077P0000209 +110,8.75984252E-03,-2.545643679E-02,1.712598425E-02, 0000079P0000210 +8.75984252E-03,-2.559055118E-02,1.456692913E-02; 0000079P0000211 +110,8.75984252E-03,-2.559055118E-02,1.456692913E-02, 0000081P0000212 +5.698886342E-02,-2.559055118E-02,1.456692913E-02; 0000081P0000213 +110,5.698886342E-02,-2.559055118E-02,1.456692913E-02, 0000083P0000214 +5.567216088E-02,-2.427384864E-02,3.969111021E-02; 0000083P0000215 +110,5.567216088E-02,-2.427384864E-02,3.969111021E-02, 0000085P0000216 +-5.567216088E-02,-2.427384864E-02,3.969111021E-02; 0000085P0000217 +110,-5.567216088E-02,-2.427384864E-02,3.969111021E-02, 0000087P0000218 +-5.698886342E-02,-2.559055118E-02,1.456692913E-02; 0000087P0000219 +110,-5.698886342E-02,-2.559055118E-02,1.456692913E-02, 0000089P0000220 +-8.75984252E-03,-2.559055118E-02,1.456692913E-02; 0000089P0000221 +110,-8.75984252E-03,-2.559055118E-02,1.456692913E-02, 0000091P0000222 +-8.75984252E-03,-2.545643679E-02,1.712598425E-02; 0000091P0000223 +110,-8.75984252E-03,-2.545643679E-02,1.712598425E-02, 0000093P0000224 +8.75984252E-03,-2.545643679E-02,1.712598425E-02; 0000093P0000225 +144,97,1,0,103; 0000095P0000226 +120,99,101,4.76474885,6.283185307; 0000097P0000227 +110,1.811023622E-02,2.37823971E-02,3.966535433E-02, 0000099P0000228 +5.748031496E-02,2.37823971E-02,3.966535433E-02; 0000099P0000229 +110,5.567216088E-02,2.37823971E-02,4.015748031E-02, 0000101P0000230 +-5.567216088E-02,2.37823971E-02,4.015748031E-02; 0000101P0000231 +142,0,97,105,115,3; 0000103P0000232 +102,4,107,109,111,113; 0000105P0000233 +126,24,3,0,0,1,0,3.193952527,3.193952527,3.193952527, 0000107P0000234 +3.193952527,3.262972366,3.331992205,3.401012044,3.470031882, 0000107P0000235 +3.539051721,3.60807156,3.677091399,3.746111238,3.815131076, 0000107P0000236 +3.884150915,3.953170754,4.022190593,4.091210431,4.16023027, 0000107P0000237 +4.229250109,4.298269948,4.367289787,4.436309625,4.505329464, 0000107P0000238 +4.574349303,4.643369142,4.71238898,4.71238898,4.71238898, 0000107P0000239 +4.71238898,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000107P0000240 +1.,1.,1.,1.,1.,1.,1.,1.,1.,4.764748854,0.,1.,4.787755467,0.,1., 0000107P0000241 +4.833768693,0.,1.,4.902788532,0.,1.,4.971808371,0.,1., 0000107P0000242 +5.040828209,0.,1.,5.109848048,0.,1.,5.178867887,0.,1., 0000107P0000243 +5.247887726,0.,1.,5.316907564,0.,1.,5.385927403,0.,1., 0000107P0000244 +5.454947242,0.,1.,5.523967081,0.,1.,5.59298692,0.,1., 0000107P0000245 +5.662006758,0.,1.,5.731026597,0.,1.,5.800046436,0.,1., 0000107P0000246 +5.869066275,0.,1.,5.938086113,0.,1.,6.007105952,0.,1., 0000107P0000247 +6.076125791,0.,1.,6.14514563,0.,1.,6.214165469,0.,1., 0000107P0000248 +6.260178694,0.,1.,6.283185307,0.,3.193952527,4.71238898,0.,0., 0000107P0000249 +1.; 0000107P0000250 +126,24,3,0,0,1,0,0.,0.,0.,0.,0.128552081,0.257104161, 0000109P0000251 +0.385656242,0.514208322,0.642760403,0.771312483,0.899864564, 0000109P0000252 +1.028416645,1.156968725,1.285520806,1.414072886,1.542624967, 0000109P0000253 +1.671177048,1.799729128,1.928281209,2.056833289,2.18538537, 0000109P0000254 +2.31393745,2.442489531,2.571041612,2.699593692,2.828145773, 0000109P0000255 +2.828145773,2.828145773,2.828145773,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000109P0000256 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.283185307, 0000109P0000257 +0.,0.984848485,6.283185307,0.,0.954545455,6.283185307,0., 0000109P0000258 +0.909090909,6.283185307,0.,0.863636364,6.283185307,0., 0000109P0000259 +0.818181818,6.283185307,0.,0.772727273,6.283185307,0., 0000109P0000260 +0.727272727,6.283185307,0.,0.681818182,6.283185307,0., 0000109P0000261 +0.636363636,6.283185307,0.,0.590909091,6.283185307,0., 0000109P0000262 +0.545454545,6.283185307,0.,0.5,6.283185307,0.,0.454545455, 0000109P0000263 +6.283185307,0.,0.409090909,6.283185307,0.,0.363636364, 0000109P0000264 +6.283185307,0.,0.318181818,6.283185307,0.,0.272727273, 0000109P0000265 +6.283185307,0.,0.227272727,6.283185307,0.,0.181818182, 0000109P0000266 +6.283185307,0.,0.136363636,6.283185307,0.,9.090909091E-02, 0000109P0000267 +6.283185307,0.,4.545454545E-02,6.283185307,0.,1.515151515E-02, 0000109P0000268 +6.283185307,0.,2.355372984E-16,6.283185307,0.,0.,2.828145773,0., 0000109P0000269 +0.,1.; 0000109P0000270 +110,2.355372984E-16,6.283185307,0.,1.403331983E-16,4.764748854, 0000111P0000271 +0.; 0000111P0000272 +126,24,3,0,0,1,0,0.,0.,0.,0.,0.128552081,0.257104161, 0000113P0000273 +0.385656242,0.514208322,0.642760403,0.771312483,0.899864564, 0000113P0000274 +1.028416645,1.156968725,1.285520806,1.414072886,1.542624967, 0000113P0000275 +1.671177048,1.799729128,1.928281209,2.056833289,2.18538537, 0000113P0000276 +2.31393745,2.442489531,2.571041612,2.699593692,2.828145773, 0000113P0000277 +2.828145773,2.828145773,2.828145773,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000113P0000278 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.403331981E-16, 0000113P0000279 +4.76474885,0.,1.515151515E-02,4.76474885,0.,4.545454545E-02, 0000113P0000280 +4.76474885,0.,9.090909091E-02,4.76474885,0.,0.136363636, 0000113P0000281 +4.76474885,0.,0.181818182,4.76474885,0.,0.227272727,4.76474885, 0000113P0000282 +0.,0.272727273,4.76474885,0.,0.318181818,4.76474885,0., 0000113P0000283 +0.363636364,4.76474885,0.,0.409090909,4.76474885,0.,0.454545455, 0000113P0000284 +4.76474885,0.,0.5,4.76474885,0.,0.545454545,4.76474885,0., 0000113P0000285 +0.590909091,4.76474885,0.,0.636363636,4.76474885,0.,0.681818182, 0000113P0000286 +4.76474885,0.,0.727272727,4.76474885,0.,0.772727273,4.76474885, 0000113P0000287 +0.,0.818181818,4.76474885,0.,0.863636364,4.76474885,0., 0000113P0000288 +0.909090909,4.76474885,0.,0.954545455,4.76474885,0.,0.984848485, 0000113P0000289 +4.76474885,0.,1.,4.76474885,0.,0.,2.828145773,0.,0.,1.; 0000113P0000290 +102,4,117,121,123,127; 0000115P0000291 +100,1.596423671E-18,1.771432683E-19,-3.461763629E-18, 0000117P0000292 +-4.914515428E-04,-2.575588208E-05,6.829619984E-20, 0000117P0000293 +-4.921259843E-04; 0000117P0000294 +124,3.461961774E-14,2.719260413E-32,1.,-5.567216088E-02,-1., 0000119P0000295 +2.220446049E-16,3.461961774E-14,2.37823971E-02,-2.220446049E-16, 0000119P0000296 +-1.,7.714291947E-30,3.966535433E-02; 0000119P0000297 +110,-5.567216088E-02,2.37823971E-02,4.015748031E-02, 0000121P0000298 +5.567216088E-02,2.37823971E-02,4.015748031E-02; 0000121P0000299 +100,2.911125518E-18,-1.858937189E-18,-3.461763629E-18, 0000123P0000300 +-1.750090121E-18,-4.921259843E-04,4.914515428E-04, 0000123P0000301 +-2.575588208E-05; 0000123P0000302 +124,1.224646E-16,2.719260372E-32,-1.,5.567216088E-02,1., 0000125P0000303 +2.220446049E-16,1.224646E-16,2.37823971E-02,2.220446049E-16,-1., 0000125P0000304 +-8.125204719E-49,3.966535433E-02; 0000125P0000305 +110,5.567216088E-02,2.427384864E-02,3.969111021E-02, 0000127P0000306 +-5.567216088E-02,2.427384864E-02,3.969111021E-02; 0000127P0000307 +144,131,1,0,137; 0000129P0000308 +120,133,135,4.764748849,6.283185308; 0000131P0000309 +110,-5.567216088E-02,-6.496062992E-02,3.966535433E-02, 0000133P0000310 +-5.567216088E-02,-2.559055118E-02,3.966535433E-02; 0000133P0000311 +110,-5.567216088E-02,2.37823971E-02,4.015748031E-02, 0000135P0000312 +-5.567216088E-02,-2.37823971E-02,4.015748031E-02; 0000135P0000313 +142,0,131,139,149,3; 0000137P0000314 +102,4,141,143,145,147; 0000139P0000315 +110,1.,4.764748853,0.,1.,6.283185306,0.; 0000141P0000316 +126,24,3,0,0,1,0,0.,0.,0.,0.,5.491571694E-02,0.109831434, 0000143P0000317 +0.164747151,0.219662868,0.274578585,0.329494302,0.384410019, 0000143P0000318 +0.439325736,0.494241452,0.549157169,0.604072886,0.658988603, 0000143P0000319 +0.71390432,0.768820037,0.823735754,0.878651471,0.933567188, 0000143P0000320 +0.988482905,1.043398622,1.098314339,1.153230056,1.208145773, 0000143P0000321 +1.208145773,1.208145773,1.208145773,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000143P0000322 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.283185307, 0000143P0000323 +0.,0.984848485,6.283185307,0.,0.954545455,6.283185306,0., 0000143P0000324 +0.909090909,6.283185306,0.,0.863636364,6.283185306,0., 0000143P0000325 +0.818181818,6.283185306,0.,0.772727273,6.283185306,0., 0000143P0000326 +0.727272727,6.283185306,0.,0.681818182,6.283185306,0., 0000143P0000327 +0.636363636,6.283185306,0.,0.590909091,6.283185306,0., 0000143P0000328 +0.545454545,6.283185306,0.,0.5,6.283185306,0.,0.454545455, 0000143P0000329 +6.283185306,0.,0.409090909,6.283185306,0.,0.363636364, 0000143P0000330 +6.283185306,0.,0.318181818,6.283185306,0.,0.272727273, 0000143P0000331 +6.283185306,0.,0.227272727,6.283185306,0.,0.181818182, 0000143P0000332 +6.283185306,0.,0.136363636,6.283185306,0.,9.090909091E-02, 0000143P0000333 +6.283185306,0.,4.545454545E-02,6.283185306,0.,1.515151515E-02, 0000143P0000334 +6.283185307,0.,4.815643315E-16,6.283185307,0.,0.,1.208145773,0., 0000143P0000335 +0.,1.; 0000143P0000336 +126,24,3,0,0,1,0,3.141592654,3.141592654,3.141592654, 0000145P0000337 +3.141592654,3.210612492,3.279632331,3.34865217,3.417672009, 0000145P0000338 +3.486691847,3.555711686,3.624731525,3.693751364,3.762771203, 0000145P0000339 +3.831791041,3.90081088,3.969830719,4.038850558,4.107870396, 0000145P0000340 +4.176890235,4.245910074,4.314929913,4.383949752,4.45296959, 0000145P0000341 +4.521989429,4.591009268,4.660029107,4.660029107,4.660029107, 0000145P0000342 +4.660029107,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000145P0000343 +1.,1.,1.,1.,1.,1.,1.,1.,5.734591219E-16,6.283185307,0., 0000145P0000344 +4.577665538E-16,6.260178694,0.,5.043463708E-16,6.214165467,0., 0000145P0000345 +9.281117652E-16,6.145145629,0.,2.051371094E-16,6.07612579,0., 0000145P0000346 +4.070145338E-16,6.007105951,0.,2.616986555E-16,5.938086112,0., 0000145P0000347 +5.803039074E-16,5.869066274,0.,4.931554255E-16,5.800046435,0., 0000145P0000348 +4.623632645E-16,5.731026596,0.,6.118995539E-16,5.662006757,0., 0000145P0000349 +5.351344624E-16,5.592986919,0.,6.318777025E-16,5.52396708,0., 0000145P0000350 +2.608889969E-16,5.454947241,0.,4.845822587E-16,5.385927402,0., 0000145P0000351 +4.513858224E-16,5.316907564,0.,2.996974691E-16,5.247887725,0., 0000145P0000352 +3.2749774E-16,5.178867886,0.,3.072041729E-16,5.109848047,0., 0000145P0000353 +2.997973337E-16,5.040828208,0.,2.88937421E-16,4.97180837,0., 0000145P0000354 +2.790030744E-16,4.902788531,0.,2.688195369E-16,4.833768692,0., 0000145P0000355 +2.620779768E-16,4.787755466,0.,2.587012637E-16,4.764748853,0., 0000145P0000356 +3.141592654,4.660029107,0.,0.,1.; 0000145P0000357 +126,24,3,0,0,1,0,0.,0.,0.,0.,5.491571694E-02,0.109831434, 0000147P0000358 +0.164747151,0.219662868,0.274578585,0.329494302,0.384410019, 0000147P0000359 +0.439325736,0.494241452,0.549157169,0.604072886,0.658988603, 0000147P0000360 +0.71390432,0.768820037,0.823735754,0.878651471,0.933567188, 0000147P0000361 +0.988482905,1.043398622,1.098314339,1.153230056,1.208145773, 0000147P0000362 +1.208145773,1.208145773,1.208145773,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000147P0000363 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,2.587012631E-16, 0000147P0000364 +4.764748849,0.,1.515151515E-02,4.764748849,0.,4.545454545E-02, 0000147P0000365 +4.764748849,0.,9.090909091E-02,4.764748849,0.,0.136363636, 0000147P0000366 +4.764748849,0.,0.181818182,4.764748849,0.,0.227272727, 0000147P0000367 +4.764748849,0.,0.272727273,4.764748849,0.,0.318181818, 0000147P0000368 +4.764748849,0.,0.363636364,4.764748849,0.,0.409090909, 0000147P0000369 +4.764748849,0.,0.454545455,4.764748849,0.,0.5,4.764748849,0., 0000147P0000370 +0.545454545,4.764748849,0.,0.590909091,4.764748849,0., 0000147P0000371 +0.636363636,4.764748849,0.,0.681818182,4.764748849,0., 0000147P0000372 +0.727272727,4.764748849,0.,0.772727273,4.764748849,0., 0000147P0000373 +0.818181818,4.764748849,0.,0.863636364,4.764748849,0., 0000147P0000374 +0.909090909,4.764748849,0.,0.954545455,4.764748849,0., 0000147P0000375 +0.984848485,4.764748849,0.,1.,4.764748849,0.,0.,1.208145773,0., 0000147P0000376 +0.,1.; 0000147P0000377 +102,4,151,155,157,161; 0000149P0000378 +100,1.991261077E-18,2.911125518E-18,3.461763629E-18, 0000151P0000379 +-4.914515428E-04,-2.575588208E-05,2.911125518E-18, 0000151P0000380 +-4.921259843E-04; 0000151P0000381 +124,1.,2.719260372E-32,1.224646E-16,-5.567216088E-02, 0000153P0000382 +-1.224646E-16,2.220446049E-16,1.,-2.37823971E-02,0.,-1., 0000153P0000383 +2.220446049E-16,3.966535433E-02; 0000153P0000384 +110,-5.567216088E-02,-2.37823971E-02,4.015748031E-02, 0000155P0000385 +-5.567216088E-02,2.37823971E-02,4.015748031E-02; 0000155P0000386 +100,-1.645511565E-18,1.754358633E-18,3.760559504E-18, 0000157P0000387 +-4.921259843E-04,3.760559504E-18,-2.575588208E-05, 0000157P0000388 +-4.914515428E-04; 0000157P0000389 +124,1.089403686E-30,1.,-5.770296252E-16,-5.567216088E-02, 0000159P0000390 +8.895661985E-15,-5.770296252E-16,-1.,2.37823971E-02,-1., 0000159P0000391 +-4.043656815E-30,-8.895661985E-15,3.966535433E-02; 0000159P0000392 +110,-5.616361242E-02,2.37823971E-02,3.969111021E-02, 0000161P0000393 +-5.616361242E-02,-2.37823971E-02,3.969111021E-02; 0000161P0000394 +144,165,1,0,171; 0000163P0000395 +120,167,169,4.764748858,6.283185307; 0000165P0000396 +110,1.811023622E-02,-2.454581751E-02,4.035433071E-03, 0000167P0000397 +5.748031496E-02,-2.454581751E-02,4.035433071E-03; 0000167P0000398 +110,5.643558129E-02,-2.454581751E-02,3.543307087E-03, 0000169P0000399 +-5.643558129E-02,-2.454581751E-02,3.543307087E-03; 0000169P0000400 +142,0,165,173,183,3; 0000171P0000401 +102,4,175,177,179,181; 0000173P0000402 +110,1.74263338E-16,6.283185307,0.,8.034709153E-17,4.764748858, 0000175P0000403 +0.; 0000175P0000404 +110,8.034709155E-17,4.764748858,0.,1.,4.764748858,0.; 0000177P0000405 +110,1.,4.764748858,0.,1.,6.283185307,0.; 0000179P0000406 +126,24,3,0,0,1,0,0.,0.,0.,0.,0.130314888,0.260629775, 0000181P0000407 +0.390944663,0.521259551,0.651574439,0.781889326,0.912204214, 0000181P0000408 +1.042519102,1.172833989,1.303148877,1.433463765,1.563778652, 0000181P0000409 +1.69409354,1.824408428,1.954723316,2.085038203,2.215353091, 0000181P0000410 +2.345667979,2.475982866,2.606297754,2.736612642,2.86692753, 0000181P0000411 +2.86692753,2.86692753,2.86692753,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000181P0000412 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.283185307,0., 0000181P0000413 +0.984848485,6.283185307,0.,0.954545455,6.283185307,0., 0000181P0000414 +0.909090909,6.283185307,0.,0.863636364,6.283185307,0., 0000181P0000415 +0.818181818,6.283185307,0.,0.772727273,6.283185307,0., 0000181P0000416 +0.727272727,6.283185307,0.,0.681818182,6.283185307,0., 0000181P0000417 +0.636363636,6.283185307,0.,0.590909091,6.283185307,0., 0000181P0000418 +0.545454545,6.283185307,0.,0.5,6.283185307,0.,0.454545455, 0000181P0000419 +6.283185307,0.,0.409090909,6.283185307,0.,0.363636364, 0000181P0000420 +6.283185307,0.,0.318181818,6.283185307,0.,0.272727273, 0000181P0000421 +6.283185307,0.,0.227272727,6.283185307,0.,0.181818182, 0000181P0000422 +6.283185307,0.,0.136363636,6.283185307,0.,9.090909091E-02, 0000181P0000423 +6.283185307,0.,4.545454545E-02,6.283185307,0.,1.515151515E-02, 0000181P0000424 +6.283185307,0.,1.74263338E-16,6.283185307,0.,0.,2.86692753,0., 0000181P0000425 +0.,1.; 0000181P0000426 +102,4,185,189,191,195; 0000183P0000427 +100,-3.005032793E-18,-9.348042353E-19,1.333910153E-20, 0000185P0000428 +-1.043651304E-18,4.921259843E-04,-4.914515427E-04, 0000185P0000429 +2.575588405E-05; 0000185P0000430 +124,1.224646E-16,2.719260372E-32,-1.,5.643558129E-02,1., 0000187P0000431 +2.220446049E-16,1.224646E-16,-2.454581751E-02,2.220446049E-16, 0000187P0000432 +-1.,-8.125204719E-49,4.035433071E-03; 0000187P0000433 +110,5.643558129E-02,-2.503726905E-02,4.009677187E-03, 0000189P0000434 +-5.643558129E-02,-2.503726905E-02,4.009677187E-03; 0000189P0000435 +100,1.037248535E-18,-1.476905322E-18,1.333910153E-20, 0000191P0000436 +4.914515427E-04,2.575588405E-05,-1.368058253E-18, 0000191P0000437 +4.921259843E-04; 0000191P0000438 +124,-1.749350577E-14,2.719260402E-32,1.,-5.643558129E-02,-1., 0000193P0000439 +2.220446049E-16,-1.749350577E-14,-2.454581751E-02, 0000193P0000440 +-2.220446049E-16,-1.,-3.857145973E-30,4.035433071E-03; 0000193P0000441 +110,-5.643558129E-02,-2.454581751E-02,3.543307087E-03, 0000195P0000442 +5.643558129E-02,-2.454581751E-02,3.543307087E-03; 0000195P0000443 +144,199,1,0,207; 0000197P0000444 +120,201,203,4.712339181,6.283185307; 0000199P0000445 +110,5.567216088E-02,-2.37823971E-02,7.903543307E-02, 0000201P0000446 +5.567216088E-02,-2.37823971E-02,3.966535433E-02; 0000201P0000447 +100,2.676357331E-18,0.,3.756290991E-19,-2.558804393E-05, 0000203P0000448 +4.914603101E-04,-4.921259843E-04,3.756290991E-19; 0000203P0000449 +124,-5.528825241E-21,-2.489943572E-05,-1.,5.567216088E-02, 0000205P0000450 +1.376646287E-25,-1.,2.489943572E-05,-2.37823971E-02,-1., 0000205P0000451 +-4.394471984E-42,5.528825243E-21,3.966535433E-02; 0000205P0000452 +142,0,199,209,217,3; 0000207P0000453 +102,3,211,213,215; 0000209P0000454 +126,24,3,0,0,1,0,5.235987755E-02,5.235987755E-02, 0000211P0000455 +5.235987755E-02,5.235987755E-02,0.121379716,0.190399555, 0000211P0000456 +0.259419393,0.328439232,0.397459071,0.466478909,0.535498748, 0000211P0000457 +0.604518586,0.673538425,0.742558264,0.811578102,0.880597941, 0000211P0000458 +0.949617779,1.018637618,1.087657457,1.156677295,1.225697134, 0000211P0000459 +1.294716972,1.363736811,1.43275665,1.501776488,1.570796327, 0000211P0000460 +1.570796327,1.570796327,1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000211P0000461 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.623156204, 0000211P0000462 +4.712364081,0.,1.646162817,4.712364081,0.,1.692176043, 0000211P0000463 +4.712364081,0.,1.761195882,4.712364081,0.,1.83021572, 0000211P0000464 +4.712364081,0.,1.899235559,4.712364081,0.,1.968255397, 0000211P0000465 +4.712364081,0.,2.037275236,4.712364081,0.,2.106295075, 0000211P0000466 +4.712364081,0.,2.175314913,4.712364081,0.,2.244334752, 0000211P0000467 +4.712364081,0.,2.31335459,4.712364081,0.,2.382374429, 0000211P0000468 +4.712364081,0.,2.451394268,4.712364081,0.,2.520414106, 0000211P0000469 +4.712364081,0.,2.589433945,4.712364081,0.,2.658453783, 0000211P0000470 +4.712364081,0.,2.727473622,4.712364081,0.,2.796493461, 0000211P0000471 +4.712364081,0.,2.865513299,4.712364081,0.,2.934533138, 0000211P0000472 +4.712364081,0.,3.003552976,4.712364081,0.,3.072572815, 0000211P0000473 +4.712364081,0.,3.118586041,4.712364081,0.,3.141592654, 0000211P0000474 +4.712364081,0.,5.235987755E-02,1.570796327,0.,0.,1.; 0000211P0000475 +126,24,3,0,0,1,0,1.570796327,1.570796327,1.570796327, 0000213P0000476 +1.570796327,1.639816165,1.708836004,1.777855843,1.846875681, 0000213P0000477 +1.91589552,1.984915358,2.053935197,2.122955036,2.191974874, 0000213P0000478 +2.260994713,2.330014551,2.39903439,2.468054229,2.537074067, 0000213P0000479 +2.606093906,2.675113744,2.744133583,2.813153422,2.88217326, 0000213P0000480 +2.951193099,3.020212937,3.089232776,3.089232776,3.089232776, 0000213P0000481 +3.089232776,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000213P0000482 +1.,1.,1.,1.,1.,1.,1.,1.,3.141592654,6.283160408,0.,3.118586041, 0000213P0000483 +6.283160408,0.,3.072572815,6.283160408,0.,3.003552976, 0000213P0000484 +6.283160408,0.,2.934533138,6.283160408,0.,2.865513299, 0000213P0000485 +6.283160408,0.,2.796493461,6.283160408,0.,2.727473622, 0000213P0000486 +6.283160408,0.,2.658453783,6.283160408,0.,2.589433945, 0000213P0000487 +6.283160408,0.,2.520414106,6.283160408,0.,2.451394268, 0000213P0000488 +6.283160408,0.,2.382374429,6.283160408,0.,2.31335459, 0000213P0000489 +6.283160408,0.,2.244334752,6.283160408,0.,2.175314913, 0000213P0000490 +6.283160408,0.,2.106295075,6.283160408,0.,2.037275236, 0000213P0000491 +6.283160408,0.,1.968255397,6.283160408,0.,1.899235559, 0000213P0000492 +6.283160408,0.,1.83021572,6.283160408,0.,1.761195882, 0000213P0000493 +6.283160408,0.,1.692176043,6.283160408,0.,1.646162817, 0000213P0000494 +6.283160408,0.,1.623156204,6.283160408,0.,1.570796327, 0000213P0000495 +3.089232776,0.,0.,1.; 0000213P0000496 +126,24,3,1,0,1,0,4.715128036,4.715128036,4.715128036, 0000215P0000497 +4.715128036,4.786403367,4.857678697,4.928954028,5.000229358, 0000215P0000498 +5.071504689,5.142780019,5.21405535,5.28533068,5.356606011, 0000215P0000499 +5.427881341,5.499156672,5.570432002,5.641707333,5.712982663, 0000215P0000500 +5.784257994,5.855533324,5.926808655,5.998083985,6.069359316, 0000215P0000501 +6.140634646,6.211909977,6.283185307,6.283185307,6.283185307, 0000215P0000502 +6.283185307,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000215P0000503 +1.,1.,1.,1.,1.,1.,1.,1.,1.623156204,6.283160408,0.,1.624398046, 0000215P0000504 +6.259401922,0.,1.626792771,6.211875496,0.,1.630101213, 0000215P0000505 +6.140558382,0.,1.633108654,6.069214461,0.,1.635799792, 0000215P0000506 +5.997845157,0.,1.638160785,5.926452356,0.,1.640179507, 0000215P0000507 +5.855038438,0.,1.641845569,5.783606214,0.,1.643150389, 0000215P0000508 +5.712158873,0.,1.644087241,5.640699912,0.,1.644651294, 0000215P0000509 +5.569233069,0.,1.644839635,5.497762244,0.,1.644651294, 0000215P0000510 +5.426291419,0.,1.644087241,5.354824576,0.,1.643150389, 0000215P0000511 +5.283365616,0.,1.641845569,5.211918274,0.,1.640179507, 0000215P0000512 +5.140486051,0.,1.638160785,5.069072133,0.,1.635799792, 0000215P0000513 +4.997679331,0.,1.633108654,4.926310027,0.,1.630101213, 0000215P0000514 +4.854966107,0.,1.626792771,4.783648993,0.,1.624398046, 0000215P0000515 +4.736122567,0.,1.623156204,4.712364081,0.,4.715128036, 0000215P0000516 +6.283185307,-0.,-0.,1.; 0000215P0000517 +102,3,219,223,227; 0000217P0000518 +100,1.858937189E-18,2.911125518E-18,-3.461763629E-18, 0000219P0000519 +4.914515427E-04,2.575588398E-05,2.911125518E-18,4.921259843E-04; 0000219P0000520 +124,1.,-2.719260372E-32,-1.224646E-16,5.567216088E-02, 0000221P0000521 +-1.224646E-16,-2.220446049E-16,-1.,-2.37823971E-02,0.,1., 0000221P0000522 +-2.220446049E-16,3.966535433E-02; 0000221P0000523 +100,6.573509235E-19,1.410743378E-18,-3.461763629E-18, 0000223P0000524 +1.519590446E-18,4.921259843E-04,-4.914515427E-04, 0000223P0000525 +2.575588398E-05; 0000223P0000526 +124,-1.724857657E-14,-2.719260343E-32,1.,5.567216088E-02,1., 0000225P0000527 +-2.220446049E-16,1.724857657E-14,-2.37823971E-02, 0000225P0000528 +2.220446049E-16,1.,3.857145973E-30,3.966535433E-02; 0000225P0000529 +100,-1.679659665E-18,-2.275117157E-18,-4.908789364E-19, 0000227P0000530 +1.347958817E-06,-4.921241382E-04,4.921259843E-04, 0000227P0000531 +1.094873454E-18; 0000227P0000532 +124,0.998629535,2.735308799E-03,-5.226442765E-02, 0000229P0000533 +5.567216088E-02,-2.286283049E-12,0.998633281,5.226442765E-02, 0000229P0000534 +-2.37823971E-02,5.23359562E-02,-5.219280107E-02,0.997264689, 0000229P0000535 +3.966535433E-02; 0000229P0000536 +144,233,1,0,239; 0000231P0000537 +120,235,237,4.712187835,6.283185302; 0000233P0000538 +110,-5.873383743E-02,2.684407365E-02,4.788877269E-02, 0000235P0000539 +-5.66761828E-02,2.478641902E-02,8.626383373E-03; 0000235P0000540 +110,-5.64348588E-02,2.50372705E-02,4.009714975E-03, 0000237P0000541 +-5.698870719E-02,2.559111889E-02,1.457777176E-02; 0000237P0000542 +142,0,233,241,251,3; 0000239P0000543 +102,4,243,245,247,249; 0000241P0000544 +126,24,3,1,0,1,0,5.499156672,5.499156672,5.499156672, 0000243P0000545 +5.499156672,5.570432002,5.641707333,5.712982664,5.784257994, 0000243P0000546 +5.855533324,5.926808655,5.998083986,6.069359316,6.140634646, 0000243P0000547 +6.211909977,6.283185308,6.354460638,6.425735968,6.497011299, 0000243P0000548 +6.56828663,6.63956196,6.71083729,6.782112621,6.853387951, 0000243P0000549 +6.924663282,6.995938612,7.067213943,7.067213943,7.067213943, 0000243P0000550 +7.067213943,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000243P0000551 +1.,1.,1.,1.,1.,1.,1.,1.,0.998977594,4.713657935,0.,0.999029598, 0000243P0000552 +4.735054524,0.,0.999131654,4.77842135,0.,0.999277192,4.84509917, 0000243P0000553 +0.,0.999413506,4.913318479,0.,0.999538885,4.982967756,0., 0000243P0000554 +0.999651651,5.053918783,0.,0.999750205,5.12602491,0., 0000243P0000555 +0.999833077,5.19912281,0.,0.999898977,5.273034012,0., 0000243P0000556 +0.999946845,5.347567184,0.,0.999975891,5.422520859,0., 0000243P0000557 +0.999985628,5.497686573,0.,0.999975891,5.572852287,0., 0000243P0000558 +0.999946845,5.647805963,0.,0.999898977,5.722339135,0., 0000243P0000559 +0.999833077,5.796250335,0.,0.999750205,5.869348235,0., 0000243P0000560 +0.999651651,5.941454361,0.,0.999538885,6.012405388,0., 0000243P0000561 +0.999413506,6.082054663,0.,0.999277192,6.15027397,0., 0000243P0000562 +0.999131654,6.216951789,0.,0.999029598,6.260318613,0., 0000243P0000563 +0.998977594,6.281715201,0.,5.499156672,7.067213943,0.,0.,1.; 0000243P0000564 +126,24,3,0,0,1,0,0.,0.,0.,0.,1.222225893E-02,2.444451785E-02, 0000245P0000565 +3.666677678E-02,4.888903571E-02,6.111129463E-02,7.333355356E-02, 0000245P0000566 +8.555581249E-02,9.777807142E-02,0.11000033,0.122222589, 0000245P0000567 +0.134444848,0.146667107,0.158889366,0.171111625,0.183333884, 0000245P0000568 +0.195556143,0.207778402,0.220000661,0.23222292,0.244445179, 0000245P0000569 +0.256667437,0.268889696,0.268889696,0.268889696,0.268889696,1., 0000245P0000570 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000245P0000571 +1.,1.,1.,0.998977594,6.281715201,0.,0.98384157,6.281715201,0., 0000245P0000572 +0.953569522,6.281715201,0.,0.908161449,6.281715201,0., 0000245P0000573 +0.862753377,6.281715201,0.,0.817345305,6.281715201,0., 0000245P0000574 +0.771937232,6.2817152,0.,0.72652916,6.2817152,0.,0.681121087, 0000245P0000575 +6.2817152,0.,0.635713015,6.2817152,0.,0.590304942,6.2817152,0., 0000245P0000576 +0.54489687,6.281715199,0.,0.499488797,6.281715199,0., 0000245P0000577 +0.454080725,6.281715199,0.,0.408672652,6.281715199,0., 0000245P0000578 +0.36326458,6.281715199,0.,0.317856507,6.281715198,0., 0000245P0000579 +0.272448435,6.281715198,0.,0.227040362,6.281715198,0., 0000245P0000580 +0.18163229,6.281715198,0.,0.136224217,6.281715198,0., 0000245P0000581 +9.081614495E-02,6.281715197,0.,4.540807247E-02,6.281715197,0., 0000245P0000582 +1.513602416E-02,6.281715197,0.,6.17735733E-16,6.281715197,0.,0., 0000245P0000583 +0.268889696,0.,0.,1.; 0000245P0000584 +126,24,3,0,0,1,0,4.715128036,4.715128036,4.715128036, 0000247P0000585 +4.715128036,4.786403367,4.857678697,4.928954028,5.000229358, 0000247P0000586 +5.071504689,5.142780019,5.21405535,5.28533068,5.356606011, 0000247P0000587 +5.427881341,5.499156672,5.570432002,5.641707333,5.712982663, 0000247P0000588 +5.784257994,5.855533324,5.926808655,5.998083985,6.069359316, 0000247P0000589 +6.140634646,6.211909977,6.283185307,6.283185307,6.283185307, 0000247P0000590 +6.283185307,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000247P0000591 +1.,1.,1.,1.,1.,1.,1.,1.,8.226889563E-12,6.281715197,0., 0000247P0000592 +8.181827418E-12,6.257956754,0.,8.094466463E-12,6.210439867,0., 0000247P0000593 +7.973912296E-12,6.139164536,0.,7.867401867E-12,6.067889206,0., 0000247P0000594 +7.773734411E-12,5.996613875,0.,7.692937458E-12,5.925338544,0., 0000247P0000595 +7.625348653E-12,5.854063214,0.,7.573979459E-12,5.782787883,0., 0000247P0000596 +7.535580003E-12,5.711512553,0.,7.512430181E-12,5.640237222,0., 0000247P0000597 +7.50384581E-12,5.568961892,0.,7.510757976E-12,5.497686561,0., 0000247P0000598 +7.531293144E-12,5.426411231,0.,7.567812499E-12,5.3551359,0., 0000247P0000599 +7.617923324E-12,5.28386057,0.,7.682774072E-12,5.212585239,0., 0000247P0000600 +7.761442973E-12,5.141309909,0.,7.853943E-12,5.070034578,0., 0000247P0000601 +7.958784654E-12,4.998759248,0.,8.076903981E-12,4.927483917,0., 0000247P0000602 +8.206568814E-12,4.856208587,0.,8.347704926E-12,4.784933256,0., 0000247P0000603 +8.448821032E-12,4.737416369,0.,8.501020792E-12,4.713657926,0., 0000247P0000604 +4.715128036,6.283185307,0.,0.,1.; 0000247P0000605 +126,24,3,0,0,1,0,1.776997653E-12,1.776997653E-12, 0000249P0000606 +1.776997653E-12,1.776997653E-12,1.222225893E-02,2.444451786E-02, 0000249P0000607 +3.666677678E-02,4.888903571E-02,6.111129464E-02,7.333355356E-02, 0000249P0000608 +8.555581249E-02,9.777807142E-02,0.11000033,0.122222589, 0000249P0000609 +0.134444848,0.146667107,0.158889366,0.171111625,0.183333884, 0000249P0000610 +0.195556143,0.207778402,0.220000661,0.23222292,0.244445179, 0000249P0000611 +0.256667437,0.268889696,0.268889696,0.268889696,0.268889696,1., 0000249P0000612 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000249P0000613 +1.,1.,1.,9.171946985E-18,4.713657926,0.,1.513602416E-02, 0000249P0000614 +4.713657926,0.,4.540807247E-02,4.713657926,0.,9.081614495E-02, 0000249P0000615 +4.713657926,0.,0.136224217,4.713657927,0.,0.18163229, 0000249P0000616 +4.713657927,0.,0.227040362,4.713657928,0.,0.272448435, 0000249P0000617 +4.713657928,0.,0.317856507,4.713657929,0.,0.36326458, 0000249P0000618 +4.713657929,0.,0.408672652,4.713657929,0.,0.454080725, 0000249P0000619 +4.71365793,0.,0.499488797,4.71365793,0.,0.54489687,4.713657931, 0000249P0000620 +0.,0.590304942,4.713657931,0.,0.635713015,4.713657932,0., 0000249P0000621 +0.681121087,4.713657932,0.,0.72652916,4.713657932,0., 0000249P0000622 +0.771937232,4.713657933,0.,0.817345305,4.713657933,0., 0000249P0000623 +0.862753377,4.713657934,0.,0.908161449,4.713657934,0., 0000249P0000624 +0.953569522,4.713657935,0.,0.98384157,4.713657935,0., 0000249P0000625 +0.998977594,4.713657935,0.,1.776997653E-12,0.268889696,0.,0.,1.; 0000249P0000626 +102,4,253,255,257,261; 0000251P0000627 +126,3,3,1,0,0,0,5.499156672,5.499156672,5.499156672,5.499156672, 0000253P0000628 +7.067213943,7.067213943,7.067213943,7.067213943,1.,0.805383013, 0000253P0000629 +0.805383013,1.,-5.748031496E-02,2.509909964E-02,1.456692913E-02, 0000253P0000630 +-5.748031496E-02,2.538714836E-02,1.456692913E-02, 0000253P0000631 +-5.727691213E-02,2.559055118E-02,1.456692913E-02, 0000253P0000632 +-5.698886342E-02,2.559055118E-02,1.456692913E-02,5.499156672, 0000253P0000633 +7.067213943,-0.,-0.,1.; 0000253P0000634 +110,-5.698886342E-02,2.559055118E-02,1.456692913E-02, 0000255P0000635 +-5.643558129E-02,2.503726905E-02,4.009677187E-03; 0000255P0000636 +100,-2.913259774E-19,-2.894051468E-18,1.666854127E-18, 0000257P0000637 +1.347958821E-06,-4.921241382E-04,4.921259843E-04, 0000257P0000638 +3.480971936E-18; 0000257P0000639 +124,-0.998629535,-2.735308799E-03,-5.226442765E-02, 0000259P0000640 +-5.643558129E-02,2.286283049E-12,-0.998633281,5.226442765E-02, 0000259P0000641 +2.454581751E-02,-5.23359562E-02,5.219280107E-02,0.997264689, 0000259P0000642 +4.035433071E-03; 0000259P0000643 +110,-5.692703283E-02,2.454581751E-02,4.009677187E-03, 0000261P0000644 +-5.748031496E-02,2.509909964E-02,1.456692913E-02; 0000261P0000645 +144,265,1,0,271; 0000263P0000646 +120,267,269,4.712187848,6.283185302; 0000265P0000647 +110,5.904786048E-02,-2.71580967E-02,5.388068951E-02, 0000267P0000648 +5.699020585E-02,-2.510044207E-02,1.461830019E-02; 0000267P0000649 +110,5.64348588E-02,-2.50372705E-02,4.009714975E-03, 0000269P0000650 +5.698870719E-02,-2.559111888E-02,1.457777176E-02; 0000269P0000651 +142,0,265,273,283,3; 0000271P0000652 +102,4,275,277,279,281; 0000273P0000653 +126,24,3,1,0,1,0,5.499156672,5.499156672,5.499156672, 0000275P0000654 +5.499156672,5.570432002,5.641707333,5.712982664,5.784257994, 0000275P0000655 +5.855533324,5.926808655,5.998083986,6.069359316,6.140634646, 0000275P0000656 +6.211909977,6.283185308,6.354460638,6.425735968,6.497011299, 0000275P0000657 +6.56828663,6.63956196,6.71083729,6.782112621,6.853387951, 0000275P0000658 +6.924663282,6.995938612,7.067213943,7.067213943,7.067213943, 0000275P0000659 +7.067213943,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000275P0000660 +1.,1.,1.,1.,1.,1.,1.,1.,0.998977594,4.713657949,0.,0.999029598, 0000275P0000661 +4.735054538,0.,0.999131654,4.778421363,0.,0.999277192, 0000275P0000662 +4.845099183,0.,0.999413506,4.913318491,0.,0.999538885, 0000275P0000663 +4.982967767,0.,0.999651651,5.053918794,0.,0.999750205, 0000275P0000664 +5.12602492,0.,0.999833077,5.19912282,0.,0.999898977,5.273034021, 0000275P0000665 +0.,0.999946845,5.347567192,0.,0.999975891,5.422520867,0., 0000275P0000666 +0.999985628,5.49768658,0.,0.999975891,5.572852293,0., 0000275P0000667 +0.999946845,5.647805968,0.,0.999898977,5.722339139,0., 0000275P0000668 +0.999833077,5.796250339,0.,0.999750205,5.869348238,0., 0000275P0000669 +0.999651651,5.941454364,0.,0.999538885,6.01240539,0., 0000275P0000670 +0.999413506,6.082054665,0.,0.999277192,6.150273971,0., 0000275P0000671 +0.999131654,6.216951789,0.,0.999029598,6.260318613,0., 0000275P0000672 +0.998977594,6.281715201,0.,5.499156672,7.067213943,0.,0.,1.; 0000275P0000673 +126,24,3,0,0,1,0,0.,0.,0.,0.,1.222225893E-02,2.444451785E-02, 0000277P0000674 +3.666677678E-02,4.888903571E-02,6.111129463E-02,7.333355356E-02, 0000277P0000675 +8.555581249E-02,9.777807142E-02,0.11000033,0.122222589, 0000277P0000676 +0.134444848,0.146667107,0.158889366,0.171111625,0.183333884, 0000277P0000677 +0.195556143,0.207778402,0.220000661,0.23222292,0.244445179, 0000277P0000678 +0.256667437,0.268889696,0.268889696,0.268889696,0.268889696,1., 0000277P0000679 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000277P0000680 +1.,1.,1.,0.998977594,6.281715201,0.,0.98384157,6.281715201,0., 0000277P0000681 +0.953569522,6.281715201,0.,0.908161449,6.281715201,0., 0000277P0000682 +0.862753377,6.281715201,0.,0.817345305,6.281715201,0., 0000277P0000683 +0.771937232,6.281715201,0.,0.72652916,6.2817152,0.,0.681121087, 0000277P0000684 +6.2817152,0.,0.635713015,6.2817152,0.,0.590304942,6.2817152,0., 0000277P0000685 +0.54489687,6.2817152,0.,0.499488797,6.2817152,0.,0.454080725, 0000277P0000686 +6.281715199,0.,0.408672652,6.281715199,0.,0.36326458, 0000277P0000687 +6.281715199,0.,0.317856507,6.281715199,0.,0.272448435, 0000277P0000688 +6.281715199,0.,0.227040362,6.281715199,0.,0.18163229, 0000277P0000689 +6.281715198,0.,0.136224217,6.281715198,0.,9.081614495E-02, 0000277P0000690 +6.281715198,0.,4.540807247E-02,6.281715198,0.,1.513602416E-02, 0000277P0000691 +6.281715198,0.,7.724117876E-16,6.281715198,0.,0.,0.268889696,0., 0000277P0000692 +0.,1.; 0000277P0000693 +126,24,3,0,0,1,0,1.573535383,1.573535383,1.573535383, 0000279P0000694 +1.573535383,1.644810713,1.716086044,1.787361374,1.858636705, 0000279P0000695 +1.929912035,2.001187366,2.072462696,2.143738027,2.215013357, 0000279P0000696 +2.286288688,2.357564018,2.428839349,2.500114679,2.57139001, 0000279P0000697 +2.64266534,2.713940671,2.785216001,2.856491332,2.927766662, 0000279P0000698 +2.999041993,3.070317323,3.141592654,3.141592654,3.141592654, 0000279P0000699 +3.141592654,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000279P0000700 +1.,1.,1.,1.,1.,1.,1.,1.,8.227063951E-12,6.281715198,0., 0000279P0000701 +8.172390355E-12,6.257956754,0.,8.067912891E-12,6.210439868,0., 0000279P0000702 +7.925694435E-12,6.139164538,0.,7.796904383E-12,6.067889208,0., 0000279P0000703 +7.683826038E-12,5.996613878,0.,7.586975689E-12,5.925338548,0., 0000279P0000704 +7.50495522E-12,5.854063218,0.,7.441193738E-12,5.782787888,0., 0000279P0000705 +7.394501938E-12,5.711512558,0.,7.364194145E-12,5.640237228,0., 0000279P0000706 +7.35145836E-12,5.568961898,0.,7.356624513E-12,5.497686569,0., 0000279P0000707 +7.379344422E-12,5.426411239,0.,7.419032557E-12,5.355135909,0., 0000279P0000708 +7.476652014E-12,5.283860579,0.,7.549886558E-12,5.212585249,0., 0000279P0000709 +7.640640866E-12,5.141309919,0.,7.747260252E-12,5.070034589,0., 0000279P0000710 +7.869028553E-12,4.998759259,0.,8.006140016E-12,4.92748393,0., 0000279P0000711 +8.156869235E-12,4.8562086,0.,8.321489656E-12,4.78493327,0., 0000279P0000712 +8.439526214E-12,4.737416383,0.,8.500456489E-12,4.71365794,0., 0000279P0000713 +1.573535383,3.141592654,0.,0.,1.; 0000279P0000714 +126,24,3,0,0,1,0,1.776997653E-12,1.776997653E-12, 0000281P0000715 +1.776997653E-12,1.776997653E-12,1.222225893E-02,2.444451786E-02, 0000281P0000716 +3.666677678E-02,4.888903571E-02,6.111129464E-02,7.333355356E-02, 0000281P0000717 +8.555581249E-02,9.777807142E-02,0.11000033,0.122222589, 0000281P0000718 +0.134444848,0.146667107,0.158889366,0.171111625,0.183333884, 0000281P0000719 +0.195556143,0.207778402,0.220000661,0.23222292,0.244445179, 0000281P0000720 +0.256667437,0.268889696,0.268889696,0.268889696,0.268889696,1., 0000281P0000721 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000281P0000722 +1.,1.,1.,-5.409889783E-16,4.71365794,0.,1.513602416E-02, 0000281P0000723 +4.71365794,0.,4.540807247E-02,4.71365794,0.,9.081614495E-02, 0000281P0000724 +4.71365794,0.,0.136224217,4.713657941,0.,0.18163229,4.713657941, 0000281P0000725 +0.,0.227040362,4.713657942,0.,0.272448435,4.713657942,0., 0000281P0000726 +0.317856507,4.713657942,0.,0.36326458,4.713657943,0., 0000281P0000727 +0.408672652,4.713657943,0.,0.454080725,4.713657944,0., 0000281P0000728 +0.499488797,4.713657944,0.,0.54489687,4.713657945,0., 0000281P0000729 +0.590304942,4.713657945,0.,0.635713015,4.713657945,0., 0000281P0000730 +0.681121087,4.713657946,0.,0.72652916,4.713657946,0., 0000281P0000731 +0.771937232,4.713657947,0.,0.817345305,4.713657947,0., 0000281P0000732 +0.862753377,4.713657947,0.,0.908161449,4.713657948,0., 0000281P0000733 +0.953569522,4.713657948,0.,0.98384157,4.713657948,0., 0000281P0000734 +0.998977594,4.713657949,0.,1.776997653E-12,0.268889696,0.,0.,1.; 0000281P0000735 +102,4,285,287,289,293; 0000283P0000736 +126,3,3,1,0,0,0,5.499156672,5.499156672,5.499156672,5.499156672, 0000285P0000737 +7.067213943,7.067213943,7.067213943,7.067213943,1.,0.805383013, 0000285P0000738 +0.805383013,1.,5.748031496E-02,-2.509909964E-02,1.456692913E-02, 0000285P0000739 +5.748031496E-02,-2.538714836E-02,1.456692913E-02, 0000285P0000740 +5.727691213E-02,-2.559055118E-02,1.456692913E-02, 0000285P0000741 +5.698886342E-02,-2.559055118E-02,1.456692913E-02,5.499156672, 0000285P0000742 +7.067213943,-0.,-0.,1.; 0000285P0000743 +110,5.698886342E-02,-2.559055118E-02,1.456692913E-02, 0000287P0000744 +5.643558129E-02,-2.503726905E-02,4.009677187E-03; 0000287P0000745 +100,-2.913259774E-19,2.894051468E-18,-1.666854127E-18, 0000289P0000746 +-1.347958821E-06,4.921241382E-04,-4.921259843E-04, 0000289P0000747 +3.585610251E-15; 0000289P0000748 +124,-0.998629535,-2.735308799E-03,5.226442765E-02, 0000291P0000749 +5.643558129E-02,2.286283049E-12,-0.998633281,-5.226442765E-02, 0000291P0000750 +-2.454581751E-02,5.23359562E-02,-5.219280107E-02,0.997264689, 0000291P0000751 +4.035433071E-03; 0000291P0000752 +110,5.692703283E-02,-2.454581751E-02,4.009677187E-03, 0000293P0000753 +5.748031496E-02,-2.509909964E-02,1.456692913E-02; 0000293P0000754 +144,297,1,0,299; 0000295P0000755 +128,1,1,1,1,0,0,1,0,0,-0.2685222,-0.2685222,6.776263578E-17, 0000297P0000756 +6.776263578E-17,1.248286918E-02,1.248286918E-02,1.287517131, 0000297P0000757 +1.287517131,1.,1.,1.,1.,-5.692703283E-02,-2.509909964E-02, 0000297P0000758 +4.009677187E-03,-5.748031496E-02,-2.509909964E-02, 0000297P0000759 +1.456692913E-02,-5.692703283E-02,2.509909964E-02, 0000297P0000760 +4.009677187E-03,-5.748031496E-02,2.509909964E-02, 0000297P0000761 +1.456692913E-02,-0.2685222,6.776263578E-17,1.248286918E-02, 0000297P0000762 +1.287517131; 0000297P0000763 +142,0,297,301,311,3; 0000299P0000764 +102,4,303,305,307,309; 0000301P0000765 +110,-0.2685222,1.273463765,0.,-0.2685222,2.653623539E-02,0.; 0000303P0000766 +126,24,3,0,0,1,0,0.,0.,0.,0.,1.222225893E-02,2.444451785E-02, 0000305P0000767 +3.666677678E-02,4.888903571E-02,6.111129464E-02,7.333355356E-02, 0000305P0000768 +8.555581249E-02,9.777807142E-02,0.11000033,0.122222589, 0000305P0000769 +0.134444848,0.146667107,0.158889366,0.171111625,0.183333884, 0000305P0000770 +0.195556143,0.207778402,0.220000661,0.23222292,0.244445179, 0000305P0000771 +0.256667437,0.268889696,0.268889696,0.268889696,0.268889696,1., 0000305P0000772 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000305P0000773 +1.,1.,1.,-0.2685222,2.653623528E-02,0.,-0.264453682, 0000305P0000774 +2.632330549E-02,0.,-0.256316645,2.589744591E-02,0.,-0.244111091, 0000305P0000775 +2.525865655E-02,0.,-0.231905536,2.461986718E-02,0.,-0.219699982, 0000305P0000776 +2.398107781E-02,0.,-0.207494427,2.334228844E-02,0.,-0.195288873, 0000305P0000777 +2.270349907E-02,0.,-0.183083318,2.20647097E-02,0.,-0.170877764, 0000305P0000778 +2.142592034E-02,0.,-0.158672209,2.078713097E-02,0.,-0.146466655, 0000305P0000779 +2.01483416E-02,0.,-0.1342611,1.950955223E-02,0.,-0.122055545, 0000305P0000780 +1.887076286E-02,0.,-0.109849991,1.823197349E-02,0., 0000305P0000781 +-9.764443636E-02,1.759318413E-02,0.,-8.543888182E-02, 0000305P0000782 +1.695439476E-02,0.,-7.323332727E-02,1.631560539E-02,0., 0000305P0000783 +-6.102777273E-02,1.567681602E-02,0.,-4.882221818E-02, 0000305P0000784 +1.503802665E-02,0.,-3.661666364E-02,1.439923728E-02,0., 0000305P0000785 +-2.441110909E-02,1.376044792E-02,0.,-1.220555455E-02, 0000305P0000786 +1.312165855E-02,0.,-4.068518182E-03,1.269579897E-02,0., 0000305P0000787 +6.776263578E-17,1.248286918E-02,0.,0.,0.268889696,0.,0.,1.; 0000305P0000788 +110,6.776263578E-17,1.248286918E-02,0.,6.776263578E-17, 0000307P0000789 +1.287517131,0.; 0000307P0000790 +126,24,3,0,0,1,0,0.,0.,0.,0.,1.222225893E-02,2.444451785E-02, 0000309P0000791 +3.666677678E-02,4.888903571E-02,6.111129464E-02,7.333355356E-02, 0000309P0000792 +8.555581249E-02,9.777807142E-02,0.11000033,0.122222589, 0000309P0000793 +0.134444848,0.146667107,0.158889366,0.171111625,0.183333884, 0000309P0000794 +0.195556143,0.207778402,0.220000661,0.23222292,0.244445179, 0000309P0000795 +0.256667437,0.268889696,0.268889696,0.268889696,0.268889696,1., 0000309P0000796 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000309P0000797 +1.,1.,1.,6.776263578E-17,1.287517131,0.,-4.068518182E-03, 0000309P0000798 +1.287304201,0.,-1.220555455E-02,1.286878342,0.,-2.441110909E-02, 0000309P0000799 +1.286239552,0.,-3.661666364E-02,1.285600763,0.,-4.882221818E-02, 0000309P0000800 +1.284961974,0.,-6.102777273E-02,1.284323184,0.,-7.323332727E-02, 0000309P0000801 +1.283684395,0.,-8.543888182E-02,1.283045605,0.,-9.764443636E-02, 0000309P0000802 +1.282406816,0.,-0.109849991,1.281768027,0.,-0.122055545, 0000309P0000803 +1.281129237,0.,-0.1342611,1.280490448,0.,-0.146466655, 0000309P0000804 +1.279851659,0.,-0.158672209,1.279212869,0.,-0.170877764, 0000309P0000805 +1.27857408,0.,-0.183083318,1.27793529,0.,-0.195288873, 0000309P0000806 +1.277296501,0.,-0.207494427,1.276657712,0.,-0.219699982, 0000309P0000807 +1.276018922,0.,-0.231905536,1.275380133,0.,-0.244111091, 0000309P0000808 +1.274741344,0.,-0.256316645,1.274102554,0.,-0.264453682, 0000309P0000809 +1.273676695,0.,-0.2685222,1.273463765,0.,0.,0.268889696,0.,0., 0000309P0000810 +1.; 0000309P0000811 +102,4,313,315,317,319; 0000311P0000812 +110,-5.692703283E-02,2.454581751E-02,4.009677187E-03, 0000313P0000813 +-5.692703283E-02,-2.454581751E-02,4.009677187E-03; 0000313P0000814 +110,-5.692703283E-02,-2.454581751E-02,4.009677187E-03, 0000315P0000815 +-5.748031496E-02,-2.509909964E-02,1.456692913E-02; 0000315P0000816 +110,-5.748031496E-02,-2.509909964E-02,1.456692913E-02, 0000317P0000817 +-5.748031496E-02,2.509909964E-02,1.456692913E-02; 0000317P0000818 +110,-5.748031496E-02,2.509909964E-02,1.456692913E-02, 0000319P0000819 +-5.692703283E-02,2.454581751E-02,4.009677187E-03; 0000319P0000820 +144,323,1,0,325; 0000321P0000821 +128,1,1,1,1,0,0,1,0,0,-3.068292148E-17,-3.068292148E-17, 0000323P0000822 +0.2685222,0.2685222,1.248286918E-02,1.248286918E-02,2.907517131, 0000323P0000823 +2.907517131,1.,1.,1.,1.,5.698886342E-02,2.559055118E-02, 0000323P0000824 +1.456692913E-02,5.698886342E-02,2.503726905E-02,4.009677187E-03, 0000323P0000825 +-5.698886342E-02,2.559055118E-02,1.456692913E-02, 0000323P0000826 +-5.698886342E-02,2.503726905E-02,4.009677187E-03, 0000323P0000827 +-3.068292148E-17,0.2685222,1.248286918E-02,2.907517131; 0000323P0000828 +142,0,323,327,353,3; 0000325P0000829 +102,12,329,331,333,335,337,339,341,343,345,347,349,351; 0000327P0000830 +110,-3.068292148E-17,2.1905,0.,-3.068292148E-17,0.7295,0.; 0000329P0000831 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600103E-03,5.917200207E-03, 0000331P0000832 +8.87580031E-03,1.183440041E-02,1.479300052E-02,1.775160062E-02, 0000331P0000833 +2.071020072E-02,2.366880083E-02,2.662740093E-02,2.958600103E-02, 0000331P0000834 +3.254460114E-02,3.550320124E-02,3.846180135E-02,4.142040145E-02, 0000331P0000835 +4.437900155E-02,4.733760166E-02,5.029620176E-02,5.325480186E-02, 0000331P0000836 +5.621340197E-02,5.917200207E-02,6.213060217E-02,6.508920228E-02, 0000331P0000837 +6.508920228E-02,6.508920228E-02,6.508920228E-02,1.,1.,1.,1.,1., 0000331P0000838 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000331P0000839 +-3.068292148E-17,0.7295,0.,9.862000356E-04,0.7295,0., 0000331P0000840 +2.958600107E-03,0.7295,0.,5.917200214E-03,0.7295,0., 0000331P0000841 +8.875800321E-03,0.7295,0.,1.183440043E-02,0.7295,0., 0000331P0000842 +1.479300053E-02,0.7295,0.,1.775160064E-02,0.7295,0., 0000331P0000843 +2.071020075E-02,0.7295,0.,2.366880085E-02,0.7295,0., 0000331P0000844 +2.662740096E-02,0.7295,0.,2.958600107E-02,0.7295,0., 0000331P0000845 +3.254460118E-02,0.7295,0.,3.550320128E-02,0.7295,0., 0000331P0000846 +3.846180139E-02,0.7295,0.,4.14204015E-02,0.7295,0., 0000331P0000847 +4.43790016E-02,0.7295,0.,4.733760171E-02,0.7295,0., 0000331P0000848 +5.029620182E-02,0.7295,0.,5.325480192E-02,0.7295,0., 0000331P0000849 +5.621340203E-02,0.7295,0.,5.917200214E-02,0.7295,0., 0000331P0000850 +6.213060224E-02,0.7295,0.,6.410300231E-02,0.7295,0., 0000331P0000851 +6.508920235E-02,0.7295,0.,0.,6.508920228E-02,0.,0.,1.; 0000331P0000852 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.022727273E-02,4.045454546E-02, 0000333P0000853 +6.068181818E-02,8.090909091E-02,0.101136364,0.121363636, 0000333P0000854 +0.141590909,0.161818182,0.182045455,0.202272727,0.2225, 0000333P0000855 +0.242727273,0.262954545,0.283181818,0.303409091,0.323636364, 0000333P0000856 +0.343863636,0.364090909,0.384318182,0.404545455,0.424772727, 0000333P0000857 +0.445,0.445,0.445,0.445,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000333P0000858 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.508920235E-02,0.7295,0., 0000333P0000859 +6.508920235E-02,0.722757576,0.,6.508920235E-02,0.709272727,0., 0000333P0000860 +6.508920235E-02,0.689045455,0.,6.508920235E-02,0.668818182,0., 0000333P0000861 +6.508920235E-02,0.648590909,0.,6.508920235E-02,0.628363636,0., 0000333P0000862 +6.508920235E-02,0.608136364,0.,6.508920235E-02,0.587909091,0., 0000333P0000863 +6.508920235E-02,0.567681818,0.,6.508920235E-02,0.547454546,0., 0000333P0000864 +6.508920235E-02,0.527227273,0.,6.508920235E-02,0.507,0., 0000333P0000865 +6.508920235E-02,0.486772727,0.,6.508920235E-02,0.466545455,0., 0000333P0000866 +6.508920235E-02,0.446318182,0.,6.508920235E-02,0.426090909,0., 0000333P0000867 +6.508920235E-02,0.405863636,0.,6.508920235E-02,0.385636364,0., 0000333P0000868 +6.508920235E-02,0.365409091,0.,6.508920235E-02,0.345181818,0., 0000333P0000869 +6.508920235E-02,0.324954545,0.,6.508920235E-02,0.304727273,0., 0000333P0000870 +6.508920235E-02,0.291242424,0.,6.508920235E-02,0.2845,0.,0., 0000333P0000871 +0.445,0.,0.,1.; 0000333P0000872 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600103E-03,5.917200207E-03, 0000335P0000873 +8.87580031E-03,1.183440041E-02,1.479300052E-02,1.775160062E-02, 0000335P0000874 +2.071020072E-02,2.366880083E-02,2.662740093E-02,2.958600103E-02, 0000335P0000875 +3.254460114E-02,3.550320124E-02,3.846180135E-02,4.142040145E-02, 0000335P0000876 +4.437900155E-02,4.733760166E-02,5.029620176E-02,5.325480186E-02, 0000335P0000877 +5.621340197E-02,5.917200207E-02,6.213060217E-02,6.508920228E-02, 0000335P0000878 +6.508920228E-02,6.508920228E-02,6.508920228E-02,1.,1.,1.,1.,1., 0000335P0000879 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000335P0000880 +6.508920235E-02,0.2845,0.,6.410300231E-02,0.2845,0., 0000335P0000881 +6.213060224E-02,0.2845,0.,5.917200214E-02,0.2845,0., 0000335P0000882 +5.621340203E-02,0.2845,0.,5.325480192E-02,0.2845,0., 0000335P0000883 +5.029620182E-02,0.2845,0.,4.733760171E-02,0.2845,0., 0000335P0000884 +4.43790016E-02,0.2845,0.,4.14204015E-02,0.2845,0., 0000335P0000885 +3.846180139E-02,0.2845,0.,3.550320128E-02,0.2845,0., 0000335P0000886 +3.254460118E-02,0.2845,0.,2.958600107E-02,0.2845,0., 0000335P0000887 +2.662740096E-02,0.2845,0.,2.366880085E-02,0.2845,0., 0000335P0000888 +2.071020075E-02,0.2845,0.,1.775160064E-02,0.2845,0., 0000335P0000889 +1.479300053E-02,0.2845,0.,1.183440043E-02,0.2845,0., 0000335P0000890 +8.875800321E-03,0.2845,0.,5.917200214E-03,0.2845,0., 0000335P0000891 +2.958600107E-03,0.2845,0.,9.862000356E-04,0.2845,0., 0000335P0000892 +-3.068292148E-17,0.2845,0.,0.,6.508920228E-02,0.,0.,1.; 0000335P0000893 +110,-3.068292148E-17,0.2845,0.,-3.068292148E-17,1.248286919E-02, 0000337P0000894 +0.; 0000337P0000895 +126,24,3,0,0,1,0,-0.,-0.,-0.,-0.,1.222225893E-02, 0000339P0000896 +2.444451785E-02,3.666677678E-02,4.888903571E-02,6.111129464E-02, 0000339P0000897 +7.333355356E-02,8.555581249E-02,9.777807142E-02,0.11000033, 0000339P0000898 +0.122222589,0.134444848,0.146667107,0.158889366,0.171111625, 0000339P0000899 +0.183333884,0.195556143,0.207778402,0.220000661,0.23222292, 0000339P0000900 +0.244445179,0.256667437,0.268889696,0.268889696,0.268889696, 0000339P0000901 +0.268889696,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000339P0000902 +1.,1.,1.,1.,1.,1.,1.,1.,-3.068292148E-17,1.248286918E-02,0., 0000339P0000903 +4.068518182E-03,1.269579897E-02,0.,1.220555455E-02, 0000339P0000904 +1.312165855E-02,0.,2.441110909E-02,1.376044792E-02,0., 0000339P0000905 +3.661666364E-02,1.439923728E-02,0.,4.882221818E-02, 0000339P0000906 +1.503802665E-02,0.,6.102777273E-02,1.567681602E-02,0., 0000339P0000907 +7.323332727E-02,1.631560539E-02,0.,8.543888182E-02, 0000339P0000908 +1.695439476E-02,0.,9.764443636E-02,1.759318413E-02,0., 0000339P0000909 +0.109849991,1.823197349E-02,0.,0.122055545,1.887076286E-02,0., 0000339P0000910 +0.1342611,1.950955223E-02,0.,0.146466655,2.01483416E-02,0., 0000339P0000911 +0.158672209,2.078713097E-02,0.,0.170877764,2.142592034E-02,0., 0000339P0000912 +0.183083318,2.20647097E-02,0.,0.195288873,2.270349907E-02,0., 0000339P0000913 +0.207494427,2.334228844E-02,0.,0.219699982,2.398107781E-02,0., 0000339P0000914 +0.231905536,2.461986718E-02,0.,0.244111091,2.525865655E-02,0., 0000339P0000915 +0.256316645,2.589744591E-02,0.,0.264453682,2.632330549E-02,0., 0000339P0000916 +0.2685222,2.653623528E-02,0.,-0.,0.268889696,0.,0.,1.; 0000339P0000917 +110,0.2685222,2.653623528E-02,0.,0.2685222,2.893463765,0.; 0000341P0000918 +126,24,3,0,0,1,0,0.,0.,0.,0.,1.222225893E-02,2.444451785E-02, 0000343P0000919 +3.666677678E-02,4.888903571E-02,6.111129464E-02,7.333355356E-02, 0000343P0000920 +8.555581249E-02,9.777807142E-02,0.11000033,0.122222589, 0000343P0000921 +0.134444848,0.146667107,0.158889366,0.171111625,0.183333884, 0000343P0000922 +0.195556143,0.207778402,0.220000661,0.23222292,0.244445179, 0000343P0000923 +0.256667437,0.268889696,0.268889696,0.268889696,0.268889696,1., 0000343P0000924 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000343P0000925 +1.,1.,1.,0.2685222,2.893463765,0.,0.264453682,2.893676695,0., 0000343P0000926 +0.256316645,2.894102554,0.,0.244111091,2.894741344,0., 0000343P0000927 +0.231905536,2.895380133,0.,0.219699982,2.896018922,0., 0000343P0000928 +0.207494427,2.896657712,0.,0.195288873,2.897296501,0., 0000343P0000929 +0.183083318,2.89793529,0.,0.170877764,2.89857408,0.,0.158672209, 0000343P0000930 +2.899212869,0.,0.146466655,2.899851659,0.,0.1342611,2.900490448, 0000343P0000931 +0.,0.122055545,2.901129237,0.,0.109849991,2.901768027,0., 0000343P0000932 +9.764443636E-02,2.902406816,0.,8.543888182E-02,2.903045605,0., 0000343P0000933 +7.323332727E-02,2.903684395,0.,6.102777273E-02,2.904323184,0., 0000343P0000934 +4.882221818E-02,2.904961974,0.,3.661666364E-02,2.905600763,0., 0000343P0000935 +2.441110909E-02,2.906239552,0.,1.220555455E-02,2.906878342,0., 0000343P0000936 +4.068518182E-03,2.907304201,0.,-3.068292148E-17,2.907517131,0., 0000343P0000937 +0.,0.268889696,0.,0.,1.; 0000343P0000938 +110,-3.068292148E-17,2.907517131,0.,-3.068292148E-17,2.6355,0.; 0000345P0000939 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600103E-03,5.917200207E-03, 0000347P0000940 +8.87580031E-03,1.183440041E-02,1.479300052E-02,1.775160062E-02, 0000347P0000941 +2.071020072E-02,2.366880083E-02,2.662740093E-02,2.958600103E-02, 0000347P0000942 +3.254460114E-02,3.550320124E-02,3.846180135E-02,4.142040145E-02, 0000347P0000943 +4.437900155E-02,4.733760166E-02,5.029620176E-02,5.325480186E-02, 0000347P0000944 +5.621340197E-02,5.917200207E-02,6.213060217E-02,6.508920228E-02, 0000347P0000945 +6.508920228E-02,6.508920228E-02,6.508920228E-02,1.,1.,1.,1.,1., 0000347P0000946 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000347P0000947 +-3.068292148E-17,2.6355,0.,9.862000356E-04,2.6355,0., 0000347P0000948 +2.958600107E-03,2.6355,0.,5.917200214E-03,2.6355,0., 0000347P0000949 +8.875800321E-03,2.6355,0.,1.183440043E-02,2.6355,0., 0000347P0000950 +1.479300053E-02,2.6355,0.,1.775160064E-02,2.6355,0., 0000347P0000951 +2.071020075E-02,2.6355,0.,2.366880085E-02,2.6355,0., 0000347P0000952 +2.662740096E-02,2.6355,0.,2.958600107E-02,2.6355,0., 0000347P0000953 +3.254460118E-02,2.6355,0.,3.550320128E-02,2.6355,0., 0000347P0000954 +3.846180139E-02,2.6355,0.,4.14204015E-02,2.6355,0., 0000347P0000955 +4.43790016E-02,2.6355,0.,4.733760171E-02,2.6355,0., 0000347P0000956 +5.029620182E-02,2.6355,0.,5.325480192E-02,2.6355,0., 0000347P0000957 +5.621340203E-02,2.6355,0.,5.917200214E-02,2.6355,0., 0000347P0000958 +6.213060224E-02,2.6355,0.,6.410300231E-02,2.6355,0., 0000347P0000959 +6.508920235E-02,2.6355,0.,0.,6.508920228E-02,0.,0.,1.; 0000347P0000960 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.022727273E-02,4.045454546E-02, 0000349P0000961 +6.068181818E-02,8.090909091E-02,0.101136364,0.121363636, 0000349P0000962 +0.141590909,0.161818182,0.182045455,0.202272727,0.2225, 0000349P0000963 +0.242727273,0.262954545,0.283181818,0.303409091,0.323636364, 0000349P0000964 +0.343863636,0.364090909,0.384318182,0.404545455,0.424772727, 0000349P0000965 +0.445,0.445,0.445,0.445,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000349P0000966 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.508920235E-02,2.6355,0., 0000349P0000967 +6.508920235E-02,2.628757576,0.,6.508920235E-02,2.615272727,0., 0000349P0000968 +6.508920235E-02,2.595045455,0.,6.508920235E-02,2.574818182,0., 0000349P0000969 +6.508920235E-02,2.554590909,0.,6.508920235E-02,2.534363637,0., 0000349P0000970 +6.508920235E-02,2.514136364,0.,6.508920235E-02,2.493909091,0., 0000349P0000971 +6.508920235E-02,2.473681818,0.,6.508920235E-02,2.453454546,0., 0000349P0000972 +6.508920235E-02,2.433227273,0.,6.508920235E-02,2.413,0., 0000349P0000973 +6.508920235E-02,2.392772727,0.,6.508920235E-02,2.372545455,0., 0000349P0000974 +6.508920235E-02,2.352318182,0.,6.508920235E-02,2.332090909,0., 0000349P0000975 +6.508920235E-02,2.311863636,0.,6.508920235E-02,2.291636364,0., 0000349P0000976 +6.508920235E-02,2.271409091,0.,6.508920235E-02,2.251181818,0., 0000349P0000977 +6.508920235E-02,2.230954546,0.,6.508920235E-02,2.210727273,0., 0000349P0000978 +6.508920235E-02,2.197242424,0.,6.508920235E-02,2.1905,0.,0., 0000349P0000979 +0.445,0.,0.,1.; 0000349P0000980 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600103E-03,5.917200207E-03, 0000351P0000981 +8.87580031E-03,1.183440041E-02,1.479300052E-02,1.775160062E-02, 0000351P0000982 +2.071020072E-02,2.366880083E-02,2.662740093E-02,2.958600103E-02, 0000351P0000983 +3.254460114E-02,3.550320124E-02,3.846180135E-02,4.142040145E-02, 0000351P0000984 +4.437900155E-02,4.733760166E-02,5.029620176E-02,5.325480186E-02, 0000351P0000985 +5.621340197E-02,5.917200207E-02,6.213060217E-02,6.508920228E-02, 0000351P0000986 +6.508920228E-02,6.508920228E-02,6.508920228E-02,1.,1.,1.,1.,1., 0000351P0000987 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000351P0000988 +6.508920235E-02,2.1905,0.,6.410300231E-02,2.1905,0., 0000351P0000989 +6.213060224E-02,2.1905,0.,5.917200214E-02,2.1905,0., 0000351P0000990 +5.621340203E-02,2.1905,0.,5.325480192E-02,2.1905,0., 0000351P0000991 +5.029620182E-02,2.1905,0.,4.733760171E-02,2.1905,0., 0000351P0000992 +4.43790016E-02,2.1905,0.,4.14204015E-02,2.1905,0., 0000351P0000993 +3.846180139E-02,2.1905,0.,3.550320128E-02,2.1905,0., 0000351P0000994 +3.254460118E-02,2.1905,0.,2.958600107E-02,2.1905,0., 0000351P0000995 +2.662740096E-02,2.1905,0.,2.366880085E-02,2.1905,0., 0000351P0000996 +2.071020075E-02,2.1905,0.,1.775160064E-02,2.1905,0., 0000351P0000997 +1.479300053E-02,2.1905,0.,1.183440043E-02,2.1905,0., 0000351P0000998 +8.875800321E-03,2.1905,0.,5.917200214E-03,2.1905,0., 0000351P0000999 +2.958600107E-03,2.1905,0.,9.862000356E-04,2.1905,0., 0000351P0001000 +-3.068292148E-17,2.1905,0.,0.,6.508920228E-02,0.,0.,1.; 0000351P0001001 +102,12,355,357,359,361,363,365,367,369,371,373,375,377; 0000353P0001002 +110,-2.875984252E-02,2.559055118E-02,1.456692913E-02, 0000355P0001003 +2.875984252E-02,2.559055118E-02,1.456692913E-02; 0000355P0001004 +110,2.875984252E-02,2.559055118E-02,1.456692913E-02, 0000357P0001005 +2.875984252E-02,2.545643679E-02,1.200787402E-02; 0000357P0001006 +110,2.875984252E-02,2.545643679E-02,1.200787402E-02, 0000359P0001007 +4.627952756E-02,2.545643679E-02,1.200787402E-02; 0000359P0001008 +110,4.627952756E-02,2.545643679E-02,1.200787402E-02, 0000361P0001009 +4.627952756E-02,2.559055118E-02,1.456692913E-02; 0000361P0001010 +110,4.627952756E-02,2.559055118E-02,1.456692913E-02, 0000363P0001011 +5.698886342E-02,2.559055118E-02,1.456692913E-02; 0000363P0001012 +110,5.698886342E-02,2.559055118E-02,1.456692913E-02, 0000365P0001013 +5.643558129E-02,2.503726905E-02,4.009677187E-03; 0000365P0001014 +110,5.643558129E-02,2.503726905E-02,4.009677187E-03, 0000367P0001015 +-5.643558129E-02,2.503726905E-02,4.009677187E-03; 0000367P0001016 +110,-5.643558129E-02,2.503726905E-02,4.009677187E-03, 0000369P0001017 +-5.698886342E-02,2.559055118E-02,1.456692913E-02; 0000369P0001018 +110,-5.698886342E-02,2.559055118E-02,1.456692913E-02, 0000371P0001019 +-4.627952756E-02,2.559055118E-02,1.456692913E-02; 0000371P0001020 +110,-4.627952756E-02,2.559055118E-02,1.456692913E-02, 0000373P0001021 +-4.627952756E-02,2.545643679E-02,1.200787402E-02; 0000373P0001022 +110,-4.627952756E-02,2.545643679E-02,1.200787402E-02, 0000375P0001023 +-2.875984252E-02,2.545643679E-02,1.200787402E-02; 0000375P0001024 +110,-2.875984252E-02,2.545643679E-02,1.200787402E-02, 0000377P0001025 +-2.875984252E-02,2.559055118E-02,1.456692913E-02; 0000377P0001026 +144,381,1,0,387; 0000379P0001027 +120,383,385,4.712187835,6.283185304; 0000381P0001028 +110,-5.873383743E-02,-2.684407365E-02,-1.875491443E-02, 0000383P0001029 +-5.66761828E-02,-2.478641902E-02,2.050747489E-02; 0000383P0001030 +110,-5.56714384E-02,-2.427385009E-02,3.969107243E-02, 0000385P0001031 +-5.698870719E-02,-2.559111889E-02,1.45560865E-02; 0000385P0001032 +142,0,381,389,399,3; 0000387P0001033 +102,4,391,393,395,397; 0000389P0001034 +126,24,3,0,0,1,0,1.573535382,1.573535382,1.573535382, 0000391P0001035 +1.573535382,1.644810713,1.716086043,1.787361374,1.858636704, 0000391P0001036 +1.929912035,2.001187365,2.072462696,2.143738026,2.215013357, 0000391P0001037 +2.286288688,2.357564018,2.428839349,2.500114679,2.57139001, 0000391P0001038 +2.64266534,2.713940671,2.785216001,2.856491332,2.927766662, 0000391P0001039 +2.999041993,3.070317323,3.141592654,3.141592654,3.141592654, 0000391P0001040 +3.141592654,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000391P0001041 +1.,1.,1.,1.,1.,1.,1.,1.,3.739115207E-13,6.281715219,0., 0000391P0001042 +3.50899539E-13,6.257956775,0.,3.069031073E-13,6.210439888,0., 0000391P0001043 +2.46927723E-13,6.139164556,0.,1.929978796E-13,6.067889225,0., 0000391P0001044 +1.448262203E-13,5.996613894,0.,1.048741574E-13,5.925338562,0., 0000391P0001045 +6.967958061E-14,5.854063231,0.,4.410962474E-14,5.7827879,0., 0000391P0001046 +2.305273142E-14,5.711512568,0.,1.136595196E-14,5.640237237,0., 0000391P0001047 +5.376793958E-15,5.568961905,0.,8.26010657E-15,5.497686574,0., 0000391P0001048 +1.675136298E-14,5.426411242,0.,3.45106637E-14,5.355135911,0., 0000391P0001049 +5.82584492E-14,5.28386058,0.,8.956316873E-14,5.212585248,0., 0000391P0001050 +1.268354337E-13,5.141309917,0.,1.720711604E-13,5.070034585,0., 0000391P0001051 +2.23338225E-13,4.998759254,0.,2.808888912E-13,4.927483923,0., 0000391P0001052 +3.437729568E-13,4.856208591,0.,4.137723611E-13,4.78493326,0., 0000391P0001053 +4.634167012E-13,4.737416373,0.,4.887529774E-13,4.713657929,0., 0000391P0001054 +1.573535382,3.141592654,0.,0.,1.; 0000391P0001055 +126,24,3,0,0,1,0,-4.80862409E-11,-4.80862409E-11, 0000393P0001056 +-4.80862409E-11,-4.80862409E-11,2.908656984E-02,5.817313974E-02, 0000393P0001057 +8.725970963E-02,0.11634628,0.145432849,0.174519419,0.203605989, 0000393P0001058 +0.232692559,0.261779129,0.290865699,0.319952269,0.349038839, 0000393P0001059 +0.378125409,0.407211978,0.436298548,0.465385118,0.494471688, 0000393P0001060 +0.523558258,0.552644828,0.581731398,0.610817968,0.639904538, 0000393P0001061 +0.639904538,0.639904538,0.639904538,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000393P0001062 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,7.636193089E-11, 0000393P0001063 +4.713657929,0.,1.514500201E-02,4.713657929,0.,4.543500587E-02, 0000393P0001064 +4.713657929,0.,9.087001166E-02,4.713657929,0.,0.136305017, 0000393P0001065 +4.71365793,0.,0.181740023,4.71365793,0.,0.227175029,4.71365793, 0000393P0001066 +0.,0.272610035,4.713657931,0.,0.318045041,4.713657931,0., 0000393P0001067 +0.363480046,4.713657931,0.,0.408915052,4.713657932,0., 0000393P0001068 +0.454350058,4.713657932,0.,0.499785064,4.713657932,0., 0000393P0001069 +0.54522007,4.713657933,0.,0.590655075,4.713657933,0., 0000393P0001070 +0.636090081,4.713657933,0.,0.681525087,4.713657934,0., 0000393P0001071 +0.726960093,4.713657934,0.,0.772395099,4.713657934,0., 0000393P0001072 +0.817830104,4.713657935,0.,0.86326511,4.713657935,0., 0000393P0001073 +0.908700116,4.713657935,0.,0.954135122,4.713657936,0., 0000393P0001074 +0.984425126,4.713657936,0.,0.999570127,4.713657936,0., 0000393P0001075 +-4.80862409E-11,0.639904538,0.,0.,1.; 0000393P0001076 +126,24,3,1,0,1,0,5.499156672,5.499156672,5.499156672, 0000395P0001077 +5.499156672,5.570432002,5.641707333,5.712982664,5.784257994, 0000395P0001078 +5.855533324,5.926808655,5.998083986,6.069359316,6.140634646, 0000395P0001079 +6.211909977,6.283185308,6.354460638,6.425735968,6.497011299, 0000395P0001080 +6.56828663,6.63956196,6.71083729,6.782112621,6.853387951, 0000395P0001081 +6.924663282,6.995938612,7.067213943,7.067213943,7.067213943, 0000395P0001082 +7.067213943,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000395P0001083 +1.,1.,1.,1.,1.,1.,1.,1.,0.999570127,4.713657936,0.,0.999591993, 0000395P0001084 +4.735054525,0.,0.999634902,4.778421351,0.,0.999696094, 0000395P0001085 +4.845099171,0.,0.999753407,4.91331848,0.,0.999806123, 0000395P0001086 +4.982967757,0.,0.999853536,5.053918784,0.,0.999894973, 0000395P0001087 +5.126024911,0.,0.999929817,5.199122811,0.,0.999957525, 0000395P0001088 +5.273034013,0.,0.999977651,5.347567185,0.,0.999989863, 0000395P0001089 +5.422520861,0.,0.999993957,5.497686575,0.,0.999989863, 0000395P0001090 +5.572852289,0.,0.999977651,5.647805964,0.,0.999957525, 0000395P0001091 +5.722339136,0.,0.999929817,5.796250337,0.,0.999894973, 0000395P0001092 +5.869348237,0.,0.999853536,5.941454363,0.,0.999806123, 0000395P0001093 +6.012405389,0.,0.999753407,6.082054665,0.,0.999696094, 0000395P0001094 +6.150273972,0.,0.999634902,6.216951791,0.,0.999591993, 0000395P0001095 +6.260318615,0.,0.999570127,6.281715203,0.,5.499156672, 0000395P0001096 +7.067213943,0.,0.,1.; 0000395P0001097 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.908656989E-02,5.817313979E-02, 0000397P0001098 +8.725970968E-02,0.11634628,0.145432849,0.174519419,0.203605989, 0000397P0001099 +0.232692559,0.261779129,0.290865699,0.319952269,0.349038839, 0000397P0001100 +0.378125409,0.407211979,0.436298548,0.465385118,0.494471688, 0000397P0001101 +0.523558258,0.552644828,0.581731398,0.610817968,0.639904538, 0000397P0001102 +0.639904538,0.639904538,0.639904538,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000397P0001103 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,0.999570127, 0000397P0001104 +6.281715203,0.,0.984425126,6.281715204,0.,0.954135122, 0000397P0001105 +6.281715204,0.,0.908700116,6.281715205,0.,0.86326511, 0000397P0001106 +6.281715206,0.,0.817830104,6.281715206,0.,0.772395099, 0000397P0001107 +6.281715207,0.,0.726960093,6.281715208,0.,0.681525087, 0000397P0001108 +6.281715208,0.,0.636090081,6.281715209,0.,0.590655075, 0000397P0001109 +6.28171521,0.,0.54522007,6.281715211,0.,0.499785064,6.281715211, 0000397P0001110 +0.,0.454350058,6.281715212,0.,0.408915052,6.281715213,0., 0000397P0001111 +0.363480046,6.281715213,0.,0.318045041,6.281715214,0., 0000397P0001112 +0.272610035,6.281715215,0.,0.227175029,6.281715216,0., 0000397P0001113 +0.181740023,6.281715216,0.,0.136305017,6.281715217,0., 0000397P0001114 +9.087001166E-02,6.281715218,0.,4.543500587E-02,6.281715218,0., 0000397P0001115 +1.514500201E-02,6.281715219,0.,7.636256458E-11,6.281715219,0., 0000397P0001116 +0.,0.639904538,0.,0.,1.; 0000397P0001117 +102,4,401,405,407,409; 0000399P0001118 +100,1.679659665E-18,2.275117157E-18,4.908789364E-19, 0000401P0001119 +-1.347958716E-06,4.921241382E-04,-4.921259843E-04, 0000401P0001120 +-1.012093999E-13; 0000401P0001121 +124,0.998629535,2.735308799E-03,-5.226442765E-02, 0000403P0001122 +-5.567216088E-02,2.286283049E-12,-0.998633281,-5.226442765E-02, 0000403P0001123 +-2.37823971E-02,-5.23359562E-02,5.219280107E-02,-0.997264689, 0000403P0001124 +3.966535433E-02; 0000403P0001125 +110,-5.616361242E-02,-2.37823971E-02,3.969111021E-02, 0000405P0001126 +-5.748031496E-02,-2.509909964E-02,1.456692913E-02; 0000405P0001127 +126,3,3,1,0,0,0,5.499156672,5.499156672,5.499156672,5.499156672, 0000407P0001128 +7.067213943,7.067213943,7.067213943,7.067213943,1.,0.805383013, 0000407P0001129 +0.805383013,1.,-5.748031496E-02,-2.509909964E-02, 0000407P0001130 +1.456692913E-02,-5.748031496E-02,-2.538714836E-02, 0000407P0001131 +1.456692913E-02,-5.727691213E-02,-2.559055118E-02, 0000407P0001132 +1.456692913E-02,-5.698886342E-02,-2.559055118E-02, 0000407P0001133 +1.456692913E-02,5.499156672,7.067213943,0.,0.,1.; 0000407P0001134 +110,-5.698886342E-02,-2.559055118E-02,1.456692913E-02, 0000409P0001135 +-5.567216088E-02,-2.427384864E-02,3.969111021E-02; 0000409P0001136 +144,413,1,0,419; 0000411P0001137 +120,415,417,4.764748858,6.283185307; 0000413P0001138 +110,5.643558129E-02,-6.496062992E-02,4.035433071E-03, 0000415P0001139 +5.643558129E-02,-2.559055118E-02,4.035433071E-03; 0000415P0001140 +110,5.643558129E-02,2.454581751E-02,3.543307087E-03, 0000417P0001141 +5.643558129E-02,-2.454581751E-02,3.543307087E-03; 0000417P0001142 +142,0,413,421,431,3; 0000419P0001143 +102,4,423,425,427,429; 0000421P0001144 +110,1.,4.764748858,0.,1.,6.283185307,0.; 0000423P0001145 +126,24,3,0,0,1,0,0.,0.,0.,0.,5.667852407E-02,0.113357048, 0000425P0001146 +0.170035572,0.226714096,0.28339262,0.340071144,0.396749668, 0000425P0001147 +0.453428193,0.510106717,0.566785241,0.623463765,0.680142289, 0000425P0001148 +0.736820813,0.793499337,0.850177861,0.906856385,0.963534909, 0000425P0001149 +1.020213433,1.076891957,1.133570481,1.190249005,1.24692753, 0000425P0001150 +1.24692753,1.24692753,1.24692753,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000425P0001151 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.283185307,0., 0000425P0001152 +0.984848485,6.283185307,0.,0.954545455,6.283185307,0., 0000425P0001153 +0.909090909,6.283185307,0.,0.863636364,6.283185307,0., 0000425P0001154 +0.818181818,6.283185307,0.,0.772727273,6.283185307,0., 0000425P0001155 +0.727272727,6.283185307,0.,0.681818182,6.283185307,0., 0000425P0001156 +0.636363636,6.283185307,0.,0.590909091,6.283185307,0., 0000425P0001157 +0.545454545,6.283185307,0.,0.5,6.283185307,0.,0.454545455, 0000425P0001158 +6.283185307,0.,0.409090909,6.283185307,0.,0.363636364, 0000425P0001159 +6.283185307,0.,0.318181818,6.283185307,0.,0.272727273, 0000425P0001160 +6.283185307,0.,0.227272727,6.283185307,0.,0.181818182, 0000425P0001161 +6.283185307,0.,0.136363636,6.283185307,0.,9.090909091E-02, 0000425P0001162 +6.283185307,0.,4.545454545E-02,6.283185307,0.,1.515151515E-02, 0000425P0001163 +6.283185307,0.,3.723028465E-16,6.283185307,0.,0.,1.24692753,0., 0000425P0001164 +0.,1.; 0000425P0001165 +126,24,3,0,0,1,0,1.570796327,1.570796327,1.570796327, 0000427P0001166 +1.570796327,1.639816165,1.708836004,1.777855843,1.846875681, 0000427P0001167 +1.91589552,1.984915358,2.053935197,2.122955036,2.191974874, 0000427P0001168 +2.260994713,2.330014551,2.39903439,2.468054229,2.537074067, 0000427P0001169 +2.606093906,2.675113744,2.744133583,2.813153422,2.88217326, 0000427P0001170 +2.951193099,3.020212937,3.089232776,3.089232776,3.089232776, 0000427P0001171 +3.089232776,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000427P0001172 +1.,1.,1.,1.,1.,1.,1.,1.,3.723028465E-16,6.283185307,0., 0000427P0001173 +4.382819159E-16,6.260178694,0.,4.684272048E-16,6.214165469,0., 0000427P0001174 +4.122287009E-16,6.14514563,0.,-1.305809149E-18,6.076125792,0., 0000427P0001175 +5.816999904E-16,6.007105953,0.,2.069813195E-16,5.938086114,0., 0000427P0001176 +5.297396115E-16,5.869066276,0.,8.87548269E-17,5.800046437,0., 0000427P0001177 +4.026049286E-16,5.731026599,0.,6.351901891E-17,5.66200676,0., 0000427P0001178 +5.129019638E-16,5.592986921,0.,6.40059589E-17,5.523967083,0., 0000427P0001179 +2.828762889E-16,5.454947244,0.,3.316206862E-16,5.385927406,0., 0000427P0001180 +3.931024797E-16,5.316907567,0.,3.954046832E-17,5.247887728,0., 0000427P0001181 +2.649759759E-16,5.17886789,0.,1.921256695E-16,5.109848051,0., 0000427P0001182 +1.992009476E-16,5.040828213,0.,1.848597017E-16,4.971808374,0., 0000427P0001183 +1.762589674E-16,4.902788535,0.,1.661127107E-16,4.833768697,0., 0000427P0001184 +1.596429248E-16,4.787755471,0.,1.563712337E-16,4.764748858,0., 0000427P0001185 +1.570796327,3.089232776,0.,0.,1.; 0000427P0001186 +110,1.563712337E-16,4.764748858,0.,1.,4.764748858,0.; 0000429P0001187 +102,4,433,437,439,443; 0000431P0001188 +100,-1.560141315E-18,-3.798976116E-19,1.333910153E-20, 0000433P0001189 +4.914515427E-04,2.575588405E-05,-3.798976116E-19, 0000433P0001190 +4.921259843E-04; 0000433P0001191 +124,1.,2.71926043E-32,-8.563055984E-15,5.643558129E-02, 0000435P0001192 +8.563055984E-15,2.220446049E-16,1.,-2.454581751E-02, 0000435P0001193 +1.928572987E-30,-1.,2.220446049E-16,4.035433071E-03; 0000435P0001194 +110,5.643558129E-02,-2.454581751E-02,3.543307087E-03, 0000437P0001195 +5.643558129E-02,2.454581751E-02,3.543307087E-03; 0000437P0001196 +100,9.348042353E-19,3.005032793E-18,-1.333910153E-20, 0000439P0001197 +3.005032793E-18,4.921259843E-04,-4.914515427E-04, 0000439P0001198 +2.575588405E-05; 0000439P0001199 +124,-1.,2.719260372E-32,-1.224646E-16,5.643558129E-02, 0000441P0001200 +1.224646E-16,2.220446049E-16,-1.,2.454581751E-02,0.,-1., 0000441P0001201 +-2.220446049E-16,4.035433071E-03; 0000441P0001202 +110,5.692703283E-02,2.454581751E-02,4.009677187E-03, 0000443P0001203 +5.692703283E-02,-2.454581751E-02,4.009677187E-03; 0000443P0001204 +144,447,1,0,453; 0000445P0001205 +120,449,451,4.712187832,6.283185303; 0000447P0001206 +110,5.89080557E-02,2.701829192E-02,5.121305531E-02, 0000449P0001207 +5.685040107E-02,2.496063729E-02,1.195066599E-02; 0000449P0001208 +110,5.692703428E-02,2.454509502E-02,4.009714975E-03, 0000451P0001209 +5.748088267E-02,2.509894341E-02,1.457777176E-02; 0000451P0001210 +142,0,447,455,465,3; 0000453P0001211 +102,4,457,459,461,463; 0000455P0001212 +126,24,3,1,0,1,0,5.499156672,5.499156672,5.499156672, 0000457P0001213 +5.499156672,5.570432002,5.641707333,5.712982664,5.784257994, 0000457P0001214 +5.855533324,5.926808655,5.998083986,6.069359316,6.140634646, 0000457P0001215 +6.211909977,6.283185308,6.354460638,6.425735968,6.497011299, 0000457P0001216 +6.56828663,6.63956196,6.71083729,6.782112621,6.853387951, 0000457P0001217 +6.924663282,6.995938612,7.067213943,7.067213943,7.067213943, 0000457P0001218 +7.067213943,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000457P0001219 +1.,1.,1.,1.,1.,1.,1.,1.,0.998977594,4.713657933,0.,0.999029598, 0000457P0001220 +4.735054521,0.,0.999131654,4.778421346,0.,0.999277192, 0000457P0001221 +4.845099164,0.,0.999413506,4.913318472,0.,0.999538885, 0000457P0001222 +4.982967747,0.,0.999651651,5.053918774,0.,0.999750205,5.1260249, 0000457P0001223 +0.,0.999833077,5.1991228,0.,0.999898977,5.273034001,0., 0000457P0001224 +0.999946845,5.347567173,0.,0.999975891,5.422520848,0., 0000457P0001225 +0.999985628,5.497686563,0.,0.999975891,5.572852277,0., 0000457P0001226 +0.999946845,5.647805952,0.,0.999898977,5.722339125,0., 0000457P0001227 +0.999833077,5.796250326,0.,0.999750205,5.869348227,0., 0000457P0001228 +0.999651651,5.941454354,0.,0.999538885,6.012405381,0., 0000457P0001229 +0.999413506,6.082054658,0.,0.999277192,6.150273967,0., 0000457P0001230 +0.999131654,6.216951788,0.,0.999029598,6.260318613,0., 0000457P0001231 +0.998977594,6.281715202,0.,5.499156672,7.067213943,0.,0.,1.; 0000457P0001232 +126,24,3,0,0,1,0,-0.,-0.,-0.,-0.,1.222225893E-02, 0000459P0001233 +2.444451785E-02,3.666677678E-02,4.888903571E-02,6.111129463E-02, 0000459P0001234 +7.333355356E-02,8.555581249E-02,9.777807142E-02,0.11000033, 0000459P0001235 +0.122222589,0.134444848,0.146667107,0.158889366,0.171111625, 0000459P0001236 +0.183333884,0.195556143,0.207778402,0.220000661,0.23222292, 0000459P0001237 +0.244445179,0.256667437,0.268889696,0.268889696,0.268889696, 0000459P0001238 +0.268889696,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000459P0001239 +1.,1.,1.,1.,1.,1.,1.,1.,0.998977594,6.281715202,0.,0.98384157, 0000459P0001240 +6.281715202,0.,0.953569522,6.281715202,0.,0.908161449, 0000459P0001241 +6.281715202,0.,0.862753377,6.281715202,0.,0.817345305, 0000459P0001242 +6.281715202,0.,0.771937232,6.281715202,0.,0.72652916, 0000459P0001243 +6.281715201,0.,0.681121087,6.281715201,0.,0.635713015, 0000459P0001244 +6.281715201,0.,0.590304942,6.281715201,0.,0.54489687, 0000459P0001245 +6.281715201,0.,0.499488797,6.2817152,0.,0.454080725,6.2817152, 0000459P0001246 +0.,0.408672652,6.2817152,0.,0.36326458,6.2817152,0.,0.317856507, 0000459P0001247 +6.2817152,0.,0.272448435,6.2817152,0.,0.227040362,6.281715199, 0000459P0001248 +0.,0.18163229,6.281715199,0.,0.136224217,6.281715199,0., 0000459P0001249 +9.081614495E-02,6.281715199,0.,4.540807247E-02,6.281715199,0., 0000459P0001250 +1.513602416E-02,6.281715199,0.,8.884188287E-16,6.281715198,0., 0000459P0001251 +-0.,0.268889696,0.,0.,1.; 0000459P0001252 +126,24,3,0,0,1,0,3.141592654,3.141592654,3.141592654, 0000461P0001253 +3.141592654,3.212867984,3.284143315,3.355418645,3.426693976, 0000461P0001254 +3.497969306,3.569244637,3.640519967,3.711795298,3.783070628, 0000461P0001255 +3.854345959,3.925621289,3.99689662,4.06817195,4.139447281, 0000461P0001256 +4.210722611,4.281997942,4.353273272,4.424548603,4.495823933, 0000461P0001257 +4.567099264,4.638374594,4.709649925,4.709649925,4.709649925, 0000461P0001258 +4.709649925,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000461P0001259 +1.,1.,1.,1.,1.,1.,1.,1.,8.308023059E-12,6.281715198,0., 0000461P0001260 +8.246982108E-12,6.257956755,0.,8.129069946E-12,6.210439868,0., 0000461P0001261 +7.965147E-12,6.139164537,0.,7.81260659E-12,6.067889207,0., 0000461P0001262 +7.676881889E-12,5.996613876,0.,7.554933439E-12,5.925338545,0., 0000461P0001263 +7.447628367E-12,5.854063214,0.,7.35721441E-12,5.782787884,0., 0000461P0001264 +7.283530649E-12,5.711512553,0.,7.226008053E-12,5.640237222,0., 0000461P0001265 +7.186328274E-12,5.568961892,0.,7.162982185E-12,5.497686561,0., 0000461P0001266 +7.158521163E-12,5.42641123,0.,7.170337243E-12,5.3551359,0., 0000461P0001267 +7.200722465E-12,5.283860569,0.,7.247057292E-12,5.212585238,0., 0000461P0001268 +7.311487672E-12,5.141309908,0.,7.392275176E-12,5.070034577,0., 0000461P0001269 +7.489461153E-12,4.998759246,0.,7.60251533E-12,4.927483916,0., 0000461P0001270 +7.730568641E-12,4.856208585,0.,7.873581083E-12,4.784933254,0., 0000461P0001271 +7.97808137E-12,4.737416367,0.,8.032473898E-12,4.713657924,0., 0000461P0001272 +3.141592654,4.709649925,0.,0.,1.; 0000461P0001273 +126,24,3,0,0,1,0,1.829249319E-12,1.829249319E-12, 0000463P0001274 +1.829249319E-12,1.829249319E-12,1.222225893E-02,2.444451786E-02, 0000463P0001275 +3.666677678E-02,4.888903571E-02,6.111129464E-02,7.333355356E-02, 0000463P0001276 +8.555581249E-02,9.777807142E-02,0.11000033,0.122222589, 0000463P0001277 +0.134444848,0.146667107,0.158889366,0.171111625,0.183333884, 0000463P0001278 +0.195556143,0.207778402,0.220000661,0.23222292,0.244445179, 0000463P0001279 +0.256667437,0.268889696,0.268889696,0.268889696,0.268889696,1., 0000463P0001280 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000463P0001281 +1.,1.,1.,1.854452274E-16,4.713657924,0.,1.513602416E-02, 0000463P0001282 +4.713657924,0.,4.540807247E-02,4.713657924,0.,9.081614495E-02, 0000463P0001283 +4.713657924,0.,0.136224217,4.713657925,0.,0.18163229, 0000463P0001284 +4.713657925,0.,0.227040362,4.713657926,0.,0.272448435, 0000463P0001285 +4.713657926,0.,0.317856507,4.713657927,0.,0.36326458, 0000463P0001286 +4.713657927,0.,0.408672652,4.713657927,0.,0.454080725, 0000463P0001287 +4.713657928,0.,0.499488797,4.713657928,0.,0.54489687, 0000463P0001288 +4.713657929,0.,0.590304942,4.713657929,0.,0.635713015, 0000463P0001289 +4.71365793,0.,0.681121087,4.71365793,0.,0.72652916,4.71365793, 0000463P0001290 +0.,0.771937232,4.713657931,0.,0.817345305,4.713657931,0., 0000463P0001291 +0.862753377,4.713657932,0.,0.908161449,4.713657932,0., 0000463P0001292 +0.953569522,4.713657932,0.,0.98384157,4.713657933,0., 0000463P0001293 +0.998977594,4.713657933,0.,1.829249319E-12,0.268889696,0.,0.,1.; 0000463P0001294 +102,4,467,469,471,475; 0000465P0001295 +126,3,3,1,0,0,0,5.499156672,5.499156672,5.499156672,5.499156672, 0000467P0001296 +7.067213943,7.067213943,7.067213943,7.067213943,1.,0.805383013, 0000467P0001297 +0.805383013,1.,5.698886342E-02,2.559055118E-02,1.456692913E-02, 0000467P0001298 +5.727691213E-02,2.559055118E-02,1.456692913E-02,5.748031496E-02, 0000467P0001299 +2.538714836E-02,1.456692913E-02,5.748031496E-02,2.509909964E-02, 0000467P0001300 +1.456692913E-02,5.499156672,7.067213943,-0.,-0.,1.; 0000467P0001301 +110,5.748031496E-02,2.509909964E-02,1.456692913E-02, 0000469P0001302 +5.692703283E-02,2.454581751E-02,4.009677187E-03; 0000469P0001303 +100,-2.913259774E-19,2.894051468E-18,1.666854127E-18, 0000471P0001304 +-4.921259843E-04,-3.480564293E-15,-1.347958821E-06, 0000471P0001305 +-4.921241382E-04; 0000471P0001306 +124,-0.998629535,2.735308799E-03,5.226442765E-02, 0000473P0001307 +5.643558129E-02,-2.286283049E-12,-0.998633281,5.226442765E-02, 0000473P0001308 +2.454581751E-02,5.23359562E-02,5.219280107E-02,0.997264689, 0000473P0001309 +4.035433071E-03; 0000473P0001310 +110,5.643558129E-02,2.503726905E-02,4.009677187E-03, 0000475P0001311 +5.698886342E-02,2.559055118E-02,1.456692913E-02; 0000475P0001312 +144,479,1,0,487; 0000477P0001313 +120,481,483,4.712339181,6.283185307; 0000479P0001314 +110,-5.643558129E-02,-2.454581751E-02,4.340551181E-02, 0000481P0001315 +-5.643558129E-02,-2.454581751E-02,4.03543307E-03; 0000481P0001316 +100,2.070228558E-19,1.30723195E-20,-6.658879485E-19, 0000483P0001317 +4.921259843E-04,-6.658879485E-19,2.558804393E-05, 0000483P0001318 +4.914603101E-04; 0000483P0001319 +124,5.528830905E-21,-1.,2.489964082E-05,-5.643558129E-02, 0000485P0001320 +2.220446047E-16,2.489964082E-05,1.,-2.454581751E-02,-1., 0000485P0001321 +1.653038931E-37,2.220446048E-16,4.035433071E-03; 0000485P0001322 +142,0,479,489,497,3; 0000487P0001323 +102,3,491,493,495; 0000489P0001324 +126,24,3,1,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0000491P0001325 +4.781408819,4.850428658,4.919448496,4.988468335,5.057488173, 0000491P0001326 +5.126508012,5.195527851,5.264547689,5.333567528,5.402587366, 0000491P0001327 +5.471607205,5.540627044,5.609646882,5.678666721,5.747686559, 0000491P0001328 +5.816706398,5.885726237,5.954746075,6.023765914,6.092785752, 0000491P0001329 +6.161805591,6.23082543,6.23082543,6.23082543,6.23082543,1.,1., 0000491P0001330 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000491P0001331 +1.,1.,-2.785355922E-16,4.71238898,0.,2.300661287E-02, 0000491P0001332 +4.712386214,0.,6.901983859E-02,4.712387647,0.,0.138039677, 0000491P0001333 +4.712397797,0.,0.207059516,4.712355046,0.,0.276079354, 0000491P0001334 +4.712366501,0.,0.345099193,4.712363432,0.,0.414119032, 0000491P0001335 +4.712364255,0.,0.48313887,4.712364034,0.,0.552158709, 0000491P0001336 +4.712364093,0.,0.621178547,4.712364077,0.,0.690198386, 0000491P0001337 +4.712364082,0.,0.759218225,4.712364081,0.,0.828238063, 0000491P0001338 +4.712364081,0.,0.897257902,4.712364081,0.,0.96627774, 0000491P0001339 +4.712364081,0.,1.035297579,4.712364081,0.,1.104317418, 0000491P0001340 +4.712364081,0.,1.173337256,4.712364081,0.,1.242357095, 0000491P0001341 +4.712364081,0.,1.311376934,4.712364081,0.,1.380396772, 0000491P0001342 +4.712364081,0.,1.449416611,4.712364081,0.,1.495429836, 0000491P0001343 +4.712364081,0.,1.518436449,4.712364081,0.,4.71238898,6.23082543, 0000491P0001344 +0.,0.,1.; 0000491P0001345 +126,24,3,1,0,1,0,4.715128036,4.715128036,4.715128036, 0000493P0001346 +4.715128036,4.786403367,4.857678697,4.928954028,5.000229358, 0000493P0001347 +5.071504689,5.142780019,5.21405535,5.28533068,5.356606011, 0000493P0001348 +5.427881341,5.499156672,5.570432002,5.641707333,5.712982663, 0000493P0001349 +5.784257994,5.855533324,5.926808655,5.998083985,6.069359316, 0000493P0001350 +6.140634646,6.211909977,6.283185307,6.283185307,6.283185307, 0000493P0001351 +6.283185307,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000493P0001352 +1.,1.,1.,1.,1.,1.,1.,1.,1.518436449,4.712364081,0.,1.517194608, 0000493P0001353 +4.736122567,0.,1.514799883,4.783648993,0.,1.51149144, 0000493P0001354 +4.854966107,0.,1.508484,4.926310027,0.,1.505792861,4.997679331, 0000493P0001355 +0.,1.503431868,5.069072133,0.,1.501413146,5.140486051,0., 0000493P0001356 +1.499747085,5.211918274,0.,1.498442265,5.283365615,0., 0000493P0001357 +1.497505412,5.354824576,0.,1.49694136,5.426291419,0., 0000493P0001358 +1.496753018,5.497762244,0.,1.49694136,5.569233069,0., 0000493P0001359 +1.497505412,5.640699912,0.,1.498442265,5.712158873,0., 0000493P0001360 +1.499747085,5.783606214,0.,1.501413146,5.855038437,0., 0000493P0001361 +1.503431868,5.926452355,0.,1.505792861,5.997845157,0.,1.508484, 0000493P0001362 +6.069214461,0.,1.51149144,6.140558382,0.,1.514799883, 0000493P0001363 +6.211875496,0.,1.517194608,6.259401921,0.,1.518436449, 0000493P0001364 +6.283160408,0.,4.715128036,6.283185307,-0.,-0.,1.; 0000493P0001365 +126,24,3,0,0,1,0,3.193952531,3.193952531,3.193952531, 0000495P0001366 +3.193952531,3.26297237,3.331992208,3.401012047,3.470031885, 0000495P0001367 +3.539051724,3.608071563,3.677091401,3.74611124,3.815131079, 0000495P0001368 +3.884150917,3.953170756,4.022190594,4.091210433,4.160230272, 0000495P0001369 +4.22925011,4.298269949,4.367289787,4.436309626,4.505329465, 0000495P0001370 +4.574349303,4.643369142,4.71238898,4.71238898,4.71238898, 0000495P0001371 +4.71238898,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000495P0001372 +1.,1.,1.,1.,1.,1.,1.,1.,1.518436449,6.283160408,0.,1.495429836, 0000495P0001373 +6.283160408,0.,1.449416611,6.283160408,0.,1.380396772, 0000495P0001374 +6.283160408,0.,1.311376934,6.283160408,0.,1.242357095, 0000495P0001375 +6.283160408,0.,1.173337256,6.283160408,0.,1.104317418, 0000495P0001376 +6.283160408,0.,1.035297579,6.283160408,0.,0.96627774, 0000495P0001377 +6.283160408,0.,0.897257902,6.283160408,0.,0.828238063, 0000495P0001378 +6.283160408,0.,0.759218225,6.283160408,0.,0.690198386, 0000495P0001379 +6.283160408,0.,0.621178547,6.283160408,0.,0.552158709, 0000495P0001380 +6.283160408,0.,0.48313887,6.283160408,0.,0.414119032, 0000495P0001381 +6.283160408,0.,0.345099193,6.283160408,0.,0.276079354, 0000495P0001382 +6.283160408,0.,0.207059516,6.283160408,0.,0.138039677, 0000495P0001383 +6.283160408,0.,6.901983861E-02,6.283160408,0.,2.300661287E-02, 0000495P0001384 +6.283160408,0.,-4.415235816E-21,6.283160408,0.,3.193952531, 0000495P0001385 +4.71238898,0.,0.,1.; 0000495P0001386 +102,3,499,503,507; 0000497P0001387 +100,-1.037248535E-18,-1.476905322E-18,-1.333910153E-20, 0000499P0001388 +-1.368058253E-18,-4.921259843E-04,4.914515427E-04, 0000499P0001389 +-2.575588394E-05; 0000499P0001390 +124,-1.749350577E-14,-2.719260402E-32,-1.,-5.643558129E-02,-1., 0000501P0001391 +-2.220446049E-16,1.749350577E-14,-2.454581751E-02, 0000501P0001392 +-2.220446049E-16,1.,3.857145973E-30,4.035433071E-03; 0000501P0001393 +100,2.913259774E-19,-2.894051468E-18,1.666854127E-18, 0000503P0001394 +1.347958815E-06,-4.921241382E-04,4.921259843E-04, 0000503P0001395 +3.480971936E-18; 0000503P0001396 +124,-0.998629535,-2.735308799E-03,5.226442765E-02, 0000505P0001397 +-5.643558129E-02,-2.286283049E-12,0.998633281,5.226442765E-02, 0000505P0001398 +-2.454581751E-02,-5.23359562E-02,5.219280107E-02,-0.997264689, 0000505P0001399 +4.035433071E-03; 0000505P0001400 +100,1.643377309E-18,3.005032793E-18,-1.333910153E-20, 0000507P0001401 +-4.914515427E-04,-2.575588394E-05,3.005032793E-18, 0000507P0001402 +-4.921259843E-04; 0000507P0001403 +124,1.,-2.719260372E-32,-1.224646E-16,-5.643558129E-02, 0000509P0001404 +-1.224646E-16,-2.220446049E-16,-1.,-2.454581751E-02,0.,1., 0000509P0001405 +-2.220446049E-16,4.035433071E-03; 0000509P0001406 +144,513,1,0,519; 0000511P0001407 +120,515,517,4.71218785,6.283185304; 0000513P0001408 +110,5.904786048E-02,-2.71580967E-02,-2.474683125E-02, 0000515P0001409 +5.699020585E-02,-2.510044207E-02,1.451555807E-02; 0000515P0001410 +110,5.616361387E-02,-2.378167461E-02,3.969107243E-02, 0000517P0001411 +5.748088266E-02,-2.509894341E-02,1.45560865E-02; 0000517P0001412 +142,0,513,521,531,3; 0000519P0001413 +102,4,523,525,527,529; 0000521P0001414 +126,24,3,0,0,1,0,0.,0.,0.,0.,7.127533051E-02,0.142550661, 0000523P0001415 +0.213825992,0.285101322,0.356376653,0.427651983,0.498927314, 0000523P0001416 +0.570202644,0.641477975,0.712753305,0.784028636,0.855303966, 0000523P0001417 +0.926579297,0.997854627,1.069129958,1.140405288,1.211680619, 0000523P0001418 +1.282955949,1.35423128,1.42550661,1.496781941,1.568057271, 0000523P0001419 +1.568057271,1.568057271,1.568057271,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000523P0001420 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,4.889344386E-13, 0000523P0001421 +6.281715198,0.,4.632696251E-13,6.257956755,0.,4.135650001E-13, 0000523P0001422 +6.210439868,0.,3.442847787E-13,6.139164537,0.,2.808970452E-13, 0000523P0001423 +6.067889206,0.,2.232683545E-13,5.996613876,0.,1.72207859E-13, 0000523P0001424 +5.925338545,0.,1.268409464E-13,5.854063214,0.,8.89236172E-14, 0000523P0001425 +5.782787884,0.,5.765042776E-14,5.711512553,0.,3.373232619E-14, 0000523P0001426 +5.640237222,0.,1.700803964E-14,5.568961892,0.,7.581715368E-15, 0000523P0001427 +5.497686561,0.,5.078698569E-15,5.42641123,0.,1.070957031E-14, 0000523P0001428 +5.3551359,0.,2.279002116E-14,5.283860569,0.,4.326166376E-14, 0000523P0001429 +5.212585238,0.,7.007783237E-14,5.141309907,0.,1.029431982E-13, 0000523P0001430 +5.070034577,0.,1.449857552E-13,4.998759246,0.,1.917565778E-13, 0000523P0001431 +4.927483915,0.,2.461114402E-13,4.856208585,0.,3.061025515E-13, 0000523P0001432 +4.784933254,0.,3.500987382E-13,4.737416367,0.,3.730482886E-13, 0000523P0001433 +4.713657923,0.,0.,1.568057271,0.,0.,1.; 0000523P0001434 +126,24,3,0,0,1,0,-4.803398923E-11,-4.803398923E-11, 0000525P0001435 +-4.803398923E-11,-4.803398923E-11,2.908656984E-02, 0000525P0001436 +5.817313974E-02,8.725970963E-02,0.11634628,0.145432849, 0000525P0001437 +0.174519419,0.203605989,0.232692559,0.261779129,0.290865699, 0000525P0001438 +0.319952269,0.349038839,0.378125409,0.407211978,0.436298548, 0000525P0001439 +0.465385118,0.494471688,0.523558258,0.552644828,0.581731398, 0000525P0001440 +0.610817968,0.639904538,0.639904538,0.639904538,0.639904538,1., 0000525P0001441 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000525P0001442 +1.,1.,1.,7.644299294E-11,4.713657923,0.,1.514500201E-02, 0000525P0001443 +4.713657924,0.,4.543500587E-02,4.713657924,0.,9.087001166E-02, 0000525P0001444 +4.713657926,0.,0.136305017,4.713657927,0.,0.181740023, 0000525P0001445 +4.713657928,0.,0.227175029,4.713657929,0.,0.272610035, 0000525P0001446 +4.713657931,0.,0.318045041,4.713657932,0.,0.363480046, 0000525P0001447 +4.713657933,0.,0.408915052,4.713657934,0.,0.454350058, 0000525P0001448 +4.713657936,0.,0.499785064,4.713657937,0.,0.54522007, 0000525P0001449 +4.713657938,0.,0.590655075,4.713657939,0.,0.636090081, 0000525P0001450 +4.713657941,0.,0.681525087,4.713657942,0.,0.726960093, 0000525P0001451 +4.713657943,0.,0.772395099,4.713657944,0.,0.817830104, 0000525P0001452 +4.713657946,0.,0.86326511,4.713657947,0.,0.908700116, 0000525P0001453 +4.713657948,0.,0.954135122,4.713657949,0.,0.984425126, 0000525P0001454 +4.71365795,0.,0.999570127,4.713657951,0.,-4.803398923E-11, 0000525P0001455 +0.639904538,0.,0.,1.; 0000525P0001456 +126,24,3,1,0,1,0,5.499156672,5.499156672,5.499156672, 0000527P0001457 +5.499156672,5.570432002,5.641707333,5.712982664,5.784257994, 0000527P0001458 +5.855533324,5.926808655,5.998083986,6.069359316,6.140634646, 0000527P0001459 +6.211909977,6.283185308,6.354460638,6.425735968,6.497011299, 0000527P0001460 +6.56828663,6.63956196,6.71083729,6.782112621,6.853387951, 0000527P0001461 +6.924663282,6.995938612,7.067213943,7.067213943,7.067213943, 0000527P0001462 +7.067213943,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000527P0001463 +1.,1.,1.,1.,1.,1.,1.,1.,0.999570127,4.713657951,0.,0.999591993, 0000527P0001464 +4.735054539,0.,0.999634902,4.778421363,0.,0.999696094, 0000527P0001465 +4.845099181,0.,0.999753407,4.913318488,0.,0.999806123, 0000527P0001466 +4.982967762,0.,0.999853536,5.053918788,0.,0.999894973, 0000527P0001467 +5.126024914,0.,0.999929817,5.199122813,0.,0.999957525, 0000527P0001468 +5.273034013,0.,0.999977651,5.347567184,0.,0.999989863, 0000527P0001469 +5.422520859,0.,0.999993957,5.497686572,0.,0.999989863, 0000527P0001470 +5.572852285,0.,0.999977651,5.64780596,0.,0.999957525, 0000527P0001471 +5.722339132,0.,0.999929817,5.796250332,0.,0.999894973, 0000527P0001472 +5.869348232,0.,0.999853536,5.941454358,0.,0.999806123, 0000527P0001473 +6.012405385,0.,0.999753407,6.082054661,0.,0.999696094, 0000527P0001474 +6.15027397,0.,0.999634902,6.216951789,0.,0.999591993, 0000527P0001475 +6.260318614,0.,0.999570127,6.281715204,0.,5.499156672, 0000527P0001476 +7.067213943,0.,0.,1.; 0000527P0001477 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.908656989E-02,5.817313979E-02, 0000529P0001478 +8.725970968E-02,0.11634628,0.145432849,0.174519419,0.203605989, 0000529P0001479 +0.232692559,0.261779129,0.290865699,0.319952269,0.349038839, 0000529P0001480 +0.378125409,0.407211979,0.436298548,0.465385118,0.494471688, 0000529P0001481 +0.523558258,0.552644828,0.581731398,0.610817968,0.639904538, 0000529P0001482 +0.639904538,0.639904538,0.639904538,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000529P0001483 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,0.999570127, 0000529P0001484 +6.281715204,0.,0.984425126,6.281715203,0.,0.954135122, 0000529P0001485 +6.281715203,0.,0.908700116,6.281715203,0.,0.86326511, 0000529P0001486 +6.281715203,0.,0.817830104,6.281715203,0.,0.772395099, 0000529P0001487 +6.281715202,0.,0.726960093,6.281715202,0.,0.681525087, 0000529P0001488 +6.281715202,0.,0.636090081,6.281715202,0.,0.590655075, 0000529P0001489 +6.281715202,0.,0.54522007,6.281715201,0.,0.499785064, 0000529P0001490 +6.281715201,0.,0.454350058,6.281715201,0.,0.408915052, 0000529P0001491 +6.281715201,0.,0.363480046,6.2817152,0.,0.318045041,6.2817152, 0000529P0001492 +0.,0.272610035,6.2817152,0.,0.227175029,6.2817152,0., 0000529P0001493 +0.181740023,6.2817152,0.,0.136305017,6.281715199,0., 0000529P0001494 +9.087001166E-02,6.281715199,0.,4.543500587E-02,6.281715199,0., 0000529P0001495 +1.514500201E-02,6.281715199,0.,7.644344347E-11,6.281715199,0., 0000529P0001496 +0.,0.639904538,0.,0.,1.; 0000529P0001497 +102,4,533,537,539,541; 0000531P0001498 +100,1.679659665E-18,-2.275117157E-18,4.908789364E-19, 0000533P0001499 +4.921259843E-04,-1.353118459E-18,1.347958716E-06, 0000533P0001500 +4.921241382E-04; 0000533P0001501 +124,0.998629535,-2.735308799E-03,5.226442765E-02, 0000535P0001502 +5.567216088E-02,-2.286283049E-12,-0.998633281,-5.226442765E-02, 0000535P0001503 +-2.37823971E-02,5.23359562E-02,5.219280107E-02,-0.997264689, 0000535P0001504 +3.966535433E-02; 0000535P0001505 +110,5.567216088E-02,-2.427384864E-02,3.969111021E-02, 0000537P0001506 +5.698886342E-02,-2.559055118E-02,1.456692913E-02; 0000537P0001507 +126,3,3,1,0,0,0,5.499156672,5.499156672,5.499156672,5.499156672, 0000539P0001508 +7.067213943,7.067213943,7.067213943,7.067213943,1.,0.805383013, 0000539P0001509 +0.805383013,1.,5.698886342E-02,-2.559055118E-02,1.456692913E-02, 0000539P0001510 +5.727691213E-02,-2.559055118E-02,1.456692913E-02, 0000539P0001511 +5.748031496E-02,-2.538714836E-02,1.456692913E-02, 0000539P0001512 +5.748031496E-02,-2.509909964E-02,1.456692913E-02,5.499156672, 0000539P0001513 +7.067213943,0.,0.,1.; 0000539P0001514 +110,5.748031496E-02,-2.509909964E-02,1.456692913E-02, 0000541P0001515 +5.616361242E-02,-2.37823971E-02,3.969111021E-02; 0000541P0001516 +144,545,1,0,551; 0000543P0001517 +120,547,549,4.764748849,6.283185308; 0000545P0001518 +110,9.68503937E-02,-2.37823971E-02,3.966535433E-02, 0000547P0001519 +5.748031496E-02,-2.37823971E-02,3.966535433E-02; 0000547P0001520 +110,-5.567216088E-02,-2.37823971E-02,4.015748031E-02, 0000549P0001521 +5.567216088E-02,-2.37823971E-02,4.015748031E-02; 0000549P0001522 +142,0,545,553,563,3; 0000551P0001523 +102,4,555,557,559,561; 0000553P0001524 +110,1.,4.764748853,0.,1.,6.283185306,0.; 0000555P0001525 +126,24,3,0,0,1,0,0.,0.,0.,0.,0.128552081,0.257104161, 0000557P0001526 +0.385656242,0.514208322,0.642760403,0.771312483,0.899864564, 0000557P0001527 +1.028416645,1.156968725,1.285520806,1.414072886,1.542624967, 0000557P0001528 +1.671177048,1.799729128,1.928281209,2.056833289,2.18538537, 0000557P0001529 +2.31393745,2.442489531,2.571041612,2.699593692,2.828145773, 0000557P0001530 +2.828145773,2.828145773,2.828145773,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000557P0001531 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.283185307, 0000557P0001532 +0.,0.984848485,6.283185307,0.,0.954545455,6.283185306,0., 0000557P0001533 +0.909090909,6.283185306,0.,0.863636364,6.283185306,0., 0000557P0001534 +0.818181818,6.283185306,0.,0.772727273,6.283185306,0., 0000557P0001535 +0.727272727,6.283185306,0.,0.681818182,6.283185306,0., 0000557P0001536 +0.636363636,6.283185306,0.,0.590909091,6.283185306,0., 0000557P0001537 +0.545454545,6.283185306,0.,0.5,6.283185306,0.,0.454545455, 0000557P0001538 +6.283185306,0.,0.409090909,6.283185306,0.,0.363636364, 0000557P0001539 +6.283185306,0.,0.318181818,6.283185306,0.,0.272727273, 0000557P0001540 +6.283185306,0.,0.227272727,6.283185306,0.,0.181818182, 0000557P0001541 +6.283185306,0.,0.136363636,6.283185306,0.,9.090909091E-02, 0000557P0001542 +6.283185306,0.,4.545454545E-02,6.283185306,0.,1.515151515E-02, 0000557P0001543 +6.283185307,0.,2.94421623E-16,6.283185307,0.,0.,2.828145773,0., 0000557P0001544 +0.,1.; 0000557P0001545 +126,24,3,0,0,1,0,0.,0.,0.,0.,6.901983878E-02,0.138039678, 0000559P0001546 +0.207059516,0.276079355,0.345099194,0.414119033,0.483138871, 0000559P0001547 +0.55215871,0.621178549,0.690198388,0.759218227,0.828238065, 0000559P0001548 +0.897257904,0.966277743,1.035297582,1.10431742,1.173337259, 0000559P0001549 +1.242357098,1.311376937,1.380396776,1.449416614,1.518436453, 0000559P0001550 +1.518436453,1.518436453,1.518436453,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000559P0001551 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,4.514464886E-16, 0000559P0001552 +6.283185307,0.,3.409589567E-16,6.260178694,0.,3.260017528E-16, 0000559P0001553 +6.214165467,0.,5.591950096E-16,6.145145629,0.,5.650422277E-16, 0000559P0001554 +6.07612579,0.,2.824953442E-16,6.007105951,0.,4.387217112E-16, 0000559P0001555 +5.938086112,0.,5.414729693E-16,5.869066274,0.,4.193514127E-16, 0000559P0001556 +5.800046435,0.,3.080470301E-16,5.731026596,0.,3.783467653E-16, 0000559P0001557 +5.662006757,0.,1.824874527E-16,5.592986919,0.,3.98585616E-16, 0000559P0001558 +5.52396708,0.,1.751621164E-16,5.454947241,0.,3.55718602E-16, 0000559P0001559 +5.385927402,0.,3.020259997E-16,5.316907564,0.,3.102751698E-16, 0000559P0001560 +5.247887725,0.,3.050063379E-16,5.178867886,0.,2.918677409E-16, 0000559P0001561 +5.109848047,0.,3.237262059E-16,5.040828208,0.,1.834661891E-16, 0000559P0001562 +4.97180837,0.,2.156084403E-16,4.902788531,0.,2.013346967E-16, 0000559P0001563 +4.833768692,0.,2.006600092E-16,4.787755466,0.,1.992175229E-16, 0000559P0001564 +4.764748853,0.,0.,1.518436453,0.,0.,1.; 0000559P0001565 +126,24,3,0,0,1,0,0.,0.,0.,0.,0.128552081,0.257104161, 0000561P0001566 +0.385656242,0.514208322,0.642760403,0.771312483,0.899864564, 0000561P0001567 +1.028416645,1.156968725,1.285520806,1.414072886,1.542624967, 0000561P0001568 +1.671177048,1.799729128,1.928281209,2.056833289,2.18538537, 0000561P0001569 +2.31393745,2.442489531,2.571041612,2.699593692,2.828145773, 0000561P0001570 +2.828145773,2.828145773,2.828145773,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000561P0001571 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.992175226E-16, 0000561P0001572 +4.764748849,0.,1.515151515E-02,4.764748849,0.,4.545454545E-02, 0000561P0001573 +4.764748849,0.,9.090909091E-02,4.764748849,0.,0.136363636, 0000561P0001574 +4.764748849,0.,0.181818182,4.764748849,0.,0.227272727, 0000561P0001575 +4.764748849,0.,0.272727273,4.764748849,0.,0.318181818, 0000561P0001576 +4.764748849,0.,0.363636364,4.764748849,0.,0.409090909, 0000561P0001577 +4.764748849,0.,0.454545455,4.764748849,0.,0.5,4.764748849,0., 0000561P0001578 +0.545454545,4.764748849,0.,0.590909091,4.764748849,0., 0000561P0001579 +0.636363636,4.764748849,0.,0.681818182,4.764748849,0., 0000561P0001580 +0.727272727,4.764748849,0.,0.772727273,4.764748849,0., 0000561P0001581 +0.818181818,4.764748849,0.,0.863636364,4.764748849,0., 0000561P0001582 +0.909090909,4.764748849,0.,0.954545455,4.764748849,0., 0000561P0001583 +0.984848485,4.764748849,0.,1.,4.764748849,0.,0.,2.828145773,0., 0000561P0001584 +0.,1.; 0000561P0001585 +102,4,565,569,571,575; 0000563P0001586 +100,-6.573509235E-19,1.410743378E-18,3.461763629E-18, 0000565P0001587 +-4.914515428E-04,-2.575588208E-05,1.519590446E-18, 0000565P0001588 +-4.921259843E-04; 0000565P0001589 +124,-1.724857657E-14,2.719260343E-32,-1.,5.567216088E-02,1., 0000567P0001590 +2.220446049E-16,-1.724857657E-14,-2.37823971E-02, 0000567P0001591 +2.220446049E-16,-1.,-3.857145973E-30,3.966535433E-02; 0000567P0001592 +110,5.567216088E-02,-2.37823971E-02,4.015748031E-02, 0000569P0001593 +-5.567216088E-02,-2.37823971E-02,4.015748031E-02; 0000569P0001594 +100,-1.242137135E-18,-3.013569818E-18,-1.295493541E-18, 0000571P0001595 +4.921259843E-04,-1.404340609E-18,2.575588208E-05, 0000571P0001596 +4.914515428E-04; 0000571P0001597 +124,3.469446952E-14,-1.940724701E-15,1.,-5.567216088E-02, 0000573P0001598 +-2.220446049E-16,-1.,-1.940724701E-15,-2.37823971E-02,1., 0000573P0001599 +-2.220446049E-16,-3.469446952E-14,3.966535433E-02; 0000573P0001600 +110,-5.567216088E-02,-2.427384864E-02,3.969111021E-02, 0000575P0001601 +5.567216088E-02,-2.427384864E-02,3.969111021E-02; 0000575P0001602 +144,579,1,0,581; 0000577P0001603 +128,1,1,1,1,0,0,1,0,0,-0.445,-0.445,0.,0.,-6.496383672E-02, 0000579P0001604 +-6.496383672E-02,2.742524241E-32,2.742524241E-32,1.,1.,1.,1., 0000579P0001605 +-4.627952756E-02,2.545643679E-02,1.200787402E-02, 0000579P0001606 +-2.875984252E-02,2.545643679E-02,1.200787402E-02, 0000579P0001607 +-4.627952756E-02,2.801406815E-02,1.200787402E-02, 0000579P0001608 +-2.875984252E-02,2.801406815E-02,1.200787402E-02,-0.445,0., 0000579P0001609 +-6.496383672E-02,2.742524241E-32; 0000579P0001610 +142,0,579,583,593,3; 0000581P0001611 +102,4,585,587,589,591; 0000583P0001612 +110,-0.445,-6.496383672E-02,0.,1.599992361E-11,-6.496383672E-02, 0000585P0001613 +0.; 0000585P0001614 +110,0.,-6.496383672E-02,0.,0.,-1.760000479E-10,0.; 0000587P0001615 +110,0.,2.742524241E-32,0.,-0.445,2.742524241E-32,0.; 0000589P0001616 +110,-0.445,2.742524241E-32,0.,-0.445,-6.496383654E-02,0.; 0000591P0001617 +102,4,595,597,599,601; 0000593P0001618 +110,-4.627952756E-02,2.545643679E-02,1.200787402E-02, 0000595P0001619 +-2.875984252E-02,2.545643679E-02,1.200787402E-02; 0000595P0001620 +110,-2.875984252E-02,2.545643679E-02,1.200787402E-02, 0000597P0001621 +-2.875984252E-02,2.801406815E-02,1.200787402E-02; 0000597P0001622 +110,-2.875984252E-02,2.801406815E-02,1.200787402E-02, 0000599P0001623 +-4.627952756E-02,2.801406815E-02,1.200787402E-02; 0000599P0001624 +110,-4.627952756E-02,2.801406815E-02,1.200787402E-02, 0000601P0001625 +-4.627952756E-02,2.545643679E-02,1.200787402E-02; 0000601P0001626 +144,605,1,0,607; 0000603P0001627 +128,1,1,1,1,0,0,1,0,0,-0.639029968,-0.639029968,0.,0., 0000605P0001628 +1.248286918E-02,1.248286918E-02,1.287517131,1.287517131,1.,1., 0000605P0001629 +1.,1.,5.616361242E-02,-2.509909964E-02,3.969111021E-02, 0000605P0001630 +5.748031496E-02,-2.509909964E-02,1.456692913E-02, 0000605P0001631 +5.616361242E-02,2.509909964E-02,3.969111021E-02,5.748031496E-02, 0000605P0001632 +2.509909964E-02,1.456692913E-02,-0.639029968,0.,1.248286918E-02, 0000605P0001633 +1.287517131; 0000605P0001634 +142,0,605,609,619,3; 0000607P0001635 +102,4,611,613,615,617; 0000609P0001636 +110,-0.639029968,1.254072886,0.,-0.639029968,4.59271138E-02,0.; 0000611P0001637 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.908656989E-02,5.817313978E-02, 0000613P0001638 +8.725970967E-02,0.11634628,0.145432849,0.174519419,0.203605989, 0000613P0001639 +0.232692559,0.261779129,0.290865699,0.319952269,0.349038839, 0000613P0001640 +0.378125409,0.407211978,0.436298548,0.465385118,0.494471688, 0000613P0001641 +0.523558258,0.552644828,0.581731398,0.610817968,0.639904538, 0000613P0001642 +0.639904538,0.639904538,0.639904538,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000613P0001643 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,-0.639029968, 0000613P0001644 +4.59271137E-02,0.,-0.629347696,4.542038272E-02,0.,-0.609983151, 0000613P0001645 +4.440692077E-02,0.,-0.580936335,4.288672783E-02,0.,-0.551889518, 0000613P0001646 +4.13665349E-02,0.,-0.522842701,3.984634197E-02,0.,-0.493795884, 0000613P0001647 +3.832614904E-02,0.,-0.464749068,3.68059561E-02,0.,-0.435702251, 0000613P0001648 +3.528576317E-02,0.,-0.406655434,3.376557024E-02,0.,-0.377608617, 0000613P0001649 +3.22453773E-02,0.,-0.348561801,3.072518437E-02,0.,-0.319514984, 0000613P0001650 +2.920499144E-02,0.,-0.290468167,2.768479851E-02,0.,-0.261421351, 0000613P0001651 +2.616460557E-02,0.,-0.232374534,2.464441264E-02,0.,-0.203327717, 0000613P0001652 +2.312421971E-02,0.,-0.1742809,2.160402678E-02,0.,-0.145234084, 0000613P0001653 +2.008383384E-02,0.,-0.116187267,1.856364091E-02,0., 0000613P0001654 +-8.714045018E-02,1.704344798E-02,0.,-5.809363345E-02, 0000613P0001655 +1.552325505E-02,0.,-2.904681673E-02,1.400306211E-02,0., 0000613P0001656 +-9.682272242E-03,1.298960016E-02,0.,0.,1.248286918E-02,0.,0., 0000613P0001657 +0.639904538,0.,0.,1.; 0000613P0001658 +110,0.,1.248286918E-02,0.,0.,1.287517131,0.; 0000615P0001659 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.908656989E-02,5.817313978E-02, 0000617P0001660 +8.725970967E-02,0.11634628,0.145432849,0.174519419,0.203605989, 0000617P0001661 +0.232692559,0.261779129,0.290865699,0.319952269,0.349038839, 0000617P0001662 +0.378125409,0.407211978,0.436298548,0.465385118,0.494471688, 0000617P0001663 +0.523558258,0.552644828,0.581731398,0.610817968,0.639904538, 0000617P0001664 +0.639904538,0.639904538,0.639904538,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000617P0001665 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,0.,1.287517131, 0000617P0001666 +0.,-9.682272242E-03,1.2870104,0.,-2.904681673E-02,1.285996938, 0000617P0001667 +0.,-5.809363345E-02,1.284476745,0.,-8.714045018E-02,1.282956552, 0000617P0001668 +0.,-0.116187267,1.281436359,0.,-0.145234084,1.279916166,0., 0000617P0001669 +-0.1742809,1.278395973,0.,-0.203327717,1.27687578,0., 0000617P0001670 +-0.232374534,1.275355588,0.,-0.261421351,1.273835395,0., 0000617P0001671 +-0.290468167,1.272315202,0.,-0.319514984,1.270795009,0., 0000617P0001672 +-0.348561801,1.269274816,0.,-0.377608617,1.267754623,0., 0000617P0001673 +-0.406655434,1.26623443,0.,-0.435702251,1.264714237,0., 0000617P0001674 +-0.464749068,1.263194044,0.,-0.493795884,1.261673851,0., 0000617P0001675 +-0.522842701,1.260153658,0.,-0.551889518,1.258633465,0., 0000617P0001676 +-0.580936335,1.257113272,0.,-0.609983151,1.255593079,0., 0000617P0001677 +-0.629347696,1.254579617,0.,-0.639029968,1.254072886,0.,0., 0000617P0001678 +0.639904538,0.,0.,1.; 0000617P0001679 +102,4,621,623,625,627; 0000619P0001680 +110,5.616361242E-02,2.37823971E-02,3.969111021E-02, 0000621P0001681 +5.616361242E-02,-2.37823971E-02,3.969111021E-02; 0000621P0001682 +110,5.616361242E-02,-2.37823971E-02,3.969111021E-02, 0000623P0001683 +5.748031496E-02,-2.509909964E-02,1.456692913E-02; 0000623P0001684 +110,5.748031496E-02,-2.509909964E-02,1.456692913E-02, 0000625P0001685 +5.748031496E-02,2.509909964E-02,1.456692913E-02; 0000625P0001686 +110,5.748031496E-02,2.509909964E-02,1.456692913E-02, 0000627P0001687 +5.616361242E-02,2.37823971E-02,3.969111021E-02; 0000627P0001688 +144,631,1,0,639; 0000629P0001689 +120,633,635,4.712339181,6.283185307; 0000631P0001690 +110,5.643558129E-02,-2.454581751E-02,4.340551181E-02, 0000633P0001691 +5.643558129E-02,-2.454581751E-02,4.03543307E-03; 0000633P0001692 +100,-7.128415858E-19,-2.667820306E-22,-7.49123942E-19, 0000635P0001693 +4.921259843E-04,-7.49123942E-19,2.558804393E-05,4.914603101E-04; 0000635P0001694 +124,-5.528825241E-21,-2.489943572E-05,-1.,5.643558129E-02, 0000637P0001695 +1.376646287E-25,-1.,2.489943572E-05,-2.454581751E-02,-1., 0000637P0001696 +-4.394471984E-42,5.528825243E-21,4.035433071E-03; 0000637P0001697 +142,0,631,641,649,3; 0000639P0001698 +102,3,643,645,647; 0000641P0001699 +126,24,3,1,0,1,0,3.141592654,3.141592654,3.141592654, 0000643P0001700 +3.141592654,3.212867984,3.284143315,3.355418645,3.426693976, 0000643P0001701 +3.497969306,3.569244637,3.640519967,3.711795298,3.783070628, 0000643P0001702 +3.854345959,3.925621289,3.99689662,4.06817195,4.139447281, 0000643P0001703 +4.210722611,4.281997942,4.353273272,4.424548603,4.495823933, 0000643P0001704 +4.567099264,4.638374594,4.709649925,4.709649925,4.709649925, 0000643P0001705 +4.709649925,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000643P0001706 +1.,1.,1.,1.,1.,1.,1.,1.,1.518436449,4.712364081,0.,1.517194608, 0000643P0001707 +4.736122567,0.,1.514799883,4.783648993,0.,1.51149144, 0000643P0001708 +4.854966107,0.,1.508484,4.926310027,0.,1.505792861,4.997679331, 0000643P0001709 +0.,1.503431868,5.069072133,0.,1.501413146,5.140486051,0., 0000643P0001710 +1.499747085,5.211918274,0.,1.498442265,5.283365616,0., 0000643P0001711 +1.497505412,5.354824576,0.,1.49694136,5.426291419,0., 0000643P0001712 +1.496753018,5.497762244,0.,1.49694136,5.569233069,0., 0000643P0001713 +1.497505412,5.640699912,0.,1.498442265,5.712158873,0., 0000643P0001714 +1.499747085,5.783606214,0.,1.501413146,5.855038438,0., 0000643P0001715 +1.503431868,5.926452356,0.,1.505792861,5.997845157,0.,1.508484, 0000643P0001716 +6.069214461,0.,1.51149144,6.140558382,0.,1.514799883, 0000643P0001717 +6.211875496,0.,1.517194608,6.259401922,0.,1.518436449, 0000643P0001718 +6.283160408,0.,3.141592654,4.709649925,-0.,-0.,1.; 0000643P0001719 +126,24,3,0,0,1,0,3.193952531,3.193952531,3.193952531, 0000645P0001720 +3.193952531,3.26297237,3.331992208,3.401012047,3.470031885, 0000645P0001721 +3.539051724,3.608071563,3.677091401,3.74611124,3.815131079, 0000645P0001722 +3.884150917,3.953170756,4.022190594,4.091210433,4.160230272, 0000645P0001723 +4.22925011,4.298269949,4.367289787,4.436309626,4.505329465, 0000645P0001724 +4.574349303,4.643369142,4.71238898,4.71238898,4.71238898, 0000645P0001725 +4.71238898,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000645P0001726 +1.,1.,1.,1.,1.,1.,1.,1.,1.518436449,6.283160408,0.,1.495429836, 0000645P0001727 +6.283160408,0.,1.449416611,6.283160408,0.,1.380396772, 0000645P0001728 +6.283160408,0.,1.311376934,6.283160408,0.,1.242357095, 0000645P0001729 +6.283160408,0.,1.173337256,6.283160408,0.,1.104317418, 0000645P0001730 +6.283160408,0.,1.035297579,6.283160408,0.,0.96627774, 0000645P0001731 +6.283160408,0.,0.897257902,6.283160408,0.,0.828238063, 0000645P0001732 +6.283160408,0.,0.759218225,6.283160408,0.,0.690198386, 0000645P0001733 +6.283160408,0.,0.621178547,6.283160408,0.,0.552158709, 0000645P0001734 +6.283160408,0.,0.48313887,6.283160408,0.,0.414119032, 0000645P0001735 +6.283160408,0.,0.345099193,6.283160408,0.,0.276079354, 0000645P0001736 +6.283160408,0.,0.207059516,6.283160408,0.,0.138039677, 0000645P0001737 +6.283160408,0.,6.901983861E-02,6.283160408,0.,2.300661287E-02, 0000645P0001738 +6.283160408,0.,-4.415199448E-21,6.283160408,0.,3.193952531, 0000645P0001739 +4.71238898,0.,0.,1.; 0000645P0001740 +126,24,3,1,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0000647P0001741 +4.781408819,4.850428658,4.919448496,4.988468335,5.057488173, 0000647P0001742 +5.126508012,5.195527851,5.264547689,5.333567528,5.402587366, 0000647P0001743 +5.471607205,5.540627044,5.609646882,5.678666721,5.747686559, 0000647P0001744 +5.816706398,5.885726237,5.954746075,6.023765914,6.092785752, 0000647P0001745 +6.161805591,6.23082543,6.23082543,6.23082543,6.23082543,1.,1., 0000647P0001746 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000647P0001747 +1.,1.,-2.785355922E-16,4.71238898,0.,2.300661287E-02, 0000647P0001748 +4.712386214,0.,6.901983859E-02,4.712387647,0.,0.138039677, 0000647P0001749 +4.712397797,0.,0.207059516,4.712355047,0.,0.276079354, 0000647P0001750 +4.712366502,0.,0.345099193,4.712363432,0.,0.414119032, 0000647P0001751 +4.712364255,0.,0.48313887,4.712364034,0.,0.552158709, 0000647P0001752 +4.712364093,0.,0.621178547,4.712364078,0.,0.690198386, 0000647P0001753 +4.712364082,0.,0.759218225,4.712364081,0.,0.828238063, 0000647P0001754 +4.712364081,0.,0.897257902,4.712364081,0.,0.96627774, 0000647P0001755 +4.712364081,0.,1.035297579,4.712364081,0.,1.104317418, 0000647P0001756 +4.712364081,0.,1.173337256,4.712364081,0.,1.242357095, 0000647P0001757 +4.712364081,0.,1.311376934,4.712364081,0.,1.380396772, 0000647P0001758 +4.712364081,0.,1.449416611,4.712364081,0.,1.495429836, 0000647P0001759 +4.712364081,0.,1.518436449,4.712364081,0.,4.71238898,6.23082543, 0000647P0001760 +0.,0.,1.; 0000647P0001761 +102,3,651,655,659; 0000649P0001762 +100,2.913259774E-19,2.894051468E-18,1.666854127E-18, 0000651P0001763 +-4.921259843E-04,2.345159179E-15,-1.347958815E-06, 0000651P0001764 +-4.921241382E-04; 0000651P0001765 +124,-0.998629535,2.735308799E-03,-5.226442765E-02, 0000653P0001766 +5.643558129E-02,2.286283049E-12,0.998633281,5.226442765E-02, 0000653P0001767 +-2.454581751E-02,5.23359562E-02,5.219280107E-02,-0.997264689, 0000653P0001768 +4.035433071E-03; 0000653P0001769 +100,3.005032793E-18,-9.348042353E-19,-1.333910153E-20, 0000655P0001770 +-4.914515427E-04,-2.575588394E-05,-1.043651304E-18, 0000655P0001771 +-4.921259843E-04; 0000655P0001772 +124,1.224646E-16,-2.719260372E-32,1.,5.643558129E-02,1., 0000657P0001773 +-2.220446049E-16,-1.224646E-16,-2.454581751E-02,2.220446049E-16, 0000657P0001774 +1.,8.125204719E-49,4.035433071E-03; 0000657P0001775 +100,1.560141315E-18,-3.798976116E-19,-1.333910153E-20, 0000659P0001776 +-3.798976116E-19,-4.921259843E-04,4.914515427E-04, 0000659P0001777 +-2.575588394E-05; 0000659P0001778 +124,1.,-2.71926043E-32,8.563055984E-15,5.643558129E-02, 0000661P0001779 +8.563055984E-15,-2.220446049E-16,-1.,-2.454581751E-02, 0000661P0001780 +1.928572987E-30,1.,-2.220446049E-16,4.035433071E-03; 0000661P0001781 +144,665,1,0,667; 0000663P0001782 +128,1,1,1,1,0,0,1,0,0,-0.2685222,-0.2685222,6.483528991E-17, 0000665P0001783 +6.483528991E-17,1.248286918E-02,1.248286918E-02,2.907517131, 0000665P0001784 +2.907517131,1.,1.,1.,1.,5.698886342E-02,-2.503726905E-02, 0000665P0001785 +4.009677187E-03,5.698886342E-02,-2.559055118E-02, 0000665P0001786 +1.456692913E-02,-5.698886342E-02,-2.503726905E-02, 0000665P0001787 +4.009677187E-03,-5.698886342E-02,-2.559055118E-02, 0000665P0001788 +1.456692913E-02,-0.2685222,6.483528991E-17,1.248286918E-02, 0000665P0001789 +2.907517131; 0000665P0001790 +142,0,665,669,687,3; 0000667P0001791 +102,8,671,673,675,677,679,681,683,685; 0000669P0001792 +110,6.483528991E-17,1.248286918E-02,0.,6.483528991E-17,1.2375, 0000671P0001793 +0.; 0000671P0001794 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600103E-03,5.917200207E-03, 0000673P0001795 +8.87580031E-03,1.183440041E-02,1.479300052E-02,1.775160062E-02, 0000673P0001796 +2.071020072E-02,2.366880083E-02,2.662740093E-02,2.958600103E-02, 0000673P0001797 +3.254460114E-02,3.550320124E-02,3.846180135E-02,4.142040145E-02, 0000673P0001798 +4.437900155E-02,4.733760166E-02,5.029620176E-02,5.325480186E-02, 0000673P0001799 +5.621340197E-02,5.917200207E-02,6.213060217E-02,6.508920228E-02, 0000673P0001800 +6.508920228E-02,6.508920228E-02,6.508920228E-02,1.,1.,1.,1.,1., 0000673P0001801 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000673P0001802 +6.483528991E-17,1.2375,0.,-9.862000356E-04,1.2375,0., 0000673P0001803 +-2.958600107E-03,1.2375,0.,-5.917200214E-03,1.2375,0., 0000673P0001804 +-8.875800321E-03,1.2375,0.,-1.183440043E-02,1.2375,0., 0000673P0001805 +-1.479300053E-02,1.2375,0.,-1.775160064E-02,1.2375,0., 0000673P0001806 +-2.071020075E-02,1.2375,0.,-2.366880085E-02,1.2375,0., 0000673P0001807 +-2.662740096E-02,1.2375,0.,-2.958600107E-02,1.2375,0., 0000673P0001808 +-3.254460118E-02,1.2375,0.,-3.550320128E-02,1.2375,0., 0000673P0001809 +-3.846180139E-02,1.2375,0.,-4.14204015E-02,1.2375,0., 0000673P0001810 +-4.43790016E-02,1.2375,0.,-4.733760171E-02,1.2375,0., 0000673P0001811 +-5.029620182E-02,1.2375,0.,-5.325480192E-02,1.2375,0., 0000673P0001812 +-5.621340203E-02,1.2375,0.,-5.917200214E-02,1.2375,0., 0000673P0001813 +-6.213060224E-02,1.2375,0.,-6.410300231E-02,1.2375,0., 0000673P0001814 +-6.508920235E-02,1.2375,0.,0.,6.508920228E-02,0.,0.,1.; 0000673P0001815 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.022727273E-02,4.045454546E-02, 0000675P0001816 +6.068181818E-02,8.090909091E-02,0.101136364,0.121363636, 0000675P0001817 +0.141590909,0.161818182,0.182045455,0.202272727,0.2225, 0000675P0001818 +0.242727273,0.262954545,0.283181818,0.303409091,0.323636364, 0000675P0001819 +0.343863636,0.364090909,0.384318182,0.404545455,0.424772727, 0000675P0001820 +0.445,0.445,0.445,0.445,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000675P0001821 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,-6.508920235E-02,1.2375,0., 0000675P0001822 +-6.508920235E-02,1.244242424,0.,-6.508920235E-02,1.257727273,0., 0000675P0001823 +-6.508920235E-02,1.277954546,0.,-6.508920235E-02,1.298181818,0., 0000675P0001824 +-6.508920235E-02,1.318409091,0.,-6.508920235E-02,1.338636364,0., 0000675P0001825 +-6.508920235E-02,1.358863636,0.,-6.508920235E-02,1.379090909,0., 0000675P0001826 +-6.508920235E-02,1.399318182,0.,-6.508920235E-02,1.419545455,0., 0000675P0001827 +-6.508920235E-02,1.439772727,0.,-6.508920235E-02,1.46,0., 0000675P0001828 +-6.508920235E-02,1.480227273,0.,-6.508920235E-02,1.500454546,0., 0000675P0001829 +-6.508920235E-02,1.520681818,0.,-6.508920235E-02,1.540909091,0., 0000675P0001830 +-6.508920235E-02,1.561136364,0.,-6.508920235E-02,1.581363636,0., 0000675P0001831 +-6.508920235E-02,1.601590909,0.,-6.508920235E-02,1.621818182,0., 0000675P0001832 +-6.508920235E-02,1.642045455,0.,-6.508920235E-02,1.662272727,0., 0000675P0001833 +-6.508920235E-02,1.675757576,0.,-6.508920235E-02,1.6825,0.,0., 0000675P0001834 +0.445,0.,0.,1.; 0000675P0001835 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600103E-03,5.917200207E-03, 0000677P0001836 +8.87580031E-03,1.183440041E-02,1.479300052E-02,1.775160062E-02, 0000677P0001837 +2.071020072E-02,2.366880083E-02,2.662740093E-02,2.958600103E-02, 0000677P0001838 +3.254460114E-02,3.550320124E-02,3.846180135E-02,4.142040145E-02, 0000677P0001839 +4.437900155E-02,4.733760166E-02,5.029620176E-02,5.325480186E-02, 0000677P0001840 +5.621340197E-02,5.917200207E-02,6.213060217E-02,6.508920228E-02, 0000677P0001841 +6.508920228E-02,6.508920228E-02,6.508920228E-02,1.,1.,1.,1.,1., 0000677P0001842 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000677P0001843 +-6.508920235E-02,1.6825,0.,-6.410300231E-02,1.6825,0., 0000677P0001844 +-6.213060224E-02,1.6825,0.,-5.917200214E-02,1.6825,0., 0000677P0001845 +-5.621340203E-02,1.6825,0.,-5.325480192E-02,1.6825,0., 0000677P0001846 +-5.029620182E-02,1.6825,0.,-4.733760171E-02,1.6825,0., 0000677P0001847 +-4.43790016E-02,1.6825,0.,-4.14204015E-02,1.6825,0., 0000677P0001848 +-3.846180139E-02,1.6825,0.,-3.550320128E-02,1.6825,0., 0000677P0001849 +-3.254460118E-02,1.6825,0.,-2.958600107E-02,1.6825,0., 0000677P0001850 +-2.662740096E-02,1.6825,0.,-2.366880085E-02,1.6825,0., 0000677P0001851 +-2.071020075E-02,1.6825,0.,-1.775160064E-02,1.6825,0., 0000677P0001852 +-1.479300053E-02,1.6825,0.,-1.183440043E-02,1.6825,0., 0000677P0001853 +-8.875800321E-03,1.6825,0.,-5.917200214E-03,1.6825,0., 0000677P0001854 +-2.958600107E-03,1.6825,0.,-9.862000356E-04,1.6825,0., 0000677P0001855 +6.483528991E-17,1.6825,0.,0.,6.508920228E-02,0.,0.,1.; 0000677P0001856 +110,6.483528991E-17,1.6825,0.,6.483528991E-17,2.907517131,0.; 0000679P0001857 +126,24,3,0,0,1,0,0.,0.,0.,0.,1.222225893E-02,2.444451785E-02, 0000681P0001858 +3.666677678E-02,4.888903571E-02,6.111129464E-02,7.333355356E-02, 0000681P0001859 +8.555581249E-02,9.777807142E-02,0.11000033,0.122222589, 0000681P0001860 +0.134444848,0.146667107,0.158889366,0.171111625,0.183333884, 0000681P0001861 +0.195556143,0.207778402,0.220000661,0.23222292,0.244445179, 0000681P0001862 +0.256667437,0.268889696,0.268889696,0.268889696,0.268889696,1., 0000681P0001863 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000681P0001864 +1.,1.,1.,6.483528991E-17,2.907517131,0.,-4.068518182E-03, 0000681P0001865 +2.907304201,0.,-1.220555455E-02,2.906878342,0.,-2.441110909E-02, 0000681P0001866 +2.906239552,0.,-3.661666364E-02,2.905600763,0.,-4.882221818E-02, 0000681P0001867 +2.904961974,0.,-6.102777273E-02,2.904323184,0.,-7.323332727E-02, 0000681P0001868 +2.903684395,0.,-8.543888182E-02,2.903045605,0.,-9.764443636E-02, 0000681P0001869 +2.902406816,0.,-0.109849991,2.901768027,0.,-0.122055545, 0000681P0001870 +2.901129237,0.,-0.1342611,2.900490448,0.,-0.146466655, 0000681P0001871 +2.899851659,0.,-0.158672209,2.899212869,0.,-0.170877764, 0000681P0001872 +2.89857408,0.,-0.183083318,2.89793529,0.,-0.195288873, 0000681P0001873 +2.897296501,0.,-0.207494427,2.896657712,0.,-0.219699982, 0000681P0001874 +2.896018922,0.,-0.231905536,2.895380133,0.,-0.244111091, 0000681P0001875 +2.894741344,0.,-0.256316645,2.894102554,0.,-0.264453682, 0000681P0001876 +2.893676695,0.,-0.2685222,2.893463765,0.,0.,0.268889696,0.,0., 0000681P0001877 +1.; 0000681P0001878 +110,-0.2685222,2.893463765,0.,-0.2685222,2.653623537E-02,0.; 0000683P0001879 +126,24,3,0,0,1,0,0.,0.,0.,0.,1.222225893E-02,2.444451785E-02, 0000685P0001880 +3.666677678E-02,4.888903571E-02,6.111129464E-02,7.333355356E-02, 0000685P0001881 +8.555581249E-02,9.777807142E-02,0.11000033,0.122222589, 0000685P0001882 +0.134444848,0.146667107,0.158889366,0.171111625,0.183333884, 0000685P0001883 +0.195556143,0.207778402,0.220000661,0.23222292,0.244445179, 0000685P0001884 +0.256667437,0.268889696,0.268889696,0.268889696,0.268889696,1., 0000685P0001885 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000685P0001886 +1.,1.,1.,-0.2685222,2.653623528E-02,0.,-0.264453682, 0000685P0001887 +2.632330549E-02,0.,-0.256316645,2.589744591E-02,0.,-0.244111091, 0000685P0001888 +2.525865655E-02,0.,-0.231905536,2.461986718E-02,0.,-0.219699982, 0000685P0001889 +2.398107781E-02,0.,-0.207494427,2.334228844E-02,0.,-0.195288873, 0000685P0001890 +2.270349907E-02,0.,-0.183083318,2.20647097E-02,0.,-0.170877764, 0000685P0001891 +2.142592034E-02,0.,-0.158672209,2.078713097E-02,0.,-0.146466655, 0000685P0001892 +2.01483416E-02,0.,-0.1342611,1.950955223E-02,0.,-0.122055545, 0000685P0001893 +1.887076286E-02,0.,-0.109849991,1.823197349E-02,0., 0000685P0001894 +-9.764443636E-02,1.759318413E-02,0.,-8.543888182E-02, 0000685P0001895 +1.695439476E-02,0.,-7.323332727E-02,1.631560539E-02,0., 0000685P0001896 +-6.102777273E-02,1.567681602E-02,0.,-4.882221818E-02, 0000685P0001897 +1.503802665E-02,0.,-3.661666364E-02,1.439923728E-02,0., 0000685P0001898 +-2.441110909E-02,1.376044792E-02,0.,-1.220555455E-02, 0000685P0001899 +1.312165855E-02,0.,-4.068518182E-03,1.269579897E-02,0., 0000685P0001900 +6.483528991E-17,1.248286918E-02,0.,0.,0.268889696,0.,0.,1.; 0000685P0001901 +102,8,689,691,693,695,697,699,701,703; 0000687P0001902 +110,5.698886342E-02,-2.559055118E-02,1.456692913E-02, 0000689P0001903 +8.75984252E-03,-2.559055118E-02,1.456692913E-02; 0000689P0001904 +110,8.75984252E-03,-2.559055118E-02,1.456692913E-02, 0000691P0001905 +8.75984252E-03,-2.545643679E-02,1.200787402E-02; 0000691P0001906 +110,8.75984252E-03,-2.545643679E-02,1.200787402E-02, 0000693P0001907 +-8.75984252E-03,-2.545643679E-02,1.200787402E-02; 0000693P0001908 +110,-8.75984252E-03,-2.545643679E-02,1.200787402E-02, 0000695P0001909 +-8.75984252E-03,-2.559055118E-02,1.456692913E-02; 0000695P0001910 +110,-8.75984252E-03,-2.559055118E-02,1.456692913E-02, 0000697P0001911 +-5.698886342E-02,-2.559055118E-02,1.456692913E-02; 0000697P0001912 +110,-5.698886342E-02,-2.559055118E-02,1.456692913E-02, 0000699P0001913 +-5.643558129E-02,-2.503726905E-02,4.009677187E-03; 0000699P0001914 +110,-5.643558129E-02,-2.503726905E-02,4.009677187E-03, 0000701P0001915 +5.643558129E-02,-2.503726905E-02,4.009677187E-03; 0000701P0001916 +110,5.643558129E-02,-2.503726905E-02,4.009677187E-03, 0000703P0001917 +5.698886342E-02,-2.559055118E-02,1.456692913E-02; 0000703P0001918 +144,707,1,0,709; 0000705P0001919 +128,1,1,1,1,0,0,1,0,0,-0.445,-0.445,5.178781709E-35, 0000707P0001920 +5.178781709E-35,-0.253829104,-0.253829104,0.,0.,1.,1.,1.,1., 0000707P0001921 +8.75984252E-03,-4.826999025E-02,5.118110236E-03,-8.75984252E-03, 0000707P0001922 +-4.826999025E-02,5.118110236E-03,8.75984252E-03, 0000707P0001923 +-3.827671846E-02,5.118110236E-03,-8.75984252E-03, 0000707P0001924 +-3.827671846E-02,5.118110236E-03,-0.445,5.178781709E-35, 0000707P0001925 +-0.253829104,0.; 0000707P0001926 +142,0,707,711,721,3; 0000709P0001927 +102,4,713,715,717,719; 0000711P0001928 +110,-0.445,-0.253829104,0.,1.599997912E-11,-0.253829104,0.; 0000713P0001929 +110,5.178781709E-35,-0.253829104,0.,5.178781709E-35, 0000715P0001930 +-5.339999554E-10,0.; 0000715P0001931 +110,5.178781709E-35,0.,0.,-0.445,0.,0.; 0000717P0001932 +110,-0.445,0.,0.,-0.445,-0.253829103,0.; 0000719P0001933 +102,4,723,725,727,729; 0000721P0001934 +110,8.75984252E-03,-4.826999025E-02,5.118110236E-03, 0000723P0001935 +-8.75984252E-03,-4.826999025E-02,5.118110236E-03; 0000723P0001936 +110,-8.75984252E-03,-4.826999025E-02,5.118110236E-03, 0000725P0001937 +-8.75984252E-03,-3.827671846E-02,5.118110236E-03; 0000725P0001938 +110,-8.75984252E-03,-3.827671846E-02,5.118110236E-03, 0000727P0001939 +8.75984252E-03,-3.827671846E-02,5.118110236E-03; 0000727P0001940 +110,8.75984252E-03,-3.827671846E-02,5.118110236E-03, 0000729P0001941 +8.75984252E-03,-4.826999025E-02,5.118110236E-03; 0000729P0001942 +144,733,1,0,735; 0000731P0001943 +128,1,1,1,1,0,0,1,0,0,-0.445,-0.445,2.194425197E-16, 0000733P0001944 +2.194425197E-16,-0.13,-0.13,5.551115123E-17,5.551115123E-17,1., 0000733P0001945 +1.,1.,1.,-8.75984252E-03,-4.826999025E-02,-2.294752315E-17, 0000733P0001946 +8.75984252E-03,-4.826999025E-02,-2.294752315E-17, 0000733P0001947 +-8.75984252E-03,-4.826999025E-02,5.118110236E-03,8.75984252E-03, 0000733P0001948 +-4.826999025E-02,5.118110236E-03,-0.445,2.194425197E-16,-0.13, 0000733P0001949 +5.551115123E-17; 0000733P0001950 +142,0,733,737,747,3; 0000735P0001951 +102,4,739,741,743,745; 0000737P0001952 +110,2.194425197E-16,-0.13,0.,2.194425197E-16,-5.99942318E-12,0.; 0000739P0001953 +110,2.194425197E-16,5.551115123E-17,0.,-0.445,5.551115123E-17, 0000741P0001954 +0.; 0000741P0001955 +110,-0.445,5.551115123E-17,0.,-0.445,-0.13,0.; 0000743P0001956 +110,-0.445,-0.13,0.,1.599997912E-11,-0.13,0.; 0000745P0001957 +102,4,749,751,753,755; 0000747P0001958 +110,8.75984252E-03,-4.826999025E-02,-2.240115355E-17, 0000749P0001959 +8.75984252E-03,-4.826999025E-02,5.118110236E-03; 0000749P0001960 +110,8.75984252E-03,-4.826999025E-02,5.118110236E-03, 0000751P0001961 +-8.75984252E-03,-4.826999025E-02,5.118110236E-03; 0000751P0001962 +110,-8.75984252E-03,-4.826999025E-02,5.118110236E-03, 0000753P0001963 +-8.75984252E-03,-4.826999025E-02,-1.639108796E-17; 0000753P0001964 +110,-8.75984252E-03,-4.826999025E-02,-1.758627146E-17, 0000755P0001965 +8.75984252E-03,-4.826999025E-02,-2.185478395E-17; 0000755P0001966 +144,759,1,0,761; 0000757P0001967 +128,1,1,1,1,0,0,1,0,0,-0.445,-0.445,2.736911063E-48, 0000759P0001968 +2.736911063E-48,-0.253829104,-0.253829104,2.40741243E-32, 0000759P0001969 +2.40741243E-32,1.,1.,1.,1.,-8.75984252E-03,-4.826999025E-02, 0000759P0001970 +-1.761974515E-17,8.75984252E-03,-4.826999025E-02, 0000759P0001971 +-2.188825764E-17,-8.75984252E-03,-3.827671846E-02, 0000759P0001972 +-1.540079306E-17,8.75984252E-03,-3.827671846E-02, 0000759P0001973 +-1.966930555E-17,-0.445,2.736911063E-48,-0.253829104, 0000759P0001974 +2.40741243E-32; 0000759P0001975 +142,0,759,763,773,3; 0000761P0001976 +102,4,765,767,769,771; 0000763P0001977 +110,-0.445,-0.253829104,0.,1.599997912E-11,-0.253829104,0.; 0000765P0001978 +110,2.736911063E-48,-0.253829104,0.,2.736911063E-48, 0000767P0001979 +-5.339999554E-10,0.; 0000767P0001980 +110,2.736911063E-48,2.40741243E-32,0.,-0.445,2.40741243E-32,0.; 0000769P0001981 +110,-0.445,1.762225899E-32,0.,-0.445,-0.253829103,0.; 0000771P0001982 +102,4,775,777,779,781; 0000773P0001983 +110,-8.75984252E-03,-4.826999025E-02,-1.758627146E-17, 0000775P0001984 +8.75984252E-03,-4.826999025E-02,-2.185478395E-17; 0000775P0001985 +110,8.75984252E-03,-4.826999025E-02,-2.188825764E-17, 0000777P0001986 +8.75984252E-03,-3.827671846E-02,-1.966930555E-17; 0000777P0001987 +110,8.75984252E-03,-3.827671846E-02,-1.966930555E-17, 0000779P0001988 +-8.75984252E-03,-3.827671846E-02,-1.540079306E-17; 0000779P0001989 +110,-8.75984252E-03,-3.827671846E-02,-1.311287037E-17, 0000781P0001990 +-8.75984252E-03,-4.826999025E-02,-1.533182246E-17; 0000781P0001991 +144,785,1,0,787; 0000783P0001992 +128,1,1,1,1,0,0,1,0,0,-0.253829104,-0.253829104,0.325635154, 0000785P0001993 +0.325635154,-4.261364993E-04,-4.261364993E-04,0.43542393, 0000785P0001994 +0.43542393,1.,1.,1.,1.,-8.75984252E-03,-4.826999025E-02, 0000785P0001995 +-1.677702753E-05,-8.75984252E-03,-2.545643679E-02, 0000785P0001996 +-1.677702753E-05,-8.75984252E-03,-4.826999025E-02, 0000785P0001997 +1.714267442E-02,-8.75984252E-03,-2.545643679E-02, 0000785P0001998 +1.714267442E-02,-0.253829104,0.325635154,-4.261232059E-04, 0000785P0001999 +0.43542393; 0000785P0002000 +142,0,785,789,817,3; 0000787P0002001 +102,13,791,793,795,797,799,801,803,805,807,809,811,813,815; 0000789P0002002 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600103E-03,5.917200207E-03, 0000791P0002003 +8.87580031E-03,1.183440041E-02,1.479300052E-02,1.775160062E-02, 0000791P0002004 +2.071020072E-02,2.366880083E-02,2.662740093E-02,2.958600103E-02, 0000791P0002005 +3.254460114E-02,3.550320124E-02,3.846180135E-02,4.142040145E-02, 0000791P0002006 +4.437900155E-02,4.733760166E-02,5.029620176E-02,5.325480186E-02, 0000791P0002007 +5.621340197E-02,5.917200207E-02,6.213060217E-02,6.508920228E-02, 0000791P0002008 +6.508920228E-02,6.508920228E-02,6.508920228E-02,1.,1.,1.,1.,1., 0000791P0002009 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000791P0002010 +0.325635154,0.305,0.,0.32558354,0.305984848,0.,0.325480313, 0000791P0002011 +0.307954545,0.,0.325325472,0.310909091,0.,0.325170631, 0000791P0002012 +0.313863636,0.,0.325015789,0.316818182,0.,0.324860948, 0000791P0002013 +0.319772727,0.,0.324706107,0.322727273,0.,0.324551266, 0000791P0002014 +0.325681818,0.,0.324396425,0.328636363,0.,0.324241584, 0000791P0002015 +0.331590909,0.,0.324086742,0.334545454,0.,0.323931901,0.3375,0., 0000791P0002016 +0.32377706,0.340454545,0.,0.323622219,0.343409091,0., 0000791P0002017 +0.323467378,0.346363636,0.,0.323312537,0.349318182,0., 0000791P0002018 +0.323157695,0.352272727,0.,0.323002854,0.355227272,0., 0000791P0002019 +0.322848013,0.358181818,0.,0.322693172,0.361136363,0., 0000791P0002020 +0.322538331,0.364090909,0.,0.32238349,0.367045454,0., 0000791P0002021 +0.322280262,0.369015151,0.,0.322228648,0.37,0.,0., 0000791P0002022 +6.508920228E-02,0.,0.,1.; 0000791P0002023 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600115E-03,5.91720023E-03, 0000793P0002024 +8.875800345E-03,1.183440046E-02,1.479300058E-02,1.775160069E-02, 0000793P0002025 +2.071020081E-02,2.366880092E-02,2.662740104E-02,2.958600115E-02, 0000793P0002026 +3.254460127E-02,3.550320138E-02,3.84618015E-02,4.142040161E-02, 0000793P0002027 +4.437900173E-02,4.733760184E-02,5.029620196E-02,5.325480207E-02, 0000793P0002028 +5.621340219E-02,5.91720023E-02,6.213060242E-02,6.508920253E-02, 0000793P0002029 +6.508920253E-02,6.508920253E-02,6.508920253E-02,1.,1.,1.,1.,1., 0000793P0002030 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000793P0002031 +0.322228648,0.37,0.,0.322280262,0.370984848,0.,0.32238349, 0000793P0002032 +0.372954545,0.,0.322538331,0.375909091,0.,0.322693172, 0000793P0002033 +0.378863636,0.,0.322848013,0.381818181,0.,0.323002854, 0000793P0002034 +0.384772727,0.,0.323157695,0.387727272,0.,0.323312537, 0000793P0002035 +0.390681818,0.,0.323467378,0.393636363,0.,0.323622219, 0000793P0002036 +0.396590909,0.,0.32377706,0.399545454,0.,0.323931901,0.4025,0., 0000793P0002037 +0.324086742,0.405454545,0.,0.324241584,0.408409091,0., 0000793P0002038 +0.324396425,0.411363636,0.,0.324551266,0.414318181,0., 0000793P0002039 +0.324706107,0.417272727,0.,0.324860948,0.420227272,0., 0000793P0002040 +0.325015789,0.423181818,0.,0.325170631,0.426136363,0., 0000793P0002041 +0.325325472,0.429090909,0.,0.325480313,0.432045454,0., 0000793P0002042 +0.32558354,0.434015151,0.,0.325635154,0.435,0.,0., 0000793P0002043 +6.508920253E-02,0.,0.,1.; 0000793P0002044 +110,0.325635154,0.435,0.,0.260671317,0.435,0.; 0000795P0002045 +126,24,3,1,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0000797P0002046 +4.765789608,4.819190236,4.872590864,4.925991492,4.97939212, 0000797P0002047 +5.032792748,5.086193376,5.139594004,5.192994631,5.246395259, 0000797P0002048 +5.299795887,5.353196515,5.406597143,5.459997771,5.513398399, 0000797P0002049 +5.566799027,5.620199655,5.673600282,5.72700091,5.780401538, 0000797P0002050 +5.833802166,5.887202794,5.887202794,5.887202794,5.887202794,1., 0000797P0002051 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000797P0002052 +1.,1.,1.,0.260671317,0.435,0.,0.257734276,0.435000111,0., 0000797P0002053 +0.251860218,0.434843071,0.,0.24307423,0.434137862,0., 0000797P0002054 +0.234338416,0.432964621,0.,0.225677675,0.431326799,0., 0000797P0002055 +0.217116699,0.429229036,0.,0.208679895,0.426677321,0., 0000797P0002056 +0.200391316,0.423678926,0.,0.192274593,0.4202424,0.,0.184352865, 0000797P0002057 +0.416377541,0.,0.176648716,0.412095367,0.,0.169184113, 0000797P0002058 +0.407408086,0.,0.161980334,0.402329062,0.,0.155057919, 0000797P0002059 +0.396872774,0.,0.148436602,0.391054778,0.,0.14213526, 0000797P0002060 +0.384891661,0.,0.136171859,0.378400994,0.,0.1305634,0.371601281, 0000797P0002061 +0.,0.12532587,0.364511909,0.,0.120474209,0.357153085,0., 0000797P0002062 +0.116022222,0.349545803,0.,0.111982698,0.341711702,0., 0000797P0002063 +0.109572099,0.336352762,0.,0.108439341,0.333642952,0., 0000797P0002064 +4.71238898,5.887202794,0.,0.,1.; 0000797P0002065 +126,24,3,0,0,1,0,-1.05750058E-10,-1.05750058E-10, 0000799P0002066 +-1.05750058E-10,-1.05750058E-10,8.973622387E-03,1.794724488E-02, 0000799P0002067 +2.692086737E-02,3.589448987E-02,4.486811236E-02,5.384173485E-02, 0000799P0002068 +6.281535735E-02,7.178897984E-02,8.076260233E-02,8.973622483E-02, 0000799P0002069 +9.870984732E-02,0.10768347,0.116657092,0.125630715,0.134604337, 0000799P0002070 +0.14357796,0.152551582,0.161525205,0.170498827,0.17947245, 0000799P0002071 +0.188446072,0.197419695,0.197419695,0.197419695,0.197419695,1., 0000799P0002072 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000799P0002073 +1.,1.,1.,0.108439341,0.333642952,0.,0.107285588,0.33088321,0., 0000799P0002074 +0.104978081,0.325363726,0.,0.101516822,0.3170845,0., 0000799P0002075 +9.805556213E-02,0.308805274,0.,9.459430259E-02,0.300526048,0., 0000799P0002076 +9.113304305E-02,0.292246822,0.,8.767178351E-02,0.283967596,0., 0000799P0002077 +8.421052397E-02,0.27568837,0.,8.074926444E-02,0.267409144,0., 0000799P0002078 +7.72880049E-02,0.259129918,0.,7.382674536E-02,0.250850692,0., 0000799P0002079 +7.036548582E-02,0.242571466,0.,6.690422628E-02,0.23429224,0., 0000799P0002080 +6.344296674E-02,0.226013014,0.,5.998170721E-02,0.217733788,0., 0000799P0002081 +5.652044767E-02,0.209454562,0.,5.305918813E-02,0.201175336,0., 0000799P0002082 +4.959792859E-02,0.19289611,0.,4.613666905E-02,0.184616884,0., 0000799P0002083 +4.267540952E-02,0.176337658,0.,3.921414998E-02,0.168058432,0., 0000799P0002084 +3.575289044E-02,0.159779206,0.,3.344538408E-02,0.154259722,0., 0000799P0002085 +3.22916309E-02,0.15149998,0.,-1.05750058E-10,0.197419695,0.,0., 0000799P0002086 +1.; 0000799P0002087 +126,24,3,1,0,1,0,0.395982513,0.395982513,0.395982513, 0000801P0002088 +0.395982513,0.449383141,0.502783769,0.556184397,0.609585025, 0000801P0002089 +0.662985653,0.71638628,0.769786908,0.823187536,0.876588164, 0000801P0002090 +0.929988792,0.98338942,1.036790048,1.090190676,1.143591304, 0000801P0002091 +1.196991932,1.250392559,1.303793187,1.357193815,1.410594443, 0000801P0002092 +1.463995071,1.517395699,1.570796327,1.570796327,1.570796327, 0000801P0002093 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000801P0002094 +1.,1.,1.,1.,1.,1.,1.,1.,3.229163093E-02,0.15149998,0., 0000801P0002095 +3.205134899E-02,0.150925172,0.,3.15400097E-02,0.149788427,0., 0000801P0002096 +3.068314088E-02,0.148126648,0.,2.973878015E-02,0.146512982,0., 0000801P0002097 +2.87096399E-02,0.144952019,0.,2.759864878E-02,0.143448213,0., 0000801P0002098 +2.640897561E-02,0.14200585,0.,2.51440117E-02,0.140629041,0., 0000801P0002099 +2.38073635E-02,0.139321714,0.,2.24028417E-02,0.138087593,0., 0000801P0002100 +2.093445054E-02,0.136930199,0.,1.940637631E-02,0.13585283,0., 0000801P0002101 +1.782297549E-02,0.134858558,0.,1.618876226E-02,0.133950218,0., 0000801P0002102 +1.450839568E-02,0.1331304,0.,1.27866664E-02,0.13240144,0., 0000801P0002103 +1.102848298E-02,0.131765417,0.,9.238857907E-03,0.131224144,0., 0000801P0002104 +7.422893336E-03,0.130779164,0.,5.585766387E-03,0.130431747,0., 0000801P0002105 +3.732715008E-03,0.130182878,0.,1.869020692E-03,0.130033288,0., 0000801P0002106 +6.230083608E-04,0.129999976,0.,-4.831872938E-10,0.13,0., 0000801P0002107 +0.395982513,1.570796327,-0.,-0.,1.; 0000801P0002108 +126,24,3,0,0,1,0,0.,0.,0.,0.,1.153768652E-02,2.307537304E-02, 0000803P0002109 +3.461305956E-02,4.615074608E-02,5.768843261E-02,6.922611913E-02, 0000803P0002110 +8.076380565E-02,9.230149217E-02,0.103839179,0.115376865, 0000803P0002111 +0.126914552,0.138452238,0.149989925,0.161527611,0.173065298, 0000803P0002112 +0.184602984,0.196140671,0.207678357,0.219216044,0.23075373, 0000803P0002113 +0.242291417,0.253829103,0.253829103,0.253829103,0.253829103,1., 0000803P0002114 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000803P0002115 +1.,1.,1.,-4.831872938E-10,0.13,0.,-3.845895991E-03,0.13,0., 0000803P0002116 +-1.153768701E-02,0.13,0.,-2.307537353E-02,0.13,0., 0000803P0002117 +-3.461306005E-02,0.13,0.,-4.615074658E-02,0.13,0., 0000803P0002118 +-5.76884331E-02,0.13,0.,-6.922611962E-02,0.13,0., 0000803P0002119 +-8.076380615E-02,0.13,0.,-9.230149267E-02,0.13,0.,-0.103839179, 0000803P0002120 +0.13,0.,-0.115376866,0.13,0.,-0.126914552,0.13,0.,-0.138452239, 0000803P0002121 +0.13,0.,-0.149989925,0.13,0.,-0.161527612,0.13,0.,-0.173065298, 0000803P0002122 +0.13,0.,-0.184602985,0.13,0.,-0.196140671,0.13,0.,-0.207678358, 0000803P0002123 +0.13,0.,-0.219216044,0.13,0.,-0.230753731,0.13,0.,-0.242291417, 0000803P0002124 +0.13,0.,-0.249983208,0.13,0.,-0.253829104,0.13,0.,0., 0000803P0002125 +0.253829103,0.,0.,1.; 0000803P0002126 +110,-0.253829104,0.13,0.,-0.253829104,-8.022479903E-11,0.; 0000805P0002127 +126,24,3,0,0,1,0,9.439469945E-35,9.439469945E-35, 0000807P0002128 +9.439469945E-35,9.439469945E-35,1.153768652E-02,2.307537304E-02, 0000807P0002129 +3.461305956E-02,4.615074608E-02,5.768843261E-02,6.922611913E-02, 0000807P0002130 +8.076380565E-02,9.230149217E-02,0.103839179,0.115376865, 0000807P0002131 +0.126914552,0.138452238,0.149989925,0.161527611,0.173065298, 0000807P0002132 +0.184602984,0.196140671,0.207678357,0.219216044,0.23075373, 0000807P0002133 +0.242291417,0.253829103,0.253829103,0.253829103,0.253829103,1., 0000807P0002134 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000807P0002135 +1.,1.,1.,-0.253829104,-3.003794045E-13,0.,-0.249983208, 0000807P0002136 +-3.003855049E-13,0.,-0.242291417,-3.003872617E-13,0., 0000807P0002137 +-0.230753731,-3.003727919E-13,0.,-0.219216044,-3.003851078E-13, 0000807P0002138 +0.,-0.207678358,-3.003642766E-13,0.,-0.196140671, 0000807P0002139 +-3.003455388E-13,0.,-0.184602985,-3.003777232E-13,0., 0000807P0002140 +-0.173065298,-3.003600497E-13,0.,-0.161527612,-3.003410629E-13, 0000807P0002141 +0.,-0.149989925,-3.003572218E-13,0.,-0.138452239, 0000807P0002142 +-3.003439218E-13,0.,-0.126914552,-3.003626038E-13,0., 0000807P0002143 +-0.115376866,-3.003618851E-13,0.,-0.103839179,-3.003253364E-13, 0000807P0002144 +0.,-9.230149267E-02,-3.003546865E-13,0.,-8.076380615E-02, 0000807P0002145 +-3.003343735E-13,0.,-6.922611962E-02,-3.003192497E-13,0., 0000807P0002146 +-5.76884331E-02,-3.003352438E-13,0.,-4.615074658E-02, 0000807P0002147 +-3.003535653E-13,0.,-3.461306005E-02,-3.003029289E-13,0., 0000807P0002148 +-2.307537353E-02,-3.003367469E-13,0.,-1.153768701E-02, 0000807P0002149 +-3.003327268E-13,0.,-3.845895991E-03,-3.003248825E-13,0., 0000807P0002150 +-4.831872125E-10,-3.003174282E-13,0.,9.439469945E-35, 0000807P0002151 +0.253829103,0.,0.,1.; 0000807P0002152 +126,24,3,1,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0000809P0002153 +4.765789608,4.819190236,4.872590864,4.925991492,4.97939212, 0000809P0002154 +5.032792748,5.086193376,5.139594004,5.192994631,5.246395259, 0000809P0002155 +5.299795887,5.353196515,5.406597143,5.459997771,5.513398399, 0000809P0002156 +5.566799027,5.620199655,5.673600282,5.72700091,5.780401538, 0000809P0002157 +5.833802166,5.887202794,5.887202794,5.887202794,5.887202794,1., 0000809P0002158 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000809P0002159 +1.,1.,1.,-4.831872125E-10,-2.9999355E-13,0.,2.937041209E-03, 0000809P0002160 +-1.1154669E-07,-0.,8.811099339E-03,1.569285309E-04,0., 0000809P0002161 +1.759708683E-02,8.621374497E-04,0.,2.633290047E-02, 0000809P0002162 +2.03537831E-03,0.,3.49936418E-02,3.673200783E-03,0., 0000809P0002163 +4.355461763E-02,5.770963782E-03,0.,5.199142155E-02, 0000809P0002164 +8.322679117E-03,0.,6.028000053E-02,1.132107401E-02,0., 0000809P0002165 +6.839672427E-02,1.475759964E-02,0.,7.631845241E-02, 0000809P0002166 +1.862245879E-02,0.,8.402260049E-02,2.29046329E-02,0., 0000809P0002167 +9.148720439E-02,2.759191373E-02,0.,9.869098288E-02, 0000809P0002168 +3.267093808E-02,0.,0.105613398,3.812722589E-02,0.,0.112234715, 0000809P0002169 +4.394522157E-02,0.,0.118536057,5.010833831E-02,0.,0.124499458, 0000809P0002170 +5.659900533E-02,0.,0.130107917,6.33987183E-02,0.,0.135345447, 0000809P0002171 +7.048809068E-02,0.,0.140197108,7.784691439E-02,0.,0.144649094, 0000809P0002172 +8.545419721E-02,0.,0.148688619,9.32882982E-02,0.,0.151099218, 0000809P0002173 +9.86472375E-02,0.,0.152231976,0.101357048,0.,4.71238898, 0000809P0002174 +5.887202794,0.,0.,1.; 0000809P0002175 +126,24,3,0,0,1,0,-8.176192623E-11,-8.176192623E-11, 0000811P0002176 +-8.176192623E-11,-8.176192623E-11,8.97362241E-03,1.79472449E-02, 0000811P0002177 +2.692086739E-02,3.589448988E-02,4.486811238E-02,5.384173487E-02, 0000811P0002178 +6.281535736E-02,7.178897985E-02,8.076260234E-02,8.973622483E-02, 0000811P0002179 +9.870984733E-02,0.10768347,0.116657092,0.125630715,0.134604337, 0000811P0002180 +0.14357796,0.152551582,0.161525205,0.170498827,0.17947245, 0000811P0002181 +0.188446072,0.197419695,0.197419695,0.197419695,0.197419695,1., 0000811P0002182 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000811P0002183 +1.,1.,1.,0.152231976,0.101357048,0.,0.153385729,0.10411679,0., 0000811P0002184 +0.155693236,0.109636274,0.,0.159154495,0.1179155,0.,0.162615755, 0000811P0002185 +0.126194726,0.,0.166077014,0.134473952,0.,0.169538274, 0000811P0002186 +0.142753178,0.,0.172999533,0.151032404,0.,0.176460793, 0000811P0002187 +0.15931163,0.,0.179922053,0.167590856,0.,0.183383312, 0000811P0002188 +0.175870082,0.,0.186844572,0.184149308,0.,0.190305831, 0000811P0002189 +0.192428534,0.,0.193767091,0.20070776,0.,0.19722835,0.208986986, 0000811P0002190 +0.,0.20068961,0.217266212,0.,0.204150869,0.225545438,0., 0000811P0002191 +0.207612129,0.233824664,0.,0.211073388,0.24210389,0., 0000811P0002192 +0.214534648,0.250383116,0.,0.217995907,0.258662342,0., 0000811P0002193 +0.221457167,0.266941568,0.,0.224918427,0.275220794,0., 0000811P0002194 +0.227225933,0.280740278,0.,0.228379686,0.28350002,0., 0000811P0002195 +-8.176192623E-11,0.197419695,0.,0.,1.; 0000811P0002196 +126,24,3,1,0,1,0,0.395982512,0.395982512,0.395982512, 0000813P0002197 +0.395982512,0.44938314,0.502783768,0.556184396,0.609585024, 0000813P0002198 +0.662985652,0.71638628,0.769786908,0.823187536,0.876588164, 0000813P0002199 +0.929988791,0.983389419,1.036790047,1.090190675,1.143591303, 0000813P0002200 +1.196991931,1.250392559,1.303793187,1.357193815,1.410594443, 0000813P0002201 +1.463995071,1.517395699,1.570796327,1.570796327,1.570796327, 0000813P0002202 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000813P0002203 +1.,1.,1.,1.,1.,1.,1.,1.,0.228379686,0.28350002,0.,0.228619968, 0000813P0002204 +0.284074828,0.,0.229131307,0.285211573,0.,0.229988176, 0000813P0002205 +0.286873352,0.,0.230932537,0.288487018,0.,0.231961677, 0000813P0002206 +0.290047981,0.,0.233072668,0.291551787,0.,0.234262341, 0000813P0002207 +0.29299415,0.,0.235527305,0.294370958,0.,0.236863953, 0000813P0002208 +0.295678286,0.,0.238268475,0.296912406,0.,0.239736866, 0000813P0002209 +0.298069801,0.,0.241264941,0.29914717,0.,0.242848341, 0000813P0002210 +0.300141441,0.,0.244482555,0.301049781,0.,0.246162921,0.3018696, 0000813P0002211 +0.,0.247884651,0.30259856,0.,0.249642834,0.303234583,0., 0000813P0002212 +0.251432459,0.303775856,0.,0.253248424,0.304220836,0., 0000813P0002213 +0.255085551,0.304568253,0.,0.256938602,0.304817122,0., 0000813P0002214 +0.258802296,0.304966712,0.,0.260048309,0.305000023,0., 0000813P0002215 +0.260671317,0.305,0.,0.395982512,1.570796327,-0.,-0.,1.; 0000813P0002216 +110,0.260671317,0.305,0.,0.325635154,0.305,0.; 0000815P0002217 +102,13,819,821,823,825,829,831,835,837,839,841,845,847,851; 0000817P0002218 +110,-8.75984252E-03,-2.545643679E-02,1.200787402E-02, 0000819P0002219 +-8.75984252E-03,-2.559055118E-02,1.456692913E-02; 0000819P0002220 +110,-8.75984252E-03,-2.559055118E-02,1.456692913E-02, 0000821P0002221 +-8.75984252E-03,-2.545643679E-02,1.712598425E-02; 0000821P0002222 +110,-8.75984252E-03,-2.545643679E-02,1.712598425E-02, 0000823P0002223 +-8.75984252E-03,-2.801406815E-02,1.712598425E-02; 0000823P0002224 +100,1.525993215E-19,-1.286956516E-18,3.361453586E-19, 0000825P0002225 +-2.729713737E-18,-6.496062992E-03,5.993384904E-03, 0000825P0002226 +-2.505628022E-03; 0000825P0002227 +124,-1.224646E-16,2.719260372E-32,1.,-8.75984252E-03,-1., 0000827P0002228 +2.220446049E-16,-1.224646E-16,-2.801406815E-02,-2.220446049E-16, 0000827P0002229 +-1.,8.125204719E-49,1.062992126E-02; 0000827P0002230 +110,-8.75984252E-03,-3.400745306E-02,1.313554928E-02, 0000829P0002231 +-8.75984252E-03,-3.700539439E-02,5.964566139E-03; 0000829P0002232 +100,-3.164034883E-19,3.692263304E-19,2.427716479E-19, 0000831P0002233 +1.271324071E-03,5.314968532E-04,6.189343111E-20,1.377952756E-03; 0000831P0002234 +124,1.224646E-16,2.719260372E-32,-1.,-8.75984252E-03,1., 0000833P0002235 +2.220446049E-16,1.224646E-16,-3.827671846E-02,2.220446049E-16, 0000833P0002236 +-1.,-8.125204719E-49,6.496062992E-03; 0000833P0002237 +110,-8.75984252E-03,-3.827671846E-02,5.118110236E-03, 0000835P0002238 +-8.75984252E-03,-4.826999025E-02,5.118110236E-03; 0000835P0002239 +110,-8.75984252E-03,-4.826999025E-02,5.118110236E-03, 0000837P0002240 +-8.75984252E-03,-4.826999025E-02,-1.529834876E-17; 0000837P0002241 +110,-8.75984252E-03,-4.826999025E-02,-1.533182246E-17, 0000839P0002242 +-8.75984252E-03,-3.827671846E-02,-1.311287037E-17; 0000839P0002243 +100,3.164034883E-19,3.692263304E-19,-2.427716479E-19, 0000841P0002244 +-1.073530891E-18,-6.496062992E-03,5.993384904E-03, 0000841P0002245 +-2.505628022E-03; 0000841P0002246 +124,1.224646E-16,-2.719260372E-32,1.,-8.75984252E-03,1., 0000843P0002247 +-2.220446049E-16,-1.224646E-16,-3.827671846E-02,2.220446049E-16, 0000843P0002248 +1.,8.125204719E-49,6.496062992E-03; 0000843P0002249 +110,-8.75984252E-03,-3.228333355E-02,3.990434968E-03, 0000845P0002250 +-8.75984252E-03,-2.928539222E-02,1.116141811E-02; 0000845P0002251 +100,-1.525993215E-19,-1.286956516E-18,-3.361453586E-19, 0000847P0002252 +1.271324071E-03,5.314968519E-04,-1.592155159E-18, 0000847P0002253 +1.377952756E-03; 0000847P0002254 +124,-1.224646E-16,-2.719260372E-32,-1.,-8.75984252E-03,-1., 0000849P0002255 +-2.220446049E-16,1.224646E-16,-2.801406815E-02,-2.220446049E-16, 0000849P0002256 +1.,-8.125204719E-49,1.062992126E-02; 0000849P0002257 +110,-8.75984252E-03,-2.801406815E-02,1.200787402E-02, 0000851P0002258 +-8.75984252E-03,-2.545643679E-02,1.200787402E-02; 0000851P0002259 +144,855,1,0,857; 0000853P0002260 +128,1,1,1,1,0,0,1,0,0,-5.551115123E-17,-5.551115123E-17, 0000855P0002261 +0.2685222,0.2685222,1.248286918E-02,1.248286918E-02,1.287517131, 0000855P0002262 +1.287517131,1.,1.,1.,1.,5.748031496E-02,-2.509909964E-02, 0000855P0002263 +1.456692913E-02,5.692703283E-02,-2.509909964E-02, 0000855P0002264 +4.009677187E-03,5.748031496E-02,2.509909964E-02,1.456692913E-02, 0000855P0002265 +5.692703283E-02,2.509909964E-02,4.009677187E-03, 0000855P0002266 +-5.551115123E-17,0.2685222,1.248286918E-02,1.287517131; 0000855P0002267 +142,0,855,859,869,3; 0000857P0002268 +102,4,861,863,865,867; 0000859P0002269 +110,-5.551115123E-17,1.287517131,0.,-5.551115123E-17, 0000861P0002270 +1.248286929E-02,0.; 0000861P0002271 +126,24,3,0,0,1,0,0.,0.,0.,0.,1.222225893E-02,2.444451785E-02, 0000863P0002272 +3.666677678E-02,4.888903571E-02,6.111129464E-02,7.333355356E-02, 0000863P0002273 +8.555581249E-02,9.777807142E-02,0.11000033,0.122222589, 0000863P0002274 +0.134444848,0.146667107,0.158889366,0.171111625,0.183333884, 0000863P0002275 +0.195556143,0.207778402,0.220000661,0.23222292,0.244445179, 0000863P0002276 +0.256667437,0.268889696,0.268889696,0.268889696,0.268889696,1., 0000863P0002277 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000863P0002278 +1.,1.,1.,-5.551115123E-17,1.248286918E-02,0.,4.068518182E-03, 0000863P0002279 +1.269579897E-02,0.,1.220555455E-02,1.312165855E-02,0., 0000863P0002280 +2.441110909E-02,1.376044792E-02,0.,3.661666364E-02, 0000863P0002281 +1.439923728E-02,0.,4.882221818E-02,1.503802665E-02,0., 0000863P0002282 +6.102777273E-02,1.567681602E-02,0.,7.323332727E-02, 0000863P0002283 +1.631560539E-02,0.,8.543888182E-02,1.695439476E-02,0., 0000863P0002284 +9.764443636E-02,1.759318413E-02,0.,0.109849991,1.823197349E-02, 0000863P0002285 +0.,0.122055545,1.887076286E-02,0.,0.1342611,1.950955223E-02,0., 0000863P0002286 +0.146466655,2.01483416E-02,0.,0.158672209,2.078713097E-02,0., 0000863P0002287 +0.170877764,2.142592034E-02,0.,0.183083318,2.20647097E-02,0., 0000863P0002288 +0.195288873,2.270349907E-02,0.,0.207494427,2.334228844E-02,0., 0000863P0002289 +0.219699982,2.398107781E-02,0.,0.231905536,2.461986718E-02,0., 0000863P0002290 +0.244111091,2.525865655E-02,0.,0.256316645,2.589744591E-02,0., 0000863P0002291 +0.264453682,2.632330549E-02,0.,0.2685222,2.653623528E-02,0.,0., 0000863P0002292 +0.268889696,0.,0.,1.; 0000863P0002293 +110,0.2685222,2.653623528E-02,0.,0.2685222,1.273463765,0.; 0000865P0002294 +126,24,3,0,0,1,0,0.,0.,0.,0.,1.222225893E-02,2.444451785E-02, 0000867P0002295 +3.666677678E-02,4.888903571E-02,6.111129464E-02,7.333355356E-02, 0000867P0002296 +8.555581249E-02,9.777807142E-02,0.11000033,0.122222589, 0000867P0002297 +0.134444848,0.146667107,0.158889366,0.171111625,0.183333884, 0000867P0002298 +0.195556143,0.207778402,0.220000661,0.23222292,0.244445179, 0000867P0002299 +0.256667437,0.268889696,0.268889696,0.268889696,0.268889696,1., 0000867P0002300 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000867P0002301 +1.,1.,1.,0.2685222,1.273463765,0.,0.264453682,1.273676695,0., 0000867P0002302 +0.256316645,1.274102554,0.,0.244111091,1.274741344,0., 0000867P0002303 +0.231905536,1.275380133,0.,0.219699982,1.276018922,0., 0000867P0002304 +0.207494427,1.276657712,0.,0.195288873,1.277296501,0., 0000867P0002305 +0.183083318,1.27793529,0.,0.170877764,1.27857408,0.,0.158672209, 0000867P0002306 +1.279212869,0.,0.146466655,1.279851659,0.,0.1342611,1.280490448, 0000867P0002307 +0.,0.122055545,1.281129237,0.,0.109849991,1.281768027,0., 0000867P0002308 +9.764443636E-02,1.282406816,0.,8.543888182E-02,1.283045605,0., 0000867P0002309 +7.323332727E-02,1.283684395,0.,6.102777273E-02,1.284323184,0., 0000867P0002310 +4.882221818E-02,1.284961974,0.,3.661666364E-02,1.285600763,0., 0000867P0002311 +2.441110909E-02,1.286239552,0.,1.220555455E-02,1.286878342,0., 0000867P0002312 +4.068518182E-03,1.287304201,0.,-5.551115123E-17,1.287517131,0., 0000867P0002313 +0.,0.268889696,0.,0.,1.; 0000867P0002314 +102,4,871,873,875,877; 0000869P0002315 +110,5.748031496E-02,2.509909964E-02,1.456692913E-02, 0000871P0002316 +5.748031496E-02,-2.509909964E-02,1.456692913E-02; 0000871P0002317 +110,5.748031496E-02,-2.509909964E-02,1.456692913E-02, 0000873P0002318 +5.692703283E-02,-2.454581751E-02,4.009677187E-03; 0000873P0002319 +110,5.692703283E-02,-2.454581751E-02,4.009677187E-03, 0000875P0002320 +5.692703283E-02,2.454581751E-02,4.009677187E-03; 0000875P0002321 +110,5.692703283E-02,2.454581751E-02,4.009677187E-03, 0000877P0002322 +5.748031496E-02,2.509909964E-02,1.456692913E-02; 0000877P0002323 +144,881,1,0,889; 0000879P0002324 +120,883,885,4.712339182,6.283185308; 0000881P0002325 +110,-5.567216088E-02,-2.37823971E-02,7.903543307E-02, 0000883P0002326 +-5.567216088E-02,-2.37823971E-02,3.966535433E-02; 0000883P0002327 +100,2.987958743E-19,3.461763629E-18,1.493979372E-18, 0000885P0002328 +-2.558804393E-05,4.914603101E-04,-4.921259843E-04, 0000885P0002329 +1.493979372E-18; 0000885P0002330 +124,5.52860886E-21,-1.,2.489864082E-05,-5.567216088E-02, 0000887P0002331 +2.220446047E-16,2.489864082E-05,1.,-2.37823971E-02,-1., 0000887P0002332 +1.274676687E-37,2.220446048E-16,3.966535433E-02; 0000887P0002333 +142,0,881,891,899,3; 0000889P0002334 +102,3,893,895,897; 0000891P0002335 +126,24,3,1,0,1,0,3.141592654,3.141592654,3.141592654, 0000893P0002336 +3.141592654,3.212867984,3.284143315,3.355418645,3.426693976, 0000893P0002337 +3.497969306,3.569244637,3.640519967,3.711795298,3.783070628, 0000893P0002338 +3.854345959,3.925621289,3.99689662,4.06817195,4.139447281, 0000893P0002339 +4.210722611,4.281997942,4.353273272,4.424548603,4.495823933, 0000893P0002340 +4.567099264,4.638374594,4.709649925,4.709649925,4.709649925, 0000893P0002341 +4.709649925,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000893P0002342 +1.,1.,1.,1.,1.,1.,1.,1.,1.623156204,6.283160409,0.,1.624398046, 0000893P0002343 +6.259401922,0.,1.626792771,6.211875497,0.,1.630101213, 0000893P0002344 +6.140558383,0.,1.633108654,6.069214462,0.,1.635799792, 0000893P0002345 +5.997845158,0.,1.638160785,5.926452356,0.,1.640179507, 0000893P0002346 +5.855038438,0.,1.641845569,5.783606215,0.,1.643150389, 0000893P0002347 +5.712158874,0.,1.644087241,5.640699913,0.,1.644651294, 0000893P0002348 +5.56923307,0.,1.644839635,5.497762245,0.,1.644651294,5.42629142, 0000893P0002349 +0.,1.644087241,5.354824577,0.,1.643150389,5.283365616,0., 0000893P0002350 +1.641845569,5.211918275,0.,1.640179507,5.140486052,0., 0000893P0002351 +1.638160785,5.069072134,0.,1.635799792,4.997679332,0., 0000893P0002352 +1.633108654,4.926310028,0.,1.630101213,4.854966108,0., 0000893P0002353 +1.626792771,4.783648994,0.,1.624398046,4.736122568,0., 0000893P0002354 +1.623156204,4.712364082,0.,3.141592654,4.709649925,-0.,-0.,1.; 0000893P0002355 +126,24,3,0,0,1,0,4.764748858,4.764748858,4.764748858, 0000895P0002356 +4.764748858,4.833768697,4.902788535,4.971808374,5.040828212, 0000895P0002357 +5.109848051,5.17886789,5.247887728,5.316907567,5.385927405, 0000895P0002358 +5.454947244,5.523967083,5.592986921,5.66200676,5.731026598, 0000895P0002359 +5.800046437,5.869066276,5.938086114,6.007105953,6.076125791, 0000895P0002360 +6.14514563,6.214165469,6.283185307,6.283185307,6.283185307, 0000895P0002361 +6.283185307,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000895P0002362 +1.,1.,1.,1.,1.,1.,1.,1.,1.623156204,4.712364082,0.,1.646162817, 0000895P0002363 +4.712364082,0.,1.692176043,4.712364082,0.,1.761195882, 0000895P0002364 +4.712364082,0.,1.83021572,4.712364082,0.,1.899235559, 0000895P0002365 +4.712364082,0.,1.968255397,4.712364082,0.,2.037275236, 0000895P0002366 +4.712364082,0.,2.106295075,4.712364082,0.,2.175314913, 0000895P0002367 +4.712364082,0.,2.244334752,4.712364082,0.,2.31335459, 0000895P0002368 +4.712364082,0.,2.382374429,4.712364082,0.,2.451394268, 0000895P0002369 +4.712364082,0.,2.520414106,4.712364082,0.,2.589433945, 0000895P0002370 +4.712364082,0.,2.658453783,4.712364082,0.,2.727473622, 0000895P0002371 +4.712364082,0.,2.796493461,4.712364082,0.,2.865513299, 0000895P0002372 +4.712364082,0.,2.934533138,4.712364082,0.,3.003552976, 0000895P0002373 +4.712364082,0.,3.072572815,4.712364082,0.,3.118586041, 0000895P0002374 +4.712364082,0.,3.141592654,4.712364082,0.,4.764748858, 0000895P0002375 +6.283185307,0.,0.,1.; 0000895P0002376 +126,24,3,0,0,1,0,1.570796327,1.570796327,1.570796327, 0000897P0002377 +1.570796327,1.639816165,1.708836004,1.777855843,1.846875681, 0000897P0002378 +1.91589552,1.984915358,2.053935197,2.122955036,2.191974874, 0000897P0002379 +2.260994713,2.330014551,2.39903439,2.468054229,2.537074067, 0000897P0002380 +2.606093906,2.675113744,2.744133583,2.813153422,2.88217326, 0000897P0002381 +2.951193099,3.020212937,3.089232776,3.089232776,3.089232776, 0000897P0002382 +3.089232776,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000897P0002383 +1.,1.,1.,1.,1.,1.,1.,1.,3.141592654,6.283160409,0.,3.118586041, 0000897P0002384 +6.283160409,0.,3.072572815,6.283160409,0.,3.003552976, 0000897P0002385 +6.283160409,0.,2.934533138,6.283160409,0.,2.865513299, 0000897P0002386 +6.283160409,0.,2.796493461,6.283160409,0.,2.727473622, 0000897P0002387 +6.283160409,0.,2.658453783,6.283160409,0.,2.589433945, 0000897P0002388 +6.283160409,0.,2.520414106,6.283160409,0.,2.451394268, 0000897P0002389 +6.283160409,0.,2.382374429,6.283160409,0.,2.31335459, 0000897P0002390 +6.283160409,0.,2.244334752,6.283160409,0.,2.175314913, 0000897P0002391 +6.283160409,0.,2.106295075,6.283160409,0.,2.037275236, 0000897P0002392 +6.283160409,0.,1.968255397,6.283160409,0.,1.899235559, 0000897P0002393 +6.283160409,0.,1.83021572,6.283160409,0.,1.761195882, 0000897P0002394 +6.283160409,0.,1.692176043,6.283160409,0.,1.646162817, 0000897P0002395 +6.283160409,0.,1.623156204,6.283160409,0.,1.570796327, 0000897P0002396 +3.089232776,0.,0.,1.; 0000897P0002397 +102,3,901,905,909; 0000899P0002398 +100,-1.679659665E-18,2.275117157E-18,-4.908789364E-19, 0000901P0002399 +-4.921259843E-04,2.903548909E-16,-1.347958817E-06, 0000901P0002400 +-4.921241382E-04; 0000901P0002401 +124,0.998629535,-2.735308799E-03,5.226442765E-02, 0000903P0002402 +-5.567216088E-02,2.286283049E-12,0.998633281,5.226442765E-02, 0000903P0002403 +-2.37823971E-02,-5.23359562E-02,-5.219280107E-02,0.997264689, 0000903P0002404 +3.966535433E-02; 0000903P0002405 +100,1.242137135E-18,-3.013569818E-18,1.295493541E-18, 0000905P0002406 +2.575588398E-05,-4.914515427E-04,4.921259843E-04, 0000905P0002407 +1.404340609E-18; 0000905P0002408 +124,3.469446952E-14,1.940724701E-15,-1.,-5.567216088E-02, 0000907P0002409 +-2.220446049E-16,1.,1.940724701E-15,-2.37823971E-02,1., 0000907P0002410 +2.220446049E-16,3.469446952E-14,3.966535433E-02; 0000907P0002411 +100,-1.991261077E-18,2.911125518E-18,-3.461763629E-18, 0000909P0002412 +2.911125518E-18,4.921259843E-04,-4.914515427E-04, 0000909P0002413 +2.575588398E-05; 0000909P0002414 +124,1.,-2.719260372E-32,-1.224646E-16,-5.567216088E-02, 0000911P0002415 +-1.224646E-16,-2.220446049E-16,-1.,-2.37823971E-02,0.,1., 0000911P0002416 +-2.220446049E-16,3.966535433E-02; 0000911P0002417 +144,915,1,0,917; 0000913P0002418 +128,1,1,1,1,0,0,1,0,0,-0.639029968,-0.639029968,8.196568424E-17, 0000915P0002419 +8.196568424E-17,1.248286918E-02,1.248286918E-02,2.907517131, 0000915P0002420 +2.907517131,1.,1.,1.,1.,5.698886342E-02,2.427384864E-02, 0000915P0002421 +3.969111021E-02,5.698886342E-02,2.559055118E-02,1.456692913E-02, 0000915P0002422 +-5.698886342E-02,2.427384864E-02,3.969111021E-02, 0000915P0002423 +-5.698886342E-02,2.559055118E-02,1.456692913E-02,-0.639029968, 0000915P0002424 +8.196568424E-17,1.248286918E-02,2.907517131; 0000915P0002425 +142,0,915,919,945,3; 0000917P0002426 +102,12,921,923,925,927,929,931,933,935,937,939,941,943; 0000919P0002427 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600115E-03,5.91720023E-03, 0000921P0002428 +8.875800345E-03,1.183440046E-02,1.479300058E-02,1.775160069E-02, 0000921P0002429 +2.071020081E-02,2.366880092E-02,2.662740104E-02,2.958600115E-02, 0000921P0002430 +3.254460127E-02,3.550320138E-02,3.84618015E-02,4.142040161E-02, 0000921P0002431 +4.437900173E-02,4.733760184E-02,5.029620196E-02,5.325480207E-02, 0000921P0002432 +5.621340219E-02,5.91720023E-02,6.213060242E-02,6.508920253E-02, 0000921P0002433 +6.508920253E-02,6.508920253E-02,6.508920253E-02,1.,1.,1.,1.,1., 0000921P0002434 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000921P0002435 +-6.508920255E-02,0.7295,0.,-6.410300251E-02,0.7295,0., 0000921P0002436 +-6.213060243E-02,0.7295,0.,-5.917200232E-02,0.7295,0., 0000921P0002437 +-5.62134022E-02,0.7295,0.,-5.325480209E-02,0.7295,0., 0000921P0002438 +-5.029620197E-02,0.7295,0.,-4.733760186E-02,0.7295,0., 0000921P0002439 +-4.437900174E-02,0.7295,0.,-4.142040162E-02,0.7295,0., 0000921P0002440 +-3.846180151E-02,0.7295,0.,-3.550320139E-02,0.7295,0., 0000921P0002441 +-3.254460128E-02,0.7295,0.,-2.958600116E-02,0.7295,0., 0000921P0002442 +-2.662740104E-02,0.7295,0.,-2.366880093E-02,0.7295,0., 0000921P0002443 +-2.071020081E-02,0.7295,0.,-1.77516007E-02,0.7295,0., 0000921P0002444 +-1.479300058E-02,0.7295,0.,-1.183440046E-02,0.7295,0., 0000921P0002445 +-8.875800348E-03,0.7295,0.,-5.917200232E-03,0.7295,0., 0000921P0002446 +-2.958600116E-03,0.7295,0.,-9.862000386E-04,0.7295,0., 0000921P0002447 +8.196568424E-17,0.7295,0.,0.,6.508920253E-02,0.,0.,1.; 0000921P0002448 +110,8.196568424E-17,0.7295,0.,8.196568424E-17,2.1905,0.; 0000923P0002449 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600115E-03,5.91720023E-03, 0000925P0002450 +8.875800345E-03,1.183440046E-02,1.479300058E-02,1.775160069E-02, 0000925P0002451 +2.071020081E-02,2.366880092E-02,2.662740104E-02,2.958600115E-02, 0000925P0002452 +3.254460127E-02,3.550320138E-02,3.84618015E-02,4.142040161E-02, 0000925P0002453 +4.437900173E-02,4.733760184E-02,5.029620196E-02,5.325480207E-02, 0000925P0002454 +5.621340219E-02,5.91720023E-02,6.213060242E-02,6.508920253E-02, 0000925P0002455 +6.508920253E-02,6.508920253E-02,6.508920253E-02,1.,1.,1.,1.,1., 0000925P0002456 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000925P0002457 +8.196568424E-17,2.1905,0.,-9.862000386E-04,2.1905,0., 0000925P0002458 +-2.958600116E-03,2.1905,0.,-5.917200232E-03,2.1905,0., 0000925P0002459 +-8.875800348E-03,2.1905,0.,-1.183440046E-02,2.1905,0., 0000925P0002460 +-1.479300058E-02,2.1905,0.,-1.77516007E-02,2.1905,0., 0000925P0002461 +-2.071020081E-02,2.1905,0.,-2.366880093E-02,2.1905,0., 0000925P0002462 +-2.662740104E-02,2.1905,0.,-2.958600116E-02,2.1905,0., 0000925P0002463 +-3.254460128E-02,2.1905,0.,-3.550320139E-02,2.1905,0., 0000925P0002464 +-3.846180151E-02,2.1905,0.,-4.142040162E-02,2.1905,0., 0000925P0002465 +-4.437900174E-02,2.1905,0.,-4.733760186E-02,2.1905,0., 0000925P0002466 +-5.029620197E-02,2.1905,0.,-5.325480209E-02,2.1905,0., 0000925P0002467 +-5.62134022E-02,2.1905,0.,-5.917200232E-02,2.1905,0., 0000925P0002468 +-6.213060243E-02,2.1905,0.,-6.410300251E-02,2.1905,0., 0000925P0002469 +-6.508920255E-02,2.1905,0.,0.,6.508920253E-02,0.,0.,1.; 0000925P0002470 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.022727273E-02,4.045454546E-02, 0000927P0002471 +6.068181818E-02,8.090909091E-02,0.101136364,0.121363636, 0000927P0002472 +0.141590909,0.161818182,0.182045455,0.202272727,0.2225, 0000927P0002473 +0.242727273,0.262954545,0.283181818,0.303409091,0.323636364, 0000927P0002474 +0.343863636,0.364090909,0.384318182,0.404545455,0.424772727, 0000927P0002475 +0.445,0.445,0.445,0.445,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000927P0002476 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,-6.508920255E-02,2.1905,0., 0000927P0002477 +-6.508920255E-02,2.197242424,0.,-6.508920255E-02,2.210727273,0., 0000927P0002478 +-6.508920255E-02,2.230954546,0.,-6.508920255E-02,2.251181818,0., 0000927P0002479 +-6.508920255E-02,2.271409091,0.,-6.508920255E-02,2.291636364,0., 0000927P0002480 +-6.508920255E-02,2.311863636,0.,-6.508920255E-02,2.332090909,0., 0000927P0002481 +-6.508920255E-02,2.352318182,0.,-6.508920255E-02,2.372545455,0., 0000927P0002482 +-6.508920255E-02,2.392772727,0.,-6.508920255E-02,2.413,0., 0000927P0002483 +-6.508920255E-02,2.433227273,0.,-6.508920255E-02,2.453454546,0., 0000927P0002484 +-6.508920255E-02,2.473681818,0.,-6.508920255E-02,2.493909091,0., 0000927P0002485 +-6.508920255E-02,2.514136364,0.,-6.508920255E-02,2.534363637,0., 0000927P0002486 +-6.508920255E-02,2.554590909,0.,-6.508920255E-02,2.574818182,0., 0000927P0002487 +-6.508920255E-02,2.595045455,0.,-6.508920255E-02,2.615272727,0., 0000927P0002488 +-6.508920255E-02,2.628757576,0.,-6.508920255E-02,2.6355,0.,0., 0000927P0002489 +0.445,0.,0.,1.; 0000927P0002490 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600115E-03,5.91720023E-03, 0000929P0002491 +8.875800345E-03,1.183440046E-02,1.479300058E-02,1.775160069E-02, 0000929P0002492 +2.071020081E-02,2.366880092E-02,2.662740104E-02,2.958600115E-02, 0000929P0002493 +3.254460127E-02,3.550320138E-02,3.84618015E-02,4.142040161E-02, 0000929P0002494 +4.437900173E-02,4.733760184E-02,5.029620196E-02,5.325480207E-02, 0000929P0002495 +5.621340219E-02,5.91720023E-02,6.213060242E-02,6.508920253E-02, 0000929P0002496 +6.508920253E-02,6.508920253E-02,6.508920253E-02,1.,1.,1.,1.,1., 0000929P0002497 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000929P0002498 +-6.508920255E-02,2.6355,0.,-6.410300251E-02,2.6355,0., 0000929P0002499 +-6.213060243E-02,2.6355,0.,-5.917200232E-02,2.6355,0., 0000929P0002500 +-5.62134022E-02,2.6355,0.,-5.325480209E-02,2.6355,0., 0000929P0002501 +-5.029620197E-02,2.6355,0.,-4.733760186E-02,2.6355,0., 0000929P0002502 +-4.437900174E-02,2.6355,0.,-4.142040162E-02,2.6355,0., 0000929P0002503 +-3.846180151E-02,2.6355,0.,-3.550320139E-02,2.6355,0., 0000929P0002504 +-3.254460128E-02,2.6355,0.,-2.958600116E-02,2.6355,0., 0000929P0002505 +-2.662740104E-02,2.6355,0.,-2.366880093E-02,2.6355,0., 0000929P0002506 +-2.071020081E-02,2.6355,0.,-1.77516007E-02,2.6355,0., 0000929P0002507 +-1.479300058E-02,2.6355,0.,-1.183440046E-02,2.6355,0., 0000929P0002508 +-8.875800348E-03,2.6355,0.,-5.917200232E-03,2.6355,0., 0000929P0002509 +-2.958600116E-03,2.6355,0.,-9.862000386E-04,2.6355,0., 0000929P0002510 +8.196568424E-17,2.6355,0.,0.,6.508920253E-02,0.,0.,1.; 0000929P0002511 +110,8.196568424E-17,2.6355,0.,8.196568424E-17,2.907517131,0.; 0000931P0002512 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.908656989E-02,5.817313978E-02, 0000933P0002513 +8.725970967E-02,0.11634628,0.145432849,0.174519419,0.203605989, 0000933P0002514 +0.232692559,0.261779129,0.290865699,0.319952269,0.349038839, 0000933P0002515 +0.378125409,0.407211978,0.436298548,0.465385118,0.494471688, 0000933P0002516 +0.523558258,0.552644828,0.581731398,0.610817968,0.639904538, 0000933P0002517 +0.639904538,0.639904538,0.639904538,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000933P0002518 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,8.196568424E-17, 0000933P0002519 +2.907517131,0.,-9.682272242E-03,2.9070104,0.,-2.904681673E-02, 0000933P0002520 +2.905996938,0.,-5.809363345E-02,2.904476745,0.,-8.714045018E-02, 0000933P0002521 +2.902956552,0.,-0.116187267,2.901436359,0.,-0.145234084, 0000933P0002522 +2.899916166,0.,-0.1742809,2.898395973,0.,-0.203327717, 0000933P0002523 +2.89687578,0.,-0.232374534,2.895355588,0.,-0.261421351, 0000933P0002524 +2.893835395,0.,-0.290468167,2.892315202,0.,-0.319514984, 0000933P0002525 +2.890795009,0.,-0.348561801,2.889274816,0.,-0.377608617, 0000933P0002526 +2.887754623,0.,-0.406655434,2.88623443,0.,-0.435702251, 0000933P0002527 +2.884714237,0.,-0.464749068,2.883194044,0.,-0.493795884, 0000933P0002528 +2.881673851,0.,-0.522842701,2.880153658,0.,-0.551889518, 0000933P0002529 +2.878633465,0.,-0.580936335,2.877113272,0.,-0.609983151, 0000933P0002530 +2.875593079,0.,-0.629347696,2.874579617,0.,-0.639029968, 0000933P0002531 +2.874072886,0.,0.,0.639904538,0.,0.,1.; 0000933P0002532 +110,-0.639029968,2.874072886,0.,-0.639029968,4.592711378E-02,0.; 0000935P0002533 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.908656989E-02,5.817313978E-02, 0000937P0002534 +8.725970967E-02,0.11634628,0.145432849,0.174519419,0.203605989, 0000937P0002535 +0.232692559,0.261779129,0.290865699,0.319952269,0.349038839, 0000937P0002536 +0.378125409,0.407211978,0.436298548,0.465385118,0.494471688, 0000937P0002537 +0.523558258,0.552644828,0.581731398,0.610817968,0.639904538, 0000937P0002538 +0.639904538,0.639904538,0.639904538,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000937P0002539 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,-0.639029968, 0000937P0002540 +4.59271137E-02,0.,-0.629347696,4.542038272E-02,0.,-0.609983151, 0000937P0002541 +4.440692076E-02,0.,-0.580936335,4.288672783E-02,0.,-0.551889518, 0000937P0002542 +4.13665349E-02,0.,-0.522842701,3.984634197E-02,0.,-0.493795884, 0000937P0002543 +3.832614903E-02,0.,-0.464749068,3.68059561E-02,0.,-0.435702251, 0000937P0002544 +3.528576317E-02,0.,-0.406655434,3.376557024E-02,0.,-0.377608617, 0000937P0002545 +3.22453773E-02,0.,-0.348561801,3.072518437E-02,0.,-0.319514984, 0000937P0002546 +2.920499144E-02,0.,-0.290468167,2.768479851E-02,0.,-0.261421351, 0000937P0002547 +2.616460557E-02,0.,-0.232374534,2.464441264E-02,0.,-0.203327717, 0000937P0002548 +2.312421971E-02,0.,-0.1742809,2.160402678E-02,0.,-0.145234084, 0000937P0002549 +2.008383384E-02,0.,-0.116187267,1.856364091E-02,0., 0000937P0002550 +-8.714045018E-02,1.704344798E-02,0.,-5.809363345E-02, 0000937P0002551 +1.552325505E-02,0.,-2.904681673E-02,1.400306211E-02,0., 0000937P0002552 +-9.682272242E-03,1.298960016E-02,0.,8.196568424E-17, 0000937P0002553 +1.248286918E-02,0.,0.,0.639904538,0.,0.,1.; 0000937P0002554 +110,8.196568424E-17,1.248286918E-02,0.,8.196568424E-17,0.2845, 0000939P0002555 +0.; 0000939P0002556 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600115E-03,5.91720023E-03, 0000941P0002557 +8.875800345E-03,1.183440046E-02,1.479300058E-02,1.775160069E-02, 0000941P0002558 +2.071020081E-02,2.366880092E-02,2.662740104E-02,2.958600115E-02, 0000941P0002559 +3.254460127E-02,3.550320138E-02,3.84618015E-02,4.142040161E-02, 0000941P0002560 +4.437900173E-02,4.733760184E-02,5.029620196E-02,5.325480207E-02, 0000941P0002561 +5.621340219E-02,5.91720023E-02,6.213060242E-02,6.508920253E-02, 0000941P0002562 +6.508920253E-02,6.508920253E-02,6.508920253E-02,1.,1.,1.,1.,1., 0000941P0002563 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000941P0002564 +8.196568424E-17,0.2845,0.,-9.862000386E-04,0.2845,0., 0000941P0002565 +-2.958600116E-03,0.2845,0.,-5.917200232E-03,0.2845,0., 0000941P0002566 +-8.875800348E-03,0.2845,0.,-1.183440046E-02,0.2845,0., 0000941P0002567 +-1.479300058E-02,0.2845,0.,-1.77516007E-02,0.2845,0., 0000941P0002568 +-2.071020081E-02,0.2845,0.,-2.366880093E-02,0.2845,0., 0000941P0002569 +-2.662740104E-02,0.2845,0.,-2.958600116E-02,0.2845,0., 0000941P0002570 +-3.254460128E-02,0.2845,0.,-3.550320139E-02,0.2845,0., 0000941P0002571 +-3.846180151E-02,0.2845,0.,-4.142040162E-02,0.2845,0., 0000941P0002572 +-4.437900174E-02,0.2845,0.,-4.733760186E-02,0.2845,0., 0000941P0002573 +-5.029620197E-02,0.2845,0.,-5.325480209E-02,0.2845,0., 0000941P0002574 +-5.62134022E-02,0.2845,0.,-5.917200232E-02,0.2845,0., 0000941P0002575 +-6.213060243E-02,0.2845,0.,-6.410300251E-02,0.2845,0., 0000941P0002576 +-6.508920255E-02,0.2845,0.,0.,6.508920253E-02,0.,0.,1.; 0000941P0002577 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.022727273E-02,4.045454546E-02, 0000943P0002578 +6.068181818E-02,8.090909091E-02,0.101136364,0.121363636, 0000943P0002579 +0.141590909,0.161818182,0.182045455,0.202272727,0.2225, 0000943P0002580 +0.242727273,0.262954545,0.283181818,0.303409091,0.323636364, 0000943P0002581 +0.343863636,0.364090909,0.384318182,0.404545455,0.424772727, 0000943P0002582 +0.445,0.445,0.445,0.445,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000943P0002583 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,-6.508920255E-02,0.2845,0., 0000943P0002584 +-6.508920255E-02,0.291242424,0.,-6.508920255E-02,0.304727273,0., 0000943P0002585 +-6.508920255E-02,0.324954545,0.,-6.508920255E-02,0.345181818,0., 0000943P0002586 +-6.508920255E-02,0.365409091,0.,-6.508920255E-02,0.385636364,0., 0000943P0002587 +-6.508920255E-02,0.405863636,0.,-6.508920255E-02,0.426090909,0., 0000943P0002588 +-6.508920255E-02,0.446318182,0.,-6.508920255E-02,0.466545455,0., 0000943P0002589 +-6.508920255E-02,0.486772727,0.,-6.508920255E-02,0.507,0., 0000943P0002590 +-6.508920255E-02,0.527227273,0.,-6.508920255E-02,0.547454546,0., 0000943P0002591 +-6.508920255E-02,0.567681818,0.,-6.508920255E-02,0.587909091,0., 0000943P0002592 +-6.508920255E-02,0.608136364,0.,-6.508920255E-02,0.628363636,0., 0000943P0002593 +-6.508920255E-02,0.648590909,0.,-6.508920255E-02,0.668818182,0., 0000943P0002594 +-6.508920255E-02,0.689045455,0.,-6.508920255E-02,0.709272727,0., 0000943P0002595 +-6.508920255E-02,0.722757576,0.,-6.508920255E-02,0.7295,0.,0., 0000943P0002596 +0.445,0.,0.,1.; 0000943P0002597 +102,12,947,949,951,953,955,957,959,961,963,965,967,969; 0000945P0002598 +110,2.875984252E-02,2.545643679E-02,1.712598425E-02, 0000947P0002599 +2.875984252E-02,2.559055118E-02,1.456692913E-02; 0000947P0002600 +110,2.875984252E-02,2.559055118E-02,1.456692913E-02, 0000949P0002601 +-2.875984252E-02,2.559055118E-02,1.456692913E-02; 0000949P0002602 +110,-2.875984252E-02,2.559055118E-02,1.456692913E-02, 0000951P0002603 +-2.875984252E-02,2.545643679E-02,1.712598425E-02; 0000951P0002604 +110,-2.875984252E-02,2.545643679E-02,1.712598425E-02, 0000953P0002605 +-4.627952756E-02,2.545643679E-02,1.712598425E-02; 0000953P0002606 +110,-4.627952756E-02,2.545643679E-02,1.712598425E-02, 0000955P0002607 +-4.627952756E-02,2.559055118E-02,1.456692913E-02; 0000955P0002608 +110,-4.627952756E-02,2.559055118E-02,1.456692913E-02, 0000957P0002609 +-5.698886342E-02,2.559055118E-02,1.456692913E-02; 0000957P0002610 +110,-5.698886342E-02,2.559055118E-02,1.456692913E-02, 0000959P0002611 +-5.567216088E-02,2.427384864E-02,3.969111021E-02; 0000959P0002612 +110,-5.567216088E-02,2.427384864E-02,3.969111021E-02, 0000961P0002613 +5.567216088E-02,2.427384864E-02,3.969111021E-02; 0000961P0002614 +110,5.567216088E-02,2.427384864E-02,3.969111021E-02, 0000963P0002615 +5.698886342E-02,2.559055118E-02,1.456692913E-02; 0000963P0002616 +110,5.698886342E-02,2.559055118E-02,1.456692913E-02, 0000965P0002617 +4.627952756E-02,2.559055118E-02,1.456692913E-02; 0000965P0002618 +110,4.627952756E-02,2.559055118E-02,1.456692913E-02, 0000967P0002619 +4.627952756E-02,2.545643679E-02,1.712598425E-02; 0000967P0002620 +110,4.627952756E-02,2.545643679E-02,1.712598425E-02, 0000969P0002621 +2.875984252E-02,2.545643679E-02,1.712598425E-02; 0000969P0002622 +144,973,1,0,979; 0000971P0002623 +120,975,977,5.108371493,6.283185308; 0000973P0002624 +110,-7.688976378E-02,3.827671846E-02,6.496062992E-03, 0000975P0002625 +-3.751968504E-02,3.827671846E-02,6.496062992E-03; 0000975P0002626 +110,-2.875984252E-02,3.827671846E-02,2.136611369E-19, 0000977P0002627 +-4.627952756E-02,3.827671846E-02,2.136611369E-19; 0000977P0002628 +142,0,973,981,991,3; 0000979P0002629 +102,4,983,985,987,989; 0000981P0002630 +126,24,3,0,0,1,0,1.924739446E-27,1.924739446E-27, 0000983P0002631 +1.924739446E-27,1.924739446E-27,2.022727273E-02,4.045454546E-02, 0000983P0002632 +6.068181818E-02,8.090909091E-02,0.101136364,0.121363636, 0000983P0002633 +0.141590909,0.161818182,0.182045455,0.202272727,0.2225, 0000983P0002634 +0.242727273,0.262954545,0.283181818,0.303409091,0.323636364, 0000983P0002635 +0.343863636,0.364090909,0.384318182,0.404545455,0.424772727, 0000983P0002636 +0.445,0.445,0.445,0.445,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000983P0002637 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.283185307,0., 0000983P0002638 +0.984848485,6.283185307,0.,0.954545455,6.283185307,0., 0000983P0002639 +0.909090909,6.283185307,0.,0.863636364,6.283185307,0., 0000983P0002640 +0.818181818,6.283185307,0.,0.772727273,6.283185307,0., 0000983P0002641 +0.727272727,6.283185307,0.,0.681818182,6.283185307,0., 0000983P0002642 +0.636363636,6.283185307,0.,0.590909091,6.283185307,0., 0000983P0002643 +0.545454545,6.283185307,0.,0.5,6.283185307,0.,0.454545455, 0000983P0002644 +6.283185307,0.,0.409090909,6.283185307,0.,0.363636364, 0000983P0002645 +6.283185307,0.,0.318181818,6.283185307,0.,0.272727273, 0000983P0002646 +6.283185307,0.,0.227272727,6.283185307,0.,0.181818182, 0000983P0002647 +6.283185307,0.,0.136363636,6.283185307,0.,9.090909091E-02, 0000983P0002648 +6.283185307,0.,4.545454545E-02,6.283185307,0.,1.515151515E-02, 0000983P0002649 +6.283185307,0.,7.086441958E-16,6.283185307,0.,1.924739446E-27, 0000983P0002650 +0.445,0.,0.,1.; 0000983P0002651 +126,24,3,0,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0000985P0002652 +4.765789608,4.819190236,4.872590864,4.925991492,4.97939212, 0000985P0002653 +5.032792748,5.086193376,5.139594004,5.192994632,5.246395259, 0000985P0002654 +5.299795887,5.353196515,5.406597143,5.459997771,5.513398399, 0000985P0002655 +5.566799027,5.620199655,5.673600283,5.727000911,5.780401538, 0000985P0002656 +5.833802166,5.887202794,5.887202794,5.887202794,5.887202794,1., 0000985P0002657 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000985P0002658 +1.,1.,1.,7.086441958E-16,6.283185307,0.,8.262954219E-16, 0000985P0002659 +6.265385098,0.,7.448765417E-16,6.229784679,0.,2.776813344E-16, 0000985P0002660 +6.176384052,0.,6.439877509E-16,6.122983424,0.,1.015214401E-15, 0000985P0002661 +6.069582796,0.,5.33258494E-16,6.016182168,0.,4.652527378E-16, 0000985P0002662 +5.96278154,0.,1.091558857E-15,5.909380912,0.,2.359724511E-17, 0000985P0002663 +5.855980284,0.,5.476049194E-16,5.802579656,0.,8.887929426E-16, 0000985P0002664 +5.749179028,0.,3.69290284E-16,5.6957784,0.,4.81510162E-16, 0000985P0002665 +5.642377772,0.,4.244604965E-16,5.588977145,0.,4.127664684E-16, 0000985P0002666 +5.535576517,0.,3.889194339E-16,5.482175889,0.,3.683287877E-16, 0000985P0002667 +5.428775261,0.,3.468655948E-16,5.375374633,0.,3.256362005E-16, 0000985P0002668 +5.321974005,0.,3.043441584E-16,5.268573377,0.,2.830689086E-16, 0000985P0002669 +5.215172749,0.,2.617891378E-16,5.161772121,0.,2.47603485E-16, 0000985P0002670 +5.126171703,0.,2.40510551E-16,5.108371493,0.,4.71238898, 0000985P0002671 +5.887202794,0.,0.,1.; 0000985P0002672 +110,2.405105509E-16,5.108371493,0.,1.,5.108371493,0.; 0000987P0002673 +126,24,3,0,0,1,0,0.395982513,0.395982513,0.395982513, 0000989P0002674 +0.395982513,0.449383141,0.502783769,0.556184397,0.609585024, 0000989P0002675 +0.662985652,0.71638628,0.769786908,0.823187536,0.876588164, 0000989P0002676 +0.929988792,0.98338942,1.036790048,1.090190676,1.143591304, 0000989P0002677 +1.196991931,1.250392559,1.303793187,1.357193815,1.410594443, 0000989P0002678 +1.463995071,1.517395699,1.570796327,1.570796327,1.570796327, 0000989P0002679 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0000989P0002680 +1.,1.,1.,1.,1.,1.,1.,1.,1.,5.108371493,0.,1.,5.126171703,0.,1., 0000989P0002681 +5.161772121,0.,1.,5.215172749,0.,1.,5.268573377,0.,1., 0000989P0002682 +5.321974005,0.,1.,5.375374633,0.,1.,5.428775261,0.,1., 0000989P0002683 +5.482175889,0.,1.,5.535576517,0.,1.,5.588977145,0.,1., 0000989P0002684 +5.642377772,0.,1.,5.6957784,0.,1.,5.749179028,0.,1.,5.802579656, 0000989P0002685 +0.,1.,5.855980284,0.,1.,5.909380912,0.,1.,5.96278154,0.,1., 0000989P0002686 +6.016182168,0.,1.,6.069582796,0.,1.,6.122983424,0.,1., 0000989P0002687 +6.176384052,0.,1.,6.229784679,0.,1.,6.265385098,0.,1., 0000989P0002688 +6.283185307,0.,0.395982513,1.570796327,0.,0.,1.; 0000989P0002689 +102,4,993,995,999,1001; 0000991P0002690 +110,-4.627952756E-02,3.827671846E-02,8.63946928E-18, 0000993P0002691 +-2.875984252E-02,3.827671846E-02,4.37095679E-18; 0000993P0002692 +100,3.158699243E-19,2.078765583E-18,2.427716479E-19, 0000995P0002693 +-8.494339855E-19,-6.496062992E-03,5.993384905E-03, 0000995P0002694 +-2.505628021E-03; 0000995P0002695 +124,-1.224646E-16,-2.719260372E-32,-1.,-2.875984252E-02,-1., 0000997P0002696 +-2.220446049E-16,1.224646E-16,3.827671846E-02,-2.220446049E-16, 0000997P0002697 +1.,-8.125204719E-49,6.496062992E-03; 0000997P0002698 +110,-2.875984252E-02,3.228333355E-02,3.990434971E-03, 0000999P0002699 +-4.627952756E-02,3.228333355E-02,3.990434971E-03; 0000999P0002700 +100,4.055086866E-18,-1.451294247E-19,-2.427716479E-19, 0001001P0002701 +5.993384906E-03,2.505628021E-03,1.297627797E-18,6.496062993E-03; 0001001P0002702 +124,-1.224646E-16,2.719260372E-32,1.,-4.627952756E-02,-1., 0001003P0002703 +2.220446049E-16,-1.224646E-16,3.827671846E-02,-2.220446049E-16, 0001003P0002704 +-1.,8.125204719E-49,6.496062992E-03; 0001003P0002705 +144,1007,1,0,1009; 0001005P0002706 +128,1,1,1,1,0,0,1,0,0,-0.30542393,-0.30542393,0.130426136, 0001007P0002707 +0.130426136,-0.325635154,-0.325635154,0.277771351,0.277771351, 0001007P0002708 +1.,1.,1.,1.,-2.875984252E-02,2.545643679E-02,1.714267442E-02, 0001007P0002709 +-2.875984252E-02,2.545643679E-02,-1.677702753E-05, 0001007P0002710 +-2.875984252E-02,4.921259843E-02,1.714267442E-02, 0001007P0002711 +-2.875984252E-02,4.921259843E-02,-1.677702753E-05,-0.30542393, 0001007P0002712 +0.130423941,-0.325635154,0.277771351; 0001007P0002713 +142,0,1007,1011,1039,3; 0001009P0002714 +102,13,1013,1015,1017,1019,1021,1023,1025,1027,1029,1031,1033, 0001011P0002715 +1035,1037; 0001011P0002716 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600115E-03,5.91720023E-03, 0001013P0002717 +8.875800345E-03,1.183440046E-02,1.479300058E-02,1.775160069E-02, 0001013P0002718 +2.071020081E-02,2.366880092E-02,2.662740104E-02,2.958600115E-02, 0001013P0002719 +3.254460127E-02,3.550320138E-02,3.84618015E-02,4.142040161E-02, 0001013P0002720 +4.437900173E-02,4.733760184E-02,5.029620196E-02,5.325480207E-02, 0001013P0002721 +5.621340219E-02,5.91720023E-02,6.213060242E-02,6.508920253E-02, 0001013P0002722 +6.508920253E-02,6.508920253E-02,6.508920253E-02,1.,1.,1.,1.,1., 0001013P0002723 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001013P0002724 +-0.305,-0.325635154,0.,-0.304015151,-0.32558354,0.,-0.302045454, 0001013P0002725 +-0.325480313,0.,-0.299090909,-0.325325472,0.,-0.296136363, 0001013P0002726 +-0.325170631,0.,-0.293181818,-0.325015789,0.,-0.290227272, 0001013P0002727 +-0.324860948,0.,-0.287272727,-0.324706107,0.,-0.284318182, 0001013P0002728 +-0.324551266,0.,-0.281363636,-0.324396425,0.,-0.278409091, 0001013P0002729 +-0.324241584,0.,-0.275454545,-0.324086742,0.,-0.2725, 0001013P0002730 +-0.323931901,0.,-0.269545454,-0.32377706,0.,-0.266590909, 0001013P0002731 +-0.323622219,0.,-0.263636363,-0.323467378,0.,-0.260681818, 0001013P0002732 +-0.323312537,0.,-0.257727272,-0.323157695,0.,-0.254772727, 0001013P0002733 +-0.323002854,0.,-0.251818182,-0.322848013,0.,-0.248863636, 0001013P0002734 +-0.322693172,0.,-0.245909091,-0.322538331,0.,-0.242954545, 0001013P0002735 +-0.32238349,0.,-0.240984848,-0.322280262,0.,-0.24,-0.322228648, 0001013P0002736 +0.,0.,6.508920253E-02,0.,0.,1.; 0001013P0002737 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600103E-03,5.917200207E-03, 0001015P0002738 +8.87580031E-03,1.183440041E-02,1.479300052E-02,1.775160062E-02, 0001015P0002739 +2.071020072E-02,2.366880083E-02,2.662740093E-02,2.958600103E-02, 0001015P0002740 +3.254460114E-02,3.550320124E-02,3.846180135E-02,4.142040145E-02, 0001015P0002741 +4.437900155E-02,4.733760166E-02,5.029620176E-02,5.325480186E-02, 0001015P0002742 +5.621340197E-02,5.917200207E-02,6.213060217E-02,6.508920228E-02, 0001015P0002743 +6.508920228E-02,6.508920228E-02,6.508920228E-02,1.,1.,1.,1.,1., 0001015P0002744 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001015P0002745 +-0.24,-0.322228648,0.,-0.239015151,-0.322280262,0.,-0.237045454, 0001015P0002746 +-0.32238349,0.,-0.234090909,-0.322538331,0.,-0.231136363, 0001015P0002747 +-0.322693172,0.,-0.228181818,-0.322848013,0.,-0.225227273, 0001015P0002748 +-0.323002854,0.,-0.222272727,-0.323157695,0.,-0.219318182, 0001015P0002749 +-0.323312537,0.,-0.216363636,-0.323467378,0.,-0.213409091, 0001015P0002750 +-0.323622219,0.,-0.210454545,-0.32377706,0.,-0.2075, 0001015P0002751 +-0.323931901,0.,-0.204545454,-0.324086742,0.,-0.201590909, 0001015P0002752 +-0.324241584,0.,-0.198636364,-0.324396425,0.,-0.195681818, 0001015P0002753 +-0.324551266,0.,-0.192727273,-0.324706107,0.,-0.189772727, 0001015P0002754 +-0.324860948,0.,-0.186818182,-0.325015789,0.,-0.183863636, 0001015P0002755 +-0.325170631,0.,-0.180909091,-0.325325472,0.,-0.177954546, 0001015P0002756 +-0.325480313,0.,-0.175984849,-0.32558354,0.,-0.175,-0.325635154, 0001015P0002757 +0.,0.,6.508920228E-02,0.,0.,1.; 0001015P0002758 +110,-0.175,-0.325635154,0.,-0.175,-0.260671317,0.; 0001017P0002759 +126,24,3,1,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0001019P0002760 +4.765789608,4.819190236,4.872590864,4.925991492,4.97939212, 0001019P0002761 +5.032792748,5.086193376,5.139594004,5.192994632,5.24639526, 0001019P0002762 +5.299795888,5.353196516,5.406597144,5.459997772,5.5133984, 0001019P0002763 +5.566799027,5.620199655,5.673600283,5.727000911,5.780401539, 0001019P0002764 +5.833802167,5.887202795,5.887202795,5.887202795,5.887202795,1., 0001019P0002765 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001019P0002766 +1.,1.,1.,-0.175,-0.260671318,0.,-0.175000024,-0.260048309,0., 0001019P0002767 +-0.174966712,-0.258802296,0.,-0.174817122,-0.256938602,0., 0001019P0002768 +-0.174568253,-0.255085551,0.,-0.174220836,-0.253248424,0., 0001019P0002769 +-0.173775856,-0.251432459,0.,-0.173234583,-0.249642834,0., 0001019P0002770 +-0.17259856,-0.247884651,0.,-0.1718696,-0.246162921,0., 0001019P0002771 +-0.171049781,-0.244482555,0.,-0.170141441,-0.242848342,0., 0001019P0002772 +-0.16914717,-0.241264941,0.,-0.168069801,-0.239736867,0., 0001019P0002773 +-0.166912407,-0.238268475,0.,-0.165678286,-0.236863954,0., 0001019P0002774 +-0.164370958,-0.235527305,0.,-0.16299415,-0.234262341,0., 0001019P0002775 +-0.161551787,-0.233072668,0.,-0.160047981,-0.231961677,0., 0001019P0002776 +-0.158487018,-0.230932537,0.,-0.156873352,-0.229988176,0., 0001019P0002777 +-0.155211573,-0.229131307,0.,-0.154074828,-0.228619968,0., 0001019P0002778 +-0.15350002,-0.228379686,0.,4.71238898,5.887202795,-0.,-0.,1.; 0001019P0002779 +126,24,3,0,0,1,0,-2.98940253E-11,-2.98940253E-11, 0001021P0002780 +-2.98940253E-11,-2.98940253E-11,8.973622461E-03,1.794724495E-02, 0001021P0002781 +2.692086744E-02,3.589448993E-02,4.486811243E-02,5.384173492E-02, 0001021P0002782 +6.281535741E-02,7.17889799E-02,8.076260239E-02,8.973622488E-02, 0001021P0002783 +9.870984737E-02,0.10768347,0.116657092,0.125630715,0.134604337, 0001021P0002784 +0.14357796,0.152551582,0.161525205,0.170498827,0.17947245, 0001021P0002785 +0.188446072,0.197419695,0.197419695,0.197419695,0.197419695,1., 0001021P0002786 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001021P0002787 +1.,1.,1.,-0.15350002,-0.228379686,0.,-0.150740278,-0.227225933, 0001021P0002788 +0.,-0.145220794,-0.224918427,0.,-0.136941568,-0.221457167,0., 0001021P0002789 +-0.128662342,-0.217995908,0.,-0.120383116,-0.214534648,0., 0001021P0002790 +-0.11210389,-0.211073389,0.,-0.103824664,-0.207612129,0., 0001021P0002791 +-9.554543818E-02,-0.204150869,0.,-8.72662122E-02,-0.20068961,0., 0001021P0002792 +-7.898698622E-02,-0.19722835,0.,-7.070776025E-02,-0.193767091, 0001021P0002793 +0.,-6.242853427E-02,-0.190305831,0.,-5.414930829E-02, 0001021P0002794 +-0.186844572,0.,-4.587008231E-02,-0.183383312,0., 0001021P0002795 +-3.759085634E-02,-0.179922053,0.,-2.931163036E-02,-0.176460793, 0001021P0002796 +0.,-2.103240438E-02,-0.172999534,0.,-1.27531784E-02, 0001021P0002797 +-0.169538274,0.,-4.473952427E-03,-0.166077015,0., 0001021P0002798 +3.805273551E-03,-0.162615755,-0.,1.208449953E-02,-0.159154496, 0001021P0002799 +-0.,2.036372551E-02,-0.155693236,-0.,2.588320949E-02, 0001021P0002800 +-0.15338573,-0.,2.864295148E-02,-0.152231976,-0., 0001021P0002801 +-2.98940253E-11,0.197419695,0.,0.,1.; 0001021P0002802 +126,24,3,1,0,1,0,0.395982513,0.395982513,0.395982513, 0001023P0002803 +0.395982513,0.449383141,0.502783769,0.556184397,0.609585025, 0001023P0002804 +0.662985653,0.71638628,0.769786908,0.823187536,0.876588164, 0001023P0002805 +0.929988792,0.98338942,1.036790048,1.090190676,1.143591304, 0001023P0002806 +1.196991932,1.250392559,1.303793187,1.357193815,1.410594443, 0001023P0002807 +1.463995071,1.517395699,1.570796327,1.570796327,1.570796327, 0001023P0002808 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001023P0002809 +1.,1.,1.,1.,1.,1.,1.,1.,2.864295144E-02,-0.152231976,-0., 0001023P0002810 +3.135276211E-02,-0.151099219,-0.,3.671170141E-02,-0.148688619, 0001023P0002811 +-0.,4.454580239E-02,-0.144649095,-0.,5.21530852E-02, 0001023P0002812 +-0.140197108,-0.,5.951190891E-02,-0.135345447,-0., 0001023P0002813 +6.660128128E-02,-0.130107918,-0.,7.340099424E-02,-0.124499458, 0001023P0002814 +-0.,7.989166125E-02,-0.118536057,-0.,8.605477799E-02, 0001023P0002815 +-0.112234716,-0.,9.187277367E-02,-0.105613399,-0., 0001023P0002816 +9.732906147E-02,-9.869098319E-02,-0.,0.102408086, 0001023P0002817 +-9.14872047E-02,-0.,0.107095367,-8.402260082E-02,-0., 0001023P0002818 +0.111377541,-7.631845274E-02,-0.,0.1152424,-6.839672461E-02,-0., 0001023P0002819 +0.118678926,-6.028000088E-02,-0.,0.12167732,-5.199142191E-02, 0001023P0002820 +-0.,0.124229036,-4.3554618E-02,-0.,0.126326799,-3.499364218E-02, 0001023P0002821 +-0.,0.127964621,-2.633290086E-02,-0.,0.129137862, 0001023P0002822 +-1.759708722E-02,-0.,0.129843071,-8.811099748E-03,-0., 0001023P0002823 +0.130000111,-2.937041625E-03,-0.,0.13,6.398208808E-11,0., 0001023P0002824 +0.395982513,1.570796327,0.,0.,1.; 0001023P0002825 +126,24,3,0,0,1,0,-3.508237008E-27,-3.508237008E-27, 0001025P0002826 +-3.508237008E-27,-3.508237008E-27,1.262597051E-02, 0001025P0002827 +2.525194102E-02,3.787791153E-02,5.050388204E-02,6.312985255E-02, 0001025P0002828 +7.575582306E-02,8.838179358E-02,0.101007764,0.113633735, 0001025P0002829 +0.126259705,0.138885676,0.151511646,0.164137617,0.176763587, 0001025P0002830 +0.189389558,0.202015528,0.214641499,0.227267469,0.23989344, 0001025P0002831 +0.25251941,0.265145381,0.277771351,0.277771351,0.277771351, 0001025P0002832 +0.277771351,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001025P0002833 +1.,1.,1.,1.,1.,1.,1.,1.,0.13,6.398208808E-11,0.,0.13, 0001025P0002834 +4.208656896E-03,0.,0.13,1.262597056E-02,0.,0.13,2.525194106E-02, 0001025P0002835 +0.,0.13,3.787791156E-02,0.,0.13,5.050388205E-02,0.,0.13, 0001025P0002836 +6.312985255E-02,0.,0.13,7.575582305E-02,0.,0.13,8.838179354E-02, 0001025P0002837 +0.,0.13,0.101007764,0.,0.13,0.113633735,0.,0.13,0.126259705,0., 0001025P0002838 +0.13,0.138885676,0.,0.13,0.151511646,0.,0.13,0.164137617,0., 0001025P0002839 +0.13,0.176763587,0.,0.13,0.189389558,0.,0.13,0.202015528,0., 0001025P0002840 +0.13,0.214641499,0.,0.13,0.227267469,0.,0.13,0.23989344,0.,0.13, 0001025P0002841 +0.25251941,0.,0.13,0.265145381,0.,0.13,0.273562694,0.,0.13, 0001025P0002842 +0.277771351,0.,-3.508237008E-27,0.277771351,0.,0.,1.; 0001025P0002843 +110,0.13,0.277771351,0.,-4.925118369E-10,0.277771351,0.; 0001027P0002844 +110,-2.636623515E-10,0.277771351,0.,-2.636623515E-10, 0001029P0002845 +-2.380000086E-10,0.; 0001029P0002846 +126,24,3,1,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0001031P0002847 +4.765789608,4.819190236,4.872590864,4.925991492,4.97939212, 0001031P0002848 +5.032792748,5.086193376,5.139594004,5.192994631,5.246395259, 0001031P0002849 +5.299795887,5.353196515,5.406597143,5.459997771,5.513398399, 0001031P0002850 +5.566799027,5.620199655,5.673600283,5.72700091,5.780401538, 0001031P0002851 +5.833802166,5.887202794,5.887202794,5.887202794,5.887202794,1., 0001031P0002852 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001031P0002853 +1.,1.,1.,-2.642623438E-10,6.39820974E-11,0.,2.339709308E-08, 0001031P0002854 +-6.230087792E-04,-0.,-3.328813449E-05,-1.869021108E-03,0., 0001031P0002855 +-1.82877905E-04,-3.732715421E-03,0.,-4.317471782E-04, 0001031P0002856 +-5.585766798E-03,0.,-7.791640661E-04,-7.422893744E-03,0., 0001031P0002857 +-1.224144096E-03,-9.238858313E-03,0.,-1.765417045E-03, 0001031P0002858 +-1.102848338E-02,0.,-2.401440203E-03,-1.27866668E-02,0., 0001031P0002859 +-3.130400184E-03,-1.450839608E-02,0.,-3.950218791E-03, 0001031P0002860 +-1.618876265E-02,0.,-4.858558754E-03,-1.782297588E-02,0., 0001031P0002861 +-5.852830445E-03,-1.94063767E-02,0.,-6.930199244E-03, 0001031P0002862 +-2.093445093E-02,0.,-8.087593627E-03,-2.240284209E-02,0., 0001031P0002863 +-9.321713921E-03,-2.380736388E-02,0.,-1.062904171E-02, 0001031P0002864 +-2.514401208E-02,0.,-1.200584987E-02,-2.640897599E-02,0., 0001031P0002865 +-1.344821322E-02,-2.759864916E-02,0.,-1.495201948E-02, 0001031P0002866 +-2.870964028E-02,0.,-1.651298209E-02,-2.973878053E-02,0., 0001031P0002867 +-1.812664814E-02,-3.068314126E-02,0.,-1.978842714E-02, 0001031P0002868 +-3.154001007E-02,0.,-2.092517184E-02,-3.205134936E-02,0., 0001031P0002869 +-2.149998016E-02,-3.22916313E-02,0.,4.71238898,5.887202794,-0., 0001031P0002870 +-0.,1.; 0001031P0002871 +126,24,3,0,0,1,0,4.242855239E-12,4.242855239E-12, 0001033P0002872 +4.242855239E-12,4.242855239E-12,8.973622497E-03,1.794724499E-02, 0001033P0002873 +2.692086748E-02,3.589448998E-02,4.486811247E-02,5.384173496E-02, 0001033P0002874 +6.281535745E-02,7.178897995E-02,8.076260244E-02,8.973622493E-02, 0001033P0002875 +9.870984742E-02,0.10768347,0.116657092,0.125630715,0.134604337, 0001033P0002876 +0.14357796,0.152551582,0.161525205,0.170498827,0.17947245, 0001033P0002877 +0.188446072,0.197419695,0.197419695,0.197419695,0.197419695,1., 0001033P0002878 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001033P0002879 +1.,1.,1.,-2.149998017E-02,-3.229163128E-02,0.,-2.425972216E-02, 0001033P0002880 +-3.344538446E-02,0.,-2.977920615E-02,-3.575289081E-02,0., 0001033P0002881 +-3.805843213E-02,-3.921415035E-02,0.,-4.63376581E-02, 0001033P0002882 +-4.267540988E-02,0.,-5.461688408E-02,-4.613666941E-02,0., 0001033P0002883 +-6.289611006E-02,-4.959792895E-02,0.,-7.117533604E-02, 0001033P0002884 +-5.305918848E-02,0.,-7.945456202E-02,-5.652044801E-02,0., 0001033P0002885 +-8.7733788E-02,-5.998170755E-02,0.,-9.601301398E-02, 0001033P0002886 +-6.344296708E-02,0.,-0.10429224,-6.690422661E-02,0., 0001033P0002887 +-0.112571466,-7.036548615E-02,0.,-0.120850692,-7.382674568E-02, 0001033P0002888 +0.,-0.129129918,-7.728800521E-02,0.,-0.137409144, 0001033P0002889 +-8.074926475E-02,0.,-0.14568837,-8.421052428E-02,0., 0001033P0002890 +-0.153967596,-8.767178381E-02,0.,-0.162246822,-9.113304335E-02, 0001033P0002891 +0.,-0.170526048,-9.459430288E-02,0.,-0.178805274, 0001033P0002892 +-9.805556241E-02,0.,-0.1870845,-0.101516822,0.,-0.195363726, 0001033P0002893 +-0.104978081,0.,-0.20088321,-0.107285588,0.,-0.203642952, 0001033P0002894 +-0.108439341,0.,4.242855239E-12,0.197419695,0.,0.,1.; 0001033P0002895 +126,24,3,1,0,1,0,0.395982513,0.395982513,0.395982513, 0001035P0002896 +0.395982513,0.449383141,0.502783769,0.556184397,0.609585025, 0001035P0002897 +0.662985653,0.71638628,0.769786908,0.823187536,0.876588164, 0001035P0002898 +0.929988792,0.98338942,1.036790048,1.090190676,1.143591304, 0001035P0002899 +1.196991932,1.250392559,1.303793187,1.357193815,1.410594443, 0001035P0002900 +1.463995071,1.517395699,1.570796327,1.570796327,1.570796327, 0001035P0002901 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001035P0002902 +1.,1.,1.,1.,1.,1.,1.,1.,-0.203642952,-0.108439341,0., 0001035P0002903 +-0.206352762,-0.109572099,0.,-0.211711702,-0.111982698,0., 0001035P0002904 +-0.219545803,-0.116022223,0.,-0.227153085,-0.120474209,0., 0001035P0002905 +-0.234511909,-0.12532587,0.,-0.241601282,-0.1305634,0., 0001035P0002906 +-0.248400994,-0.136171859,0.,-0.254891661,-0.14213526,0., 0001035P0002907 +-0.261054778,-0.148436602,0.,-0.266872774,-0.155057919,0., 0001035P0002908 +-0.272329062,-0.161980334,0.,-0.277408086,-0.169184113,0., 0001035P0002909 +-0.282095367,-0.176648717,0.,-0.286377541,-0.184352865,0., 0001035P0002910 +-0.2902424,-0.192274593,0.,-0.293678926,-0.200391317,0., 0001035P0002911 +-0.296677321,-0.208679896,0.,-0.299229036,-0.217116699,0., 0001035P0002912 +-0.301326799,-0.225677675,0.,-0.302964621,-0.234338417,0., 0001035P0002913 +-0.304137862,-0.24307423,0.,-0.304843071,-0.251860218,0., 0001035P0002914 +-0.305000111,-0.257734276,0.,-0.305,-0.260671318,0.,0.395982513, 0001035P0002915 +1.570796327,0.,0.,1.; 0001035P0002916 +110,-0.305,-0.260671318,0.,-0.305,-0.325635154,0.; 0001037P0002917 +102,13,1041,1043,1045,1047,1051,1053,1057,1059,1061,1063,1067, 0001039P0002918 +1069,1073; 0001039P0002919 +110,-2.875984252E-02,2.545643679E-02,1.712598425E-02, 0001041P0002920 +-2.875984252E-02,2.559055118E-02,1.456692913E-02; 0001041P0002921 +110,-2.875984252E-02,2.559055118E-02,1.456692913E-02, 0001043P0002922 +-2.875984252E-02,2.545643679E-02,1.200787402E-02; 0001043P0002923 +110,-2.875984252E-02,2.545643679E-02,1.200787402E-02, 0001045P0002924 +-2.875984252E-02,2.801406815E-02,1.200787402E-02; 0001045P0002925 +100,-9.412070041E-19,-1.161035397E-18,-3.361453586E-19, 0001047P0002926 +-8.558367543E-19,-1.377952756E-03,1.271324071E-03, 0001047P0002927 +-5.314968518E-04; 0001047P0002928 +124,1.224646E-16,2.719260372E-32,-1.,-2.875984252E-02,1., 0001049P0002929 +2.220446049E-16,1.224646E-16,2.801406815E-02,2.220446049E-16, 0001049P0002930 +-1.,-8.125204719E-49,1.062992126E-02; 0001049P0002931 +110,-2.875984252E-02,2.928539222E-02,1.116141811E-02, 0001051P0002932 +-2.875984252E-02,3.228333355E-02,3.990434968E-03; 0001051P0002933 +100,-3.158699243E-19,2.078765583E-18,-2.427716479E-19, 0001053P0002934 +5.993384905E-03,2.505628022E-03,3.521522804E-18,6.496062993E-03; 0001053P0002935 +124,-1.224646E-16,2.719260372E-32,1.,-2.875984252E-02,-1., 0001055P0002936 +2.220446049E-16,-1.224646E-16,3.827671846E-02,-2.220446049E-16, 0001055P0002937 +-1.,8.125204719E-49,6.496062992E-03; 0001055P0002938 +110,-2.875984252E-02,3.827671846E-02,4.37095679E-18, 0001057P0002939 +-2.875984252E-02,4.921259843E-02,6.799209937E-18; 0001057P0002940 +110,-2.875984252E-02,4.921259843E-02,6.131452962E-18, 0001059P0002941 +-2.875984252E-02,4.921259843E-02,5.118110236E-03; 0001059P0002942 +110,-2.875984252E-02,4.921259843E-02,5.118110236E-03, 0001061P0002943 +-2.875984252E-02,3.827671846E-02,5.118110236E-03; 0001061P0002944 +100,3.158699243E-19,2.078765583E-18,2.427716479E-19, 0001063P0002945 +2.386098482E-18,-1.377952756E-03,1.271324071E-03, 0001063P0002946 +-5.314968531E-04; 0001063P0002947 +124,-1.224646E-16,-2.719260372E-32,-1.,-2.875984252E-02,-1., 0001065P0002948 +-2.220446049E-16,1.224646E-16,3.827671846E-02,-2.220446049E-16, 0001065P0002949 +1.,-8.125204719E-49,6.496062992E-03; 0001065P0002950 +110,-2.875984252E-02,3.700539439E-02,5.964566139E-03, 0001067P0002951 +-2.875984252E-02,3.400745306E-02,1.313554928E-02; 0001067P0002952 +100,9.412070041E-19,-1.161035397E-18,3.361453586E-19, 0001069P0002953 +5.993384905E-03,2.505628022E-03,2.817218243E-19,6.496062993E-03; 0001069P0002954 +124,1.224646E-16,-2.719260372E-32,1.,-2.875984252E-02,1., 0001071P0002955 +-2.220446049E-16,-1.224646E-16,2.801406815E-02,2.220446049E-16, 0001071P0002956 +1.,8.125204719E-49,1.062992126E-02; 0001071P0002957 +110,-2.875984252E-02,2.801406815E-02,1.712598425E-02, 0001073P0002958 +-2.875984252E-02,2.545643679E-02,1.712598425E-02; 0001073P0002959 +144,1077,1,0,1079; 0001075P0002960 +128,1,1,1,1,0,0,1,0,0,-0.197419695,-0.197419695,5.457623239E-31, 0001077P0002961 +5.457623239E-31,-0.445,-0.445,0.,0.,1.,1.,1.,1.,4.627952756E-02, 0001077P0002962 +3.400745306E-02,1.313554928E-02,4.627952756E-02,3.700539439E-02, 0001077P0002963 +5.964566139E-03,2.875984252E-02,3.400745306E-02,1.313554928E-02, 0001077P0002964 +2.875984252E-02,3.700539439E-02,5.964566139E-03,-0.197419695, 0001077P0002965 +5.457623239E-31,-0.445,0.; 0001077P0002966 +142,0,1077,1081,1091,3; 0001079P0002967 +102,4,1083,1085,1087,1089; 0001081P0002968 +110,5.457623239E-31,-0.445,0.,5.457623239E-31,1.599992361E-11, 0001083P0002969 +0.; 0001083P0002970 +110,5.457623239E-31,0.,0.,-0.197419695,0.,0.; 0001085P0002971 +110,-0.197419695,0.,0.,-0.197419695,-0.445,0.; 0001087P0002972 +110,-0.197419695,-0.445,0.,-2.52343535E-10,-0.445,0.; 0001089P0002973 +102,4,1093,1095,1097,1099; 0001091P0002974 +110,4.627952756E-02,3.700539439E-02,5.964566139E-03, 0001093P0002975 +2.875984252E-02,3.700539439E-02,5.964566139E-03; 0001093P0002976 +110,2.875984252E-02,3.700539439E-02,5.964566139E-03, 0001095P0002977 +2.875984252E-02,3.400745306E-02,1.313554928E-02; 0001095P0002978 +110,2.875984252E-02,3.400745306E-02,1.313554928E-02, 0001097P0002979 +4.627952756E-02,3.400745306E-02,1.313554928E-02; 0001097P0002980 +110,4.627952756E-02,3.400745306E-02,1.313554928E-02, 0001099P0002981 +4.627952756E-02,3.700539439E-02,5.964566139E-03; 0001099P0002982 +144,1103,1,0,1109; 0001101P0002983 +120,1105,1107,5.108371493,6.283185308; 0001103P0002984 +110,-1.8503937E-03,3.827671846E-02,6.496062992E-03, 0001105P0002985 +3.751968504E-02,3.827671846E-02,6.496062992E-03; 0001105P0002986 +110,4.627952756E-02,3.827671846E-02,2.136611369E-19, 0001107P0002987 +2.875984252E-02,3.827671846E-02,2.136611369E-19; 0001107P0002988 +142,0,1103,1111,1121,3; 0001109P0002989 +102,4,1113,1115,1117,1119; 0001111P0002990 +126,24,3,0,0,1,0,-1.924726238E-27,-1.924726238E-27, 0001113P0002991 +-1.924726238E-27,-1.924726238E-27,2.022727273E-02, 0001113P0002992 +4.045454546E-02,6.068181818E-02,8.090909091E-02,0.101136364, 0001113P0002993 +0.121363636,0.141590909,0.161818182,0.182045455,0.202272727, 0001113P0002994 +0.2225,0.242727273,0.262954545,0.283181818,0.303409091, 0001113P0002995 +0.323636364,0.343863636,0.364090909,0.384318182,0.404545455, 0001113P0002996 +0.424772727,0.445,0.445,0.445,0.445,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001113P0002997 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.283185307, 0001113P0002998 +0.,0.984848485,6.283185307,0.,0.954545455,6.283185307,0., 0001113P0002999 +0.909090909,6.283185307,0.,0.863636364,6.283185307,0., 0001113P0003000 +0.818181818,6.283185307,0.,0.772727273,6.283185307,0., 0001113P0003001 +0.727272727,6.283185307,0.,0.681818182,6.283185307,0., 0001113P0003002 +0.636363636,6.283185307,0.,0.590909091,6.283185307,0., 0001113P0003003 +0.545454545,6.283185307,0.,0.5,6.283185307,0.,0.454545455, 0001113P0003004 +6.283185307,0.,0.409090909,6.283185307,0.,0.363636364, 0001113P0003005 +6.283185307,0.,0.318181818,6.283185307,0.,0.272727273, 0001113P0003006 +6.283185307,0.,0.227272727,6.283185307,0.,0.181818182, 0001113P0003007 +6.283185307,0.,0.136363636,6.283185307,0.,9.090909091E-02, 0001113P0003008 +6.283185307,0.,4.545454545E-02,6.283185307,0.,1.515151515E-02, 0001113P0003009 +6.283185307,0.,9.355812005E-16,6.283185307,0.,-1.924726238E-27, 0001113P0003010 +0.445,0.,0.,1.; 0001113P0003011 +110,9.355812005E-16,6.283185307,0.,4.674475556E-16,5.108371493, 0001115P0003012 +0.; 0001115P0003013 +110,4.674475556E-16,5.108371493,0.,1.,5.108371493,0.; 0001117P0003014 +126,24,3,0,0,1,0,0.395982513,0.395982513,0.395982513, 0001119P0003015 +0.395982513,0.449383141,0.502783769,0.556184397,0.609585024, 0001119P0003016 +0.662985652,0.71638628,0.769786908,0.823187536,0.876588164, 0001119P0003017 +0.929988792,0.98338942,1.036790048,1.090190676,1.143591304, 0001119P0003018 +1.196991931,1.250392559,1.303793187,1.357193815,1.410594443, 0001119P0003019 +1.463995071,1.517395699,1.570796327,1.570796327,1.570796327, 0001119P0003020 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001119P0003021 +1.,1.,1.,1.,1.,1.,1.,1.,1.,5.108371493,0.,1.,5.126171703,0.,1., 0001119P0003022 +5.161772121,0.,1.,5.215172749,0.,1.,5.268573377,0.,1., 0001119P0003023 +5.321974005,0.,1.,5.375374633,0.,1.,5.428775261,0.,1., 0001119P0003024 +5.482175889,0.,1.,5.535576517,0.,1.,5.588977145,0.,1., 0001119P0003025 +5.642377772,0.,1.,5.6957784,0.,1.,5.749179028,0.,1.,5.802579656, 0001119P0003026 +0.,1.,5.855980284,0.,1.,5.909380912,0.,1.,5.96278154,0.,1., 0001119P0003027 +6.016182168,0.,1.,6.069582796,0.,1.,6.122983424,0.,1., 0001119P0003028 +6.176384052,0.,1.,6.229784679,0.,1.,6.265385098,0.,1., 0001119P0003029 +6.283185307,0.,0.395982513,1.570796327,0.,0.,1.; 0001119P0003030 +102,4,1123,1125,1129,1131; 0001121P0003031 +110,2.875984252E-02,3.827671846E-02,4.37095679E-18, 0001123P0003032 +4.627952756E-02,3.827671846E-02,8.63946928E-18; 0001123P0003033 +100,-4.055086866E-18,1.630571771E-18,2.427716479E-19, 0001125P0003034 +-1.297627797E-18,-6.496062992E-03,5.993384905E-03, 0001125P0003035 +-2.505628021E-03; 0001125P0003036 +124,-1.224646E-16,-2.719260372E-32,-1.,4.627952756E-02,-1., 0001127P0003037 +-2.220446049E-16,1.224646E-16,3.827671846E-02,-2.220446049E-16, 0001127P0003038 +1.,-8.125204719E-49,6.496062992E-03; 0001127P0003039 +110,4.627952756E-02,3.228333355E-02,3.990434971E-03, 0001129P0003040 +2.875984252E-02,3.228333355E-02,3.990434971E-03; 0001129P0003041 +100,-3.158699243E-19,-5.933232361E-19,-2.427716479E-19, 0001131P0003042 +5.993384906E-03,2.505628021E-03,8.494339855E-19,6.496062993E-03; 0001131P0003043 +124,-1.224646E-16,2.719260372E-32,1.,2.875984252E-02,-1., 0001133P0003044 +2.220446049E-16,-1.224646E-16,3.827671846E-02,-2.220446049E-16, 0001133P0003045 +-1.,8.125204719E-49,6.496062992E-03; 0001133P0003046 +144,1137,1,0,1139; 0001135P0003047 +128,1,1,1,1,0,0,1,0,0,-4.411259595E-18,-4.411259595E-18, 0001137P0003048 +0.197419695,0.197419695,-0.445,-0.445,1.848892747E-32, 0001137P0003049 +1.848892747E-32,1.,1.,1.,1.,4.627952756E-02,3.228333355E-02, 0001137P0003050 +3.990434971E-03,4.627952756E-02,2.928539222E-02,1.116141811E-02, 0001137P0003051 +2.875984252E-02,3.228333355E-02,3.990434971E-03,2.875984252E-02, 0001137P0003052 +2.928539222E-02,1.116141811E-02,-4.411259595E-18,0.197419695, 0001137P0003053 +-0.445,1.848892747E-32; 0001137P0003054 +142,0,1137,1141,1151,3; 0001139P0003055 +102,4,1143,1145,1147,1149; 0001141P0003056 +110,-4.411259595E-18,1.848892747E-32,0.,-4.411259595E-18,-0.445, 0001143P0003057 +0.; 0001143P0003058 +110,-4.411259595E-18,-0.445,0.,0.197419695,-0.445,0.; 0001145P0003059 +110,0.197419695,-0.445,0.,0.197419695,1.599992361E-11,0.; 0001147P0003060 +110,0.197419695,1.848892747E-32,0.,2.984744396E-10, 0001149P0003061 +1.848892747E-32,0.; 0001149P0003062 +102,4,1153,1155,1157,1159; 0001151P0003063 +110,2.875984252E-02,3.228333355E-02,3.990434971E-03, 0001153P0003064 +4.627952756E-02,3.228333355E-02,3.990434971E-03; 0001153P0003065 +110,4.627952756E-02,3.228333355E-02,3.990434971E-03, 0001155P0003066 +4.627952756E-02,2.928539222E-02,1.116141811E-02; 0001155P0003067 +110,4.627952756E-02,2.928539222E-02,1.116141811E-02, 0001157P0003068 +2.875984252E-02,2.928539222E-02,1.116141811E-02; 0001157P0003069 +110,2.875984252E-02,2.928539222E-02,1.116141811E-02, 0001159P0003070 +2.875984252E-02,3.228333355E-02,3.990434971E-03; 0001159P0003071 +144,1163,1,0,1169; 0001161P0003072 +120,1165,1167,5.108371493,6.283185309; 0001163P0003073 +110,7.688976378E-02,2.801406815E-02,1.062992126E-02, 0001165P0003074 +3.751968504E-02,2.801406815E-02,1.062992126E-02; 0001165P0003075 +110,2.875984252E-02,3.400745305E-02,1.313554928E-02, 0001167P0003076 +4.627952756E-02,3.400745305E-02,1.313554928E-02; 0001167P0003077 +142,0,1163,1171,1181,3; 0001169P0003078 +102,4,1173,1175,1177,1179; 0001171P0003079 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.022727273E-02,4.045454546E-02, 0001173P0003080 +6.068181818E-02,8.090909091E-02,0.101136364,0.121363636, 0001173P0003081 +0.141590909,0.161818182,0.182045455,0.202272727,0.2225, 0001173P0003082 +0.242727273,0.262954545,0.283181818,0.303409091,0.323636364, 0001173P0003083 +0.343863636,0.364090909,0.384318182,0.404545455,0.424772727, 0001173P0003084 +0.445,0.445,0.445,0.445,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001173P0003085 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.283185307,0., 0001173P0003086 +0.984848485,6.283185308,0.,0.954545455,6.283185308,0., 0001173P0003087 +0.909090909,6.283185308,0.,0.863636364,6.283185308,0., 0001173P0003088 +0.818181818,6.283185308,0.,0.772727273,6.283185308,0., 0001173P0003089 +0.727272727,6.283185308,0.,0.681818182,6.283185308,0., 0001173P0003090 +0.636363636,6.283185308,0.,0.590909091,6.283185308,0., 0001173P0003091 +0.545454545,6.283185308,0.,0.5,6.283185308,0.,0.454545455, 0001173P0003092 +6.283185308,0.,0.409090909,6.283185308,0.,0.363636364, 0001173P0003093 +6.283185308,0.,0.318181818,6.283185308,0.,0.272727273, 0001173P0003094 +6.283185308,0.,0.227272727,6.283185308,0.,0.181818182, 0001173P0003095 +6.283185308,0.,0.136363636,6.283185308,0.,9.090909091E-02, 0001173P0003096 +6.283185308,0.,4.545454545E-02,6.283185308,0.,1.515151515E-02, 0001173P0003097 +6.283185308,0.,6.081277803E-16,6.283185307,0.,0.,0.445,0.,0.,1.; 0001173P0003098 +126,24,3,0,0,1,0,0.395982513,0.395982513,0.395982513, 0001175P0003099 +0.395982513,0.449383141,0.502783769,0.556184397,0.609585024, 0001175P0003100 +0.662985652,0.71638628,0.769786908,0.823187536,0.876588164, 0001175P0003101 +0.929988792,0.98338942,1.036790048,1.090190676,1.143591304, 0001175P0003102 +1.196991931,1.250392559,1.303793187,1.357193815,1.410594443, 0001175P0003103 +1.463995071,1.517395699,1.570796327,1.570796327,1.570796327, 0001175P0003104 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001175P0003105 +1.,1.,1.,1.,1.,1.,1.,1.,6.081277803E-16,6.283185307,0., 0001175P0003106 +5.73313922E-16,6.265385098,0.,5.664155769E-16,6.22978468,0., 0001175P0003107 +6.786684687E-16,6.176384052,0.,1.123316067E-16,6.122983424,0., 0001175P0003108 +6.4082343E-16,6.069582796,0.,4.624501075E-16,6.016182168,0., 0001175P0003109 +5.197787618E-16,5.96278154,0.,3.411646547E-16,5.909380912,0., 0001175P0003110 +8.706196168E-16,5.855980284,0.,3.00670984E-16,5.802579656,0., 0001175P0003111 +4.2640782E-16,5.749179029,0.,3.657362965E-16,5.695778401,0., 0001175P0003112 +3.550127423E-16,5.642377773,0.,3.309056701E-16,5.588977145,0., 0001175P0003113 +3.103847008E-16,5.535576517,0.,2.889028381E-16,5.482175889,0., 0001175P0003114 +2.67678446E-16,5.428775261,0.,2.463850649E-16,5.375374633,0., 0001175P0003115 +2.251101693E-16,5.321974005,0.,2.038303204E-16,5.268573377,0., 0001175P0003116 +1.825517992E-16,5.215172749,0.,1.612729206E-16,5.161772122,0., 0001175P0003117 +1.470870696E-16,5.126171703,0.,1.399941356E-16,5.108371494,0., 0001175P0003118 +0.395982513,1.570796327,0.,0.,1.; 0001175P0003119 +110,1.399941356E-16,5.108371494,0.,1.,5.108371494,0.; 0001177P0003120 +110,1.,5.108371494,0.,1.,6.283185308,0.; 0001179P0003121 +102,4,1183,1185,1189,1191; 0001181P0003122 +110,4.627952756E-02,3.400745306E-02,1.313554928E-02, 0001183P0003123 +2.875984252E-02,3.400745306E-02,1.313554928E-02; 0001183P0003124 +100,9.412070041E-19,1.511053421E-18,3.361453586E-19, 0001185P0003125 +5.993384906E-03,2.50562802E-03,2.953810643E-18,6.496062993E-03; 0001185P0003126 +124,1.224646E-16,-2.719260372E-32,1.,2.875984252E-02,1., 0001187P0003127 +-2.220446049E-16,-1.224646E-16,2.801406815E-02,2.220446049E-16, 0001187P0003128 +1.,8.125204719E-49,1.062992126E-02; 0001187P0003129 +110,2.875984252E-02,2.801406815E-02,1.712598425E-02, 0001189P0003130 +4.627952756E-02,2.801406815E-02,1.712598425E-02; 0001189P0003131 +100,3.431884042E-18,-7.128415858E-19,-3.361453586E-19, 0001191P0003132 +-3.641041154E-18,-6.496062992E-03,5.993384905E-03, 0001191P0003133 +-2.50562802E-03; 0001191P0003134 +124,1.224646E-16,2.719260372E-32,-1.,4.627952756E-02,1., 0001193P0003135 +2.220446049E-16,1.224646E-16,2.801406815E-02,2.220446049E-16, 0001193P0003136 +-1.,-8.125204719E-49,1.062992126E-02; 0001193P0003137 +144,1197,1,0,1199; 0001195P0003138 +128,1,1,1,1,0,0,1,0,0,-0.277771351,-0.277771351,0.325635154, 0001197P0003139 +0.325635154,-0.130426136,-0.130426136,0.30542393,0.30542393,1., 0001197P0003140 +1.,1.,1.,4.627952756E-02,4.921259843E-02,-1.677702753E-05, 0001197P0003141 +4.627952756E-02,2.545643679E-02,-1.677702753E-05, 0001197P0003142 +4.627952756E-02,4.921259843E-02,1.714267442E-02,4.627952756E-02, 0001197P0003143 +2.545643679E-02,1.714267442E-02,-0.277771351,0.325635154, 0001197P0003144 +-0.130426123,0.30542393; 0001197P0003145 +142,0,1197,1201,1229,3; 0001199P0003146 +102,13,1203,1205,1207,1209,1211,1213,1215,1217,1219,1221,1223, 0001201P0003147 +1225,1227; 0001201P0003148 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600103E-03,5.917200207E-03, 0001203P0003149 +8.87580031E-03,1.183440041E-02,1.479300052E-02,1.775160062E-02, 0001203P0003150 +2.071020072E-02,2.366880083E-02,2.662740093E-02,2.958600103E-02, 0001203P0003151 +3.254460114E-02,3.550320124E-02,3.846180135E-02,4.142040145E-02, 0001203P0003152 +4.437900155E-02,4.733760166E-02,5.029620176E-02,5.325480186E-02, 0001203P0003153 +5.621340197E-02,5.917200207E-02,6.213060217E-02,6.508920228E-02, 0001203P0003154 +6.508920228E-02,6.508920228E-02,6.508920228E-02,1.,1.,1.,1.,1., 0001203P0003155 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001203P0003156 +0.325635154,0.175,0.,0.32558354,0.175984849,0.,0.325480313, 0001203P0003157 +0.177954546,0.,0.325325472,0.180909091,0.,0.325170631, 0001203P0003158 +0.183863636,0.,0.325015789,0.186818182,0.,0.324860948, 0001203P0003159 +0.189772727,0.,0.324706107,0.192727273,0.,0.324551266, 0001203P0003160 +0.195681818,0.,0.324396425,0.198636364,0.,0.324241584, 0001203P0003161 +0.201590909,0.,0.324086742,0.204545454,0.,0.323931901,0.2075,0., 0001203P0003162 +0.32377706,0.210454545,0.,0.323622219,0.213409091,0., 0001203P0003163 +0.323467378,0.216363636,0.,0.323312537,0.219318182,0., 0001203P0003164 +0.323157695,0.222272727,0.,0.323002854,0.225227273,0., 0001203P0003165 +0.322848013,0.228181818,0.,0.322693172,0.231136363,0., 0001203P0003166 +0.322538331,0.234090909,0.,0.32238349,0.237045454,0., 0001203P0003167 +0.322280262,0.239015151,0.,0.322228648,0.24,0.,0., 0001203P0003168 +6.508920228E-02,0.,0.,1.; 0001203P0003169 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600115E-03,5.91720023E-03, 0001205P0003170 +8.875800345E-03,1.183440046E-02,1.479300058E-02,1.775160069E-02, 0001205P0003171 +2.071020081E-02,2.366880092E-02,2.662740104E-02,2.958600115E-02, 0001205P0003172 +3.254460127E-02,3.550320138E-02,3.84618015E-02,4.142040161E-02, 0001205P0003173 +4.437900173E-02,4.733760184E-02,5.029620196E-02,5.325480207E-02, 0001205P0003174 +5.621340219E-02,5.91720023E-02,6.213060242E-02,6.508920253E-02, 0001205P0003175 +6.508920253E-02,6.508920253E-02,6.508920253E-02,1.,1.,1.,1.,1., 0001205P0003176 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001205P0003177 +0.322228648,0.24,0.,0.322280262,0.240984848,0.,0.32238349, 0001205P0003178 +0.242954545,0.,0.322538331,0.245909091,0.,0.322693172, 0001205P0003179 +0.248863636,0.,0.322848013,0.251818182,0.,0.323002854, 0001205P0003180 +0.254772727,0.,0.323157695,0.257727272,0.,0.323312537, 0001205P0003181 +0.260681818,0.,0.323467378,0.263636363,0.,0.323622219, 0001205P0003182 +0.266590909,0.,0.32377706,0.269545454,0.,0.323931901,0.2725,0., 0001205P0003183 +0.324086742,0.275454545,0.,0.324241584,0.278409091,0., 0001205P0003184 +0.324396425,0.281363636,0.,0.324551266,0.284318182,0., 0001205P0003185 +0.324706107,0.287272727,0.,0.324860948,0.290227272,0., 0001205P0003186 +0.325015789,0.293181818,0.,0.325170631,0.296136363,0., 0001205P0003187 +0.325325472,0.299090909,0.,0.325480313,0.302045454,0., 0001205P0003188 +0.32558354,0.304015151,0.,0.325635154,0.305,0.,0., 0001205P0003189 +6.508920253E-02,0.,0.,1.; 0001205P0003190 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.952901661E-03,5.905803322E-03, 0001207P0003191 +8.858704983E-03,1.181160664E-02,1.476450831E-02,1.771740997E-02, 0001207P0003192 +2.067031163E-02,2.362321329E-02,2.657611495E-02,2.952901661E-02, 0001207P0003193 +3.248191827E-02,3.543481993E-02,3.838772159E-02,4.134062326E-02, 0001207P0003194 +4.429352492E-02,4.724642658E-02,5.019932824E-02,5.31522299E-02, 0001207P0003195 +5.610513156E-02,5.905803322E-02,6.201093488E-02,6.496383654E-02, 0001207P0003196 +6.496383654E-02,6.496383654E-02,6.496383654E-02,1.,1.,1.,1.,1., 0001207P0003197 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001207P0003198 +0.325635154,0.305,0.,0.324650853,0.305,0.,0.322682252,0.305,0., 0001207P0003199 +0.319729351,0.305,0.,0.316776449,0.305,0.,0.313823547,0.305,0., 0001207P0003200 +0.310870646,0.305,0.,0.307917744,0.305,0.,0.304964842,0.305,0., 0001207P0003201 +0.302011941,0.305,0.,0.299059039,0.305,0.,0.296106137,0.305,0., 0001207P0003202 +0.293153236,0.305,0.,0.290200334,0.305,0.,0.287247432,0.305,0., 0001207P0003203 +0.284294531,0.305,0.,0.281341629,0.305,0.,0.278388727,0.305,0., 0001207P0003204 +0.275435826,0.305,0.,0.272482924,0.305,0.,0.269530023,0.305,0., 0001207P0003205 +0.266577121,0.305,0.,0.263624219,0.305,0.,0.261655618,0.305,0., 0001207P0003206 +0.260671318,0.305,0.,0.,6.496383654E-02,0.,0.,1.; 0001207P0003207 +126,24,3,1,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0001209P0003208 +4.765789608,4.819190236,4.872590864,4.925991492,4.97939212, 0001209P0003209 +5.032792748,5.086193376,5.139594004,5.192994631,5.246395259, 0001209P0003210 +5.299795887,5.353196515,5.406597143,5.459997771,5.513398399, 0001209P0003211 +5.566799027,5.620199655,5.673600282,5.72700091,5.780401538, 0001209P0003212 +5.833802166,5.887202794,5.887202794,5.887202794,5.887202794,1., 0001209P0003213 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001209P0003214 +1.,1.,1.,0.260671318,0.305,0.,0.257734276,0.305000111,0., 0001209P0003215 +0.251860218,0.304843071,0.,0.24307423,0.304137862,0., 0001209P0003216 +0.234338417,0.302964621,0.,0.225677675,0.301326799,0., 0001209P0003217 +0.217116699,0.299229036,0.,0.208679896,0.296677321,0., 0001209P0003218 +0.200391317,0.293678926,0.,0.192274593,0.2902424,0.,0.184352865, 0001209P0003219 +0.286377541,0.,0.176648717,0.282095367,0.,0.169184113, 0001209P0003220 +0.277408086,0.,0.161980334,0.272329062,0.,0.155057919, 0001209P0003221 +0.266872774,0.,0.148436602,0.261054778,0.,0.14213526, 0001209P0003222 +0.254891661,0.,0.136171859,0.248400994,0.,0.1305634,0.241601282, 0001209P0003223 +0.,0.12532587,0.234511909,0.,0.120474209,0.227153085,0., 0001209P0003224 +0.116022223,0.219545803,0.,0.111982698,0.211711702,0., 0001209P0003225 +0.109572099,0.206352762,0.,0.108439341,0.203642952,0., 0001209P0003226 +4.71238898,5.887202794,0.,0.,1.; 0001209P0003227 +126,24,3,0,0,1,0,-1.05750058E-10,-1.05750058E-10, 0001211P0003228 +-1.05750058E-10,-1.05750058E-10,8.973622387E-03,1.794724488E-02, 0001211P0003229 +2.692086737E-02,3.589448987E-02,4.486811236E-02,5.384173485E-02, 0001211P0003230 +6.281535735E-02,7.178897984E-02,8.076260233E-02,8.973622483E-02, 0001211P0003231 +9.870984732E-02,0.10768347,0.116657092,0.125630715,0.134604337, 0001211P0003232 +0.14357796,0.152551582,0.161525205,0.170498827,0.17947245, 0001211P0003233 +0.188446072,0.197419695,0.197419695,0.197419695,0.197419695,1., 0001211P0003234 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001211P0003235 +1.,1.,1.,0.108439341,0.203642952,0.,0.107285588,0.20088321,0., 0001211P0003236 +0.104978081,0.195363726,0.,0.101516822,0.1870845,0., 0001211P0003237 +9.805556242E-02,0.178805274,0.,9.459430288E-02,0.170526048,0., 0001211P0003238 +9.113304335E-02,0.162246822,0.,8.767178382E-02,0.153967596,0., 0001211P0003239 +8.421052428E-02,0.14568837,0.,8.074926475E-02,0.137409144,0., 0001211P0003240 +7.728800522E-02,0.129129918,0.,7.382674568E-02,0.120850692,0., 0001211P0003241 +7.036548615E-02,0.112571466,0.,6.690422662E-02,0.10429224,0., 0001211P0003242 +6.344296708E-02,9.601301398E-02,0.,5.998170755E-02, 0001211P0003243 +8.7733788E-02,0.,5.652044802E-02,7.945456202E-02,0., 0001211P0003244 +5.305918848E-02,7.117533604E-02,0.,4.959792895E-02, 0001211P0003245 +6.289611006E-02,0.,4.613666941E-02,5.461688408E-02,0., 0001211P0003246 +4.267540988E-02,4.633765811E-02,0.,3.921415035E-02, 0001211P0003247 +3.805843213E-02,0.,3.575289081E-02,2.977920615E-02,0., 0001211P0003248 +3.344538446E-02,2.425972216E-02,0.,3.229163128E-02, 0001211P0003249 +2.149998017E-02,0.,-1.05750058E-10,0.197419695,0.,0.,1.; 0001211P0003250 +126,24,3,1,0,1,0,0.395982513,0.395982513,0.395982513, 0001213P0003251 +0.395982513,0.449383141,0.502783769,0.556184397,0.609585025, 0001213P0003252 +0.662985653,0.71638628,0.769786908,0.823187536,0.876588164, 0001213P0003253 +0.929988792,0.98338942,1.036790048,1.090190676,1.143591304, 0001213P0003254 +1.196991932,1.250392559,1.303793187,1.357193815,1.410594443, 0001213P0003255 +1.463995071,1.517395699,1.570796327,1.570796327,1.570796327, 0001213P0003256 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001213P0003257 +1.,1.,1.,1.,1.,1.,1.,1.,3.22916313E-02,2.149998016E-02,0., 0001213P0003258 +3.205134936E-02,2.092517183E-02,0.,3.154001007E-02, 0001213P0003259 +1.978842713E-02,0.,3.068314126E-02,1.812664814E-02,0., 0001213P0003260 +2.973878053E-02,1.651298209E-02,0.,2.870964028E-02, 0001213P0003261 +1.495201948E-02,0.,2.759864916E-02,1.344821322E-02,0., 0001213P0003262 +2.640897599E-02,1.200584986E-02,0.,2.514401208E-02, 0001213P0003263 +1.062904171E-02,0.,2.380736389E-02,9.321713917E-03,0., 0001213P0003264 +2.240284209E-02,8.087593622E-03,0.,2.093445093E-02, 0001213P0003265 +6.930199239E-03,0.,1.940637671E-02,5.85283044E-03,0., 0001213P0003266 +1.782297588E-02,4.858558749E-03,0.,1.618876265E-02, 0001213P0003267 +3.950218786E-03,0.,1.450839608E-02,3.130400179E-03,0., 0001213P0003268 +1.27866668E-02,2.401440198E-03,0.,1.102848339E-02, 0001213P0003269 +1.76541704E-03,0.,9.238858314E-03,1.22414409E-03,0., 0001213P0003270 +7.422893745E-03,7.791640607E-04,0.,5.585766799E-03, 0001213P0003271 +4.317471728E-04,0.,3.732715422E-03,1.828778996E-04,0., 0001213P0003272 +1.869021109E-03,3.328812904E-05,0.,6.230087792E-04, 0001213P0003273 +-2.340254312E-08,-0.,-6.398223955E-11,2.588123292E-10,0., 0001213P0003274 +0.395982513,1.570796327,-0.,-0.,1.; 0001213P0003275 +126,24,3,0,0,1,0,0.,0.,0.,0.,1.262597051E-02,2.525194102E-02, 0001215P0003276 +3.787791153E-02,5.050388204E-02,6.312985255E-02,7.575582306E-02, 0001215P0003277 +8.838179358E-02,0.101007764,0.113633735,0.126259705,0.138885676, 0001215P0003278 +0.151511646,0.164137617,0.176763587,0.189389558,0.202015528, 0001215P0003279 +0.214641499,0.227267469,0.23989344,0.25251941,0.265145381, 0001215P0003280 +0.277771351,0.277771351,0.277771351,0.277771351,1.,1.,1.,1.,1., 0001215P0003281 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001215P0003282 +-6.398223955E-11,2.636623385E-10,0.,-4.208656896E-03, 0001215P0003283 +2.636623385E-10,0.,-1.262597056E-02,2.636623385E-10,0., 0001215P0003284 +-2.525194106E-02,2.636623385E-10,0.,-3.787791156E-02, 0001215P0003285 +2.636623385E-10,0.,-5.050388205E-02,2.636623385E-10,0., 0001215P0003286 +-6.312985255E-02,2.636623385E-10,0.,-7.575582305E-02, 0001215P0003287 +2.636623385E-10,0.,-8.838179354E-02,2.636623385E-10,0., 0001215P0003288 +-0.101007764,2.636623385E-10,0.,-0.113633735,2.636623385E-10,0., 0001215P0003289 +-0.126259705,2.636623385E-10,0.,-0.138885676,2.636623385E-10,0., 0001215P0003290 +-0.151511646,2.636623385E-10,0.,-0.164137617,2.636623385E-10,0., 0001215P0003291 +-0.176763587,2.636623385E-10,0.,-0.189389558,2.636623385E-10,0., 0001215P0003292 +-0.202015528,2.636623385E-10,0.,-0.214641499,2.636623385E-10,0., 0001215P0003293 +-0.227267469,2.636623385E-10,0.,-0.23989344,2.636623384E-10,0., 0001215P0003294 +-0.25251941,2.636623388E-10,0.,-0.265145381,2.636623374E-10,0., 0001215P0003295 +-0.273562694,2.636623409E-10,0.,-0.277771351,2.636623446E-10,0., 0001215P0003296 +0.,0.277771351,0.,0.,1.; 0001215P0003297 +110,-0.277771351,2.636623446E-10,0.,-0.277771351,-0.13,0.; 0001217P0003298 +126,24,3,0,0,1,0,6.846166641E-34,6.846166641E-34, 0001219P0003299 +6.846166641E-34,6.846166641E-34,1.262597051E-02,2.525194102E-02, 0001219P0003300 +3.787791153E-02,5.050388204E-02,6.312985255E-02,7.575582306E-02, 0001219P0003301 +8.838179358E-02,0.101007764,0.113633735,0.126259705,0.138885676, 0001219P0003302 +0.151511646,0.164137617,0.176763587,0.189389558,0.202015528, 0001219P0003303 +0.214641499,0.227267469,0.23989344,0.25251941,0.265145381, 0001219P0003304 +0.277771351,0.277771351,0.277771351,0.277771351,1.,1.,1.,1.,1., 0001219P0003305 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001219P0003306 +-0.277771351,-0.13,0.,-0.273562694,-0.13,0.,-0.265145381,-0.13, 0001219P0003307 +0.,-0.25251941,-0.13,0.,-0.23989344,-0.13,0.,-0.227267469,-0.13, 0001219P0003308 +0.,-0.214641499,-0.13,0.,-0.202015528,-0.13,0.,-0.189389558, 0001219P0003309 +-0.13,0.,-0.176763587,-0.13,0.,-0.164137617,-0.13,0., 0001219P0003310 +-0.151511646,-0.13,0.,-0.138885676,-0.13,0.,-0.126259705,-0.13, 0001219P0003311 +0.,-0.113633735,-0.13,0.,-0.101007764,-0.13,0.,-8.838179354E-02, 0001219P0003312 +-0.13,0.,-7.575582305E-02,-0.13,0.,-6.312985255E-02,-0.13,0., 0001219P0003313 +-5.050388205E-02,-0.13,0.,-3.787791156E-02,-0.13,0., 0001219P0003314 +-2.525194106E-02,-0.13,0.,-1.262597056E-02,-0.13,0., 0001219P0003315 +-4.208656896E-03,-0.13,0.,-6.398220842E-11,-0.13,0., 0001219P0003316 +6.846166641E-34,0.277771351,0.,0.,1.; 0001219P0003317 +126,24,3,1,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0001221P0003318 +4.765789608,4.819190236,4.872590864,4.925991492,4.97939212, 0001221P0003319 +5.032792748,5.086193376,5.139594004,5.192994631,5.246395259, 0001221P0003320 +5.299795887,5.353196515,5.406597143,5.459997771,5.513398399, 0001221P0003321 +5.566799027,5.620199655,5.673600282,5.72700091,5.780401538, 0001221P0003322 +5.833802166,5.887202794,5.887202794,5.887202794,5.887202794,1., 0001221P0003323 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001221P0003324 +1.,1.,1.,-6.398231944E-11,-0.13,0.,2.937041625E-03,-0.130000111, 0001221P0003325 +-0.,8.811099747E-03,-0.129843071,-0.,1.759708722E-02, 0001221P0003326 +-0.129137862,-0.,2.633290085E-02,-0.127964621,-0., 0001221P0003327 +3.499364217E-02,-0.126326799,-0.,4.355461799E-02,-0.124229036, 0001221P0003328 +-0.,5.19914219E-02,-0.12167732,-0.,6.028000087E-02,-0.118678926, 0001221P0003329 +-0.,6.83967246E-02,-0.1152424,-0.,7.631845273E-02,-0.111377541, 0001221P0003330 +-0.,8.40226008E-02,-0.107095367,-0.,9.148720469E-02, 0001221P0003331 +-0.102408086,-0.,9.869098318E-02,-9.732906146E-02,-0., 0001221P0003332 +0.105613399,-9.187277366E-02,-0.,0.112234716,-8.605477799E-02, 0001221P0003333 +-0.,0.118536057,-7.989166125E-02,-0.,0.124499458, 0001221P0003334 +-7.340099423E-02,-0.,0.130107918,-6.660128127E-02,-0., 0001221P0003335 +0.135345447,-5.951190891E-02,-0.,0.140197108,-5.21530852E-02, 0001221P0003336 +-0.,0.144649095,-4.454580239E-02,-0.,0.148688619, 0001221P0003337 +-3.671170141E-02,-0.,0.151099219,-3.135276211E-02,-0., 0001221P0003338 +0.152231976,-2.864295144E-02,-0.,4.71238898,5.887202794,0.,0., 0001221P0003339 +1.; 0001221P0003340 +126,24,3,0,0,1,0,-8.176192623E-11,-8.176192623E-11, 0001223P0003341 +-8.176192623E-11,-8.176192623E-11,8.97362241E-03,1.79472449E-02, 0001223P0003342 +2.692086739E-02,3.589448988E-02,4.486811238E-02,5.384173487E-02, 0001223P0003343 +6.281535736E-02,7.178897985E-02,8.076260234E-02,8.973622483E-02, 0001223P0003344 +9.870984733E-02,0.10768347,0.116657092,0.125630715,0.134604337, 0001223P0003345 +0.14357796,0.152551582,0.161525205,0.170498827,0.17947245, 0001223P0003346 +0.188446072,0.197419695,0.197419695,0.197419695,0.197419695,1., 0001223P0003347 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001223P0003348 +1.,1.,1.,0.152231976,-2.864295149E-02,-0.,0.15338573, 0001223P0003349 +-2.58832095E-02,-0.,0.155693236,-2.036372551E-02,-0., 0001223P0003350 +0.159154496,-1.208449954E-02,-0.,0.162615755,-3.805273559E-03, 0001223P0003351 +-0.,0.166077015,4.473952419E-03,0.,0.169538274,1.27531784E-02, 0001223P0003352 +0.,0.172999534,2.103240438E-02,0.,0.176460793,2.931163035E-02, 0001223P0003353 +0.,0.179922053,3.759085633E-02,0.,0.183383312,4.587008231E-02, 0001223P0003354 +0.,0.186844572,5.414930829E-02,0.,0.190305831,6.242853426E-02, 0001223P0003355 +0.,0.193767091,7.070776024E-02,0.,0.19722835,7.898698622E-02,0., 0001223P0003356 +0.20068961,8.72662122E-02,0.,0.204150869,9.554543818E-02,0., 0001223P0003357 +0.207612129,0.103824664,0.,0.211073389,0.11210389,0., 0001223P0003358 +0.214534648,0.120383116,0.,0.217995908,0.128662342,0., 0001223P0003359 +0.221457167,0.136941568,0.,0.224918427,0.145220794,0., 0001223P0003360 +0.227225933,0.150740278,0.,0.228379686,0.15350002,0., 0001223P0003361 +-8.176192623E-11,0.197419695,0.,0.,1.; 0001223P0003362 +126,24,3,1,0,1,0,0.395982512,0.395982512,0.395982512, 0001225P0003363 +0.395982512,0.44938314,0.502783768,0.556184396,0.609585024, 0001225P0003364 +0.662985652,0.71638628,0.769786908,0.823187536,0.876588164, 0001225P0003365 +0.929988791,0.983389419,1.036790047,1.090190675,1.143591303, 0001225P0003366 +1.196991931,1.250392559,1.303793187,1.357193815,1.410594443, 0001225P0003367 +1.463995071,1.517395699,1.570796327,1.570796327,1.570796327, 0001225P0003368 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001225P0003369 +1.,1.,1.,1.,1.,1.,1.,1.,0.228379686,0.15350002,0.,0.228619968, 0001225P0003370 +0.154074828,0.,0.229131307,0.155211573,0.,0.229988176, 0001225P0003371 +0.156873352,0.,0.230932537,0.158487018,0.,0.231961677, 0001225P0003372 +0.160047981,0.,0.233072668,0.161551787,0.,0.234262341, 0001225P0003373 +0.16299415,0.,0.235527305,0.164370959,0.,0.236863954, 0001225P0003374 +0.165678286,0.,0.238268475,0.166912407,0.,0.239736867, 0001225P0003375 +0.168069801,0.,0.241264941,0.16914717,0.,0.242848342, 0001225P0003376 +0.170141441,0.,0.244482555,0.171049781,0.,0.246162921,0.1718696, 0001225P0003377 +0.,0.247884651,0.17259856,0.,0.249642834,0.173234583,0., 0001225P0003378 +0.251432459,0.173775856,0.,0.253248424,0.174220836,0., 0001225P0003379 +0.255085551,0.174568253,0.,0.256938602,0.174817122,0., 0001225P0003380 +0.258802296,0.174966712,0.,0.260048309,0.175000024,0., 0001225P0003381 +0.260671318,0.175,0.,0.395982512,1.570796327,-0.,-0.,1.; 0001225P0003382 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.952901661E-03,5.905803322E-03, 0001227P0003383 +8.858704983E-03,1.181160664E-02,1.476450831E-02,1.771740997E-02, 0001227P0003384 +2.067031163E-02,2.362321329E-02,2.657611495E-02,2.952901661E-02, 0001227P0003385 +3.248191827E-02,3.543481993E-02,3.838772159E-02,4.134062326E-02, 0001227P0003386 +4.429352492E-02,4.724642658E-02,5.019932824E-02,5.31522299E-02, 0001227P0003387 +5.610513156E-02,5.905803322E-02,6.201093488E-02,6.496383654E-02, 0001227P0003388 +6.496383654E-02,6.496383654E-02,6.496383654E-02,1.,1.,1.,1.,1., 0001227P0003389 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001227P0003390 +0.260671318,0.175,0.,0.261655618,0.175,0.,0.263624219,0.175,0., 0001227P0003391 +0.266577121,0.175,0.,0.269530023,0.175,0.,0.272482924,0.175,0., 0001227P0003392 +0.275435826,0.175,0.,0.278388727,0.175,0.,0.281341629,0.175,0., 0001227P0003393 +0.284294531,0.175,0.,0.287247432,0.175,0.,0.290200334,0.175,0., 0001227P0003394 +0.293153236,0.175,0.,0.296106137,0.175,0.,0.299059039,0.175,0., 0001227P0003395 +0.302011941,0.175,0.,0.304964842,0.175,0.,0.307917744,0.175,0., 0001227P0003396 +0.310870646,0.175,0.,0.313823547,0.175,0.,0.316776449,0.175,0., 0001227P0003397 +0.319729351,0.175,0.,0.322682252,0.175,0.,0.324650853,0.175,0., 0001227P0003398 +0.325635154,0.175,0.,0.,6.496383654E-02,0.,0.,1.; 0001227P0003399 +102,13,1231,1233,1235,1237,1241,1243,1247,1249,1251,1253,1257, 0001229P0003400 +1259,1263; 0001229P0003401 +110,4.627952756E-02,2.545643679E-02,1.200787402E-02, 0001231P0003402 +4.627952756E-02,2.559055118E-02,1.456692913E-02; 0001231P0003403 +110,4.627952756E-02,2.559055118E-02,1.456692913E-02, 0001233P0003404 +4.627952756E-02,2.545643679E-02,1.712598425E-02; 0001233P0003405 +110,4.627952756E-02,2.545643679E-02,1.712598425E-02, 0001235P0003406 +4.627952756E-02,2.801406815E-02,1.712598425E-02; 0001235P0003407 +100,3.431884042E-18,-7.128415858E-19,-3.361453586E-19, 0001237P0003408 +-3.641041154E-18,-6.496062992E-03,5.993384904E-03, 0001237P0003409 +-2.505628022E-03; 0001237P0003410 +124,1.224646E-16,2.719260372E-32,-1.,4.627952756E-02,1., 0001239P0003411 +2.220446049E-16,1.224646E-16,2.801406815E-02,2.220446049E-16, 0001239P0003412 +-1.,-8.125204719E-49,1.062992126E-02; 0001239P0003413 +110,4.627952756E-02,3.400745306E-02,1.313554928E-02, 0001241P0003414 +4.627952756E-02,3.700539439E-02,5.964566139E-03; 0001241P0003415 +100,4.055086866E-18,1.630571771E-18,-2.427716479E-19, 0001243P0003416 +1.271324071E-03,5.314968532E-04,1.937904671E-18,1.377952756E-03; 0001243P0003417 +124,-1.224646E-16,2.719260372E-32,1.,4.627952756E-02,-1., 0001245P0003418 +2.220446049E-16,-1.224646E-16,3.827671846E-02,-2.220446049E-16, 0001245P0003419 +-1.,8.125204719E-49,6.496062992E-03; 0001245P0003420 +110,4.627952756E-02,3.827671846E-02,5.118110236E-03, 0001247P0003421 +4.627952756E-02,4.921259843E-02,5.118110236E-03; 0001247P0003422 +110,4.627952756E-02,4.921259843E-02,5.118110236E-03, 0001249P0003423 +4.627952756E-02,4.921259843E-02,8.74191358E-18; 0001249P0003424 +110,4.627952756E-02,4.921259843E-02,8.984688332E-18, 0001251P0003425 +4.627952756E-02,3.827671846E-02,6.556435185E-18; 0001251P0003426 +100,-4.055086866E-18,1.630571771E-18,2.427716479E-19, 0001253P0003427 +-1.297627797E-18,-6.496062992E-03,5.993384904E-03, 0001253P0003428 +-2.505628022E-03; 0001253P0003429 +124,-1.224646E-16,-2.719260372E-32,-1.,4.627952756E-02,-1., 0001255P0003430 +-2.220446049E-16,1.224646E-16,3.827671846E-02,-2.220446049E-16, 0001255P0003431 +1.,-8.125204719E-49,6.496062992E-03; 0001255P0003432 +110,4.627952756E-02,3.228333355E-02,3.990434968E-03, 0001257P0003433 +4.627952756E-02,2.928539222E-02,1.116141811E-02; 0001257P0003434 +100,-3.431884042E-18,-7.128415858E-19,3.361453586E-19, 0001259P0003435 +1.271324071E-03,5.314968519E-04,-4.076429428E-19, 0001259P0003436 +1.377952756E-03; 0001259P0003437 +124,1.224646E-16,-2.719260372E-32,1.,4.627952756E-02,1., 0001261P0003438 +-2.220446049E-16,-1.224646E-16,2.801406815E-02,2.220446049E-16, 0001261P0003439 +1.,8.125204719E-49,1.062992126E-02; 0001261P0003440 +110,4.627952756E-02,2.801406815E-02,1.200787402E-02, 0001263P0003441 +4.627952756E-02,2.545643679E-02,1.200787402E-02; 0001263P0003442 +144,1267,1,0,1269; 0001265P0003443 +128,1,1,1,1,0,0,1,0,0,-0.445,-0.445,7.512033272E-34, 0001267P0003444 +7.512033272E-34,0.,0.,0.277771351,0.277771351,1.,1.,1.,1., 0001267P0003445 +4.627952756E-02,3.827671846E-02,5.118110236E-03,2.875984252E-02, 0001267P0003446 +3.827671846E-02,5.118110236E-03,4.627952756E-02,4.921259843E-02, 0001267P0003447 +5.118110236E-03,2.875984252E-02,4.921259843E-02,5.118110236E-03, 0001267P0003448 +-0.445,7.512033272E-34,0.,0.277771351; 0001267P0003449 +142,0,1267,1271,1281,3; 0001269P0003450 +102,4,1273,1275,1277,1279; 0001271P0003451 +110,7.512033272E-34,0.277771351,0.,-0.445,0.277771351,0.; 0001273P0003452 +110,-0.445,0.277771351,0.,-0.445,-2.380000086E-10,0.; 0001275P0003453 +110,-0.445,0.,0.,1.599992361E-11,0.,0.; 0001277P0003454 +110,7.512033272E-34,0.,0.,7.512033272E-34,0.277771351,0.; 0001279P0003455 +102,4,1283,1285,1287,1289; 0001281P0003456 +110,2.875984252E-02,4.921259843E-02,5.118110236E-03, 0001283P0003457 +4.627952756E-02,4.921259843E-02,5.118110236E-03; 0001283P0003458 +110,4.627952756E-02,4.921259843E-02,5.118110236E-03, 0001285P0003459 +4.627952756E-02,3.827671846E-02,5.118110236E-03; 0001285P0003460 +110,4.627952756E-02,3.827671846E-02,5.118110236E-03, 0001287P0003461 +2.875984252E-02,3.827671846E-02,5.118110236E-03; 0001287P0003462 +110,2.875984252E-02,3.827671846E-02,5.118110236E-03, 0001289P0003463 +2.875984252E-02,4.921259843E-02,5.118110236E-03; 0001289P0003464 +144,1293,1,0,1299; 0001291P0003465 +120,1295,1297,5.108371493,6.283185307; 0001293P0003466 +110,-1.8503937E-03,3.827671846E-02,6.496062992E-03, 0001295P0003467 +3.751968504E-02,3.827671846E-02,6.496062992E-03; 0001295P0003468 +110,4.627952756E-02,3.827671846E-02,5.118110236E-03, 0001297P0003469 +2.875984252E-02,3.827671846E-02,5.118110236E-03; 0001297P0003470 +142,0,1293,1301,1311,3; 0001299P0003471 +102,4,1303,1305,1307,1309; 0001301P0003472 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.022727273E-02,4.045454546E-02, 0001303P0003473 +6.068181818E-02,8.090909091E-02,0.101136364,0.121363636, 0001303P0003474 +0.141590909,0.161818182,0.182045455,0.202272727,0.2225, 0001303P0003475 +0.242727273,0.262954545,0.283181818,0.303409091,0.323636364, 0001303P0003476 +0.343863636,0.364090909,0.384318182,0.404545455,0.424772727, 0001303P0003477 +0.445,0.445,0.445,0.445,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001303P0003478 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.283185307,0., 0001303P0003479 +0.984848485,6.283185307,0.,0.954545455,6.283185307,0., 0001303P0003480 +0.909090909,6.283185307,0.,0.863636364,6.283185307,0., 0001303P0003481 +0.818181818,6.283185307,0.,0.772727273,6.283185307,0., 0001303P0003482 +0.727272727,6.283185307,0.,0.681818182,6.283185307,0., 0001303P0003483 +0.636363636,6.283185307,0.,0.590909091,6.283185307,0., 0001303P0003484 +0.545454545,6.283185307,0.,0.5,6.283185307,0.,0.454545455, 0001303P0003485 +6.283185307,0.,0.409090909,6.283185307,0.,0.363636364, 0001303P0003486 +6.283185307,0.,0.318181818,6.283185307,0.,0.272727273, 0001303P0003487 +6.283185307,0.,0.227272727,6.283185307,0.,0.181818182, 0001303P0003488 +6.283185307,0.,0.136363636,6.283185307,0.,9.090909091E-02, 0001303P0003489 +6.283185307,0.,4.545454545E-02,6.283185307,0.,1.515151515E-02, 0001303P0003490 +6.283185307,0.,9.355812005E-16,6.283185307,0.,0.,0.445,0.,0.,1.; 0001303P0003491 +110,9.355812005E-16,6.283185307,0.,4.674475557E-16,5.108371493, 0001305P0003492 +0.; 0001305P0003493 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.022727273E-02,4.045454546E-02, 0001307P0003494 +6.068181818E-02,8.090909091E-02,0.101136364,0.121363636, 0001307P0003495 +0.141590909,0.161818182,0.182045455,0.202272727,0.2225, 0001307P0003496 +0.242727273,0.262954545,0.283181818,0.303409091,0.323636364, 0001307P0003497 +0.343863636,0.364090909,0.384318182,0.404545455,0.424772727, 0001307P0003498 +0.445,0.445,0.445,0.445,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001307P0003499 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,4.674475558E-16,5.108371494, 0001307P0003500 +0.,1.515151515E-02,5.108371494,0.,4.545454545E-02,5.108371494, 0001307P0003501 +0.,9.090909091E-02,5.108371494,0.,0.136363636,5.108371494,0., 0001307P0003502 +0.181818182,5.108371494,0.,0.227272727,5.108371494,0., 0001307P0003503 +0.272727273,5.108371494,0.,0.318181818,5.108371494,0., 0001307P0003504 +0.363636364,5.108371494,0.,0.409090909,5.108371494,0., 0001307P0003505 +0.454545455,5.108371494,0.,0.5,5.108371494,0.,0.545454545, 0001307P0003506 +5.108371494,0.,0.590909091,5.108371494,0.,0.636363636, 0001307P0003507 +5.108371494,0.,0.681818182,5.108371494,0.,0.727272727, 0001307P0003508 +5.108371494,0.,0.772727273,5.108371494,0.,0.818181818, 0001307P0003509 +5.108371494,0.,0.863636364,5.108371494,0.,0.909090909, 0001307P0003510 +5.108371494,0.,0.954545455,5.108371494,0.,0.984848485, 0001307P0003511 +5.108371494,0.,1.,5.108371494,0.,0.,0.445,0.,0.,1.; 0001307P0003512 +126,24,3,0,0,1,0,0.395982513,0.395982513,0.395982513, 0001309P0003513 +0.395982513,0.449383141,0.502783769,0.556184397,0.609585025, 0001309P0003514 +0.662985653,0.71638628,0.769786908,0.823187536,0.876588164, 0001309P0003515 +0.929988792,0.98338942,1.036790048,1.090190676,1.143591304, 0001309P0003516 +1.196991932,1.250392559,1.303793187,1.357193815,1.410594443, 0001309P0003517 +1.463995071,1.517395699,1.570796327,1.570796327,1.570796327, 0001309P0003518 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001309P0003519 +1.,1.,1.,1.,1.,1.,1.,1.,1.,5.108371494,0.,1.,5.126171703,0.,1., 0001309P0003520 +5.161772122,0.,1.,5.215172749,0.,1.,5.268573377,0.,1., 0001309P0003521 +5.321974005,0.,1.,5.375374633,0.,1.,5.428775261,0.,1., 0001309P0003522 +5.482175889,0.,1.,5.535576517,0.,1.,5.588977145,0.,1., 0001309P0003523 +5.642377773,0.,1.,5.6957784,0.,1.,5.749179028,0.,1.,5.802579656, 0001309P0003524 +0.,1.,5.855980284,0.,1.,5.909380912,0.,1.,5.96278154,0.,1., 0001309P0003525 +6.016182168,0.,1.,6.069582796,0.,1.,6.122983424,0.,1., 0001309P0003526 +6.176384052,0.,1.,6.229784679,0.,1.,6.265385098,0.,1., 0001309P0003527 +6.283185307,0.,0.395982513,1.570796327,0.,0.,1.; 0001309P0003528 +102,4,1313,1315,1319,1321; 0001311P0003529 +110,2.875984252E-02,3.827671846E-02,5.118110236E-03, 0001313P0003530 +4.627952756E-02,3.827671846E-02,5.118110236E-03; 0001313P0003531 +100,-4.055086866E-18,1.630571771E-18,2.427716479E-19, 0001315P0003532 +1.937904671E-18,-1.377952756E-03,1.271324071E-03, 0001315P0003533 +-5.314968531E-04; 0001315P0003534 +124,-1.224646E-16,-2.719260372E-32,-1.,4.627952756E-02,-1., 0001317P0003535 +-2.220446049E-16,1.224646E-16,3.827671846E-02,-2.220446049E-16, 0001317P0003536 +1.,-8.125204719E-49,6.496062992E-03; 0001317P0003537 +110,4.627952756E-02,3.700539439E-02,5.964566139E-03, 0001319P0003538 +2.875984252E-02,3.700539439E-02,5.964566139E-03; 0001319P0003539 +100,-3.158699243E-19,-5.933232361E-19,-2.427716479E-19, 0001321P0003540 +1.271324071E-03,5.314968532E-04,-2.859903368E-19, 0001321P0003541 +1.377952756E-03; 0001321P0003542 +124,-1.224646E-16,2.719260372E-32,1.,2.875984252E-02,-1., 0001323P0003543 +2.220446049E-16,-1.224646E-16,3.827671846E-02,-2.220446049E-16, 0001323P0003544 +-1.,8.125204719E-49,6.496062992E-03; 0001323P0003545 +144,1327,1,0,1329; 0001325P0003546 +128,1,1,1,1,0,0,1,0,0,0.,0.,0.445,0.445,0.,0.,0.277771351, 0001327P0003547 +0.277771351,1.,1.,1.,1.,2.875984252E-02,3.827671846E-02, 0001327P0003548 +4.37095679E-18,4.627952756E-02,3.827671846E-02,8.63946928E-18, 0001327P0003549 +2.875984252E-02,4.921259843E-02,6.799209937E-18,4.627952756E-02, 0001327P0003550 +4.921259843E-02,1.106772243E-17,0.,0.445,0.,0.277771351; 0001327P0003551 +142,0,1327,1331,1341,3; 0001329P0003552 +102,4,1333,1335,1337,1339; 0001331P0003553 +110,0.445,0.277771351,0.,-1.599992361E-11,0.277771351,0.; 0001333P0003554 +110,0.,0.277771351,0.,0.,-2.380000086E-10,0.; 0001335P0003555 +110,0.,0.,0.,0.445,0.,0.; 0001337P0003556 +110,0.445,0.,0.,0.445,0.277771351,0.; 0001339P0003557 +102,4,1343,1345,1347,1349; 0001341P0003558 +110,4.627952756E-02,4.921259843E-02,1.082494767E-17, 0001343P0003559 +2.875984252E-02,4.921259843E-02,6.556435185E-18; 0001343P0003560 +110,2.875984252E-02,4.921259843E-02,6.799209937E-18, 0001345P0003561 +2.875984252E-02,3.827671846E-02,4.37095679E-18; 0001345P0003562 +110,2.875984252E-02,3.827671846E-02,4.37095679E-18, 0001347P0003563 +4.627952756E-02,3.827671846E-02,8.63946928E-18; 0001347P0003564 +110,4.627952756E-02,3.827671846E-02,6.556435185E-18, 0001349P0003565 +4.627952756E-02,4.921259843E-02,8.984688332E-18; 0001349P0003566 +144,1353,1,0,1355; 0001351P0003567 +128,1,1,1,1,0,0,1,0,0,-0.30542393,-0.30542393,0.130426136, 0001353P0003568 +0.130426136,-0.325635154,-0.325635154,0.277771351,0.277771351, 0001353P0003569 +1.,1.,1.,1.,2.875984252E-02,2.545643679E-02,1.714267442E-02, 0001353P0003570 +2.875984252E-02,2.545643679E-02,-1.677702753E-05, 0001353P0003571 +2.875984252E-02,4.921259843E-02,1.714267442E-02,2.875984252E-02, 0001353P0003572 +4.921259843E-02,-1.677702753E-05,-0.30542393,0.130423941, 0001353P0003573 +-0.325635154,0.277771351; 0001353P0003574 +142,0,1353,1357,1385,3; 0001355P0003575 +102,13,1359,1361,1363,1365,1367,1369,1371,1373,1375,1377,1379, 0001357P0003576 +1381,1383; 0001357P0003577 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600103E-03,5.917200207E-03, 0001359P0003578 +8.87580031E-03,1.183440041E-02,1.479300052E-02,1.775160062E-02, 0001359P0003579 +2.071020072E-02,2.366880083E-02,2.662740093E-02,2.958600103E-02, 0001359P0003580 +3.254460114E-02,3.550320124E-02,3.846180135E-02,4.142040145E-02, 0001359P0003581 +4.437900155E-02,4.733760166E-02,5.029620176E-02,5.325480186E-02, 0001359P0003582 +5.621340197E-02,5.917200207E-02,6.213060217E-02,6.508920228E-02, 0001359P0003583 +6.508920228E-02,6.508920228E-02,6.508920228E-02,1.,1.,1.,1.,1., 0001359P0003584 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001359P0003585 +-0.24,-0.322228648,0.,-0.239015151,-0.322280262,0.,-0.237045454, 0001359P0003586 +-0.32238349,0.,-0.234090909,-0.322538331,0.,-0.231136363, 0001359P0003587 +-0.322693172,0.,-0.228181818,-0.322848013,0.,-0.225227273, 0001359P0003588 +-0.323002854,0.,-0.222272727,-0.323157695,0.,-0.219318182, 0001359P0003589 +-0.323312537,0.,-0.216363636,-0.323467378,0.,-0.213409091, 0001359P0003590 +-0.323622219,0.,-0.210454545,-0.32377706,0.,-0.2075, 0001359P0003591 +-0.323931901,0.,-0.204545454,-0.324086742,0.,-0.201590909, 0001359P0003592 +-0.324241584,0.,-0.198636364,-0.324396425,0.,-0.195681818, 0001359P0003593 +-0.324551266,0.,-0.192727273,-0.324706107,0.,-0.189772727, 0001359P0003594 +-0.324860948,0.,-0.186818182,-0.325015789,0.,-0.183863636, 0001359P0003595 +-0.325170631,0.,-0.180909091,-0.325325472,0.,-0.177954546, 0001359P0003596 +-0.325480313,0.,-0.175984849,-0.32558354,0.,-0.175,-0.325635154, 0001359P0003597 +0.,0.,6.508920228E-02,0.,0.,1.; 0001359P0003598 +110,-0.175,-0.325635154,0.,-0.175,-0.260671317,0.; 0001361P0003599 +126,24,3,1,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0001363P0003600 +4.765789608,4.819190236,4.872590864,4.925991492,4.97939212, 0001363P0003601 +5.032792748,5.086193376,5.139594004,5.192994632,5.24639526, 0001363P0003602 +5.299795888,5.353196516,5.406597144,5.459997772,5.5133984, 0001363P0003603 +5.566799027,5.620199655,5.673600283,5.727000911,5.780401539, 0001363P0003604 +5.833802167,5.887202795,5.887202795,5.887202795,5.887202795,1., 0001363P0003605 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001363P0003606 +1.,1.,1.,-0.175,-0.260671318,0.,-0.175000024,-0.260048309,0., 0001363P0003607 +-0.174966712,-0.258802296,0.,-0.174817122,-0.256938602,0., 0001363P0003608 +-0.174568253,-0.255085551,0.,-0.174220836,-0.253248424,0., 0001363P0003609 +-0.173775856,-0.251432459,0.,-0.173234583,-0.249642834,0., 0001363P0003610 +-0.17259856,-0.247884651,0.,-0.1718696,-0.246162921,0., 0001363P0003611 +-0.171049781,-0.244482555,0.,-0.170141441,-0.242848342,0., 0001363P0003612 +-0.16914717,-0.241264941,0.,-0.168069801,-0.239736867,0., 0001363P0003613 +-0.166912407,-0.238268475,0.,-0.165678286,-0.236863954,0., 0001363P0003614 +-0.164370958,-0.235527305,0.,-0.16299415,-0.234262341,0., 0001363P0003615 +-0.161551787,-0.233072668,0.,-0.160047981,-0.231961677,0., 0001363P0003616 +-0.158487018,-0.230932537,0.,-0.156873352,-0.229988176,0., 0001363P0003617 +-0.155211573,-0.229131307,0.,-0.154074828,-0.228619968,0., 0001363P0003618 +-0.15350002,-0.228379686,0.,4.71238898,5.887202795,-0.,-0.,1.; 0001363P0003619 +126,24,3,0,0,1,0,-2.98940253E-11,-2.98940253E-11, 0001365P0003620 +-2.98940253E-11,-2.98940253E-11,8.973622461E-03,1.794724495E-02, 0001365P0003621 +2.692086744E-02,3.589448993E-02,4.486811243E-02,5.384173492E-02, 0001365P0003622 +6.281535741E-02,7.17889799E-02,8.076260239E-02,8.973622488E-02, 0001365P0003623 +9.870984737E-02,0.10768347,0.116657092,0.125630715,0.134604337, 0001365P0003624 +0.14357796,0.152551582,0.161525205,0.170498827,0.17947245, 0001365P0003625 +0.188446072,0.197419695,0.197419695,0.197419695,0.197419695,1., 0001365P0003626 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001365P0003627 +1.,1.,1.,-0.15350002,-0.228379686,0.,-0.150740278,-0.227225933, 0001365P0003628 +0.,-0.145220794,-0.224918427,0.,-0.136941568,-0.221457167,0., 0001365P0003629 +-0.128662342,-0.217995908,0.,-0.120383116,-0.214534648,0., 0001365P0003630 +-0.11210389,-0.211073389,0.,-0.103824664,-0.207612129,0., 0001365P0003631 +-9.554543818E-02,-0.204150869,0.,-8.72662122E-02,-0.20068961,0., 0001365P0003632 +-7.898698622E-02,-0.19722835,0.,-7.070776025E-02,-0.193767091, 0001365P0003633 +0.,-6.242853427E-02,-0.190305831,0.,-5.414930829E-02, 0001365P0003634 +-0.186844572,0.,-4.587008231E-02,-0.183383312,0., 0001365P0003635 +-3.759085634E-02,-0.179922053,0.,-2.931163036E-02,-0.176460793, 0001365P0003636 +0.,-2.103240438E-02,-0.172999534,0.,-1.27531784E-02, 0001365P0003637 +-0.169538274,0.,-4.473952427E-03,-0.166077015,0., 0001365P0003638 +3.805273551E-03,-0.162615755,-0.,1.208449953E-02,-0.159154496, 0001365P0003639 +-0.,2.036372551E-02,-0.155693236,-0.,2.588320949E-02, 0001365P0003640 +-0.15338573,-0.,2.864295148E-02,-0.152231976,-0., 0001365P0003641 +-2.98940253E-11,0.197419695,0.,0.,1.; 0001365P0003642 +126,24,3,1,0,1,0,0.395982513,0.395982513,0.395982513, 0001367P0003643 +0.395982513,0.449383141,0.502783769,0.556184397,0.609585025, 0001367P0003644 +0.662985653,0.71638628,0.769786908,0.823187536,0.876588164, 0001367P0003645 +0.929988792,0.98338942,1.036790048,1.090190676,1.143591304, 0001367P0003646 +1.196991932,1.250392559,1.303793187,1.357193815,1.410594443, 0001367P0003647 +1.463995071,1.517395699,1.570796327,1.570796327,1.570796327, 0001367P0003648 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001367P0003649 +1.,1.,1.,1.,1.,1.,1.,1.,2.864295144E-02,-0.152231976,-0., 0001367P0003650 +3.135276211E-02,-0.151099219,-0.,3.671170141E-02,-0.148688619, 0001367P0003651 +-0.,4.454580239E-02,-0.144649095,-0.,5.21530852E-02, 0001367P0003652 +-0.140197108,-0.,5.951190891E-02,-0.135345447,-0., 0001367P0003653 +6.660128128E-02,-0.130107918,-0.,7.340099424E-02,-0.124499458, 0001367P0003654 +-0.,7.989166125E-02,-0.118536057,-0.,8.605477799E-02, 0001367P0003655 +-0.112234716,-0.,9.187277367E-02,-0.105613399,-0., 0001367P0003656 +9.732906147E-02,-9.869098319E-02,-0.,0.102408086, 0001367P0003657 +-9.14872047E-02,-0.,0.107095367,-8.402260082E-02,-0., 0001367P0003658 +0.111377541,-7.631845274E-02,-0.,0.1152424,-6.839672461E-02,-0., 0001367P0003659 +0.118678926,-6.028000088E-02,-0.,0.12167732,-5.199142191E-02, 0001367P0003660 +-0.,0.124229036,-4.3554618E-02,-0.,0.126326799,-3.499364218E-02, 0001367P0003661 +-0.,0.127964621,-2.633290086E-02,-0.,0.129137862, 0001367P0003662 +-1.759708722E-02,-0.,0.129843071,-8.811099748E-03,-0., 0001367P0003663 +0.130000111,-2.937041625E-03,-0.,0.13,6.398208808E-11,0., 0001367P0003664 +0.395982513,1.570796327,0.,0.,1.; 0001367P0003665 +126,24,3,0,0,1,0,-3.508237008E-27,-3.508237008E-27, 0001369P0003666 +-3.508237008E-27,-3.508237008E-27,1.262597051E-02, 0001369P0003667 +2.525194102E-02,3.787791153E-02,5.050388204E-02,6.312985255E-02, 0001369P0003668 +7.575582306E-02,8.838179358E-02,0.101007764,0.113633735, 0001369P0003669 +0.126259705,0.138885676,0.151511646,0.164137617,0.176763587, 0001369P0003670 +0.189389558,0.202015528,0.214641499,0.227267469,0.23989344, 0001369P0003671 +0.25251941,0.265145381,0.277771351,0.277771351,0.277771351, 0001369P0003672 +0.277771351,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001369P0003673 +1.,1.,1.,1.,1.,1.,1.,1.,0.13,6.398208808E-11,0.,0.13, 0001369P0003674 +4.208656896E-03,0.,0.13,1.262597056E-02,0.,0.13,2.525194106E-02, 0001369P0003675 +0.,0.13,3.787791156E-02,0.,0.13,5.050388205E-02,0.,0.13, 0001369P0003676 +6.312985255E-02,0.,0.13,7.575582305E-02,0.,0.13,8.838179354E-02, 0001369P0003677 +0.,0.13,0.101007764,0.,0.13,0.113633735,0.,0.13,0.126259705,0., 0001369P0003678 +0.13,0.138885676,0.,0.13,0.151511646,0.,0.13,0.164137617,0., 0001369P0003679 +0.13,0.176763587,0.,0.13,0.189389558,0.,0.13,0.202015528,0., 0001369P0003680 +0.13,0.214641499,0.,0.13,0.227267469,0.,0.13,0.23989344,0.,0.13, 0001369P0003681 +0.25251941,0.,0.13,0.265145381,0.,0.13,0.273562694,0.,0.13, 0001369P0003682 +0.277771351,0.,-3.508237008E-27,0.277771351,0.,0.,1.; 0001369P0003683 +110,0.13,0.277771351,0.,-4.925118369E-10,0.277771351,0.; 0001371P0003684 +110,-2.636623515E-10,0.277771351,0.,-2.636623515E-10, 0001373P0003685 +-2.380000086E-10,0.; 0001373P0003686 +126,24,3,1,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0001375P0003687 +4.765789608,4.819190236,4.872590864,4.925991492,4.97939212, 0001375P0003688 +5.032792748,5.086193376,5.139594004,5.192994631,5.246395259, 0001375P0003689 +5.299795887,5.353196515,5.406597143,5.459997771,5.513398399, 0001375P0003690 +5.566799027,5.620199655,5.673600283,5.72700091,5.780401538, 0001375P0003691 +5.833802166,5.887202794,5.887202794,5.887202794,5.887202794,1., 0001375P0003692 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001375P0003693 +1.,1.,1.,-2.642623438E-10,6.39820974E-11,0.,2.339709308E-08, 0001375P0003694 +-6.230087792E-04,-0.,-3.328813449E-05,-1.869021108E-03,0., 0001375P0003695 +-1.82877905E-04,-3.732715421E-03,0.,-4.317471782E-04, 0001375P0003696 +-5.585766798E-03,0.,-7.791640661E-04,-7.422893744E-03,0., 0001375P0003697 +-1.224144096E-03,-9.238858313E-03,0.,-1.765417045E-03, 0001375P0003698 +-1.102848338E-02,0.,-2.401440203E-03,-1.27866668E-02,0., 0001375P0003699 +-3.130400184E-03,-1.450839608E-02,0.,-3.950218791E-03, 0001375P0003700 +-1.618876265E-02,0.,-4.858558754E-03,-1.782297588E-02,0., 0001375P0003701 +-5.852830445E-03,-1.94063767E-02,0.,-6.930199244E-03, 0001375P0003702 +-2.093445093E-02,0.,-8.087593627E-03,-2.240284209E-02,0., 0001375P0003703 +-9.321713921E-03,-2.380736388E-02,0.,-1.062904171E-02, 0001375P0003704 +-2.514401208E-02,0.,-1.200584987E-02,-2.640897599E-02,0., 0001375P0003705 +-1.344821322E-02,-2.759864916E-02,0.,-1.495201948E-02, 0001375P0003706 +-2.870964028E-02,0.,-1.651298209E-02,-2.973878053E-02,0., 0001375P0003707 +-1.812664814E-02,-3.068314126E-02,0.,-1.978842714E-02, 0001375P0003708 +-3.154001007E-02,0.,-2.092517184E-02,-3.205134936E-02,0., 0001375P0003709 +-2.149998016E-02,-3.22916313E-02,0.,4.71238898,5.887202794,-0., 0001375P0003710 +-0.,1.; 0001375P0003711 +126,24,3,0,0,1,0,4.242855239E-12,4.242855239E-12, 0001377P0003712 +4.242855239E-12,4.242855239E-12,8.973622497E-03,1.794724499E-02, 0001377P0003713 +2.692086748E-02,3.589448998E-02,4.486811247E-02,5.384173496E-02, 0001377P0003714 +6.281535745E-02,7.178897995E-02,8.076260244E-02,8.973622493E-02, 0001377P0003715 +9.870984742E-02,0.10768347,0.116657092,0.125630715,0.134604337, 0001377P0003716 +0.14357796,0.152551582,0.161525205,0.170498827,0.17947245, 0001377P0003717 +0.188446072,0.197419695,0.197419695,0.197419695,0.197419695,1., 0001377P0003718 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001377P0003719 +1.,1.,1.,-2.149998017E-02,-3.229163128E-02,0.,-2.425972216E-02, 0001377P0003720 +-3.344538446E-02,0.,-2.977920615E-02,-3.575289081E-02,0., 0001377P0003721 +-3.805843213E-02,-3.921415035E-02,0.,-4.63376581E-02, 0001377P0003722 +-4.267540988E-02,0.,-5.461688408E-02,-4.613666941E-02,0., 0001377P0003723 +-6.289611006E-02,-4.959792895E-02,0.,-7.117533604E-02, 0001377P0003724 +-5.305918848E-02,0.,-7.945456202E-02,-5.652044801E-02,0., 0001377P0003725 +-8.7733788E-02,-5.998170755E-02,0.,-9.601301398E-02, 0001377P0003726 +-6.344296708E-02,0.,-0.10429224,-6.690422661E-02,0., 0001377P0003727 +-0.112571466,-7.036548615E-02,0.,-0.120850692,-7.382674568E-02, 0001377P0003728 +0.,-0.129129918,-7.728800521E-02,0.,-0.137409144, 0001377P0003729 +-8.074926475E-02,0.,-0.14568837,-8.421052428E-02,0., 0001377P0003730 +-0.153967596,-8.767178381E-02,0.,-0.162246822,-9.113304335E-02, 0001377P0003731 +0.,-0.170526048,-9.459430288E-02,0.,-0.178805274, 0001377P0003732 +-9.805556241E-02,0.,-0.1870845,-0.101516822,0.,-0.195363726, 0001377P0003733 +-0.104978081,0.,-0.20088321,-0.107285588,0.,-0.203642952, 0001377P0003734 +-0.108439341,0.,4.242855239E-12,0.197419695,0.,0.,1.; 0001377P0003735 +126,24,3,1,0,1,0,0.395982513,0.395982513,0.395982513, 0001379P0003736 +0.395982513,0.449383141,0.502783769,0.556184397,0.609585025, 0001379P0003737 +0.662985653,0.71638628,0.769786908,0.823187536,0.876588164, 0001379P0003738 +0.929988792,0.98338942,1.036790048,1.090190676,1.143591304, 0001379P0003739 +1.196991932,1.250392559,1.303793187,1.357193815,1.410594443, 0001379P0003740 +1.463995071,1.517395699,1.570796327,1.570796327,1.570796327, 0001379P0003741 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001379P0003742 +1.,1.,1.,1.,1.,1.,1.,1.,-0.203642952,-0.108439341,0., 0001379P0003743 +-0.206352762,-0.109572099,0.,-0.211711702,-0.111982698,0., 0001379P0003744 +-0.219545803,-0.116022223,0.,-0.227153085,-0.120474209,0., 0001379P0003745 +-0.234511909,-0.12532587,0.,-0.241601282,-0.1305634,0., 0001379P0003746 +-0.248400994,-0.136171859,0.,-0.254891661,-0.14213526,0., 0001379P0003747 +-0.261054778,-0.148436602,0.,-0.266872774,-0.155057919,0., 0001379P0003748 +-0.272329062,-0.161980334,0.,-0.277408086,-0.169184113,0., 0001379P0003749 +-0.282095367,-0.176648717,0.,-0.286377541,-0.184352865,0., 0001379P0003750 +-0.2902424,-0.192274593,0.,-0.293678926,-0.200391317,0., 0001379P0003751 +-0.296677321,-0.208679896,0.,-0.299229036,-0.217116699,0., 0001379P0003752 +-0.301326799,-0.225677675,0.,-0.302964621,-0.234338417,0., 0001379P0003753 +-0.304137862,-0.24307423,0.,-0.304843071,-0.251860218,0., 0001379P0003754 +-0.305000111,-0.257734276,0.,-0.305,-0.260671318,0.,0.395982513, 0001379P0003755 +1.570796327,0.,0.,1.; 0001379P0003756 +110,-0.305,-0.260671318,0.,-0.305,-0.325635154,0.; 0001381P0003757 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600115E-03,5.91720023E-03, 0001383P0003758 +8.875800345E-03,1.183440046E-02,1.479300058E-02,1.775160069E-02, 0001383P0003759 +2.071020081E-02,2.366880092E-02,2.662740104E-02,2.958600115E-02, 0001383P0003760 +3.254460127E-02,3.550320138E-02,3.84618015E-02,4.142040161E-02, 0001383P0003761 +4.437900173E-02,4.733760184E-02,5.029620196E-02,5.325480207E-02, 0001383P0003762 +5.621340219E-02,5.91720023E-02,6.213060242E-02,6.508920253E-02, 0001383P0003763 +6.508920253E-02,6.508920253E-02,6.508920253E-02,1.,1.,1.,1.,1., 0001383P0003764 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001383P0003765 +-0.305,-0.325635154,0.,-0.304015151,-0.32558354,0.,-0.302045454, 0001383P0003766 +-0.325480313,0.,-0.299090909,-0.325325472,0.,-0.296136363, 0001383P0003767 +-0.325170631,0.,-0.293181818,-0.325015789,0.,-0.290227272, 0001383P0003768 +-0.324860948,0.,-0.287272727,-0.324706107,0.,-0.284318182, 0001383P0003769 +-0.324551266,0.,-0.281363636,-0.324396425,0.,-0.278409091, 0001383P0003770 +-0.324241584,0.,-0.275454545,-0.324086742,0.,-0.2725, 0001383P0003771 +-0.323931901,0.,-0.269545454,-0.32377706,0.,-0.266590909, 0001383P0003772 +-0.323622219,0.,-0.263636363,-0.323467378,0.,-0.260681818, 0001383P0003773 +-0.323312537,0.,-0.257727272,-0.323157695,0.,-0.254772727, 0001383P0003774 +-0.323002854,0.,-0.251818182,-0.322848013,0.,-0.248863636, 0001383P0003775 +-0.322693172,0.,-0.245909091,-0.322538331,0.,-0.242954545, 0001383P0003776 +-0.32238349,0.,-0.240984848,-0.322280262,0.,-0.24,-0.322228648, 0001383P0003777 +0.,0.,6.508920253E-02,0.,0.,1.; 0001383P0003778 +102,13,1387,1389,1391,1395,1397,1401,1403,1405,1407,1411,1413, 0001385P0003779 +1417,1419; 0001385P0003780 +110,2.875984252E-02,2.559055118E-02,1.456692913E-02, 0001387P0003781 +2.875984252E-02,2.545643679E-02,1.200787402E-02; 0001387P0003782 +110,2.875984252E-02,2.545643679E-02,1.200787402E-02, 0001389P0003783 +2.875984252E-02,2.801406815E-02,1.200787402E-02; 0001389P0003784 +100,-9.412070041E-19,1.511053421E-18,-3.361453586E-19, 0001391P0003785 +1.816252065E-18,-1.377952756E-03,1.271324071E-03, 0001391P0003786 +-5.314968518E-04; 0001391P0003787 +124,1.224646E-16,2.719260372E-32,-1.,2.875984252E-02,1., 0001393P0003788 +2.220446049E-16,1.224646E-16,2.801406815E-02,2.220446049E-16, 0001393P0003789 +-1.,-8.125204719E-49,1.062992126E-02; 0001393P0003790 +110,2.875984252E-02,2.928539222E-02,1.116141811E-02, 0001395P0003791 +2.875984252E-02,3.228333355E-02,3.990434968E-03; 0001395P0003792 +100,-3.158699243E-19,-5.933232361E-19,-2.427716479E-19, 0001397P0003793 +5.993384905E-03,2.505628022E-03,8.494339855E-19,6.496062993E-03; 0001397P0003794 +124,-1.224646E-16,2.719260372E-32,1.,2.875984252E-02,-1., 0001399P0003795 +2.220446049E-16,-1.224646E-16,3.827671846E-02,-2.220446049E-16, 0001399P0003796 +-1.,8.125204719E-49,6.496062992E-03; 0001399P0003797 +110,2.875984252E-02,3.827671846E-02,4.37095679E-18, 0001401P0003798 +2.875984252E-02,4.921259843E-02,6.799209937E-18; 0001401P0003799 +110,2.875984252E-02,4.921259843E-02,6.131452962E-18, 0001403P0003800 +2.875984252E-02,4.921259843E-02,5.118110236E-03; 0001403P0003801 +110,2.875984252E-02,4.921259843E-02,5.118110236E-03, 0001405P0003802 +2.875984252E-02,3.827671846E-02,5.118110236E-03; 0001405P0003803 +100,3.158699243E-19,-5.933232361E-19,2.427716479E-19, 0001407P0003804 +-2.859903368E-19,-1.377952756E-03,1.271324071E-03, 0001407P0003805 +-5.314968531E-04; 0001407P0003806 +124,-1.224646E-16,-2.719260372E-32,-1.,2.875984252E-02,-1., 0001409P0003807 +-2.220446049E-16,1.224646E-16,3.827671846E-02,-2.220446049E-16, 0001409P0003808 +1.,-8.125204719E-49,6.496062992E-03; 0001409P0003809 +110,2.875984252E-02,3.700539439E-02,5.964566139E-03, 0001411P0003810 +2.875984252E-02,3.400745306E-02,1.313554928E-02; 0001411P0003811 +100,9.412070041E-19,1.511053421E-18,3.361453586E-19, 0001413P0003812 +5.993384905E-03,2.505628022E-03,2.953810643E-18,6.496062993E-03; 0001413P0003813 +124,1.224646E-16,-2.719260372E-32,1.,2.875984252E-02,1., 0001415P0003814 +-2.220446049E-16,-1.224646E-16,2.801406815E-02,2.220446049E-16, 0001415P0003815 +1.,8.125204719E-49,1.062992126E-02; 0001415P0003816 +110,2.875984252E-02,2.801406815E-02,1.712598425E-02, 0001417P0003817 +2.875984252E-02,2.545643679E-02,1.712598425E-02; 0001417P0003818 +110,2.875984252E-02,2.545643679E-02,1.712598425E-02, 0001419P0003819 +2.875984252E-02,2.559055118E-02,1.456692913E-02; 0001419P0003820 +144,1423,1,0,1425; 0001421P0003821 +128,1,1,1,1,0,0,1,0,0,-5.457623239E-31,-5.457623239E-31, 0001423P0003822 +0.197419695,0.197419695,0.,0.,0.445,0.445,1.,1.,1.,1., 0001423P0003823 +-2.875984252E-02,3.700539439E-02,5.964566139E-03, 0001423P0003824 +-2.875984252E-02,3.400745306E-02,1.313554928E-02, 0001423P0003825 +-4.627952756E-02,3.700539439E-02,5.964566139E-03, 0001423P0003826 +-4.627952756E-02,3.400745306E-02,1.313554928E-02, 0001423P0003827 +-5.457623239E-31,0.197419695,0.,0.445; 0001423P0003828 +142,0,1423,1427,1437,3; 0001425P0003829 +102,4,1429,1431,1433,1435; 0001427P0003830 +110,-5.457623239E-31,0.445,0.,-5.457623239E-31,-1.599992361E-11, 0001429P0003831 +0.; 0001429P0003832 +110,-5.457623239E-31,0.,0.,0.197419695,0.,0.; 0001431P0003833 +110,0.197419695,0.,0.,0.197419695,0.445,0.; 0001433P0003834 +110,0.197419695,0.445,0.,2.52343535E-10,0.445,0.; 0001435P0003835 +102,4,1439,1441,1443,1445; 0001437P0003836 +110,-4.627952756E-02,3.700539439E-02,5.964566139E-03, 0001439P0003837 +-2.875984252E-02,3.700539439E-02,5.964566139E-03; 0001439P0003838 +110,-2.875984252E-02,3.700539439E-02,5.964566139E-03, 0001441P0003839 +-2.875984252E-02,3.400745306E-02,1.313554928E-02; 0001441P0003840 +110,-2.875984252E-02,3.400745306E-02,1.313554928E-02, 0001443P0003841 +-4.627952756E-02,3.400745306E-02,1.313554928E-02; 0001443P0003842 +110,-4.627952756E-02,3.400745306E-02,1.313554928E-02, 0001445P0003843 +-4.627952756E-02,3.700539439E-02,5.964566139E-03; 0001445P0003844 +144,1449,1,0,1455; 0001447P0003845 +120,1451,1453,5.108371493,6.283185309; 0001449P0003846 +110,1.8503937E-03,2.801406815E-02,1.062992126E-02, 0001451P0003847 +-3.751968504E-02,2.801406815E-02,1.062992126E-02; 0001451P0003848 +110,-4.627952756E-02,3.400745305E-02,1.313554928E-02, 0001453P0003849 +-2.875984252E-02,3.400745305E-02,1.313554928E-02; 0001453P0003850 +142,0,1449,1457,1467,3; 0001455P0003851 +102,4,1459,1461,1463,1465; 0001457P0003852 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.022727273E-02,4.045454546E-02, 0001459P0003853 +6.068181818E-02,8.090909091E-02,0.101136364,0.121363636, 0001459P0003854 +0.141590909,0.161818182,0.182045455,0.202272727,0.2225, 0001459P0003855 +0.242727273,0.262954545,0.283181818,0.303409091,0.323636364, 0001459P0003856 +0.343863636,0.364090909,0.384318182,0.404545455,0.424772727, 0001459P0003857 +0.445,0.445,0.445,0.445,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001459P0003858 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.283185307,0., 0001459P0003859 +0.984848485,6.283185308,0.,0.954545455,6.283185308,0., 0001459P0003860 +0.909090909,6.283185308,0.,0.863636364,6.283185308,0., 0001459P0003861 +0.818181818,6.283185308,0.,0.772727273,6.283185308,0., 0001459P0003862 +0.727272727,6.283185308,0.,0.681818182,6.283185308,0., 0001459P0003863 +0.636363636,6.283185308,0.,0.590909091,6.283185308,0., 0001459P0003864 +0.545454545,6.283185308,0.,0.5,6.283185308,0.,0.454545455, 0001459P0003865 +6.283185308,0.,0.409090909,6.283185308,0.,0.363636364, 0001459P0003866 +6.283185308,0.,0.318181818,6.283185308,0.,0.272727273, 0001459P0003867 +6.283185308,0.,0.227272727,6.283185308,0.,0.181818182, 0001459P0003868 +6.283185308,0.,0.136363636,6.283185308,0.,9.090909091E-02, 0001459P0003869 +6.283185308,0.,4.545454545E-02,6.283185308,0.,1.515151515E-02, 0001459P0003870 +6.283185308,0.,9.355812005E-16,6.283185307,0.,0.,0.445,0.,0.,1.; 0001459P0003871 +110,9.355812005E-16,6.283185307,0.,4.674475556E-16,5.108371493, 0001461P0003872 +0.; 0001461P0003873 +110,4.674475557E-16,5.108371494,0.,1.,5.108371494,0.; 0001463P0003874 +110,1.,5.108371494,0.,1.,6.283185308,0.; 0001465P0003875 +102,4,1469,1471,1475,1477; 0001467P0003876 +110,-2.875984252E-02,3.400745306E-02,1.313554928E-02, 0001469P0003877 +-4.627952756E-02,3.400745306E-02,1.313554928E-02; 0001469P0003878 +100,-3.431884042E-18,1.06285961E-18,3.361453586E-19, 0001471P0003879 +5.993384906E-03,2.50562802E-03,2.505616832E-18,6.496062993E-03; 0001471P0003880 +124,1.224646E-16,-2.719260372E-32,1.,-4.627952756E-02,1., 0001473P0003881 +-2.220446049E-16,-1.224646E-16,2.801406815E-02,2.220446049E-16, 0001473P0003882 +1.,8.125204719E-49,1.062992126E-02; 0001473P0003883 +110,-4.627952756E-02,2.801406815E-02,1.712598425E-02, 0001475P0003884 +-2.875984252E-02,2.801406815E-02,1.712598425E-02; 0001475P0003885 +100,-9.412070041E-19,-1.161035397E-18,-3.361453586E-19, 0001477P0003886 +-4.089234966E-18,-6.496062992E-03,5.993384905E-03, 0001477P0003887 +-2.50562802E-03; 0001477P0003888 +124,1.224646E-16,2.719260372E-32,-1.,-2.875984252E-02,1., 0001479P0003889 +2.220446049E-16,1.224646E-16,2.801406815E-02,2.220446049E-16, 0001479P0003890 +-1.,-8.125204719E-49,1.062992126E-02; 0001479P0003891 +144,1483,1,0,1489; 0001481P0003892 +120,1485,1487,5.108371492,6.283185308; 0001483P0003893 +110,1.8503937E-03,2.801406815E-02,1.062992126E-02, 0001485P0003894 +-3.751968504E-02,2.801406815E-02,1.062992126E-02; 0001485P0003895 +110,-4.627952756E-02,2.928539222E-02,1.116141811E-02, 0001487P0003896 +-2.875984252E-02,2.928539222E-02,1.116141811E-02; 0001487P0003897 +142,0,1483,1491,1501,3; 0001489P0003898 +102,4,1493,1495,1497,1499; 0001491P0003899 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.022727273E-02,4.045454546E-02, 0001493P0003900 +6.068181818E-02,8.090909091E-02,0.101136364,0.121363636, 0001493P0003901 +0.141590909,0.161818182,0.182045455,0.202272727,0.2225, 0001493P0003902 +0.242727273,0.262954545,0.283181818,0.303409091,0.323636364, 0001493P0003903 +0.343863636,0.364090909,0.384318182,0.404545455,0.424772727, 0001493P0003904 +0.445,0.445,0.445,0.445,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001493P0003905 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.283185307,0., 0001493P0003906 +0.984848485,6.283185307,0.,0.954545455,6.283185307,0., 0001493P0003907 +0.909090909,6.283185307,0.,0.863636364,6.283185307,0., 0001493P0003908 +0.818181818,6.283185307,0.,0.772727273,6.283185307,0., 0001493P0003909 +0.727272727,6.283185307,0.,0.681818182,6.283185307,0., 0001493P0003910 +0.636363636,6.283185307,0.,0.590909091,6.283185307,0., 0001493P0003911 +0.545454545,6.283185307,0.,0.5,6.283185307,0.,0.454545455, 0001493P0003912 +6.283185307,0.,0.409090909,6.283185307,0.,0.363636364, 0001493P0003913 +6.283185307,0.,0.318181818,6.283185307,0.,0.272727273, 0001493P0003914 +6.283185307,0.,0.227272727,6.283185307,0.,0.181818182, 0001493P0003915 +6.283185307,0.,0.136363636,6.283185307,0.,9.090909091E-02, 0001493P0003916 +6.283185307,0.,4.545454545E-02,6.283185307,0.,1.515151515E-02, 0001493P0003917 +6.283185307,0.,9.355812005E-16,6.283185307,0.,0.,0.445,0.,0.,1.; 0001493P0003918 +110,9.355812005E-16,6.283185307,0.,4.674475553E-16,5.108371492, 0001495P0003919 +0.; 0001495P0003920 +110,4.67447555E-16,5.108371492,0.,1.,5.108371492,0.; 0001497P0003921 +126,24,3,0,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0001499P0003922 +4.765789608,4.819190236,4.872590864,4.925991492,4.97939212, 0001499P0003923 +5.032792748,5.086193376,5.139594004,5.192994632,5.24639526, 0001499P0003924 +5.299795888,5.353196516,5.406597144,5.459997772,5.5133984, 0001499P0003925 +5.566799027,5.620199655,5.673600283,5.727000911,5.780401539, 0001499P0003926 +5.833802167,5.887202795,5.887202795,5.887202795,5.887202795,1., 0001499P0003927 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001499P0003928 +1.,1.,1.,1.,5.108371492,0.,1.,5.126171701,0.,1.,5.16177212,0., 0001499P0003929 +1.,5.215172748,0.,1.,5.268573376,0.,1.,5.321974004,0.,1., 0001499P0003930 +5.375374631,0.,1.,5.428775259,0.,1.,5.482175887,0.,1., 0001499P0003931 +5.535576515,0.,1.,5.588977143,0.,1.,5.642377771,0.,1., 0001499P0003932 +5.695778399,0.,1.,5.749179027,0.,1.,5.802579655,0.,1., 0001499P0003933 +5.855980283,0.,1.,5.909380911,0.,1.,5.962781539,0.,1., 0001499P0003934 +6.016182167,0.,1.,6.069582795,0.,1.,6.122983423,0.,1., 0001499P0003935 +6.176384051,0.,1.,6.229784678,0.,1.,6.265385097,0.,1., 0001499P0003936 +6.283185307,0.,4.71238898,5.887202795,0.,0.,1.; 0001499P0003937 +102,4,1503,1505,1509,1511; 0001501P0003938 +110,-2.875984252E-02,2.928539222E-02,1.116141811E-02, 0001503P0003939 +-4.627952756E-02,2.928539222E-02,1.116141811E-02; 0001503P0003940 +100,-3.431884042E-18,1.06285961E-18,3.361453586E-19, 0001505P0003941 +1.271324071E-03,5.314968519E-04,1.368058253E-18,1.377952756E-03; 0001505P0003942 +124,1.224646E-16,-2.719260372E-32,1.,-4.627952756E-02,1., 0001507P0003943 +-2.220446049E-16,-1.224646E-16,2.801406815E-02,2.220446049E-16, 0001507P0003944 +1.,8.125204719E-49,1.062992126E-02; 0001507P0003945 +110,-4.627952756E-02,2.801406815E-02,1.200787402E-02, 0001509P0003946 +-2.875984252E-02,2.801406815E-02,1.200787402E-02; 0001509P0003947 +100,-9.412070041E-19,-1.161035397E-18,-3.361453586E-19, 0001511P0003948 +-8.558367543E-19,-1.377952756E-03,1.271324071E-03, 0001511P0003949 +-5.314968518E-04; 0001511P0003950 +124,1.224646E-16,2.719260372E-32,-1.,-2.875984252E-02,1., 0001513P0003951 +2.220446049E-16,1.224646E-16,2.801406815E-02,2.220446049E-16, 0001513P0003952 +-1.,-8.125204719E-49,1.062992126E-02; 0001513P0003953 +144,1517,1,0,1523; 0001515P0003954 +120,1519,1521,5.108371493,6.283185307; 0001517P0003955 +110,-7.688976378E-02,3.827671846E-02,6.496062992E-03, 0001519P0003956 +-3.751968504E-02,3.827671846E-02,6.496062992E-03; 0001519P0003957 +110,-2.875984252E-02,3.827671846E-02,5.118110236E-03, 0001521P0003958 +-4.627952756E-02,3.827671846E-02,5.118110236E-03; 0001521P0003959 +142,0,1517,1525,1535,3; 0001523P0003960 +102,4,1527,1529,1531,1533; 0001525P0003961 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.022727273E-02,4.045454546E-02, 0001527P0003962 +6.068181818E-02,8.090909091E-02,0.101136364,0.121363636, 0001527P0003963 +0.141590909,0.161818182,0.182045455,0.202272727,0.2225, 0001527P0003964 +0.242727273,0.262954545,0.283181818,0.303409091,0.323636364, 0001527P0003965 +0.343863636,0.364090909,0.384318182,0.404545455,0.424772727, 0001527P0003966 +0.445,0.445,0.445,0.445,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001527P0003967 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.283185307,0., 0001527P0003968 +0.984848485,6.283185307,0.,0.954545455,6.283185307,0., 0001527P0003969 +0.909090909,6.283185307,0.,0.863636364,6.283185307,0., 0001527P0003970 +0.818181818,6.283185307,0.,0.772727273,6.283185307,0., 0001527P0003971 +0.727272727,6.283185307,0.,0.681818182,6.283185307,0., 0001527P0003972 +0.636363636,6.283185307,0.,0.590909091,6.283185307,0., 0001527P0003973 +0.545454545,6.283185307,0.,0.5,6.283185307,0.,0.454545455, 0001527P0003974 +6.283185307,0.,0.409090909,6.283185307,0.,0.363636364, 0001527P0003975 +6.283185307,0.,0.318181818,6.283185307,0.,0.272727273, 0001527P0003976 +6.283185307,0.,0.227272727,6.283185307,0.,0.181818182, 0001527P0003977 +6.283185307,0.,0.136363636,6.283185307,0.,9.090909091E-02, 0001527P0003978 +6.283185307,0.,4.545454545E-02,6.283185307,0.,1.515151515E-02, 0001527P0003979 +6.283185307,0.,8.557967276E-16,6.283185307,0.,0.,0.445,0.,0.,1.; 0001527P0003980 +126,24,3,0,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0001529P0003981 +4.765789608,4.819190236,4.872590864,4.925991492,4.97939212, 0001529P0003982 +5.032792748,5.086193376,5.139594004,5.192994631,5.246395259, 0001529P0003983 +5.299795887,5.353196515,5.406597143,5.459997771,5.513398399, 0001529P0003984 +5.566799027,5.620199655,5.673600283,5.72700091,5.780401538, 0001529P0003985 +5.833802166,5.887202794,5.887202794,5.887202794,5.887202794,1., 0001529P0003986 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001529P0003987 +1.,1.,1.,8.557967276E-16,6.283185307,0.,1.070471189E-15, 0001529P0003988 +6.265385098,0.,1.159337337E-15,6.229784679,0.,8.4065001E-16, 0001529P0003989 +6.176384052,0.,3.574973644E-16,6.122983424,0.,9.841925414E-16, 0001529P0003990 +6.069582796,0.,3.298215875E-16,6.016182168,0.,6.960074929E-16, 0001529P0003991 +5.96278154,0.,1.254891934E-15,5.909380912,0.,2.242537364E-17, 0001529P0003992 +5.855980284,0.,1.271874519E-15,5.802579656,0.,3.727315259E-16, 0001529P0003993 +5.749179028,0.,1.095251621E-15,5.6957784,0.,4.735713419E-16, 0001529P0003994 +5.642377773,0.,6.131696308E-16,5.588977145,0.,5.487839422E-16, 0001529P0003995 +5.535576517,0.,5.390555956E-16,5.482175889,0.,5.146818583E-16, 0001529P0003996 +5.428775261,0.,4.94232342E-16,5.375374633,0.,4.727313321E-16, 0001529P0003997 +5.321974005,0.,4.515120759E-16,5.268573377,0.,4.302172982E-16, 0001529P0003998 +5.215172749,0.,4.089428531E-16,5.161772122,0.,3.947560169E-16, 0001529P0003999 +5.126171703,0.,3.876630829E-16,5.108371494,0.,4.71238898, 0001529P0004000 +5.887202794,0.,0.,1.; 0001529P0004001 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.022727273E-02,4.045454546E-02, 0001531P0004002 +6.068181818E-02,8.090909091E-02,0.101136364,0.121363636, 0001531P0004003 +0.141590909,0.161818182,0.182045455,0.202272727,0.2225, 0001531P0004004 +0.242727273,0.262954545,0.283181818,0.303409091,0.323636364, 0001531P0004005 +0.343863636,0.364090909,0.384318182,0.404545455,0.424772727, 0001531P0004006 +0.445,0.445,0.445,0.445,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001531P0004007 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,3.876630829E-16,5.108371494, 0001531P0004008 +0.,1.515151515E-02,5.108371494,0.,4.545454545E-02,5.108371494, 0001531P0004009 +0.,9.090909091E-02,5.108371494,0.,0.136363636,5.108371494,0., 0001531P0004010 +0.181818182,5.108371494,0.,0.227272727,5.108371494,0., 0001531P0004011 +0.272727273,5.108371494,0.,0.318181818,5.108371494,0., 0001531P0004012 +0.363636364,5.108371494,0.,0.409090909,5.108371494,0., 0001531P0004013 +0.454545455,5.108371494,0.,0.5,5.108371494,0.,0.545454545, 0001531P0004014 +5.108371494,0.,0.590909091,5.108371494,0.,0.636363636, 0001531P0004015 +5.108371494,0.,0.681818182,5.108371494,0.,0.727272727, 0001531P0004016 +5.108371494,0.,0.772727273,5.108371494,0.,0.818181818, 0001531P0004017 +5.108371494,0.,0.863636364,5.108371494,0.,0.909090909, 0001531P0004018 +5.108371494,0.,0.954545455,5.108371494,0.,0.984848485, 0001531P0004019 +5.108371494,0.,1.,5.108371494,0.,0.,0.445,0.,0.,1.; 0001531P0004020 +126,24,3,0,0,1,0,0.395982513,0.395982513,0.395982513, 0001533P0004021 +0.395982513,0.449383141,0.502783769,0.556184397,0.609585025, 0001533P0004022 +0.662985653,0.71638628,0.769786908,0.823187536,0.876588164, 0001533P0004023 +0.929988792,0.98338942,1.036790048,1.090190676,1.143591304, 0001533P0004024 +1.196991932,1.250392559,1.303793187,1.357193815,1.410594443, 0001533P0004025 +1.463995071,1.517395699,1.570796327,1.570796327,1.570796327, 0001533P0004026 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001533P0004027 +1.,1.,1.,1.,1.,1.,1.,1.,1.,5.108371494,0.,1.,5.126171703,0.,1., 0001533P0004028 +5.161772122,0.,1.,5.215172749,0.,1.,5.268573377,0.,1., 0001533P0004029 +5.321974005,0.,1.,5.375374633,0.,1.,5.428775261,0.,1., 0001533P0004030 +5.482175889,0.,1.,5.535576517,0.,1.,5.588977145,0.,1., 0001533P0004031 +5.642377773,0.,1.,5.6957784,0.,1.,5.749179028,0.,1.,5.802579656, 0001533P0004032 +0.,1.,5.855980284,0.,1.,5.909380912,0.,1.,5.96278154,0.,1., 0001533P0004033 +6.016182168,0.,1.,6.069582796,0.,1.,6.122983424,0.,1., 0001533P0004034 +6.176384052,0.,1.,6.229784679,0.,1.,6.265385098,0.,1., 0001533P0004035 +6.283185307,0.,0.395982513,1.570796327,0.,0.,1.; 0001533P0004036 +102,4,1537,1539,1543,1545; 0001535P0004037 +110,-4.627952756E-02,3.827671846E-02,5.118110236E-03, 0001537P0004038 +-2.875984252E-02,3.827671846E-02,5.118110236E-03; 0001537P0004039 +100,3.158699243E-19,2.078765583E-18,2.427716479E-19, 0001539P0004040 +2.386098482E-18,-1.377952756E-03,1.271324071E-03, 0001539P0004041 +-5.314968531E-04; 0001539P0004042 +124,-1.224646E-16,-2.719260372E-32,-1.,-2.875984252E-02,-1., 0001541P0004043 +-2.220446049E-16,1.224646E-16,3.827671846E-02,-2.220446049E-16, 0001541P0004044 +1.,-8.125204719E-49,6.496062992E-03; 0001541P0004045 +110,-2.875984252E-02,3.700539439E-02,5.964566139E-03, 0001543P0004046 +-4.627952756E-02,3.700539439E-02,5.964566139E-03; 0001543P0004047 +100,4.055086866E-18,-1.451294247E-19,-2.427716479E-19, 0001545P0004048 +1.271324071E-03,5.314968532E-04,1.622034746E-19,1.377952756E-03; 0001545P0004049 +124,-1.224646E-16,2.719260372E-32,1.,-4.627952756E-02,-1., 0001547P0004050 +2.220446049E-16,-1.224646E-16,3.827671846E-02,-2.220446049E-16, 0001547P0004051 +-1.,8.125204719E-49,6.496062992E-03; 0001547P0004052 +144,1551,1,0,1553; 0001549P0004053 +128,1,1,1,1,0,0,1,0,0,-0.197419695,-0.197419695,4.411259595E-18, 0001551P0004054 +4.411259595E-18,-1.848892747E-32,-1.848892747E-32,0.445,0.445, 0001551P0004055 +1.,1.,1.,1.,-2.875984252E-02,2.928539222E-02,1.116141811E-02, 0001551P0004056 +-2.875984252E-02,3.228333355E-02,3.990434971E-03, 0001551P0004057 +-4.627952756E-02,2.928539222E-02,1.116141811E-02, 0001551P0004058 +-4.627952756E-02,3.228333355E-02,3.990434971E-03,-0.197419695, 0001551P0004059 +4.411259595E-18,-1.848892747E-32,0.445; 0001551P0004060 +142,0,1551,1555,1565,3; 0001553P0004061 +102,4,1557,1559,1561,1563; 0001555P0004062 +110,4.411259595E-18,-1.848892747E-32,0.,4.411259595E-18,0.445, 0001557P0004063 +0.; 0001557P0004064 +110,4.411259595E-18,0.445,0.,-0.197419695,0.445,0.; 0001559P0004065 +110,-0.197419695,0.445,0.,-0.197419695,-1.599992361E-11,0.; 0001561P0004066 +110,-0.197419695,-1.848892747E-32,0.,-2.984744396E-10, 0001563P0004067 +-1.848892747E-32,0.; 0001563P0004068 +102,4,1567,1569,1571,1573; 0001565P0004069 +110,-2.875984252E-02,3.228333355E-02,3.990434971E-03, 0001567P0004070 +-4.627952756E-02,3.228333355E-02,3.990434971E-03; 0001567P0004071 +110,-4.627952756E-02,3.228333355E-02,3.990434971E-03, 0001569P0004072 +-4.627952756E-02,2.928539222E-02,1.116141811E-02; 0001569P0004073 +110,-4.627952756E-02,2.928539222E-02,1.116141811E-02, 0001571P0004074 +-2.875984252E-02,2.928539222E-02,1.116141811E-02; 0001571P0004075 +110,-2.875984252E-02,2.928539222E-02,1.116141811E-02, 0001573P0004076 +-2.875984252E-02,3.228333355E-02,3.990434971E-03; 0001573P0004077 +144,1577,1,0,1579; 0001575P0004078 +128,1,1,1,1,0,0,1,0,0,0.,0.,0.445,0.445,-6.496383672E-02, 0001577P0004079 +-6.496383672E-02,1.097009696E-32,1.097009696E-32,1.,1.,1.,1., 0001577P0004080 +-2.875984252E-02,2.545643679E-02,1.712598425E-02, 0001577P0004081 +-4.627952756E-02,2.545643679E-02,1.712598425E-02, 0001577P0004082 +-2.875984252E-02,2.801406815E-02,1.712598425E-02, 0001577P0004083 +-4.627952756E-02,2.801406815E-02,1.712598425E-02,0.,0.445, 0001577P0004084 +-6.496383672E-02,1.097009696E-32; 0001577P0004085 +142,0,1577,1581,1591,3; 0001579P0004086 +102,4,1583,1585,1587,1589; 0001581P0004087 +110,0.445,-6.496383672E-02,0.,0.445,-1.760000479E-10,0.; 0001583P0004088 +110,0.445,1.097009696E-32,0.,-1.599992361E-11,1.097009696E-32, 0001585P0004089 +0.; 0001585P0004090 +110,0.,1.097009696E-32,0.,0.,-6.496383654E-02,0.; 0001587P0004091 +110,0.,-6.496383672E-02,0.,0.445,-6.496383672E-02,0.; 0001589P0004092 +102,4,1593,1595,1597,1599; 0001591P0004093 +110,-4.627952756E-02,2.545643679E-02,1.712598425E-02, 0001593P0004094 +-4.627952756E-02,2.801406815E-02,1.712598425E-02; 0001593P0004095 +110,-4.627952756E-02,2.801406815E-02,1.712598425E-02, 0001595P0004096 +-2.875984252E-02,2.801406815E-02,1.712598425E-02; 0001595P0004097 +110,-2.875984252E-02,2.801406815E-02,1.712598425E-02, 0001597P0004098 +-2.875984252E-02,2.545643679E-02,1.712598425E-02; 0001597P0004099 +110,-2.875984252E-02,2.545643679E-02,1.712598425E-02, 0001599P0004100 +-4.627952756E-02,2.545643679E-02,1.712598425E-02; 0001599P0004101 +144,1603,1,0,1611; 0001601P0004102 +120,1605,1607,4.712339182,6.283185308; 0001603P0004103 +110,5.643558129E-02,2.454581751E-02,4.340551181E-02, 0001605P0004104 +5.643558129E-02,2.454581751E-02,4.03543307E-03; 0001605P0004105 +100,5.5704088E-19,-1.30723195E-20,2.539764932E-18, 0001607P0004106 +4.921259843E-04,2.539764932E-18,2.558804393E-05,4.914603101E-04; 0001607P0004107 +124,5.52873982E-21,1.,-2.489923061E-05,5.643558129E-02, 0001609P0004108 +2.220446047E-16,-2.489923061E-05,-1.,2.454581751E-02,-1., 0001609P0004109 +-3.430974136E-37,-2.220446048E-16,4.035433071E-03; 0001609P0004110 +142,0,1603,1613,1621,3; 0001611P0004111 +102,3,1615,1617,1619; 0001613P0004112 +126,24,3,1,0,1,0,1.573535383,1.573535383,1.573535383, 0001615P0004113 +1.573535383,1.644810713,1.716086044,1.787361374,1.858636705, 0001615P0004114 +1.929912035,2.001187366,2.072462696,2.143738027,2.215013357, 0001615P0004115 +2.286288688,2.357564018,2.428839349,2.500114679,2.57139001, 0001615P0004116 +2.64266534,2.713940671,2.785216001,2.856491332,2.927766662, 0001615P0004117 +2.999041993,3.070317323,3.141592654,3.141592654,3.141592654, 0001615P0004118 +3.141592654,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001615P0004119 +1.,1.,1.,1.,1.,1.,1.,1.,1.518436449,4.712364081,0.,1.517194608, 0001615P0004120 +4.736122567,0.,1.514799883,4.783648993,0.,1.51149144, 0001615P0004121 +4.854966107,0.,1.508484,4.926310028,0.,1.505792861,4.997679332, 0001615P0004122 +0.,1.503431868,5.069072133,0.,1.501413146,5.140486051,0., 0001615P0004123 +1.499747085,5.211918275,0.,1.498442265,5.283365616,0., 0001615P0004124 +1.497505412,5.354824577,0.,1.49694136,5.42629142,0.,1.496753018, 0001615P0004125 +5.497762245,0.,1.49694136,5.56923307,0.,1.497505412,5.640699912, 0001615P0004126 +0.,1.498442265,5.712158873,0.,1.499747085,5.783606215,0., 0001615P0004127 +1.501413146,5.855038438,0.,1.503431868,5.926452356,0., 0001615P0004128 +1.505792861,5.997845157,0.,1.508484,6.069214461,0.,1.51149144, 0001615P0004129 +6.140558382,0.,1.514799883,6.211875496,0.,1.517194608, 0001615P0004130 +6.259401922,0.,1.518436449,6.283160408,0.,1.573535383, 0001615P0004131 +3.141592654,-0.,-0.,1.; 0001615P0004132 +126,24,3,0,0,1,0,3.193952531,3.193952531,3.193952531, 0001617P0004133 +3.193952531,3.26297237,3.331992208,3.401012047,3.470031885, 0001617P0004134 +3.539051724,3.608071563,3.677091401,3.74611124,3.815131079, 0001617P0004135 +3.884150917,3.953170756,4.022190594,4.091210433,4.160230272, 0001617P0004136 +4.22925011,4.298269949,4.367289787,4.436309626,4.505329465, 0001617P0004137 +4.574349303,4.643369142,4.71238898,4.71238898,4.71238898, 0001617P0004138 +4.71238898,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001617P0004139 +1.,1.,1.,1.,1.,1.,1.,1.,1.518436449,6.283160408,0.,1.495429836, 0001617P0004140 +6.283160408,0.,1.449416611,6.283160408,0.,1.380396772, 0001617P0004141 +6.283160408,0.,1.311376934,6.283160408,0.,1.242357095, 0001617P0004142 +6.283160408,0.,1.173337256,6.283160408,0.,1.104317418, 0001617P0004143 +6.283160408,0.,1.035297579,6.283160408,0.,0.96627774, 0001617P0004144 +6.283160408,0.,0.897257902,6.283160408,0.,0.828238063, 0001617P0004145 +6.283160408,0.,0.759218225,6.283160408,0.,0.690198386, 0001617P0004146 +6.283160408,0.,0.621178547,6.283160408,0.,0.552158709, 0001617P0004147 +6.283160408,0.,0.48313887,6.283160408,0.,0.414119032, 0001617P0004148 +6.283160408,0.,0.345099193,6.283160408,0.,0.276079354, 0001617P0004149 +6.283160408,0.,0.207059516,6.283160408,0.,0.138039677, 0001617P0004150 +6.283160408,0.,6.901983861E-02,6.283160408,0.,2.300661287E-02, 0001617P0004151 +6.283160408,0.,-4.415163077E-21,6.283160408,0.,3.193952531, 0001617P0004152 +4.71238898,0.,0.,1.; 0001617P0004153 +126,24,3,1,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0001619P0004154 +4.781408819,4.850428658,4.919448496,4.988468335,5.057488173, 0001619P0004155 +5.126508012,5.195527851,5.264547689,5.333567528,5.402587366, 0001619P0004156 +5.471607205,5.540627044,5.609646882,5.678666721,5.747686559, 0001619P0004157 +5.816706398,5.885726237,5.954746075,6.023765914,6.092785752, 0001619P0004158 +6.161805591,6.23082543,6.23082543,6.23082543,6.23082543,1.,1., 0001619P0004159 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001619P0004160 +1.,1.,-2.785355922E-16,4.71238898,0.,2.300661287E-02, 0001619P0004161 +4.712386214,0.,6.901983859E-02,4.712387647,0.,0.138039677, 0001619P0004162 +4.712397797,0.,0.207059516,4.712355047,0.,0.276079354, 0001619P0004163 +4.712366502,0.,0.345099193,4.712363433,0.,0.414119032, 0001619P0004164 +4.712364255,0.,0.48313887,4.712364035,0.,0.552158709, 0001619P0004165 +4.712364094,0.,0.621178547,4.712364078,0.,0.690198386, 0001619P0004166 +4.712364082,0.,0.759218225,4.712364081,0.,0.828238063, 0001619P0004167 +4.712364081,0.,0.897257902,4.712364081,0.,0.96627774, 0001619P0004168 +4.712364081,0.,1.035297579,4.712364081,0.,1.104317418, 0001619P0004169 +4.712364081,0.,1.173337256,4.712364081,0.,1.242357095, 0001619P0004170 +4.712364081,0.,1.311376934,4.712364081,0.,1.380396772, 0001619P0004171 +4.712364081,0.,1.449416611,4.712364081,0.,1.495429836, 0001619P0004172 +4.712364081,0.,1.518436449,4.712364081,0.,4.71238898,6.23082543, 0001619P0004173 +0.,0.,1.; 0001619P0004174 +102,3,1623,1627,1631; 0001621P0004175 +100,2.913259774E-19,2.894051468E-18,-1.666854127E-18, 0001623P0004176 +-1.347958815E-06,4.921241382E-04,-4.921259843E-04, 0001623P0004177 +-2.235718787E-15; 0001623P0004178 +124,-0.998629535,-2.735308799E-03,-5.226442765E-02, 0001625P0004179 +5.643558129E-02,-2.286283049E-12,0.998633281,-5.226442765E-02, 0001625P0004180 +2.454581751E-02,5.23359562E-02,-5.219280107E-02,-0.997264689, 0001625P0004181 +4.035433071E-03; 0001625P0004182 +100,-9.348042353E-19,3.005032793E-18,1.333910153E-20, 0001627P0004183 +-4.914515427E-04,-2.575588394E-05,3.005032793E-18, 0001627P0004184 +-4.921259843E-04; 0001627P0004185 +124,-1.,-2.719260372E-32,1.224646E-16,5.643558129E-02, 0001629P0004186 +1.224646E-16,-2.220446049E-16,1.,2.454581751E-02,0.,1., 0001629P0004187 +2.220446049E-16,4.035433071E-03; 0001629P0004188 +100,-1.037248535E-18,3.158699243E-19,1.333910153E-20, 0001631P0004189 +2.070228558E-19,-4.921259843E-04,4.914515427E-04, 0001631P0004190 +-2.575588394E-05; 0001631P0004191 +124,1.749350577E-14,-2.719260402E-32,1.,5.643558129E-02,1., 0001633P0004192 +-2.220446049E-16,-1.749350577E-14,2.454581751E-02, 0001633P0004193 +2.220446049E-16,1.,-3.857145973E-30,4.035433071E-03; 0001633P0004194 +144,1637,1,0,1639; 0001635P0004195 +128,1,1,1,1,0,0,1,0,0,4.592711362E-02,4.592711362E-02, 0001637P0004196 +1.254072886,1.254072886,4.592711362E-02,4.592711362E-02, 0001637P0004197 +2.874072886,2.874072886,1.,1.,1.,1.,5.567216088E-02, 0001637P0004198 +-2.37823971E-02,4.015748031E-02,5.567216088E-02,2.37823971E-02, 0001637P0004199 +4.015748031E-02,-5.567216088E-02,-2.37823971E-02, 0001637P0004200 +4.015748031E-02,-5.567216088E-02,2.37823971E-02,4.015748031E-02, 0001637P0004201 +4.592711362E-02,1.254072886,4.592711362E-02,2.874072886; 0001637P0004202 +142,0,1637,1641,1651,3; 0001639P0004203 +102,4,1643,1645,1647,1649; 0001641P0004204 +110,1.254072886,2.874072886,0.,4.592711332E-02,2.874072886,0.; 0001643P0004205 +110,4.592711362E-02,2.874072886,0.,4.592711362E-02, 0001645P0004206 +4.59271133E-02,0.; 0001645P0004207 +110,4.592711362E-02,4.592711362E-02,0.,1.254072886, 0001647P0004208 +4.592711362E-02,0.; 0001647P0004209 +110,1.254072886,4.592711362E-02,0.,1.254072886,2.874072886,0.; 0001649P0004210 +102,4,1653,1655,1657,1659; 0001651P0004211 +110,-5.567216088E-02,2.37823971E-02,4.015748031E-02, 0001653P0004212 +-5.567216088E-02,-2.37823971E-02,4.015748031E-02; 0001653P0004213 +110,-5.567216088E-02,-2.37823971E-02,4.015748031E-02, 0001655P0004214 +5.567216088E-02,-2.37823971E-02,4.015748031E-02; 0001655P0004215 +110,5.567216088E-02,-2.37823971E-02,4.015748031E-02, 0001657P0004216 +5.567216088E-02,2.37823971E-02,4.015748031E-02; 0001657P0004217 +110,5.567216088E-02,2.37823971E-02,4.015748031E-02, 0001659P0004218 +-5.567216088E-02,2.37823971E-02,4.015748031E-02; 0001659P0004219 +144,1663,1,0,1671; 0001661P0004220 +120,1665,1667,4.712339181,6.283185307; 0001663P0004221 +110,5.567216088E-02,2.37823971E-02,7.903543307E-02, 0001665P0004222 +5.567216088E-02,2.37823971E-02,3.966535433E-02; 0001665P0004223 +100,-1.570812596E-18,-3.461763629E-18,-2.206820957E-18, 0001667P0004224 +-2.558804393E-05,4.914603101E-04,-4.921259843E-04, 0001667P0004225 +-2.206820957E-18; 0001667P0004226 +124,5.528961864E-21,1.,-2.490023061E-05,5.567216088E-02, 0001669P0004227 +2.220446047E-16,-2.490023061E-05,-1.,2.37823971E-02,-1., 0001669P0004228 +2.402416579E-37,-2.220446048E-16,3.966535433E-02; 0001669P0004229 +142,0,1663,1673,1681,3; 0001671P0004230 +102,3,1675,1677,1679; 0001673P0004231 +126,24,3,0,0,1,0,5.235987755E-02,5.235987755E-02, 0001675P0004232 +5.235987755E-02,5.235987755E-02,0.121379716,0.190399555, 0001675P0004233 +0.259419393,0.328439232,0.397459071,0.466478909,0.535498748, 0001675P0004234 +0.604518586,0.673538425,0.742558264,0.811578102,0.880597941, 0001675P0004235 +0.949617779,1.018637618,1.087657457,1.156677295,1.225697134, 0001675P0004236 +1.294716972,1.363736811,1.43275665,1.501776488,1.570796327, 0001675P0004237 +1.570796327,1.570796327,1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001675P0004238 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.623156204, 0001675P0004239 +4.71236408,0.,1.646162817,4.71236408,0.,1.692176043,4.71236408, 0001675P0004240 +0.,1.761195882,4.71236408,0.,1.83021572,4.71236408,0., 0001675P0004241 +1.899235559,4.71236408,0.,1.968255397,4.71236408,0.,2.037275236, 0001675P0004242 +4.71236408,0.,2.106295075,4.71236408,0.,2.175314913,4.71236408, 0001675P0004243 +0.,2.244334752,4.71236408,0.,2.31335459,4.71236408,0., 0001675P0004244 +2.382374429,4.71236408,0.,2.451394268,4.71236408,0.,2.520414106, 0001675P0004245 +4.71236408,0.,2.589433945,4.71236408,0.,2.658453783,4.71236408, 0001675P0004246 +0.,2.727473622,4.71236408,0.,2.796493461,4.71236408,0., 0001675P0004247 +2.865513299,4.71236408,0.,2.934533138,4.71236408,0.,3.003552976, 0001675P0004248 +4.71236408,0.,3.072572815,4.71236408,0.,3.118586041,4.71236408, 0001675P0004249 +0.,3.141592654,4.71236408,0.,5.235987755E-02,1.570796327,0.,0., 0001675P0004250 +1.; 0001675P0004251 +126,24,3,0,0,1,0,1.570796327,1.570796327,1.570796327, 0001677P0004252 +1.570796327,1.639816165,1.708836004,1.777855843,1.846875681, 0001677P0004253 +1.91589552,1.984915358,2.053935197,2.122955036,2.191974874, 0001677P0004254 +2.260994713,2.330014551,2.39903439,2.468054229,2.537074067, 0001677P0004255 +2.606093906,2.675113744,2.744133583,2.813153422,2.88217326, 0001677P0004256 +2.951193099,3.020212937,3.089232776,3.089232776,3.089232776, 0001677P0004257 +3.089232776,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001677P0004258 +1.,1.,1.,1.,1.,1.,1.,1.,3.141592654,6.283160407,0.,3.118586041, 0001677P0004259 +6.283160407,0.,3.072572815,6.283160407,0.,3.003552976, 0001677P0004260 +6.283160407,0.,2.934533138,6.283160407,0.,2.865513299, 0001677P0004261 +6.283160407,0.,2.796493461,6.283160407,0.,2.727473622, 0001677P0004262 +6.283160407,0.,2.658453783,6.283160407,0.,2.589433945, 0001677P0004263 +6.283160407,0.,2.520414106,6.283160407,0.,2.451394268, 0001677P0004264 +6.283160407,0.,2.382374429,6.283160407,0.,2.31335459, 0001677P0004265 +6.283160407,0.,2.244334752,6.283160407,0.,2.175314913, 0001677P0004266 +6.283160407,0.,2.106295075,6.283160407,0.,2.037275236, 0001677P0004267 +6.283160407,0.,1.968255397,6.283160407,0.,1.899235559, 0001677P0004268 +6.283160407,0.,1.83021572,6.283160407,0.,1.761195882, 0001677P0004269 +6.283160407,0.,1.692176043,6.283160407,0.,1.646162817, 0001677P0004270 +6.283160407,0.,1.623156204,6.283160407,0.,1.570796327, 0001677P0004271 +3.089232776,0.,0.,1.; 0001677P0004272 +126,24,3,1,0,1,0,0.,0.,0.,0.,7.12753305E-02,0.142550661, 0001679P0004273 +0.213825992,0.285101322,0.356376653,0.427651983,0.498927314, 0001679P0004274 +0.570202644,0.641477975,0.712753305,0.784028636,0.855303966, 0001679P0004275 +0.926579297,0.997854627,1.069129958,1.140405288,1.211680619, 0001679P0004276 +1.282955949,1.35423128,1.42550661,1.496781941,1.568057271, 0001679P0004277 +1.568057271,1.568057271,1.568057271,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001679P0004278 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.623156204, 0001679P0004279 +6.283160407,0.,1.624398046,6.259401921,0.,1.626792771, 0001679P0004280 +6.211875495,0.,1.630101213,6.140558381,0.,1.633108654, 0001679P0004281 +6.06921446,0.,1.635799792,5.997845156,0.,1.638160785, 0001679P0004282 +5.926452355,0.,1.640179507,5.855038437,0.,1.641845569, 0001679P0004283 +5.783606214,0.,1.643150389,5.712158872,0.,1.644087241, 0001679P0004284 +5.640699911,0.,1.644651294,5.569233069,0.,1.644839635, 0001679P0004285 +5.497762244,0.,1.644651294,5.426291419,0.,1.644087241, 0001679P0004286 +5.354824576,0.,1.643150389,5.283365615,0.,1.641845569, 0001679P0004287 +5.211918274,0.,1.640179507,5.14048605,0.,1.638160785, 0001679P0004288 +5.069072132,0.,1.635799792,4.997679331,0.,1.633108654, 0001679P0004289 +4.926310027,0.,1.630101213,4.854966106,0.,1.626792771, 0001679P0004290 +4.783648992,0.,1.624398046,4.736122566,0.,1.623156204, 0001679P0004291 +4.71236408,0.,0.,1.568057271,-0.,-0.,1.; 0001679P0004292 +102,3,1683,1687,1691; 0001681P0004293 +100,-2.911125518E-18,-1.858937189E-18,3.461763629E-18, 0001683P0004294 +4.914515427E-04,2.575588398E-05,-1.750090121E-18, 0001683P0004295 +4.921259843E-04; 0001683P0004296 +124,1.224646E-16,-2.719260372E-32,1.,5.567216088E-02,1., 0001685P0004297 +-2.220446049E-16,-1.224646E-16,2.37823971E-02,2.220446049E-16, 0001685P0004298 +1.,8.125204719E-49,3.966535433E-02; 0001685P0004299 +100,-1.858937189E-18,2.911125518E-18,3.461763629E-18, 0001687P0004300 +2.911125518E-18,4.921259843E-04,-4.914515427E-04, 0001687P0004301 +2.575588398E-05; 0001687P0004302 +124,-1.,-2.719260372E-32,1.224646E-16,5.567216088E-02, 0001689P0004303 +1.224646E-16,-2.220446049E-16,1.,2.37823971E-02,0.,1., 0001689P0004304 +2.220446049E-16,3.966535433E-02; 0001689P0004305 +100,-1.679659665E-18,-2.275117157E-18,4.908789364E-19, 0001691P0004306 +4.921259843E-04,-1.353118459E-18,1.347958817E-06, 0001691P0004307 +4.921241382E-04; 0001691P0004308 +124,0.998629535,-2.735308799E-03,-5.226442765E-02, 0001693P0004309 +5.567216088E-02,2.286283049E-12,0.998633281,-5.226442765E-02, 0001693P0004310 +2.37823971E-02,5.23359562E-02,5.219280107E-02,0.997264689, 0001693P0004311 +3.966535433E-02; 0001693P0004312 +144,1697,1,0,1703; 0001695P0004313 +120,1699,1701,4.712187849,6.283185303; 0001697P0004314 +110,5.904786048E-02,2.71580967E-02,-2.474683125E-02, 0001699P0004315 +5.699020585E-02,2.510044207E-02,1.451555807E-02; 0001699P0004316 +110,5.567143839E-02,2.427385009E-02,3.969107243E-02, 0001701P0004317 +5.698870719E-02,2.559111888E-02,1.45560865E-02; 0001701P0004318 +142,0,1697,1705,1715,3; 0001703P0004319 +102,4,1707,1709,1711,1713; 0001705P0004320 +126,24,3,0,0,1,0,4.715128036,4.715128036,4.715128036, 0001707P0004321 +4.715128036,4.786403366,4.857678697,4.928954027,5.000229358, 0001707P0004322 +5.071504688,5.142780019,5.21405535,5.28533068,5.356606011, 0001707P0004323 +5.427881341,5.499156672,5.570432002,5.641707333,5.712982663, 0001707P0004324 +5.784257994,5.855533324,5.926808655,5.998083985,6.069359316, 0001707P0004325 +6.140634646,6.211909977,6.283185307,6.283185307,6.283185307, 0001707P0004326 +6.283185307,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001707P0004327 +1.,1.,1.,1.,1.,1.,1.,1.,3.738229151E-13,6.281715198,0., 0001707P0004328 +3.509015037E-13,6.257956754,0.,3.069344406E-13,6.210439867,0., 0001707P0004329 +2.46914178E-13,6.139164536,0.,1.928747551E-13,6.067889206,0., 0001707P0004330 +1.457505902E-13,5.996613875,0.,1.038999872E-13,5.925338544,0., 0001707P0004331 +7.008661449E-14,5.854063214,0.,4.298753022E-14,5.782787883,0., 0001707P0004332 +2.342116319E-14,5.711512552,0.,1.067358018E-14,5.640237222,0., 0001707P0004333 +5.385903334E-15,5.568961891,0.,8.368955742E-15,5.49768656,0., 0001707P0004334 +1.664926597E-14,5.426411229,0.,3.39664903E-14,5.355135899,0., 0001707P0004335 +5.743612571E-14,5.283860568,0.,8.962676932E-14,5.212585237,0., 0001707P0004336 +1.268326698E-13,5.141309907,0.,1.718795821E-13,5.070034576,0., 0001707P0004337 +2.229553416E-13,4.998759245,0.,2.802552422E-13,4.927483915,0., 0001707P0004338 +3.441953467E-13,4.856208584,0.,4.133888498E-13,4.784933253,0., 0001707P0004339 +4.62861116E-13,4.737416366,0.,4.883386337E-13,4.713657923,0., 0001707P0004340 +4.715128036,6.283185307,0.,0.,1.; 0001707P0004341 +126,24,3,0,0,1,0,-4.80862409E-11,-4.80862409E-11, 0001709P0004342 +-4.80862409E-11,-4.80862409E-11,2.908656984E-02,5.817313974E-02, 0001709P0004343 +8.725970963E-02,0.11634628,0.145432849,0.174519419,0.203605989, 0001709P0004344 +0.232692559,0.261779129,0.290865699,0.319952269,0.349038839, 0001709P0004345 +0.378125409,0.407211978,0.436298548,0.465385118,0.494471688, 0001709P0004346 +0.523558258,0.552644828,0.581731398,0.610817968,0.639904538, 0001709P0004347 +0.639904538,0.639904538,0.639904538,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001709P0004348 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,7.636154012E-11, 0001709P0004349 +4.713657922,0.,1.514500201E-02,4.713657923,0.,4.543500587E-02, 0001709P0004350 +4.713657924,0.,9.087001166E-02,4.713657925,0.,0.136305017, 0001709P0004351 +4.713657926,0.,0.181740023,4.713657927,0.,0.227175029, 0001709P0004352 +4.713657929,0.,0.272610035,4.71365793,0.,0.318045041, 0001709P0004353 +4.713657931,0.,0.363480046,4.713657932,0.,0.408915052, 0001709P0004354 +4.713657933,0.,0.454350058,4.713657935,0.,0.499785064, 0001709P0004355 +4.713657936,0.,0.54522007,4.713657937,0.,0.590655075, 0001709P0004356 +4.713657938,0.,0.636090081,4.71365794,0.,0.681525087, 0001709P0004357 +4.713657941,0.,0.726960093,4.713657942,0.,0.772395099, 0001709P0004358 +4.713657943,0.,0.817830104,4.713657945,0.,0.86326511, 0001709P0004359 +4.713657946,0.,0.908700116,4.713657947,0.,0.954135122, 0001709P0004360 +4.713657948,0.,0.984425126,4.713657949,0.,0.999570127, 0001709P0004361 +4.71365795,0.,-4.80862409E-11,0.639904538,0.,0.,1.; 0001709P0004362 +126,24,3,1,0,1,0,5.499156672,5.499156672,5.499156672, 0001711P0004363 +5.499156672,5.570432002,5.641707333,5.712982664,5.784257994, 0001711P0004364 +5.855533324,5.926808655,5.998083986,6.069359316,6.140634646, 0001711P0004365 +6.211909977,6.283185308,6.354460638,6.425735968,6.497011299, 0001711P0004366 +6.56828663,6.63956196,6.71083729,6.782112621,6.853387951, 0001711P0004367 +6.924663282,6.995938612,7.067213943,7.067213943,7.067213943, 0001711P0004368 +7.067213943,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001711P0004369 +1.,1.,1.,1.,1.,1.,1.,1.,0.999570127,4.71365795,0.,0.999591993, 0001711P0004370 +4.735054539,0.,0.999634902,4.778421364,0.,0.999696094, 0001711P0004371 +4.845099184,0.,0.999753407,4.913318492,0.,0.999806123, 0001711P0004372 +4.982967768,0.,0.999853536,5.053918795,0.,0.999894973, 0001711P0004373 +5.126024921,0.,0.999929817,5.199122821,0.,0.999957525, 0001711P0004374 +5.273034022,0.,0.999977651,5.347567193,0.,0.999989863, 0001711P0004375 +5.422520868,0.,0.999993957,5.497686581,0.,0.999989863, 0001711P0004376 +5.572852295,0.,0.999977651,5.647805969,0.,0.999957525, 0001711P0004377 +5.72233914,0.,0.999929817,5.79625034,0.,0.999894973,5.869348239, 0001711P0004378 +0.,0.999853536,5.941454365,0.,0.999806123,6.012405391,0., 0001711P0004379 +0.999753407,6.082054666,0.,0.999696094,6.150273972,0., 0001711P0004380 +0.999634902,6.21695179,0.,0.999591993,6.260318614,0., 0001711P0004381 +0.999570127,6.281715203,0.,5.499156672,7.067213943,0.,0.,1.; 0001711P0004382 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.908656989E-02,5.817313979E-02, 0001713P0004383 +8.725970968E-02,0.11634628,0.145432849,0.174519419,0.203605989, 0001713P0004384 +0.232692559,0.261779129,0.290865699,0.319952269,0.349038839, 0001713P0004385 +0.378125409,0.407211979,0.436298548,0.465385118,0.494471688, 0001713P0004386 +0.523558258,0.552644828,0.581731398,0.610817968,0.639904538, 0001713P0004387 +0.639904538,0.639904538,0.639904538,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001713P0004388 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,0.999570127, 0001713P0004389 +6.281715203,0.,0.984425126,6.281715202,0.,0.954135122, 0001713P0004390 +6.281715202,0.,0.908700116,6.281715202,0.,0.86326511, 0001713P0004391 +6.281715202,0.,0.817830104,6.281715202,0.,0.772395099, 0001713P0004392 +6.281715201,0.,0.726960093,6.281715201,0.,0.681525087, 0001713P0004393 +6.281715201,0.,0.636090081,6.281715201,0.,0.590655075, 0001713P0004394 +6.281715201,0.,0.54522007,6.2817152,0.,0.499785064,6.2817152,0., 0001713P0004395 +0.454350058,6.2817152,0.,0.408915052,6.2817152,0.,0.363480046, 0001713P0004396 +6.2817152,0.,0.318045041,6.281715199,0.,0.272610035,6.281715199, 0001713P0004397 +0.,0.227175029,6.281715199,0.,0.181740023,6.281715199,0., 0001713P0004398 +0.136305017,6.281715198,0.,9.087001166E-02,6.281715198,0., 0001713P0004399 +4.543500587E-02,6.281715198,0.,1.514500201E-02,6.281715198,0., 0001713P0004400 +7.636195095E-11,6.281715198,0.,0.,0.639904538,0.,0.,1.; 0001713P0004401 +102,4,1717,1721,1723,1725; 0001715P0004402 +100,1.679659665E-18,-2.275117157E-18,-4.908789364E-19, 0001717P0004403 +1.347958716E-06,-4.921241382E-04,4.921259843E-04, 0001717P0004404 +1.094873454E-18; 0001717P0004405 +124,0.998629535,2.735308799E-03,5.226442765E-02,5.567216088E-02, 0001719P0004406 +2.286283049E-12,-0.998633281,5.226442765E-02,2.37823971E-02, 0001719P0004407 +5.23359562E-02,-5.219280107E-02,-0.997264689,3.966535433E-02; 0001719P0004408 +110,5.616361242E-02,2.37823971E-02,3.969111021E-02, 0001721P0004409 +5.748031496E-02,2.509909964E-02,1.456692913E-02; 0001721P0004410 +126,3,3,1,0,0,0,5.499156672,5.499156672,5.499156672,5.499156672, 0001723P0004411 +7.067213943,7.067213943,7.067213943,7.067213943,1.,0.805383013, 0001723P0004412 +0.805383013,1.,5.748031496E-02,2.509909964E-02,1.456692913E-02, 0001723P0004413 +5.748031496E-02,2.538714836E-02,1.456692913E-02,5.727691213E-02, 0001723P0004414 +2.559055118E-02,1.456692913E-02,5.698886342E-02,2.559055118E-02, 0001723P0004415 +1.456692913E-02,5.499156672,7.067213943,0.,0.,1.; 0001723P0004416 +110,5.698886342E-02,2.559055118E-02,1.456692913E-02, 0001725P0004417 +5.567216088E-02,2.427384864E-02,3.969111021E-02; 0001725P0004418 +144,1729,1,0,1735; 0001727P0004419 +120,1731,1733,4.712187833,6.283185304; 0001729P0004420 +110,-5.89080557E-02,2.701829192E-02,-2.207919705E-02, 0001731P0004421 +-5.685040107E-02,2.496063729E-02,1.718319227E-02; 0001731P0004422 +110,-5.616361387E-02,2.378167462E-02,3.969107243E-02, 0001733P0004423 +-5.748088267E-02,2.509894341E-02,1.45560865E-02; 0001733P0004424 +142,0,1729,1737,1747,3; 0001735P0004425 +102,4,1739,1741,1743,1745; 0001737P0004426 +126,24,3,0,0,1,0,3.141592653,3.141592653,3.141592653, 0001739P0004427 +3.141592653,3.212867984,3.284143314,3.355418645,3.426693975, 0001739P0004428 +3.497969306,3.569244637,3.640519967,3.711795298,3.783070628, 0001739P0004429 +3.854345959,3.925621289,3.99689662,4.06817195,4.139447281, 0001739P0004430 +4.210722611,4.281997942,4.353273272,4.424548603,4.495823933, 0001739P0004431 +4.567099264,4.638374594,4.709649925,4.709649925,4.709649925, 0001739P0004432 +4.709649925,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001739P0004433 +1.,1.,1.,1.,1.,1.,1.,1.,4.891417504E-13,6.281715218,0., 0001739P0004434 +4.641295137E-13,6.257956774,0.,4.146231175E-13,6.210439887,0., 0001739P0004435 +3.440083334E-13,6.139164555,0.,2.81215263E-13,6.067889224,0., 0001739P0004436 +2.231186754E-13,5.996613892,0.,1.72101321E-13,5.925338561,0., 0001739P0004437 +1.274220773E-13,5.85406323,0.,8.880958106E-14,5.782787898,0., 0001739P0004438 +5.811358195E-14,5.711512567,0.,3.40218975E-14,5.640237235,0., 0001739P0004439 +1.733935204E-14,5.568961903,0.,7.348399379E-15,5.497686572,0., 0001739P0004440 +5.114128533E-15,5.42641124,0.,1.151851101E-14,5.355135909,0., 0001739P0004441 +2.336170027E-14,5.283860577,0.,4.283816034E-14,5.212585246,0., 0001739P0004442 +6.961046041E-14,5.141309914,0.,1.03924827E-13,5.070034583,0., 0001739P0004443 +1.455694706E-13,4.998759251,0.,1.918456323E-13,4.92748392,0., 0001739P0004444 +2.462246012E-13,4.856208589,0.,3.065973891E-13,4.784933257,0., 0001739P0004445 +3.503389513E-13,4.73741637,0.,3.728927703E-13,4.713657926,0., 0001739P0004446 +3.141592653,4.709649925,0.,0.,1.; 0001739P0004447 +126,24,3,0,0,1,0,-4.803398923E-11,-4.803398923E-11, 0001741P0004448 +-4.803398923E-11,-4.803398923E-11,2.908656984E-02, 0001741P0004449 +5.817313974E-02,8.725970963E-02,0.11634628,0.145432849, 0001741P0004450 +0.174519419,0.203605989,0.232692559,0.261779129,0.290865699, 0001741P0004451 +0.319952269,0.349038839,0.378125409,0.407211978,0.436298548, 0001741P0004452 +0.465385118,0.494471688,0.523558258,0.552644828,0.581731398, 0001741P0004453 +0.610817968,0.639904538,0.639904538,0.639904538,0.639904538,1., 0001741P0004454 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001741P0004455 +1.,1.,1.,7.644312686E-11,4.713657926,0.,1.514500201E-02, 0001741P0004456 +4.713657926,0.,4.543500587E-02,4.713657926,0.,9.087001166E-02, 0001741P0004457 +4.713657927,0.,0.136305017,4.713657927,0.,0.181740023, 0001741P0004458 +4.713657927,0.,0.227175029,4.713657928,0.,0.272610035, 0001741P0004459 +4.713657928,0.,0.318045041,4.713657928,0.,0.363480046, 0001741P0004460 +4.713657929,0.,0.408915052,4.713657929,0.,0.454350058, 0001741P0004461 +4.71365793,0.,0.499785064,4.71365793,0.,0.54522007,4.71365793, 0001741P0004462 +0.,0.590655075,4.713657931,0.,0.636090081,4.713657931,0., 0001741P0004463 +0.681525087,4.713657931,0.,0.726960093,4.713657932,0., 0001741P0004464 +0.772395099,4.713657932,0.,0.817830104,4.713657932,0., 0001741P0004465 +0.86326511,4.713657933,0.,0.908700116,4.713657933,0., 0001741P0004466 +0.954135122,4.713657934,0.,0.984425126,4.713657934,0., 0001741P0004467 +0.999570127,4.713657934,0.,-4.803398923E-11,0.639904538,0.,0., 0001741P0004468 +1.; 0001741P0004469 +126,24,3,1,0,1,0,5.499156672,5.499156672,5.499156672, 0001743P0004470 +5.499156672,5.570432002,5.641707333,5.712982664,5.784257994, 0001743P0004471 +5.855533324,5.926808655,5.998083986,6.069359316,6.140634646, 0001743P0004472 +6.211909977,6.283185308,6.354460638,6.425735968,6.497011299, 0001743P0004473 +6.56828663,6.63956196,6.71083729,6.782112621,6.853387951, 0001743P0004474 +6.924663282,6.995938612,7.067213943,7.067213943,7.067213943, 0001743P0004475 +7.067213943,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001743P0004476 +1.,1.,1.,1.,1.,1.,1.,1.,0.999570127,4.713657934,0.,0.999591993, 0001743P0004477 +4.735054523,0.,0.999634902,4.778421347,0.,0.999696094, 0001743P0004478 +4.845099165,0.,0.999753407,4.913318473,0.,0.999806123, 0001743P0004479 +4.982967748,0.,0.999853536,5.053918775,0.,0.999894973, 0001743P0004480 +5.126024901,0.,0.999929817,5.199122801,0.,0.999957525, 0001743P0004481 +5.273034002,0.,0.999977651,5.347567174,0.,0.999989863, 0001743P0004482 +5.422520849,0.,0.999993957,5.497686564,0.,0.999989863, 0001743P0004483 +5.572852278,0.,0.999977651,5.647805954,0.,0.999957525, 0001743P0004484 +5.722339126,0.,0.999929817,5.796250327,0.,0.999894973, 0001743P0004485 +5.869348228,0.,0.999853536,5.941454355,0.,0.999806123, 0001743P0004486 +6.012405382,0.,0.999753407,6.082054659,0.,0.999696094, 0001743P0004487 +6.150273968,0.,0.999634902,6.216951789,0.,0.999591993, 0001743P0004488 +6.260318614,0.,0.999570127,6.281715203,0.,5.499156672, 0001743P0004489 +7.067213943,0.,0.,1.; 0001743P0004490 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.908656989E-02,5.817313979E-02, 0001745P0004491 +8.725970968E-02,0.11634628,0.145432849,0.174519419,0.203605989, 0001745P0004492 +0.232692559,0.261779129,0.290865699,0.319952269,0.349038839, 0001745P0004493 +0.378125409,0.407211979,0.436298548,0.465385118,0.494471688, 0001745P0004494 +0.523558258,0.552644828,0.581731398,0.610817968,0.639904538, 0001745P0004495 +0.639904538,0.639904538,0.639904538,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001745P0004496 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,0.999570127, 0001745P0004497 +6.281715203,0.,0.984425126,6.281715204,0.,0.954135122, 0001745P0004498 +6.281715204,0.,0.908700116,6.281715205,0.,0.86326511, 0001745P0004499 +6.281715205,0.,0.817830104,6.281715206,0.,0.772395099, 0001745P0004500 +6.281715207,0.,0.726960093,6.281715207,0.,0.681525087, 0001745P0004501 +6.281715208,0.,0.636090081,6.281715209,0.,0.590655075, 0001745P0004502 +6.281715209,0.,0.54522007,6.28171521,0.,0.499785064,6.281715211, 0001745P0004503 +0.,0.454350058,6.281715211,0.,0.408915052,6.281715212,0., 0001745P0004504 +0.363480046,6.281715213,0.,0.318045041,6.281715213,0., 0001745P0004505 +0.272610035,6.281715214,0.,0.227175029,6.281715215,0., 0001745P0004506 +0.181740023,6.281715215,0.,0.136305017,6.281715216,0., 0001745P0004507 +9.087001166E-02,6.281715217,0.,4.543500587E-02,6.281715217,0., 0001745P0004508 +1.514500201E-02,6.281715218,0.,7.644358189E-11,6.281715218,0., 0001745P0004509 +0.,0.639904538,0.,0.,1.; 0001745P0004510 +102,4,1749,1753,1755,1757; 0001747P0004511 +100,1.679659665E-18,2.275117157E-18,-4.908789364E-19, 0001749P0004512 +-4.921259843E-04,1.01314416E-13,-1.347958716E-06, 0001749P0004513 +-4.921241382E-04; 0001749P0004514 +124,0.998629535,-2.735308799E-03,-5.226442765E-02, 0001751P0004515 +-5.567216088E-02,-2.286283049E-12,-0.998633281,5.226442765E-02, 0001751P0004516 +2.37823971E-02,-5.23359562E-02,-5.219280107E-02,-0.997264689, 0001751P0004517 +3.966535433E-02; 0001751P0004518 +110,-5.567216088E-02,2.427384864E-02,3.969111021E-02, 0001753P0004519 +-5.698886342E-02,2.559055118E-02,1.456692913E-02; 0001753P0004520 +126,3,3,1,0,0,0,5.499156672,5.499156672,5.499156672,5.499156672, 0001755P0004521 +7.067213943,7.067213943,7.067213943,7.067213943,1.,0.805383013, 0001755P0004522 +0.805383013,1.,-5.698886342E-02,2.559055118E-02,1.456692913E-02, 0001755P0004523 +-5.727691213E-02,2.559055118E-02,1.456692913E-02, 0001755P0004524 +-5.748031496E-02,2.538714836E-02,1.456692913E-02, 0001755P0004525 +-5.748031496E-02,2.509909964E-02,1.456692913E-02,5.499156672, 0001755P0004526 +7.067213943,0.,0.,1.; 0001755P0004527 +110,-5.748031496E-02,2.509909964E-02,1.456692913E-02, 0001757P0004528 +-5.616361242E-02,2.37823971E-02,3.969111021E-02; 0001757P0004529 +144,1761,1,0,1767; 0001759P0004530 +120,1763,1765,4.764748858,6.283185307; 0001761P0004531 +110,-5.643558129E-02,1.377952756E-02,4.035433071E-03, 0001763P0004532 +-5.643558129E-02,-2.559055118E-02,4.035433071E-03; 0001763P0004533 +110,-5.643558129E-02,-2.454581751E-02,3.543307087E-03, 0001765P0004534 +-5.643558129E-02,2.454581751E-02,3.543307087E-03; 0001765P0004535 +142,0,1761,1769,1779,3; 0001767P0004536 +102,4,1771,1773,1775,1777; 0001769P0004537 +110,1.335550381E-16,6.283185307,0.,-8.237657468E-17,4.764748858, 0001771P0004538 +0.; 0001771P0004539 +110,-8.237657463E-17,4.764748858,0.,1.,4.764748858,0.; 0001773P0004540 +110,1.,4.764748858,0.,1.,6.283185307,0.; 0001775P0004541 +126,24,3,0,0,1,0,0.,0.,0.,0.,5.667852407E-02,0.113357048, 0001777P0004542 +0.170035572,0.226714096,0.28339262,0.340071144,0.396749668, 0001777P0004543 +0.453428193,0.510106717,0.566785241,0.623463765,0.680142289, 0001777P0004544 +0.736820813,0.793499337,0.850177861,0.906856385,0.963534909, 0001777P0004545 +1.020213433,1.076891957,1.133570481,1.190249005,1.24692753, 0001777P0004546 +1.24692753,1.24692753,1.24692753,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001777P0004547 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.283185307,0., 0001777P0004548 +0.984848485,6.283185307,0.,0.954545455,6.283185307,0., 0001777P0004549 +0.909090909,6.283185307,0.,0.863636364,6.283185307,0., 0001777P0004550 +0.818181818,6.283185307,0.,0.772727273,6.283185307,0., 0001777P0004551 +0.727272727,6.283185307,0.,0.681818182,6.283185307,0., 0001777P0004552 +0.636363636,6.283185307,0.,0.590909091,6.283185307,0., 0001777P0004553 +0.545454545,6.283185307,0.,0.5,6.283185307,0.,0.454545455, 0001777P0004554 +6.283185307,0.,0.409090909,6.283185307,0.,0.363636364, 0001777P0004555 +6.283185307,0.,0.318181818,6.283185307,0.,0.272727273, 0001777P0004556 +6.283185307,0.,0.227272727,6.283185307,0.,0.181818182, 0001777P0004557 +6.283185307,0.,0.136363636,6.283185307,0.,9.090909091E-02, 0001777P0004558 +6.283185307,0.,4.545454545E-02,6.283185307,0.,1.515151515E-02, 0001777P0004559 +6.283185307,0.,1.335550381E-16,6.283185307,0.,0.,1.24692753,0., 0001777P0004560 +0.,1.; 0001777P0004561 +102,4,1781,1785,1787,1791; 0001779P0004562 +100,-1.643377309E-18,3.005032793E-18,1.333910153E-20, 0001781P0004563 +3.005032793E-18,4.921259843E-04,-4.914515427E-04, 0001781P0004564 +2.575588405E-05; 0001781P0004565 +124,1.,2.719260372E-32,1.224646E-16,-5.643558129E-02, 0001783P0004566 +-1.224646E-16,2.220446049E-16,1.,-2.454581751E-02,0.,-1., 0001783P0004567 +2.220446049E-16,4.035433071E-03; 0001783P0004568 +110,-5.692703283E-02,-2.454581751E-02,4.009677187E-03, 0001785P0004569 +-5.692703283E-02,2.454581751E-02,4.009677187E-03; 0001785P0004570 +100,1.643377309E-18,3.005032793E-18,-1.333910153E-20, 0001787P0004571 +4.914515427E-04,2.575588405E-05,3.005032793E-18,4.921259843E-04; 0001787P0004572 +124,-1.,2.719260372E-32,-1.224646E-16,-5.643558129E-02, 0001789P0004573 +1.224646E-16,2.220446049E-16,-1.,2.454581751E-02,0.,-1., 0001789P0004574 +-2.220446049E-16,4.035433071E-03; 0001789P0004575 +110,-5.643558129E-02,2.454581751E-02,3.543307087E-03, 0001791P0004576 +-5.643558129E-02,-2.454581751E-02,3.543307087E-03; 0001791P0004577 +144,1795,1,0,1803; 0001793P0004578 +120,1797,1799,4.712339181,6.283185307; 0001795P0004579 +110,-5.567216088E-02,2.37823971E-02,7.903543307E-02, 0001797P0004580 +-5.567216088E-02,2.37823971E-02,3.966535433E-02; 0001797P0004581 +100,0.,0.,3.457495117E-19,-2.558804393E-05,4.914603101E-04, 0001799P0004582 +-4.921259843E-04,3.457495117E-19; 0001799P0004583 +124,-5.528734157E-21,2.490002551E-05,1.,-5.567216088E-02, 0001801P0004584 +1.376656216E-25,1.,-2.490002551E-05,2.37823971E-02,-1., 0001801P0004585 +4.70836284E-42,-5.528734159E-21,3.966535433E-02; 0001801P0004586 +142,0,1795,1805,1813,3; 0001803P0004587 +102,3,1807,1809,1811; 0001805P0004588 +126,24,3,0,0,1,0,1.623156204,1.623156204,1.623156204, 0001807P0004589 +1.623156204,1.692176043,1.761195882,1.83021572,1.899235559, 0001807P0004590 +1.968255397,2.037275236,2.106295075,2.175314913,2.244334752, 0001807P0004591 +2.31335459,2.382374429,2.451394268,2.520414106,2.589433945, 0001807P0004592 +2.658453783,2.727473622,2.796493461,2.865513299,2.934533138, 0001807P0004593 +3.003552976,3.072572815,3.141592654,3.141592654,3.141592654, 0001807P0004594 +3.141592654,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001807P0004595 +1.,1.,1.,1.,1.,1.,1.,1.,1.623156204,4.71236408,0.,1.646162817, 0001807P0004596 +4.71236408,0.,1.692176043,4.71236408,0.,1.761195882,4.71236408, 0001807P0004597 +0.,1.83021572,4.71236408,0.,1.899235559,4.71236408,0., 0001807P0004598 +1.968255397,4.71236408,0.,2.037275236,4.71236408,0.,2.106295075, 0001807P0004599 +4.71236408,0.,2.175314913,4.71236408,0.,2.244334752,4.71236408, 0001807P0004600 +0.,2.31335459,4.71236408,0.,2.382374429,4.71236408,0., 0001807P0004601 +2.451394268,4.71236408,0.,2.520414106,4.71236408,0.,2.589433945, 0001807P0004602 +4.71236408,0.,2.658453783,4.71236408,0.,2.727473622,4.71236408, 0001807P0004603 +0.,2.796493461,4.71236408,0.,2.865513299,4.71236408,0., 0001807P0004604 +2.934533138,4.71236408,0.,3.003552976,4.71236408,0.,3.072572815, 0001807P0004605 +4.71236408,0.,3.118586041,4.71236408,0.,3.141592654,4.71236408, 0001807P0004606 +0.,1.623156204,3.141592654,0.,0.,1.; 0001807P0004607 +126,24,3,0,0,1,0,1.570796327,1.570796327,1.570796327, 0001809P0004608 +1.570796327,1.639816165,1.708836004,1.777855843,1.846875681, 0001809P0004609 +1.91589552,1.984915358,2.053935197,2.122955036,2.191974874, 0001809P0004610 +2.260994713,2.330014551,2.39903439,2.468054229,2.537074067, 0001809P0004611 +2.606093906,2.675113744,2.744133583,2.813153422,2.88217326, 0001809P0004612 +2.951193099,3.020212937,3.089232776,3.089232776,3.089232776, 0001809P0004613 +3.089232776,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001809P0004614 +1.,1.,1.,1.,1.,1.,1.,1.,3.141592654,6.283160407,0.,3.118586041, 0001809P0004615 +6.283160407,0.,3.072572815,6.283160407,0.,3.003552976, 0001809P0004616 +6.283160407,0.,2.934533138,6.283160407,0.,2.865513299, 0001809P0004617 +6.283160407,0.,2.796493461,6.283160407,0.,2.727473622, 0001809P0004618 +6.283160407,0.,2.658453783,6.283160407,0.,2.589433945, 0001809P0004619 +6.283160407,0.,2.520414106,6.283160407,0.,2.451394268, 0001809P0004620 +6.283160407,0.,2.382374429,6.283160407,0.,2.31335459, 0001809P0004621 +6.283160407,0.,2.244334752,6.283160407,0.,2.175314913, 0001809P0004622 +6.283160407,0.,2.106295075,6.283160407,0.,2.037275236, 0001809P0004623 +6.283160407,0.,1.968255397,6.283160407,0.,1.899235559, 0001809P0004624 +6.283160407,0.,1.83021572,6.283160407,0.,1.761195882, 0001809P0004625 +6.283160407,0.,1.692176043,6.283160407,0.,1.646162817, 0001809P0004626 +6.283160407,0.,1.623156204,6.283160407,0.,1.570796327, 0001809P0004627 +3.089232776,0.,0.,1.; 0001809P0004628 +126,24,3,1,0,1,0,1.573535383,1.573535383,1.573535383, 0001811P0004629 +1.573535383,1.644810713,1.716086044,1.787361374,1.858636705, 0001811P0004630 +1.929912035,2.001187366,2.072462696,2.143738027,2.215013357, 0001811P0004631 +2.286288688,2.357564018,2.428839349,2.500114679,2.57139001, 0001811P0004632 +2.64266534,2.713940671,2.785216001,2.856491332,2.927766662, 0001811P0004633 +2.999041993,3.070317323,3.141592654,3.141592654,3.141592654, 0001811P0004634 +3.141592654,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001811P0004635 +1.,1.,1.,1.,1.,1.,1.,1.,1.623156204,6.283160407,0.,1.624398046, 0001811P0004636 +6.259401921,0.,1.626792771,6.211875495,0.,1.630101213, 0001811P0004637 +6.140558381,0.,1.633108654,6.069214461,0.,1.635799792, 0001811P0004638 +5.997845157,0.,1.638160785,5.926452355,0.,1.640179507, 0001811P0004639 +5.855038437,0.,1.641845569,5.783606214,0.,1.643150389, 0001811P0004640 +5.712158873,0.,1.644087241,5.640699912,0.,1.644651294, 0001811P0004641 +5.569233069,0.,1.644839635,5.497762244,0.,1.644651294, 0001811P0004642 +5.426291419,0.,1.644087241,5.354824576,0.,1.643150389, 0001811P0004643 +5.283365615,0.,1.641845569,5.211918274,0.,1.640179507, 0001811P0004644 +5.14048605,0.,1.638160785,5.069072133,0.,1.635799792, 0001811P0004645 +4.997679331,0.,1.633108654,4.926310027,0.,1.630101213, 0001811P0004646 +4.854966106,0.,1.626792771,4.783648992,0.,1.624398046, 0001811P0004647 +4.736122567,0.,1.623156204,4.71236408,0.,1.573535383, 0001811P0004648 +3.141592654,-0.,-0.,1.; 0001811P0004649 +102,3,1815,1819,1823; 0001813P0004650 +100,1.645511565E-18,1.754358633E-18,-3.760559504E-18, 0001815P0004651 +-2.575588398E-05,4.914515427E-04,-4.921259843E-04, 0001815P0004652 +-3.760559504E-18; 0001815P0004653 +124,1.089403686E-30,-1.,5.770296252E-16,-5.567216088E-02, 0001817P0004654 +8.895661985E-15,5.770296252E-16,1.,2.37823971E-02,-1., 0001817P0004655 +4.043656815E-30,8.895661985E-15,3.966535433E-02; 0001817P0004656 +100,-1.596423671E-18,1.771432683E-19,3.461763629E-18, 0001819P0004657 +6.829619984E-20,4.921259843E-04,-4.914515427E-04, 0001819P0004658 +2.575588398E-05; 0001819P0004659 +124,3.461961774E-14,-2.719260413E-32,-1.,-5.567216088E-02,-1., 0001821P0004660 +-2.220446049E-16,-3.461961774E-14,2.37823971E-02, 0001821P0004661 +-2.220446049E-16,1.,-7.714291947E-30,3.966535433E-02; 0001821P0004662 +100,-1.679659665E-18,2.275117157E-18,4.908789364E-19, 0001823P0004663 +-1.347958817E-06,4.921241382E-04,-4.921259843E-04, 0001823P0004664 +-1.80972124E-16; 0001823P0004665 +124,0.998629535,2.735308799E-03,5.226442765E-02, 0001825P0004666 +-5.567216088E-02,-2.286283049E-12,0.998633281,-5.226442765E-02, 0001825P0004667 +2.37823971E-02,-5.23359562E-02,5.219280107E-02,0.997264689, 0001825P0004668 +3.966535433E-02; 0001825P0004669 +144,1829,1,0,1835; 0001827P0004670 +120,1831,1833,4.712187848,6.283185302; 0001829P0004671 +110,-5.904786048E-02,-2.71580967E-02,5.388068951E-02, 0001831P0004672 +-5.699020585E-02,-2.510044207E-02,1.461830019E-02; 0001831P0004673 +110,-5.692703428E-02,-2.454509502E-02,4.009714975E-03, 0001833P0004674 +-5.748088266E-02,-2.509894341E-02,1.457777176E-02; 0001833P0004675 +142,0,1829,1837,1847,3; 0001835P0004676 +102,4,1839,1841,1843,1845; 0001837P0004677 +126,24,3,1,0,1,0,5.499156672,5.499156672,5.499156672, 0001839P0004678 +5.499156672,5.570432002,5.641707333,5.712982664,5.784257994, 0001839P0004679 +5.855533324,5.926808655,5.998083986,6.069359316,6.140634646, 0001839P0004680 +6.211909977,6.283185308,6.354460638,6.425735968,6.497011299, 0001839P0004681 +6.56828663,6.63956196,6.71083729,6.782112621,6.853387951, 0001839P0004682 +6.924663282,6.995938612,7.067213943,7.067213943,7.067213943, 0001839P0004683 +7.067213943,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001839P0004684 +1.,1.,1.,1.,1.,1.,1.,1.,0.998977594,4.713657949,0.,0.999029598, 0001839P0004685 +4.735054537,0.,0.999131654,4.778421361,0.,0.999277192, 0001839P0004686 +4.845099179,0.,0.999413506,4.913318486,0.,0.999538885, 0001839P0004687 +4.98296776,0.,0.999651651,5.053918786,0.,0.999750205, 0001839P0004688 +5.126024912,0.,0.999833077,5.199122811,0.,0.999898977, 0001839P0004689 +5.273034011,0.,0.999946845,5.347567182,0.,0.999975891, 0001839P0004690 +5.422520857,0.,0.999985628,5.49768657,0.,0.999975891, 0001839P0004691 +5.572852283,0.,0.999946845,5.647805958,0.,0.999898977, 0001839P0004692 +5.72233913,0.,0.999833077,5.79625033,0.,0.999750205,5.86934823, 0001839P0004693 +0.,0.999651651,5.941454356,0.,0.999538885,6.012405383,0., 0001839P0004694 +0.999413506,6.082054659,0.,0.999277192,6.150273968,0., 0001839P0004695 +0.999131654,6.216951787,0.,0.999029598,6.260318612,0., 0001839P0004696 +0.998977594,6.281715201,0.,5.499156672,7.067213943,0.,0.,1.; 0001839P0004697 +126,24,3,0,0,1,0,0.,0.,0.,0.,1.222225893E-02,2.444451785E-02, 0001841P0004698 +3.666677678E-02,4.888903571E-02,6.111129463E-02,7.333355356E-02, 0001841P0004699 +8.555581249E-02,9.777807142E-02,0.11000033,0.122222589, 0001841P0004700 +0.134444848,0.146667107,0.158889366,0.171111625,0.183333884, 0001841P0004701 +0.195556143,0.207778402,0.220000661,0.23222292,0.244445179, 0001841P0004702 +0.256667437,0.268889696,0.268889696,0.268889696,0.268889696,1., 0001841P0004703 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001841P0004704 +1.,1.,1.,0.998977594,6.281715201,0.,0.98384157,6.281715201,0., 0001841P0004705 +0.953569522,6.281715201,0.,0.908161449,6.281715201,0., 0001841P0004706 +0.862753377,6.281715201,0.,0.817345305,6.281715201,0., 0001841P0004707 +0.771937232,6.281715201,0.,0.72652916,6.2817152,0.,0.681121087, 0001841P0004708 +6.2817152,0.,0.635713015,6.2817152,0.,0.590304942,6.2817152,0., 0001841P0004709 +0.54489687,6.2817152,0.,0.499488797,6.2817152,0.,0.454080725, 0001841P0004710 +6.281715199,0.,0.408672652,6.281715199,0.,0.36326458, 0001841P0004711 +6.281715199,0.,0.317856507,6.281715199,0.,0.272448435, 0001841P0004712 +6.281715199,0.,0.227040362,6.281715199,0.,0.18163229, 0001841P0004713 +6.281715198,0.,0.136224217,6.281715198,0.,9.081614495E-02, 0001841P0004714 +6.281715198,0.,4.540807247E-02,6.281715198,0.,1.513602416E-02, 0001841P0004715 +6.281715198,0.,1.004425869E-15,6.281715198,0.,0.,0.268889696,0., 0001841P0004716 +0.,1.; 0001841P0004717 +126,24,3,0,0,1,0,0.,0.,0.,0.,7.12753305E-02,0.142550661, 0001843P0004718 +0.213825992,0.285101322,0.356376653,0.427651983,0.498927314, 0001843P0004719 +0.570202644,0.641477975,0.712753305,0.784028636,0.855303966, 0001843P0004720 +0.926579297,0.997854627,1.069129958,1.140405288,1.211680619, 0001843P0004721 +1.282955949,1.35423128,1.42550661,1.496781941,1.568057271, 0001843P0004722 +1.568057271,1.568057271,1.568057271,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001843P0004723 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,8.307779469E-12, 0001843P0004724 +6.281715198,0.,8.246972459E-12,6.257956754,0.,8.128826273E-12, 0001843P0004725 +6.210439868,0.,7.963629607E-12,6.139164538,0.,7.812863412E-12, 0001843P0004726 +6.067889208,0.,7.67617492E-12,5.996613878,0.,7.553483523E-12, 0001843P0004727 +5.925338548,0.,7.447261771E-12,5.854063218,0.,7.356237866E-12, 0001843P0004728 +5.782787888,0.,7.282518581E-12,5.711512558,0.,7.22614006E-12, 0001843P0004729 +5.640237228,0.,7.185323878E-12,5.568961898,0.,7.162746274E-12, 0001843P0004730 +5.497686569,0.,7.157392657E-12,5.426411239,0.,7.169958771E-12, 0001843P0004731 +5.355135909,0.,7.200107224E-12,5.283860579,0.,7.247142198E-12, 0001843P0004732 +5.212585249,0.,7.310681965E-12,5.141309919,0.,7.391624421E-12, 0001843P0004733 +5.070034589,0.,7.489137587E-12,4.998759259,0.,7.601991718E-12, 0001843P0004734 +4.92748393,0.,7.730213956E-12,4.8562086,0.,7.873073125E-12, 0001843P0004735 +4.78493327,0.,7.977532312E-12,4.737416383,0.,8.031935914E-12, 0001843P0004736 +4.71365794,0.,0.,1.568057271,0.,0.,1.; 0001843P0004737 +126,24,3,0,0,1,0,1.829249319E-12,1.829249319E-12, 0001845P0004738 +1.829249319E-12,1.829249319E-12,1.222225893E-02,2.444451786E-02, 0001845P0004739 +3.666677678E-02,4.888903571E-02,6.111129464E-02,7.333355356E-02, 0001845P0004740 +8.555581249E-02,9.777807142E-02,0.11000033,0.122222589, 0001845P0004741 +0.134444848,0.146667107,0.158889366,0.171111625,0.183333884, 0001845P0004742 +0.195556143,0.207778402,0.220000661,0.23222292,0.244445179, 0001845P0004743 +0.256667437,0.268889696,0.268889696,0.268889696,0.268889696,1., 0001845P0004744 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001845P0004745 +1.,1.,1.,-3.488565737E-16,4.71365794,0.,1.513602416E-02, 0001845P0004746 +4.71365794,0.,4.540807247E-02,4.71365794,0.,9.081614495E-02, 0001845P0004747 +4.71365794,0.,0.136224217,4.713657941,0.,0.18163229,4.713657941, 0001845P0004748 +0.,0.227040362,4.713657942,0.,0.272448435,4.713657942,0., 0001845P0004749 +0.317856507,4.713657942,0.,0.36326458,4.713657943,0., 0001845P0004750 +0.408672652,4.713657943,0.,0.454080725,4.713657944,0., 0001845P0004751 +0.499488797,4.713657944,0.,0.54489687,4.713657945,0., 0001845P0004752 +0.590304942,4.713657945,0.,0.635713015,4.713657945,0., 0001845P0004753 +0.681121087,4.713657946,0.,0.72652916,4.713657946,0., 0001845P0004754 +0.771937232,4.713657947,0.,0.817345305,4.713657947,0., 0001845P0004755 +0.862753377,4.713657947,0.,0.908161449,4.713657948,0., 0001845P0004756 +0.953569522,4.713657948,0.,0.98384157,4.713657948,0., 0001845P0004757 +0.998977594,4.713657949,0.,1.829249319E-12,0.268889696,0.,0.,1.; 0001845P0004758 +102,4,1849,1851,1853,1857; 0001847P0004759 +126,3,3,1,0,0,0,5.499156672,5.499156672,5.499156672,5.499156672, 0001849P0004760 +7.067213943,7.067213943,7.067213943,7.067213943,1.,0.805383013, 0001849P0004761 +0.805383013,1.,-5.698886342E-02,-2.559055118E-02, 0001849P0004762 +1.456692913E-02,-5.727691213E-02,-2.559055118E-02, 0001849P0004763 +1.456692913E-02,-5.748031496E-02,-2.538714836E-02, 0001849P0004764 +1.456692913E-02,-5.748031496E-02,-2.509909964E-02, 0001849P0004765 +1.456692913E-02,5.499156672,7.067213943,-0.,-0.,1.; 0001849P0004766 +110,-5.748031496E-02,-2.509909964E-02,1.456692913E-02, 0001851P0004767 +-5.692703283E-02,-2.454581751E-02,4.009677187E-03; 0001851P0004768 +100,-2.913259774E-19,-2.894051468E-18,-1.666854127E-18, 0001853P0004769 +4.921259843E-04,-3.483106192E-18,1.347958821E-06, 0001853P0004770 +4.921241382E-04; 0001853P0004771 +124,-0.998629535,2.735308799E-03,-5.226442765E-02, 0001855P0004772 +-5.643558129E-02,-2.286283049E-12,-0.998633281,-5.226442765E-02, 0001855P0004773 +-2.454581751E-02,-5.23359562E-02,-5.219280107E-02,0.997264689, 0001855P0004774 +4.035433071E-03; 0001855P0004775 +110,-5.643558129E-02,-2.503726905E-02,4.009677187E-03, 0001857P0004776 +-5.698886342E-02,-2.559055118E-02,1.456692913E-02; 0001857P0004777 +144,1861,1,0,1863; 0001859P0004778 +128,1,1,1,1,0,0,1,0,0,-3.845688421E-33,-3.845688421E-33,0.445, 0001861P0004779 +0.445,0.,0.,6.496383672E-02,6.496383672E-02,1.,1.,1.,1., 0001861P0004780 +8.75984252E-03,-2.801406815E-02,1.200787402E-02,-8.75984252E-03, 0001861P0004781 +-2.801406815E-02,1.200787402E-02,8.75984252E-03, 0001861P0004782 +-2.545643679E-02,1.200787402E-02,-8.75984252E-03, 0001861P0004783 +-2.545643679E-02,1.200787402E-02,-3.845688421E-33,0.445,0., 0001861P0004784 +6.496383672E-02; 0001861P0004785 +142,0,1861,1865,1875,3; 0001863P0004786 +102,4,1867,1869,1871,1873; 0001865P0004787 +110,0.445,0.,0.,0.445,6.496383654E-02,0.; 0001867P0004788 +110,0.445,6.496383672E-02,0.,-1.599997912E-11,6.496383672E-02, 0001869P0004789 +0.; 0001869P0004790 +110,-3.845688421E-33,6.496383672E-02,0.,-3.845688421E-33, 0001871P0004791 +1.760000479E-10,0.; 0001871P0004792 +110,-3.845688421E-33,0.,0.,0.445,0.,0.; 0001873P0004793 +102,4,1877,1879,1881,1883; 0001875P0004794 +110,-8.75984252E-03,-2.801406815E-02,1.200787402E-02, 0001877P0004795 +-8.75984252E-03,-2.545643679E-02,1.200787402E-02; 0001877P0004796 +110,-8.75984252E-03,-2.545643679E-02,1.200787402E-02, 0001879P0004797 +8.75984252E-03,-2.545643679E-02,1.200787402E-02; 0001879P0004798 +110,8.75984252E-03,-2.545643679E-02,1.200787402E-02, 0001881P0004799 +8.75984252E-03,-2.801406815E-02,1.200787402E-02; 0001881P0004800 +110,8.75984252E-03,-2.801406815E-02,1.200787402E-02, 0001883P0004801 +-8.75984252E-03,-2.801406815E-02,1.200787402E-02; 0001883P0004802 +144,1887,1,0,1893; 0001885P0004803 +120,1889,1891,5.108371491,6.283185308; 0001887P0004804 +110,-3.937007874E-02,-2.801406815E-02,1.062992126E-02, 0001889P0004805 +1.574812022E-13,-2.801406815E-02,1.062992126E-02; 0001889P0004806 +110,8.75984252E-03,-2.928539222E-02,1.116141811E-02, 0001891P0004807 +-8.75984252E-03,-2.928539222E-02,1.116141811E-02; 0001891P0004808 +142,0,1887,1895,1905,3; 0001893P0004809 +102,4,1897,1899,1901,1903; 0001895P0004810 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.022727273E-02,4.045454546E-02, 0001897P0004811 +6.068181818E-02,8.090909091E-02,0.101136364,0.121363636, 0001897P0004812 +0.141590909,0.161818182,0.182045455,0.202272727,0.2225, 0001897P0004813 +0.242727273,0.262954545,0.283181818,0.303409091,0.323636364, 0001897P0004814 +0.343863636,0.364090909,0.384318182,0.404545455,0.424772727, 0001897P0004815 +0.445,0.445,0.445,0.445,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001897P0004816 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.283185307,0., 0001897P0004817 +0.984848485,6.283185307,0.,0.954545455,6.283185307,0., 0001897P0004818 +0.909090909,6.283185307,0.,0.863636364,6.283185307,0., 0001897P0004819 +0.818181818,6.283185307,0.,0.772727273,6.283185307,0., 0001897P0004820 +0.727272727,6.283185307,0.,0.681818182,6.283185307,0., 0001897P0004821 +0.636363636,6.283185307,0.,0.590909091,6.283185307,0., 0001897P0004822 +0.545454545,6.283185307,0.,0.5,6.283185307,0.,0.454545455, 0001897P0004823 +6.283185307,0.,0.409090909,6.283185307,0.,0.363636364, 0001897P0004824 +6.283185307,0.,0.318181818,6.283185307,0.,0.272727273, 0001897P0004825 +6.283185307,0.,0.227272727,6.283185307,0.,0.181818182, 0001897P0004826 +6.283185307,0.,0.136363636,6.283185307,0.,9.090909091E-02, 0001897P0004827 +6.283185307,0.,4.545454545E-02,6.283185307,0.,1.515151515E-02, 0001897P0004828 +6.283185307,0.,7.405001679E-16,6.283185307,0.,0.,0.445,0.,0.,1.; 0001897P0004829 +126,24,3,0,0,1,0,0.395982512,0.395982512,0.395982512, 0001899P0004830 +0.395982512,0.44938314,0.502783768,0.556184396,0.609585024, 0001899P0004831 +0.662985652,0.71638628,0.769786908,0.823187536,0.876588164, 0001899P0004832 +0.929988791,0.983389419,1.036790047,1.090190675,1.143591303, 0001899P0004833 +1.196991931,1.250392559,1.303793187,1.357193815,1.410594443, 0001899P0004834 +1.463995071,1.517395699,1.570796327,1.570796327,1.570796327, 0001899P0004835 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001899P0004836 +1.,1.,1.,1.,1.,1.,1.,1.,7.405001679E-16,6.283185307,0., 0001899P0004837 +6.329188826E-16,6.265385097,0.,6.56351861E-16,6.229784678,0., 0001899P0004838 +1.068718356E-15,6.176384051,0.,3.791275355E-16,6.122983423,0., 0001899P0004839 +1.10052159E-15,6.069582795,0.,6.480257805E-16,6.016182167,0., 0001899P0004840 +1.12012232E-16,5.962781539,0.,1.083959503E-15,5.909380911,0., 0001899P0004841 +2.241385179E-16,5.855980283,0.,6.926399728E-16,5.802579655,0., 0001899P0004842 +6.73479766E-16,5.749179027,0.,1.539463259E-16,5.695778399,0., 0001899P0004843 +6.266375602E-16,5.642377771,0.,2.504306913E-16,5.588977143,0., 0001899P0004844 +4.064291597E-16,5.535576515,0.,4.05201823E-16,5.482175887,0., 0001899P0004845 +5.006723692E-16,5.428775259,0.,3.665771889E-16,5.375374631,0., 0001899P0004846 +3.055820715E-16,5.321974004,0.,1.817524287E-16,5.268573376,0., 0001899P0004847 +2.361608246E-16,5.215172748,0.,3.889165517E-16,5.16177212,0., 0001899P0004848 +3.591571143E-16,5.126171701,0.,2.723665224E-16,5.108371492,0., 0001899P0004849 +0.395982512,1.570796327,0.,0.,1.; 0001899P0004850 +110,2.723665224E-16,5.108371492,0.,1.,5.108371492,0.; 0001901P0004851 +126,24,3,0,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0001903P0004852 +4.765789608,4.819190236,4.872590864,4.925991492,4.97939212, 0001903P0004853 +5.032792748,5.086193376,5.139594004,5.192994632,5.24639526, 0001903P0004854 +5.299795888,5.353196516,5.406597144,5.459997772,5.5133984, 0001903P0004855 +5.566799027,5.620199655,5.673600283,5.727000911,5.780401539, 0001903P0004856 +5.833802167,5.887202795,5.887202795,5.887202795,5.887202795,1., 0001903P0004857 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001903P0004858 +1.,1.,1.,1.,5.108371492,0.,1.,5.126171701,0.,1.,5.16177212,0., 0001903P0004859 +1.,5.215172748,0.,1.,5.268573376,0.,1.,5.321974004,0.,1., 0001903P0004860 +5.375374631,0.,1.,5.428775259,0.,1.,5.482175887,0.,1., 0001903P0004861 +5.535576515,0.,1.,5.588977143,0.,1.,5.642377771,0.,1., 0001903P0004862 +5.695778399,0.,1.,5.749179027,0.,1.,5.802579655,0.,1., 0001903P0004863 +5.855980283,0.,1.,5.909380911,0.,1.,5.962781539,0.,1., 0001903P0004864 +6.016182167,0.,1.,6.069582795,0.,1.,6.122983423,0.,1., 0001903P0004865 +6.176384051,0.,1.,6.229784678,0.,1.,6.265385097,0.,1., 0001903P0004866 +6.283185307,0.,4.71238898,5.887202795,0.,0.,1.; 0001903P0004867 +102,4,1907,1909,1913,1915; 0001905P0004868 +110,-8.75984252E-03,-2.928539222E-02,1.116141811E-02, 0001907P0004869 +8.75984252E-03,-2.928539222E-02,1.116141811E-02; 0001907P0004870 +100,-1.525993215E-19,9.369384916E-19,-3.361453586E-19, 0001909P0004871 +1.271324071E-03,5.314968519E-04,6.317398485E-19,1.377952756E-03; 0001909P0004872 +124,-1.224646E-16,-2.719260372E-32,-1.,8.75984252E-03,-1., 0001911P0004873 +-2.220446049E-16,1.224646E-16,-2.801406815E-02,-2.220446049E-16, 0001911P0004874 +1.,-8.125204719E-49,1.062992126E-02; 0001911P0004875 +110,8.75984252E-03,-2.801406815E-02,1.200787402E-02, 0001913P0004876 +-8.75984252E-03,-2.801406815E-02,1.200787402E-02; 0001913P0004877 +100,1.525993215E-19,-1.286956516E-18,3.361453586E-19, 0001915P0004878 +-1.592155159E-18,-1.377952756E-03,1.271324071E-03, 0001915P0004879 +-5.314968518E-04; 0001915P0004880 +124,-1.224646E-16,2.719260372E-32,1.,-8.75984252E-03,-1., 0001917P0004881 +2.220446049E-16,-1.224646E-16,-2.801406815E-02,-2.220446049E-16, 0001917P0004882 +-1.,8.125204719E-49,1.062992126E-02; 0001917P0004883 +144,1921,1,0,1923; 0001919P0004884 +128,1,1,1,1,0,0,1,0,0,0.,0.,6.496383672E-02,6.496383672E-02, 0001921P0004885 +-0.445,-0.445,5.556257607E-50,5.556257607E-50,1.,1.,1.,1., 0001921P0004886 +8.75984252E-03,-2.801406815E-02,1.712598425E-02,8.75984252E-03, 0001921P0004887 +-2.545643679E-02,1.712598425E-02,-8.75984252E-03, 0001921P0004888 +-2.801406815E-02,1.712598425E-02,-8.75984252E-03, 0001921P0004889 +-2.545643679E-02,1.712598425E-02,0.,6.496383672E-02,-0.445, 0001921P0004890 +5.556257607E-50; 0001921P0004891 +142,0,1921,1925,1935,3; 0001923P0004892 +102,4,1927,1929,1931,1933; 0001925P0004893 +110,6.496383672E-02,-0.445,0.,6.496383672E-02,1.599997912E-11, 0001927P0004894 +0.; 0001927P0004895 +110,6.496383672E-02,5.556257607E-50,0.,1.760000479E-10, 0001929P0004896 +5.556257607E-50,0.; 0001929P0004897 +110,0.,5.556257607E-50,0.,0.,-0.445,0.; 0001931P0004898 +110,0.,-0.445,0.,6.496383654E-02,-0.445,0.; 0001933P0004899 +102,4,1937,1939,1941,1943; 0001935P0004900 +110,8.75984252E-03,-2.545643679E-02,1.712598425E-02, 0001937P0004901 +-8.75984252E-03,-2.545643679E-02,1.712598425E-02; 0001937P0004902 +110,-8.75984252E-03,-2.545643679E-02,1.712598425E-02, 0001939P0004903 +-8.75984252E-03,-2.801406815E-02,1.712598425E-02; 0001939P0004904 +110,-8.75984252E-03,-2.801406815E-02,1.712598425E-02, 0001941P0004905 +8.75984252E-03,-2.801406815E-02,1.712598425E-02; 0001941P0004906 +110,8.75984252E-03,-2.801406815E-02,1.712598425E-02, 0001943P0004907 +8.75984252E-03,-2.545643679E-02,1.712598425E-02; 0001943P0004908 +144,1947,1,0,1949; 0001945P0004909 +128,1,1,1,1,0,0,1,0,0,-1.084202172E-16,-1.084202172E-16,0.445, 0001947P0004910 +0.445,-5.421010862E-17,-5.421010862E-17,0.13,0.13,1.,1.,1.,1., 0001947P0004911 +2.875984252E-02,4.921259843E-02,5.118110236E-03,4.627952756E-02, 0001947P0004912 +4.921259843E-02,5.118110236E-03,2.875984252E-02,4.921259843E-02, 0001947P0004913 +5.463695987E-18,4.627952756E-02,4.921259843E-02,5.463695987E-18, 0001947P0004914 +-1.084202172E-16,0.445,-5.421010862E-17,0.13; 0001947P0004915 +142,0,1947,1951,1961,3; 0001949P0004916 +102,4,1953,1955,1957,1959; 0001951P0004917 +110,-1.084202172E-16,0.13,0.,-1.084202172E-16,6.000144825E-12, 0001953P0004918 +0.; 0001953P0004919 +110,-1.084202172E-16,-5.421010862E-17,0.,0.445,-5.421010862E-17, 0001955P0004920 +0.; 0001955P0004921 +110,0.445,-5.421010862E-17,0.,0.445,0.13,0.; 0001957P0004922 +110,0.445,0.13,0.,-1.599992361E-11,0.13,0.; 0001959P0004923 +102,4,1963,1965,1967,1969; 0001961P0004924 +110,2.875984252E-02,4.921259843E-02,6.010065586E-18, 0001963P0004925 +2.875984252E-02,4.921259843E-02,5.118110236E-03; 0001963P0004926 +110,2.875984252E-02,4.921259843E-02,5.118110236E-03, 0001965P0004927 +4.627952756E-02,4.921259843E-02,5.118110236E-03; 0001965P0004928 +110,4.627952756E-02,4.921259843E-02,5.118110236E-03, 0001967P0004929 +4.627952756E-02,4.921259843E-02,9.834652777E-18; 0001967P0004930 +110,4.627952756E-02,4.921259843E-02,1.082494767E-17, 0001969P0004931 +2.875984252E-02,4.921259843E-02,6.556435185E-18; 0001969P0004932 +144,1973,1,0,1979; 0001971P0004933 +120,1975,1977,5.108371493,6.283185308; 0001973P0004934 +110,3.937007874E-02,-3.827671846E-02,6.496062992E-03, 0001975P0004935 +-1.574812022E-13,-3.827671846E-02,6.496062992E-03; 0001975P0004936 +110,-8.75984252E-03,-3.827671846E-02,2.136611369E-19, 0001977P0004937 +8.75984252E-03,-3.827671846E-02,2.136611369E-19; 0001977P0004938 +142,0,1973,1981,1991,3; 0001979P0004939 +102,4,1983,1985,1987,1989; 0001981P0004940 +126,24,3,0,0,1,0,-1.924651852E-27,-1.924651852E-27, 0001983P0004941 +-1.924651852E-27,-1.924651852E-27,2.022727273E-02, 0001983P0004942 +4.045454546E-02,6.068181818E-02,8.090909091E-02,0.101136364, 0001983P0004943 +0.121363636,0.141590909,0.161818182,0.182045455,0.202272727, 0001983P0004944 +0.2225,0.242727273,0.262954545,0.283181818,0.303409091, 0001983P0004945 +0.323636364,0.343863636,0.364090909,0.384318182,0.404545455, 0001983P0004946 +0.424772727,0.445,0.445,0.445,0.445,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001983P0004947 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.283185307, 0001983P0004948 +0.,0.984848485,6.283185307,0.,0.954545455,6.283185307,0., 0001983P0004949 +0.909090909,6.283185307,0.,0.863636364,6.283185307,0., 0001983P0004950 +0.818181818,6.283185307,0.,0.772727273,6.283185307,0., 0001983P0004951 +0.727272727,6.283185307,0.,0.681818182,6.283185307,0., 0001983P0004952 +0.636363636,6.283185307,0.,0.590909091,6.283185307,0., 0001983P0004953 +0.545454545,6.283185307,0.,0.5,6.283185307,0.,0.454545455, 0001983P0004954 +6.283185307,0.,0.409090909,6.283185307,0.,0.363636364, 0001983P0004955 +6.283185307,0.,0.318181818,6.283185307,0.,0.272727273, 0001983P0004956 +6.283185307,0.,0.227272727,6.283185307,0.,0.181818182, 0001983P0004957 +6.283185307,0.,0.136363636,6.283185307,0.,9.090909091E-02, 0001983P0004958 +6.283185307,0.,4.545454545E-02,6.283185307,0.,1.515151515E-02, 0001983P0004959 +6.283185307,0.,5.919613521E-16,6.283185307,0.,-1.924651852E-27, 0001983P0004960 +0.445,0.,0.,1.; 0001983P0004961 +126,24,3,0,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0001985P0004962 +4.765789608,4.819190236,4.872590864,4.925991492,4.97939212, 0001985P0004963 +5.032792748,5.086193376,5.139594004,5.192994632,5.246395259, 0001985P0004964 +5.299795887,5.353196515,5.406597143,5.459997771,5.513398399, 0001985P0004965 +5.566799027,5.620199655,5.673600283,5.727000911,5.780401538, 0001985P0004966 +5.833802166,5.887202794,5.887202794,5.887202794,5.887202794,1., 0001985P0004967 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001985P0004968 +1.,1.,1.,5.919613521E-16,6.283185307,0.,8.101009293E-16, 0001985P0004969 +6.265385098,0.,8.540366792E-16,6.229784679,0.,3.425129698E-16, 0001985P0004970 +6.176384052,0.,6.981014495E-16,6.122983424,0.,4.080633883E-16, 0001985P0004971 +6.069582796,0.,3.364893808E-16,6.016182168,0.,4.109181796E-16, 0001985P0004972 +5.96278154,0.,4.313366598E-16,5.909380912,0.,1.475611279E-16, 0001985P0004973 +5.855980284,0.,3.861070028E-16,5.802579656,0.,-3.774129709E-17, 0001985P0004974 +5.749179028,0.,5.429682551E-16,5.6957784,0.,3.874679352E-16, 0001985P0004975 +5.642377772,0.,3.010868503E-16,5.588977145,0.,3.002062173E-16, 0001985P0004976 +5.535576517,0.,2.62437022E-16,5.482175889,0.,2.867216238E-16, 0001985P0004977 +5.428775261,0.,9.967959972E-17,5.375374633,0.,3.216578017E-16, 0001985P0004978 +5.321974005,0.,2.415791659E-16,5.268573377,0.,2.122426952E-16, 0001985P0004979 +5.215172749,0.,2.819944016E-16,5.161772121,0.,2.799206102E-16, 0001985P0004980 +5.126171703,0.,2.485718673E-16,5.108371493,0.,4.71238898, 0001985P0004981 +5.887202794,0.,0.,1.; 0001985P0004982 +110,1.238277071E-16,5.108371493,0.,1.,5.108371493,0.; 0001987P0004983 +126,24,3,0,0,1,0,0.395982513,0.395982513,0.395982513, 0001989P0004984 +0.395982513,0.449383141,0.502783769,0.556184397,0.609585024, 0001989P0004985 +0.662985652,0.71638628,0.769786908,0.823187536,0.876588164, 0001989P0004986 +0.929988792,0.98338942,1.036790048,1.090190676,1.143591304, 0001989P0004987 +1.196991931,1.250392559,1.303793187,1.357193815,1.410594443, 0001989P0004988 +1.463995071,1.517395699,1.570796327,1.570796327,1.570796327, 0001989P0004989 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001989P0004990 +1.,1.,1.,1.,1.,1.,1.,1.,1.,5.108371493,0.,1.,5.126171703,0.,1., 0001989P0004991 +5.161772121,0.,1.,5.215172749,0.,1.,5.268573377,0.,1., 0001989P0004992 +5.321974005,0.,1.,5.375374633,0.,1.,5.428775261,0.,1., 0001989P0004993 +5.482175889,0.,1.,5.535576517,0.,1.,5.588977145,0.,1., 0001989P0004994 +5.642377772,0.,1.,5.6957784,0.,1.,5.749179028,0.,1.,5.802579656, 0001989P0004995 +0.,1.,5.855980284,0.,1.,5.909380912,0.,1.,5.96278154,0.,1., 0001989P0004996 +6.016182168,0.,1.,6.069582796,0.,1.,6.122983424,0.,1., 0001989P0004997 +6.176384052,0.,1.,6.229784679,0.,1.,6.265385098,0.,1., 0001989P0004998 +6.283185307,0.,0.395982513,1.570796327,0.,0.,1.; 0001989P0004999 +102,4,1993,1995,1999,2001; 0001991P0005000 +110,8.75984252E-03,-3.827671846E-02,-1.966930555E-17, 0001993P0005001 +-8.75984252E-03,-3.827671846E-02,-1.540079306E-17; 0001993P0005002 +100,3.164034883E-19,3.692263304E-19,-2.427716479E-19, 0001995P0005003 +-1.073530891E-18,-6.496062992E-03,5.993384905E-03, 0001995P0005004 +-2.505628021E-03; 0001995P0005005 +124,1.224646E-16,-2.719260372E-32,1.,-8.75984252E-03,1., 0001997P0005006 +-2.220446049E-16,-1.224646E-16,-3.827671846E-02,2.220446049E-16, 0001997P0005007 +1.,8.125204719E-49,6.496062992E-03; 0001997P0005008 +110,-8.75984252E-03,-3.228333355E-02,3.990434971E-03, 0001999P0005009 +8.75984252E-03,-3.228333355E-02,3.990434971E-03; 0001999P0005010 +100,-3.164034883E-19,-1.854668677E-18,2.427716479E-19, 0002001P0005011 +5.993384906E-03,2.505628021E-03,-3.297425899E-18, 0002001P0005012 +6.496062993E-03; 0002001P0005013 +124,1.224646E-16,2.719260372E-32,-1.,8.75984252E-03,1., 0002003P0005014 +2.220446049E-16,1.224646E-16,-3.827671846E-02,2.220446049E-16, 0002003P0005015 +-1.,-8.125204719E-49,6.496062992E-03; 0002003P0005016 +144,2007,1,0,2009; 0002005P0005017 +128,1,1,1,1,0,0,1,0,0,-0.197419695,-0.197419695,4.282295175E-17, 0002007P0005018 +4.282295175E-17,-3.081487911E-33,-3.081487911E-33,0.445,0.445, 0002007P0005019 +1.,1.,1.,1.,8.75984252E-03,-2.928539222E-02,1.116141811E-02, 0002007P0005020 +8.75984252E-03,-3.228333355E-02,3.990434971E-03,-8.75984252E-03, 0002007P0005021 +-2.928539222E-02,1.116141811E-02,-8.75984252E-03, 0002007P0005022 +-3.228333355E-02,3.990434971E-03,-0.197419695,4.282295175E-17, 0002007P0005023 +-3.081487911E-33,0.445; 0002007P0005024 +142,0,2007,2011,2021,3; 0002009P0005025 +102,4,2013,2015,2017,2019; 0002011P0005026 +110,4.282295175E-17,-3.081487911E-33,0.,4.282295175E-17,0.445, 0002013P0005027 +0.; 0002013P0005028 +110,4.282295175E-17,0.445,0.,-0.197419695,0.445,0.; 0002015P0005029 +110,-0.197419695,0.445,0.,-0.197419695,-1.599997912E-11,0.; 0002017P0005030 +110,-0.197419695,-3.081487911E-33,0.,-2.984744396E-10, 0002019P0005031 +-3.081487911E-33,0.; 0002019P0005032 +102,4,2023,2025,2027,2029; 0002021P0005033 +110,8.75984252E-03,-3.228333355E-02,3.990434971E-03, 0002023P0005034 +-8.75984252E-03,-3.228333355E-02,3.990434971E-03; 0002023P0005035 +110,-8.75984252E-03,-3.228333355E-02,3.990434971E-03, 0002025P0005036 +-8.75984252E-03,-2.928539222E-02,1.116141811E-02; 0002025P0005037 +110,-8.75984252E-03,-2.928539222E-02,1.116141811E-02, 0002027P0005038 +8.75984252E-03,-2.928539222E-02,1.116141811E-02; 0002027P0005039 +110,8.75984252E-03,-2.928539222E-02,1.116141811E-02, 0002029P0005040 +8.75984252E-03,-3.228333355E-02,3.990434971E-03; 0002029P0005041 +144,2033,1,0,2039; 0002031P0005042 +120,2035,2037,5.108371493,6.283185309; 0002033P0005043 +110,-3.937007874E-02,-2.801406815E-02,1.062992126E-02, 0002035P0005044 +1.574812022E-13,-2.801406815E-02,1.062992126E-02; 0002035P0005045 +110,8.75984252E-03,-3.400745305E-02,1.313554928E-02, 0002037P0005046 +-8.75984252E-03,-3.400745305E-02,1.313554928E-02; 0002037P0005047 +142,0,2033,2041,2051,3; 0002039P0005048 +102,4,2043,2045,2047,2049; 0002041P0005049 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.022727273E-02,4.045454546E-02, 0002043P0005050 +6.068181818E-02,8.090909091E-02,0.101136364,0.121363636, 0002043P0005051 +0.141590909,0.161818182,0.182045455,0.202272727,0.2225, 0002043P0005052 +0.242727273,0.262954545,0.283181818,0.303409091,0.323636364, 0002043P0005053 +0.343863636,0.364090909,0.384318182,0.404545455,0.424772727, 0002043P0005054 +0.445,0.445,0.445,0.445,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002043P0005055 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.283185307,0., 0002043P0005056 +0.984848485,6.283185308,0.,0.954545455,6.283185308,0., 0002043P0005057 +0.909090909,6.283185308,0.,0.863636364,6.283185308,0., 0002043P0005058 +0.818181818,6.283185308,0.,0.772727273,6.283185308,0., 0002043P0005059 +0.727272727,6.283185308,0.,0.681818182,6.283185308,0., 0002043P0005060 +0.636363636,6.283185308,0.,0.590909091,6.283185308,0., 0002043P0005061 +0.545454545,6.283185308,0.,0.5,6.283185308,0.,0.454545455, 0002043P0005062 +6.283185308,0.,0.409090909,6.283185308,0.,0.363636364, 0002043P0005063 +6.283185308,0.,0.318181818,6.283185308,0.,0.272727273, 0002043P0005064 +6.283185308,0.,0.227272727,6.283185308,0.,0.181818182, 0002043P0005065 +6.283185308,0.,0.136363636,6.283185308,0.,9.090909091E-02, 0002043P0005066 +6.283185308,0.,4.545454545E-02,6.283185308,0.,1.515151515E-02, 0002043P0005067 +6.283185308,0.,6.633285485E-16,6.283185307,0.,0.,0.445,0.,0.,1.; 0002043P0005068 +126,24,3,0,0,1,0,0.395982513,0.395982513,0.395982513, 0002045P0005069 +0.395982513,0.449383141,0.502783769,0.556184397,0.609585024, 0002045P0005070 +0.662985652,0.71638628,0.769786908,0.823187536,0.876588164, 0002045P0005071 +0.929988792,0.98338942,1.036790048,1.090190676,1.143591304, 0002045P0005072 +1.196991931,1.250392559,1.303793187,1.357193815,1.410594443, 0002045P0005073 +1.463995071,1.517395699,1.570796327,1.570796327,1.570796327, 0002045P0005074 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002045P0005075 +1.,1.,1.,1.,1.,1.,1.,1.,7.257006285E-16,6.283185307,0., 0002045P0005076 +7.255379257E-16,6.265385098,0.,7.166005952E-16,6.22978468,0., 0002045P0005077 +6.301219881E-16,6.176384052,0.,8.617696003E-16,6.122983424,0., 0002045P0005078 +2.682174264E-16,6.069582796,0.,4.119432967E-16,6.016182168,0., 0002045P0005079 +6.771516573E-16,5.96278154,0.,9.338449252E-17,5.909380912,0., 0002045P0005080 +9.128745383E-16,5.855980284,0.,3.36403589E-16,5.802579656,0., 0002045P0005081 +1.981946074E-16,5.749179029,0.,8.255961905E-16,5.695778401,0., 0002045P0005082 +1.976884285E-16,5.642377773,0.,4.573151603E-16,5.588977145,0., 0002045P0005083 +2.932756633E-16,5.535576517,0.,5.621341072E-16,5.482175889,0., 0002045P0005084 +2.715319765E-16,5.428775261,0.,2.889442828E-16,5.375374633,0., 0002045P0005085 +3.822243762E-16,5.321974005,0.,2.382513643E-16,5.268573377,0., 0002045P0005086 +2.18958026E-16,5.215172749,0.,3.124315787E-16,5.161772122,0., 0002045P0005087 +2.404041089E-16,5.126171703,0.,1.328228237E-16,5.108371494,0., 0002045P0005088 +0.395982513,1.570796327,0.,0.,1.; 0002045P0005089 +110,1.951949037E-16,5.108371494,0.,1.,5.108371494,0.; 0002047P0005090 +126,24,3,0,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0002049P0005091 +4.765789608,4.819190236,4.872590864,4.925991492,4.97939212, 0002049P0005092 +5.032792748,5.086193376,5.139594004,5.192994632,5.246395259, 0002049P0005093 +5.299795887,5.353196515,5.406597143,5.459997771,5.513398399, 0002049P0005094 +5.566799027,5.620199655,5.673600283,5.727000911,5.780401539, 0002049P0005095 +5.833802166,5.887202794,5.887202794,5.887202794,5.887202794,1., 0002049P0005096 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002049P0005097 +1.,1.,1.,1.,5.108371494,0.,1.,5.126171703,0.,1.,5.161772122,0., 0002049P0005098 +1.,5.215172749,0.,1.,5.268573377,0.,1.,5.321974005,0.,1., 0002049P0005099 +5.375374633,0.,1.,5.428775261,0.,1.,5.482175889,0.,1., 0002049P0005100 +5.535576517,0.,1.,5.588977145,0.,1.,5.642377773,0.,1., 0002049P0005101 +5.695778401,0.,1.,5.749179029,0.,1.,5.802579656,0.,1., 0002049P0005102 +5.855980284,0.,1.,5.909380912,0.,1.,5.96278154,0.,1., 0002049P0005103 +6.016182168,0.,1.,6.069582796,0.,1.,6.122983424,0.,1., 0002049P0005104 +6.176384052,0.,1.,6.22978468,0.,1.,6.265385098,0.,1., 0002049P0005105 +6.283185307,0.,4.71238898,5.887202794,0.,0.,1.; 0002049P0005106 +102,4,2053,2055,2059,2061; 0002051P0005107 +110,-8.75984252E-03,-3.400745306E-02,1.313554928E-02, 0002053P0005108 +8.75984252E-03,-3.400745306E-02,1.313554928E-02; 0002053P0005109 +100,-1.525993215E-19,9.369384916E-19,-3.361453586E-19, 0002055P0005110 +5.993384906E-03,2.50562802E-03,-5.058187301E-19,6.496062993E-03; 0002055P0005111 +124,-1.224646E-16,-2.719260372E-32,-1.,8.75984252E-03,-1., 0002057P0005112 +-2.220446049E-16,1.224646E-16,-2.801406815E-02,-2.220446049E-16, 0002057P0005113 +1.,-8.125204719E-49,1.062992126E-02; 0002057P0005114 +110,8.75984252E-03,-2.801406815E-02,1.712598425E-02, 0002059P0005115 +-8.75984252E-03,-2.801406815E-02,1.712598425E-02; 0002059P0005116 +100,1.525993215E-19,-1.286956516E-18,3.361453586E-19, 0002061P0005117 +-2.729713737E-18,-6.496062992E-03,5.993384905E-03, 0002061P0005118 +-2.50562802E-03; 0002061P0005119 +124,-1.224646E-16,2.719260372E-32,1.,-8.75984252E-03,-1., 0002063P0005120 +2.220446049E-16,-1.224646E-16,-2.801406815E-02,-2.220446049E-16, 0002063P0005121 +-1.,8.125204719E-49,1.062992126E-02; 0002063P0005122 +144,2067,1,0,2073; 0002065P0005123 +120,2069,2071,5.108371493,6.283185307; 0002067P0005124 +110,3.937007874E-02,-3.827671846E-02,6.496062992E-03, 0002069P0005125 +-1.574812022E-13,-3.827671846E-02,6.496062992E-03; 0002069P0005126 +110,-8.75984252E-03,-3.827671846E-02,5.118110236E-03, 0002071P0005127 +8.75984252E-03,-3.827671846E-02,5.118110236E-03; 0002071P0005128 +142,0,2067,2075,2085,3; 0002073P0005129 +102,4,2077,2079,2081,2083; 0002075P0005130 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.022727273E-02,4.045454546E-02, 0002077P0005131 +6.068181818E-02,8.090909091E-02,0.101136364,0.121363636, 0002077P0005132 +0.141590909,0.161818182,0.182045455,0.202272727,0.2225, 0002077P0005133 +0.242727273,0.262954545,0.283181818,0.303409091,0.323636364, 0002077P0005134 +0.343863636,0.364090909,0.384318182,0.404545455,0.424772727, 0002077P0005135 +0.445,0.445,0.445,0.445,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002077P0005136 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.283185307,0., 0002077P0005137 +0.984848485,6.283185307,0.,0.954545455,6.283185307,0., 0002077P0005138 +0.909090909,6.283185307,0.,0.863636364,6.283185307,0., 0002077P0005139 +0.818181818,6.283185307,0.,0.772727273,6.283185307,0., 0002077P0005140 +0.727272727,6.283185307,0.,0.681818182,6.283185307,0., 0002077P0005141 +0.636363636,6.283185307,0.,0.590909091,6.283185307,0., 0002077P0005142 +0.545454545,6.283185307,0.,0.5,6.283185307,0.,0.454545455, 0002077P0005143 +6.283185307,0.,0.409090909,6.283185307,0.,0.363636364, 0002077P0005144 +6.283185307,0.,0.318181818,6.283185307,0.,0.272727273, 0002077P0005145 +6.283185307,0.,0.227272727,6.283185307,0.,0.181818182, 0002077P0005146 +6.283185307,0.,0.136363636,6.283185307,0.,9.090909091E-02, 0002077P0005147 +6.283185307,0.,4.545454545E-02,6.283185307,0.,1.515151515E-02, 0002077P0005148 +6.283185307,0.,8.251021048E-16,6.283185307,0.,0.,0.445,0.,0.,1.; 0002077P0005149 +126,24,3,0,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0002079P0005150 +4.765789608,4.819190236,4.872590864,4.925991492,4.97939212, 0002079P0005151 +5.032792748,5.086193376,5.139594004,5.192994631,5.246395259, 0002079P0005152 +5.299795887,5.353196515,5.406597143,5.459997771,5.513398399, 0002079P0005153 +5.566799027,5.620199655,5.673600283,5.72700091,5.780401538, 0002079P0005154 +5.833802166,5.887202794,5.887202794,5.887202794,5.887202794,1., 0002079P0005155 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002079P0005156 +1.,1.,1.,8.251021048E-16,6.283185307,0.,7.140557041E-16, 0002079P0005157 +6.265385098,0.,5.913738356E-16,6.229784679,0.,5.593503958E-16, 0002079P0005158 +6.176384052,0.,1.118026626E-15,6.122983424,0.,6.588347343E-16, 0002079P0005159 +6.069582796,0.,1.060788298E-15,6.016182168,0.,5.329580839E-16, 0002079P0005160 +5.96278154,0.,2.434901622E-16,5.909380912,0.,1.05305429E-15, 0002079P0005161 +5.855980284,0.,5.962202494E-16,5.802579656,0.,7.378545117E-16, 0002079P0005162 +5.749179028,0.,8.747111711E-16,5.6957784,0.,4.322099391E-16, 0002079P0005163 +5.642377773,0.,4.407554746E-16,5.588977145,0.,7.214017524E-16, 0002079P0005164 +5.535576517,0.,5.852957343E-16,5.482175889,0.,7.214007168E-16, 0002079P0005165 +5.428775261,0.,1.854139925E-16,5.375374633,0.,5.686531743E-16, 0002079P0005166 +5.321974005,0.,1.924753195E-16,5.268573377,0.,4.378097841E-16, 0002079P0005167 +5.215172749,0.,4.534419288E-16,5.161772122,0.,4.125730119E-16, 0002079P0005168 +5.126171703,0.,3.5696846E-16,5.108371494,0.,4.71238898, 0002079P0005169 +5.887202794,0.,0.,1.; 0002079P0005170 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.022727273E-02,4.045454546E-02, 0002081P0005171 +6.068181818E-02,8.090909091E-02,0.101136364,0.121363636, 0002081P0005172 +0.141590909,0.161818182,0.182045455,0.202272727,0.2225, 0002081P0005173 +0.242727273,0.262954545,0.283181818,0.303409091,0.323636364, 0002081P0005174 +0.343863636,0.364090909,0.384318182,0.404545455,0.424772727, 0002081P0005175 +0.445,0.445,0.445,0.445,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002081P0005176 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,3.569684601E-16,5.108371494, 0002081P0005177 +0.,1.515151515E-02,5.108371494,0.,4.545454545E-02,5.108371494, 0002081P0005178 +0.,9.090909091E-02,5.108371494,0.,0.136363636,5.108371494,0., 0002081P0005179 +0.181818182,5.108371494,0.,0.227272727,5.108371494,0., 0002081P0005180 +0.272727273,5.108371494,0.,0.318181818,5.108371494,0., 0002081P0005181 +0.363636364,5.108371494,0.,0.409090909,5.108371494,0., 0002081P0005182 +0.454545455,5.108371494,0.,0.5,5.108371494,0.,0.545454545, 0002081P0005183 +5.108371494,0.,0.590909091,5.108371494,0.,0.636363636, 0002081P0005184 +5.108371494,0.,0.681818182,5.108371494,0.,0.727272727, 0002081P0005185 +5.108371494,0.,0.772727273,5.108371494,0.,0.818181818, 0002081P0005186 +5.108371494,0.,0.863636364,5.108371494,0.,0.909090909, 0002081P0005187 +5.108371494,0.,0.954545455,5.108371494,0.,0.984848485, 0002081P0005188 +5.108371494,0.,1.,5.108371494,0.,0.,0.445,0.,0.,1.; 0002081P0005189 +126,24,3,0,0,1,0,0.395982513,0.395982513,0.395982513, 0002083P0005190 +0.395982513,0.449383141,0.502783769,0.556184397,0.609585025, 0002083P0005191 +0.662985653,0.71638628,0.769786908,0.823187536,0.876588164, 0002083P0005192 +0.929988792,0.98338942,1.036790048,1.090190676,1.143591304, 0002083P0005193 +1.196991932,1.250392559,1.303793187,1.357193815,1.410594443, 0002083P0005194 +1.463995071,1.517395699,1.570796327,1.570796327,1.570796327, 0002083P0005195 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002083P0005196 +1.,1.,1.,1.,1.,1.,1.,1.,1.,5.108371494,0.,1.,5.126171703,0.,1., 0002083P0005197 +5.161772122,0.,1.,5.215172749,0.,1.,5.268573377,0.,1., 0002083P0005198 +5.321974005,0.,1.,5.375374633,0.,1.,5.428775261,0.,1., 0002083P0005199 +5.482175889,0.,1.,5.535576517,0.,1.,5.588977145,0.,1., 0002083P0005200 +5.642377773,0.,1.,5.6957784,0.,1.,5.749179028,0.,1.,5.802579656, 0002083P0005201 +0.,1.,5.855980284,0.,1.,5.909380912,0.,1.,5.96278154,0.,1., 0002083P0005202 +6.016182168,0.,1.,6.069582796,0.,1.,6.122983424,0.,1., 0002083P0005203 +6.176384052,0.,1.,6.229784679,0.,1.,6.265385098,0.,1., 0002083P0005204 +6.283185307,0.,0.395982513,1.570796327,0.,0.,1.; 0002083P0005205 +102,4,2087,2089,2093,2095; 0002085P0005206 +110,8.75984252E-03,-3.827671846E-02,5.118110236E-03, 0002087P0005207 +-8.75984252E-03,-3.827671846E-02,5.118110236E-03; 0002087P0005208 +100,3.164034883E-19,3.692263304E-19,-2.427716479E-19, 0002089P0005209 +6.189343111E-20,-1.377952756E-03,1.271324071E-03, 0002089P0005210 +-5.314968531E-04; 0002089P0005211 +124,1.224646E-16,-2.719260372E-32,1.,-8.75984252E-03,1., 0002091P0005212 +-2.220446049E-16,-1.224646E-16,-3.827671846E-02,2.220446049E-16, 0002091P0005213 +1.,8.125204719E-49,6.496062992E-03; 0002091P0005214 +110,-8.75984252E-03,-3.700539439E-02,5.964566139E-03, 0002093P0005215 +8.75984252E-03,-3.700539439E-02,5.964566139E-03; 0002093P0005216 +100,-3.164034883E-19,-1.854668677E-18,2.427716479E-19, 0002095P0005217 +1.271324071E-03,5.314968532E-04,-2.162001576E-18, 0002095P0005218 +1.377952756E-03; 0002095P0005219 +124,1.224646E-16,2.719260372E-32,-1.,8.75984252E-03,1., 0002097P0005220 +2.220446049E-16,1.224646E-16,-3.827671846E-02,2.220446049E-16, 0002097P0005221 +-1.,-8.125204719E-49,6.496062992E-03; 0002097P0005222 +144,2101,1,0,2103; 0002099P0005223 +128,1,1,1,1,0,0,1,0,0,-0.130426136,-0.130426136,0.30542393, 0002101P0005224 +0.30542393,-0.253829104,-0.253829104,0.325635154,0.325635154,1., 0002101P0005225 +1.,1.,1.,8.75984252E-03,-4.826999025E-02,-1.677702753E-05, 0002101P0005226 +8.75984252E-03,-4.826999025E-02,1.714267442E-02,8.75984252E-03, 0002101P0005227 +-2.545643679E-02,-1.677702753E-05,8.75984252E-03, 0002101P0005228 +-2.545643679E-02,1.714267442E-02,-0.130423941,0.30542393, 0002101P0005229 +-0.253829104,0.325635154; 0002101P0005230 +142,0,2101,2105,2133,3; 0002103P0005231 +102,13,2107,2109,2111,2113,2115,2117,2119,2121,2123,2125,2127, 0002105P0005232 +2129,2131; 0002105P0005233 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600103E-03,5.917200207E-03, 0002107P0005234 +8.87580031E-03,1.183440041E-02,1.479300052E-02,1.775160062E-02, 0002107P0005235 +2.071020072E-02,2.366880083E-02,2.662740093E-02,2.958600103E-02, 0002107P0005236 +3.254460114E-02,3.550320124E-02,3.846180135E-02,4.142040145E-02, 0002107P0005237 +4.437900155E-02,4.733760166E-02,5.029620176E-02,5.325480186E-02, 0002107P0005238 +5.621340197E-02,5.917200207E-02,6.213060217E-02,6.508920228E-02, 0002107P0005239 +6.508920228E-02,6.508920228E-02,6.508920228E-02,1.,1.,1.,1.,1., 0002107P0005240 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002107P0005241 +0.24,0.322228648,0.,0.239015151,0.322280262,0.,0.237045454, 0002107P0005242 +0.32238349,0.,0.234090909,0.322538331,0.,0.231136363, 0002107P0005243 +0.322693172,0.,0.228181818,0.322848013,0.,0.225227273, 0002107P0005244 +0.323002854,0.,0.222272727,0.323157695,0.,0.219318182, 0002107P0005245 +0.323312537,0.,0.216363636,0.323467378,0.,0.213409091, 0002107P0005246 +0.323622219,0.,0.210454545,0.32377706,0.,0.2075,0.323931901,0., 0002107P0005247 +0.204545454,0.324086742,0.,0.201590909,0.324241584,0., 0002107P0005248 +0.198636364,0.324396425,0.,0.195681818,0.324551266,0., 0002107P0005249 +0.192727273,0.324706107,0.,0.189772727,0.324860948,0., 0002107P0005250 +0.186818182,0.325015789,0.,0.183863636,0.325170631,0., 0002107P0005251 +0.180909091,0.325325472,0.,0.177954546,0.325480313,0., 0002107P0005252 +0.175984849,0.32558354,0.,0.175,0.325635154,0.,0., 0002107P0005253 +6.508920228E-02,0.,0.,1.; 0002107P0005254 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.952901661E-03,5.905803322E-03, 0002109P0005255 +8.858704983E-03,1.181160664E-02,1.476450831E-02,1.771740997E-02, 0002109P0005256 +2.067031163E-02,2.362321329E-02,2.657611495E-02,2.952901661E-02, 0002109P0005257 +3.248191827E-02,3.543481993E-02,3.838772159E-02,4.134062326E-02, 0002109P0005258 +4.429352492E-02,4.724642658E-02,5.019932824E-02,5.31522299E-02, 0002109P0005259 +5.610513156E-02,5.905803322E-02,6.201093488E-02,6.496383654E-02, 0002109P0005260 +6.496383654E-02,6.496383654E-02,6.496383654E-02,1.,1.,1.,1.,1., 0002109P0005261 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002109P0005262 +0.175,0.325635154,0.,0.175,0.324650853,0.,0.175,0.322682252,0., 0002109P0005263 +0.175,0.319729351,0.,0.175,0.316776449,0.,0.175,0.313823547,0., 0002109P0005264 +0.175,0.310870646,0.,0.175,0.307917744,0.,0.175,0.304964842,0., 0002109P0005265 +0.175,0.302011941,0.,0.175,0.299059039,0.,0.175,0.296106137,0., 0002109P0005266 +0.175,0.293153236,0.,0.175,0.290200334,0.,0.175,0.287247432,0., 0002109P0005267 +0.175,0.284294531,0.,0.175,0.281341629,0.,0.175,0.278388727,0., 0002109P0005268 +0.175,0.275435826,0.,0.175,0.272482924,0.,0.175,0.269530022,0., 0002109P0005269 +0.175,0.266577121,0.,0.175,0.263624219,0.,0.175,0.261655618,0., 0002109P0005270 +0.175,0.260671317,0.,0.,6.496383654E-02,0.,0.,1.; 0002109P0005271 +126,24,3,1,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0002111P0005272 +4.765789608,4.819190236,4.872590864,4.925991492,4.97939212, 0002111P0005273 +5.032792748,5.086193376,5.139594004,5.192994632,5.24639526, 0002111P0005274 +5.299795888,5.353196516,5.406597144,5.459997772,5.5133984, 0002111P0005275 +5.566799027,5.620199655,5.673600283,5.727000911,5.780401539, 0002111P0005276 +5.833802167,5.887202795,5.887202795,5.887202795,5.887202795,1., 0002111P0005277 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002111P0005278 +1.,1.,1.,0.175,0.260671317,0.,0.175000024,0.260048309,0., 0002111P0005279 +0.174966712,0.258802296,0.,0.174817122,0.256938602,0., 0002111P0005280 +0.174568253,0.255085551,0.,0.174220836,0.253248424,0., 0002111P0005281 +0.173775856,0.251432459,0.,0.173234583,0.249642834,0., 0002111P0005282 +0.17259856,0.247884651,0.,0.1718696,0.246162921,0.,0.171049781, 0002111P0005283 +0.244482555,0.,0.170141441,0.242848341,0.,0.16914717, 0002111P0005284 +0.241264941,0.,0.168069801,0.239736866,0.,0.166912407, 0002111P0005285 +0.238268475,0.,0.165678286,0.236863953,0.,0.164370958, 0002111P0005286 +0.235527305,0.,0.16299415,0.234262341,0.,0.161551787, 0002111P0005287 +0.233072668,0.,0.160047981,0.231961677,0.,0.158487018, 0002111P0005288 +0.230932537,0.,0.156873352,0.229988176,0.,0.155211573, 0002111P0005289 +0.229131307,0.,0.154074828,0.228619968,0.,0.15350002, 0002111P0005290 +0.228379686,0.,4.71238898,5.887202795,-0.,-0.,1.; 0002111P0005291 +126,24,3,0,0,1,0,-2.98940253E-11,-2.98940253E-11, 0002113P0005292 +-2.98940253E-11,-2.98940253E-11,8.973622461E-03,1.794724495E-02, 0002113P0005293 +2.692086744E-02,3.589448993E-02,4.486811243E-02,5.384173492E-02, 0002113P0005294 +6.281535741E-02,7.17889799E-02,8.076260239E-02,8.973622488E-02, 0002113P0005295 +9.870984737E-02,0.10768347,0.116657092,0.125630715,0.134604337, 0002113P0005296 +0.14357796,0.152551582,0.161525205,0.170498827,0.17947245, 0002113P0005297 +0.188446072,0.197419695,0.197419695,0.197419695,0.197419695,1., 0002113P0005298 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002113P0005299 +1.,1.,1.,0.15350002,0.228379686,0.,0.150740278,0.227225933,0., 0002113P0005300 +0.145220794,0.224918427,0.,0.136941568,0.221457167,0., 0002113P0005301 +0.128662342,0.217995907,0.,0.120383116,0.214534648,0., 0002113P0005302 +0.11210389,0.211073388,0.,0.103824664,0.207612129,0., 0002113P0005303 +9.554543818E-02,0.204150869,0.,8.72662122E-02,0.20068961,0., 0002113P0005304 +7.898698622E-02,0.19722835,0.,7.070776025E-02,0.193767091,0., 0002113P0005305 +6.242853427E-02,0.190305831,0.,5.414930829E-02,0.186844572,0., 0002113P0005306 +4.587008231E-02,0.183383312,0.,3.759085634E-02,0.179922053,0., 0002113P0005307 +2.931163036E-02,0.176460793,0.,2.103240438E-02,0.172999533,0., 0002113P0005308 +1.27531784E-02,0.169538274,0.,4.473952427E-03,0.166077014,0., 0002113P0005309 +-3.805273551E-03,0.162615755,0.,-1.208449953E-02,0.159154495,0., 0002113P0005310 +-2.036372551E-02,0.155693236,0.,-2.588320949E-02,0.153385729,0., 0002113P0005311 +-2.864295148E-02,0.152231976,0.,-2.98940253E-11,0.197419695,0., 0002113P0005312 +0.,1.; 0002113P0005313 +126,24,3,1,0,1,0,0.395982513,0.395982513,0.395982513, 0002115P0005314 +0.395982513,0.449383141,0.502783769,0.556184397,0.609585025, 0002115P0005315 +0.662985653,0.71638628,0.769786908,0.823187536,0.876588164, 0002115P0005316 +0.929988792,0.98338942,1.036790048,1.090190676,1.143591304, 0002115P0005317 +1.196991932,1.250392559,1.303793187,1.357193815,1.410594443, 0002115P0005318 +1.463995071,1.517395699,1.570796327,1.570796327,1.570796327, 0002115P0005319 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002115P0005320 +1.,1.,1.,1.,1.,1.,1.,1.,-2.864295144E-02,0.152231976,0., 0002115P0005321 +-3.135276211E-02,0.151099218,0.,-3.671170141E-02,0.148688619,0., 0002115P0005322 +-4.454580239E-02,0.144649095,0.,-5.21530852E-02,0.140197108,0., 0002115P0005323 +-5.951190891E-02,0.135345447,0.,-6.660128128E-02,0.130107917,0., 0002115P0005324 +-7.340099424E-02,0.124499458,0.,-7.989166125E-02,0.118536057,0., 0002115P0005325 +-8.605477799E-02,0.112234715,0.,-9.187277367E-02,0.105613398,0., 0002115P0005326 +-9.732906147E-02,9.86909829E-02,0.,-0.102408086,9.14872044E-02, 0002115P0005327 +0.,-0.107095367,8.402260051E-02,0.,-0.111377541,7.631845242E-02, 0002115P0005328 +0.,-0.1152424,6.839672428E-02,0.,-0.118678926,6.028000053E-02, 0002115P0005329 +0.,-0.12167732,5.199142156E-02,0.,-0.124229036,4.355461763E-02, 0002115P0005330 +0.,-0.126326799,3.49936418E-02,0.,-0.127964621,2.633290047E-02, 0002115P0005331 +0.,-0.129137862,1.759708683E-02,0.,-0.129843071,8.811099341E-03, 0002115P0005332 +0.,-0.130000111,2.93704121E-03,0.,-0.13,-4.83187267E-10,0., 0002115P0005333 +0.395982513,1.570796327,0.,0.,1.; 0002115P0005334 +126,24,3,0,0,1,0,3.508101429E-27,3.508101429E-27, 0002117P0005335 +3.508101429E-27,3.508101429E-27,1.153768652E-02,2.307537304E-02, 0002117P0005336 +3.461305956E-02,4.615074608E-02,5.768843261E-02,6.922611913E-02, 0002117P0005337 +8.076380565E-02,9.230149217E-02,0.103839179,0.115376865, 0002117P0005338 +0.126914552,0.138452238,0.149989925,0.161527611,0.173065298, 0002117P0005339 +0.184602984,0.196140671,0.207678357,0.219216044,0.23075373, 0002117P0005340 +0.242291417,0.253829103,0.253829103,0.253829103,0.253829103,1., 0002117P0005341 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002117P0005342 +1.,1.,1.,-0.13,-4.83187267E-10,0.,-0.13,-3.845895991E-03,0., 0002117P0005343 +-0.13,-1.153768701E-02,0.,-0.13,-2.307537353E-02,0.,-0.13, 0002117P0005344 +-3.461306005E-02,0.,-0.13,-4.615074658E-02,0.,-0.13, 0002117P0005345 +-5.76884331E-02,0.,-0.13,-6.922611962E-02,0.,-0.13, 0002117P0005346 +-8.076380615E-02,0.,-0.13,-9.230149267E-02,0.,-0.13, 0002117P0005347 +-0.103839179,0.,-0.13,-0.115376866,0.,-0.13,-0.126914552,0., 0002117P0005348 +-0.13,-0.138452239,0.,-0.13,-0.149989925,0.,-0.13,-0.161527612, 0002117P0005349 +0.,-0.13,-0.173065298,0.,-0.13,-0.184602985,0.,-0.13, 0002117P0005350 +-0.196140671,0.,-0.13,-0.207678358,0.,-0.13,-0.219216044,0., 0002117P0005351 +-0.13,-0.230753731,0.,-0.13,-0.242291417,0.,-0.13,-0.249983208, 0002117P0005352 +0.,-0.13,-0.253829104,0.,3.508101429E-27,0.253829103,0.,0.,1.; 0002117P0005353 +110,-0.13,-0.253829104,0.,4.925118646E-10,-0.253829104,0.; 0002119P0005354 +110,2.636623446E-10,-0.253829104,0.,2.636623446E-10, 0002121P0005355 +-5.339999554E-10,0.; 0002121P0005356 +126,24,3,1,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0002123P0005357 +4.765789608,4.819190236,4.872590864,4.925991492,4.97939212, 0002123P0005358 +5.032792748,5.086193376,5.139594004,5.192994631,5.246395259, 0002123P0005359 +5.299795887,5.353196515,5.406597143,5.459997771,5.513398399, 0002123P0005360 +5.566799027,5.620199655,5.673600283,5.72700091,5.780401538, 0002123P0005361 +5.833802166,5.887202794,5.887202794,5.887202794,5.887202794,1., 0002123P0005362 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002123P0005363 +1.,1.,1.,2.642623368E-10,-4.831872125E-10,-0.,-2.339709311E-08, 0002123P0005364 +6.230083607E-04,0.,3.328813449E-05,1.869020692E-03,0., 0002123P0005365 +1.82877905E-04,3.732715007E-03,0.,4.317471782E-04, 0002123P0005366 +5.585766386E-03,0.,7.791640661E-04,7.422893335E-03,0., 0002123P0005367 +1.224144096E-03,9.238857905E-03,0.,1.765417045E-03, 0002123P0005368 +1.102848298E-02,0.,2.401440203E-03,1.27866664E-02,0., 0002123P0005369 +3.130400184E-03,1.450839568E-02,0.,3.950218791E-03, 0002123P0005370 +1.618876225E-02,0.,4.858558754E-03,1.782297548E-02,0., 0002123P0005371 +5.852830445E-03,1.940637631E-02,0.,6.930199244E-03, 0002123P0005372 +2.093445054E-02,0.,8.087593627E-03,2.24028417E-02,0., 0002123P0005373 +9.321713921E-03,2.38073635E-02,0.,1.062904171E-02, 0002123P0005374 +2.514401169E-02,0.,1.200584987E-02,2.64089756E-02,0., 0002123P0005375 +1.344821322E-02,2.759864877E-02,0.,1.495201948E-02, 0002123P0005376 +2.87096399E-02,0.,1.651298209E-02,2.973878015E-02,0., 0002123P0005377 +1.812664814E-02,3.068314088E-02,0.,1.978842714E-02, 0002123P0005378 +3.154000969E-02,0.,2.092517184E-02,3.205134898E-02,0., 0002123P0005379 +2.149998016E-02,3.229163092E-02,0.,4.71238898,5.887202794,-0., 0002123P0005380 +-0.,1.; 0002123P0005381 +126,24,3,0,0,1,0,4.242855239E-12,4.242855239E-12, 0002125P0005382 +4.242855239E-12,4.242855239E-12,8.973622497E-03,1.794724499E-02, 0002125P0005383 +2.692086748E-02,3.589448998E-02,4.486811247E-02,5.384173496E-02, 0002125P0005384 +6.281535745E-02,7.178897995E-02,8.076260244E-02,8.973622493E-02, 0002125P0005385 +9.870984742E-02,0.10768347,0.116657092,0.125630715,0.134604337, 0002125P0005386 +0.14357796,0.152551582,0.161525205,0.170498827,0.17947245, 0002125P0005387 +0.188446072,0.197419695,0.197419695,0.197419695,0.197419695,1., 0002125P0005388 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002125P0005389 +1.,1.,1.,2.149998017E-02,3.22916309E-02,0.,2.425972216E-02, 0002125P0005390 +3.344538408E-02,0.,2.977920615E-02,3.575289044E-02,0., 0002125P0005391 +3.805843213E-02,3.921414998E-02,0.,4.63376581E-02, 0002125P0005392 +4.267540952E-02,0.,5.461688408E-02,4.613666905E-02,0., 0002125P0005393 +6.289611006E-02,4.959792859E-02,0.,7.117533604E-02, 0002125P0005394 +5.305918813E-02,0.,7.945456202E-02,5.652044767E-02,0., 0002125P0005395 +8.7733788E-02,5.998170721E-02,0.,9.601301398E-02, 0002125P0005396 +6.344296674E-02,0.,0.10429224,6.690422628E-02,0.,0.112571466, 0002125P0005397 +7.036548582E-02,0.,0.120850692,7.382674536E-02,0.,0.129129918, 0002125P0005398 +7.728800489E-02,0.,0.137409144,8.074926443E-02,0.,0.14568837, 0002125P0005399 +8.421052397E-02,0.,0.153967596,8.767178351E-02,0.,0.162246822, 0002125P0005400 +9.113304305E-02,0.,0.170526048,9.459430258E-02,0.,0.178805274, 0002125P0005401 +9.805556212E-02,0.,0.1870845,0.101516822,0.,0.195363726, 0002125P0005402 +0.104978081,0.,0.20088321,0.107285588,0.,0.203642952, 0002125P0005403 +0.108439341,0.,4.242855239E-12,0.197419695,0.,0.,1.; 0002125P0005404 +126,24,3,1,0,1,0,0.395982513,0.395982513,0.395982513, 0002127P0005405 +0.395982513,0.449383141,0.502783769,0.556184397,0.609585025, 0002127P0005406 +0.662985653,0.71638628,0.769786908,0.823187536,0.876588164, 0002127P0005407 +0.929988792,0.98338942,1.036790048,1.090190676,1.143591304, 0002127P0005408 +1.196991932,1.250392559,1.303793187,1.357193815,1.410594443, 0002127P0005409 +1.463995071,1.517395699,1.570796327,1.570796327,1.570796327, 0002127P0005410 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002127P0005411 +1.,1.,1.,1.,1.,1.,1.,1.,0.203642952,0.108439341,0.,0.206352762, 0002127P0005412 +0.109572099,0.,0.211711702,0.111982698,0.,0.219545803, 0002127P0005413 +0.116022222,0.,0.227153085,0.120474209,0.,0.234511909, 0002127P0005414 +0.12532587,0.,0.241601282,0.1305634,0.,0.248400994,0.136171859, 0002127P0005415 +0.,0.254891661,0.14213526,0.,0.261054778,0.148436602,0., 0002127P0005416 +0.266872774,0.155057919,0.,0.272329062,0.161980334,0., 0002127P0005417 +0.277408086,0.169184113,0.,0.282095367,0.176648716,0., 0002127P0005418 +0.286377541,0.184352865,0.,0.2902424,0.192274593,0.,0.293678926, 0002127P0005419 +0.200391316,0.,0.296677321,0.208679895,0.,0.299229036, 0002127P0005420 +0.217116699,0.,0.301326799,0.225677675,0.,0.302964621, 0002127P0005421 +0.234338416,0.,0.304137862,0.24307423,0.,0.304843071, 0002127P0005422 +0.251860218,0.,0.305000111,0.257734276,0.,0.305,0.260671317,0., 0002127P0005423 +0.395982513,1.570796327,0.,0.,1.; 0002127P0005424 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.952901661E-03,5.905803322E-03, 0002129P0005425 +8.858704983E-03,1.181160664E-02,1.476450831E-02,1.771740997E-02, 0002129P0005426 +2.067031163E-02,2.362321329E-02,2.657611495E-02,2.952901661E-02, 0002129P0005427 +3.248191827E-02,3.543481993E-02,3.838772159E-02,4.134062326E-02, 0002129P0005428 +4.429352492E-02,4.724642658E-02,5.019932824E-02,5.31522299E-02, 0002129P0005429 +5.610513156E-02,5.905803322E-02,6.201093488E-02,6.496383654E-02, 0002129P0005430 +6.496383654E-02,6.496383654E-02,6.496383654E-02,1.,1.,1.,1.,1., 0002129P0005431 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002129P0005432 +0.305,0.260671317,0.,0.305,0.261655618,0.,0.305,0.263624219,0., 0002129P0005433 +0.305,0.266577121,0.,0.305,0.269530022,0.,0.305,0.272482924,0., 0002129P0005434 +0.305,0.275435826,0.,0.305,0.278388727,0.,0.305,0.281341629,0., 0002129P0005435 +0.305,0.284294531,0.,0.305,0.287247432,0.,0.305,0.290200334,0., 0002129P0005436 +0.305,0.293153236,0.,0.305,0.296106137,0.,0.305,0.299059039,0., 0002129P0005437 +0.305,0.302011941,0.,0.305,0.304964842,0.,0.305,0.307917744,0., 0002129P0005438 +0.305,0.310870646,0.,0.305,0.313823547,0.,0.305,0.316776449,0., 0002129P0005439 +0.305,0.319729351,0.,0.305,0.322682252,0.,0.305,0.324650853,0., 0002129P0005440 +0.305,0.325635154,0.,0.,6.496383654E-02,0.,0.,1.; 0002129P0005441 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600115E-03,5.91720023E-03, 0002131P0005442 +8.875800345E-03,1.183440046E-02,1.479300058E-02,1.775160069E-02, 0002131P0005443 +2.071020081E-02,2.366880092E-02,2.662740104E-02,2.958600115E-02, 0002131P0005444 +3.254460127E-02,3.550320138E-02,3.84618015E-02,4.142040161E-02, 0002131P0005445 +4.437900173E-02,4.733760184E-02,5.029620196E-02,5.325480207E-02, 0002131P0005446 +5.621340219E-02,5.91720023E-02,6.213060242E-02,6.508920253E-02, 0002131P0005447 +6.508920253E-02,6.508920253E-02,6.508920253E-02,1.,1.,1.,1.,1., 0002131P0005448 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002131P0005449 +0.305,0.325635154,0.,0.304015151,0.32558354,0.,0.302045454, 0002131P0005450 +0.325480313,0.,0.299090909,0.325325472,0.,0.296136363, 0002131P0005451 +0.325170631,0.,0.293181818,0.325015789,0.,0.290227272, 0002131P0005452 +0.324860948,0.,0.287272727,0.324706107,0.,0.284318182, 0002131P0005453 +0.324551266,0.,0.281363636,0.324396425,0.,0.278409091, 0002131P0005454 +0.324241584,0.,0.275454545,0.324086742,0.,0.2725,0.323931901,0., 0002131P0005455 +0.269545454,0.32377706,0.,0.266590909,0.323622219,0., 0002131P0005456 +0.263636363,0.323467378,0.,0.260681818,0.323312537,0., 0002131P0005457 +0.257727272,0.323157695,0.,0.254772727,0.323002854,0., 0002131P0005458 +0.251818182,0.322848013,0.,0.248863636,0.322693172,0., 0002131P0005459 +0.245909091,0.322538331,0.,0.242954545,0.32238349,0., 0002131P0005460 +0.240984848,0.322280262,0.,0.24,0.322228648,0.,0., 0002131P0005461 +6.508920253E-02,0.,0.,1.; 0002131P0005462 +102,13,2135,2137,2139,2143,2145,2149,2151,2153,2155,2159,2161, 0002133P0005463 +2165,2167; 0002133P0005464 +110,8.75984252E-03,-2.559055118E-02,1.456692913E-02, 0002135P0005465 +8.75984252E-03,-2.545643679E-02,1.200787402E-02; 0002135P0005466 +110,8.75984252E-03,-2.545643679E-02,1.200787402E-02, 0002137P0005467 +8.75984252E-03,-2.801406815E-02,1.200787402E-02; 0002137P0005468 +100,1.525993215E-19,9.369384916E-19,3.361453586E-19, 0002139P0005469 +6.317398485E-19,-1.377952756E-03,1.271324071E-03, 0002139P0005470 +-5.314968518E-04; 0002139P0005471 +124,-1.224646E-16,2.719260372E-32,1.,8.75984252E-03,-1., 0002141P0005472 +2.220446049E-16,-1.224646E-16,-2.801406815E-02,-2.220446049E-16, 0002141P0005473 +-1.,8.125204719E-49,1.062992126E-02; 0002141P0005474 +110,8.75984252E-03,-2.928539222E-02,1.116141811E-02, 0002143P0005475 +8.75984252E-03,-3.228333355E-02,3.990434968E-03; 0002143P0005476 +100,-3.164034883E-19,-1.854668677E-18,2.427716479E-19, 0002145P0005477 +5.993384905E-03,2.505628022E-03,-3.297425899E-18, 0002145P0005478 +6.496062993E-03; 0002145P0005479 +124,1.224646E-16,2.719260372E-32,-1.,8.75984252E-03,1., 0002147P0005480 +2.220446049E-16,1.224646E-16,-3.827671846E-02,2.220446049E-16, 0002147P0005481 +-1.,-8.125204719E-49,6.496062992E-03; 0002147P0005482 +110,8.75984252E-03,-3.827671846E-02,-1.966930555E-17, 0002149P0005483 +8.75984252E-03,-4.826999025E-02,-2.188825764E-17; 0002149P0005484 +110,8.75984252E-03,-4.826999025E-02,-2.241789039E-17, 0002151P0005485 +8.75984252E-03,-4.826999025E-02,5.118110236E-03; 0002151P0005486 +110,8.75984252E-03,-4.826999025E-02,5.118110236E-03, 0002153P0005487 +8.75984252E-03,-3.827671846E-02,5.118110236E-03; 0002153P0005488 +100,3.164034883E-19,-1.854668677E-18,-2.427716479E-19, 0002155P0005489 +-2.162001576E-18,-1.377952756E-03,1.271324071E-03, 0002155P0005490 +-5.314968531E-04; 0002155P0005491 +124,1.224646E-16,-2.719260372E-32,1.,8.75984252E-03,1., 0002157P0005492 +-2.220446049E-16,-1.224646E-16,-3.827671846E-02,2.220446049E-16, 0002157P0005493 +1.,8.125204719E-49,6.496062992E-03; 0002157P0005494 +110,8.75984252E-03,-3.700539439E-02,5.964566139E-03, 0002159P0005495 +8.75984252E-03,-3.400745306E-02,1.313554928E-02; 0002159P0005496 +100,-1.525993215E-19,9.369384916E-19,-3.361453586E-19, 0002161P0005497 +5.993384905E-03,2.505628022E-03,-5.058187301E-19, 0002161P0005498 +6.496062993E-03; 0002161P0005499 +124,-1.224646E-16,-2.719260372E-32,-1.,8.75984252E-03,-1., 0002163P0005500 +-2.220446049E-16,1.224646E-16,-2.801406815E-02,-2.220446049E-16, 0002163P0005501 +1.,-8.125204719E-49,1.062992126E-02; 0002163P0005502 +110,8.75984252E-03,-2.801406815E-02,1.712598425E-02, 0002165P0005503 +8.75984252E-03,-2.545643679E-02,1.712598425E-02; 0002165P0005504 +110,8.75984252E-03,-2.545643679E-02,1.712598425E-02, 0002167P0005505 +8.75984252E-03,-2.559055118E-02,1.456692913E-02; 0002167P0005506 +144,2171,1,0,2173; 0002169P0005507 +128,1,1,1,1,0,0,1,0,0,-2.742524241E-33,-2.742524241E-33, 0002171P0005508 +0.197419695,0.197419695,-0.445,-0.445,0.,0.,1.,1.,1.,1., 0002171P0005509 +8.75984252E-03,-3.700539439E-02,5.964566139E-03,8.75984252E-03, 0002171P0005510 +-3.400745306E-02,1.313554928E-02,-8.75984252E-03, 0002171P0005511 +-3.700539439E-02,5.964566139E-03,-8.75984252E-03, 0002171P0005512 +-3.400745306E-02,1.313554928E-02,-2.742524241E-33,0.197419695, 0002171P0005513 +-0.445,0.; 0002171P0005514 +142,0,2171,2175,2185,3; 0002173P0005515 +102,4,2177,2179,2181,2183; 0002175P0005516 +110,-2.742524241E-33,0.,0.,-2.742524241E-33,-0.445,0.; 0002177P0005517 +110,-2.742524241E-33,-0.445,0.,0.197419695,-0.445,0.; 0002179P0005518 +110,0.197419695,-0.445,0.,0.197419695,1.599997912E-11,0.; 0002181P0005519 +110,0.197419695,0.,0.,2.52343535E-10,0.,0.; 0002183P0005520 +102,4,2187,2189,2191,2193; 0002185P0005521 +110,-8.75984252E-03,-3.700539439E-02,5.964566139E-03, 0002187P0005522 +8.75984252E-03,-3.700539439E-02,5.964566139E-03; 0002187P0005523 +110,8.75984252E-03,-3.700539439E-02,5.964566139E-03, 0002189P0005524 +8.75984252E-03,-3.400745306E-02,1.313554928E-02; 0002189P0005525 +110,8.75984252E-03,-3.400745306E-02,1.313554928E-02, 0002191P0005526 +-8.75984252E-03,-3.400745306E-02,1.313554928E-02; 0002191P0005527 +110,-8.75984252E-03,-3.400745306E-02,1.313554928E-02, 0002193P0005528 +-8.75984252E-03,-3.700539439E-02,5.964566139E-03; 0002193P0005529 +144,2197,1,0,2199; 0002195P0005530 +128,1,1,1,1,0,0,1,0,0,-0.277771351,-0.277771351,0.325635154, 0002197P0005531 +0.325635154,-0.130426136,-0.130426136,0.30542393,0.30542393,1., 0002197P0005532 +1.,1.,1.,-4.627952756E-02,4.921259843E-02,-1.677702753E-05, 0002197P0005533 +-4.627952756E-02,2.545643679E-02,-1.677702753E-05, 0002197P0005534 +-4.627952756E-02,4.921259843E-02,1.714267442E-02, 0002197P0005535 +-4.627952756E-02,2.545643679E-02,1.714267442E-02,-0.277771351, 0002197P0005536 +0.325635154,-0.130426123,0.30542393; 0002197P0005537 +142,0,2197,2201,2229,3; 0002199P0005538 +102,13,2203,2205,2207,2209,2211,2213,2215,2217,2219,2221,2223, 0002201P0005539 +2225,2227; 0002201P0005540 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.952901661E-03,5.905803322E-03, 0002203P0005541 +8.858704983E-03,1.181160664E-02,1.476450831E-02,1.771740997E-02, 0002203P0005542 +2.067031163E-02,2.362321329E-02,2.657611495E-02,2.952901661E-02, 0002203P0005543 +3.248191827E-02,3.543481993E-02,3.838772159E-02,4.134062326E-02, 0002203P0005544 +4.429352492E-02,4.724642658E-02,5.019932824E-02,5.31522299E-02, 0002203P0005545 +5.610513156E-02,5.905803322E-02,6.201093488E-02,6.496383654E-02, 0002203P0005546 +6.496383654E-02,6.496383654E-02,6.496383654E-02,1.,1.,1.,1.,1., 0002203P0005547 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002203P0005548 +0.260671318,0.175,0.,0.261655618,0.175,0.,0.263624219,0.175,0., 0002203P0005549 +0.266577121,0.175,0.,0.269530023,0.175,0.,0.272482924,0.175,0., 0002203P0005550 +0.275435826,0.175,0.,0.278388727,0.175,0.,0.281341629,0.175,0., 0002203P0005551 +0.284294531,0.175,0.,0.287247432,0.175,0.,0.290200334,0.175,0., 0002203P0005552 +0.293153236,0.175,0.,0.296106137,0.175,0.,0.299059039,0.175,0., 0002203P0005553 +0.302011941,0.175,0.,0.304964842,0.175,0.,0.307917744,0.175,0., 0002203P0005554 +0.310870646,0.175,0.,0.313823547,0.175,0.,0.316776449,0.175,0., 0002203P0005555 +0.319729351,0.175,0.,0.322682252,0.175,0.,0.324650853,0.175,0., 0002203P0005556 +0.325635154,0.175,0.,0.,6.496383654E-02,0.,0.,1.; 0002203P0005557 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600103E-03,5.917200207E-03, 0002205P0005558 +8.87580031E-03,1.183440041E-02,1.479300052E-02,1.775160062E-02, 0002205P0005559 +2.071020072E-02,2.366880083E-02,2.662740093E-02,2.958600103E-02, 0002205P0005560 +3.254460114E-02,3.550320124E-02,3.846180135E-02,4.142040145E-02, 0002205P0005561 +4.437900155E-02,4.733760166E-02,5.029620176E-02,5.325480186E-02, 0002205P0005562 +5.621340197E-02,5.917200207E-02,6.213060217E-02,6.508920228E-02, 0002205P0005563 +6.508920228E-02,6.508920228E-02,6.508920228E-02,1.,1.,1.,1.,1., 0002205P0005564 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002205P0005565 +0.325635154,0.175,0.,0.32558354,0.175984849,0.,0.325480313, 0002205P0005566 +0.177954546,0.,0.325325472,0.180909091,0.,0.325170631, 0002205P0005567 +0.183863636,0.,0.325015789,0.186818182,0.,0.324860948, 0002205P0005568 +0.189772727,0.,0.324706107,0.192727273,0.,0.324551266, 0002205P0005569 +0.195681818,0.,0.324396425,0.198636364,0.,0.324241584, 0002205P0005570 +0.201590909,0.,0.324086742,0.204545454,0.,0.323931901,0.2075,0., 0002205P0005571 +0.32377706,0.210454545,0.,0.323622219,0.213409091,0., 0002205P0005572 +0.323467378,0.216363636,0.,0.323312537,0.219318182,0., 0002205P0005573 +0.323157695,0.222272727,0.,0.323002854,0.225227273,0., 0002205P0005574 +0.322848013,0.228181818,0.,0.322693172,0.231136363,0., 0002205P0005575 +0.322538331,0.234090909,0.,0.32238349,0.237045454,0., 0002205P0005576 +0.322280262,0.239015151,0.,0.322228648,0.24,0.,0., 0002205P0005577 +6.508920228E-02,0.,0.,1.; 0002205P0005578 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.958600115E-03,5.91720023E-03, 0002207P0005579 +8.875800345E-03,1.183440046E-02,1.479300058E-02,1.775160069E-02, 0002207P0005580 +2.071020081E-02,2.366880092E-02,2.662740104E-02,2.958600115E-02, 0002207P0005581 +3.254460127E-02,3.550320138E-02,3.84618015E-02,4.142040161E-02, 0002207P0005582 +4.437900173E-02,4.733760184E-02,5.029620196E-02,5.325480207E-02, 0002207P0005583 +5.621340219E-02,5.91720023E-02,6.213060242E-02,6.508920253E-02, 0002207P0005584 +6.508920253E-02,6.508920253E-02,6.508920253E-02,1.,1.,1.,1.,1., 0002207P0005585 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002207P0005586 +0.322228648,0.24,0.,0.322280262,0.240984848,0.,0.32238349, 0002207P0005587 +0.242954545,0.,0.322538331,0.245909091,0.,0.322693172, 0002207P0005588 +0.248863636,0.,0.322848013,0.251818182,0.,0.323002854, 0002207P0005589 +0.254772727,0.,0.323157695,0.257727272,0.,0.323312537, 0002207P0005590 +0.260681818,0.,0.323467378,0.263636363,0.,0.323622219, 0002207P0005591 +0.266590909,0.,0.32377706,0.269545454,0.,0.323931901,0.2725,0., 0002207P0005592 +0.324086742,0.275454545,0.,0.324241584,0.278409091,0., 0002207P0005593 +0.324396425,0.281363636,0.,0.324551266,0.284318182,0., 0002207P0005594 +0.324706107,0.287272727,0.,0.324860948,0.290227272,0., 0002207P0005595 +0.325015789,0.293181818,0.,0.325170631,0.296136363,0., 0002207P0005596 +0.325325472,0.299090909,0.,0.325480313,0.302045454,0., 0002207P0005597 +0.32558354,0.304015151,0.,0.325635154,0.305,0.,0., 0002207P0005598 +6.508920253E-02,0.,0.,1.; 0002207P0005599 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.952901661E-03,5.905803322E-03, 0002209P0005600 +8.858704983E-03,1.181160664E-02,1.476450831E-02,1.771740997E-02, 0002209P0005601 +2.067031163E-02,2.362321329E-02,2.657611495E-02,2.952901661E-02, 0002209P0005602 +3.248191827E-02,3.543481993E-02,3.838772159E-02,4.134062326E-02, 0002209P0005603 +4.429352492E-02,4.724642658E-02,5.019932824E-02,5.31522299E-02, 0002209P0005604 +5.610513156E-02,5.905803322E-02,6.201093488E-02,6.496383654E-02, 0002209P0005605 +6.496383654E-02,6.496383654E-02,6.496383654E-02,1.,1.,1.,1.,1., 0002209P0005606 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002209P0005607 +0.325635154,0.305,0.,0.324650853,0.305,0.,0.322682252,0.305,0., 0002209P0005608 +0.319729351,0.305,0.,0.316776449,0.305,0.,0.313823547,0.305,0., 0002209P0005609 +0.310870646,0.305,0.,0.307917744,0.305,0.,0.304964842,0.305,0., 0002209P0005610 +0.302011941,0.305,0.,0.299059039,0.305,0.,0.296106137,0.305,0., 0002209P0005611 +0.293153236,0.305,0.,0.290200334,0.305,0.,0.287247432,0.305,0., 0002209P0005612 +0.284294531,0.305,0.,0.281341629,0.305,0.,0.278388727,0.305,0., 0002209P0005613 +0.275435826,0.305,0.,0.272482924,0.305,0.,0.269530023,0.305,0., 0002209P0005614 +0.266577121,0.305,0.,0.263624219,0.305,0.,0.261655618,0.305,0., 0002209P0005615 +0.260671318,0.305,0.,0.,6.496383654E-02,0.,0.,1.; 0002209P0005616 +126,24,3,1,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0002211P0005617 +4.765789608,4.819190236,4.872590864,4.925991492,4.97939212, 0002211P0005618 +5.032792748,5.086193376,5.139594004,5.192994631,5.246395259, 0002211P0005619 +5.299795887,5.353196515,5.406597143,5.459997771,5.513398399, 0002211P0005620 +5.566799027,5.620199655,5.673600282,5.72700091,5.780401538, 0002211P0005621 +5.833802166,5.887202794,5.887202794,5.887202794,5.887202794,1., 0002211P0005622 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002211P0005623 +1.,1.,1.,0.260671318,0.305,0.,0.257734276,0.305000111,0., 0002211P0005624 +0.251860218,0.304843071,0.,0.24307423,0.304137862,0., 0002211P0005625 +0.234338417,0.302964621,0.,0.225677675,0.301326799,0., 0002211P0005626 +0.217116699,0.299229036,0.,0.208679896,0.296677321,0., 0002211P0005627 +0.200391317,0.293678926,0.,0.192274593,0.2902424,0.,0.184352865, 0002211P0005628 +0.286377541,0.,0.176648717,0.282095367,0.,0.169184113, 0002211P0005629 +0.277408086,0.,0.161980334,0.272329062,0.,0.155057919, 0002211P0005630 +0.266872774,0.,0.148436602,0.261054778,0.,0.14213526, 0002211P0005631 +0.254891661,0.,0.136171859,0.248400994,0.,0.1305634,0.241601282, 0002211P0005632 +0.,0.12532587,0.234511909,0.,0.120474209,0.227153085,0., 0002211P0005633 +0.116022223,0.219545803,0.,0.111982698,0.211711702,0., 0002211P0005634 +0.109572099,0.206352762,0.,0.108439341,0.203642952,0., 0002211P0005635 +4.71238898,5.887202794,0.,0.,1.; 0002211P0005636 +126,24,3,0,0,1,0,-1.05750058E-10,-1.05750058E-10, 0002213P0005637 +-1.05750058E-10,-1.05750058E-10,8.973622387E-03,1.794724488E-02, 0002213P0005638 +2.692086737E-02,3.589448987E-02,4.486811236E-02,5.384173485E-02, 0002213P0005639 +6.281535735E-02,7.178897984E-02,8.076260233E-02,8.973622483E-02, 0002213P0005640 +9.870984732E-02,0.10768347,0.116657092,0.125630715,0.134604337, 0002213P0005641 +0.14357796,0.152551582,0.161525205,0.170498827,0.17947245, 0002213P0005642 +0.188446072,0.197419695,0.197419695,0.197419695,0.197419695,1., 0002213P0005643 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002213P0005644 +1.,1.,1.,0.108439341,0.203642952,0.,0.107285588,0.20088321,0., 0002213P0005645 +0.104978081,0.195363726,0.,0.101516822,0.1870845,0., 0002213P0005646 +9.805556242E-02,0.178805274,0.,9.459430288E-02,0.170526048,0., 0002213P0005647 +9.113304335E-02,0.162246822,0.,8.767178382E-02,0.153967596,0., 0002213P0005648 +8.421052428E-02,0.14568837,0.,8.074926475E-02,0.137409144,0., 0002213P0005649 +7.728800522E-02,0.129129918,0.,7.382674568E-02,0.120850692,0., 0002213P0005650 +7.036548615E-02,0.112571466,0.,6.690422662E-02,0.10429224,0., 0002213P0005651 +6.344296708E-02,9.601301398E-02,0.,5.998170755E-02, 0002213P0005652 +8.7733788E-02,0.,5.652044802E-02,7.945456202E-02,0., 0002213P0005653 +5.305918848E-02,7.117533604E-02,0.,4.959792895E-02, 0002213P0005654 +6.289611006E-02,0.,4.613666941E-02,5.461688408E-02,0., 0002213P0005655 +4.267540988E-02,4.633765811E-02,0.,3.921415035E-02, 0002213P0005656 +3.805843213E-02,0.,3.575289081E-02,2.977920615E-02,0., 0002213P0005657 +3.344538446E-02,2.425972216E-02,0.,3.229163128E-02, 0002213P0005658 +2.149998017E-02,0.,-1.05750058E-10,0.197419695,0.,0.,1.; 0002213P0005659 +126,24,3,1,0,1,0,0.395982513,0.395982513,0.395982513, 0002215P0005660 +0.395982513,0.449383141,0.502783769,0.556184397,0.609585025, 0002215P0005661 +0.662985653,0.71638628,0.769786908,0.823187536,0.876588164, 0002215P0005662 +0.929988792,0.98338942,1.036790048,1.090190676,1.143591304, 0002215P0005663 +1.196991932,1.250392559,1.303793187,1.357193815,1.410594443, 0002215P0005664 +1.463995071,1.517395699,1.570796327,1.570796327,1.570796327, 0002215P0005665 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002215P0005666 +1.,1.,1.,1.,1.,1.,1.,1.,3.22916313E-02,2.149998016E-02,0., 0002215P0005667 +3.205134936E-02,2.092517183E-02,0.,3.154001007E-02, 0002215P0005668 +1.978842713E-02,0.,3.068314126E-02,1.812664814E-02,0., 0002215P0005669 +2.973878053E-02,1.651298209E-02,0.,2.870964028E-02, 0002215P0005670 +1.495201948E-02,0.,2.759864916E-02,1.344821322E-02,0., 0002215P0005671 +2.640897599E-02,1.200584986E-02,0.,2.514401208E-02, 0002215P0005672 +1.062904171E-02,0.,2.380736389E-02,9.321713917E-03,0., 0002215P0005673 +2.240284209E-02,8.087593622E-03,0.,2.093445093E-02, 0002215P0005674 +6.930199239E-03,0.,1.940637671E-02,5.85283044E-03,0., 0002215P0005675 +1.782297588E-02,4.858558749E-03,0.,1.618876265E-02, 0002215P0005676 +3.950218786E-03,0.,1.450839608E-02,3.130400179E-03,0., 0002215P0005677 +1.27866668E-02,2.401440198E-03,0.,1.102848339E-02, 0002215P0005678 +1.76541704E-03,0.,9.238858314E-03,1.22414409E-03,0., 0002215P0005679 +7.422893745E-03,7.791640607E-04,0.,5.585766799E-03, 0002215P0005680 +4.317471728E-04,0.,3.732715422E-03,1.828778996E-04,0., 0002215P0005681 +1.869021109E-03,3.328812904E-05,0.,6.230087792E-04, 0002215P0005682 +-2.340254312E-08,-0.,-6.398223955E-11,2.588123292E-10,0., 0002215P0005683 +0.395982513,1.570796327,-0.,-0.,1.; 0002215P0005684 +126,24,3,0,0,1,0,0.,0.,0.,0.,1.262597051E-02,2.525194102E-02, 0002217P0005685 +3.787791153E-02,5.050388204E-02,6.312985255E-02,7.575582306E-02, 0002217P0005686 +8.838179358E-02,0.101007764,0.113633735,0.126259705,0.138885676, 0002217P0005687 +0.151511646,0.164137617,0.176763587,0.189389558,0.202015528, 0002217P0005688 +0.214641499,0.227267469,0.23989344,0.25251941,0.265145381, 0002217P0005689 +0.277771351,0.277771351,0.277771351,0.277771351,1.,1.,1.,1.,1., 0002217P0005690 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002217P0005691 +-6.398223955E-11,2.636623385E-10,0.,-4.208656896E-03, 0002217P0005692 +2.636623385E-10,0.,-1.262597056E-02,2.636623385E-10,0., 0002217P0005693 +-2.525194106E-02,2.636623385E-10,0.,-3.787791156E-02, 0002217P0005694 +2.636623385E-10,0.,-5.050388205E-02,2.636623385E-10,0., 0002217P0005695 +-6.312985255E-02,2.636623385E-10,0.,-7.575582305E-02, 0002217P0005696 +2.636623385E-10,0.,-8.838179354E-02,2.636623385E-10,0., 0002217P0005697 +-0.101007764,2.636623385E-10,0.,-0.113633735,2.636623385E-10,0., 0002217P0005698 +-0.126259705,2.636623385E-10,0.,-0.138885676,2.636623385E-10,0., 0002217P0005699 +-0.151511646,2.636623385E-10,0.,-0.164137617,2.636623385E-10,0., 0002217P0005700 +-0.176763587,2.636623385E-10,0.,-0.189389558,2.636623385E-10,0., 0002217P0005701 +-0.202015528,2.636623385E-10,0.,-0.214641499,2.636623385E-10,0., 0002217P0005702 +-0.227267469,2.636623385E-10,0.,-0.23989344,2.636623384E-10,0., 0002217P0005703 +-0.25251941,2.636623388E-10,0.,-0.265145381,2.636623374E-10,0., 0002217P0005704 +-0.273562694,2.636623409E-10,0.,-0.277771351,2.636623446E-10,0., 0002217P0005705 +0.,0.277771351,0.,0.,1.; 0002217P0005706 +110,-0.277771351,2.636623446E-10,0.,-0.277771351,-0.13,0.; 0002219P0005707 +126,24,3,0,0,1,0,6.846166641E-34,6.846166641E-34, 0002221P0005708 +6.846166641E-34,6.846166641E-34,1.262597051E-02,2.525194102E-02, 0002221P0005709 +3.787791153E-02,5.050388204E-02,6.312985255E-02,7.575582306E-02, 0002221P0005710 +8.838179358E-02,0.101007764,0.113633735,0.126259705,0.138885676, 0002221P0005711 +0.151511646,0.164137617,0.176763587,0.189389558,0.202015528, 0002221P0005712 +0.214641499,0.227267469,0.23989344,0.25251941,0.265145381, 0002221P0005713 +0.277771351,0.277771351,0.277771351,0.277771351,1.,1.,1.,1.,1., 0002221P0005714 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002221P0005715 +-0.277771351,-0.13,0.,-0.273562694,-0.13,0.,-0.265145381,-0.13, 0002221P0005716 +0.,-0.25251941,-0.13,0.,-0.23989344,-0.13,0.,-0.227267469,-0.13, 0002221P0005717 +0.,-0.214641499,-0.13,0.,-0.202015528,-0.13,0.,-0.189389558, 0002221P0005718 +-0.13,0.,-0.176763587,-0.13,0.,-0.164137617,-0.13,0., 0002221P0005719 +-0.151511646,-0.13,0.,-0.138885676,-0.13,0.,-0.126259705,-0.13, 0002221P0005720 +0.,-0.113633735,-0.13,0.,-0.101007764,-0.13,0.,-8.838179354E-02, 0002221P0005721 +-0.13,0.,-7.575582305E-02,-0.13,0.,-6.312985255E-02,-0.13,0., 0002221P0005722 +-5.050388205E-02,-0.13,0.,-3.787791156E-02,-0.13,0., 0002221P0005723 +-2.525194106E-02,-0.13,0.,-1.262597056E-02,-0.13,0., 0002221P0005724 +-4.208656896E-03,-0.13,0.,-6.398220842E-11,-0.13,0., 0002221P0005725 +6.846166641E-34,0.277771351,0.,0.,1.; 0002221P0005726 +126,24,3,1,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0002223P0005727 +4.765789608,4.819190236,4.872590864,4.925991492,4.97939212, 0002223P0005728 +5.032792748,5.086193376,5.139594004,5.192994631,5.246395259, 0002223P0005729 +5.299795887,5.353196515,5.406597143,5.459997771,5.513398399, 0002223P0005730 +5.566799027,5.620199655,5.673600282,5.72700091,5.780401538, 0002223P0005731 +5.833802166,5.887202794,5.887202794,5.887202794,5.887202794,1., 0002223P0005732 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002223P0005733 +1.,1.,1.,-6.398231944E-11,-0.13,0.,2.937041625E-03,-0.130000111, 0002223P0005734 +-0.,8.811099747E-03,-0.129843071,-0.,1.759708722E-02, 0002223P0005735 +-0.129137862,-0.,2.633290085E-02,-0.127964621,-0., 0002223P0005736 +3.499364217E-02,-0.126326799,-0.,4.355461799E-02,-0.124229036, 0002223P0005737 +-0.,5.19914219E-02,-0.12167732,-0.,6.028000087E-02,-0.118678926, 0002223P0005738 +-0.,6.83967246E-02,-0.1152424,-0.,7.631845273E-02,-0.111377541, 0002223P0005739 +-0.,8.40226008E-02,-0.107095367,-0.,9.148720469E-02, 0002223P0005740 +-0.102408086,-0.,9.869098318E-02,-9.732906146E-02,-0., 0002223P0005741 +0.105613399,-9.187277366E-02,-0.,0.112234716,-8.605477799E-02, 0002223P0005742 +-0.,0.118536057,-7.989166125E-02,-0.,0.124499458, 0002223P0005743 +-7.340099423E-02,-0.,0.130107918,-6.660128127E-02,-0., 0002223P0005744 +0.135345447,-5.951190891E-02,-0.,0.140197108,-5.21530852E-02, 0002223P0005745 +-0.,0.144649095,-4.454580239E-02,-0.,0.148688619, 0002223P0005746 +-3.671170141E-02,-0.,0.151099219,-3.135276211E-02,-0., 0002223P0005747 +0.152231976,-2.864295144E-02,-0.,4.71238898,5.887202794,0.,0., 0002223P0005748 +1.; 0002223P0005749 +126,24,3,0,0,1,0,-8.176192623E-11,-8.176192623E-11, 0002225P0005750 +-8.176192623E-11,-8.176192623E-11,8.97362241E-03,1.79472449E-02, 0002225P0005751 +2.692086739E-02,3.589448988E-02,4.486811238E-02,5.384173487E-02, 0002225P0005752 +6.281535736E-02,7.178897985E-02,8.076260234E-02,8.973622483E-02, 0002225P0005753 +9.870984733E-02,0.10768347,0.116657092,0.125630715,0.134604337, 0002225P0005754 +0.14357796,0.152551582,0.161525205,0.170498827,0.17947245, 0002225P0005755 +0.188446072,0.197419695,0.197419695,0.197419695,0.197419695,1., 0002225P0005756 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002225P0005757 +1.,1.,1.,0.152231976,-2.864295149E-02,-0.,0.15338573, 0002225P0005758 +-2.58832095E-02,-0.,0.155693236,-2.036372551E-02,-0., 0002225P0005759 +0.159154496,-1.208449954E-02,-0.,0.162615755,-3.805273559E-03, 0002225P0005760 +-0.,0.166077015,4.473952419E-03,0.,0.169538274,1.27531784E-02, 0002225P0005761 +0.,0.172999534,2.103240438E-02,0.,0.176460793,2.931163035E-02, 0002225P0005762 +0.,0.179922053,3.759085633E-02,0.,0.183383312,4.587008231E-02, 0002225P0005763 +0.,0.186844572,5.414930829E-02,0.,0.190305831,6.242853426E-02, 0002225P0005764 +0.,0.193767091,7.070776024E-02,0.,0.19722835,7.898698622E-02,0., 0002225P0005765 +0.20068961,8.72662122E-02,0.,0.204150869,9.554543818E-02,0., 0002225P0005766 +0.207612129,0.103824664,0.,0.211073389,0.11210389,0., 0002225P0005767 +0.214534648,0.120383116,0.,0.217995908,0.128662342,0., 0002225P0005768 +0.221457167,0.136941568,0.,0.224918427,0.145220794,0., 0002225P0005769 +0.227225933,0.150740278,0.,0.228379686,0.15350002,0., 0002225P0005770 +-8.176192623E-11,0.197419695,0.,0.,1.; 0002225P0005771 +126,24,3,1,0,1,0,0.395982512,0.395982512,0.395982512, 0002227P0005772 +0.395982512,0.44938314,0.502783768,0.556184396,0.609585024, 0002227P0005773 +0.662985652,0.71638628,0.769786908,0.823187536,0.876588164, 0002227P0005774 +0.929988791,0.983389419,1.036790047,1.090190675,1.143591303, 0002227P0005775 +1.196991931,1.250392559,1.303793187,1.357193815,1.410594443, 0002227P0005776 +1.463995071,1.517395699,1.570796327,1.570796327,1.570796327, 0002227P0005777 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002227P0005778 +1.,1.,1.,1.,1.,1.,1.,1.,0.228379686,0.15350002,0.,0.228619968, 0002227P0005779 +0.154074828,0.,0.229131307,0.155211573,0.,0.229988176, 0002227P0005780 +0.156873352,0.,0.230932537,0.158487018,0.,0.231961677, 0002227P0005781 +0.160047981,0.,0.233072668,0.161551787,0.,0.234262341, 0002227P0005782 +0.16299415,0.,0.235527305,0.164370959,0.,0.236863954, 0002227P0005783 +0.165678286,0.,0.238268475,0.166912407,0.,0.239736867, 0002227P0005784 +0.168069801,0.,0.241264941,0.16914717,0.,0.242848342, 0002227P0005785 +0.170141441,0.,0.244482555,0.171049781,0.,0.246162921,0.1718696, 0002227P0005786 +0.,0.247884651,0.17259856,0.,0.249642834,0.173234583,0., 0002227P0005787 +0.251432459,0.173775856,0.,0.253248424,0.174220836,0., 0002227P0005788 +0.255085551,0.174568253,0.,0.256938602,0.174817122,0., 0002227P0005789 +0.258802296,0.174966712,0.,0.260048309,0.175000024,0., 0002227P0005790 +0.260671318,0.175,0.,0.395982512,1.570796327,-0.,-0.,1.; 0002227P0005791 +102,13,2231,2233,2235,2237,2239,2243,2245,2249,2251,2253,2255, 0002229P0005792 +2259,2261; 0002229P0005793 +110,-4.627952756E-02,2.801406815E-02,1.200787402E-02, 0002231P0005794 +-4.627952756E-02,2.545643679E-02,1.200787402E-02; 0002231P0005795 +110,-4.627952756E-02,2.545643679E-02,1.200787402E-02, 0002233P0005796 +-4.627952756E-02,2.559055118E-02,1.456692913E-02; 0002233P0005797 +110,-4.627952756E-02,2.559055118E-02,1.456692913E-02, 0002235P0005798 +-4.627952756E-02,2.545643679E-02,1.712598425E-02; 0002235P0005799 +110,-4.627952756E-02,2.545643679E-02,1.712598425E-02, 0002237P0005800 +-4.627952756E-02,2.801406815E-02,1.712598425E-02; 0002237P0005801 +100,3.431884042E-18,1.06285961E-18,-3.361453586E-19, 0002239P0005802 +-1.865339958E-18,-6.496062992E-03,5.993384904E-03, 0002239P0005803 +-2.505628022E-03; 0002239P0005804 +124,1.224646E-16,2.719260372E-32,-1.,-4.627952756E-02,1., 0002241P0005805 +2.220446049E-16,1.224646E-16,2.801406815E-02,2.220446049E-16, 0002241P0005806 +-1.,-8.125204719E-49,1.062992126E-02; 0002241P0005807 +110,-4.627952756E-02,3.400745306E-02,1.313554928E-02, 0002243P0005808 +-4.627952756E-02,3.700539439E-02,5.964566139E-03; 0002243P0005809 +100,4.055086866E-18,-1.451294247E-19,-2.427716479E-19, 0002245P0005810 +1.271324071E-03,5.314968532E-04,1.622034746E-19,1.377952756E-03; 0002245P0005811 +124,-1.224646E-16,2.719260372E-32,1.,-4.627952756E-02,-1., 0002247P0005812 +2.220446049E-16,-1.224646E-16,3.827671846E-02,-2.220446049E-16, 0002247P0005813 +-1.,8.125204719E-49,6.496062992E-03; 0002247P0005814 +110,-4.627952756E-02,3.827671846E-02,5.118110236E-03, 0002249P0005815 +-4.627952756E-02,4.921259843E-02,5.118110236E-03; 0002249P0005816 +110,-4.627952756E-02,4.921259843E-02,5.118110236E-03, 0002251P0005817 +-4.627952756E-02,4.921259843E-02,8.74191358E-18; 0002251P0005818 +110,-4.627952756E-02,4.921259843E-02,8.984688332E-18, 0002253P0005819 +-4.627952756E-02,3.827671846E-02,6.556435185E-18; 0002253P0005820 +100,-4.055086866E-18,-1.451294247E-19,2.427716479E-19, 0002255P0005821 +-3.073328993E-18,-6.496062992E-03,5.993384904E-03, 0002255P0005822 +-2.505628022E-03; 0002255P0005823 +124,-1.224646E-16,-2.719260372E-32,-1.,-4.627952756E-02,-1., 0002257P0005824 +-2.220446049E-16,1.224646E-16,3.827671846E-02,-2.220446049E-16, 0002257P0005825 +1.,-8.125204719E-49,6.496062992E-03; 0002257P0005826 +110,-4.627952756E-02,3.228333355E-02,3.990434968E-03, 0002259P0005827 +-4.627952756E-02,2.928539222E-02,1.116141811E-02; 0002259P0005828 +100,-3.431884042E-18,1.06285961E-18,3.361453586E-19, 0002261P0005829 +1.271324071E-03,5.314968519E-04,1.368058253E-18,1.377952756E-03; 0002261P0005830 +124,1.224646E-16,-2.719260372E-32,1.,-4.627952756E-02,1., 0002263P0005831 +-2.220446049E-16,-1.224646E-16,2.801406815E-02,2.220446049E-16, 0002263P0005832 +1.,8.125204719E-49,1.062992126E-02; 0002263P0005833 +144,2267,1,0,2269; 0002265P0005834 +128,1,1,1,1,0,0,1,0,0,0.,0.,0.445,0.445,0.,0.,0.277771351, 0002267P0005835 +0.277771351,1.,1.,1.,1.,-2.875984252E-02,3.827671846E-02, 0002267P0005836 +4.37095679E-18,-4.627952756E-02,3.827671846E-02,8.63946928E-18, 0002267P0005837 +-2.875984252E-02,4.921259843E-02,6.799209937E-18, 0002267P0005838 +-4.627952756E-02,4.921259843E-02,1.106772243E-17,0.,0.445,0., 0002267P0005839 +0.277771351; 0002267P0005840 +142,0,2267,2271,2281,3; 0002269P0005841 +102,4,2273,2275,2277,2279; 0002271P0005842 +110,0.445,0.277771351,0.,-1.599992361E-11,0.277771351,0.; 0002273P0005843 +110,0.,0.277771351,0.,0.,-2.380000086E-10,0.; 0002275P0005844 +110,0.,0.,0.,0.445,0.,0.; 0002277P0005845 +110,0.445,0.,0.,0.445,0.277771351,0.; 0002279P0005846 +102,4,2283,2285,2287,2289; 0002281P0005847 +110,-4.627952756E-02,4.921259843E-02,1.082494767E-17, 0002283P0005848 +-2.875984252E-02,4.921259843E-02,6.556435185E-18; 0002283P0005849 +110,-2.875984252E-02,4.921259843E-02,6.799209937E-18, 0002285P0005850 +-2.875984252E-02,3.827671846E-02,4.37095679E-18; 0002285P0005851 +110,-2.875984252E-02,3.827671846E-02,4.37095679E-18, 0002287P0005852 +-4.627952756E-02,3.827671846E-02,8.63946928E-18; 0002287P0005853 +110,-4.627952756E-02,3.827671846E-02,6.556435185E-18, 0002289P0005854 +-4.627952756E-02,4.921259843E-02,8.984688332E-18; 0002289P0005855 +144,2293,1,0,2295; 0002291P0005856 +128,1,1,1,1,0,0,1,0,0,-0.445,-0.445,7.512033272E-34, 0002293P0005857 +7.512033272E-34,0.,0.,0.277771351,0.277771351,1.,1.,1.,1., 0002293P0005858 +-4.627952756E-02,3.827671846E-02,5.118110236E-03, 0002293P0005859 +-2.875984252E-02,3.827671846E-02,5.118110236E-03, 0002293P0005860 +-4.627952756E-02,4.921259843E-02,5.118110236E-03, 0002293P0005861 +-2.875984252E-02,4.921259843E-02,5.118110236E-03,-0.445, 0002293P0005862 +7.512033272E-34,0.,0.277771351; 0002293P0005863 +142,0,2293,2297,2307,3; 0002295P0005864 +102,4,2299,2301,2303,2305; 0002297P0005865 +110,7.512033272E-34,0.277771351,0.,-0.445,0.277771351,0.; 0002299P0005866 +110,-0.445,0.277771351,0.,-0.445,-2.380000086E-10,0.; 0002301P0005867 +110,-0.445,0.,0.,1.599992361E-11,0.,0.; 0002303P0005868 +110,7.512033272E-34,0.,0.,7.512033272E-34,0.277771351,0.; 0002305P0005869 +102,4,2309,2311,2313,2315; 0002307P0005870 +110,-2.875984252E-02,4.921259843E-02,5.118110236E-03, 0002309P0005871 +-4.627952756E-02,4.921259843E-02,5.118110236E-03; 0002309P0005872 +110,-4.627952756E-02,4.921259843E-02,5.118110236E-03, 0002311P0005873 +-4.627952756E-02,3.827671846E-02,5.118110236E-03; 0002311P0005874 +110,-4.627952756E-02,3.827671846E-02,5.118110236E-03, 0002313P0005875 +-2.875984252E-02,3.827671846E-02,5.118110236E-03; 0002313P0005876 +110,-2.875984252E-02,3.827671846E-02,5.118110236E-03, 0002315P0005877 +-2.875984252E-02,4.921259843E-02,5.118110236E-03; 0002315P0005878 +144,2319,1,0,2321; 0002317P0005879 +128,1,1,1,1,0,0,1,0,0,-0.445,-0.445,0.,0.,-6.496383672E-02, 0002319P0005880 +-6.496383672E-02,2.742524241E-32,2.742524241E-32,1.,1.,1.,1., 0002319P0005881 +4.627952756E-02,2.545643679E-02,1.200787402E-02,2.875984252E-02, 0002319P0005882 +2.545643679E-02,1.200787402E-02,4.627952756E-02,2.801406815E-02, 0002319P0005883 +1.200787402E-02,2.875984252E-02,2.801406815E-02,1.200787402E-02, 0002319P0005884 +-0.445,0.,-6.496383672E-02,2.742524241E-32; 0002319P0005885 +142,0,2319,2323,2333,3; 0002321P0005886 +102,4,2325,2327,2329,2331; 0002323P0005887 +110,-0.445,2.742524241E-32,0.,-0.445,-6.496383654E-02,0.; 0002325P0005888 +110,-0.445,-6.496383672E-02,0.,1.599992361E-11,-6.496383672E-02, 0002327P0005889 +0.; 0002327P0005890 +110,0.,-6.496383672E-02,0.,0.,-1.760000479E-10,0.; 0002329P0005891 +110,0.,2.742524241E-32,0.,-0.445,2.742524241E-32,0.; 0002331P0005892 +102,4,2335,2337,2339,2341; 0002333P0005893 +110,4.627952756E-02,2.801406815E-02,1.200787402E-02, 0002335P0005894 +4.627952756E-02,2.545643679E-02,1.200787402E-02; 0002335P0005895 +110,4.627952756E-02,2.545643679E-02,1.200787402E-02, 0002337P0005896 +2.875984252E-02,2.545643679E-02,1.200787402E-02; 0002337P0005897 +110,2.875984252E-02,2.545643679E-02,1.200787402E-02, 0002339P0005898 +2.875984252E-02,2.801406815E-02,1.200787402E-02; 0002339P0005899 +110,2.875984252E-02,2.801406815E-02,1.200787402E-02, 0002341P0005900 +4.627952756E-02,2.801406815E-02,1.200787402E-02; 0002341P0005901 +144,2345,1,0,2351; 0002343P0005902 +120,2347,2349,5.108371491,6.283185308; 0002345P0005903 +110,7.688976378E-02,2.801406815E-02,1.062992126E-02, 0002347P0005904 +3.751968504E-02,2.801406815E-02,1.062992126E-02; 0002347P0005905 +110,2.875984252E-02,2.928539222E-02,1.116141811E-02, 0002349P0005906 +4.627952756E-02,2.928539222E-02,1.116141811E-02; 0002349P0005907 +142,0,2345,2353,2363,3; 0002351P0005908 +102,4,2355,2357,2359,2361; 0002353P0005909 +126,24,3,0,0,1,0,0.,0.,0.,0.,2.022727273E-02,4.045454546E-02, 0002355P0005910 +6.068181818E-02,8.090909091E-02,0.101136364,0.121363636, 0002355P0005911 +0.141590909,0.161818182,0.182045455,0.202272727,0.2225, 0002355P0005912 +0.242727273,0.262954545,0.283181818,0.303409091,0.323636364, 0002355P0005913 +0.343863636,0.364090909,0.384318182,0.404545455,0.424772727, 0002355P0005914 +0.445,0.445,0.445,0.445,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002355P0005915 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.283185307,0., 0002355P0005916 +0.984848485,6.283185307,0.,0.954545455,6.283185307,0., 0002355P0005917 +0.909090909,6.283185307,0.,0.863636364,6.283185307,0., 0002355P0005918 +0.818181818,6.283185307,0.,0.772727273,6.283185307,0., 0002355P0005919 +0.727272727,6.283185307,0.,0.681818182,6.283185307,0., 0002355P0005920 +0.636363636,6.283185307,0.,0.590909091,6.283185307,0., 0002355P0005921 +0.545454545,6.283185307,0.,0.5,6.283185307,0.,0.454545455, 0002355P0005922 +6.283185307,0.,0.409090909,6.283185307,0.,0.363636364, 0002355P0005923 +6.283185307,0.,0.318181818,6.283185307,0.,0.272727273, 0002355P0005924 +6.283185307,0.,0.227272727,6.283185307,0.,0.181818182, 0002355P0005925 +6.283185307,0.,0.136363636,6.283185307,0.,9.090909091E-02, 0002355P0005926 +6.283185307,0.,4.545454545E-02,6.283185307,0.,1.515151515E-02, 0002355P0005927 +6.283185307,0.,6.990017337E-16,6.283185307,0.,0.,0.445,0.,0.,1.; 0002355P0005928 +126,24,3,0,0,1,0,0.395982512,0.395982512,0.395982512, 0002357P0005929 +0.395982512,0.44938314,0.502783768,0.556184396,0.609585024, 0002357P0005930 +0.662985652,0.71638628,0.769786908,0.823187536,0.876588164, 0002357P0005931 +0.929988791,0.983389419,1.036790047,1.090190675,1.143591303, 0002357P0005932 +1.196991931,1.250392559,1.303793187,1.357193815,1.410594443, 0002357P0005933 +1.463995071,1.517395699,1.570796327,1.570796327,1.570796327, 0002357P0005934 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002357P0005935 +1.,1.,1.,1.,1.,1.,1.,1.,6.990017337E-16,6.283185307,0., 0002357P0005936 +7.889320351E-16,6.265385097,0.,7.242150773E-16,6.229784678,0., 0002357P0005937 +3.481867647E-16,6.176384051,0.,3.247727185E-16,6.122983423,0., 0002357P0005938 +6.667844036E-16,6.069582795,0.,6.91408818E-16,6.016182167,0., 0002357P0005939 +1.23226663E-16,5.962781539,0.,7.467281354E-16,5.909380911,0., 0002357P0005940 +1.901615093E-16,5.855980283,0.,1.683238081E-16,5.802579655,0., 0002357P0005941 +6.845684267E-16,5.749179027,0.,1.068476197E-17,5.695778399,0., 0002357P0005942 +5.653720692E-16,5.642377771,0.,3.897636133E-16,5.588977143,0., 0002357P0005943 +4.098373174E-16,5.535576515,0.,3.774781447E-16,5.482175887,0., 0002357P0005944 +3.591683191E-16,5.428775259,0.,3.370939818E-16,5.375374631,0., 0002357P0005945 +3.160283442E-16,5.321974004,0.,2.946924197E-16,5.268573376,0., 0002357P0005946 +2.734289431E-16,5.215172748,0.,2.521459614E-16,5.16177212,0., 0002357P0005947 +2.379610222E-16,5.126171701,0.,2.308680882E-16,5.108371492,0., 0002357P0005948 +0.395982512,1.570796327,0.,0.,1.; 0002357P0005949 +110,2.308680882E-16,5.108371492,0.,1.,5.108371492,0.; 0002359P0005950 +126,24,3,0,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0002361P0005951 +4.765789608,4.819190236,4.872590864,4.925991492,4.97939212, 0002361P0005952 +5.032792748,5.086193376,5.139594004,5.192994632,5.24639526, 0002361P0005953 +5.299795888,5.353196516,5.406597144,5.459997772,5.5133984, 0002361P0005954 +5.566799027,5.620199655,5.673600283,5.727000911,5.780401539, 0002361P0005955 +5.833802167,5.887202795,5.887202795,5.887202795,5.887202795,1., 0002361P0005956 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002361P0005957 +1.,1.,1.,1.,5.108371492,0.,1.,5.126171701,0.,1.,5.16177212,0., 0002361P0005958 +1.,5.215172748,0.,1.,5.268573376,0.,1.,5.321974004,0.,1., 0002361P0005959 +5.375374631,0.,1.,5.428775259,0.,1.,5.482175887,0.,1., 0002361P0005960 +5.535576515,0.,1.,5.588977143,0.,1.,5.642377771,0.,1., 0002361P0005961 +5.695778399,0.,1.,5.749179027,0.,1.,5.802579655,0.,1., 0002361P0005962 +5.855980283,0.,1.,5.909380911,0.,1.,5.962781539,0.,1., 0002361P0005963 +6.016182167,0.,1.,6.069582795,0.,1.,6.122983423,0.,1., 0002361P0005964 +6.176384051,0.,1.,6.229784678,0.,1.,6.265385097,0.,1., 0002361P0005965 +6.283185307,0.,4.71238898,5.887202795,0.,0.,1.; 0002361P0005966 +102,4,2365,2367,2371,2373; 0002363P0005967 +110,4.627952756E-02,2.928539222E-02,1.116141811E-02, 0002365P0005968 +2.875984252E-02,2.928539222E-02,1.116141811E-02; 0002365P0005969 +100,9.412070041E-19,1.511053421E-18,3.361453586E-19, 0002367P0005970 +1.271324071E-03,5.314968519E-04,1.816252065E-18,1.377952756E-03; 0002367P0005971 +124,1.224646E-16,-2.719260372E-32,1.,2.875984252E-02,1., 0002369P0005972 +-2.220446049E-16,-1.224646E-16,2.801406815E-02,2.220446049E-16, 0002369P0005973 +1.,8.125204719E-49,1.062992126E-02; 0002369P0005974 +110,2.875984252E-02,2.801406815E-02,1.200787402E-02, 0002371P0005975 +4.627952756E-02,2.801406815E-02,1.200787402E-02; 0002371P0005976 +100,3.431884042E-18,-7.128415858E-19,-3.361453586E-19, 0002373P0005977 +-4.076429428E-19,-1.377952756E-03,1.271324071E-03, 0002373P0005978 +-5.314968518E-04; 0002373P0005979 +124,1.224646E-16,2.719260372E-32,-1.,4.627952756E-02,1., 0002375P0005980 +2.220446049E-16,1.224646E-16,2.801406815E-02,2.220446049E-16, 0002375P0005981 +-1.,-8.125204719E-49,1.062992126E-02; 0002375P0005982 +144,2379,1,0,2381; 0002377P0005983 +128,1,1,1,1,0,0,1,0,0,0.,0.,0.445,0.445,-6.496383672E-02, 0002379P0005984 +-6.496383672E-02,1.097009696E-32,1.097009696E-32,1.,1.,1.,1., 0002379P0005985 +2.875984252E-02,2.545643679E-02,1.712598425E-02,4.627952756E-02, 0002379P0005986 +2.545643679E-02,1.712598425E-02,2.875984252E-02,2.801406815E-02, 0002379P0005987 +1.712598425E-02,4.627952756E-02,2.801406815E-02,1.712598425E-02, 0002379P0005988 +0.,0.445,-6.496383672E-02,1.097009696E-32; 0002379P0005989 +142,0,2379,2383,2393,3; 0002381P0005990 +102,4,2385,2387,2389,2391; 0002383P0005991 +110,0.,-6.496383672E-02,0.,0.445,-6.496383672E-02,0.; 0002385P0005992 +110,0.445,-6.496383672E-02,0.,0.445,-1.760000479E-10,0.; 0002387P0005993 +110,0.445,1.097009696E-32,0.,-1.599992361E-11,1.097009696E-32, 0002389P0005994 +0.; 0002389P0005995 +110,0.,1.097009696E-32,0.,0.,-6.496383654E-02,0.; 0002391P0005996 +102,4,2395,2397,2399,2401; 0002393P0005997 +110,2.875984252E-02,2.545643679E-02,1.712598425E-02, 0002395P0005998 +4.627952756E-02,2.545643679E-02,1.712598425E-02; 0002395P0005999 +110,4.627952756E-02,2.545643679E-02,1.712598425E-02, 0002397P0006000 +4.627952756E-02,2.801406815E-02,1.712598425E-02; 0002397P0006001 +110,4.627952756E-02,2.801406815E-02,1.712598425E-02, 0002399P0006002 +2.875984252E-02,2.801406815E-02,1.712598425E-02; 0002399P0006003 +110,2.875984252E-02,2.801406815E-02,1.712598425E-02, 0002401P0006004 +2.875984252E-02,2.545643679E-02,1.712598425E-02; 0002401P0006005 +144,2405,1,0,2407; 0002403P0006006 +128,1,1,1,1,0,0,1,0,0,-1.084202172E-16,-1.084202172E-16,0.445, 0002405P0006007 +0.445,-0.13,-0.13,5.421010862E-17,5.421010862E-17,1.,1.,1.,1., 0002405P0006008 +-2.875984252E-02,4.921259843E-02,5.463695987E-18, 0002405P0006009 +-4.627952756E-02,4.921259843E-02,5.463695987E-18, 0002405P0006010 +-2.875984252E-02,4.921259843E-02,5.118110236E-03, 0002405P0006011 +-4.627952756E-02,4.921259843E-02,5.118110236E-03, 0002405P0006012 +-1.084202172E-16,0.445,-0.13,5.421010862E-17; 0002405P0006013 +142,0,2405,2409,2419,3; 0002407P0006014 +102,4,2411,2413,2415,2417; 0002409P0006015 +110,-1.084202172E-16,5.421010862E-17,0.,-1.084202172E-16,-0.13, 0002411P0006016 +0.; 0002411P0006017 +110,-1.084202172E-16,-0.13,0.,0.445,-0.13,0.; 0002413P0006018 +110,0.445,-0.13,0.,0.445,-6.000200337E-12,0.; 0002415P0006019 +110,0.445,5.421010862E-17,0.,-1.599992361E-11,5.421010862E-17, 0002417P0006020 +0.; 0002417P0006021 +102,4,2421,2423,2425,2427; 0002419P0006022 +110,-2.875984252E-02,4.921259843E-02,5.118110236E-03, 0002421P0006023 +-2.875984252E-02,4.921259843E-02,5.463695987E-18; 0002421P0006024 +110,-2.875984252E-02,4.921259843E-02,6.556435185E-18, 0002423P0006025 +-4.627952756E-02,4.921259843E-02,1.082494767E-17; 0002423P0006026 +110,-4.627952756E-02,4.921259843E-02,9.237061026E-18, 0002425P0006027 +-4.627952756E-02,4.921259843E-02,5.118110236E-03; 0002425P0006028 +110,-4.627952756E-02,4.921259843E-02,5.118110236E-03, 0002427P0006029 +-2.875984252E-02,4.921259843E-02,5.118110236E-03; 0002427P0006030 +144,2431,1,0,2437; 0002429P0006031 +120,2433,2435,4.76474885,6.283185307; 0002431P0006032 +110,5.567216088E-02,1.377952756E-02,3.966535433E-02, 0002433P0006033 +5.567216088E-02,-2.559055118E-02,3.966535433E-02; 0002433P0006034 +110,5.567216088E-02,-2.37823971E-02,4.015748031E-02, 0002435P0006035 +5.567216088E-02,2.37823971E-02,4.015748031E-02; 0002435P0006036 +142,0,2431,2439,2449,3; 0002437P0006037 +102,4,2441,2443,2445,2447; 0002439P0006038 +110,4.135265565E-16,6.283185307,0.,1.906634887E-16,4.764748854, 0002441P0006039 +0.; 0002441P0006040 +126,24,3,0,0,1,0,0.,0.,0.,0.,5.491571694E-02,0.109831434, 0002443P0006041 +0.164747151,0.219662868,0.274578585,0.329494302,0.384410019, 0002443P0006042 +0.439325736,0.494241452,0.549157169,0.604072886,0.658988603, 0002443P0006043 +0.71390432,0.768820037,0.823735754,0.878651471,0.933567188, 0002443P0006044 +0.988482905,1.043398622,1.098314339,1.153230056,1.208145773, 0002443P0006045 +1.208145773,1.208145773,1.208145773,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002443P0006046 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.906634882E-16, 0002443P0006047 +4.76474885,0.,1.515151515E-02,4.76474885,0.,4.545454545E-02, 0002443P0006048 +4.76474885,0.,9.090909091E-02,4.76474885,0.,0.136363636, 0002443P0006049 +4.76474885,0.,0.181818182,4.76474885,0.,0.227272727,4.76474885, 0002443P0006050 +0.,0.272727273,4.76474885,0.,0.318181818,4.76474885,0., 0002443P0006051 +0.363636364,4.76474885,0.,0.409090909,4.76474885,0.,0.454545455, 0002443P0006052 +4.76474885,0.,0.5,4.76474885,0.,0.545454545,4.76474885,0., 0002443P0006053 +0.590909091,4.76474885,0.,0.636363636,4.76474885,0.,0.681818182, 0002443P0006054 +4.76474885,0.,0.727272727,4.76474885,0.,0.772727273,4.76474885, 0002443P0006055 +0.,0.818181818,4.76474885,0.,0.863636364,4.76474885,0., 0002443P0006056 +0.909090909,4.76474885,0.,0.954545455,4.76474885,0.,0.984848485, 0002443P0006057 +4.76474885,0.,1.,4.76474885,0.,0.,1.208145773,0.,0.,1.; 0002443P0006058 +110,1.,4.764748854,0.,1.,6.283185307,0.; 0002445P0006059 +126,24,3,0,0,1,0,0.,0.,0.,0.,5.491571694E-02,0.109831434, 0002447P0006060 +0.164747151,0.219662868,0.274578585,0.329494302,0.384410019, 0002447P0006061 +0.439325736,0.494241452,0.549157169,0.604072886,0.658988603, 0002447P0006062 +0.71390432,0.768820037,0.823735754,0.878651471,0.933567188, 0002447P0006063 +0.988482905,1.043398622,1.098314339,1.153230056,1.208145773, 0002447P0006064 +1.208145773,1.208145773,1.208145773,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002447P0006065 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.283185307, 0002447P0006066 +0.,0.984848485,6.283185307,0.,0.954545455,6.283185307,0., 0002447P0006067 +0.909090909,6.283185307,0.,0.863636364,6.283185307,0., 0002447P0006068 +0.818181818,6.283185307,0.,0.772727273,6.283185307,0., 0002447P0006069 +0.727272727,6.283185307,0.,0.681818182,6.283185307,0., 0002447P0006070 +0.636363636,6.283185307,0.,0.590909091,6.283185307,0., 0002447P0006071 +0.545454545,6.283185307,0.,0.5,6.283185307,0.,0.454545455, 0002447P0006072 +6.283185307,0.,0.409090909,6.283185307,0.,0.363636364, 0002447P0006073 +6.283185307,0.,0.318181818,6.283185307,0.,0.272727273, 0002447P0006074 +6.283185307,0.,0.227272727,6.283185307,0.,0.181818182, 0002447P0006075 +6.283185307,0.,0.136363636,6.283185307,0.,9.090909091E-02, 0002447P0006076 +6.283185307,0.,4.545454545E-02,6.283185307,0.,1.515151515E-02, 0002447P0006077 +6.283185307,0.,4.135265565E-16,6.283185307,0.,0.,1.208145773,0., 0002447P0006078 +0.,1.; 0002447P0006079 +102,4,2451,2455,2457,2461; 0002449P0006080 +100,-1.858937189E-18,2.911125518E-18,3.461763629E-18, 0002451P0006081 +2.911125518E-18,-4.921259843E-04,4.914515428E-04, 0002451P0006082 +-2.575588208E-05; 0002451P0006083 +124,1.,2.719260372E-32,1.224646E-16,5.567216088E-02, 0002453P0006084 +-1.224646E-16,2.220446049E-16,1.,-2.37823971E-02,0.,-1., 0002453P0006085 +2.220446049E-16,3.966535433E-02; 0002453P0006086 +110,5.616361242E-02,-2.37823971E-02,3.969111021E-02, 0002455P0006087 +5.616361242E-02,2.37823971E-02,3.969111021E-02; 0002455P0006088 +100,1.858937189E-18,2.911125518E-18,-3.461763629E-18, 0002457P0006089 +-4.914515428E-04,-2.575588208E-05,2.911125518E-18, 0002457P0006090 +-4.921259843E-04; 0002457P0006091 +124,-1.,2.719260372E-32,-1.224646E-16,5.567216088E-02, 0002459P0006092 +1.224646E-16,2.220446049E-16,-1.,2.37823971E-02,0.,-1., 0002459P0006093 +-2.220446049E-16,3.966535433E-02; 0002459P0006094 +110,5.567216088E-02,2.37823971E-02,4.015748031E-02, 0002461P0006095 +5.567216088E-02,-2.37823971E-02,4.015748031E-02; 0002461P0006096 +144,2465,1,0,2473; 0002463P0006097 +120,2467,2469,4.712339181,6.283185307; 0002465P0006098 +110,-5.643558129E-02,2.454581751E-02,4.340551181E-02, 0002467P0006099 +-5.643558129E-02,2.454581751E-02,4.03543307E-03; 0002467P0006100 +100,2.360487407E-18,2.667820306E-22,-9.390727478E-20, 0002469P0006101 +4.921259843E-04,-9.390727478E-20,2.558804393E-05, 0002469P0006102 +4.914603101E-04; 0002469P0006103 +124,-5.528734157E-21,2.490002551E-05,1.,-5.643558129E-02, 0002471P0006104 +1.376656216E-25,1.,-2.490002551E-05,2.454581751E-02,-1., 0002471P0006105 +4.70836284E-42,-5.528734159E-21,4.035433071E-03; 0002471P0006106 +142,0,2465,2475,2483,3; 0002473P0006107 +102,3,2477,2479,2481; 0002475P0006108 +126,24,3,1,0,1,0,4.71238898,4.71238898,4.71238898,4.71238898, 0002477P0006109 +4.781408819,4.850428658,4.919448496,4.988468335,5.057488173, 0002477P0006110 +5.126508012,5.195527851,5.264547689,5.333567528,5.402587366, 0002477P0006111 +5.471607205,5.540627044,5.609646882,5.678666721,5.747686559, 0002477P0006112 +5.816706398,5.885726237,5.954746075,6.023765914,6.092785752, 0002477P0006113 +6.161805591,6.23082543,6.23082543,6.23082543,6.23082543,1.,1., 0002477P0006114 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002477P0006115 +1.,1.,-2.785355922E-16,4.71238898,0.,2.300661287E-02, 0002477P0006116 +4.712386214,0.,6.901983859E-02,4.712387647,0.,0.138039677, 0002477P0006117 +4.712397797,0.,0.207059516,4.712355046,0.,0.276079354, 0002477P0006118 +4.712366501,0.,0.345099193,4.712363432,0.,0.414119032, 0002477P0006119 +4.712364254,0.,0.48313887,4.712364034,0.,0.552158709, 0002477P0006120 +4.712364093,0.,0.621178547,4.712364077,0.,0.690198386, 0002477P0006121 +4.712364081,0.,0.759218225,4.71236408,0.,0.828238063,4.71236408, 0002477P0006122 +0.,0.897257902,4.71236408,0.,0.96627774,4.71236408,0., 0002477P0006123 +1.035297579,4.71236408,0.,1.104317418,4.71236408,0.,1.173337256, 0002477P0006124 +4.71236408,0.,1.242357095,4.71236408,0.,1.311376934,4.71236408, 0002477P0006125 +0.,1.380396772,4.71236408,0.,1.449416611,4.71236408,0., 0002477P0006126 +1.495429836,4.71236408,0.,1.518436449,4.71236408,0.,4.71238898, 0002477P0006127 +6.23082543,0.,0.,1.; 0002477P0006128 +126,24,3,1,0,1,0,0.,0.,0.,0.,7.12753305E-02,0.142550661, 0002479P0006129 +0.213825992,0.285101322,0.356376653,0.427651983,0.498927314, 0002479P0006130 +0.570202644,0.641477975,0.712753305,0.784028636,0.855303966, 0002479P0006131 +0.926579297,0.997854627,1.069129958,1.140405288,1.211680619, 0002479P0006132 +1.282955949,1.35423128,1.42550661,1.496781941,1.568057271, 0002479P0006133 +1.568057271,1.568057271,1.568057271,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002479P0006134 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.518436449, 0002479P0006135 +4.71236408,0.,1.517194608,4.736122567,0.,1.514799883, 0002479P0006136 +4.783648992,0.,1.51149144,4.854966106,0.,1.508484,4.926310027, 0002479P0006137 +0.,1.505792861,4.997679331,0.,1.503431868,5.069072133,0., 0002479P0006138 +1.501413146,5.14048605,0.,1.499747085,5.211918274,0., 0002479P0006139 +1.498442265,5.283365615,0.,1.497505412,5.354824576,0., 0002479P0006140 +1.49694136,5.426291419,0.,1.496753018,5.497762244,0.,1.49694136, 0002479P0006141 +5.569233069,0.,1.497505412,5.640699912,0.,1.498442265, 0002479P0006142 +5.712158873,0.,1.499747085,5.783606214,0.,1.501413146, 0002479P0006143 +5.855038437,0.,1.503431868,5.926452355,0.,1.505792861, 0002479P0006144 +5.997845157,0.,1.508484,6.069214461,0.,1.51149144,6.140558381, 0002479P0006145 +0.,1.514799883,6.211875495,0.,1.517194608,6.259401921,0., 0002479P0006146 +1.518436449,6.283160407,0.,0.,1.568057271,-0.,-0.,1.; 0002479P0006147 +126,24,3,0,0,1,0,1.623156204,1.623156204,1.623156204, 0002481P0006148 +1.623156204,1.692176043,1.761195881,1.83021572,1.899235559, 0002481P0006149 +1.968255397,2.037275236,2.106295075,2.175314913,2.244334752, 0002481P0006150 +2.31335459,2.382374429,2.451394268,2.520414106,2.589433945, 0002481P0006151 +2.658453783,2.727473622,2.796493461,2.865513299,2.934533138, 0002481P0006152 +3.003552976,3.072572815,3.141592654,3.141592654,3.141592654, 0002481P0006153 +3.141592654,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002481P0006154 +1.,1.,1.,1.,1.,1.,1.,1.,1.518436449,6.283160407,0.,1.495429836, 0002481P0006155 +6.283160407,0.,1.449416611,6.283160407,0.,1.380396772, 0002481P0006156 +6.283160407,0.,1.311376934,6.283160407,0.,1.242357095, 0002481P0006157 +6.283160407,0.,1.173337256,6.283160407,0.,1.104317418, 0002481P0006158 +6.283160407,0.,1.035297579,6.283160407,0.,0.96627774, 0002481P0006159 +6.283160407,0.,0.897257902,6.283160407,0.,0.828238063, 0002481P0006160 +6.283160407,0.,0.759218225,6.283160407,0.,0.690198386, 0002481P0006161 +6.283160407,0.,0.621178547,6.283160407,0.,0.552158709, 0002481P0006162 +6.283160407,0.,0.48313887,6.283160407,0.,0.414119032, 0002481P0006163 +6.283160407,0.,0.345099193,6.283160407,0.,0.276079354, 0002481P0006164 +6.283160407,0.,0.207059516,6.283160407,0.,0.138039677, 0002481P0006165 +6.283160407,0.,6.901983861E-02,6.283160407,0.,2.300661287E-02, 0002481P0006166 +6.283160407,0.,-4.415303981E-21,6.283160407,0.,1.623156204, 0002481P0006167 +3.141592654,0.,0.,1.; 0002481P0006168 +102,3,2485,2489,2493; 0002483P0006169 +100,-1.643377309E-18,3.005032793E-18,1.333910153E-20, 0002485P0006170 +3.005032793E-18,-4.921259843E-04,4.914515427E-04, 0002485P0006171 +-2.575588394E-05; 0002485P0006172 +124,-1.,-2.719260372E-32,1.224646E-16,-5.643558129E-02, 0002487P0006173 +1.224646E-16,-2.220446049E-16,1.,2.454581751E-02,0.,1., 0002487P0006174 +2.220446049E-16,4.035433071E-03; 0002487P0006175 +100,2.913259774E-19,-2.894051468E-18,-1.666854127E-18, 0002489P0006176 +4.921259843E-04,-3.483106192E-18,1.347958815E-06, 0002489P0006177 +4.921241382E-04; 0002489P0006178 +124,-0.998629535,2.735308799E-03,5.226442765E-02, 0002491P0006179 +-5.643558129E-02,2.286283049E-12,0.998633281,-5.226442765E-02, 0002491P0006180 +2.454581751E-02,-5.23359562E-02,-5.219280107E-02,-0.997264689, 0002491P0006181 +4.035433071E-03; 0002491P0006182 +100,-1.895219546E-18,-7.950104513E-20,1.583618134E-18, 0002493P0006183 +-2.575588394E-05,4.914515427E-04,-4.921259843E-04, 0002493P0006184 +1.474771065E-18; 0002493P0006185 +124,-1.734723476E-14,-7.866654505E-16,-1.,-5.643558129E-02, 0002495P0006186 +-2.220446049E-16,1.,-7.866654505E-16,2.454581751E-02,1., 0002495P0006187 +2.220446049E-16,-1.734723476E-14,4.035433071E-03; 0002495P0006188 +144,2499,1,0,2505; 0002497P0006189 +120,2501,2503,4.764748858,6.283185307; 0002499P0006190 +110,9.68503937E-02,2.454581751E-02,4.035433071E-03, 0002501P0006191 +5.748031496E-02,2.454581751E-02,4.035433071E-03; 0002501P0006192 +110,-5.643558129E-02,2.454581751E-02,3.543307087E-03, 0002503P0006193 +5.643558129E-02,2.454581751E-02,3.543307087E-03; 0002503P0006194 +142,0,2499,2507,2517,3; 0002505P0006195 +102,4,2509,2511,2513,2515; 0002507P0006196 +126,24,3,0,0,1,0,5.23598777E-02,5.23598777E-02,5.23598777E-02, 0002509P0006197 +5.23598777E-02,0.121379716,0.190399555,0.259419393,0.328439232, 0002509P0006198 +0.397459071,0.466478909,0.535498748,0.604518586,0.673538425, 0002509P0006199 +0.742558264,0.811578102,0.880597941,0.949617779,1.018637618, 0002509P0006200 +1.087657457,1.156677295,1.225697134,1.294716972,1.363736811, 0002509P0006201 +1.43275665,1.501776488,1.570796327,1.570796327,1.570796327, 0002509P0006202 +1.570796327,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002509P0006203 +1.,1.,1.,1.,1.,1.,1.,1.,1.,4.764748858,0.,1.,4.787755471,0.,1., 0002509P0006204 +4.833768697,0.,1.,4.902788535,0.,1.,4.971808374,0.,1., 0002509P0006205 +5.040828213,0.,1.,5.109848051,0.,1.,5.17886789,0.,1., 0002509P0006206 +5.247887728,0.,1.,5.316907567,0.,1.,5.385927406,0.,1., 0002509P0006207 +5.454947244,0.,1.,5.523967083,0.,1.,5.592986921,0.,1., 0002509P0006208 +5.66200676,0.,1.,5.731026599,0.,1.,5.800046437,0.,1., 0002509P0006209 +5.869066276,0.,1.,5.938086114,0.,1.,6.007105953,0.,1., 0002509P0006210 +6.076125792,0.,1.,6.14514563,0.,1.,6.214165469,0.,1., 0002509P0006211 +6.260178694,0.,1.,6.283185307,0.,5.23598777E-02,1.570796327,0., 0002509P0006212 +0.,1.; 0002509P0006213 +126,24,3,0,0,1,0,0.,0.,0.,0.,0.130314888,0.260629775, 0002511P0006214 +0.390944663,0.521259551,0.651574439,0.781889326,0.912204214, 0002511P0006215 +1.042519102,1.172833989,1.303148877,1.433463765,1.563778652, 0002511P0006216 +1.69409354,1.824408428,1.954723316,2.085038203,2.215353091, 0002511P0006217 +2.345667979,2.475982866,2.606297754,2.736612642,2.86692753, 0002511P0006218 +2.86692753,2.86692753,2.86692753,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002511P0006219 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,6.283185307,0., 0002511P0006220 +0.984848485,6.283185307,0.,0.954545455,6.283185307,0., 0002511P0006221 +0.909090909,6.283185307,0.,0.863636364,6.283185307,0., 0002511P0006222 +0.818181818,6.283185307,0.,0.772727273,6.283185307,0., 0002511P0006223 +0.727272727,6.283185307,0.,0.681818182,6.283185307,0., 0002511P0006224 +0.636363636,6.283185307,0.,0.590909091,6.283185307,0., 0002511P0006225 +0.545454545,6.283185307,0.,0.5,6.283185307,0.,0.454545455, 0002511P0006226 +6.283185307,0.,0.409090909,6.283185307,0.,0.363636364, 0002511P0006227 +6.283185307,0.,0.318181818,6.283185307,0.,0.272727273, 0002511P0006228 +6.283185307,0.,0.227272727,6.283185307,0.,0.181818182, 0002511P0006229 +6.283185307,0.,0.136363636,6.283185307,0.,9.090909091E-02, 0002511P0006230 +6.283185307,0.,4.545454545E-02,6.283185307,0.,1.515151515E-02, 0002511P0006231 +6.283185307,0.,3.48526676E-16,6.283185307,0.,0.,2.86692753,0., 0002511P0006232 +0.,1.; 0002511P0006233 +126,24,3,0,0,1,0,3.141592654,3.141592654,3.141592654, 0002513P0006234 +3.141592654,3.210612492,3.279632331,3.348652169,3.417672008, 0002513P0006235 +3.486691847,3.555711685,3.624731524,3.693751362,3.762771201, 0002513P0006236 +3.83179104,3.900810878,3.969830717,4.038850555,4.107870394, 0002513P0006237 +4.176890233,4.245910071,4.31492991,4.383949748,4.452969587, 0002513P0006238 +4.521989425,4.591009264,4.660029103,4.660029103,4.660029103, 0002513P0006239 +4.660029103,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0002513P0006240 +1.,1.,1.,1.,1.,1.,1.,1.,4.259770484E-16,6.283185307,0., 0002513P0006241 +3.169841133E-16,6.260178694,0.,3.023586555E-16,6.214165469,0., 0002513P0006242 +5.3181507E-16,6.14514563,0.,5.397185462E-16,6.076125792,0., 0002513P0006243 +2.530347063E-16,6.007105953,0.,4.368485968E-16,5.938086114,0., 0002513P0006244 +4.273655887E-16,5.869066276,0.,2.558702094E-16,5.800046437,0., 0002513P0006245 +4.610189768E-16,5.731026599,0.,2.510079997E-16,5.66200676,0., 0002513P0006246 +3.955873864E-16,5.592986921,0.,4.663695274E-16,5.523967083,0., 0002513P0006247 +4.77750291E-16,5.454947244,0.,3.358315731E-16,5.385927406,0., 0002513P0006248 +4.018099243E-16,5.316907567,0.,2.542017155E-16,5.247887728,0., 0002513P0006249 +2.883404431E-16,5.17886789,0.,2.737802201E-16,5.109848051,0., 0002513P0006250 +2.722688637E-16,5.040828213,0.,2.672609887E-16,4.971808374,0., 0002513P0006251 +2.631903241E-16,4.902788535,0.,2.588673345E-16,4.833768697,0., 0002513P0006252 +2.56033403E-16,4.787755471,0.,2.546104295E-16,4.764748858,0., 0002513P0006253 +3.141592654,4.660029103,0.,0.,1.; 0002513P0006254 +110,2.546104295E-16,4.764748858,0.,1.,4.764748858,0.; 0002515P0006255 +102,4,2519,2523,2525,2529; 0002517P0006256 +100,1.037248535E-18,3.158699243E-19,-1.333910153E-20, 0002519P0006257 +4.914515427E-04,2.575588405E-05,2.070228558E-19,4.921259843E-04; 0002519P0006258 +124,1.749350577E-14,2.719260402E-32,-1.,5.643558129E-02,1., 0002521P0006259 +2.220446049E-16,1.749350577E-14,2.454581751E-02,2.220446049E-16, 0002521P0006260 +-1.,3.857145973E-30,4.035433071E-03; 0002521P0006261 +110,5.643558129E-02,2.454581751E-02,3.543307087E-03, 0002523P0006262 +-5.643558129E-02,2.454581751E-02,3.543307087E-03; 0002523P0006263 +100,1.895219546E-18,-7.950104513E-20,-1.583618134E-18, 0002525P0006264 +-4.921259843E-04,-1.474771065E-18,-2.575588405E-05, 0002525P0006265 +-4.914515427E-04; 0002525P0006266 +124,-1.734723476E-14,7.866654505E-16,1.,-5.643558129E-02, 0002527P0006267 +-2.220446049E-16,-1.,7.866654505E-16,2.454581751E-02,1., 0002527P0006268 +-2.220446049E-16,1.734723476E-14,4.035433071E-03; 0002527P0006269 +110,-5.643558129E-02,2.503726905E-02,4.009677187E-03, 0002529P0006270 +5.643558129E-02,2.503726905E-02,4.009677187E-03; 0002529P0006271 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002531P0006272 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002533P0006273 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002535P0006274 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002537P0006275 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002539P0006276 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002541P0006277 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002543P0006278 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002545P0006279 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002547P0006280 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002549P0006281 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002551P0006282 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002553P0006283 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002555P0006284 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002557P0006285 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002559P0006286 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002561P0006287 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002563P0006288 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002565P0006289 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002567P0006290 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002569P0006291 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002571P0006292 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002573P0006293 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002575P0006294 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002577P0006295 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002579P0006296 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002581P0006297 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002583P0006298 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002585P0006299 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002587P0006300 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002589P0006301 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002591P0006302 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002593P0006303 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002595P0006304 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002597P0006305 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002599P0006306 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002601P0006307 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002603P0006308 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002605P0006309 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002607P0006310 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002609P0006311 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002611P0006312 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002613P0006313 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002615P0006314 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002617P0006315 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002619P0006316 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002621P0006317 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002623P0006318 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002625P0006319 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002627P0006320 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002629P0006321 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002631P0006322 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002633P0006323 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002635P0006324 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002637P0006325 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002639P0006326 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002641P0006327 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002643P0006328 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002645P0006329 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002647P0006330 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002649P0006331 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002651P0006332 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002653P0006333 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002655P0006334 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002657P0006335 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002659P0006336 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002661P0006337 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002663P0006338 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002665P0006339 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002667P0006340 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002669P0006341 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002671P0006342 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002673P0006343 +314,80.000001192,80.000001192,80.000001192,6HGRAY80; 0002675P0006344 +S 1G 4D 2676P 6344 T0000001 diff --git a/src/Mod/Idf/lib/SOT404.igs b/src/Mod/Idf/lib/SOT404.igs new file mode 100644 index 000000000..3f8199a73 --- /dev/null +++ b/src/Mod/Idf/lib/SOT404.igs @@ -0,0 +1,4419 @@ + S0000001 +,,31HOpen CASCADE IGES processor 6.5,13HFilename.iges, G0000001 +16HOpen CASCADE 6.5,31HOpen CASCADE IGES processor 6.5,32,308,15,308,15,G0000002 +,1.,1,4HINCH,1,0.000394,15H20120128.235219,3.93739E-09,0.312438,3Htux,, G0000003 +11,0,15H20120128.235219,; G0000004 + 402 1 0 0 0 0 0 000000000D0000001 + 402 0 0 1 1 0D0000002 + 402 2 0 0 0 0 0 000020000D0000003 + 402 0 0 2 1 0D0000004 + 144 4 0 0 0 0 0 000020000D0000005 + 144 0 0 1 0 0D0000006 + 128 5 0 0 0 0 0 000010000D0000007 + 128 0 0 6 0 0D0000008 + 142 11 0 0 0 0 0 000010500D0000009 + 142 0 0 1 0 0D0000010 + 102 12 0 0 0 0 0 000010000D0000011 + 102 0 0 1 0 0D0000012 + 110 13 0 0 0 0 0 000010000D0000013 + 110 0 0 1 0 0D0000014 + 110 14 0 0 0 0 0 000010000D0000015 + 110 0 0 2 0 0D0000016 + 110 16 0 0 0 0 0 000010000D0000017 + 110 0 0 1 0 0D0000018 + 110 17 0 0 0 0 0 000010000D0000019 + 110 0 0 1 0 0D0000020 + 102 18 0 0 0 0 0 000010000D0000021 + 102 0 0 1 0 0D0000022 + 110 19 0 0 0 0 0 000010000D0000023 + 110 0 0 2 0 0D0000024 + 110 21 0 0 0 0 0 000010000D0000025 + 110 0 0 2 0 0D0000026 + 110 23 0 0 0 0 0 000010000D0000027 + 110 0 0 2 0 0D0000028 + 110 25 0 0 0 0 0 000010000D0000029 + 110 0 0 2 0 0D0000030 + 144 27 0 0 0 0 0 000020000D0000031 + 144 0 0 1 0 0D0000032 + 128 28 0 0 0 0 0 000010000D0000033 + 128 0 0 6 0 0D0000034 + 142 34 0 0 0 0 0 000010500D0000035 + 142 0 0 1 0 0D0000036 + 102 35 0 0 0 0 0 000010000D0000037 + 102 0 0 1 0 0D0000038 + 110 36 0 0 0 0 0 000010000D0000039 + 110 0 0 1 0 0D0000040 + 110 37 0 0 0 0 0 000010000D0000041 + 110 0 0 2 0 0D0000042 + 110 39 0 0 0 0 0 000010000D0000043 + 110 0 0 1 0 0D0000044 + 110 40 0 0 0 0 0 000010000D0000045 + 110 0 0 1 0 0D0000046 + 102 41 0 0 0 0 0 000010000D0000047 + 102 0 0 1 0 0D0000048 + 110 42 0 0 0 0 0 000010000D0000049 + 110 0 0 2 0 0D0000050 + 110 44 0 0 0 0 0 000010000D0000051 + 110 0 0 2 0 0D0000052 + 110 46 0 0 0 0 0 000010000D0000053 + 110 0 0 2 0 0D0000054 + 110 48 0 0 0 0 0 000010000D0000055 + 110 0 0 2 0 0D0000056 + 144 50 0 0 0 0 0 000020000D0000057 + 144 0 0 1 0 0D0000058 + 128 51 0 0 0 0 0 000010000D0000059 + 128 0 0 6 0 0D0000060 + 142 57 0 0 0 0 0 000010500D0000061 + 142 0 0 1 0 0D0000062 + 102 58 0 0 0 0 0 000010000D0000063 + 102 0 0 1 0 0D0000064 + 110 59 0 0 0 0 0 000010000D0000065 + 110 0 0 2 0 0D0000066 + 110 61 0 0 0 0 0 000010000D0000067 + 110 0 0 1 0 0D0000068 + 110 62 0 0 0 0 0 000010000D0000069 + 110 0 0 1 0 0D0000070 + 110 63 0 0 0 0 0 000010000D0000071 + 110 0 0 1 0 0D0000072 + 110 64 0 0 0 0 0 000010000D0000073 + 110 0 0 1 0 0D0000074 + 110 65 0 0 0 0 0 000010000D0000075 + 110 0 0 1 0 0D0000076 + 110 66 0 0 0 0 0 000010000D0000077 + 110 0 0 1 0 0D0000078 + 110 67 0 0 0 0 0 000010000D0000079 + 110 0 0 1 0 0D0000080 + 110 68 0 0 0 0 0 000010000D0000081 + 110 0 0 1 0 0D0000082 + 110 69 0 0 0 0 0 000010000D0000083 + 110 0 0 1 0 0D0000084 + 110 70 0 0 0 0 0 000010000D0000085 + 110 0 0 1 0 0D0000086 + 110 71 0 0 0 0 0 000010000D0000087 + 110 0 0 1 0 0D0000088 + 110 72 0 0 0 0 0 000010000D0000089 + 110 0 0 1 0 0D0000090 + 110 73 0 0 0 0 0 000010000D0000091 + 110 0 0 1 0 0D0000092 + 110 74 0 0 0 0 0 000010000D0000093 + 110 0 0 1 0 0D0000094 + 110 75 0 0 0 0 0 000010000D0000095 + 110 0 0 1 0 0D0000096 + 110 76 0 0 0 0 0 000010000D0000097 + 110 0 0 1 0 0D0000098 + 110 77 0 0 0 0 0 000010000D0000099 + 110 0 0 1 0 0D0000100 + 102 78 0 0 0 0 0 000010000D0000101 + 102 0 0 2 0 0D0000102 + 110 80 0 0 0 0 0 000010000D0000103 + 110 0 0 2 0 0D0000104 + 110 82 0 0 0 0 0 000010000D0000105 + 110 0 0 2 0 0D0000106 + 110 84 0 0 0 0 0 000010000D0000107 + 110 0 0 2 0 0D0000108 + 110 86 0 0 0 0 0 000010000D0000109 + 110 0 0 2 0 0D0000110 + 110 88 0 0 0 0 0 000010000D0000111 + 110 0 0 2 0 0D0000112 + 110 90 0 0 0 0 0 000010000D0000113 + 110 0 0 2 0 0D0000114 + 110 92 0 0 0 0 0 000010000D0000115 + 110 0 0 2 0 0D0000116 + 110 94 0 0 0 0 0 000010000D0000117 + 110 0 0 2 0 0D0000118 + 110 96 0 0 0 0 0 000010000D0000119 + 110 0 0 2 0 0D0000120 + 110 98 0 0 0 0 0 000010000D0000121 + 110 0 0 2 0 0D0000122 + 110 100 0 0 0 0 0 000010000D0000123 + 110 0 0 2 0 0D0000124 + 110 102 0 0 0 0 0 000010000D0000125 + 110 0 0 2 0 0D0000126 + 110 104 0 0 0 0 0 000010000D0000127 + 110 0 0 2 0 0D0000128 + 110 106 0 0 0 0 0 000010000D0000129 + 110 0 0 2 0 0D0000130 + 110 108 0 0 0 0 0 000010000D0000131 + 110 0 0 2 0 0D0000132 + 110 110 0 0 0 0 0 000010000D0000133 + 110 0 0 2 0 0D0000134 + 110 112 0 0 0 0 0 000010000D0000135 + 110 0 0 2 0 0D0000136 + 110 114 0 0 0 0 0 000010000D0000137 + 110 0 0 2 0 0D0000138 + 144 116 0 0 0 0 0 000020000D0000139 + 144 0 0 1 0 0D0000140 + 128 117 0 0 0 0 0 000010000D0000141 + 128 0 0 6 0 0D0000142 + 142 123 0 0 0 0 0 000010500D0000143 + 142 0 0 1 0 0D0000144 + 102 124 0 0 0 0 0 000010000D0000145 + 102 0 0 1 0 0D0000146 + 110 125 0 0 0 0 0 000010000D0000147 + 110 0 0 1 0 0D0000148 + 110 126 0 0 0 0 0 000010000D0000149 + 110 0 0 1 0 0D0000150 + 110 127 0 0 0 0 0 000010000D0000151 + 110 0 0 1 0 0D0000152 + 110 128 0 0 0 0 0 000010000D0000153 + 110 0 0 1 0 0D0000154 + 102 129 0 0 0 0 0 000010000D0000155 + 102 0 0 1 0 0D0000156 + 110 130 0 0 0 0 0 000010000D0000157 + 110 0 0 2 0 0D0000158 + 110 132 0 0 0 0 0 000010000D0000159 + 110 0 0 2 0 0D0000160 + 110 134 0 0 0 0 0 000010000D0000161 + 110 0 0 2 0 0D0000162 + 110 136 0 0 0 0 0 000010000D0000163 + 110 0 0 2 0 0D0000164 + 144 138 0 0 0 0 0 000020000D0000165 + 144 0 0 1 0 0D0000166 + 128 139 0 0 0 0 0 000010000D0000167 + 128 0 0 7 0 0D0000168 + 142 146 0 0 0 0 0 000010500D0000169 + 142 0 0 1 0 0D0000170 + 102 147 0 0 0 0 0 000010000D0000171 + 102 0 0 2 0 0D0000172 + 110 149 0 0 0 0 0 000010000D0000173 + 110 0 0 2 0 0D0000174 + 110 151 0 0 0 0 0 000010000D0000175 + 110 0 0 1 0 0D0000176 + 110 152 0 0 0 0 0 000010000D0000177 + 110 0 0 1 0 0D0000178 + 110 153 0 0 0 0 0 000010000D0000179 + 110 0 0 1 0 0D0000180 + 110 154 0 0 0 0 0 000010000D0000181 + 110 0 0 1 0 0D0000182 + 110 155 0 0 0 0 0 000010000D0000183 + 110 0 0 1 0 0D0000184 + 110 156 0 0 0 0 0 000010000D0000185 + 110 0 0 1 0 0D0000186 + 110 157 0 0 0 0 0 000010000D0000187 + 110 0 0 1 0 0D0000188 + 110 158 0 0 0 0 0 000010000D0000189 + 110 0 0 1 0 0D0000190 + 110 159 0 0 0 0 0 000010000D0000191 + 110 0 0 1 0 0D0000192 + 110 160 0 0 0 0 0 000010000D0000193 + 110 0 0 1 0 0D0000194 + 110 161 0 0 0 0 0 000010000D0000195 + 110 0 0 1 0 0D0000196 + 110 162 0 0 0 0 0 000010000D0000197 + 110 0 0 1 0 0D0000198 + 110 163 0 0 0 0 0 000010000D0000199 + 110 0 0 1 0 0D0000200 + 110 164 0 0 0 0 0 000010000D0000201 + 110 0 0 1 0 0D0000202 + 110 165 0 0 0 0 0 000010000D0000203 + 110 0 0 1 0 0D0000204 + 110 166 0 0 0 0 0 000010000D0000205 + 110 0 0 1 0 0D0000206 + 110 167 0 0 0 0 0 000010000D0000207 + 110 0 0 1 0 0D0000208 + 102 168 0 0 0 0 0 000010000D0000209 + 102 0 0 2 0 0D0000210 + 110 170 0 0 0 0 0 000010000D0000211 + 110 0 0 2 0 0D0000212 + 110 172 0 0 0 0 0 000010000D0000213 + 110 0 0 2 0 0D0000214 + 110 174 0 0 0 0 0 000010000D0000215 + 110 0 0 2 0 0D0000216 + 110 176 0 0 0 0 0 000010000D0000217 + 110 0 0 2 0 0D0000218 + 110 178 0 0 0 0 0 000010000D0000219 + 110 0 0 2 0 0D0000220 + 110 180 0 0 0 0 0 000010000D0000221 + 110 0 0 2 0 0D0000222 + 110 182 0 0 0 0 0 000010000D0000223 + 110 0 0 2 0 0D0000224 + 110 184 0 0 0 0 0 000010000D0000225 + 110 0 0 2 0 0D0000226 + 110 186 0 0 0 0 0 000010000D0000227 + 110 0 0 2 0 0D0000228 + 110 188 0 0 0 0 0 000010000D0000229 + 110 0 0 2 0 0D0000230 + 110 190 0 0 0 0 0 000010000D0000231 + 110 0 0 2 0 0D0000232 + 110 192 0 0 0 0 0 000010000D0000233 + 110 0 0 2 0 0D0000234 + 110 194 0 0 0 0 0 000010000D0000235 + 110 0 0 2 0 0D0000236 + 110 196 0 0 0 0 0 000010000D0000237 + 110 0 0 2 0 0D0000238 + 110 198 0 0 0 0 0 000010000D0000239 + 110 0 0 2 0 0D0000240 + 110 200 0 0 0 0 0 000010000D0000241 + 110 0 0 2 0 0D0000242 + 110 202 0 0 0 0 0 000010000D0000243 + 110 0 0 2 0 0D0000244 + 110 204 0 0 0 0 0 000010000D0000245 + 110 0 0 2 0 0D0000246 + 144 206 0 0 0 0 0 000020000D0000247 + 144 0 0 1 0 0D0000248 + 128 207 0 0 0 0 0 000010000D0000249 + 128 0 0 6 0 0D0000250 + 142 213 0 0 0 0 0 000010500D0000251 + 142 0 0 1 0 0D0000252 + 102 214 0 0 0 0 0 000010000D0000253 + 102 0 0 1 0 0D0000254 + 110 215 0 0 0 0 0 000010000D0000255 + 110 0 0 1 0 0D0000256 + 110 216 0 0 0 0 0 000010000D0000257 + 110 0 0 2 0 0D0000258 + 110 218 0 0 0 0 0 000010000D0000259 + 110 0 0 1 0 0D0000260 + 110 219 0 0 0 0 0 000010000D0000261 + 110 0 0 1 0 0D0000262 + 102 220 0 0 0 0 0 000010000D0000263 + 102 0 0 1 0 0D0000264 + 110 221 0 0 0 0 0 000010000D0000265 + 110 0 0 2 0 0D0000266 + 110 223 0 0 0 0 0 000010000D0000267 + 110 0 0 2 0 0D0000268 + 110 225 0 0 0 0 0 000010000D0000269 + 110 0 0 2 0 0D0000270 + 110 227 0 0 0 0 0 000010000D0000271 + 110 0 0 2 0 0D0000272 + 144 229 0 0 0 0 0 000020000D0000273 + 144 0 0 1 0 0D0000274 + 128 230 0 0 0 0 0 000010000D0000275 + 128 0 0 6 0 0D0000276 + 142 236 0 0 0 0 0 000010500D0000277 + 142 0 0 1 0 0D0000278 + 102 237 0 0 0 0 0 000010000D0000279 + 102 0 0 1 0 0D0000280 + 110 238 0 0 0 0 0 000010000D0000281 + 110 0 0 1 0 0D0000282 + 110 239 0 0 0 0 0 000010000D0000283 + 110 0 0 2 0 0D0000284 + 110 241 0 0 0 0 0 000010000D0000285 + 110 0 0 1 0 0D0000286 + 110 242 0 0 0 0 0 000010000D0000287 + 110 0 0 1 0 0D0000288 + 102 243 0 0 0 0 0 000010000D0000289 + 102 0 0 1 0 0D0000290 + 110 244 0 0 0 0 0 000010000D0000291 + 110 0 0 2 0 0D0000292 + 110 246 0 0 0 0 0 000010000D0000293 + 110 0 0 2 0 0D0000294 + 110 248 0 0 0 0 0 000010000D0000295 + 110 0 0 2 0 0D0000296 + 110 250 0 0 0 0 0 000010000D0000297 + 110 0 0 2 0 0D0000298 + 144 252 0 0 0 0 0 000020000D0000299 + 144 0 0 1 0 0D0000300 + 128 253 0 0 0 0 0 000010000D0000301 + 128 0 0 7 0 0D0000302 + 142 260 0 0 0 0 0 000010500D0000303 + 142 0 0 1 0 0D0000304 + 102 261 0 0 0 0 0 000010000D0000305 + 102 0 0 1 0 0D0000306 + 110 262 0 0 0 0 0 000010000D0000307 + 110 0 0 1 0 0D0000308 + 110 263 0 0 0 0 0 000010000D0000309 + 110 0 0 2 0 0D0000310 + 110 265 0 0 0 0 0 000010000D0000311 + 110 0 0 1 0 0D0000312 + 110 266 0 0 0 0 0 000010000D0000313 + 110 0 0 1 0 0D0000314 + 102 267 0 0 0 0 0 000010000D0000315 + 102 0 0 1 0 0D0000316 + 110 268 0 0 0 0 0 000010000D0000317 + 110 0 0 2 0 0D0000318 + 110 270 0 0 0 0 0 000010000D0000319 + 110 0 0 2 0 0D0000320 + 110 272 0 0 0 0 0 000010000D0000321 + 110 0 0 2 0 0D0000322 + 110 274 0 0 0 0 0 000010000D0000323 + 110 0 0 2 0 0D0000324 + 144 276 0 0 0 0 0 000020000D0000325 + 144 0 0 1 0 0D0000326 + 128 277 0 0 0 0 0 000010000D0000327 + 128 0 0 7 0 0D0000328 + 142 284 0 0 0 0 0 000010500D0000329 + 142 0 0 1 0 0D0000330 + 102 285 0 0 0 0 0 000010000D0000331 + 102 0 0 1 0 0D0000332 + 110 286 0 0 0 0 0 000010000D0000333 + 110 0 0 2 0 0D0000334 + 110 288 0 0 0 0 0 000010000D0000335 + 110 0 0 2 0 0D0000336 + 110 290 0 0 0 0 0 000010000D0000337 + 110 0 0 1 0 0D0000338 + 110 291 0 0 0 0 0 000010000D0000339 + 110 0 0 1 0 0D0000340 + 102 292 0 0 0 0 0 000010000D0000341 + 102 0 0 1 0 0D0000342 + 110 293 0 0 0 0 0 000010000D0000343 + 110 0 0 2 0 0D0000344 + 110 295 0 0 0 0 0 000010000D0000345 + 110 0 0 2 0 0D0000346 + 110 297 0 0 0 0 0 000010000D0000347 + 110 0 0 2 0 0D0000348 + 110 299 0 0 0 0 0 000010000D0000349 + 110 0 0 2 0 0D0000350 + 144 301 0 0 0 0 0 000020000D0000351 + 144 0 0 1 0 0D0000352 + 128 302 0 0 0 0 0 000010000D0000353 + 128 0 0 7 0 0D0000354 + 142 309 0 0 0 0 0 000010500D0000355 + 142 0 0 1 0 0D0000356 + 102 310 0 0 0 0 0 000010000D0000357 + 102 0 0 1 0 0D0000358 + 110 311 0 0 0 0 0 000010000D0000359 + 110 0 0 1 0 0D0000360 + 110 312 0 0 0 0 0 000010000D0000361 + 110 0 0 2 0 0D0000362 + 110 314 0 0 0 0 0 000010000D0000363 + 110 0 0 1 0 0D0000364 + 110 315 0 0 0 0 0 000010000D0000365 + 110 0 0 1 0 0D0000366 + 102 316 0 0 0 0 0 000010000D0000367 + 102 0 0 1 0 0D0000368 + 110 317 0 0 0 0 0 000010000D0000369 + 110 0 0 2 0 0D0000370 + 110 319 0 0 0 0 0 000010000D0000371 + 110 0 0 2 0 0D0000372 + 110 321 0 0 0 0 0 000010000D0000373 + 110 0 0 2 0 0D0000374 + 110 323 0 0 0 0 0 000010000D0000375 + 110 0 0 2 0 0D0000376 + 144 325 0 0 0 0 0 000020000D0000377 + 144 0 0 1 0 0D0000378 + 128 326 0 0 0 0 0 000010000D0000379 + 128 0 0 6 0 0D0000380 + 142 332 0 0 0 0 0 000010500D0000381 + 142 0 0 1 0 0D0000382 + 102 333 0 0 0 0 0 000010000D0000383 + 102 0 0 1 0 0D0000384 + 110 334 0 0 0 0 0 000010000D0000385 + 110 0 0 1 0 0D0000386 + 110 335 0 0 0 0 0 000010000D0000387 + 110 0 0 2 0 0D0000388 + 110 337 0 0 0 0 0 000010000D0000389 + 110 0 0 1 0 0D0000390 + 110 338 0 0 0 0 0 000010000D0000391 + 110 0 0 1 0 0D0000392 + 102 339 0 0 0 0 0 000010000D0000393 + 102 0 0 1 0 0D0000394 + 110 340 0 0 0 0 0 000010000D0000395 + 110 0 0 2 0 0D0000396 + 110 342 0 0 0 0 0 000010000D0000397 + 110 0 0 2 0 0D0000398 + 110 344 0 0 0 0 0 000010000D0000399 + 110 0 0 2 0 0D0000400 + 110 346 0 0 0 0 0 000010000D0000401 + 110 0 0 2 0 0D0000402 + 144 348 0 0 0 0 0 000020000D0000403 + 144 0 0 1 0 0D0000404 + 128 349 0 0 0 0 0 000010000D0000405 + 128 0 0 6 0 0D0000406 + 142 355 0 0 0 0 0 000010500D0000407 + 142 0 0 1 0 0D0000408 + 102 356 0 0 0 0 0 000010000D0000409 + 102 0 0 1 0 0D0000410 + 110 357 0 0 0 0 0 000010000D0000411 + 110 0 0 1 0 0D0000412 + 110 358 0 0 0 0 0 000010000D0000413 + 110 0 0 1 0 0D0000414 + 110 359 0 0 0 0 0 000010000D0000415 + 110 0 0 1 0 0D0000416 + 110 360 0 0 0 0 0 000010000D0000417 + 110 0 0 1 0 0D0000418 + 102 361 0 0 0 0 0 000010000D0000419 + 102 0 0 1 0 0D0000420 + 110 362 0 0 0 0 0 000010000D0000421 + 110 0 0 2 0 0D0000422 + 110 364 0 0 0 0 0 000010000D0000423 + 110 0 0 2 0 0D0000424 + 110 366 0 0 0 0 0 000010000D0000425 + 110 0 0 2 0 0D0000426 + 110 368 0 0 0 0 0 000010000D0000427 + 110 0 0 2 0 0D0000428 + 144 370 0 0 0 0 0 000020000D0000429 + 144 0 0 1 0 0D0000430 + 128 371 0 0 0 0 0 000010000D0000431 + 128 0 0 6 0 0D0000432 + 142 377 0 0 0 0 0 000010500D0000433 + 142 0 0 1 0 0D0000434 + 102 378 0 0 0 0 0 000010000D0000435 + 102 0 0 1 0 0D0000436 + 110 379 0 0 0 0 0 000010000D0000437 + 110 0 0 1 0 0D0000438 + 110 380 0 0 0 0 0 000010000D0000439 + 110 0 0 1 0 0D0000440 + 110 381 0 0 0 0 0 000010000D0000441 + 110 0 0 1 0 0D0000442 + 110 382 0 0 0 0 0 000010000D0000443 + 110 0 0 1 0 0D0000444 + 102 383 0 0 0 0 0 000010000D0000445 + 102 0 0 1 0 0D0000446 + 110 384 0 0 0 0 0 000010000D0000447 + 110 0 0 2 0 0D0000448 + 110 386 0 0 0 0 0 000010000D0000449 + 110 0 0 2 0 0D0000450 + 110 388 0 0 0 0 0 000010000D0000451 + 110 0 0 2 0 0D0000452 + 110 390 0 0 0 0 0 000010000D0000453 + 110 0 0 2 0 0D0000454 + 144 392 0 0 0 0 0 000020000D0000455 + 144 0 0 1 0 0D0000456 + 128 393 0 0 0 0 0 000010000D0000457 + 128 0 0 6 0 0D0000458 + 142 399 0 0 0 0 0 000010500D0000459 + 142 0 0 1 0 0D0000460 + 102 400 0 0 0 0 0 000010000D0000461 + 102 0 0 1 0 0D0000462 + 110 401 0 0 0 0 0 000010000D0000463 + 110 0 0 1 0 0D0000464 + 110 402 0 0 0 0 0 000010000D0000465 + 110 0 0 2 0 0D0000466 + 110 404 0 0 0 0 0 000010000D0000467 + 110 0 0 1 0 0D0000468 + 110 405 0 0 0 0 0 000010000D0000469 + 110 0 0 1 0 0D0000470 + 102 406 0 0 0 0 0 000010000D0000471 + 102 0 0 1 0 0D0000472 + 110 407 0 0 0 0 0 000010000D0000473 + 110 0 0 2 0 0D0000474 + 110 409 0 0 0 0 0 000010000D0000475 + 110 0 0 2 0 0D0000476 + 110 411 0 0 0 0 0 000010000D0000477 + 110 0 0 2 0 0D0000478 + 110 413 0 0 0 0 0 000010000D0000479 + 110 0 0 2 0 0D0000480 + 144 415 0 0 0 0 0 000020000D0000481 + 144 0 0 1 0 0D0000482 + 128 416 0 0 0 0 0 000010000D0000483 + 128 0 0 6 0 0D0000484 + 142 422 0 0 0 0 0 000010500D0000485 + 142 0 0 1 0 0D0000486 + 102 423 0 0 0 0 0 000010000D0000487 + 102 0 0 1 0 0D0000488 + 110 424 0 0 0 0 0 000010000D0000489 + 110 0 0 1 0 0D0000490 + 110 425 0 0 0 0 0 000010000D0000491 + 110 0 0 2 0 0D0000492 + 110 427 0 0 0 0 0 000010000D0000493 + 110 0 0 1 0 0D0000494 + 110 428 0 0 0 0 0 000010000D0000495 + 110 0 0 1 0 0D0000496 + 102 429 0 0 0 0 0 000010000D0000497 + 102 0 0 1 0 0D0000498 + 110 430 0 0 0 0 0 000010000D0000499 + 110 0 0 2 0 0D0000500 + 110 432 0 0 0 0 0 000010000D0000501 + 110 0 0 2 0 0D0000502 + 110 434 0 0 0 0 0 000010000D0000503 + 110 0 0 2 0 0D0000504 + 110 436 0 0 0 0 0 000010000D0000505 + 110 0 0 2 0 0D0000506 + 144 438 0 0 0 0 0 000020000D0000507 + 144 0 0 1 0 0D0000508 + 128 439 0 0 0 0 0 000010000D0000509 + 128 0 0 6 0 0D0000510 + 142 445 0 0 0 0 0 000010500D0000511 + 142 0 0 1 0 0D0000512 + 102 446 0 0 0 0 0 000010000D0000513 + 102 0 0 1 0 0D0000514 + 110 447 0 0 0 0 0 000010000D0000515 + 110 0 0 1 0 0D0000516 + 110 448 0 0 0 0 0 000010000D0000517 + 110 0 0 2 0 0D0000518 + 110 450 0 0 0 0 0 000010000D0000519 + 110 0 0 1 0 0D0000520 + 110 451 0 0 0 0 0 000010000D0000521 + 110 0 0 1 0 0D0000522 + 102 452 0 0 0 0 0 000010000D0000523 + 102 0 0 1 0 0D0000524 + 110 453 0 0 0 0 0 000010000D0000525 + 110 0 0 2 0 0D0000526 + 110 455 0 0 0 0 0 000010000D0000527 + 110 0 0 2 0 0D0000528 + 110 457 0 0 0 0 0 000010000D0000529 + 110 0 0 2 0 0D0000530 + 110 459 0 0 0 0 0 000010000D0000531 + 110 0 0 2 0 0D0000532 + 144 461 0 0 0 0 0 000020000D0000533 + 144 0 0 1 0 0D0000534 + 128 462 0 0 0 0 0 000010000D0000535 + 128 0 0 6 0 0D0000536 + 142 468 0 0 0 0 0 000010500D0000537 + 142 0 0 1 0 0D0000538 + 102 469 0 0 0 0 0 000010000D0000539 + 102 0 0 1 0 0D0000540 + 110 470 0 0 0 0 0 000010000D0000541 + 110 0 0 1 0 0D0000542 + 110 471 0 0 0 0 0 000010000D0000543 + 110 0 0 2 0 0D0000544 + 110 473 0 0 0 0 0 000010000D0000545 + 110 0 0 1 0 0D0000546 + 110 474 0 0 0 0 0 000010000D0000547 + 110 0 0 1 0 0D0000548 + 102 475 0 0 0 0 0 000010000D0000549 + 102 0 0 1 0 0D0000550 + 110 476 0 0 0 0 0 000010000D0000551 + 110 0 0 2 0 0D0000552 + 110 478 0 0 0 0 0 000010000D0000553 + 110 0 0 2 0 0D0000554 + 110 480 0 0 0 0 0 000010000D0000555 + 110 0 0 2 0 0D0000556 + 110 482 0 0 0 0 0 000010000D0000557 + 110 0 0 2 0 0D0000558 + 144 484 0 0 0 0 0 000020000D0000559 + 144 0 0 1 0 0D0000560 + 128 485 0 0 0 0 0 000010000D0000561 + 128 0 0 6 0 0D0000562 + 142 491 0 0 0 0 0 000010500D0000563 + 142 0 0 1 0 0D0000564 + 102 492 0 0 0 0 0 000010000D0000565 + 102 0 0 1 0 0D0000566 + 110 493 0 0 0 0 0 000010000D0000567 + 110 0 0 1 0 0D0000568 + 110 494 0 0 0 0 0 000010000D0000569 + 110 0 0 2 0 0D0000570 + 110 496 0 0 0 0 0 000010000D0000571 + 110 0 0 1 0 0D0000572 + 110 497 0 0 0 0 0 000010000D0000573 + 110 0 0 1 0 0D0000574 + 102 498 0 0 0 0 0 000010000D0000575 + 102 0 0 1 0 0D0000576 + 110 499 0 0 0 0 0 000010000D0000577 + 110 0 0 2 0 0D0000578 + 110 501 0 0 0 0 0 000010000D0000579 + 110 0 0 2 0 0D0000580 + 110 503 0 0 0 0 0 000010000D0000581 + 110 0 0 2 0 0D0000582 + 110 505 0 0 0 0 0 000010000D0000583 + 110 0 0 2 0 0D0000584 + 144 507 0 0 0 0 0 000020000D0000585 + 144 0 0 1 0 0D0000586 + 128 508 0 0 0 0 0 000010000D0000587 + 128 0 0 6 0 0D0000588 + 142 514 0 0 0 0 0 000010500D0000589 + 142 0 0 1 0 0D0000590 + 102 515 0 0 0 0 0 000010000D0000591 + 102 0 0 1 0 0D0000592 + 110 516 0 0 0 0 0 000010000D0000593 + 110 0 0 1 0 0D0000594 + 110 517 0 0 0 0 0 000010000D0000595 + 110 0 0 1 0 0D0000596 + 110 518 0 0 0 0 0 000010000D0000597 + 110 0 0 1 0 0D0000598 + 110 519 0 0 0 0 0 000010000D0000599 + 110 0 0 2 0 0D0000600 + 110 521 0 0 0 0 0 000010000D0000601 + 110 0 0 1 0 0D0000602 + 110 522 0 0 0 0 0 000010000D0000603 + 110 0 0 1 0 0D0000604 + 110 523 0 0 0 0 0 000010000D0000605 + 110 0 0 1 0 0D0000606 + 110 524 0 0 0 0 0 000010000D0000607 + 110 0 0 1 0 0D0000608 + 102 525 0 0 0 0 0 000010000D0000609 + 102 0 0 1 0 0D0000610 + 110 526 0 0 0 0 0 000010000D0000611 + 110 0 0 2 0 0D0000612 + 110 528 0 0 0 0 0 000010000D0000613 + 110 0 0 2 0 0D0000614 + 110 530 0 0 0 0 0 000010000D0000615 + 110 0 0 2 0 0D0000616 + 110 532 0 0 0 0 0 000010000D0000617 + 110 0 0 2 0 0D0000618 + 110 534 0 0 0 0 0 000010000D0000619 + 110 0 0 2 0 0D0000620 + 110 536 0 0 0 0 0 000010000D0000621 + 110 0 0 2 0 0D0000622 + 110 538 0 0 0 0 0 000010000D0000623 + 110 0 0 2 0 0D0000624 + 110 540 0 0 0 0 0 000010000D0000625 + 110 0 0 2 0 0D0000626 + 144 542 0 0 0 0 0 000020000D0000627 + 144 0 0 1 0 0D0000628 + 128 543 0 0 0 0 0 000010000D0000629 + 128 0 0 5 0 0D0000630 + 142 548 0 0 0 0 0 000010500D0000631 + 142 0 0 1 0 0D0000632 + 102 549 0 0 0 0 0 000010000D0000633 + 102 0 0 1 0 0D0000634 + 110 550 0 0 0 0 0 000010000D0000635 + 110 0 0 1 0 0D0000636 + 110 551 0 0 0 0 0 000010000D0000637 + 110 0 0 1 0 0D0000638 + 110 552 0 0 0 0 0 000010000D0000639 + 110 0 0 1 0 0D0000640 + 110 553 0 0 0 0 0 000010000D0000641 + 110 0 0 1 0 0D0000642 + 110 554 0 0 0 0 0 000010000D0000643 + 110 0 0 1 0 0D0000644 + 110 555 0 0 0 0 0 000010000D0000645 + 110 0 0 1 0 0D0000646 + 110 556 0 0 0 0 0 000010000D0000647 + 110 0 0 1 0 0D0000648 + 110 557 0 0 0 0 0 000010000D0000649 + 110 0 0 1 0 0D0000650 + 102 558 0 0 0 0 0 000010000D0000651 + 102 0 0 1 0 0D0000652 + 110 559 0 0 0 0 0 000010000D0000653 + 110 0 0 2 0 0D0000654 + 110 561 0 0 0 0 0 000010000D0000655 + 110 0 0 2 0 0D0000656 + 110 563 0 0 0 0 0 000010000D0000657 + 110 0 0 2 0 0D0000658 + 110 565 0 0 0 0 0 000010000D0000659 + 110 0 0 2 0 0D0000660 + 110 567 0 0 0 0 0 000010000D0000661 + 110 0 0 2 0 0D0000662 + 110 569 0 0 0 0 0 000010000D0000663 + 110 0 0 2 0 0D0000664 + 110 571 0 0 0 0 0 000010000D0000665 + 110 0 0 2 0 0D0000666 + 110 573 0 0 0 0 0 000010000D0000667 + 110 0 0 2 0 0D0000668 + 144 575 0 0 0 0 0 000020000D0000669 + 144 0 0 1 0 0D0000670 + 128 576 0 0 0 0 0 000010000D0000671 + 128 0 0 6 0 0D0000672 + 142 582 0 0 0 0 0 000010500D0000673 + 142 0 0 1 0 0D0000674 + 102 583 0 0 0 0 0 000010000D0000675 + 102 0 0 1 0 0D0000676 + 110 584 0 0 0 0 0 000010000D0000677 + 110 0 0 2 0 0D0000678 + 110 586 0 0 0 0 0 000010000D0000679 + 110 0 0 1 0 0D0000680 + 110 587 0 0 0 0 0 000010000D0000681 + 110 0 0 1 0 0D0000682 + 110 588 0 0 0 0 0 000010000D0000683 + 110 0 0 1 0 0D0000684 + 102 589 0 0 0 0 0 000010000D0000685 + 102 0 0 1 0 0D0000686 + 110 590 0 0 0 0 0 000010000D0000687 + 110 0 0 2 0 0D0000688 + 110 592 0 0 0 0 0 000010000D0000689 + 110 0 0 2 0 0D0000690 + 110 594 0 0 0 0 0 000010000D0000691 + 110 0 0 2 0 0D0000692 + 110 596 0 0 0 0 0 000010000D0000693 + 110 0 0 2 0 0D0000694 + 144 598 0 0 0 0 0 000020000D0000695 + 144 0 0 1 0 0D0000696 + 128 599 0 0 0 0 0 000010000D0000697 + 128 0 0 5 0 0D0000698 + 142 604 0 0 0 0 0 000010500D0000699 + 142 0 0 1 0 0D0000700 + 102 605 0 0 0 0 0 000010000D0000701 + 102 0 0 1 0 0D0000702 + 110 606 0 0 0 0 0 000010000D0000703 + 110 0 0 1 0 0D0000704 + 110 607 0 0 0 0 0 000010000D0000705 + 110 0 0 1 0 0D0000706 + 110 608 0 0 0 0 0 000010000D0000707 + 110 0 0 1 0 0D0000708 + 110 609 0 0 0 0 0 000010000D0000709 + 110 0 0 1 0 0D0000710 + 102 610 0 0 0 0 0 000010000D0000711 + 102 0 0 1 0 0D0000712 + 110 611 0 0 0 0 0 000010000D0000713 + 110 0 0 2 0 0D0000714 + 110 613 0 0 0 0 0 000010000D0000715 + 110 0 0 2 0 0D0000716 + 110 615 0 0 0 0 0 000010000D0000717 + 110 0 0 2 0 0D0000718 + 110 617 0 0 0 0 0 000010000D0000719 + 110 0 0 2 0 0D0000720 + 142 619 0 0 0 0 0 000010500D0000721 + 142 0 0 1 0 0D0000722 + 102 620 0 0 0 0 0 000010000D0000723 + 102 0 0 1 0 0D0000724 + 110 621 0 0 0 0 0 000010000D0000725 + 110 0 0 1 0 0D0000726 + 110 622 0 0 0 0 0 000010000D0000727 + 110 0 0 1 0 0D0000728 + 110 623 0 0 0 0 0 000010000D0000729 + 110 0 0 1 0 0D0000730 + 110 624 0 0 0 0 0 000010000D0000731 + 110 0 0 1 0 0D0000732 + 102 625 0 0 0 0 0 000010000D0000733 + 102 0 0 1 0 0D0000734 + 110 626 0 0 0 0 0 000010000D0000735 + 110 0 0 2 0 0D0000736 + 110 628 0 0 0 0 0 000010000D0000737 + 110 0 0 2 0 0D0000738 + 110 630 0 0 0 0 0 000010000D0000739 + 110 0 0 2 0 0D0000740 + 110 632 0 0 0 0 0 000010000D0000741 + 110 0 0 2 0 0D0000742 + 144 634 0 0 0 0 0 000020000D0000743 + 144 0 0 1 0 0D0000744 + 128 635 0 0 0 0 0 000010000D0000745 + 128 0 0 6 0 0D0000746 + 142 641 0 0 0 0 0 000010500D0000747 + 142 0 0 1 0 0D0000748 + 102 642 0 0 0 0 0 000010000D0000749 + 102 0 0 1 0 0D0000750 + 110 643 0 0 0 0 0 000010000D0000751 + 110 0 0 2 0 0D0000752 + 110 645 0 0 0 0 0 000010000D0000753 + 110 0 0 1 0 0D0000754 + 110 646 0 0 0 0 0 000010000D0000755 + 110 0 0 1 0 0D0000756 + 110 647 0 0 0 0 0 000010000D0000757 + 110 0 0 1 0 0D0000758 + 102 648 0 0 0 0 0 000010000D0000759 + 102 0 0 1 0 0D0000760 + 110 649 0 0 0 0 0 000010000D0000761 + 110 0 0 2 0 0D0000762 + 110 651 0 0 0 0 0 000010000D0000763 + 110 0 0 2 0 0D0000764 + 110 653 0 0 0 0 0 000010000D0000765 + 110 0 0 2 0 0D0000766 + 110 655 0 0 0 0 0 000010000D0000767 + 110 0 0 2 0 0D0000768 + 144 657 0 0 0 0 0 000020000D0000769 + 144 0 0 1 0 0D0000770 + 128 658 0 0 0 0 0 000010000D0000771 + 128 0 0 6 0 0D0000772 + 142 664 0 0 0 0 0 000010500D0000773 + 142 0 0 1 0 0D0000774 + 102 665 0 0 0 0 0 000010000D0000775 + 102 0 0 1 0 0D0000776 + 110 666 0 0 0 0 0 000010000D0000777 + 110 0 0 1 0 0D0000778 + 110 667 0 0 0 0 0 000010000D0000779 + 110 0 0 1 0 0D0000780 + 110 668 0 0 0 0 0 000010000D0000781 + 110 0 0 1 0 0D0000782 + 110 669 0 0 0 0 0 000010000D0000783 + 110 0 0 1 0 0D0000784 + 102 670 0 0 0 0 0 000010000D0000785 + 102 0 0 1 0 0D0000786 + 110 671 0 0 0 0 0 000010000D0000787 + 110 0 0 2 0 0D0000788 + 110 673 0 0 0 0 0 000010000D0000789 + 110 0 0 2 0 0D0000790 + 110 675 0 0 0 0 0 000010000D0000791 + 110 0 0 2 0 0D0000792 + 110 677 0 0 0 0 0 000010000D0000793 + 110 0 0 2 0 0D0000794 + 144 679 0 0 0 0 0 000020000D0000795 + 144 0 0 1 0 0D0000796 + 128 680 0 0 0 0 0 000010000D0000797 + 128 0 0 5 0 0D0000798 + 142 685 0 0 0 0 0 000010500D0000799 + 142 0 0 1 0 0D0000800 + 102 686 0 0 0 0 0 000010000D0000801 + 102 0 0 1 0 0D0000802 + 110 687 0 0 0 0 0 000010000D0000803 + 110 0 0 1 0 0D0000804 + 110 688 0 0 0 0 0 000010000D0000805 + 110 0 0 2 0 0D0000806 + 110 690 0 0 0 0 0 000010000D0000807 + 110 0 0 1 0 0D0000808 + 110 691 0 0 0 0 0 000010000D0000809 + 110 0 0 1 0 0D0000810 + 102 692 0 0 0 0 0 000010000D0000811 + 102 0 0 1 0 0D0000812 + 110 693 0 0 0 0 0 000010000D0000813 + 110 0 0 2 0 0D0000814 + 110 695 0 0 0 0 0 000010000D0000815 + 110 0 0 2 0 0D0000816 + 110 697 0 0 0 0 0 000010000D0000817 + 110 0 0 2 0 0D0000818 + 110 699 0 0 0 0 0 000010000D0000819 + 110 0 0 2 0 0D0000820 + 402 701 0 0 0 0 0 000020000D0000821 + 402 0 0 2 1 0D0000822 + 144 703 0 0 0 0 0 000020000D0000823 + 144 0 0 1 0 0D0000824 + 128 704 0 0 0 0 0 000010000D0000825 + 128 0 0 6 0 0D0000826 + 142 710 0 0 0 0 0 000010500D0000827 + 142 0 0 1 0 0D0000828 + 102 711 0 0 0 0 0 000010000D0000829 + 102 0 0 1 0 0D0000830 + 110 712 0 0 0 0 0 000010000D0000831 + 110 0 0 1 0 0D0000832 + 110 713 0 0 0 0 0 000010000D0000833 + 110 0 0 1 0 0D0000834 + 110 714 0 0 0 0 0 000010000D0000835 + 110 0 0 1 0 0D0000836 + 110 715 0 0 0 0 0 000010000D0000837 + 110 0 0 1 0 0D0000838 + 102 716 0 0 0 0 0 000010000D0000839 + 102 0 0 1 0 0D0000840 + 110 717 0 0 0 0 0 000010000D0000841 + 110 0 0 2 0 0D0000842 + 110 719 0 0 0 0 0 000010000D0000843 + 110 0 0 2 0 0D0000844 + 110 721 0 0 0 0 0 000010000D0000845 + 110 0 0 2 0 0D0000846 + 110 723 0 0 0 0 0 000010000D0000847 + 110 0 0 2 0 0D0000848 + 144 725 0 0 0 0 0 000020000D0000849 + 144 0 0 1 0 0D0000850 + 128 726 0 0 0 0 0 000010000D0000851 + 128 0 0 5 0 0D0000852 + 142 731 0 0 0 0 0 000010500D0000853 + 142 0 0 1 0 0D0000854 + 102 732 0 0 0 0 0 000010000D0000855 + 102 0 0 1 0 0D0000856 + 110 733 0 0 0 0 0 000010000D0000857 + 110 0 0 1 0 0D0000858 + 110 734 0 0 0 0 0 000010000D0000859 + 110 0 0 1 0 0D0000860 + 110 735 0 0 0 0 0 000010000D0000861 + 110 0 0 1 0 0D0000862 + 110 736 0 0 0 0 0 000010000D0000863 + 110 0 0 1 0 0D0000864 + 110 737 0 0 0 0 0 000010000D0000865 + 110 0 0 1 0 0D0000866 + 110 738 0 0 0 0 0 000010000D0000867 + 110 0 0 1 0 0D0000868 + 110 739 0 0 0 0 0 000010000D0000869 + 110 0 0 1 0 0D0000870 + 110 740 0 0 0 0 0 000010000D0000871 + 110 0 0 1 0 0D0000872 + 102 741 0 0 0 0 0 000010000D0000873 + 102 0 0 1 0 0D0000874 + 110 742 0 0 0 0 0 000010000D0000875 + 110 0 0 2 0 0D0000876 + 110 744 0 0 0 0 0 000010000D0000877 + 110 0 0 2 0 0D0000878 + 110 746 0 0 0 0 0 000010000D0000879 + 110 0 0 2 0 0D0000880 + 110 748 0 0 0 0 0 000010000D0000881 + 110 0 0 2 0 0D0000882 + 110 750 0 0 0 0 0 000010000D0000883 + 110 0 0 2 0 0D0000884 + 110 752 0 0 0 0 0 000010000D0000885 + 110 0 0 2 0 0D0000886 + 110 754 0 0 0 0 0 000010000D0000887 + 110 0 0 2 0 0D0000888 + 110 756 0 0 0 0 0 000010000D0000889 + 110 0 0 2 0 0D0000890 + 144 758 0 0 0 0 0 000020000D0000891 + 144 0 0 1 0 0D0000892 + 128 759 0 0 0 0 0 000010000D0000893 + 128 0 0 6 0 0D0000894 + 142 765 0 0 0 0 0 000010500D0000895 + 142 0 0 1 0 0D0000896 + 102 766 0 0 0 0 0 000010000D0000897 + 102 0 0 1 0 0D0000898 + 110 767 0 0 0 0 0 000010000D0000899 + 110 0 0 2 0 0D0000900 + 110 769 0 0 0 0 0 000010000D0000901 + 110 0 0 1 0 0D0000902 + 110 770 0 0 0 0 0 000010000D0000903 + 110 0 0 1 0 0D0000904 + 110 771 0 0 0 0 0 000010000D0000905 + 110 0 0 1 0 0D0000906 + 102 772 0 0 0 0 0 000010000D0000907 + 102 0 0 1 0 0D0000908 + 110 773 0 0 0 0 0 000010000D0000909 + 110 0 0 2 0 0D0000910 + 110 775 0 0 0 0 0 000010000D0000911 + 110 0 0 2 0 0D0000912 + 110 777 0 0 0 0 0 000010000D0000913 + 110 0 0 2 0 0D0000914 + 110 779 0 0 0 0 0 000010000D0000915 + 110 0 0 2 0 0D0000916 + 144 781 0 0 0 0 0 000020000D0000917 + 144 0 0 1 0 0D0000918 + 128 782 0 0 0 0 0 000010000D0000919 + 128 0 0 5 0 0D0000920 + 142 787 0 0 0 0 0 000010500D0000921 + 142 0 0 1 0 0D0000922 + 102 788 0 0 0 0 0 000010000D0000923 + 102 0 0 1 0 0D0000924 + 110 789 0 0 0 0 0 000010000D0000925 + 110 0 0 1 0 0D0000926 + 110 790 0 0 0 0 0 000010000D0000927 + 110 0 0 1 0 0D0000928 + 110 791 0 0 0 0 0 000010000D0000929 + 110 0 0 1 0 0D0000930 + 110 792 0 0 0 0 0 000010000D0000931 + 110 0 0 1 0 0D0000932 + 102 793 0 0 0 0 0 000010000D0000933 + 102 0 0 1 0 0D0000934 + 110 794 0 0 0 0 0 000010000D0000935 + 110 0 0 2 0 0D0000936 + 110 796 0 0 0 0 0 000010000D0000937 + 110 0 0 2 0 0D0000938 + 110 798 0 0 0 0 0 000010000D0000939 + 110 0 0 2 0 0D0000940 + 110 800 0 0 0 0 0 000010000D0000941 + 110 0 0 2 0 0D0000942 + 144 802 0 0 0 0 0 000020000D0000943 + 144 0 0 1 0 0D0000944 + 128 803 0 0 0 0 0 000010000D0000945 + 128 0 0 5 0 0D0000946 + 142 808 0 0 0 0 0 000010500D0000947 + 142 0 0 1 0 0D0000948 + 102 809 0 0 0 0 0 000010000D0000949 + 102 0 0 1 0 0D0000950 + 110 810 0 0 0 0 0 000010000D0000951 + 110 0 0 2 0 0D0000952 + 110 812 0 0 0 0 0 000010000D0000953 + 110 0 0 1 0 0D0000954 + 110 813 0 0 0 0 0 000010000D0000955 + 110 0 0 1 0 0D0000956 + 110 814 0 0 0 0 0 000010000D0000957 + 110 0 0 1 0 0D0000958 + 102 815 0 0 0 0 0 000010000D0000959 + 102 0 0 1 0 0D0000960 + 110 816 0 0 0 0 0 000010000D0000961 + 110 0 0 2 0 0D0000962 + 110 818 0 0 0 0 0 000010000D0000963 + 110 0 0 2 0 0D0000964 + 110 820 0 0 0 0 0 000010000D0000965 + 110 0 0 2 0 0D0000966 + 110 822 0 0 0 0 0 000010000D0000967 + 110 0 0 2 0 0D0000968 + 144 824 0 0 0 0 0 000020000D0000969 + 144 0 0 1 0 0D0000970 + 128 825 0 0 0 0 0 000010000D0000971 + 128 0 0 6 0 0D0000972 + 142 831 0 0 0 0 0 000010500D0000973 + 142 0 0 1 0 0D0000974 + 102 832 0 0 0 0 0 000010000D0000975 + 102 0 0 1 0 0D0000976 + 110 833 0 0 0 0 0 000010000D0000977 + 110 0 0 1 0 0D0000978 + 110 834 0 0 0 0 0 000010000D0000979 + 110 0 0 1 0 0D0000980 + 110 835 0 0 0 0 0 000010000D0000981 + 110 0 0 1 0 0D0000982 + 110 836 0 0 0 0 0 000010000D0000983 + 110 0 0 1 0 0D0000984 + 110 837 0 0 0 0 0 000010000D0000985 + 110 0 0 1 0 0D0000986 + 110 838 0 0 0 0 0 000010000D0000987 + 110 0 0 2 0 0D0000988 + 110 840 0 0 0 0 0 000010000D0000989 + 110 0 0 1 0 0D0000990 + 110 841 0 0 0 0 0 000010000D0000991 + 110 0 0 1 0 0D0000992 + 102 842 0 0 0 0 0 000010000D0000993 + 102 0 0 1 0 0D0000994 + 110 843 0 0 0 0 0 000010000D0000995 + 110 0 0 2 0 0D0000996 + 110 845 0 0 0 0 0 000010000D0000997 + 110 0 0 2 0 0D0000998 + 110 847 0 0 0 0 0 000010000D0000999 + 110 0 0 2 0 0D0001000 + 110 849 0 0 0 0 0 000010000D0001001 + 110 0 0 2 0 0D0001002 + 110 851 0 0 0 0 0 000010000D0001003 + 110 0 0 2 0 0D0001004 + 110 853 0 0 0 0 0 000010000D0001005 + 110 0 0 2 0 0D0001006 + 110 855 0 0 0 0 0 000010000D0001007 + 110 0 0 2 0 0D0001008 + 110 857 0 0 0 0 0 000010000D0001009 + 110 0 0 2 0 0D0001010 + 144 859 0 0 0 0 0 000020000D0001011 + 144 0 0 1 0 0D0001012 + 128 860 0 0 0 0 0 000010000D0001013 + 128 0 0 6 0 0D0001014 + 142 866 0 0 0 0 0 000010500D0001015 + 142 0 0 1 0 0D0001016 + 102 867 0 0 0 0 0 000010000D0001017 + 102 0 0 2 0 0D0001018 + 110 869 0 0 0 0 0 000010000D0001019 + 110 0 0 1 0 0D0001020 + 110 870 0 0 0 0 0 000010000D0001021 + 110 0 0 1 0 0D0001022 + 110 871 0 0 0 0 0 000010000D0001023 + 110 0 0 1 0 0D0001024 + 110 872 0 0 0 0 0 000010000D0001025 + 110 0 0 1 0 0D0001026 + 110 873 0 0 0 0 0 000010000D0001027 + 110 0 0 1 0 0D0001028 + 110 874 0 0 0 0 0 000010000D0001029 + 110 0 0 1 0 0D0001030 + 110 875 0 0 0 0 0 000010000D0001031 + 110 0 0 1 0 0D0001032 + 110 876 0 0 0 0 0 000010000D0001033 + 110 0 0 1 0 0D0001034 + 110 877 0 0 0 0 0 000010000D0001035 + 110 0 0 1 0 0D0001036 + 110 878 0 0 0 0 0 000010000D0001037 + 110 0 0 1 0 0D0001038 + 110 879 0 0 0 0 0 000010000D0001039 + 110 0 0 1 0 0D0001040 + 110 880 0 0 0 0 0 000010000D0001041 + 110 0 0 1 0 0D0001042 + 110 881 0 0 0 0 0 000010000D0001043 + 110 0 0 1 0 0D0001044 + 110 882 0 0 0 0 0 000010000D0001045 + 110 0 0 1 0 0D0001046 + 110 883 0 0 0 0 0 000010000D0001047 + 110 0 0 1 0 0D0001048 + 110 884 0 0 0 0 0 000010000D0001049 + 110 0 0 1 0 0D0001050 + 110 885 0 0 0 0 0 000010000D0001051 + 110 0 0 1 0 0D0001052 + 110 886 0 0 0 0 0 000010000D0001053 + 110 0 0 2 0 0D0001054 + 102 888 0 0 0 0 0 000010000D0001055 + 102 0 0 2 0 0D0001056 + 110 890 0 0 0 0 0 000010000D0001057 + 110 0 0 2 0 0D0001058 + 110 892 0 0 0 0 0 000010000D0001059 + 110 0 0 2 0 0D0001060 + 110 894 0 0 0 0 0 000010000D0001061 + 110 0 0 2 0 0D0001062 + 110 896 0 0 0 0 0 000010000D0001063 + 110 0 0 2 0 0D0001064 + 110 898 0 0 0 0 0 000010000D0001065 + 110 0 0 2 0 0D0001066 + 110 900 0 0 0 0 0 000010000D0001067 + 110 0 0 2 0 0D0001068 + 110 902 0 0 0 0 0 000010000D0001069 + 110 0 0 2 0 0D0001070 + 110 904 0 0 0 0 0 000010000D0001071 + 110 0 0 2 0 0D0001072 + 110 906 0 0 0 0 0 000010000D0001073 + 110 0 0 2 0 0D0001074 + 110 908 0 0 0 0 0 000010000D0001075 + 110 0 0 2 0 0D0001076 + 110 910 0 0 0 0 0 000010000D0001077 + 110 0 0 2 0 0D0001078 + 110 912 0 0 0 0 0 000010000D0001079 + 110 0 0 2 0 0D0001080 + 110 914 0 0 0 0 0 000010000D0001081 + 110 0 0 2 0 0D0001082 + 110 916 0 0 0 0 0 000010000D0001083 + 110 0 0 2 0 0D0001084 + 110 918 0 0 0 0 0 000010000D0001085 + 110 0 0 2 0 0D0001086 + 110 920 0 0 0 0 0 000010000D0001087 + 110 0 0 2 0 0D0001088 + 110 922 0 0 0 0 0 000010000D0001089 + 110 0 0 2 0 0D0001090 + 110 924 0 0 0 0 0 000010000D0001091 + 110 0 0 2 0 0D0001092 + 144 926 0 0 0 0 0 000020000D0001093 + 144 0 0 1 0 0D0001094 + 128 927 0 0 0 0 0 000010000D0001095 + 128 0 0 6 0 0D0001096 + 142 933 0 0 0 0 0 000010500D0001097 + 142 0 0 1 0 0D0001098 + 102 934 0 0 0 0 0 000010000D0001099 + 102 0 0 1 0 0D0001100 + 110 935 0 0 0 0 0 000010000D0001101 + 110 0 0 1 0 0D0001102 + 110 936 0 0 0 0 0 000010000D0001103 + 110 0 0 1 0 0D0001104 + 110 937 0 0 0 0 0 000010000D0001105 + 110 0 0 1 0 0D0001106 + 110 938 0 0 0 0 0 000010000D0001107 + 110 0 0 1 0 0D0001108 + 102 939 0 0 0 0 0 000010000D0001109 + 102 0 0 1 0 0D0001110 + 110 940 0 0 0 0 0 000010000D0001111 + 110 0 0 2 0 0D0001112 + 110 942 0 0 0 0 0 000010000D0001113 + 110 0 0 2 0 0D0001114 + 110 944 0 0 0 0 0 000010000D0001115 + 110 0 0 2 0 0D0001116 + 110 946 0 0 0 0 0 000010000D0001117 + 110 0 0 2 0 0D0001118 + 144 948 0 0 0 0 0 000020000D0001119 + 144 0 0 1 0 0D0001120 + 128 949 0 0 0 0 0 000010000D0001121 + 128 0 0 7 0 0D0001122 + 142 956 0 0 0 0 0 000010500D0001123 + 142 0 0 1 0 0D0001124 + 102 957 0 0 0 0 0 000010000D0001125 + 102 0 0 2 0 0D0001126 + 110 959 0 0 0 0 0 000010000D0001127 + 110 0 0 1 0 0D0001128 + 110 960 0 0 0 0 0 000010000D0001129 + 110 0 0 1 0 0D0001130 + 110 961 0 0 0 0 0 000010000D0001131 + 110 0 0 1 0 0D0001132 + 110 962 0 0 0 0 0 000010000D0001133 + 110 0 0 1 0 0D0001134 + 110 963 0 0 0 0 0 000010000D0001135 + 110 0 0 1 0 0D0001136 + 110 964 0 0 0 0 0 000010000D0001137 + 110 0 0 1 0 0D0001138 + 110 965 0 0 0 0 0 000010000D0001139 + 110 0 0 1 0 0D0001140 + 110 966 0 0 0 0 0 000010000D0001141 + 110 0 0 1 0 0D0001142 + 110 967 0 0 0 0 0 000010000D0001143 + 110 0 0 1 0 0D0001144 + 110 968 0 0 0 0 0 000010000D0001145 + 110 0 0 1 0 0D0001146 + 110 969 0 0 0 0 0 000010000D0001147 + 110 0 0 1 0 0D0001148 + 110 970 0 0 0 0 0 000010000D0001149 + 110 0 0 1 0 0D0001150 + 110 971 0 0 0 0 0 000010000D0001151 + 110 0 0 1 0 0D0001152 + 110 972 0 0 0 0 0 000010000D0001153 + 110 0 0 1 0 0D0001154 + 110 973 0 0 0 0 0 000010000D0001155 + 110 0 0 1 0 0D0001156 + 110 974 0 0 0 0 0 000010000D0001157 + 110 0 0 1 0 0D0001158 + 110 975 0 0 0 0 0 000010000D0001159 + 110 0 0 1 0 0D0001160 + 110 976 0 0 0 0 0 000010000D0001161 + 110 0 0 2 0 0D0001162 + 102 978 0 0 0 0 0 000010000D0001163 + 102 0 0 2 0 0D0001164 + 110 980 0 0 0 0 0 000010000D0001165 + 110 0 0 2 0 0D0001166 + 110 982 0 0 0 0 0 000010000D0001167 + 110 0 0 2 0 0D0001168 + 110 984 0 0 0 0 0 000010000D0001169 + 110 0 0 2 0 0D0001170 + 110 986 0 0 0 0 0 000010000D0001171 + 110 0 0 2 0 0D0001172 + 110 988 0 0 0 0 0 000010000D0001173 + 110 0 0 2 0 0D0001174 + 110 990 0 0 0 0 0 000010000D0001175 + 110 0 0 2 0 0D0001176 + 110 992 0 0 0 0 0 000010000D0001177 + 110 0 0 2 0 0D0001178 + 110 994 0 0 0 0 0 000010000D0001179 + 110 0 0 2 0 0D0001180 + 110 996 0 0 0 0 0 000010000D0001181 + 110 0 0 2 0 0D0001182 + 110 998 0 0 0 0 0 000010000D0001183 + 110 0 0 2 0 0D0001184 + 110 1000 0 0 0 0 0 000010000D0001185 + 110 0 0 2 0 0D0001186 + 110 1002 0 0 0 0 0 000010000D0001187 + 110 0 0 2 0 0D0001188 + 110 1004 0 0 0 0 0 000010000D0001189 + 110 0 0 2 0 0D0001190 + 110 1006 0 0 0 0 0 000010000D0001191 + 110 0 0 2 0 0D0001192 + 110 1008 0 0 0 0 0 000010000D0001193 + 110 0 0 2 0 0D0001194 + 110 1010 0 0 0 0 0 000010000D0001195 + 110 0 0 2 0 0D0001196 + 110 1012 0 0 0 0 0 000010000D0001197 + 110 0 0 2 0 0D0001198 + 110 1014 0 0 0 0 0 000010000D0001199 + 110 0 0 2 0 0D0001200 + 144 1016 0 0 0 0 0 000020000D0001201 + 144 0 0 1 0 0D0001202 + 128 1017 0 0 0 0 0 000010000D0001203 + 128 0 0 6 0 0D0001204 + 142 1023 0 0 0 0 0 000010500D0001205 + 142 0 0 1 0 0D0001206 + 102 1024 0 0 0 0 0 000010000D0001207 + 102 0 0 1 0 0D0001208 + 110 1025 0 0 0 0 0 000010000D0001209 + 110 0 0 1 0 0D0001210 + 110 1026 0 0 0 0 0 000010000D0001211 + 110 0 0 1 0 0D0001212 + 110 1027 0 0 0 0 0 000010000D0001213 + 110 0 0 2 0 0D0001214 + 110 1029 0 0 0 0 0 000010000D0001215 + 110 0 0 1 0 0D0001216 + 102 1030 0 0 0 0 0 000010000D0001217 + 102 0 0 1 0 0D0001218 + 110 1031 0 0 0 0 0 000010000D0001219 + 110 0 0 2 0 0D0001220 + 110 1033 0 0 0 0 0 000010000D0001221 + 110 0 0 2 0 0D0001222 + 110 1035 0 0 0 0 0 000010000D0001223 + 110 0 0 2 0 0D0001224 + 110 1037 0 0 0 0 0 000010000D0001225 + 110 0 0 2 0 0D0001226 + 144 1039 0 0 0 0 0 000020000D0001227 + 144 0 0 1 0 0D0001228 + 128 1040 0 0 0 0 0 000010000D0001229 + 128 0 0 6 0 0D0001230 + 142 1046 0 0 0 0 0 000010500D0001231 + 142 0 0 1 0 0D0001232 + 102 1047 0 0 0 0 0 000010000D0001233 + 102 0 0 1 0 0D0001234 + 110 1048 0 0 0 0 0 000010000D0001235 + 110 0 0 1 0 0D0001236 + 110 1049 0 0 0 0 0 000010000D0001237 + 110 0 0 2 0 0D0001238 + 110 1051 0 0 0 0 0 000010000D0001239 + 110 0 0 1 0 0D0001240 + 110 1052 0 0 0 0 0 000010000D0001241 + 110 0 0 1 0 0D0001242 + 102 1053 0 0 0 0 0 000010000D0001243 + 102 0 0 1 0 0D0001244 + 110 1054 0 0 0 0 0 000010000D0001245 + 110 0 0 2 0 0D0001246 + 110 1056 0 0 0 0 0 000010000D0001247 + 110 0 0 2 0 0D0001248 + 110 1058 0 0 0 0 0 000010000D0001249 + 110 0 0 2 0 0D0001250 + 110 1060 0 0 0 0 0 000010000D0001251 + 110 0 0 2 0 0D0001252 + 144 1062 0 0 0 0 0 000020000D0001253 + 144 0 0 1 0 0D0001254 + 128 1063 0 0 0 0 0 000010000D0001255 + 128 0 0 6 0 0D0001256 + 142 1069 0 0 0 0 0 000010500D0001257 + 142 0 0 1 0 0D0001258 + 102 1070 0 0 0 0 0 000010000D0001259 + 102 0 0 1 0 0D0001260 + 110 1071 0 0 0 0 0 000010000D0001261 + 110 0 0 1 0 0D0001262 + 110 1072 0 0 0 0 0 000010000D0001263 + 110 0 0 2 0 0D0001264 + 110 1074 0 0 0 0 0 000010000D0001265 + 110 0 0 1 0 0D0001266 + 110 1075 0 0 0 0 0 000010000D0001267 + 110 0 0 1 0 0D0001268 + 102 1076 0 0 0 0 0 000010000D0001269 + 102 0 0 1 0 0D0001270 + 110 1077 0 0 0 0 0 000010000D0001271 + 110 0 0 2 0 0D0001272 + 110 1079 0 0 0 0 0 000010000D0001273 + 110 0 0 2 0 0D0001274 + 110 1081 0 0 0 0 0 000010000D0001275 + 110 0 0 2 0 0D0001276 + 110 1083 0 0 0 0 0 000010000D0001277 + 110 0 0 2 0 0D0001278 + 144 1085 0 0 0 0 0 000020000D0001279 + 144 0 0 1 0 0D0001280 + 128 1086 0 0 0 0 0 000010000D0001281 + 128 0 0 6 0 0D0001282 + 142 1092 0 0 0 0 0 000010500D0001283 + 142 0 0 1 0 0D0001284 + 102 1093 0 0 0 0 0 000010000D0001285 + 102 0 0 1 0 0D0001286 + 110 1094 0 0 0 0 0 000010000D0001287 + 110 0 0 1 0 0D0001288 + 110 1095 0 0 0 0 0 000010000D0001289 + 110 0 0 2 0 0D0001290 + 110 1097 0 0 0 0 0 000010000D0001291 + 110 0 0 1 0 0D0001292 + 110 1098 0 0 0 0 0 000010000D0001293 + 110 0 0 1 0 0D0001294 + 102 1099 0 0 0 0 0 000010000D0001295 + 102 0 0 1 0 0D0001296 + 110 1100 0 0 0 0 0 000010000D0001297 + 110 0 0 2 0 0D0001298 + 110 1102 0 0 0 0 0 000010000D0001299 + 110 0 0 2 0 0D0001300 + 110 1104 0 0 0 0 0 000010000D0001301 + 110 0 0 2 0 0D0001302 + 110 1106 0 0 0 0 0 000010000D0001303 + 110 0 0 2 0 0D0001304 + 144 1108 0 0 0 0 0 000020000D0001305 + 144 0 0 1 0 0D0001306 + 128 1109 0 0 0 0 0 000010000D0001307 + 128 0 0 6 0 0D0001308 + 142 1115 0 0 0 0 0 000010500D0001309 + 142 0 0 1 0 0D0001310 + 102 1116 0 0 0 0 0 000010000D0001311 + 102 0 0 1 0 0D0001312 + 110 1117 0 0 0 0 0 000010000D0001313 + 110 0 0 1 0 0D0001314 + 110 1118 0 0 0 0 0 000010000D0001315 + 110 0 0 2 0 0D0001316 + 110 1120 0 0 0 0 0 000010000D0001317 + 110 0 0 1 0 0D0001318 + 110 1121 0 0 0 0 0 000010000D0001319 + 110 0 0 1 0 0D0001320 + 102 1122 0 0 0 0 0 000010000D0001321 + 102 0 0 1 0 0D0001322 + 110 1123 0 0 0 0 0 000010000D0001323 + 110 0 0 2 0 0D0001324 + 110 1125 0 0 0 0 0 000010000D0001325 + 110 0 0 2 0 0D0001326 + 110 1127 0 0 0 0 0 000010000D0001327 + 110 0 0 2 0 0D0001328 + 110 1129 0 0 0 0 0 000010000D0001329 + 110 0 0 2 0 0D0001330 + 144 1131 0 0 0 0 0 000020000D0001331 + 144 0 0 1 0 0D0001332 + 128 1132 0 0 0 0 0 000010000D0001333 + 128 0 0 7 0 0D0001334 + 142 1139 0 0 0 0 0 000010500D0001335 + 142 0 0 1 0 0D0001336 + 102 1140 0 0 0 0 0 000010000D0001337 + 102 0 0 1 0 0D0001338 + 110 1141 0 0 0 0 0 000010000D0001339 + 110 0 0 1 0 0D0001340 + 110 1142 0 0 0 0 0 000010000D0001341 + 110 0 0 2 0 0D0001342 + 110 1144 0 0 0 0 0 000010000D0001343 + 110 0 0 1 0 0D0001344 + 110 1145 0 0 0 0 0 000010000D0001345 + 110 0 0 1 0 0D0001346 + 102 1146 0 0 0 0 0 000010000D0001347 + 102 0 0 1 0 0D0001348 + 110 1147 0 0 0 0 0 000010000D0001349 + 110 0 0 2 0 0D0001350 + 110 1149 0 0 0 0 0 000010000D0001351 + 110 0 0 2 0 0D0001352 + 110 1151 0 0 0 0 0 000010000D0001353 + 110 0 0 2 0 0D0001354 + 110 1153 0 0 0 0 0 000010000D0001355 + 110 0 0 2 0 0D0001356 + 144 1155 0 0 0 0 0 000020000D0001357 + 144 0 0 1 0 0D0001358 + 128 1156 0 0 0 0 0 000010000D0001359 + 128 0 0 7 0 0D0001360 + 142 1163 0 0 0 0 0 000010500D0001361 + 142 0 0 1 0 0D0001362 + 102 1164 0 0 0 0 0 000010000D0001363 + 102 0 0 1 0 0D0001364 + 110 1165 0 0 0 0 0 000010000D0001365 + 110 0 0 2 0 0D0001366 + 110 1167 0 0 0 0 0 000010000D0001367 + 110 0 0 2 0 0D0001368 + 110 1169 0 0 0 0 0 000010000D0001369 + 110 0 0 1 0 0D0001370 + 110 1170 0 0 0 0 0 000010000D0001371 + 110 0 0 1 0 0D0001372 + 102 1171 0 0 0 0 0 000010000D0001373 + 102 0 0 1 0 0D0001374 + 110 1172 0 0 0 0 0 000010000D0001375 + 110 0 0 2 0 0D0001376 + 110 1174 0 0 0 0 0 000010000D0001377 + 110 0 0 2 0 0D0001378 + 110 1176 0 0 0 0 0 000010000D0001379 + 110 0 0 2 0 0D0001380 + 110 1178 0 0 0 0 0 000010000D0001381 + 110 0 0 2 0 0D0001382 + 144 1180 0 0 0 0 0 000020000D0001383 + 144 0 0 1 0 0D0001384 + 128 1181 0 0 0 0 0 000010000D0001385 + 128 0 0 7 0 0D0001386 + 142 1188 0 0 0 0 0 000010500D0001387 + 142 0 0 1 0 0D0001388 + 102 1189 0 0 0 0 0 000010000D0001389 + 102 0 0 1 0 0D0001390 + 110 1190 0 0 0 0 0 000010000D0001391 + 110 0 0 1 0 0D0001392 + 110 1191 0 0 0 0 0 000010000D0001393 + 110 0 0 2 0 0D0001394 + 110 1193 0 0 0 0 0 000010000D0001395 + 110 0 0 1 0 0D0001396 + 110 1194 0 0 0 0 0 000010000D0001397 + 110 0 0 1 0 0D0001398 + 102 1195 0 0 0 0 0 000010000D0001399 + 102 0 0 1 0 0D0001400 + 110 1196 0 0 0 0 0 000010000D0001401 + 110 0 0 2 0 0D0001402 + 110 1198 0 0 0 0 0 000010000D0001403 + 110 0 0 2 0 0D0001404 + 110 1200 0 0 0 0 0 000010000D0001405 + 110 0 0 2 0 0D0001406 + 110 1202 0 0 0 0 0 000010000D0001407 + 110 0 0 2 0 0D0001408 + 144 1204 0 0 0 0 0 000020000D0001409 + 144 0 0 1 0 0D0001410 + 128 1205 0 0 0 0 0 000010000D0001411 + 128 0 0 7 0 0D0001412 + 142 1212 0 0 0 0 0 000010500D0001413 + 142 0 0 1 0 0D0001414 + 102 1213 0 0 0 0 0 000010000D0001415 + 102 0 0 1 0 0D0001416 + 110 1214 0 0 0 0 0 000010000D0001417 + 110 0 0 1 0 0D0001418 + 110 1215 0 0 0 0 0 000010000D0001419 + 110 0 0 2 0 0D0001420 + 110 1217 0 0 0 0 0 000010000D0001421 + 110 0 0 1 0 0D0001422 + 110 1218 0 0 0 0 0 000010000D0001423 + 110 0 0 1 0 0D0001424 + 102 1219 0 0 0 0 0 000010000D0001425 + 102 0 0 1 0 0D0001426 + 110 1220 0 0 0 0 0 000010000D0001427 + 110 0 0 2 0 0D0001428 + 110 1222 0 0 0 0 0 000010000D0001429 + 110 0 0 2 0 0D0001430 + 110 1224 0 0 0 0 0 000010000D0001431 + 110 0 0 2 0 0D0001432 + 110 1226 0 0 0 0 0 000010000D0001433 + 110 0 0 2 0 0D0001434 + 144 1228 0 0 0 0 0 000020000D0001435 + 144 0 0 1 0 0D0001436 + 128 1229 0 0 0 0 0 000010000D0001437 + 128 0 0 6 0 0D0001438 + 142 1235 0 0 0 0 0 000010500D0001439 + 142 0 0 1 0 0D0001440 + 102 1236 0 0 0 0 0 000010000D0001441 + 102 0 0 1 0 0D0001442 + 110 1237 0 0 0 0 0 000010000D0001443 + 110 0 0 1 0 0D0001444 + 110 1238 0 0 0 0 0 000010000D0001445 + 110 0 0 1 0 0D0001446 + 110 1239 0 0 0 0 0 000010000D0001447 + 110 0 0 1 0 0D0001448 + 110 1240 0 0 0 0 0 000010000D0001449 + 110 0 0 1 0 0D0001450 + 102 1241 0 0 0 0 0 000010000D0001451 + 102 0 0 1 0 0D0001452 + 110 1242 0 0 0 0 0 000010000D0001453 + 110 0 0 2 0 0D0001454 + 110 1244 0 0 0 0 0 000010000D0001455 + 110 0 0 2 0 0D0001456 + 110 1246 0 0 0 0 0 000010000D0001457 + 110 0 0 2 0 0D0001458 + 110 1248 0 0 0 0 0 000010000D0001459 + 110 0 0 2 0 0D0001460 + 144 1250 0 0 0 0 0 000020000D0001461 + 144 0 0 1 0 0D0001462 + 128 1251 0 0 0 0 0 000010000D0001463 + 128 0 0 6 0 0D0001464 + 142 1257 0 0 0 0 0 000010500D0001465 + 142 0 0 1 0 0D0001466 + 102 1258 0 0 0 0 0 000010000D0001467 + 102 0 0 1 0 0D0001468 + 110 1259 0 0 0 0 0 000010000D0001469 + 110 0 0 1 0 0D0001470 + 110 1260 0 0 0 0 0 000010000D0001471 + 110 0 0 1 0 0D0001472 + 110 1261 0 0 0 0 0 000010000D0001473 + 110 0 0 1 0 0D0001474 + 110 1262 0 0 0 0 0 000010000D0001475 + 110 0 0 1 0 0D0001476 + 102 1263 0 0 0 0 0 000010000D0001477 + 102 0 0 1 0 0D0001478 + 110 1264 0 0 0 0 0 000010000D0001479 + 110 0 0 2 0 0D0001480 + 110 1266 0 0 0 0 0 000010000D0001481 + 110 0 0 2 0 0D0001482 + 110 1268 0 0 0 0 0 000010000D0001483 + 110 0 0 2 0 0D0001484 + 110 1270 0 0 0 0 0 000010000D0001485 + 110 0 0 2 0 0D0001486 + 144 1272 0 0 0 0 0 000020000D0001487 + 144 0 0 1 0 0D0001488 + 128 1273 0 0 0 0 0 000010000D0001489 + 128 0 0 6 0 0D0001490 + 142 1279 0 0 0 0 0 000010500D0001491 + 142 0 0 1 0 0D0001492 + 102 1280 0 0 0 0 0 000010000D0001493 + 102 0 0 1 0 0D0001494 + 110 1281 0 0 0 0 0 000010000D0001495 + 110 0 0 1 0 0D0001496 + 110 1282 0 0 0 0 0 000010000D0001497 + 110 0 0 2 0 0D0001498 + 110 1284 0 0 0 0 0 000010000D0001499 + 110 0 0 1 0 0D0001500 + 110 1285 0 0 0 0 0 000010000D0001501 + 110 0 0 1 0 0D0001502 + 102 1286 0 0 0 0 0 000010000D0001503 + 102 0 0 1 0 0D0001504 + 110 1287 0 0 0 0 0 000010000D0001505 + 110 0 0 2 0 0D0001506 + 110 1289 0 0 0 0 0 000010000D0001507 + 110 0 0 2 0 0D0001508 + 110 1291 0 0 0 0 0 000010000D0001509 + 110 0 0 2 0 0D0001510 + 110 1293 0 0 0 0 0 000010000D0001511 + 110 0 0 2 0 0D0001512 + 144 1295 0 0 0 0 0 000020000D0001513 + 144 0 0 1 0 0D0001514 + 128 1296 0 0 0 0 0 000010000D0001515 + 128 0 0 6 0 0D0001516 + 142 1302 0 0 0 0 0 000010500D0001517 + 142 0 0 1 0 0D0001518 + 102 1303 0 0 0 0 0 000010000D0001519 + 102 0 0 1 0 0D0001520 + 110 1304 0 0 0 0 0 000010000D0001521 + 110 0 0 1 0 0D0001522 + 110 1305 0 0 0 0 0 000010000D0001523 + 110 0 0 2 0 0D0001524 + 110 1307 0 0 0 0 0 000010000D0001525 + 110 0 0 1 0 0D0001526 + 110 1308 0 0 0 0 0 000010000D0001527 + 110 0 0 1 0 0D0001528 + 102 1309 0 0 0 0 0 000010000D0001529 + 102 0 0 1 0 0D0001530 + 110 1310 0 0 0 0 0 000010000D0001531 + 110 0 0 2 0 0D0001532 + 110 1312 0 0 0 0 0 000010000D0001533 + 110 0 0 2 0 0D0001534 + 110 1314 0 0 0 0 0 000010000D0001535 + 110 0 0 2 0 0D0001536 + 110 1316 0 0 0 0 0 000010000D0001537 + 110 0 0 2 0 0D0001538 + 144 1318 0 0 0 0 0 000020000D0001539 + 144 0 0 1 0 0D0001540 + 128 1319 0 0 0 0 0 000010000D0001541 + 128 0 0 6 0 0D0001542 + 142 1325 0 0 0 0 0 000010500D0001543 + 142 0 0 1 0 0D0001544 + 102 1326 0 0 0 0 0 000010000D0001545 + 102 0 0 1 0 0D0001546 + 110 1327 0 0 0 0 0 000010000D0001547 + 110 0 0 1 0 0D0001548 + 110 1328 0 0 0 0 0 000010000D0001549 + 110 0 0 2 0 0D0001550 + 110 1330 0 0 0 0 0 000010000D0001551 + 110 0 0 1 0 0D0001552 + 110 1331 0 0 0 0 0 000010000D0001553 + 110 0 0 1 0 0D0001554 + 102 1332 0 0 0 0 0 000010000D0001555 + 102 0 0 1 0 0D0001556 + 110 1333 0 0 0 0 0 000010000D0001557 + 110 0 0 2 0 0D0001558 + 110 1335 0 0 0 0 0 000010000D0001559 + 110 0 0 2 0 0D0001560 + 110 1337 0 0 0 0 0 000010000D0001561 + 110 0 0 2 0 0D0001562 + 110 1339 0 0 0 0 0 000010000D0001563 + 110 0 0 2 0 0D0001564 + 144 1341 0 0 0 0 0 000020000D0001565 + 144 0 0 1 0 0D0001566 + 128 1342 0 0 0 0 0 000010000D0001567 + 128 0 0 6 0 0D0001568 + 142 1348 0 0 0 0 0 000010500D0001569 + 142 0 0 1 0 0D0001570 + 102 1349 0 0 0 0 0 000010000D0001571 + 102 0 0 1 0 0D0001572 + 110 1350 0 0 0 0 0 000010000D0001573 + 110 0 0 1 0 0D0001574 + 110 1351 0 0 0 0 0 000010000D0001575 + 110 0 0 2 0 0D0001576 + 110 1353 0 0 0 0 0 000010000D0001577 + 110 0 0 1 0 0D0001578 + 110 1354 0 0 0 0 0 000010000D0001579 + 110 0 0 1 0 0D0001580 + 102 1355 0 0 0 0 0 000010000D0001581 + 102 0 0 1 0 0D0001582 + 110 1356 0 0 0 0 0 000010000D0001583 + 110 0 0 2 0 0D0001584 + 110 1358 0 0 0 0 0 000010000D0001585 + 110 0 0 2 0 0D0001586 + 110 1360 0 0 0 0 0 000010000D0001587 + 110 0 0 2 0 0D0001588 + 110 1362 0 0 0 0 0 000010000D0001589 + 110 0 0 2 0 0D0001590 + 402 1364 0 0 0 0 0 000020000D0001591 + 402 0 0 1 1 0D0001592 + 144 1365 0 0 0 0 0 000020000D0001593 + 144 0 0 1 0 0D0001594 + 128 1366 0 0 0 0 0 000010000D0001595 + 128 0 0 6 0 0D0001596 + 142 1372 0 0 0 0 0 000010500D0001597 + 142 0 0 1 0 0D0001598 + 102 1373 0 0 0 0 0 000010000D0001599 + 102 0 0 1 0 0D0001600 + 110 1374 0 0 0 0 0 000010000D0001601 + 110 0 0 1 0 0D0001602 + 110 1375 0 0 0 0 0 000010000D0001603 + 110 0 0 1 0 0D0001604 + 110 1376 0 0 0 0 0 000010000D0001605 + 110 0 0 1 0 0D0001606 + 110 1377 0 0 0 0 0 000010000D0001607 + 110 0 0 1 0 0D0001608 + 102 1378 0 0 0 0 0 000010000D0001609 + 102 0 0 1 0 0D0001610 + 110 1379 0 0 0 0 0 000010000D0001611 + 110 0 0 2 0 0D0001612 + 110 1381 0 0 0 0 0 000010000D0001613 + 110 0 0 2 0 0D0001614 + 110 1383 0 0 0 0 0 000010000D0001615 + 110 0 0 2 0 0D0001616 + 110 1385 0 0 0 0 0 000010000D0001617 + 110 0 0 2 0 0D0001618 + 144 1387 0 0 0 0 0 000020000D0001619 + 144 0 0 1 0 0D0001620 + 128 1388 0 0 0 0 0 000010000D0001621 + 128 0 0 5 0 0D0001622 + 142 1393 0 0 0 0 0 000010500D0001623 + 142 0 0 1 0 0D0001624 + 102 1394 0 0 0 0 0 000010000D0001625 + 102 0 0 1 0 0D0001626 + 110 1395 0 0 0 0 0 000010000D0001627 + 110 0 0 1 0 0D0001628 + 110 1396 0 0 0 0 0 000010000D0001629 + 110 0 0 1 0 0D0001630 + 110 1397 0 0 0 0 0 000010000D0001631 + 110 0 0 1 0 0D0001632 + 110 1398 0 0 0 0 0 000010000D0001633 + 110 0 0 1 0 0D0001634 + 102 1399 0 0 0 0 0 000010000D0001635 + 102 0 0 1 0 0D0001636 + 110 1400 0 0 0 0 0 000010000D0001637 + 110 0 0 2 0 0D0001638 + 110 1402 0 0 0 0 0 000010000D0001639 + 110 0 0 2 0 0D0001640 + 110 1404 0 0 0 0 0 000010000D0001641 + 110 0 0 2 0 0D0001642 + 110 1406 0 0 0 0 0 000010000D0001643 + 110 0 0 2 0 0D0001644 + 144 1408 0 0 0 0 0 000020000D0001645 + 144 0 0 1 0 0D0001646 + 128 1409 0 0 0 0 0 000010000D0001647 + 128 0 0 6 0 0D0001648 + 142 1415 0 0 0 0 0 000010500D0001649 + 142 0 0 1 0 0D0001650 + 102 1416 0 0 0 0 0 000010000D0001651 + 102 0 0 1 0 0D0001652 + 110 1417 0 0 0 0 0 000010000D0001653 + 110 0 0 2 0 0D0001654 + 110 1419 0 0 0 0 0 000010000D0001655 + 110 0 0 1 0 0D0001656 + 110 1420 0 0 0 0 0 000010000D0001657 + 110 0 0 1 0 0D0001658 + 110 1421 0 0 0 0 0 000010000D0001659 + 110 0 0 1 0 0D0001660 + 102 1422 0 0 0 0 0 000010000D0001661 + 102 0 0 1 0 0D0001662 + 110 1423 0 0 0 0 0 000010000D0001663 + 110 0 0 2 0 0D0001664 + 110 1425 0 0 0 0 0 000010000D0001665 + 110 0 0 2 0 0D0001666 + 110 1427 0 0 0 0 0 000010000D0001667 + 110 0 0 2 0 0D0001668 + 110 1429 0 0 0 0 0 000010000D0001669 + 110 0 0 2 0 0D0001670 + 144 1431 0 0 0 0 0 000020000D0001671 + 144 0 0 1 0 0D0001672 + 128 1432 0 0 0 0 0 000010000D0001673 + 128 0 0 6 0 0D0001674 + 142 1438 0 0 0 0 0 000010500D0001675 + 142 0 0 1 0 0D0001676 + 102 1439 0 0 0 0 0 000010000D0001677 + 102 0 0 1 0 0D0001678 + 110 1440 0 0 0 0 0 000010000D0001679 + 110 0 0 1 0 0D0001680 + 110 1441 0 0 0 0 0 000010000D0001681 + 110 0 0 1 0 0D0001682 + 110 1442 0 0 0 0 0 000010000D0001683 + 110 0 0 1 0 0D0001684 + 110 1443 0 0 0 0 0 000010000D0001685 + 110 0 0 1 0 0D0001686 + 102 1444 0 0 0 0 0 000010000D0001687 + 102 0 0 1 0 0D0001688 + 110 1445 0 0 0 0 0 000010000D0001689 + 110 0 0 2 0 0D0001690 + 110 1447 0 0 0 0 0 000010000D0001691 + 110 0 0 2 0 0D0001692 + 110 1449 0 0 0 0 0 000010000D0001693 + 110 0 0 2 0 0D0001694 + 110 1451 0 0 0 0 0 000010000D0001695 + 110 0 0 2 0 0D0001696 + 144 1453 0 0 0 0 0 000020000D0001697 + 144 0 0 1 0 0D0001698 + 128 1454 0 0 0 0 0 000010000D0001699 + 128 0 0 6 0 0D0001700 + 142 1460 0 0 0 0 0 000010500D0001701 + 142 0 0 1 0 0D0001702 + 102 1461 0 0 0 0 0 000010000D0001703 + 102 0 0 1 0 0D0001704 + 110 1462 0 0 0 0 0 000010000D0001705 + 110 0 0 2 0 0D0001706 + 110 1464 0 0 0 0 0 000010000D0001707 + 110 0 0 1 0 0D0001708 + 110 1465 0 0 0 0 0 000010000D0001709 + 110 0 0 1 0 0D0001710 + 110 1466 0 0 0 0 0 000010000D0001711 + 110 0 0 1 0 0D0001712 + 102 1467 0 0 0 0 0 000010000D0001713 + 102 0 0 1 0 0D0001714 + 110 1468 0 0 0 0 0 000010000D0001715 + 110 0 0 2 0 0D0001716 + 110 1470 0 0 0 0 0 000010000D0001717 + 110 0 0 2 0 0D0001718 + 110 1472 0 0 0 0 0 000010000D0001719 + 110 0 0 2 0 0D0001720 + 110 1474 0 0 0 0 0 000010000D0001721 + 110 0 0 2 0 0D0001722 + 144 1476 0 0 0 0 0 000020000D0001723 + 144 0 0 1 0 0D0001724 + 128 1477 0 0 0 0 0 000010000D0001725 + 128 0 0 6 0 0D0001726 + 142 1483 0 0 0 0 0 000010500D0001727 + 142 0 0 1 0 0D0001728 + 102 1484 0 0 0 0 0 000010000D0001729 + 102 0 0 1 0 0D0001730 + 110 1485 0 0 0 0 0 000010000D0001731 + 110 0 0 1 0 0D0001732 + 110 1486 0 0 0 0 0 000010000D0001733 + 110 0 0 2 0 0D0001734 + 110 1488 0 0 0 0 0 000010000D0001735 + 110 0 0 1 0 0D0001736 + 110 1489 0 0 0 0 0 000010000D0001737 + 110 0 0 1 0 0D0001738 + 102 1490 0 0 0 0 0 000010000D0001739 + 102 0 0 1 0 0D0001740 + 110 1491 0 0 0 0 0 000010000D0001741 + 110 0 0 2 0 0D0001742 + 110 1493 0 0 0 0 0 000010000D0001743 + 110 0 0 2 0 0D0001744 + 110 1495 0 0 0 0 0 000010000D0001745 + 110 0 0 2 0 0D0001746 + 110 1497 0 0 0 0 0 000010000D0001747 + 110 0 0 2 0 0D0001748 + 402 1499 0 0 0 0 0 000020000D0001749 + 402 0 0 1 1 0D0001750 + 144 1500 0 0 0 0 0 000020000D0001751 + 144 0 0 1 0 0D0001752 + 120 1501 0 0 0 0 1755 000010000D0001753 + 120 0 0 1 0 0D0001754 + 124 1502 0 0 0 0 0 000000000D0001755 + 124 0 0 3 0 0D0001756 + 110 1505 0 0 0 0 0 000010000D0001757 + 110 0 0 1 0 0D0001758 + 110 1506 0 0 0 0 0 000010000D0001759 + 110 0 0 2 0 0D0001760 + 142 1508 0 0 0 0 0 000010500D0001761 + 142 0 0 1 0 0D0001762 + 102 1509 0 0 0 0 0 000010000D0001763 + 102 0 0 1 0 0D0001764 + 126 1510 0 0 0 0 0 000010000D0001765 + 126 0 0 20 0 0D0001766 + 126 1530 0 0 0 0 0 000010000D0001767 + 126 0 0 23 0 0D0001768 + 126 1553 0 0 0 0 0 000010000D0001769 + 126 0 0 16 0 0D0001770 + 126 1569 0 0 0 0 0 000010000D0001771 + 126 0 0 22 0 0D0001772 + 102 1591 0 0 0 0 0 000010000D0001773 + 102 0 0 1 0 0D0001774 + 100 1592 0 0 0 0 1777 000010000D0001775 + 100 0 0 3 0 0D0001776 + 124 1595 0 0 0 0 0 000000000D0001777 + 124 0 0 3 0 0D0001778 + 126 1598 0 0 0 0 0 000010000D0001779 + 126 0 0 3 0 0D0001780 + 100 1601 0 0 0 0 1783 000010000D0001781 + 100 0 0 2 0 0D0001782 + 124 1603 0 0 0 0 0 000000000D0001783 + 124 0 0 3 0 0D0001784 + 126 1606 0 0 0 0 0 000010000D0001785 + 126 0 0 3 0 0D0001786 + 144 1609 0 0 0 0 0 000020000D0001787 + 144 0 0 1 0 0D0001788 + 128 1610 0 0 0 0 0 000010000D0001789 + 128 0 0 7 0 0D0001790 + 142 1617 0 0 0 0 0 000010500D0001791 + 142 0 0 1 0 0D0001792 + 100 1618 0 0 0 0 1795 000010000D0001793 + 100 0 0 2 0 0D0001794 + 124 1620 0 0 0 0 0 000000000D0001795 + 124 0 0 2 0 0D0001796 + 100 1622 0 0 0 0 1799 000010000D0001797 + 100 0 0 3 0 0D0001798 + 124 1625 0 0 0 0 0 000000000D0001799 + 124 0 0 3 0 0D0001800 + 144 1628 0 0 0 0 0 000020000D0001801 + 144 0 0 1 0 0D0001802 + 128 1629 0 0 0 0 0 000010000D0001803 + 128 0 0 7 0 0D0001804 + 142 1636 0 0 0 0 0 000010500D0001805 + 142 0 0 1 0 0D0001806 + 100 1637 0 0 0 0 1809 000010000D0001807 + 100 0 0 2 0 0D0001808 + 124 1639 0 0 0 0 0 000000000D0001809 + 124 0 0 2 0 0D0001810 + 100 1641 0 0 0 0 1813 000010000D0001811 + 100 0 0 3 0 0D0001812 + 124 1644 0 0 0 0 0 000000000D0001813 + 124 0 0 3 0 0D0001814 + 402 1647 0 0 0 0 0 000020000D0001815 + 402 0 0 2 1 0D0001816 + 144 1649 0 0 0 0 0 000020000D0001817 + 144 0 0 1 0 0D0001818 + 128 1650 0 0 0 0 0 000010000D0001819 + 128 0 0 5 0 0D0001820 + 142 1655 0 0 0 0 0 000010500D0001821 + 142 0 0 1 0 0D0001822 + 102 1656 0 0 0 0 0 000010000D0001823 + 102 0 0 1 0 0D0001824 + 110 1657 0 0 0 0 0 000010000D0001825 + 110 0 0 1 0 0D0001826 + 110 1658 0 0 0 0 0 000010000D0001827 + 110 0 0 1 0 0D0001828 + 110 1659 0 0 0 0 0 000010000D0001829 + 110 0 0 1 0 0D0001830 + 110 1660 0 0 0 0 0 000010000D0001831 + 110 0 0 1 0 0D0001832 + 102 1661 0 0 0 0 0 000010000D0001833 + 102 0 0 1 0 0D0001834 + 110 1662 0 0 0 0 0 000010000D0001835 + 110 0 0 2 0 0D0001836 + 110 1664 0 0 0 0 0 000010000D0001837 + 110 0 0 2 0 0D0001838 + 110 1666 0 0 0 0 0 000010000D0001839 + 110 0 0 2 0 0D0001840 + 110 1668 0 0 0 0 0 000010000D0001841 + 110 0 0 2 0 0D0001842 + 144 1670 0 0 0 0 0 000020000D0001843 + 144 0 0 1 0 0D0001844 + 128 1671 0 0 0 0 0 000010000D0001845 + 128 0 0 6 0 0D0001846 + 142 1677 0 0 0 0 0 000010500D0001847 + 142 0 0 1 0 0D0001848 + 102 1678 0 0 0 0 0 000010000D0001849 + 102 0 0 1 0 0D0001850 + 110 1679 0 0 0 0 0 000010000D0001851 + 110 0 0 1 0 0D0001852 + 110 1680 0 0 0 0 0 000010000D0001853 + 110 0 0 1 0 0D0001854 + 110 1681 0 0 0 0 0 000010000D0001855 + 110 0 0 1 0 0D0001856 + 110 1682 0 0 0 0 0 000010000D0001857 + 110 0 0 1 0 0D0001858 + 102 1683 0 0 0 0 0 000010000D0001859 + 102 0 0 1 0 0D0001860 + 110 1684 0 0 0 0 0 000010000D0001861 + 110 0 0 2 0 0D0001862 + 110 1686 0 0 0 0 0 000010000D0001863 + 110 0 0 2 0 0D0001864 + 110 1688 0 0 0 0 0 000010000D0001865 + 110 0 0 2 0 0D0001866 + 110 1690 0 0 0 0 0 000010000D0001867 + 110 0 0 2 0 0D0001868 + 144 1692 0 0 0 0 0 000020000D0001869 + 144 0 0 1 0 0D0001870 + 128 1693 0 0 0 0 0 000010000D0001871 + 128 0 0 5 0 0D0001872 + 142 1698 0 0 0 0 0 000010500D0001873 + 142 0 0 1 0 0D0001874 + 102 1699 0 0 0 0 0 000010000D0001875 + 102 0 0 1 0 0D0001876 + 110 1700 0 0 0 0 0 000010000D0001877 + 110 0 0 2 0 0D0001878 + 110 1702 0 0 0 0 0 000010000D0001879 + 110 0 0 1 0 0D0001880 + 110 1703 0 0 0 0 0 000010000D0001881 + 110 0 0 1 0 0D0001882 + 110 1704 0 0 0 0 0 000010000D0001883 + 110 0 0 1 0 0D0001884 + 110 1705 0 0 0 0 0 000010000D0001885 + 110 0 0 1 0 0D0001886 + 110 1706 0 0 0 0 0 000010000D0001887 + 110 0 0 2 0 0D0001888 + 102 1708 0 0 0 0 0 000010000D0001889 + 102 0 0 1 0 0D0001890 + 110 1709 0 0 0 0 0 000010000D0001891 + 110 0 0 2 0 0D0001892 + 110 1711 0 0 0 0 0 000010000D0001893 + 110 0 0 2 0 0D0001894 + 110 1713 0 0 0 0 0 000010000D0001895 + 110 0 0 2 0 0D0001896 + 110 1715 0 0 0 0 0 000010000D0001897 + 110 0 0 2 0 0D0001898 + 110 1717 0 0 0 0 0 000010000D0001899 + 110 0 0 2 0 0D0001900 + 110 1719 0 0 0 0 0 000010000D0001901 + 110 0 0 2 0 0D0001902 + 144 1721 0 0 0 0 0 000020000D0001903 + 144 0 0 1 0 0D0001904 + 128 1722 0 0 0 0 0 000010000D0001905 + 128 0 0 6 0 0D0001906 + 142 1728 0 0 0 0 0 000010500D0001907 + 142 0 0 1 0 0D0001908 + 102 1729 0 0 0 0 0 000010000D0001909 + 102 0 0 1 0 0D0001910 + 110 1730 0 0 0 0 0 000010000D0001911 + 110 0 0 1 0 0D0001912 + 110 1731 0 0 0 0 0 000010000D0001913 + 110 0 0 1 0 0D0001914 + 110 1732 0 0 0 0 0 000010000D0001915 + 110 0 0 1 0 0D0001916 + 110 1733 0 0 0 0 0 000010000D0001917 + 110 0 0 1 0 0D0001918 + 102 1734 0 0 0 0 0 000010000D0001919 + 102 0 0 1 0 0D0001920 + 110 1735 0 0 0 0 0 000010000D0001921 + 110 0 0 2 0 0D0001922 + 110 1737 0 0 0 0 0 000010000D0001923 + 110 0 0 2 0 0D0001924 + 110 1739 0 0 0 0 0 000010000D0001925 + 110 0 0 2 0 0D0001926 + 110 1741 0 0 0 0 0 000010000D0001927 + 110 0 0 2 0 0D0001928 + 144 1743 0 0 0 0 0 000020000D0001929 + 144 0 0 1 0 0D0001930 + 128 1744 0 0 0 0 0 000010000D0001931 + 128 0 0 6 0 0D0001932 + 142 1750 0 0 0 0 0 000010500D0001933 + 142 0 0 1 0 0D0001934 + 102 1751 0 0 0 0 0 000010000D0001935 + 102 0 0 1 0 0D0001936 + 110 1752 0 0 0 0 0 000010000D0001937 + 110 0 0 1 0 0D0001938 + 110 1753 0 0 0 0 0 000010000D0001939 + 110 0 0 1 0 0D0001940 + 110 1754 0 0 0 0 0 000010000D0001941 + 110 0 0 1 0 0D0001942 + 110 1755 0 0 0 0 0 000010000D0001943 + 110 0 0 1 0 0D0001944 + 102 1756 0 0 0 0 0 000010000D0001945 + 102 0 0 1 0 0D0001946 + 110 1757 0 0 0 0 0 000010000D0001947 + 110 0 0 2 0 0D0001948 + 110 1759 0 0 0 0 0 000010000D0001949 + 110 0 0 2 0 0D0001950 + 110 1761 0 0 0 0 0 000010000D0001951 + 110 0 0 2 0 0D0001952 + 110 1763 0 0 0 0 0 000010000D0001953 + 110 0 0 2 0 0D0001954 + 144 1765 0 0 0 0 0 000020000D0001955 + 144 0 0 1 0 0D0001956 + 128 1766 0 0 0 0 0 000010000D0001957 + 128 0 0 7 0 0D0001958 + 142 1773 0 0 0 0 0 000010500D0001959 + 142 0 0 1 0 0D0001960 + 102 1774 0 0 0 0 0 000010000D0001961 + 102 0 0 1 0 0D0001962 + 110 1775 0 0 0 0 0 000010000D0001963 + 110 0 0 1 0 0D0001964 + 110 1776 0 0 0 0 0 000010000D0001965 + 110 0 0 1 0 0D0001966 + 110 1777 0 0 0 0 0 000010000D0001967 + 110 0 0 2 0 0D0001968 + 110 1779 0 0 0 0 0 000010000D0001969 + 110 0 0 2 0 0D0001970 + 102 1781 0 0 0 0 0 000010000D0001971 + 102 0 0 1 0 0D0001972 + 110 1782 0 0 0 0 0 000010000D0001973 + 110 0 0 2 0 0D0001974 + 110 1784 0 0 0 0 0 000010000D0001975 + 110 0 0 2 0 0D0001976 + 110 1786 0 0 0 0 0 000010000D0001977 + 110 0 0 2 0 0D0001978 + 110 1788 0 0 0 0 0 000010000D0001979 + 110 0 0 2 0 0D0001980 + 144 1790 0 0 0 0 0 000020000D0001981 + 144 0 0 1 0 0D0001982 + 128 1791 0 0 0 0 0 000010000D0001983 + 128 0 0 6 0 0D0001984 + 142 1797 0 0 0 0 0 000010500D0001985 + 142 0 0 1 0 0D0001986 + 102 1798 0 0 0 0 0 000010000D0001987 + 102 0 0 1 0 0D0001988 + 110 1799 0 0 0 0 0 000010000D0001989 + 110 0 0 1 0 0D0001990 + 110 1800 0 0 0 0 0 000010000D0001991 + 110 0 0 1 0 0D0001992 + 110 1801 0 0 0 0 0 000010000D0001993 + 110 0 0 1 0 0D0001994 + 110 1802 0 0 0 0 0 000010000D0001995 + 110 0 0 1 0 0D0001996 + 110 1803 0 0 0 0 0 000010000D0001997 + 110 0 0 1 0 0D0001998 + 110 1804 0 0 0 0 0 000010000D0001999 + 110 0 0 1 0 0D0002000 + 110 1805 0 0 0 0 0 000010000D0002001 + 110 0 0 1 0 0D0002002 + 110 1806 0 0 0 0 0 000010000D0002003 + 110 0 0 1 0 0D0002004 + 110 1807 0 0 0 0 0 000010000D0002005 + 110 0 0 1 0 0D0002006 + 110 1808 0 0 0 0 0 000010000D0002007 + 110 0 0 1 0 0D0002008 + 102 1809 0 0 0 0 0 000010000D0002009 + 102 0 0 1 0 0D0002010 + 110 1810 0 0 0 0 0 000010000D0002011 + 110 0 0 2 0 0D0002012 + 110 1812 0 0 0 0 0 000010000D0002013 + 110 0 0 2 0 0D0002014 + 110 1814 0 0 0 0 0 000010000D0002015 + 110 0 0 2 0 0D0002016 + 110 1816 0 0 0 0 0 000010000D0002017 + 110 0 0 2 0 0D0002018 + 110 1818 0 0 0 0 0 000010000D0002019 + 110 0 0 2 0 0D0002020 + 110 1820 0 0 0 0 0 000010000D0002021 + 110 0 0 2 0 0D0002022 + 110 1822 0 0 0 0 0 000010000D0002023 + 110 0 0 2 0 0D0002024 + 110 1824 0 0 0 0 0 000010000D0002025 + 110 0 0 2 0 0D0002026 + 110 1826 0 0 0 0 0 000010000D0002027 + 110 0 0 2 0 0D0002028 + 110 1828 0 0 0 0 0 000010000D0002029 + 110 0 0 2 0 0D0002030 + 144 1830 0 0 0 0 0 000020000D0002031 + 144 0 0 1 0 0D0002032 + 128 1831 0 0 0 0 0 000010000D0002033 + 128 0 0 6 0 0D0002034 + 142 1837 0 0 0 0 0 000010500D0002035 + 142 0 0 1 0 0D0002036 + 102 1838 0 0 0 0 0 000010000D0002037 + 102 0 0 1 0 0D0002038 + 110 1839 0 0 0 0 0 000010000D0002039 + 110 0 0 1 0 0D0002040 + 110 1840 0 0 0 0 0 000010000D0002041 + 110 0 0 1 0 0D0002042 + 110 1841 0 0 0 0 0 000010000D0002043 + 110 0 0 1 0 0D0002044 + 110 1842 0 0 0 0 0 000010000D0002045 + 110 0 0 1 0 0D0002046 + 102 1843 0 0 0 0 0 000010000D0002047 + 102 0 0 1 0 0D0002048 + 110 1844 0 0 0 0 0 000010000D0002049 + 110 0 0 2 0 0D0002050 + 110 1846 0 0 0 0 0 000010000D0002051 + 110 0 0 2 0 0D0002052 + 110 1848 0 0 0 0 0 000010000D0002053 + 110 0 0 2 0 0D0002054 + 110 1850 0 0 0 0 0 000010000D0002055 + 110 0 0 2 0 0D0002056 + 144 1852 0 0 0 0 0 000020000D0002057 + 144 0 0 1 0 0D0002058 + 128 1853 0 0 0 0 0 000010000D0002059 + 128 0 0 6 0 0D0002060 + 142 1859 0 0 0 0 0 000010500D0002061 + 142 0 0 1 0 0D0002062 + 102 1860 0 0 0 0 0 000010000D0002063 + 102 0 0 1 0 0D0002064 + 110 1861 0 0 0 0 0 000010000D0002065 + 110 0 0 1 0 0D0002066 + 110 1862 0 0 0 0 0 000010000D0002067 + 110 0 0 1 0 0D0002068 + 110 1863 0 0 0 0 0 000010000D0002069 + 110 0 0 1 0 0D0002070 + 102 1864 0 0 0 0 0 000010000D0002071 + 102 0 0 1 0 0D0002072 + 110 1865 0 0 0 0 0 000010000D0002073 + 110 0 0 2 0 0D0002074 + 110 1867 0 0 0 0 0 000010000D0002075 + 110 0 0 2 0 0D0002076 + 110 1869 0 0 0 0 0 000010000D0002077 + 110 0 0 2 0 0D0002078 + 144 1871 0 0 0 0 0 000020000D0002079 + 144 0 0 1 0 0D0002080 + 128 1872 0 0 0 0 0 000010000D0002081 + 128 0 0 7 0 0D0002082 + 142 1879 0 0 0 0 0 000010500D0002083 + 142 0 0 1 0 0D0002084 + 102 1880 0 0 0 0 0 000010000D0002085 + 102 0 0 1 0 0D0002086 + 110 1881 0 0 0 0 0 000010000D0002087 + 110 0 0 1 0 0D0002088 + 110 1882 0 0 0 0 0 000010000D0002089 + 110 0 0 1 0 0D0002090 + 110 1883 0 0 0 0 0 000010000D0002091 + 110 0 0 1 0 0D0002092 + 110 1884 0 0 0 0 0 000010000D0002093 + 110 0 0 1 0 0D0002094 + 110 1885 0 0 0 0 0 000010000D0002095 + 110 0 0 1 0 0D0002096 + 102 1886 0 0 0 0 0 000010000D0002097 + 102 0 0 1 0 0D0002098 + 110 1887 0 0 0 0 0 000010000D0002099 + 110 0 0 2 0 0D0002100 + 110 1889 0 0 0 0 0 000010000D0002101 + 110 0 0 2 0 0D0002102 + 110 1891 0 0 0 0 0 000010000D0002103 + 110 0 0 2 0 0D0002104 + 110 1893 0 0 0 0 0 000010000D0002105 + 110 0 0 2 0 0D0002106 + 110 1895 0 0 0 0 0 000010000D0002107 + 110 0 0 2 0 0D0002108 + 144 1897 0 0 0 0 0 000020000D0002109 + 144 0 0 1 0 0D0002110 + 128 1898 0 0 0 0 0 000010000D0002111 + 128 0 0 6 0 0D0002112 + 142 1904 0 0 0 0 0 000010500D0002113 + 142 0 0 1 0 0D0002114 + 102 1905 0 0 0 0 0 000010000D0002115 + 102 0 0 1 0 0D0002116 + 110 1906 0 0 0 0 0 000010000D0002117 + 110 0 0 1 0 0D0002118 + 110 1907 0 0 0 0 0 000010000D0002119 + 110 0 0 1 0 0D0002120 + 110 1908 0 0 0 0 0 000010000D0002121 + 110 0 0 1 0 0D0002122 + 110 1909 0 0 0 0 0 000010000D0002123 + 110 0 0 1 0 0D0002124 + 102 1910 0 0 0 0 0 000010000D0002125 + 102 0 0 1 0 0D0002126 + 110 1911 0 0 0 0 0 000010000D0002127 + 110 0 0 2 0 0D0002128 + 110 1913 0 0 0 0 0 000010000D0002129 + 110 0 0 2 0 0D0002130 + 110 1915 0 0 0 0 0 000010000D0002131 + 110 0 0 2 0 0D0002132 + 110 1917 0 0 0 0 0 000010000D0002133 + 110 0 0 2 0 0D0002134 + 144 1919 0 0 0 0 0 000020000D0002135 + 144 0 0 1 0 0D0002136 + 128 1920 0 0 0 0 0 000010000D0002137 + 128 0 0 6 0 0D0002138 + 142 1926 0 0 0 0 0 000010500D0002139 + 142 0 0 1 0 0D0002140 + 102 1927 0 0 0 0 0 000010000D0002141 + 102 0 0 1 0 0D0002142 + 110 1928 0 0 0 0 0 000010000D0002143 + 110 0 0 1 0 0D0002144 + 110 1929 0 0 0 0 0 000010000D0002145 + 110 0 0 1 0 0D0002146 + 110 1930 0 0 0 0 0 000010000D0002147 + 110 0 0 1 0 0D0002148 + 110 1931 0 0 0 0 0 000010000D0002149 + 110 0 0 1 0 0D0002150 + 102 1932 0 0 0 0 0 000010000D0002151 + 102 0 0 1 0 0D0002152 + 110 1933 0 0 0 0 0 000010000D0002153 + 110 0 0 2 0 0D0002154 + 110 1935 0 0 0 0 0 000010000D0002155 + 110 0 0 2 0 0D0002156 + 110 1937 0 0 0 0 0 000010000D0002157 + 110 0 0 2 0 0D0002158 + 110 1939 0 0 0 0 0 000010000D0002159 + 110 0 0 2 0 0D0002160 + 144 1941 0 0 0 0 0 000020000D0002161 + 144 0 0 1 0 0D0002162 + 128 1942 0 0 0 0 0 000010000D0002163 + 128 0 0 6 0 0D0002164 + 142 1948 0 0 0 0 0 000010500D0002165 + 142 0 0 1 0 0D0002166 + 102 1949 0 0 0 0 0 000010000D0002167 + 102 0 0 1 0 0D0002168 + 110 1950 0 0 0 0 0 000010000D0002169 + 110 0 0 1 0 0D0002170 + 110 1951 0 0 0 0 0 000010000D0002171 + 110 0 0 1 0 0D0002172 + 110 1952 0 0 0 0 0 000010000D0002173 + 110 0 0 1 0 0D0002174 + 110 1953 0 0 0 0 0 000010000D0002175 + 110 0 0 1 0 0D0002176 + 102 1954 0 0 0 0 0 000010000D0002177 + 102 0 0 1 0 0D0002178 + 110 1955 0 0 0 0 0 000010000D0002179 + 110 0 0 2 0 0D0002180 + 110 1957 0 0 0 0 0 000010000D0002181 + 110 0 0 2 0 0D0002182 + 110 1959 0 0 0 0 0 000010000D0002183 + 110 0 0 2 0 0D0002184 + 110 1961 0 0 0 0 0 000010000D0002185 + 110 0 0 2 0 0D0002186 + 144 1963 0 0 0 0 0 000020000D0002187 + 144 0 0 1 0 0D0002188 + 128 1964 0 0 0 0 0 000010000D0002189 + 128 0 0 6 0 0D0002190 + 142 1970 0 0 0 0 0 000010500D0002191 + 142 0 0 1 0 0D0002192 + 102 1971 0 0 0 0 0 000010000D0002193 + 102 0 0 1 0 0D0002194 + 110 1972 0 0 0 0 0 000010000D0002195 + 110 0 0 1 0 0D0002196 + 110 1973 0 0 0 0 0 000010000D0002197 + 110 0 0 1 0 0D0002198 + 110 1974 0 0 0 0 0 000010000D0002199 + 110 0 0 1 0 0D0002200 + 110 1975 0 0 0 0 0 000010000D0002201 + 110 0 0 1 0 0D0002202 + 102 1976 0 0 0 0 0 000010000D0002203 + 102 0 0 1 0 0D0002204 + 110 1977 0 0 0 0 0 000010000D0002205 + 110 0 0 2 0 0D0002206 + 110 1979 0 0 0 0 0 000010000D0002207 + 110 0 0 2 0 0D0002208 + 110 1981 0 0 0 0 0 000010000D0002209 + 110 0 0 2 0 0D0002210 + 110 1983 0 0 0 0 0 000010000D0002211 + 110 0 0 2 0 0D0002212 + 144 1985 0 0 0 0 0 000020000D0002213 + 144 0 0 1 0 0D0002214 + 128 1986 0 0 0 0 0 000010000D0002215 + 128 0 0 7 0 0D0002216 + 142 1993 0 0 0 0 0 000010500D0002217 + 142 0 0 1 0 0D0002218 + 102 1994 0 0 0 0 0 000010000D0002219 + 102 0 0 1 0 0D0002220 + 110 1995 0 0 0 0 0 000010000D0002221 + 110 0 0 1 0 0D0002222 + 110 1996 0 0 0 0 0 000010000D0002223 + 110 0 0 1 0 0D0002224 + 110 1997 0 0 0 0 0 000010000D0002225 + 110 0 0 1 0 0D0002226 + 110 1998 0 0 0 0 0 000010000D0002227 + 110 0 0 1 0 0D0002228 + 110 1999 0 0 0 0 0 000010000D0002229 + 110 0 0 1 0 0D0002230 + 110 2000 0 0 0 0 0 000010000D0002231 + 110 0 0 1 0 0D0002232 + 110 2001 0 0 0 0 0 000010000D0002233 + 110 0 0 2 0 0D0002234 + 110 2003 0 0 0 0 0 000010000D0002235 + 110 0 0 2 0 0D0002236 + 102 2005 0 0 0 0 0 000010000D0002237 + 102 0 0 1 0 0D0002238 + 110 2006 0 0 0 0 0 000010000D0002239 + 110 0 0 2 0 0D0002240 + 110 2008 0 0 0 0 0 000010000D0002241 + 110 0 0 2 0 0D0002242 + 110 2010 0 0 0 0 0 000010000D0002243 + 110 0 0 2 0 0D0002244 + 110 2012 0 0 0 0 0 000010000D0002245 + 110 0 0 2 0 0D0002246 + 110 2014 0 0 0 0 0 000010000D0002247 + 110 0 0 2 0 0D0002248 + 110 2016 0 0 0 0 0 000010000D0002249 + 110 0 0 2 0 0D0002250 + 110 2018 0 0 0 0 0 000010000D0002251 + 110 0 0 2 0 0D0002252 + 110 2020 0 0 0 0 0 000010000D0002253 + 110 0 0 2 0 0D0002254 + 144 2022 0 0 0 0 0 000020000D0002255 + 144 0 0 1 0 0D0002256 + 128 2023 0 0 0 0 0 000010000D0002257 + 128 0 0 6 0 0D0002258 + 142 2029 0 0 0 0 0 000010500D0002259 + 142 0 0 1 0 0D0002260 + 102 2030 0 0 0 0 0 000010000D0002261 + 102 0 0 1 0 0D0002262 + 110 2031 0 0 0 0 0 000010000D0002263 + 110 0 0 1 0 0D0002264 + 110 2032 0 0 0 0 0 000010000D0002265 + 110 0 0 1 0 0D0002266 + 110 2033 0 0 0 0 0 000010000D0002267 + 110 0 0 1 0 0D0002268 + 110 2034 0 0 0 0 0 000010000D0002269 + 110 0 0 1 0 0D0002270 + 110 2035 0 0 0 0 0 000010000D0002271 + 110 0 0 1 0 0D0002272 + 110 2036 0 0 0 0 0 000010000D0002273 + 110 0 0 1 0 0D0002274 + 110 2037 0 0 0 0 0 000010000D0002275 + 110 0 0 1 0 0D0002276 + 110 2038 0 0 0 0 0 000010000D0002277 + 110 0 0 1 0 0D0002278 + 110 2039 0 0 0 0 0 000010000D0002279 + 110 0 0 1 0 0D0002280 + 110 2040 0 0 0 0 0 000010000D0002281 + 110 0 0 1 0 0D0002282 + 102 2041 0 0 0 0 0 000010000D0002283 + 102 0 0 1 0 0D0002284 + 110 2042 0 0 0 0 0 000010000D0002285 + 110 0 0 2 0 0D0002286 + 110 2044 0 0 0 0 0 000010000D0002287 + 110 0 0 2 0 0D0002288 + 110 2046 0 0 0 0 0 000010000D0002289 + 110 0 0 2 0 0D0002290 + 110 2048 0 0 0 0 0 000010000D0002291 + 110 0 0 2 0 0D0002292 + 110 2050 0 0 0 0 0 000010000D0002293 + 110 0 0 2 0 0D0002294 + 110 2052 0 0 0 0 0 000010000D0002295 + 110 0 0 2 0 0D0002296 + 110 2054 0 0 0 0 0 000010000D0002297 + 110 0 0 2 0 0D0002298 + 110 2056 0 0 0 0 0 000010000D0002299 + 110 0 0 2 0 0D0002300 + 110 2058 0 0 0 0 0 000010000D0002301 + 110 0 0 2 0 0D0002302 + 110 2060 0 0 0 0 0 000010000D0002303 + 110 0 0 2 0 0D0002304 + 144 2062 0 0 0 0 0 000020000D0002305 + 144 0 0 1 0 0D0002306 + 128 2063 0 0 0 0 0 000010000D0002307 + 128 0 0 6 0 0D0002308 + 142 2069 0 0 0 0 0 000010500D0002309 + 142 0 0 1 0 0D0002310 + 102 2070 0 0 0 0 0 000010000D0002311 + 102 0 0 1 0 0D0002312 + 110 2071 0 0 0 0 0 000010000D0002313 + 110 0 0 1 0 0D0002314 + 110 2072 0 0 0 0 0 000010000D0002315 + 110 0 0 1 0 0D0002316 + 110 2073 0 0 0 0 0 000010000D0002317 + 110 0 0 1 0 0D0002318 + 110 2074 0 0 0 0 0 000010000D0002319 + 110 0 0 1 0 0D0002320 + 102 2075 0 0 0 0 0 000010000D0002321 + 102 0 0 1 0 0D0002322 + 110 2076 0 0 0 0 0 000010000D0002323 + 110 0 0 2 0 0D0002324 + 110 2078 0 0 0 0 0 000010000D0002325 + 110 0 0 2 0 0D0002326 + 110 2080 0 0 0 0 0 000010000D0002327 + 110 0 0 2 0 0D0002328 + 110 2082 0 0 0 0 0 000010000D0002329 + 110 0 0 2 0 0D0002330 +402,5,3,821,1591,1749,1815; 0000001P0000001 +402,25,5,31,57,139,165,247,273,299,325,351,377,403,429,455,481, 0000003P0000002 +507,533,559,585,627,669,695,743,769,795; 0000003P0000003 +144,7,1,0,9; 0000005P0000004 +128,1,1,1,1,0,0,1,0,0,-0.8,-0.8,1.110223025E-16,1.110223025E-16, 0000007P0000005 +-0.148662782,-0.148662782,-1.665334537E-16,-1.665334537E-16,1., 0000007P0000006 +1.,1.,1.,8.346500521E-02,-0.184093715,0.133018378,0.114961068, 0000007P0000007 +-0.184093715,0.133018378,8.346500521E-02,-0.178581815, 0000007P0000008 +0.134986878,0.114961068,-0.178581815,0.134986878,-0.8, 0000007P0000009 +1.110223025E-16,-0.148662782,-1.665334537E-16; 0000007P0000010 +142,0,7,11,21,3; 0000009P0000011 +102,4,13,15,17,19; 0000011P0000012 +110,-0.8,-0.148662782,0.,1.110223025E-16,-0.148662782,0.; 0000013P0000013 +110,1.043624476E-16,-0.148662782,0.,1.043624476E-16, 0000015P0000014 +-1.665334537E-16,0.; 0000015P0000015 +110,0.,-5.616063203E-16,0.,-0.8,-5.616063203E-16,0.; 0000017P0000016 +110,-0.8,-5.616063203E-16,0.,-0.8,-0.148662782,0.; 0000019P0000017 +102,4,23,25,27,29; 0000021P0000018 +110,8.346500521E-02,-0.184093715,0.133018378,0.114961068, 0000023P0000019 +-0.184093715,0.133018378; 0000023P0000020 +110,0.114961068,-0.184093715,0.133018378,0.114961068, 0000025P0000021 +-0.178581815,0.134986878; 0000025P0000022 +110,0.114961068,-0.178581815,0.134986878,8.346500521E-02, 0000027P0000023 +-0.178581815,0.134986878; 0000027P0000024 +110,8.346500521E-02,-0.178581815,0.134986878,8.346500521E-02, 0000029P0000025 +-0.184093715,0.133018378; 0000029P0000026 +144,33,1,0,35; 0000031P0000027 +128,1,1,1,1,0,0,1,0,0,-1.110223025E-16,-1.110223025E-16,0.8,0.8, 0000033P0000028 +1.665334537E-16,1.665334537E-16,0.113136859,0.113136859,1.,1., 0000033P0000029 +1.,1.,0.114961068,-0.184093715,0.133018378,8.346500521E-02, 0000033P0000030 +-0.184093715,0.133018378,0.114961068,-0.187243315,0.129868778, 0000033P0000031 +8.346500521E-02,-0.187243315,0.129868778,-1.110223025E-16,0.8, 0000033P0000032 +1.665334537E-16,0.113136859; 0000033P0000033 +142,0,33,37,47,3; 0000035P0000034 +102,4,39,41,43,45; 0000037P0000035 +110,0.8,0.113136859,0.,-1.110223025E-16,0.113136859,0.; 0000039P0000036 +110,-7.105413147E-17,0.113136859,0.,-7.105413147E-17, 0000041P0000037 +1.665334537E-16,0.; 0000041P0000038 +110,0.,5.024295868E-16,0.,0.8,5.024295868E-16,0.; 0000043P0000039 +110,0.8,5.024295868E-16,0.,0.8,0.113136859,0.; 0000045P0000040 +102,4,49,51,53,55; 0000047P0000041 +110,8.346500521E-02,-0.187243315,0.129868778,0.114961068, 0000049P0000042 +-0.187243315,0.129868778; 0000049P0000043 +110,0.114961068,-0.187243315,0.129868778,0.114961068, 0000051P0000044 +-0.184093715,0.133018378; 0000051P0000045 +110,0.114961068,-0.184093715,0.133018378,8.346500521E-02, 0000053P0000046 +-0.184093715,0.133018378; 0000053P0000047 +110,8.346500521E-02,-0.184093715,0.133018378,8.346500521E-02, 0000055P0000048 +-0.187243315,0.129868778; 0000055P0000049 +144,59,1,0,61; 0000057P0000050 +128,1,1,1,1,0,0,1,0,0,-5.00000016,-5.00000016,-1.664776853, 0000059P0000051 +-1.664776853,-1.943689892E-14,-1.943689892E-14,3.43000076, 0000059P0000052 +3.43000076,1.,1.,1.,1.,0.114961068,-0.304566115,0.134986878, 0000059P0000053 +0.114961068,-0.173258111,0.134986878,0.114961068,-0.304566115, 0000059P0000054 +-5.252157638E-05,0.114961068,-0.173258111,-5.252157638E-05, 0000059P0000055 +-5.00000016,-1.664776853,-1.943689892E-14,3.43000076; 0000059P0000056 +142,0,59,63,101,3; 0000061P0000057 +102,18,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95,97,99; 0000063P0000058 +110,-1.79999894,2.958244073E-32,0.,-1.67999918,2.958244073E-32, 0000065P0000059 +0.; 0000065P0000060 +110,-1.67999918,0.,0.,-1.67999918,0.59999936,0.; 0000067P0000061 +110,-1.67999918,0.59999936,0.,-1.664776853,0.59999936,0.; 0000069P0000062 +110,-1.664776853,0.59999936,0.,-2.53091442,3.13779154,0.; 0000071P0000063 +110,-2.53091442,3.13779154,0.,-2.5899999,3.25000112,0.; 0000073P0000064 +110,-2.5899999,3.25000112,0.,-2.66999974,3.35000092,0.; 0000075P0000065 +110,-2.66999974,3.35000092,0.,-2.7899995,3.4100008,0.; 0000077P0000066 +110,-2.7899995,3.4100008,0.,-2.94999918,3.43000076,0.; 0000079P0000067 +110,-2.94999918,3.43000076,0.,-5.00000016,3.43000076,0.; 0000081P0000068 +110,-5.00000016,3.43000076,0.,-5.00000016,2.92999922,0.; 0000083P0000069 +110,-5.00000016,2.92999922,0.,-3.24000114,2.92999922,0.; 0000085P0000070 +110,-3.24000114,2.92999922,0.,-3.10000142,2.90999926,0.; 0000087P0000071 +110,-3.10000142,2.90999926,0.,-3.00999906,2.86999934,0.; 0000089P0000072 +110,-3.00999906,2.86999934,0.,-2.9522928,2.79021794,0.; 0000091P0000073 +110,-2.9522928,2.79021794,0.,-2.09996786,0.29290264,0.; 0000093P0000074 +110,-2.09996786,0.29290264,0.,-2.02000104,0.12999974,0.; 0000095P0000075 +110,-2.02000104,0.12999974,0.,-1.9400012,4.99999E-02,0.; 0000097P0000076 +110,-1.9400012,4.99999E-02,0.,-1.79999894,-1.943689892E-14,0.; 0000099P0000077 +102,18,103,105,107,109,111,113,115,117,119,121,123,125,127,129, 0000101P0000078 +131,133,135,137; 0000101P0000079 +110,0.114961068,-0.178581815,0.134986878,0.114961068, 0000103P0000080 +-0.173857415,0.134986878; 0000103P0000081 +110,0.114961068,-0.173857415,0.134986878,0.114961068, 0000105P0000082 +-0.173857415,0.111364856; 0000105P0000083 +110,0.114961068,-0.173857415,0.111364856,0.114961068, 0000107P0000084 +-0.173258111,0.111364856; 0000107P0000085 +110,0.114961068,-0.173258111,0.111364856,0.114961068, 0000109P0000086 +-0.207358015,1.145177842E-02; 0000109P0000087 +110,0.114961068,-0.207358015,1.145177842E-02,0.114961068, 0000111P0000088 +-0.209684215,7.034078424E-03; 0000111P0000089 +110,0.114961068,-0.209684215,7.034078424E-03,0.114961068, 0000113P0000090 +-0.212833815,3.097078424E-03; 0000113P0000091 +110,0.114961068,-0.212833815,3.097078424E-03,0.114961068, 0000115P0000092 +-0.217558215,7.348784236E-04; 0000115P0000093 +110,0.114961068,-0.217558215,7.348784236E-04,0.114961068, 0000117P0000094 +-0.223857415,-5.252157638E-05; 0000117P0000095 +110,0.114961068,-0.223857415,-5.252157638E-05,0.114961068, 0000119P0000096 +-0.304566115,-5.252157638E-05; 0000119P0000097 +110,0.114961068,-0.304566115,-5.252157638E-05,0.114961068, 0000121P0000098 +-0.304566115,1.963257842E-02; 0000121P0000099 +110,0.114961068,-0.304566115,1.963257842E-02,0.114961068, 0000123P0000100 +-0.235274815,1.963257842E-02; 0000123P0000101 +110,0.114961068,-0.235274815,1.963257842E-02,0.114961068, 0000125P0000102 +-0.229763015,2.041997842E-02; 0000125P0000103 +110,0.114961068,-0.229763015,2.041997842E-02,0.114961068, 0000127P0000104 +-0.226219615,2.199477842E-02; 0000127P0000105 +110,0.114961068,-0.226219615,2.199477842E-02,0.114961068, 0000129P0000106 +-0.223947715,2.513577842E-02; 0000129P0000107 +110,0.114961068,-0.223947715,2.513577842E-02,0.114961068, 0000131P0000108 +-0.190391615,0.123455278; 0000131P0000109 +110,0.114961068,-0.190391615,0.123455278,0.114961068, 0000133P0000110 +-0.187243315,0.129868778; 0000133P0000111 +110,0.114961068,-0.187243315,0.129868778,0.114961068, 0000135P0000112 +-0.184093715,0.133018378; 0000135P0000113 +110,0.114961068,-0.184093715,0.133018378,0.114961068, 0000137P0000114 +-0.178581815,0.134986878; 0000137P0000115 +144,141,1,0,143; 0000139P0000116 +128,1,1,1,1,0,0,1,0,0,-0.8,-0.8,1.221245327E-15,1.221245327E-15, 0000141P0000117 +-1.79999894,-1.79999894,-1.67999918,-1.67999918,1.,1.,1.,1., 0000141P0000118 +8.346500521E-02,-0.178581815,0.134986878,0.114961068, 0000141P0000119 +-0.178581815,0.134986878,8.346500521E-02,-0.173857415, 0000141P0000120 +0.134986878,0.114961068,-0.173857415,0.134986878,-0.8, 0000141P0000121 +1.221245327E-15,-1.79999894,-1.67999918; 0000141P0000122 +142,0,141,145,155,3; 0000143P0000123 +102,4,147,149,151,153; 0000145P0000124 +110,1.19904016E-15,-1.79999894,0.,1.19904016E-15,-1.67999918,0.; 0000147P0000125 +110,8.881784197E-16,-1.67999918,0.,-0.8,-1.67999918,0.; 0000149P0000126 +110,-0.8,-1.67999918,0.,-0.8,-1.79999894,0.; 0000151P0000127 +110,-0.8,-1.79999894,0.,1.221245327E-15,-1.79999894,0.; 0000153P0000128 +102,4,157,159,161,163; 0000155P0000129 +110,0.114961068,-0.178581815,0.134986878,0.114961068, 0000157P0000130 +-0.173857415,0.134986878; 0000157P0000131 +110,0.114961068,-0.173857415,0.134986878,8.346500521E-02, 0000159P0000132 +-0.173857415,0.134986878; 0000159P0000133 +110,8.346500521E-02,-0.173857415,0.134986878,8.346500521E-02, 0000161P0000134 +-0.178581815,0.134986878; 0000161P0000135 +110,8.346500521E-02,-0.178581815,0.134986878,0.114961068, 0000163P0000136 +-0.178581815,0.134986878; 0000163P0000137 +144,167,1,0,169; 0000165P0000138 +128,1,1,1,1,0,0,1,0,0,-5.00000016,-5.00000016,-1.664776853, 0000167P0000139 +-1.664776853,-1.970574805E-47,-1.970574805E-47,3.43000076, 0000167P0000140 +3.43000076,1.,1.,1.,1.,8.346500521E-02,-0.304566115,0.134986878, 0000167P0000141 +8.346500521E-02,-0.173258111,0.134986878,8.346500521E-02, 0000167P0000142 +-0.304566115,-5.252157638E-05,8.346500521E-02,-0.173258111, 0000167P0000143 +-5.252157638E-05,-5.00000016,-1.664776853,-1.970574805E-47, 0000167P0000144 +3.43000076; 0000167P0000145 +142,0,167,171,209,3; 0000169P0000146 +102,18,173,175,177,179,181,183,185,187,189,191,193,195,197,199, 0000171P0000147 +201,203,205,207; 0000171P0000148 +110,-1.79999894,-1.970574805E-47,0.,-1.67999918, 0000173P0000149 +-1.839203337E-47,0.; 0000173P0000150 +110,-1.67999918,0.,0.,-1.67999918,0.59999936,0.; 0000175P0000151 +110,-1.67999918,0.59999936,0.,-1.664776853,0.59999936,0.; 0000177P0000152 +110,-1.664776853,0.59999936,0.,-2.53091442,3.13779154,0.; 0000179P0000153 +110,-2.53091442,3.13779154,0.,-2.5899999,3.25000112,0.; 0000181P0000154 +110,-2.5899999,3.25000112,0.,-2.66999974,3.35000092,0.; 0000183P0000155 +110,-2.66999974,3.35000092,0.,-2.7899995,3.4100008,0.; 0000185P0000156 +110,-2.7899995,3.4100008,0.,-2.94999918,3.43000076,0.; 0000187P0000157 +110,-2.94999918,3.43000076,0.,-5.00000016,3.43000076,0.; 0000189P0000158 +110,-5.00000016,3.43000076,0.,-5.00000016,2.92999922,0.; 0000191P0000159 +110,-5.00000016,2.92999922,0.,-3.24000114,2.92999922,0.; 0000193P0000160 +110,-3.24000114,2.92999922,0.,-3.10000142,2.90999926,0.; 0000195P0000161 +110,-3.10000142,2.90999926,0.,-3.00999906,2.86999934,0.; 0000197P0000162 +110,-3.00999906,2.86999934,0.,-2.9522928,2.79021794,0.; 0000199P0000163 +110,-2.9522928,2.79021794,0.,-2.09996786,0.29290264,0.; 0000201P0000164 +110,-2.09996786,0.29290264,0.,-2.02000104,0.12999974,0.; 0000203P0000165 +110,-2.02000104,0.12999974,0.,-1.9400012,4.99999E-02,0.; 0000205P0000166 +110,-1.9400012,4.99999E-02,0.,-1.79999894,2.958244073E-32,0.; 0000207P0000167 +102,18,211,213,215,217,219,221,223,225,227,229,231,233,235,237, 0000209P0000168 +239,241,243,245; 0000209P0000169 +110,8.346500521E-02,-0.178581815,0.134986878,8.346500521E-02, 0000211P0000170 +-0.173857415,0.134986878; 0000211P0000171 +110,8.346500521E-02,-0.173857415,0.134986878,8.346500521E-02, 0000213P0000172 +-0.173857415,0.111364856; 0000213P0000173 +110,8.346500521E-02,-0.173857415,0.111364856,8.346500521E-02, 0000215P0000174 +-0.173258111,0.111364856; 0000215P0000175 +110,8.346500521E-02,-0.173258111,0.111364856,8.346500521E-02, 0000217P0000176 +-0.207358015,1.145177842E-02; 0000217P0000177 +110,8.346500521E-02,-0.207358015,1.145177842E-02, 0000219P0000178 +8.346500521E-02,-0.209684215,7.034078424E-03; 0000219P0000179 +110,8.346500521E-02,-0.209684215,7.034078424E-03, 0000221P0000180 +8.346500521E-02,-0.212833815,3.097078424E-03; 0000221P0000181 +110,8.346500521E-02,-0.212833815,3.097078424E-03, 0000223P0000182 +8.346500521E-02,-0.217558215,7.348784236E-04; 0000223P0000183 +110,8.346500521E-02,-0.217558215,7.348784236E-04, 0000225P0000184 +8.346500521E-02,-0.223857415,-5.252157638E-05; 0000225P0000185 +110,8.346500521E-02,-0.223857415,-5.252157638E-05, 0000227P0000186 +8.346500521E-02,-0.304566115,-5.252157638E-05; 0000227P0000187 +110,8.346500521E-02,-0.304566115,-5.252157638E-05, 0000229P0000188 +8.346500521E-02,-0.304566115,1.963257842E-02; 0000229P0000189 +110,8.346500521E-02,-0.304566115,1.963257842E-02, 0000231P0000190 +8.346500521E-02,-0.235274815,1.963257842E-02; 0000231P0000191 +110,8.346500521E-02,-0.235274815,1.963257842E-02, 0000233P0000192 +8.346500521E-02,-0.229763015,2.041997842E-02; 0000233P0000193 +110,8.346500521E-02,-0.229763015,2.041997842E-02, 0000235P0000194 +8.346500521E-02,-0.226219615,2.199477842E-02; 0000235P0000195 +110,8.346500521E-02,-0.226219615,2.199477842E-02, 0000237P0000196 +8.346500521E-02,-0.223947715,2.513577842E-02; 0000237P0000197 +110,8.346500521E-02,-0.223947715,2.513577842E-02, 0000239P0000198 +8.346500521E-02,-0.190391615,0.123455278; 0000239P0000199 +110,8.346500521E-02,-0.190391615,0.123455278,8.346500521E-02, 0000241P0000200 +-0.187243315,0.129868778; 0000241P0000201 +110,8.346500521E-02,-0.187243315,0.129868778,8.346500521E-02, 0000243P0000202 +-0.184093715,0.133018378; 0000243P0000203 +110,8.346500521E-02,-0.184093715,0.133018378,8.346500521E-02, 0000245P0000204 +-0.178581815,0.134986878; 0000245P0000205 +144,249,1,0,251; 0000247P0000206 +128,1,1,1,1,0,0,1,0,0,-1.110223025E-16,-1.110223025E-16,0.8,0.8, 0000249P0000207 +-2.775557562E-16,-2.775557562E-16,0.181471891,0.181471891,1.,1., 0000249P0000208 +1.,1.,0.114961068,-0.187243315,0.129868778,8.346500521E-02, 0000249P0000209 +-0.187243315,0.129868778,0.114961068,-0.190391615,0.123455278, 0000249P0000210 +8.346500521E-02,-0.190391615,0.123455278,-1.110223025E-16,0.8, 0000249P0000211 +-2.775557562E-16,0.181471891; 0000249P0000212 +142,0,249,253,263,3; 0000251P0000213 +102,4,255,257,259,261; 0000253P0000214 +110,0.8,0.181471891,0.,-1.110223025E-16,0.181471891,0.; 0000255P0000215 +110,-8.944031293E-17,0.181471891,0.,-8.944031293E-17, 0000257P0000216 +-2.775557562E-16,0.; 0000257P0000217 +110,0.,3.942883388E-16,0.,0.8,3.942883388E-16,0.; 0000259P0000218 +110,0.8,3.942883388E-16,0.,0.8,0.181471891,0.; 0000261P0000219 +102,4,265,267,269,271; 0000263P0000220 +110,8.346500521E-02,-0.190391615,0.123455278,0.114961068, 0000265P0000221 +-0.190391615,0.123455278; 0000265P0000222 +110,0.114961068,-0.190391615,0.123455278,0.114961068, 0000267P0000223 +-0.187243315,0.129868778; 0000267P0000224 +110,0.114961068,-0.187243315,0.129868778,8.346500521E-02, 0000269P0000225 +-0.187243315,0.129868778; 0000269P0000226 +110,8.346500521E-02,-0.187243315,0.129868778,8.346500521E-02, 0000271P0000227 +-0.190391615,0.123455278; 0000271P0000228 +144,275,1,0,277; 0000273P0000229 +128,1,1,1,1,0,0,1,0,0,-1.122277853E-15,-1.122277853E-15,0.8,0.8, 0000275P0000230 +3.402443228E-16,3.402443228E-16,2.63875757,2.63875757,1.,1.,1., 0000275P0000231 +1.,0.114961068,-0.190391615,0.123455278,8.346500521E-02, 0000275P0000232 +-0.190391615,0.123455278,0.114961068,-0.223947715, 0000275P0000233 +2.513577842E-02,8.346500521E-02,-0.223947715,2.513577842E-02, 0000275P0000234 +-1.122277853E-15,0.8,3.402443228E-16,2.63875757; 0000275P0000235 +142,0,275,279,289,3; 0000277P0000236 +102,4,281,283,285,287; 0000279P0000237 +110,0.8,2.63875757,0.,-1.110223025E-15,2.63875757,0.; 0000281P0000238 +110,-1.122277853E-15,2.63875757,0.,-1.122277853E-15, 0000283P0000239 +4.440892099E-16,0.; 0000283P0000240 +110,0.,3.402443228E-16,0.,0.8,3.402443228E-16,0.; 0000285P0000241 +110,0.8,3.402443228E-16,0.,0.8,2.63875757,0.; 0000287P0000242 +102,4,291,293,295,297; 0000289P0000243 +110,8.346500521E-02,-0.223947715,2.513577842E-02,0.114961068, 0000291P0000244 +-0.223947715,2.513577842E-02; 0000291P0000245 +110,0.114961068,-0.223947715,2.513577842E-02,0.114961068, 0000293P0000246 +-0.190391615,0.123455278; 0000293P0000247 +110,0.114961068,-0.190391615,0.123455278,8.346500521E-02, 0000295P0000248 +-0.190391615,0.123455278; 0000295P0000249 +110,8.346500521E-02,-0.190391615,0.123455278,8.346500521E-02, 0000297P0000250 +-0.223947715,2.513577842E-02; 0000297P0000251 +144,301,1,0,303; 0000299P0000252 +128,1,1,1,1,0,0,1,0,0,-1.110223025E-16,-1.110223025E-16,0.8,0.8, 0000301P0000253 +-2.220446049E-16,-2.220446049E-16,9.846361881E-02, 0000301P0000254 +9.846361881E-02,1.,1.,1.,1.,0.114961068,-0.223947715, 0000301P0000255 +2.513577842E-02,8.346500521E-02,-0.223947715,2.513577842E-02, 0000301P0000256 +0.114961068,-0.226219615,2.199477842E-02,8.346500521E-02, 0000301P0000257 +-0.226219615,2.199477842E-02,-1.110223025E-16,0.8, 0000301P0000258 +-2.220446049E-16,9.846361881E-02; 0000301P0000259 +142,0,301,305,315,3; 0000303P0000260 +102,4,307,309,311,313; 0000305P0000261 +110,0.8,9.846361881E-02,0.,-1.110223025E-16,9.846361881E-02,0.; 0000307P0000262 +110,-5.615512055E-17,9.846361881E-02,0.,-5.615512055E-17, 0000309P0000263 +-2.220446049E-16,0.; 0000309P0000264 +110,0.,6.36165181E-16,0.,0.8,6.36165181E-16,0.; 0000311P0000265 +110,0.8,6.36165181E-16,0.,0.8,9.846361881E-02,0.; 0000313P0000266 +102,4,317,319,321,323; 0000315P0000267 +110,8.346500521E-02,-0.226219615,2.199477842E-02,0.114961068, 0000317P0000268 +-0.226219615,2.199477842E-02; 0000317P0000269 +110,0.114961068,-0.226219615,2.199477842E-02,0.114961068, 0000319P0000270 +-0.223947715,2.513577842E-02; 0000319P0000271 +110,0.114961068,-0.223947715,2.513577842E-02,8.346500521E-02, 0000321P0000272 +-0.223947715,2.513577842E-02; 0000321P0000273 +110,8.346500521E-02,-0.223947715,2.513577842E-02, 0000323P0000274 +8.346500521E-02,-0.226219615,2.199477842E-02; 0000323P0000275 +144,327,1,0,329; 0000325P0000276 +128,1,1,1,1,0,0,1,0,0,-0.8,-0.8,1.110223025E-16,1.110223025E-16, 0000327P0000277 +-9.849070213E-02,-9.849070213E-02,2.498001805E-16, 0000327P0000278 +2.498001805E-16,1.,1.,1.,1.,8.346500521E-02,-0.229763015, 0000327P0000279 +2.041997842E-02,0.114961068,-0.229763015,2.041997842E-02, 0000327P0000280 +8.346500521E-02,-0.226219615,2.199477842E-02,0.114961068, 0000327P0000281 +-0.226219615,2.199477842E-02,-0.8,1.110223025E-16, 0000327P0000282 +-9.849070213E-02,2.498001805E-16; 0000327P0000283 +142,0,327,331,341,3; 0000329P0000284 +102,4,333,335,337,339; 0000331P0000285 +110,-0.8,-9.849070213E-02,0.,1.110223025E-16,-9.849070213E-02, 0000333P0000286 +0.; 0000333P0000287 +110,6.883538184E-17,-9.849070213E-02,0.,6.883538184E-17, 0000335P0000288 +2.498001805E-16,0.; 0000335P0000289 +110,0.,-5.591218692E-16,0.,-0.8,-5.591218692E-16,0.; 0000337P0000290 +110,-0.8,-5.591218692E-16,0.,-0.8,-9.849070213E-02,0.; 0000339P0000291 +102,4,343,345,347,349; 0000341P0000292 +110,8.346500521E-02,-0.229763015,2.041997842E-02,0.114961068, 0000343P0000293 +-0.229763015,2.041997842E-02; 0000343P0000294 +110,0.114961068,-0.229763015,2.041997842E-02,0.114961068, 0000345P0000295 +-0.226219615,2.199477842E-02; 0000345P0000296 +110,0.114961068,-0.226219615,2.199477842E-02,8.346500521E-02, 0000347P0000297 +-0.226219615,2.199477842E-02; 0000347P0000298 +110,8.346500521E-02,-0.226219615,2.199477842E-02, 0000349P0000299 +8.346500521E-02,-0.229763015,2.041997842E-02; 0000349P0000300 +144,353,1,0,355; 0000351P0000301 +128,1,1,1,1,0,0,1,0,0,-0.8,-0.8,1.110223025E-16,1.110223025E-16, 0000353P0000302 +-0.141421073,-0.141421073,-1.387778781E-16,-1.387778781E-16,1., 0000353P0000303 +1.,1.,1.,8.346500521E-02,-0.235274815,1.963257842E-02, 0000353P0000304 +0.114961068,-0.235274815,1.963257842E-02,8.346500521E-02, 0000353P0000305 +-0.229763015,2.041997842E-02,0.114961068,-0.229763015, 0000353P0000306 +2.041997842E-02,-0.8,1.110223025E-16,-0.141421073, 0000353P0000307 +-1.387778781E-16; 0000353P0000308 +142,0,353,357,367,3; 0000355P0000309 +102,4,359,361,363,365; 0000357P0000310 +110,-0.8,-0.141421073,0.,1.110223025E-16,-0.141421073,0.; 0000359P0000311 +110,9.769943077E-17,-0.141421073,0.,9.769943077E-17, 0000361P0000312 +-1.387778781E-16,0.; 0000361P0000313 +110,0.,-5.369716209E-16,0.,-0.8,-5.369716209E-16,0.; 0000363P0000314 +110,-0.8,-5.369716209E-16,0.,-0.8,-0.141421073,0.; 0000365P0000315 +102,4,369,371,373,375; 0000367P0000316 +110,8.346500521E-02,-0.235274815,1.963257842E-02,0.114961068, 0000369P0000317 +-0.235274815,1.963257842E-02; 0000369P0000318 +110,0.114961068,-0.235274815,1.963257842E-02,0.114961068, 0000371P0000319 +-0.229763015,2.041997842E-02; 0000371P0000320 +110,0.114961068,-0.229763015,2.041997842E-02,8.346500521E-02, 0000373P0000321 +-0.229763015,2.041997842E-02; 0000373P0000322 +110,8.346500521E-02,-0.229763015,2.041997842E-02, 0000375P0000323 +8.346500521E-02,-0.235274815,1.963257842E-02; 0000375P0000324 +144,379,1,0,381; 0000377P0000325 +128,1,1,1,1,0,0,1,0,0,-0.8,-0.8,1.221245327E-15,1.221245327E-15, 0000379P0000326 +-1.75999902,-1.75999902,4.440892099E-16,4.440892099E-16,1.,1., 0000379P0000327 +1.,1.,8.346500521E-02,-0.304566115,1.963257842E-02,0.114961068, 0000379P0000328 +-0.304566115,1.963257842E-02,8.346500521E-02,-0.235274815, 0000379P0000329 +1.963257842E-02,0.114961068,-0.235274815,1.963257842E-02,-0.8, 0000379P0000330 +1.221245327E-15,-1.75999902,4.440892099E-16; 0000379P0000331 +142,0,379,383,393,3; 0000381P0000332 +102,4,385,387,389,391; 0000383P0000333 +110,-0.8,-1.75999902,0.,1.221245327E-15,-1.75999902,0.; 0000385P0000334 +110,1.172394861E-15,-1.75999902,0.,1.172394861E-15, 0000387P0000335 +4.440892099E-16,0.; 0000387P0000336 +110,0.,-5.329070518E-16,0.,-0.8,-5.329070518E-16,0.; 0000389P0000337 +110,-0.8,-5.329070518E-16,0.,-0.8,-1.75999902,0.; 0000391P0000338 +102,4,395,397,399,401; 0000393P0000339 +110,8.346500521E-02,-0.304566115,1.963257842E-02,0.114961068, 0000395P0000340 +-0.304566115,1.963257842E-02; 0000395P0000341 +110,0.114961068,-0.304566115,1.963257842E-02,0.114961068, 0000397P0000342 +-0.235274815,1.963257842E-02; 0000397P0000343 +110,0.114961068,-0.235274815,1.963257842E-02,8.346500521E-02, 0000399P0000344 +-0.235274815,1.963257842E-02; 0000399P0000345 +110,8.346500521E-02,-0.235274815,1.963257842E-02, 0000401P0000346 +8.346500521E-02,-0.304566115,1.963257842E-02; 0000401P0000347 +144,405,1,0,407; 0000403P0000348 +128,1,1,1,1,0,0,1,0,0,-1.110226444E-16,-1.110226444E-16,0.8,0.8, 0000405P0000349 +0.,0.,0.50000154,0.50000154,1.,1.,1.,1.,0.114961068, 0000405P0000350 +-0.304566115,1.963257842E-02,8.346500521E-02,-0.304566115, 0000405P0000351 +1.963257842E-02,0.114961068,-0.304566115,-5.252157638E-05, 0000405P0000352 +8.346500521E-02,-0.304566115,-5.252157638E-05,-1.110226444E-16, 0000405P0000353 +0.8,0.,0.50000154; 0000405P0000354 +142,0,405,409,419,3; 0000407P0000355 +102,4,411,413,415,417; 0000409P0000356 +110,0.8,0.50000154,0.,-1.110223025E-16,0.50000154,0.; 0000411P0000357 +110,-1.110226444E-16,0.50000154,0.,-1.110226444E-16,0.,0.; 0000413P0000358 +110,0.,1.776356839E-16,0.,0.8,1.776356839E-16,0.; 0000415P0000359 +110,0.8,1.776356839E-16,0.,0.8,0.50000154,0.; 0000417P0000360 +102,4,421,423,425,427; 0000419P0000361 +110,8.346500521E-02,-0.304566115,-5.252157638E-05,0.114961068, 0000421P0000362 +-0.304566115,-5.252157638E-05; 0000421P0000363 +110,0.114961068,-0.304566115,-5.252157638E-05,0.114961068, 0000423P0000364 +-0.304566115,1.963257842E-02; 0000423P0000365 +110,0.114961068,-0.304566115,1.963257842E-02,8.346500521E-02, 0000425P0000366 +-0.304566115,1.963257842E-02; 0000425P0000367 +110,8.346500521E-02,-0.304566115,1.963257842E-02, 0000427P0000368 +8.346500521E-02,-0.304566115,-5.252157638E-05; 0000427P0000369 +144,431,1,0,433; 0000429P0000370 +128,1,1,1,1,0,0,1,0,0,0.,0.,0.8,0.8,-5.329070518E-16, 0000431P0000371 +-5.329070518E-16,2.05000098,2.05000098,1.,1.,1.,1.,0.114961068, 0000431P0000372 +-0.304566115,-5.252157638E-05,8.346500521E-02,-0.304566115, 0000431P0000373 +-5.252157638E-05,0.114961068,-0.223857415,-5.252157638E-05, 0000431P0000374 +8.346500521E-02,-0.223857415,-5.252157638E-05,0.,0.8, 0000431P0000375 +-5.329070518E-16,2.05000098; 0000431P0000376 +142,0,431,435,445,3; 0000433P0000377 +102,4,437,439,441,443; 0000435P0000378 +110,0.8,2.05000098,0.,1.33226763E-15,2.05000098,0.; 0000437P0000379 +110,1.365574973E-15,2.05000098,0.,1.365574973E-15,0.,0.; 0000439P0000380 +110,0.,-5.329070518E-16,0.,0.8,-5.329070518E-16,0.; 0000441P0000381 +110,0.8,-5.329070518E-16,0.,0.8,2.05000098,0.; 0000443P0000382 +102,4,447,449,451,453; 0000445P0000383 +110,8.346500521E-02,-0.223857415,-5.252157638E-05,0.114961068, 0000447P0000384 +-0.223857415,-5.252157638E-05; 0000447P0000385 +110,0.114961068,-0.223857415,-5.252157638E-05,0.114961068, 0000449P0000386 +-0.304566115,-5.252157638E-05; 0000449P0000387 +110,0.114961068,-0.304566115,-5.252157638E-05,8.346500521E-02, 0000451P0000388 +-0.304566115,-5.252157638E-05; 0000451P0000389 +110,8.346500521E-02,-0.304566115,-5.252157638E-05, 0000453P0000390 +8.346500521E-02,-0.223857415,-5.252157638E-05; 0000453P0000391 +144,457,1,0,459; 0000455P0000392 +128,1,1,1,1,0,0,1,0,0,0.,0.,0.8,0.8,-5.372694169E-16, 0000457P0000393 +-5.372694169E-16,0.161244832,0.161244832,1.,1.,1.,1., 0000457P0000394 +0.114961068,-0.223857415,-5.252157638E-05,8.346500521E-02, 0000457P0000395 +-0.223857415,-5.252157638E-05,0.114961068,-0.217558215, 0000457P0000396 +7.348784236E-04,8.346500521E-02,-0.217558215,7.348784236E-04,0., 0000457P0000397 +0.8,-5.372694169E-16,0.161244832; 0000457P0000398 +142,0,457,461,471,3; 0000459P0000399 +102,4,463,465,467,469; 0000461P0000400 +110,0.8,0.161244832,0.,1.110223025E-16,0.161244832,0.; 0000463P0000401 +110,1.110220804E-16,0.161244832,0.,1.110220804E-16, 0000465P0000402 +-1.110223025E-16,0.; 0000465P0000403 +110,0.,-5.372694169E-16,-0.,0.8,-5.372694169E-16,-0.; 0000467P0000404 +110,0.8,-5.372694169E-16,0.,0.8,0.161244832,0.; 0000469P0000405 +102,4,473,475,477,479; 0000471P0000406 +110,8.346500521E-02,-0.217558215,7.348784236E-04,0.114961068, 0000473P0000407 +-0.217558215,7.348784236E-04; 0000473P0000408 +110,0.114961068,-0.217558215,7.348784236E-04,0.114961068, 0000475P0000409 +-0.223857415,-5.252157638E-05; 0000475P0000410 +110,0.114961068,-0.223857415,-5.252157638E-05,8.346500521E-02, 0000477P0000411 +-0.223857415,-5.252157638E-05; 0000477P0000412 +110,8.346500521E-02,-0.223857415,-5.252157638E-05, 0000479P0000413 +8.346500521E-02,-0.217558215,7.348784236E-04; 0000479P0000414 +144,483,1,0,485; 0000481P0000415 +128,1,1,1,1,0,0,1,0,0,0.,0.,0.8,0.8,-5.871193272E-16, 0000483P0000416 +-5.871193272E-16,0.13416381,0.13416381,1.,1.,1.,1.,0.114961068, 0000483P0000417 +-0.217558215,7.348784236E-04,8.346500521E-02,-0.217558215, 0000483P0000418 +7.348784236E-04,0.114961068,-0.212833815,3.097078424E-03, 0000483P0000419 +8.346500521E-02,-0.212833815,3.097078424E-03,0.,0.8, 0000483P0000420 +-5.871193272E-16,0.13416381; 0000483P0000421 +142,0,483,487,497,3; 0000485P0000422 +102,4,489,491,493,495; 0000487P0000423 +110,0.8,0.13416381,0.,1.110223025E-16,0.13416381,0.; 0000489P0000424 +110,9.325854755E-17,0.13416381,0.,9.325854755E-17, 0000491P0000425 +7.771561172E-16,0.; 0000491P0000426 +110,0.,-5.871193272E-16,0.,0.8,-5.871193272E-16,0.; 0000493P0000427 +110,0.8,-5.871193272E-16,0.,0.8,0.13416381,0.; 0000495P0000428 +102,4,499,501,503,505; 0000497P0000429 +110,8.346500521E-02,-0.212833815,3.097078424E-03,0.114961068, 0000499P0000430 +-0.212833815,3.097078424E-03; 0000499P0000431 +110,0.114961068,-0.212833815,3.097078424E-03,0.114961068, 0000501P0000432 +-0.217558215,7.348784236E-04; 0000501P0000433 +110,0.114961068,-0.217558215,7.348784236E-04,8.346500521E-02, 0000503P0000434 +-0.217558215,7.348784236E-04; 0000503P0000435 +110,8.346500521E-02,-0.217558215,7.348784236E-04, 0000505P0000436 +8.346500521E-02,-0.212833815,3.097078424E-03; 0000505P0000437 +144,509,1,0,511; 0000507P0000438 +128,1,1,1,1,0,0,1,0,0,-0.8,-0.8,0.,0.,-0.128062229,-0.128062229, 0000509P0000439 +6.233288041E-16,6.233288041E-16,1.,1.,1.,1.,8.346500521E-02, 0000509P0000440 +-0.209684215,7.034078424E-03,0.114961068,-0.209684215, 0000509P0000441 +7.034078424E-03,8.346500521E-02,-0.212833815,3.097078424E-03, 0000509P0000442 +0.114961068,-0.212833815,3.097078424E-03,-0.8,0.,-0.128062229, 0000509P0000443 +6.233288041E-16; 0000509P0000444 +142,0,509,513,523,3; 0000511P0000445 +102,4,515,517,519,521; 0000513P0000446 +110,-0.8,-0.128062229,0.,-1.110223025E-16,-0.128062229,0.; 0000515P0000447 +110,-7.549501468E-17,-0.128062229,0.,-7.549501468E-17, 0000517P0000448 +-1.665334537E-16,0.; 0000517P0000449 +110,0.,6.233288041E-16,0.,-0.8,6.233288041E-16,0.; 0000519P0000450 +110,-0.8,6.233288041E-16,0.,-0.8,-0.128062229,0.; 0000521P0000451 +102,4,525,527,529,531; 0000523P0000452 +110,8.346500521E-02,-0.209684215,7.034078424E-03,0.114961068, 0000525P0000453 +-0.209684215,7.034078424E-03; 0000525P0000454 +110,0.114961068,-0.209684215,7.034078424E-03,0.114961068, 0000527P0000455 +-0.212833815,3.097078424E-03; 0000527P0000456 +110,0.114961068,-0.212833815,3.097078424E-03,8.346500521E-02, 0000529P0000457 +-0.212833815,3.097078424E-03; 0000529P0000458 +110,8.346500521E-02,-0.212833815,3.097078424E-03, 0000531P0000459 +8.346500521E-02,-0.209684215,7.034078424E-03; 0000531P0000460 +144,535,1,0,537; 0000533P0000461 +128,1,1,1,1,0,0,1,0,0,-0.8,-0.8,0.,0.,-0.126815156,-0.126815156, 0000535P0000462 +5.773803947E-16,5.773803947E-16,1.,1.,1.,1.,8.346500521E-02, 0000535P0000463 +-0.207358015,1.145177842E-02,0.114961068,-0.207358015, 0000535P0000464 +1.145177842E-02,8.346500521E-02,-0.209684215,7.034078424E-03, 0000535P0000465 +0.114961068,-0.209684215,7.034078424E-03,-0.8,0.,-0.126815156, 0000535P0000466 +5.773803947E-16; 0000535P0000467 +142,0,535,539,549,3; 0000537P0000468 +102,4,541,543,545,547; 0000539P0000469 +110,-0.8,-0.126815156,0.,-1.110223025E-16,-0.126815156,0.; 0000541P0000470 +110,-6.427436805E-17,-0.126815156,0.,-6.427436805E-17, 0000543P0000471 +3.60822483E-16,0.; 0000543P0000472 +110,0.,5.773803947E-16,0.,-0.8,5.773803947E-16,0.; 0000545P0000473 +110,-0.8,5.773803947E-16,0.,-0.8,-0.126815156,0.; 0000547P0000474 +102,4,551,553,555,557; 0000549P0000475 +110,8.346500521E-02,-0.207358015,1.145177842E-02,0.114961068, 0000551P0000476 +-0.207358015,1.145177842E-02; 0000551P0000477 +110,0.114961068,-0.207358015,1.145177842E-02,0.114961068, 0000553P0000478 +-0.209684215,7.034078424E-03; 0000553P0000479 +110,0.114961068,-0.209684215,7.034078424E-03,8.346500521E-02, 0000555P0000480 +-0.209684215,7.034078424E-03; 0000555P0000481 +110,8.346500521E-02,-0.209684215,7.034078424E-03, 0000557P0000482 +8.346500521E-02,-0.207358015,1.145177842E-02; 0000557P0000483 +144,561,1,0,563; 0000559P0000484 +128,1,1,1,1,0,0,1,0,0,-0.8,-0.8,0.,0.,-2.681526325,-2.681526325, 0000561P0000485 +4.978510002E-16,4.978510002E-16,1.,1.,1.,1.,8.346500521E-02, 0000561P0000486 +-0.173258111,0.111364856,0.114961068,-0.173258111,0.111364856, 0000561P0000487 +8.346500521E-02,-0.207358015,1.145177842E-02,0.114961068, 0000561P0000488 +-0.207358015,1.145177842E-02,-0.8,0.,-2.681526325, 0000561P0000489 +4.978510002E-16; 0000561P0000490 +142,0,561,565,575,3; 0000563P0000491 +102,4,567,569,571,573; 0000565P0000492 +110,-0.8,-2.681526325,0.,-1.387778781E-15,-2.681526325,0.; 0000567P0000493 +110,-1.14790458E-15,-2.681526325,0.,-1.14790458E-15, 0000569P0000494 +-4.440892099E-16,0.; 0000569P0000495 +110,0.,4.978510002E-16,0.,-0.8,4.978510002E-16,0.; 0000571P0000496 +110,-0.8,4.978510002E-16,0.,-0.8,-2.681526325,0.; 0000573P0000497 +102,4,577,579,581,583; 0000575P0000498 +110,8.346500521E-02,-0.173258111,0.111364856,0.114961068, 0000577P0000499 +-0.173258111,0.111364856; 0000577P0000500 +110,0.114961068,-0.173258111,0.111364856,0.114961068, 0000579P0000501 +-0.207358015,1.145177842E-02; 0000579P0000502 +110,0.114961068,-0.207358015,1.145177842E-02,8.346500521E-02, 0000581P0000503 +-0.207358015,1.145177842E-02; 0000581P0000504 +110,8.346500521E-02,-0.207358015,1.145177842E-02, 0000583P0000505 +8.346500521E-02,-0.173258111,0.111364856; 0000583P0000506 +144,587,1,0,589; 0000585P0000507 +128,1,1,1,1,0,0,1,0,0,-1.1999976,-1.1999976,0.,0.,-1.67999918, 0000587P0000508 +-1.67999918,7.327457745E-16,7.327457745E-16,1.,1.,1.,1., 0000587P0000509 +0.122835068,-0.173857415,0.111364856,7.559106821E-02, 0000587P0000510 +-0.173857415,0.111364856,0.122835068,-0.107715715,0.111364856, 0000587P0000511 +7.559106821E-02,-0.107715715,0.111364856,-1.1999976,0., 0000587P0000512 +-1.67999918,7.327457745E-16; 0000587P0000513 +142,0,587,591,609,3; 0000589P0000514 +102,8,593,595,597,599,601,603,605,607; 0000591P0000515 +110,-0.999998,-1.664776853,0.,-0.199998,-1.664776853,0.; 0000593P0000516 +110,-0.199998,-1.664776853,0.,-0.199998,-1.67999918,0.; 0000595P0000517 +110,-0.199998,-1.67999918,0.,-1.110223025E-15,-1.67999918,0.; 0000597P0000518 +110,-1.025845635E-15,-1.67999918,0.,-1.025845635E-15, 0000599P0000519 +-2.220446049E-16,0.; 0000599P0000520 +110,0.,0.,0.,-1.1999976,-8.655970003E-33,0.; 0000601P0000521 +110,-1.1999976,7.327457745E-16,0.,-1.1999976,-1.67999918,0.; 0000603P0000522 +110,-1.1999976,-1.67999918,0.,-0.999998,-1.67999918,0.; 0000605P0000523 +110,-0.999998,-1.67999918,0.,-0.999998,-1.664776853,0.; 0000607P0000524 +102,8,611,613,615,617,619,621,623,625; 0000609P0000525 +110,0.114961068,-0.173258111,0.111364856,8.346500521E-02, 0000611P0000526 +-0.173258111,0.111364856; 0000611P0000527 +110,8.346500521E-02,-0.173258111,0.111364856,8.346500521E-02, 0000613P0000528 +-0.173857415,0.111364856; 0000613P0000529 +110,8.346500521E-02,-0.173857415,0.111364856,7.559106821E-02, 0000615P0000530 +-0.173857415,0.111364856; 0000615P0000531 +110,7.559106821E-02,-0.173857415,0.111364856,7.559106821E-02, 0000617P0000532 +-0.107715715,0.111364856; 0000617P0000533 +110,7.559106821E-02,-0.107715715,0.111364856,0.122835068, 0000619P0000534 +-0.107715715,0.111364856; 0000619P0000535 +110,0.122835068,-0.107715715,0.111364856,0.122835068, 0000621P0000536 +-0.173857415,0.111364856; 0000621P0000537 +110,0.122835068,-0.173857415,0.111364856,0.114961068, 0000623P0000538 +-0.173857415,0.111364856; 0000623P0000539 +110,0.114961068,-0.173857415,0.111364856,0.114961068, 0000625P0000540 +-0.173258111,0.111364856; 0000625P0000541 +144,629,1,0,631; 0000627P0000542 +128,1,1,1,1,0,0,1,0,0,0.,0.,0.6,0.6,-1.1392476E-16, 0000629P0000543 +-1.1392476E-16,1.1999976,1.1999976,1.,1.,1.,1.,7.559106821E-02, 0000629P0000544 +-0.173857415,0.111364856,7.559106821E-02,-0.173857415, 0000629P0000545 +0.134986904,0.122835068,-0.173857415,0.111364856,0.122835068, 0000629P0000546 +-0.173857415,0.134986904,0.,0.6,-1.1392476E-16,1.1999976; 0000629P0000547 +142,0,629,633,651,3; 0000631P0000548 +102,8,635,637,639,641,643,645,647,649; 0000633P0000549 +110,0.59999936,0.999998,0.,0.59999936,0.199998,0.; 0000635P0000550 +110,0.59999936,0.199998,0.,4.440892099E-16,0.199998,0.; 0000637P0000551 +110,2.278490643E-16,0.199998,0.,2.278490643E-16,0.,0.; 0000639P0000552 +110,0.,-1.1392476E-16,0.,0.6,-1.1392476E-16,0.; 0000641P0000553 +110,0.6,-1.1392476E-16,0.,0.6,1.1999976,0.; 0000643P0000554 +110,0.6,1.1999976,0.,2.220446049E-16,1.1999976,0.; 0000645P0000555 +110,2.278490643E-16,1.1999976,0.,2.278490643E-16,0.999998,0.; 0000647P0000556 +110,5.551115123E-16,0.999998,0.,0.59999936,0.999998,0.; 0000649P0000557 +102,8,653,655,657,659,661,663,665,667; 0000651P0000558 +110,0.114961068,-0.173857415,0.134986878,8.346500521E-02, 0000653P0000559 +-0.173857415,0.134986878; 0000653P0000560 +110,8.346500521E-02,-0.173857415,0.134986878,8.346500521E-02, 0000655P0000561 +-0.173857415,0.111364856; 0000655P0000562 +110,8.346500521E-02,-0.173857415,0.111364856,7.559106821E-02, 0000657P0000563 +-0.173857415,0.111364856; 0000657P0000564 +110,7.559106821E-02,-0.173857415,0.111364856,7.559106821E-02, 0000659P0000565 +-0.173857415,0.134986904; 0000659P0000566 +110,7.559106821E-02,-0.173857415,0.134986904,0.122835068, 0000661P0000567 +-0.173857415,0.134986904; 0000661P0000568 +110,0.122835068,-0.173857415,0.134986904,0.122835068, 0000663P0000569 +-0.173857415,0.111364856; 0000663P0000570 +110,0.122835068,-0.173857415,0.111364856,0.114961068, 0000665P0000571 +-0.173857415,0.111364856; 0000665P0000572 +110,0.114961068,-0.173857415,0.111364856,0.114961068, 0000667P0000573 +-0.173857415,0.134986878; 0000667P0000574 +144,671,1,0,673; 0000669P0000575 +128,1,1,1,1,0,0,1,0,0,-1.110223025E-16,-1.110223025E-16,0.6,0.6, 0000671P0000576 +2.2793958E-17,2.2793958E-17,1.67999918,1.67999918,1.,1.,1.,1., 0000671P0000577 +0.122835068,-0.173857415,0.111364856,0.122835068,-0.173857415, 0000671P0000578 +0.134986904,0.122835068,-0.107715715,0.111364856,0.122835068, 0000671P0000579 +-0.107715715,0.134986904,-1.110223025E-16,0.6,2.2793958E-17, 0000671P0000580 +1.67999918; 0000671P0000581 +142,0,671,675,685,3; 0000673P0000582 +102,4,677,679,681,683; 0000675P0000583 +110,-6.382305125E-17,1.67999918,0.,-6.382305125E-17, 0000677P0000584 +2.220446049E-16,0.; 0000677P0000585 +110,0.,2.2793958E-17,0.,0.6,2.2793958E-17,0.; 0000679P0000586 +110,0.6,2.2793958E-17,0.,0.6,1.67999918,0.; 0000681P0000587 +110,0.6,1.67999918,0.,-1.110223025E-16,1.67999918,0.; 0000683P0000588 +102,4,687,689,691,693; 0000685P0000589 +110,0.122835068,-0.107715715,0.111364856,0.122835068, 0000687P0000590 +-0.173857415,0.111364856; 0000687P0000591 +110,0.122835068,-0.173857415,0.111364856,0.122835068, 0000689P0000592 +-0.173857415,0.134986904; 0000689P0000593 +110,0.122835068,-0.173857415,0.134986904,0.122835068, 0000691P0000594 +-0.107715715,0.134986904; 0000691P0000595 +110,0.122835068,-0.107715715,0.134986904,0.122835068, 0000693P0000596 +-0.107715715,0.111364856; 0000693P0000597 +144,697,1,1,699,721; 0000695P0000598 +128,1,1,1,1,0,0,1,0,0,-0.6,-0.6,2.278490643E-16,2.278490643E-16, 0000697P0000599 +-1.1999976,-1.1999976,0.,0.,1.,1.,1.,1.,7.559106821E-02, 0000697P0000600 +-0.107715715,0.134986904,7.559106821E-02,-0.107715715, 0000697P0000601 +0.111364856,0.122835068,-0.107715715,0.134986904,0.122835068, 0000697P0000602 +-0.107715715,0.111364856,-0.6,2.278490643E-16,-1.1999976,0.; 0000697P0000603 +142,0,697,701,711,3; 0000699P0000604 +102,4,703,705,707,709; 0000701P0000605 +110,-0.6,-1.1999976,-0.,2.278490643E-16,-1.1999976,-0.; 0000703P0000606 +110,2.278490643E-16,-1.1999976,0.,2.278490643E-16,0.,0.; 0000705P0000607 +110,0.,-1.1392476E-16,0.,-0.6,-1.1392476E-16,0.; 0000707P0000608 +110,-0.6,-1.1392476E-16,0.,-0.6,-1.1999976,0.; 0000709P0000609 +102,4,713,715,717,719; 0000711P0000610 +110,7.559106821E-02,-0.107715715,0.134986904,7.559106821E-02, 0000713P0000611 +-0.107715715,0.111364856; 0000713P0000612 +110,7.559106821E-02,-0.107715715,0.111364856,0.122835068, 0000715P0000613 +-0.107715715,0.111364856; 0000715P0000614 +110,0.122835068,-0.107715715,0.111364856,0.122835068, 0000717P0000615 +-0.107715715,0.134986904; 0000717P0000616 +110,0.122835068,-0.107715715,0.134986904,7.559106821E-02, 0000719P0000617 +-0.107715715,0.134986904; 0000719P0000618 +142,0,697,723,733,3; 0000721P0000619 +102,4,725,727,729,731; 0000723P0000620 +110,-0.10000036,-0.1999996,0.,-0.10000036,-0.9999996,0.; 0000725P0000621 +110,-0.10000036,-0.9999996,0.,-0.59999936,-0.9999996,0.; 0000727P0000622 +110,-0.59999936,-0.9999996,0.,-0.59999936,-0.1999996,0.; 0000729P0000623 +110,-0.59999936,-0.1999996,0.,-0.10000036,-0.1999996,0.; 0000731P0000624 +102,4,735,737,739,741; 0000733P0000625 +110,0.114961068,-0.107715715,0.115301878,8.346500521E-02, 0000735P0000626 +-0.107715715,0.115301878; 0000735P0000627 +110,8.346500521E-02,-0.107715715,0.115301878,8.346500521E-02, 0000737P0000628 +-0.107715715,0.134986878; 0000737P0000629 +110,8.346500521E-02,-0.107715715,0.134986878,0.114961068, 0000739P0000630 +-0.107715715,0.134986878; 0000739P0000631 +110,0.114961068,-0.107715715,0.134986878,0.114961068, 0000741P0000632 +-0.107715715,0.115301878; 0000741P0000633 +144,745,1,0,747; 0000743P0000634 +128,1,1,1,1,0,0,1,0,0,-0.6,-0.6,0.,0.,-1.67999918,-1.67999918, 0000745P0000635 +2.2793958E-17,2.2793958E-17,1.,1.,1.,1.,7.559106821E-02, 0000745P0000636 +-0.173857415,0.134986904,7.559106821E-02,-0.173857415, 0000745P0000637 +0.111364856,7.559106821E-02,-0.107715715,0.134986904, 0000745P0000638 +7.559106821E-02,-0.107715715,0.111364856,-0.6,0.,-1.67999918, 0000745P0000639 +2.2793958E-17; 0000745P0000640 +142,0,745,749,759,3; 0000747P0000641 +102,4,751,753,755,757; 0000749P0000642 +110,-6.382305125E-17,-1.67999918,0.,-6.382305125E-17, 0000751P0000643 +-2.220446049E-16,0.; 0000751P0000644 +110,0.,0.,0.,-0.6,-6.9333478E-34,0.; 0000753P0000645 +110,-0.6,2.2793958E-17,0.,-0.6,-1.67999918,0.; 0000755P0000646 +110,-0.6,-1.67999918,0.,-1.110223025E-16,-1.67999918,0.; 0000757P0000647 +102,4,761,763,765,767; 0000759P0000648 +110,7.559106821E-02,-0.173857415,0.111364856,7.559106821E-02, 0000761P0000649 +-0.107715715,0.111364856; 0000761P0000650 +110,7.559106821E-02,-0.107715715,0.111364856,7.559106821E-02, 0000763P0000651 +-0.107715715,0.134986904; 0000763P0000652 +110,7.559106821E-02,-0.107715715,0.134986904,7.559106821E-02, 0000765P0000653 +-0.173857415,0.134986904; 0000765P0000654 +110,7.559106821E-02,-0.173857415,0.134986904,7.559106821E-02, 0000767P0000655 +-0.173857415,0.111364856; 0000767P0000656 +144,771,1,0,773; 0000769P0000657 +128,1,1,1,1,0,0,1,0,0,-1.1999976,-1.1999976,0.,0.,-1.67999918, 0000771P0000658 +-1.67999918,7.327457745E-16,7.327457745E-16,1.,1.,1.,1., 0000771P0000659 +0.122835068,-0.173857415,0.134986904,7.559106821E-02, 0000771P0000660 +-0.173857415,0.134986904,0.122835068,-0.107715715,0.134986904, 0000771P0000661 +7.559106821E-02,-0.107715715,0.134986904,-1.1999976,0., 0000771P0000662 +-1.67999918,7.327457745E-16; 0000771P0000663 +142,0,771,775,785,3; 0000773P0000664 +102,4,777,779,781,783; 0000775P0000665 +110,-1.211837633E-32,-1.67999918,0.,0.,0.,0.; 0000777P0000666 +110,0.,7.327457745E-16,0.,-1.1999976,7.327457745E-16,0.; 0000779P0000667 +110,-1.1999976,4.440892099E-16,0.,-1.1999976,-1.67999918,0.; 0000781P0000668 +110,-1.1999976,-1.67999918,0.,-1.025845635E-15,-1.67999918,0.; 0000783P0000669 +102,4,787,789,791,793; 0000785P0000670 +110,7.559106821E-02,-0.173857415,0.134986904,7.559106821E-02, 0000787P0000671 +-0.107715715,0.134986904; 0000787P0000672 +110,7.559106821E-02,-0.107715715,0.134986904,0.122835068, 0000789P0000673 +-0.107715715,0.134986904; 0000789P0000674 +110,0.122835068,-0.107715715,0.134986904,0.122835068, 0000791P0000675 +-0.173857415,0.134986904; 0000791P0000676 +110,0.122835068,-0.173857415,0.134986904,7.559106821E-02, 0000793P0000677 +-0.173857415,0.134986904; 0000793P0000678 +144,797,1,0,799; 0000795P0000679 +128,1,1,1,1,0,0,1,0,0,-0.8,-0.8,0.,0.,-0.499999,-0.499999, 0000797P0000680 +1.776356839E-16,1.776356839E-16,1.,1.,1.,1.,8.346500521E-02, 0000797P0000681 +-0.107715715,0.134986878,0.114961068,-0.107715715,0.134986878, 0000797P0000682 +8.346500521E-02,-0.107715715,0.115301878,0.114961068, 0000797P0000683 +-0.107715715,0.115301878,-0.8,0.,-0.499999,1.776356839E-16; 0000797P0000684 +142,0,797,801,811,3; 0000799P0000685 +102,4,803,805,807,809; 0000801P0000686 +110,-0.8,-0.499999,0.,-1.110220804E-16,-0.499999,0.; 0000803P0000687 +110,-1.110220804E-16,-0.499999,0.,-1.110220804E-16, 0000805P0000688 +-2.775557562E-16,0.; 0000805P0000689 +110,0.,1.776356839E-16,0.,-0.8,1.776356839E-16,0.; 0000807P0000690 +110,-0.8,1.776356839E-16,0.,-0.8,-0.499999,0.; 0000809P0000691 +102,4,813,815,817,819; 0000811P0000692 +110,8.346500521E-02,-0.107715715,0.134986878,0.114961068, 0000813P0000693 +-0.107715715,0.134986878; 0000813P0000694 +110,0.114961068,-0.107715715,0.134986878,0.114961068, 0000815P0000695 +-0.107715715,0.115301878; 0000815P0000696 +110,0.114961068,-0.107715715,0.115301878,8.346500521E-02, 0000817P0000697 +-0.107715715,0.115301878; 0000817P0000698 +110,8.346500521E-02,-0.107715715,0.115301878,8.346500521E-02, 0000819P0000699 +-0.107715715,0.134986878; 0000819P0000700 +402,24,823,849,891,917,943,969,1011,1093,1119,1201,1227,1253, 0000821P0000701 +1279,1305,1331,1357,1383,1409,1435,1461,1487,1513,1539,1565; 0000821P0000702 +144,825,1,0,827; 0000823P0000703 +128,1,1,1,1,0,0,1,0,0,-1.1999976,-1.1999976,0.,0.,-1.67999918, 0000825P0000704 +-1.67999918,7.327457745E-16,7.327457745E-16,1.,1.,1.,1., 0000825P0000705 +-7.716493179E-02,-0.173857415,0.134986904,-0.124408932, 0000825P0000706 +-0.173857415,0.134986904,-7.716493179E-02,-0.107715715, 0000825P0000707 +0.134986904,-0.124408932,-0.107715715,0.134986904,-1.1999976,0., 0000825P0000708 +-1.67999918,7.327457745E-16; 0000825P0000709 +142,0,825,829,839,3; 0000827P0000710 +102,4,831,833,835,837; 0000829P0000711 +110,-1.211837633E-32,-1.67999918,0.,0.,0.,0.; 0000831P0000712 +110,0.,7.327457745E-16,0.,-1.1999976,7.327457745E-16,0.; 0000833P0000713 +110,-1.1999976,4.440892099E-16,0.,-1.1999976,-1.67999918,0.; 0000835P0000714 +110,-1.1999976,-1.67999918,0.,-1.025845635E-15,-1.67999918,0.; 0000837P0000715 +102,4,841,843,845,847; 0000839P0000716 +110,-0.124408932,-0.173857415,0.134986904,-0.124408932, 0000841P0000717 +-0.107715715,0.134986904; 0000841P0000718 +110,-0.124408932,-0.107715715,0.134986904,-7.716493179E-02, 0000843P0000719 +-0.107715715,0.134986904; 0000843P0000720 +110,-7.716493179E-02,-0.107715715,0.134986904,-7.716493179E-02, 0000845P0000721 +-0.173857415,0.134986904; 0000845P0000722 +110,-7.716493179E-02,-0.173857415,0.134986904,-0.124408932, 0000847P0000723 +-0.173857415,0.134986904; 0000847P0000724 +144,851,1,0,853; 0000849P0000725 +128,1,1,1,1,0,0,1,0,0,0.,0.,0.6,0.6,-1.1392476E-16, 0000851P0000726 +-1.1392476E-16,1.1999976,1.1999976,1.,1.,1.,1.,-0.124408932, 0000851P0000727 +-0.173857415,0.111364856,-0.124408932,-0.173857415,0.134986904, 0000851P0000728 +-7.716493179E-02,-0.173857415,0.111364856,-7.716493179E-02, 0000851P0000729 +-0.173857415,0.134986904,0.,0.6,-1.1392476E-16,1.1999976; 0000851P0000730 +142,0,851,855,873,3; 0000853P0000731 +102,8,857,859,861,863,865,867,869,871; 0000855P0000732 +110,2.278490643E-16,1.1999976,0.,2.278490643E-16,0.999998,0.; 0000857P0000733 +110,5.551115123E-16,0.999998,0.,0.59999936,0.999998,0.; 0000859P0000734 +110,0.59999936,0.999998,0.,0.59999936,0.199998,0.; 0000861P0000735 +110,0.59999936,0.199998,0.,4.440892099E-16,0.199998,0.; 0000863P0000736 +110,2.278490643E-16,0.199998,0.,2.278490643E-16,0.,0.; 0000865P0000737 +110,0.,-1.1392476E-16,0.,0.6,-1.1392476E-16,0.; 0000867P0000738 +110,0.6,-1.1392476E-16,0.,0.6,1.1999976,0.; 0000869P0000739 +110,0.6,1.1999976,0.,2.220446049E-16,1.1999976,0.; 0000871P0000740 +102,8,875,877,879,881,883,885,887,889; 0000873P0000741 +110,-7.716493179E-02,-0.173857415,0.111364856,-8.503893179E-02, 0000875P0000742 +-0.173857415,0.111364856; 0000875P0000743 +110,-8.503893179E-02,-0.173857415,0.111364856,-8.503893179E-02, 0000877P0000744 +-0.173857415,0.134986878; 0000877P0000745 +110,-8.503893179E-02,-0.173857415,0.134986878,-0.116534995, 0000879P0000746 +-0.173857415,0.134986878; 0000879P0000747 +110,-0.116534995,-0.173857415,0.134986878,-0.116534995, 0000881P0000748 +-0.173857415,0.111364856; 0000881P0000749 +110,-0.116534995,-0.173857415,0.111364856,-0.124408932, 0000883P0000750 +-0.173857415,0.111364856; 0000883P0000751 +110,-0.124408932,-0.173857415,0.111364856,-0.124408932, 0000885P0000752 +-0.173857415,0.134986904; 0000885P0000753 +110,-0.124408932,-0.173857415,0.134986904,-7.716493179E-02, 0000887P0000754 +-0.173857415,0.134986904; 0000887P0000755 +110,-7.716493179E-02,-0.173857415,0.134986904,-7.716493179E-02, 0000889P0000756 +-0.173857415,0.111364856; 0000889P0000757 +144,893,1,0,895; 0000891P0000758 +128,1,1,1,1,0,0,1,0,0,-1.110223025E-16,-1.110223025E-16,0.6,0.6, 0000893P0000759 +2.2793958E-17,2.2793958E-17,1.67999918,1.67999918,1.,1.,1.,1., 0000893P0000760 +-7.716493179E-02,-0.173857415,0.111364856,-7.716493179E-02, 0000893P0000761 +-0.173857415,0.134986904,-7.716493179E-02,-0.107715715, 0000893P0000762 +0.111364856,-7.716493179E-02,-0.107715715,0.134986904, 0000893P0000763 +-1.110223025E-16,0.6,2.2793958E-17,1.67999918; 0000893P0000764 +142,0,893,897,907,3; 0000895P0000765 +102,4,899,901,903,905; 0000897P0000766 +110,-6.382305125E-17,1.67999918,0.,-6.382305125E-17, 0000899P0000767 +2.220446049E-16,0.; 0000899P0000768 +110,0.,2.2793958E-17,0.,0.6,2.2793958E-17,0.; 0000901P0000769 +110,0.6,2.2793958E-17,0.,0.6,1.67999918,0.; 0000903P0000770 +110,0.6,1.67999918,0.,-1.110223025E-16,1.67999918,0.; 0000905P0000771 +102,4,909,911,913,915; 0000907P0000772 +110,-7.716493179E-02,-0.107715715,0.111364856,-7.716493179E-02, 0000909P0000773 +-0.173857415,0.111364856; 0000909P0000774 +110,-7.716493179E-02,-0.173857415,0.111364856,-7.716493179E-02, 0000911P0000775 +-0.173857415,0.134986904; 0000911P0000776 +110,-7.716493179E-02,-0.173857415,0.134986904,-7.716493179E-02, 0000913P0000777 +-0.107715715,0.134986904; 0000913P0000778 +110,-7.716493179E-02,-0.107715715,0.134986904,-7.716493179E-02, 0000915P0000779 +-0.107715715,0.111364856; 0000915P0000780 +144,919,1,0,921; 0000917P0000781 +128,1,1,1,1,0,0,1,0,0,-0.6,-0.6,2.278490643E-16,2.278490643E-16, 0000919P0000782 +-1.1999976,-1.1999976,0.,0.,1.,1.,1.,1.,-0.124408932, 0000919P0000783 +-0.107715715,0.134986904,-0.124408932,-0.107715715,0.111364856, 0000919P0000784 +-7.716493179E-02,-0.107715715,0.134986904,-7.716493179E-02, 0000919P0000785 +-0.107715715,0.111364856,-0.6,2.278490643E-16,-1.1999976,0.; 0000919P0000786 +142,0,919,923,933,3; 0000921P0000787 +102,4,925,927,929,931; 0000923P0000788 +110,2.278490643E-16,-1.1999976,0.,2.278490643E-16,0.,0.; 0000925P0000789 +110,0.,-1.1392476E-16,0.,-0.6,-1.1392476E-16,0.; 0000927P0000790 +110,-0.6,-1.1392476E-16,0.,-0.6,-1.1999976,0.; 0000929P0000791 +110,-0.6,-1.1999976,-0.,2.278490643E-16,-1.1999976,-0.; 0000931P0000792 +102,4,935,937,939,941; 0000933P0000793 +110,-0.124408932,-0.107715715,0.111364856,-7.716493179E-02, 0000935P0000794 +-0.107715715,0.111364856; 0000935P0000795 +110,-7.716493179E-02,-0.107715715,0.111364856,-7.716493179E-02, 0000937P0000796 +-0.107715715,0.134986904; 0000937P0000797 +110,-7.716493179E-02,-0.107715715,0.134986904,-0.124408932, 0000939P0000798 +-0.107715715,0.134986904; 0000939P0000799 +110,-0.124408932,-0.107715715,0.134986904,-0.124408932, 0000941P0000800 +-0.107715715,0.111364856; 0000941P0000801 +144,945,1,0,947; 0000943P0000802 +128,1,1,1,1,0,0,1,0,0,-0.6,-0.6,0.,0.,-1.67999918,-1.67999918, 0000945P0000803 +2.2793958E-17,2.2793958E-17,1.,1.,1.,1.,-0.124408932, 0000945P0000804 +-0.173857415,0.134986904,-0.124408932,-0.173857415,0.111364856, 0000945P0000805 +-0.124408932,-0.107715715,0.134986904,-0.124408932,-0.107715715, 0000945P0000806 +0.111364856,-0.6,0.,-1.67999918,2.2793958E-17; 0000945P0000807 +142,0,945,949,959,3; 0000947P0000808 +102,4,951,953,955,957; 0000949P0000809 +110,-6.382305125E-17,-1.67999918,0.,-6.382305125E-17, 0000951P0000810 +-2.220446049E-16,0.; 0000951P0000811 +110,0.,0.,0.,-0.6,-6.9333478E-34,0.; 0000953P0000812 +110,-0.6,2.2793958E-17,0.,-0.6,-1.67999918,0.; 0000955P0000813 +110,-0.6,-1.67999918,0.,-1.110223025E-16,-1.67999918,0.; 0000957P0000814 +102,4,961,963,965,967; 0000959P0000815 +110,-0.124408932,-0.173857415,0.111364856,-0.124408932, 0000961P0000816 +-0.107715715,0.111364856; 0000961P0000817 +110,-0.124408932,-0.107715715,0.111364856,-0.124408932, 0000963P0000818 +-0.107715715,0.134986904; 0000963P0000819 +110,-0.124408932,-0.107715715,0.134986904,-0.124408932, 0000965P0000820 +-0.173857415,0.134986904; 0000965P0000821 +110,-0.124408932,-0.173857415,0.134986904,-0.124408932, 0000967P0000822 +-0.173857415,0.111364856; 0000967P0000823 +144,971,1,0,973; 0000969P0000824 +128,1,1,1,1,0,0,1,0,0,-1.1999976,-1.1999976,0.,0.,-1.67999918, 0000971P0000825 +-1.67999918,7.327457745E-16,7.327457745E-16,1.,1.,1.,1., 0000971P0000826 +-7.716493179E-02,-0.173857415,0.111364856,-0.124408932, 0000971P0000827 +-0.173857415,0.111364856,-7.716493179E-02,-0.107715715, 0000971P0000828 +0.111364856,-0.124408932,-0.107715715,0.111364856,-1.1999976,0., 0000971P0000829 +-1.67999918,7.327457745E-16; 0000971P0000830 +142,0,971,975,993,3; 0000973P0000831 +102,8,977,979,981,983,985,987,989,991; 0000975P0000832 +110,-1.1999976,-1.67999918,0.,-0.999998,-1.67999918,0.; 0000977P0000833 +110,-0.999998,-1.67999918,0.,-0.999998,-1.664776853,0.; 0000979P0000834 +110,-0.999998,-1.664776853,0.,-0.199998,-1.664776853,0.; 0000981P0000835 +110,-0.199998,-1.664776853,0.,-0.199998,-1.67999918,0.; 0000983P0000836 +110,-0.199998,-1.67999918,0.,-1.110223025E-15,-1.67999918,0.; 0000985P0000837 +110,-1.025845635E-15,-1.67999918,0.,-1.025845635E-15, 0000987P0000838 +-2.220446049E-16,0.; 0000987P0000839 +110,0.,0.,0.,-1.1999976,-8.655970003E-33,0.; 0000989P0000840 +110,-1.1999976,7.327457745E-16,0.,-1.1999976,-1.67999918,0.; 0000991P0000841 +102,8,995,997,999,1001,1003,1005,1007,1009; 0000993P0000842 +110,-7.716493179E-02,-0.173857415,0.111364856,-8.503893179E-02, 0000995P0000843 +-0.173857415,0.111364856; 0000995P0000844 +110,-8.503893179E-02,-0.173857415,0.111364856,-8.503893179E-02, 0000997P0000845 +-0.173258111,0.111364856; 0000997P0000846 +110,-8.503893179E-02,-0.173258111,0.111364856,-0.116534995, 0000999P0000847 +-0.173258111,0.111364856; 0000999P0000848 +110,-0.116534995,-0.173258111,0.111364856,-0.116534995, 0001001P0000849 +-0.173857415,0.111364856; 0001001P0000850 +110,-0.116534995,-0.173857415,0.111364856,-0.124408932, 0001003P0000851 +-0.173857415,0.111364856; 0001003P0000852 +110,-0.124408932,-0.173857415,0.111364856,-0.124408932, 0001005P0000853 +-0.107715715,0.111364856; 0001005P0000854 +110,-0.124408932,-0.107715715,0.111364856,-7.716493179E-02, 0001007P0000855 +-0.107715715,0.111364856; 0001007P0000856 +110,-7.716493179E-02,-0.107715715,0.111364856,-7.716493179E-02, 0001009P0000857 +-0.173857415,0.111364856; 0001009P0000858 +144,1013,1,0,1015; 0001011P0000859 +128,1,1,1,1,0,0,1,0,0,-5.00000016,-5.00000016,-1.664776853, 0001013P0000860 +-1.664776853,-1.970574805E-47,-1.970574805E-47,3.43000076, 0001013P0000861 +3.43000076,1.,1.,1.,1.,-0.116534995,-0.304566115,0.134986878, 0001013P0000862 +-0.116534995,-0.173258111,0.134986878,-0.116534995,-0.304566115, 0001013P0000863 +-5.252157638E-05,-0.116534995,-0.173258111,-5.252157638E-05, 0001013P0000864 +-5.00000016,-1.664776853,-1.970574805E-47,3.43000076; 0001013P0000865 +142,0,1013,1017,1055,3; 0001015P0000866 +102,18,1019,1021,1023,1025,1027,1029,1031,1033,1035,1037,1039, 0001017P0000867 +1041,1043,1045,1047,1049,1051,1053; 0001017P0000868 +110,-1.67999918,0.,0.,-1.67999918,0.59999936,0.; 0001019P0000869 +110,-1.67999918,0.59999936,0.,-1.664776853,0.59999936,0.; 0001021P0000870 +110,-1.664776853,0.59999936,0.,-2.53091442,3.13779154,0.; 0001023P0000871 +110,-2.53091442,3.13779154,0.,-2.5899999,3.25000112,0.; 0001025P0000872 +110,-2.5899999,3.25000112,0.,-2.66999974,3.35000092,0.; 0001027P0000873 +110,-2.66999974,3.35000092,0.,-2.7899995,3.4100008,0.; 0001029P0000874 +110,-2.7899995,3.4100008,0.,-2.94999918,3.43000076,0.; 0001031P0000875 +110,-2.94999918,3.43000076,0.,-5.00000016,3.43000076,0.; 0001033P0000876 +110,-5.00000016,3.43000076,0.,-5.00000016,2.92999922,0.; 0001035P0000877 +110,-5.00000016,2.92999922,0.,-3.24000114,2.92999922,0.; 0001037P0000878 +110,-3.24000114,2.92999922,0.,-3.10000142,2.90999926,0.; 0001039P0000879 +110,-3.10000142,2.90999926,0.,-3.00999906,2.86999934,0.; 0001041P0000880 +110,-3.00999906,2.86999934,0.,-2.9522928,2.79021794,0.; 0001043P0000881 +110,-2.9522928,2.79021794,0.,-2.09996786,0.29290264,0.; 0001045P0000882 +110,-2.09996786,0.29290264,0.,-2.02000104,0.12999974,0.; 0001047P0000883 +110,-2.02000104,0.12999974,0.,-1.9400012,4.99999E-02,0.; 0001049P0000884 +110,-1.9400012,4.99999E-02,0.,-1.79999894,2.958244073E-32,0.; 0001051P0000885 +110,-1.79999894,-1.970574805E-47,0.,-1.67999918, 0001053P0000886 +-1.839203337E-47,0.; 0001053P0000887 +102,18,1057,1059,1061,1063,1065,1067,1069,1071,1073,1075,1077, 0001055P0000888 +1079,1081,1083,1085,1087,1089,1091; 0001055P0000889 +110,-0.116534995,-0.173857415,0.134986878,-0.116534995, 0001057P0000890 +-0.173857415,0.111364856; 0001057P0000891 +110,-0.116534995,-0.173857415,0.111364856,-0.116534995, 0001059P0000892 +-0.173258111,0.111364856; 0001059P0000893 +110,-0.116534995,-0.173258111,0.111364856,-0.116534995, 0001061P0000894 +-0.207358015,1.145177842E-02; 0001061P0000895 +110,-0.116534995,-0.207358015,1.145177842E-02,-0.116534995, 0001063P0000896 +-0.209684215,7.034078424E-03; 0001063P0000897 +110,-0.116534995,-0.209684215,7.034078424E-03,-0.116534995, 0001065P0000898 +-0.212833815,3.097078424E-03; 0001065P0000899 +110,-0.116534995,-0.212833815,3.097078424E-03,-0.116534995, 0001067P0000900 +-0.217558215,7.348784236E-04; 0001067P0000901 +110,-0.116534995,-0.217558215,7.348784236E-04,-0.116534995, 0001069P0000902 +-0.223857415,-5.252157638E-05; 0001069P0000903 +110,-0.116534995,-0.223857415,-5.252157638E-05,-0.116534995, 0001071P0000904 +-0.304566115,-5.252157638E-05; 0001071P0000905 +110,-0.116534995,-0.304566115,-5.252157638E-05,-0.116534995, 0001073P0000906 +-0.304566115,1.963257842E-02; 0001073P0000907 +110,-0.116534995,-0.304566115,1.963257842E-02,-0.116534995, 0001075P0000908 +-0.235274815,1.963257842E-02; 0001075P0000909 +110,-0.116534995,-0.235274815,1.963257842E-02,-0.116534995, 0001077P0000910 +-0.229763015,2.041997842E-02; 0001077P0000911 +110,-0.116534995,-0.229763015,2.041997842E-02,-0.116534995, 0001079P0000912 +-0.226219615,2.199477842E-02; 0001079P0000913 +110,-0.116534995,-0.226219615,2.199477842E-02,-0.116534995, 0001081P0000914 +-0.223947715,2.513577842E-02; 0001081P0000915 +110,-0.116534995,-0.223947715,2.513577842E-02,-0.116534995, 0001083P0000916 +-0.190391615,0.123455278; 0001083P0000917 +110,-0.116534995,-0.190391615,0.123455278,-0.116534995, 0001085P0000918 +-0.187243315,0.129868778; 0001085P0000919 +110,-0.116534995,-0.187243315,0.129868778,-0.116534995, 0001087P0000920 +-0.184093715,0.133018378; 0001087P0000921 +110,-0.116534995,-0.184093715,0.133018378,-0.116534995, 0001089P0000922 +-0.178581815,0.134986878; 0001089P0000923 +110,-0.116534995,-0.178581815,0.134986878,-0.116534995, 0001091P0000924 +-0.173857415,0.134986878; 0001091P0000925 +144,1095,1,0,1097; 0001093P0000926 +128,1,1,1,1,0,0,1,0,0,-0.8,-0.8,1.221245327E-15,1.221245327E-15, 0001095P0000927 +-1.79999894,-1.79999894,-1.67999918,-1.67999918,1.,1.,1.,1., 0001095P0000928 +-0.116534995,-0.178581815,0.134986878,-8.503893179E-02, 0001095P0000929 +-0.178581815,0.134986878,-0.116534995,-0.173857415,0.134986878, 0001095P0000930 +-8.503893179E-02,-0.173857415,0.134986878,-0.8,1.221245327E-15, 0001095P0000931 +-1.79999894,-1.67999918; 0001095P0000932 +142,0,1095,1099,1109,3; 0001097P0000933 +102,4,1101,1103,1105,1107; 0001099P0000934 +110,1.110223025E-15,-1.67999918,0.,-0.8,-1.67999918,0.; 0001101P0000935 +110,-0.8,-1.67999918,0.,-0.8,-1.79999894,0.; 0001103P0000936 +110,-0.8,-1.79999894,0.,1.221245327E-15,-1.79999894,0.; 0001105P0000937 +110,1.19904016E-15,-1.79999894,0.,1.19904016E-15,-1.67999918,0.; 0001107P0000938 +102,4,1111,1113,1115,1117; 0001109P0000939 +110,-8.503893179E-02,-0.173857415,0.134986878,-0.116534995, 0001111P0000940 +-0.173857415,0.134986878; 0001111P0000941 +110,-0.116534995,-0.173857415,0.134986878,-0.116534995, 0001113P0000942 +-0.178581815,0.134986878; 0001113P0000943 +110,-0.116534995,-0.178581815,0.134986878,-8.503893179E-02, 0001115P0000944 +-0.178581815,0.134986878; 0001115P0000945 +110,-8.503893179E-02,-0.178581815,0.134986878,-8.503893179E-02, 0001117P0000946 +-0.173857415,0.134986878; 0001117P0000947 +144,1121,1,0,1123; 0001119P0000948 +128,1,1,1,1,0,0,1,0,0,-5.00000016,-5.00000016,-1.664776853, 0001121P0000949 +-1.664776853,-1.943689892E-14,-1.943689892E-14,3.43000076, 0001121P0000950 +3.43000076,1.,1.,1.,1.,-8.503893179E-02,-0.304566115, 0001121P0000951 +0.134986878,-8.503893179E-02,-0.173258111,0.134986878, 0001121P0000952 +-8.503893179E-02,-0.304566115,-5.252157638E-05,-8.503893179E-02, 0001121P0000953 +-0.173258111,-5.252157638E-05,-5.00000016,-1.664776853, 0001121P0000954 +-1.943689892E-14,3.43000076; 0001121P0000955 +142,0,1121,1125,1163,3; 0001123P0000956 +102,18,1127,1129,1131,1133,1135,1137,1139,1141,1143,1145,1147, 0001125P0000957 +1149,1151,1153,1155,1157,1159,1161; 0001125P0000958 +110,-1.67999918,0.,0.,-1.67999918,0.59999936,0.; 0001127P0000959 +110,-1.67999918,0.59999936,0.,-1.664776853,0.59999936,0.; 0001129P0000960 +110,-1.664776853,0.59999936,0.,-2.53091442,3.13779154,0.; 0001131P0000961 +110,-2.53091442,3.13779154,0.,-2.5899999,3.25000112,0.; 0001133P0000962 +110,-2.5899999,3.25000112,0.,-2.66999974,3.35000092,0.; 0001135P0000963 +110,-2.66999974,3.35000092,0.,-2.7899995,3.4100008,0.; 0001137P0000964 +110,-2.7899995,3.4100008,0.,-2.94999918,3.43000076,0.; 0001139P0000965 +110,-2.94999918,3.43000076,0.,-5.00000016,3.43000076,0.; 0001141P0000966 +110,-5.00000016,3.43000076,0.,-5.00000016,2.92999922,0.; 0001143P0000967 +110,-5.00000016,2.92999922,0.,-3.24000114,2.92999922,0.; 0001145P0000968 +110,-3.24000114,2.92999922,0.,-3.10000142,2.90999926,0.; 0001147P0000969 +110,-3.10000142,2.90999926,0.,-3.00999906,2.86999934,0.; 0001149P0000970 +110,-3.00999906,2.86999934,0.,-2.9522928,2.79021794,0.; 0001151P0000971 +110,-2.9522928,2.79021794,0.,-2.09996786,0.29290264,0.; 0001153P0000972 +110,-2.09996786,0.29290264,0.,-2.02000104,0.12999974,0.; 0001155P0000973 +110,-2.02000104,0.12999974,0.,-1.9400012,4.99999E-02,0.; 0001157P0000974 +110,-1.9400012,4.99999E-02,0.,-1.79999894,-1.943689892E-14,0.; 0001159P0000975 +110,-1.79999894,2.958244073E-32,0.,-1.67999918,2.958244073E-32, 0001161P0000976 +0.; 0001161P0000977 +102,18,1165,1167,1169,1171,1173,1175,1177,1179,1181,1183,1185, 0001163P0000978 +1187,1189,1191,1193,1195,1197,1199; 0001163P0000979 +110,-8.503893179E-02,-0.173857415,0.134986878,-8.503893179E-02, 0001165P0000980 +-0.173857415,0.111364856; 0001165P0000981 +110,-8.503893179E-02,-0.173857415,0.111364856,-8.503893179E-02, 0001167P0000982 +-0.173258111,0.111364856; 0001167P0000983 +110,-8.503893179E-02,-0.173258111,0.111364856,-8.503893179E-02, 0001169P0000984 +-0.207358015,1.145177842E-02; 0001169P0000985 +110,-8.503893179E-02,-0.207358015,1.145177842E-02, 0001171P0000986 +-8.503893179E-02,-0.209684215,7.034078424E-03; 0001171P0000987 +110,-8.503893179E-02,-0.209684215,7.034078424E-03, 0001173P0000988 +-8.503893179E-02,-0.212833815,3.097078424E-03; 0001173P0000989 +110,-8.503893179E-02,-0.212833815,3.097078424E-03, 0001175P0000990 +-8.503893179E-02,-0.217558215,7.348784236E-04; 0001175P0000991 +110,-8.503893179E-02,-0.217558215,7.348784236E-04, 0001177P0000992 +-8.503893179E-02,-0.223857415,-5.252157638E-05; 0001177P0000993 +110,-8.503893179E-02,-0.223857415,-5.252157638E-05, 0001179P0000994 +-8.503893179E-02,-0.304566115,-5.252157638E-05; 0001179P0000995 +110,-8.503893179E-02,-0.304566115,-5.252157638E-05, 0001181P0000996 +-8.503893179E-02,-0.304566115,1.963257842E-02; 0001181P0000997 +110,-8.503893179E-02,-0.304566115,1.963257842E-02, 0001183P0000998 +-8.503893179E-02,-0.235274815,1.963257842E-02; 0001183P0000999 +110,-8.503893179E-02,-0.235274815,1.963257842E-02, 0001185P0001000 +-8.503893179E-02,-0.229763015,2.041997842E-02; 0001185P0001001 +110,-8.503893179E-02,-0.229763015,2.041997842E-02, 0001187P0001002 +-8.503893179E-02,-0.226219615,2.199477842E-02; 0001187P0001003 +110,-8.503893179E-02,-0.226219615,2.199477842E-02, 0001189P0001004 +-8.503893179E-02,-0.223947715,2.513577842E-02; 0001189P0001005 +110,-8.503893179E-02,-0.223947715,2.513577842E-02, 0001191P0001006 +-8.503893179E-02,-0.190391615,0.123455278; 0001191P0001007 +110,-8.503893179E-02,-0.190391615,0.123455278,-8.503893179E-02, 0001193P0001008 +-0.187243315,0.129868778; 0001193P0001009 +110,-8.503893179E-02,-0.187243315,0.129868778,-8.503893179E-02, 0001195P0001010 +-0.184093715,0.133018378; 0001195P0001011 +110,-8.503893179E-02,-0.184093715,0.133018378,-8.503893179E-02, 0001197P0001012 +-0.178581815,0.134986878; 0001197P0001013 +110,-8.503893179E-02,-0.178581815,0.134986878,-8.503893179E-02, 0001199P0001014 +-0.173857415,0.134986878; 0001199P0001015 +144,1203,1,0,1205; 0001201P0001016 +128,1,1,1,1,0,0,1,0,0,-0.8,-0.8,0.,0.,-2.681526325,-2.681526325, 0001203P0001017 +4.978510002E-16,4.978510002E-16,1.,1.,1.,1.,-0.116534995, 0001203P0001018 +-0.173258111,0.111364856,-8.503893179E-02,-0.173258111, 0001203P0001019 +0.111364856,-0.116534995,-0.207358015,1.145177842E-02, 0001203P0001020 +-8.503893179E-02,-0.207358015,1.145177842E-02,-0.8,0., 0001203P0001021 +-2.681526325,4.978510002E-16; 0001203P0001022 +142,0,1203,1207,1217,3; 0001205P0001023 +102,4,1209,1211,1213,1215; 0001207P0001024 +110,-0.8,4.978510002E-16,0.,-0.8,-2.681526325,0.; 0001209P0001025 +110,-0.8,-2.681526325,0.,-1.165734176E-15,-2.681526325,0.; 0001211P0001026 +110,-1.14790458E-15,-2.681526325,0.,-1.14790458E-15, 0001213P0001027 +-4.440892099E-16,0.; 0001213P0001028 +110,0.,4.978510002E-16,0.,-0.8,4.978510002E-16,0.; 0001215P0001029 +102,4,1219,1221,1223,1225; 0001217P0001030 +110,-0.116534995,-0.207358015,1.145177842E-02,-0.116534995, 0001219P0001031 +-0.173258111,0.111364856; 0001219P0001032 +110,-0.116534995,-0.173258111,0.111364856,-8.503893179E-02, 0001221P0001033 +-0.173258111,0.111364856; 0001221P0001034 +110,-8.503893179E-02,-0.173258111,0.111364856,-8.503893179E-02, 0001223P0001035 +-0.207358015,1.145177842E-02; 0001223P0001036 +110,-8.503893179E-02,-0.207358015,1.145177842E-02,-0.116534995, 0001225P0001037 +-0.207358015,1.145177842E-02; 0001225P0001038 +144,1229,1,0,1231; 0001227P0001039 +128,1,1,1,1,0,0,1,0,0,-0.8,-0.8,1.110223025E-16,1.110223025E-16, 0001229P0001040 +-0.148662782,-0.148662782,-1.665334537E-16,-1.665334537E-16,1., 0001229P0001041 +1.,1.,1.,-0.116534995,-0.184093715,0.133018378,-8.503893179E-02, 0001229P0001042 +-0.184093715,0.133018378,-0.116534995,-0.178581815,0.134986878, 0001229P0001043 +-8.503893179E-02,-0.178581815,0.134986878,-0.8,1.110223025E-16, 0001229P0001044 +-0.148662782,-1.665334537E-16; 0001229P0001045 +142,0,1229,1233,1243,3; 0001231P0001046 +102,4,1235,1237,1239,1241; 0001233P0001047 +110,-0.8,-0.148662782,0.,1.110223025E-16,-0.148662782,0.; 0001235P0001048 +110,1.043624476E-16,-0.148662782,0.,1.043624476E-16, 0001237P0001049 +-1.665334537E-16,0.; 0001237P0001050 +110,0.,-5.616063203E-16,0.,-0.8,-5.616063203E-16,0.; 0001239P0001051 +110,-0.8,-5.616063203E-16,0.,-0.8,-0.148662782,0.; 0001241P0001052 +102,4,1245,1247,1249,1251; 0001243P0001053 +110,-0.116534995,-0.184093715,0.133018378,-8.503893179E-02, 0001245P0001054 +-0.184093715,0.133018378; 0001245P0001055 +110,-8.503893179E-02,-0.184093715,0.133018378,-8.503893179E-02, 0001247P0001056 +-0.178581815,0.134986878; 0001247P0001057 +110,-8.503893179E-02,-0.178581815,0.134986878,-0.116534995, 0001249P0001058 +-0.178581815,0.134986878; 0001249P0001059 +110,-0.116534995,-0.178581815,0.134986878,-0.116534995, 0001251P0001060 +-0.184093715,0.133018378; 0001251P0001061 +144,1255,1,0,1257; 0001253P0001062 +128,1,1,1,1,0,0,1,0,0,-1.110223025E-16,-1.110223025E-16,0.8,0.8, 0001255P0001063 +1.665334537E-16,1.665334537E-16,0.113136859,0.113136859,1.,1., 0001255P0001064 +1.,1.,-8.503893179E-02,-0.184093715,0.133018378,-0.116534995, 0001255P0001065 +-0.184093715,0.133018378,-8.503893179E-02,-0.187243315, 0001255P0001066 +0.129868778,-0.116534995,-0.187243315,0.129868778, 0001255P0001067 +-1.110223025E-16,0.8,1.665334537E-16,0.113136859; 0001255P0001068 +142,0,1255,1259,1269,3; 0001257P0001069 +102,4,1261,1263,1265,1267; 0001259P0001070 +110,0.8,0.113136859,0.,-1.110223025E-16,0.113136859,0.; 0001261P0001071 +110,-7.105413147E-17,0.113136859,0.,-7.105413147E-17, 0001263P0001072 +1.665334537E-16,0.; 0001263P0001073 +110,0.,5.024295868E-16,0.,0.8,5.024295868E-16,0.; 0001265P0001074 +110,0.8,5.024295868E-16,0.,0.8,0.113136859,0.; 0001267P0001075 +102,4,1271,1273,1275,1277; 0001269P0001076 +110,-0.116534995,-0.187243315,0.129868778,-8.503893179E-02, 0001271P0001077 +-0.187243315,0.129868778; 0001271P0001078 +110,-8.503893179E-02,-0.187243315,0.129868778,-8.503893179E-02, 0001273P0001079 +-0.184093715,0.133018378; 0001273P0001080 +110,-8.503893179E-02,-0.184093715,0.133018378,-0.116534995, 0001275P0001081 +-0.184093715,0.133018378; 0001275P0001082 +110,-0.116534995,-0.184093715,0.133018378,-0.116534995, 0001277P0001083 +-0.187243315,0.129868778; 0001277P0001084 +144,1281,1,0,1283; 0001279P0001085 +128,1,1,1,1,0,0,1,0,0,-1.110223025E-16,-1.110223025E-16,0.8,0.8, 0001281P0001086 +-2.775557562E-16,-2.775557562E-16,0.181471891,0.181471891,1.,1., 0001281P0001087 +1.,1.,-8.503893179E-02,-0.187243315,0.129868778,-0.116534995, 0001281P0001088 +-0.187243315,0.129868778,-8.503893179E-02,-0.190391615, 0001281P0001089 +0.123455278,-0.116534995,-0.190391615,0.123455278, 0001281P0001090 +-1.110223025E-16,0.8,-2.775557562E-16,0.181471891; 0001281P0001091 +142,0,1281,1285,1295,3; 0001283P0001092 +102,4,1287,1289,1291,1293; 0001285P0001093 +110,0.8,0.181471891,0.,-1.110223025E-16,0.181471891,0.; 0001287P0001094 +110,-8.944031293E-17,0.181471891,0.,-8.944031293E-17, 0001289P0001095 +-2.775557562E-16,0.; 0001289P0001096 +110,0.,3.942883388E-16,0.,0.8,3.942883388E-16,0.; 0001291P0001097 +110,0.8,3.942883388E-16,0.,0.8,0.181471891,0.; 0001293P0001098 +102,4,1297,1299,1301,1303; 0001295P0001099 +110,-0.116534995,-0.190391615,0.123455278,-8.503893179E-02, 0001297P0001100 +-0.190391615,0.123455278; 0001297P0001101 +110,-8.503893179E-02,-0.190391615,0.123455278,-8.503893179E-02, 0001299P0001102 +-0.187243315,0.129868778; 0001299P0001103 +110,-8.503893179E-02,-0.187243315,0.129868778,-0.116534995, 0001301P0001104 +-0.187243315,0.129868778; 0001301P0001105 +110,-0.116534995,-0.187243315,0.129868778,-0.116534995, 0001303P0001106 +-0.190391615,0.123455278; 0001303P0001107 +144,1307,1,0,1309; 0001305P0001108 +128,1,1,1,1,0,0,1,0,0,-1.122277853E-15,-1.122277853E-15,0.8,0.8, 0001307P0001109 +3.402443228E-16,3.402443228E-16,2.63875757,2.63875757,1.,1.,1., 0001307P0001110 +1.,-8.503893179E-02,-0.190391615,0.123455278,-0.116534995, 0001307P0001111 +-0.190391615,0.123455278,-8.503893179E-02,-0.223947715, 0001307P0001112 +2.513577842E-02,-0.116534995,-0.223947715,2.513577842E-02, 0001307P0001113 +-1.122277853E-15,0.8,3.402443228E-16,2.63875757; 0001307P0001114 +142,0,1307,1311,1321,3; 0001309P0001115 +102,4,1313,1315,1317,1319; 0001311P0001116 +110,0.8,2.63875757,0.,-1.110223025E-15,2.63875757,0.; 0001313P0001117 +110,-1.122277853E-15,2.63875757,0.,-1.122277853E-15, 0001315P0001118 +4.440892099E-16,0.; 0001315P0001119 +110,0.,3.402443228E-16,0.,0.8,3.402443228E-16,0.; 0001317P0001120 +110,0.8,3.402443228E-16,0.,0.8,2.63875757,0.; 0001319P0001121 +102,4,1323,1325,1327,1329; 0001321P0001122 +110,-0.116534995,-0.223947715,2.513577842E-02,-8.503893179E-02, 0001323P0001123 +-0.223947715,2.513577842E-02; 0001323P0001124 +110,-8.503893179E-02,-0.223947715,2.513577842E-02, 0001325P0001125 +-8.503893179E-02,-0.190391615,0.123455278; 0001325P0001126 +110,-8.503893179E-02,-0.190391615,0.123455278,-0.116534995, 0001327P0001127 +-0.190391615,0.123455278; 0001327P0001128 +110,-0.116534995,-0.190391615,0.123455278,-0.116534995, 0001329P0001129 +-0.223947715,2.513577842E-02; 0001329P0001130 +144,1333,1,0,1335; 0001331P0001131 +128,1,1,1,1,0,0,1,0,0,-1.110223025E-16,-1.110223025E-16,0.8,0.8, 0001333P0001132 +-2.220446049E-16,-2.220446049E-16,9.846361881E-02, 0001333P0001133 +9.846361881E-02,1.,1.,1.,1.,-8.503893179E-02,-0.223947715, 0001333P0001134 +2.513577842E-02,-0.116534995,-0.223947715,2.513577842E-02, 0001333P0001135 +-8.503893179E-02,-0.226219615,2.199477842E-02,-0.116534995, 0001333P0001136 +-0.226219615,2.199477842E-02,-1.110223025E-16,0.8, 0001333P0001137 +-2.220446049E-16,9.846361881E-02; 0001333P0001138 +142,0,1333,1337,1347,3; 0001335P0001139 +102,4,1339,1341,1343,1345; 0001337P0001140 +110,0.8,9.846361881E-02,0.,-1.110223025E-16,9.846361881E-02,0.; 0001339P0001141 +110,-5.615512055E-17,9.846361881E-02,0.,-5.615512055E-17, 0001341P0001142 +-2.220446049E-16,0.; 0001341P0001143 +110,0.,6.36165181E-16,0.,0.8,6.36165181E-16,0.; 0001343P0001144 +110,0.8,6.36165181E-16,0.,0.8,9.846361881E-02,0.; 0001345P0001145 +102,4,1349,1351,1353,1355; 0001347P0001146 +110,-0.116534995,-0.226219615,2.199477842E-02,-8.503893179E-02, 0001349P0001147 +-0.226219615,2.199477842E-02; 0001349P0001148 +110,-8.503893179E-02,-0.226219615,2.199477842E-02, 0001351P0001149 +-8.503893179E-02,-0.223947715,2.513577842E-02; 0001351P0001150 +110,-8.503893179E-02,-0.223947715,2.513577842E-02,-0.116534995, 0001353P0001151 +-0.223947715,2.513577842E-02; 0001353P0001152 +110,-0.116534995,-0.223947715,2.513577842E-02,-0.116534995, 0001355P0001153 +-0.226219615,2.199477842E-02; 0001355P0001154 +144,1359,1,0,1361; 0001357P0001155 +128,1,1,1,1,0,0,1,0,0,-0.8,-0.8,1.110223025E-16,1.110223025E-16, 0001359P0001156 +-9.849070213E-02,-9.849070213E-02,2.498001805E-16, 0001359P0001157 +2.498001805E-16,1.,1.,1.,1.,-0.116534995,-0.229763015, 0001359P0001158 +2.041997842E-02,-8.503893179E-02,-0.229763015,2.041997842E-02, 0001359P0001159 +-0.116534995,-0.226219615,2.199477842E-02,-8.503893179E-02, 0001359P0001160 +-0.226219615,2.199477842E-02,-0.8,1.110223025E-16, 0001359P0001161 +-9.849070213E-02,2.498001805E-16; 0001359P0001162 +142,0,1359,1363,1373,3; 0001361P0001163 +102,4,1365,1367,1369,1371; 0001363P0001164 +110,-0.8,-9.849070213E-02,0.,1.110223025E-16,-9.849070213E-02, 0001365P0001165 +0.; 0001365P0001166 +110,6.883538184E-17,-9.849070213E-02,0.,6.883538184E-17, 0001367P0001167 +2.498001805E-16,0.; 0001367P0001168 +110,0.,-5.591218692E-16,0.,-0.8,-5.591218692E-16,0.; 0001369P0001169 +110,-0.8,-5.591218692E-16,0.,-0.8,-9.849070213E-02,0.; 0001371P0001170 +102,4,1375,1377,1379,1381; 0001373P0001171 +110,-0.116534995,-0.229763015,2.041997842E-02,-8.503893179E-02, 0001375P0001172 +-0.229763015,2.041997842E-02; 0001375P0001173 +110,-8.503893179E-02,-0.229763015,2.041997842E-02, 0001377P0001174 +-8.503893179E-02,-0.226219615,2.199477842E-02; 0001377P0001175 +110,-8.503893179E-02,-0.226219615,2.199477842E-02,-0.116534995, 0001379P0001176 +-0.226219615,2.199477842E-02; 0001379P0001177 +110,-0.116534995,-0.226219615,2.199477842E-02,-0.116534995, 0001381P0001178 +-0.229763015,2.041997842E-02; 0001381P0001179 +144,1385,1,0,1387; 0001383P0001180 +128,1,1,1,1,0,0,1,0,0,-0.8,-0.8,1.110223025E-16,1.110223025E-16, 0001385P0001181 +-0.141421073,-0.141421073,-1.387778781E-16,-1.387778781E-16,1., 0001385P0001182 +1.,1.,1.,-0.116534995,-0.235274815,1.963257842E-02, 0001385P0001183 +-8.503893179E-02,-0.235274815,1.963257842E-02,-0.116534995, 0001385P0001184 +-0.229763015,2.041997842E-02,-8.503893179E-02,-0.229763015, 0001385P0001185 +2.041997842E-02,-0.8,1.110223025E-16,-0.141421073, 0001385P0001186 +-1.387778781E-16; 0001385P0001187 +142,0,1385,1389,1399,3; 0001387P0001188 +102,4,1391,1393,1395,1397; 0001389P0001189 +110,-0.8,-0.141421073,0.,1.110223025E-16,-0.141421073,0.; 0001391P0001190 +110,9.769943077E-17,-0.141421073,0.,9.769943077E-17, 0001393P0001191 +-1.387778781E-16,0.; 0001393P0001192 +110,0.,-5.369716209E-16,0.,-0.8,-5.369716209E-16,0.; 0001395P0001193 +110,-0.8,-5.369716209E-16,0.,-0.8,-0.141421073,0.; 0001397P0001194 +102,4,1401,1403,1405,1407; 0001399P0001195 +110,-0.116534995,-0.235274815,1.963257842E-02,-8.503893179E-02, 0001401P0001196 +-0.235274815,1.963257842E-02; 0001401P0001197 +110,-8.503893179E-02,-0.235274815,1.963257842E-02, 0001403P0001198 +-8.503893179E-02,-0.229763015,2.041997842E-02; 0001403P0001199 +110,-8.503893179E-02,-0.229763015,2.041997842E-02,-0.116534995, 0001405P0001200 +-0.229763015,2.041997842E-02; 0001405P0001201 +110,-0.116534995,-0.229763015,2.041997842E-02,-0.116534995, 0001407P0001202 +-0.235274815,1.963257842E-02; 0001407P0001203 +144,1411,1,0,1413; 0001409P0001204 +128,1,1,1,1,0,0,1,0,0,-0.8,-0.8,1.221245327E-15,1.221245327E-15, 0001411P0001205 +-1.75999902,-1.75999902,4.440892099E-16,4.440892099E-16,1.,1., 0001411P0001206 +1.,1.,-0.116534995,-0.304566115,1.963257842E-02, 0001411P0001207 +-8.503893179E-02,-0.304566115,1.963257842E-02,-0.116534995, 0001411P0001208 +-0.235274815,1.963257842E-02,-8.503893179E-02,-0.235274815, 0001411P0001209 +1.963257842E-02,-0.8,1.221245327E-15,-1.75999902, 0001411P0001210 +4.440892099E-16; 0001411P0001211 +142,0,1411,1415,1425,3; 0001413P0001212 +102,4,1417,1419,1421,1423; 0001415P0001213 +110,-0.8,-1.75999902,0.,1.221245327E-15,-1.75999902,0.; 0001417P0001214 +110,1.172394861E-15,-1.75999902,0.,1.172394861E-15, 0001419P0001215 +4.440892099E-16,0.; 0001419P0001216 +110,0.,-5.329070518E-16,0.,-0.8,-5.329070518E-16,0.; 0001421P0001217 +110,-0.8,-5.329070518E-16,0.,-0.8,-1.75999902,0.; 0001423P0001218 +102,4,1427,1429,1431,1433; 0001425P0001219 +110,-0.116534995,-0.304566115,1.963257842E-02,-8.503893179E-02, 0001427P0001220 +-0.304566115,1.963257842E-02; 0001427P0001221 +110,-8.503893179E-02,-0.304566115,1.963257842E-02, 0001429P0001222 +-8.503893179E-02,-0.235274815,1.963257842E-02; 0001429P0001223 +110,-8.503893179E-02,-0.235274815,1.963257842E-02,-0.116534995, 0001431P0001224 +-0.235274815,1.963257842E-02; 0001431P0001225 +110,-0.116534995,-0.235274815,1.963257842E-02,-0.116534995, 0001433P0001226 +-0.304566115,1.963257842E-02; 0001433P0001227 +144,1437,1,0,1439; 0001435P0001228 +128,1,1,1,1,0,0,1,0,0,-1.110226444E-16,-1.110226444E-16,0.8,0.8, 0001437P0001229 +0.,0.,0.50000154,0.50000154,1.,1.,1.,1.,-8.503893179E-02, 0001437P0001230 +-0.304566115,1.963257842E-02,-0.116534995,-0.304566115, 0001437P0001231 +1.963257842E-02,-8.503893179E-02,-0.304566115,-5.252157638E-05, 0001437P0001232 +-0.116534995,-0.304566115,-5.252157638E-05,-1.110226444E-16,0.8, 0001437P0001233 +0.,0.50000154; 0001437P0001234 +142,0,1437,1441,1451,3; 0001439P0001235 +102,4,1443,1445,1447,1449; 0001441P0001236 +110,0.8,0.50000154,0.,-1.110223025E-16,0.50000154,0.; 0001443P0001237 +110,-1.110226444E-16,0.50000154,0.,-1.110226444E-16,0.,0.; 0001445P0001238 +110,0.,1.776356839E-16,0.,0.8,1.776356839E-16,0.; 0001447P0001239 +110,0.8,1.776356839E-16,0.,0.8,0.50000154,0.; 0001449P0001240 +102,4,1453,1455,1457,1459; 0001451P0001241 +110,-0.116534995,-0.304566115,-5.252157638E-05,-8.503893179E-02, 0001453P0001242 +-0.304566115,-5.252157638E-05; 0001453P0001243 +110,-8.503893179E-02,-0.304566115,-5.252157638E-05, 0001455P0001244 +-8.503893179E-02,-0.304566115,1.963257842E-02; 0001455P0001245 +110,-8.503893179E-02,-0.304566115,1.963257842E-02,-0.116534995, 0001457P0001246 +-0.304566115,1.963257842E-02; 0001457P0001247 +110,-0.116534995,-0.304566115,1.963257842E-02,-0.116534995, 0001459P0001248 +-0.304566115,-5.252157638E-05; 0001459P0001249 +144,1463,1,0,1465; 0001461P0001250 +128,1,1,1,1,0,0,1,0,0,0.,0.,0.8,0.8,-5.329070518E-16, 0001463P0001251 +-5.329070518E-16,2.05000098,2.05000098,1.,1.,1.,1., 0001463P0001252 +-8.503893179E-02,-0.304566115,-5.252157638E-05,-0.116534995, 0001463P0001253 +-0.304566115,-5.252157638E-05,-8.503893179E-02,-0.223857415, 0001463P0001254 +-5.252157638E-05,-0.116534995,-0.223857415,-5.252157638E-05,0., 0001463P0001255 +0.8,-5.329070518E-16,2.05000098; 0001463P0001256 +142,0,1463,1467,1477,3; 0001465P0001257 +102,4,1469,1471,1473,1475; 0001467P0001258 +110,0.8,2.05000098,0.,1.33226763E-15,2.05000098,0.; 0001469P0001259 +110,1.365574973E-15,2.05000098,0.,1.365574973E-15,0.,0.; 0001471P0001260 +110,0.,-5.329070518E-16,0.,0.8,-5.329070518E-16,0.; 0001473P0001261 +110,0.8,-5.329070518E-16,0.,0.8,2.05000098,0.; 0001475P0001262 +102,4,1479,1481,1483,1485; 0001477P0001263 +110,-0.116534995,-0.223857415,-5.252157638E-05,-8.503893179E-02, 0001479P0001264 +-0.223857415,-5.252157638E-05; 0001479P0001265 +110,-8.503893179E-02,-0.223857415,-5.252157638E-05, 0001481P0001266 +-8.503893179E-02,-0.304566115,-5.252157638E-05; 0001481P0001267 +110,-8.503893179E-02,-0.304566115,-5.252157638E-05,-0.116534995, 0001483P0001268 +-0.304566115,-5.252157638E-05; 0001483P0001269 +110,-0.116534995,-0.304566115,-5.252157638E-05,-0.116534995, 0001485P0001270 +-0.223857415,-5.252157638E-05; 0001485P0001271 +144,1489,1,0,1491; 0001487P0001272 +128,1,1,1,1,0,0,1,0,0,0.,0.,0.8,0.8,-5.372694169E-16, 0001489P0001273 +-5.372694169E-16,0.161244832,0.161244832,1.,1.,1.,1., 0001489P0001274 +-8.503893179E-02,-0.223857415,-5.252157638E-05,-0.116534995, 0001489P0001275 +-0.223857415,-5.252157638E-05,-8.503893179E-02,-0.217558215, 0001489P0001276 +7.348784236E-04,-0.116534995,-0.217558215,7.348784236E-04,0., 0001489P0001277 +0.8,-5.372694169E-16,0.161244832; 0001489P0001278 +142,0,1489,1493,1503,3; 0001491P0001279 +102,4,1495,1497,1499,1501; 0001493P0001280 +110,0.8,0.161244832,0.,1.110223025E-16,0.161244832,0.; 0001495P0001281 +110,1.110220804E-16,0.161244832,0.,1.110220804E-16, 0001497P0001282 +-1.110223025E-16,0.; 0001497P0001283 +110,0.,-5.372694169E-16,-0.,0.8,-5.372694169E-16,-0.; 0001499P0001284 +110,0.8,-5.372694169E-16,0.,0.8,0.161244832,0.; 0001501P0001285 +102,4,1505,1507,1509,1511; 0001503P0001286 +110,-0.116534995,-0.217558215,7.348784236E-04,-8.503893179E-02, 0001505P0001287 +-0.217558215,7.348784236E-04; 0001505P0001288 +110,-8.503893179E-02,-0.217558215,7.348784236E-04, 0001507P0001289 +-8.503893179E-02,-0.223857415,-5.252157638E-05; 0001507P0001290 +110,-8.503893179E-02,-0.223857415,-5.252157638E-05,-0.116534995, 0001509P0001291 +-0.223857415,-5.252157638E-05; 0001509P0001292 +110,-0.116534995,-0.223857415,-5.252157638E-05,-0.116534995, 0001511P0001293 +-0.217558215,7.348784236E-04; 0001511P0001294 +144,1515,1,0,1517; 0001513P0001295 +128,1,1,1,1,0,0,1,0,0,0.,0.,0.8,0.8,-5.871193272E-16, 0001515P0001296 +-5.871193272E-16,0.13416381,0.13416381,1.,1.,1.,1., 0001515P0001297 +-8.503893179E-02,-0.217558215,7.348784236E-04,-0.116534995, 0001515P0001298 +-0.217558215,7.348784236E-04,-8.503893179E-02,-0.212833815, 0001515P0001299 +3.097078424E-03,-0.116534995,-0.212833815,3.097078424E-03,0., 0001515P0001300 +0.8,-5.871193272E-16,0.13416381; 0001515P0001301 +142,0,1515,1519,1529,3; 0001517P0001302 +102,4,1521,1523,1525,1527; 0001519P0001303 +110,0.8,0.13416381,0.,1.110223025E-16,0.13416381,0.; 0001521P0001304 +110,9.325854755E-17,0.13416381,0.,9.325854755E-17, 0001523P0001305 +7.771561172E-16,0.; 0001523P0001306 +110,0.,-5.871193272E-16,0.,0.8,-5.871193272E-16,0.; 0001525P0001307 +110,0.8,-5.871193272E-16,0.,0.8,0.13416381,0.; 0001527P0001308 +102,4,1531,1533,1535,1537; 0001529P0001309 +110,-0.116534995,-0.212833815,3.097078424E-03,-8.503893179E-02, 0001531P0001310 +-0.212833815,3.097078424E-03; 0001531P0001311 +110,-8.503893179E-02,-0.212833815,3.097078424E-03, 0001533P0001312 +-8.503893179E-02,-0.217558215,7.348784236E-04; 0001533P0001313 +110,-8.503893179E-02,-0.217558215,7.348784236E-04,-0.116534995, 0001535P0001314 +-0.217558215,7.348784236E-04; 0001535P0001315 +110,-0.116534995,-0.217558215,7.348784236E-04,-0.116534995, 0001537P0001316 +-0.212833815,3.097078424E-03; 0001537P0001317 +144,1541,1,0,1543; 0001539P0001318 +128,1,1,1,1,0,0,1,0,0,-0.8,-0.8,0.,0.,-0.128062229,-0.128062229, 0001541P0001319 +6.233288041E-16,6.233288041E-16,1.,1.,1.,1.,-0.116534995, 0001541P0001320 +-0.209684215,7.034078424E-03,-8.503893179E-02,-0.209684215, 0001541P0001321 +7.034078424E-03,-0.116534995,-0.212833815,3.097078424E-03, 0001541P0001322 +-8.503893179E-02,-0.212833815,3.097078424E-03,-0.8,0., 0001541P0001323 +-0.128062229,6.233288041E-16; 0001541P0001324 +142,0,1541,1545,1555,3; 0001543P0001325 +102,4,1547,1549,1551,1553; 0001545P0001326 +110,-0.8,-0.128062229,0.,-1.110223025E-16,-0.128062229,0.; 0001547P0001327 +110,-7.549501468E-17,-0.128062229,0.,-7.549501468E-17, 0001549P0001328 +-1.665334537E-16,0.; 0001549P0001329 +110,0.,6.233288041E-16,0.,-0.8,6.233288041E-16,0.; 0001551P0001330 +110,-0.8,6.233288041E-16,0.,-0.8,-0.128062229,0.; 0001553P0001331 +102,4,1557,1559,1561,1563; 0001555P0001332 +110,-0.116534995,-0.209684215,7.034078424E-03,-8.503893179E-02, 0001557P0001333 +-0.209684215,7.034078424E-03; 0001557P0001334 +110,-8.503893179E-02,-0.209684215,7.034078424E-03, 0001559P0001335 +-8.503893179E-02,-0.212833815,3.097078424E-03; 0001559P0001336 +110,-8.503893179E-02,-0.212833815,3.097078424E-03,-0.116534995, 0001561P0001337 +-0.212833815,3.097078424E-03; 0001561P0001338 +110,-0.116534995,-0.212833815,3.097078424E-03,-0.116534995, 0001563P0001339 +-0.209684215,7.034078424E-03; 0001563P0001340 +144,1567,1,0,1569; 0001565P0001341 +128,1,1,1,1,0,0,1,0,0,-0.8,-0.8,0.,0.,-0.126815156,-0.126815156, 0001567P0001342 +5.773803947E-16,5.773803947E-16,1.,1.,1.,1.,-0.116534995, 0001567P0001343 +-0.207358015,1.145177842E-02,-8.503893179E-02,-0.207358015, 0001567P0001344 +1.145177842E-02,-0.116534995,-0.209684215,7.034078424E-03, 0001567P0001345 +-8.503893179E-02,-0.209684215,7.034078424E-03,-0.8,0., 0001567P0001346 +-0.126815156,5.773803947E-16; 0001567P0001347 +142,0,1567,1571,1581,3; 0001569P0001348 +102,4,1573,1575,1577,1579; 0001571P0001349 +110,-0.8,-0.126815156,0.,-1.110223025E-16,-0.126815156,0.; 0001573P0001350 +110,-6.427436805E-17,-0.126815156,0.,-6.427436805E-17, 0001575P0001351 +3.60822483E-16,0.; 0001575P0001352 +110,0.,5.773803947E-16,0.,-0.8,5.773803947E-16,0.; 0001577P0001353 +110,-0.8,5.773803947E-16,0.,-0.8,-0.126815156,0.; 0001579P0001354 +102,4,1583,1585,1587,1589; 0001581P0001355 +110,-0.116534995,-0.207358015,1.145177842E-02,-8.503893179E-02, 0001583P0001356 +-0.207358015,1.145177842E-02; 0001583P0001357 +110,-8.503893179E-02,-0.207358015,1.145177842E-02, 0001585P0001358 +-8.503893179E-02,-0.209684215,7.034078424E-03; 0001585P0001359 +110,-8.503893179E-02,-0.209684215,7.034078424E-03,-0.116534995, 0001587P0001360 +-0.209684215,7.034078424E-03; 0001587P0001361 +110,-0.116534995,-0.209684215,7.034078424E-03,-0.116534995, 0001589P0001362 +-0.207358015,1.145177842E-02; 0001589P0001363 +402,6,1593,1619,1645,1671,1697,1723; 0001591P0001364 +144,1595,1,0,1597; 0001593P0001365 +128,1,1,1,1,0,0,1,0,0,-1.1999976,-1.1999976,0.,0.,-0.81000092, 0001595P0001366 +-0.81000092,1.110223025E-15,1.110223025E-15,1.,1.,1.,1., 0001595P0001367 +2.283506821E-02,-0.139605515,0.134986896,-2.440893179E-02, 0001595P0001368 +-0.139605515,0.134986896,2.283506821E-02,-0.107715715, 0001595P0001369 +0.134986896,-2.440893179E-02,-0.107715715,0.134986896, 0001595P0001370 +-1.1999976,0.,-0.81000092,1.110223025E-15; 0001595P0001371 +142,0,1595,1599,1609,3; 0001597P0001372 +102,4,1601,1603,1605,1607; 0001599P0001373 +110,-5.842798074E-33,-0.81000092,0.,0.,0.,0.; 0001601P0001374 +110,0.,7.327457745E-16,0.,-1.1999976,7.327457745E-16,0.; 0001603P0001375 +110,-1.1999976,1.110223025E-15,0.,-1.1999976,-0.81000092,0.; 0001605P0001376 +110,-1.1999976,-0.81000092,0.,-4.946049488E-16,-0.81000092,0.; 0001607P0001377 +102,4,1611,1613,1615,1617; 0001609P0001378 +110,-2.440893179E-02,-0.139605515,0.134986896,-2.440893179E-02, 0001611P0001379 +-0.107715715,0.134986896; 0001611P0001380 +110,-2.440893179E-02,-0.107715715,0.134986896,2.283506821E-02, 0001613P0001381 +-0.107715715,0.134986896; 0001613P0001382 +110,2.283506821E-02,-0.107715715,0.134986896,2.283506821E-02, 0001615P0001383 +-0.139605515,0.134986896; 0001615P0001384 +110,2.283506821E-02,-0.139605515,0.134986896,-2.440893179E-02, 0001617P0001385 +-0.139605515,0.134986896; 0001617P0001386 +144,1621,1,0,1623; 0001619P0001387 +128,1,1,1,1,0,0,1,0,0,0.,0.,0.5,0.5,-9.49373E-17,-9.49373E-17, 0001621P0001388 +1.1999976,1.1999976,1.,1.,1.,1.,-2.440893179E-02,-0.139605515, 0001621P0001389 +0.115301856,-2.440893179E-02,-0.139605515,0.134986896, 0001621P0001390 +2.283506821E-02,-0.139605515,0.115301856,2.283506821E-02, 0001621P0001391 +-0.139605515,0.134986896,0.,0.5,-9.49373E-17,1.1999976; 0001621P0001392 +142,0,1621,1625,1635,3; 0001623P0001393 +102,4,1627,1629,1631,1633; 0001625P0001394 +110,2.278490643E-16,1.1999976,0.,2.278490643E-16,0.,0.; 0001627P0001395 +110,0.,-9.49373E-17,0.,0.5,-9.49373E-17,0.; 0001629P0001396 +110,0.5,-9.49373E-17,0.,0.5,1.1999976,0.; 0001631P0001397 +110,0.5,1.1999976,0.,2.220446049E-16,1.1999976,0.; 0001633P0001398 +102,4,1637,1639,1641,1643; 0001635P0001399 +110,2.283506821E-02,-0.139605515,0.115301856,-2.440893179E-02, 0001637P0001400 +-0.139605515,0.115301856; 0001637P0001401 +110,-2.440893179E-02,-0.139605515,0.115301856,-2.440893179E-02, 0001639P0001402 +-0.139605515,0.134986896; 0001639P0001403 +110,-2.440893179E-02,-0.139605515,0.134986896,2.283506821E-02, 0001641P0001404 +-0.139605515,0.134986896; 0001641P0001405 +110,2.283506821E-02,-0.139605515,0.134986896,2.283506821E-02, 0001643P0001406 +-0.139605515,0.115301856; 0001643P0001407 +144,1647,1,0,1649; 0001645P0001408 +128,1,1,1,1,0,0,1,0,0,-5.551115123E-17,-5.551115123E-17,0.5,0.5, 0001647P0001409 +-3.330669074E-16,-3.330669074E-16,0.81000092,0.81000092,1.,1., 0001647P0001410 +1.,1.,2.283506821E-02,-0.139605515,0.115301856,2.283506821E-02, 0001647P0001411 +-0.139605515,0.134986896,2.283506821E-02,-0.107715715, 0001647P0001412 +0.115301856,2.283506821E-02,-0.107715715,0.134986896, 0001647P0001413 +-5.551115123E-17,0.5,-3.330669074E-16,0.81000092; 0001647P0001414 +142,0,1647,1651,1661,3; 0001649P0001415 +102,4,1653,1655,1657,1659; 0001651P0001416 +110,-3.077187825E-17,0.81000092,0.,-3.077187825E-17, 0001653P0001417 +-3.330669074E-16,0.; 0001653P0001418 +110,0.,1.8994965E-17,0.,0.5,1.8994965E-17,0.; 0001655P0001419 +110,0.5,1.8994965E-17,0.,0.5,0.81000092,0.; 0001657P0001420 +110,0.5,0.81000092,0.,-5.551115123E-17,0.81000092,0.; 0001659P0001421 +102,4,1663,1665,1667,1669; 0001661P0001422 +110,2.283506821E-02,-0.107715715,0.115301856,2.283506821E-02, 0001663P0001423 +-0.139605515,0.115301856; 0001663P0001424 +110,2.283506821E-02,-0.139605515,0.115301856,2.283506821E-02, 0001665P0001425 +-0.139605515,0.134986896; 0001665P0001426 +110,2.283506821E-02,-0.139605515,0.134986896,2.283506821E-02, 0001667P0001427 +-0.107715715,0.134986896; 0001667P0001428 +110,2.283506821E-02,-0.107715715,0.134986896,2.283506821E-02, 0001669P0001429 +-0.107715715,0.115301856; 0001669P0001430 +144,1673,1,0,1675; 0001671P0001431 +128,1,1,1,1,0,0,1,0,0,-0.5,-0.5,2.278490643E-16,2.278490643E-16, 0001673P0001432 +-1.1999976,-1.1999976,0.,0.,1.,1.,1.,1.,-2.440893179E-02, 0001673P0001433 +-0.107715715,0.134986896,-2.440893179E-02,-0.107715715, 0001673P0001434 +0.115301856,2.283506821E-02,-0.107715715,0.134986896, 0001673P0001435 +2.283506821E-02,-0.107715715,0.115301856,-0.5,2.278490643E-16, 0001673P0001436 +-1.1999976,0.; 0001673P0001437 +142,0,1673,1677,1687,3; 0001675P0001438 +102,4,1679,1681,1683,1685; 0001677P0001439 +110,2.278490643E-16,-1.1999976,0.,2.278490643E-16,0.,0.; 0001679P0001440 +110,0.,-9.49373E-17,0.,-0.5,-9.49373E-17,0.; 0001681P0001441 +110,-0.5,-9.49373E-17,0.,-0.5,-1.1999976,0.; 0001683P0001442 +110,-0.5,-1.1999976,-0.,2.278490643E-16,-1.1999976,-0.; 0001685P0001443 +102,4,1689,1691,1693,1695; 0001687P0001444 +110,-2.440893179E-02,-0.107715715,0.115301856,2.283506821E-02, 0001689P0001445 +-0.107715715,0.115301856; 0001689P0001446 +110,2.283506821E-02,-0.107715715,0.115301856,2.283506821E-02, 0001691P0001447 +-0.107715715,0.134986896; 0001691P0001448 +110,2.283506821E-02,-0.107715715,0.134986896,-2.440893179E-02, 0001693P0001449 +-0.107715715,0.134986896; 0001693P0001450 +110,-2.440893179E-02,-0.107715715,0.134986896,-2.440893179E-02, 0001695P0001451 +-0.107715715,0.115301856; 0001695P0001452 +144,1699,1,0,1701; 0001697P0001453 +128,1,1,1,1,0,0,1,0,0,-0.5,-0.5,0.,0.,-0.81000092,-0.81000092, 0001699P0001454 +3.330669074E-16,3.330669074E-16,1.,1.,1.,1.,-2.440893179E-02, 0001699P0001455 +-0.139605515,0.134986896,-2.440893179E-02,-0.139605515, 0001699P0001456 +0.115301856,-2.440893179E-02,-0.107715715,0.134986896, 0001699P0001457 +-2.440893179E-02,-0.107715715,0.115301856,-0.5,0.,-0.81000092, 0001699P0001458 +3.330669074E-16; 0001699P0001459 +142,0,1699,1703,1713,3; 0001701P0001460 +102,4,1705,1707,1709,1711; 0001703P0001461 +110,-3.077187825E-17,-0.81000092,0.,-3.077187825E-17, 0001705P0001462 +3.330669074E-16,0.; 0001705P0001463 +110,0.,0.,0.,-0.5,-5.777789833E-34,0.; 0001707P0001464 +110,-0.5,1.8994965E-17,0.,-0.5,-0.81000092,0.; 0001709P0001465 +110,-0.5,-0.81000092,0.,0.,-0.81000092,0.; 0001711P0001466 +102,4,1715,1717,1719,1721; 0001713P0001467 +110,-2.440893179E-02,-0.139605515,0.115301856,-2.440893179E-02, 0001715P0001468 +-0.107715715,0.115301856; 0001715P0001469 +110,-2.440893179E-02,-0.107715715,0.115301856,-2.440893179E-02, 0001717P0001470 +-0.107715715,0.134986896; 0001717P0001471 +110,-2.440893179E-02,-0.107715715,0.134986896,-2.440893179E-02, 0001719P0001472 +-0.139605515,0.134986896; 0001719P0001473 +110,-2.440893179E-02,-0.139605515,0.134986896,-2.440893179E-02, 0001721P0001474 +-0.139605515,0.115301856; 0001721P0001475 +144,1725,1,0,1727; 0001723P0001476 +128,1,1,1,1,0,0,1,0,0,-1.1999976,-1.1999976,0.,0.,-0.81000092, 0001725P0001477 +-0.81000092,7.327457745E-16,7.327457745E-16,1.,1.,1.,1., 0001725P0001478 +2.283506821E-02,-0.139605515,0.115301856,-2.440893179E-02, 0001725P0001479 +-0.139605515,0.115301856,2.283506821E-02,-0.107715715, 0001725P0001480 +0.115301856,-2.440893179E-02,-0.107715715,0.115301856, 0001725P0001481 +-1.1999976,0.,-0.81000092,7.327457745E-16; 0001725P0001482 +142,0,1725,1729,1739,3; 0001727P0001483 +102,4,1731,1733,1735,1737; 0001729P0001484 +110,-1.1999976,-0.81000092,0.,-6.661338148E-16,-0.81000092,0.; 0001731P0001485 +110,-4.946049488E-16,-0.81000092,0.,-4.946049488E-16, 0001733P0001486 +3.330669074E-16,0.; 0001733P0001487 +110,0.,0.,0.,-1.1999976,-8.655970003E-33,0.; 0001735P0001488 +110,-1.1999976,7.327457745E-16,0.,-1.1999976,-0.81000092,0.; 0001737P0001489 +102,4,1741,1743,1745,1747; 0001739P0001490 +110,2.283506821E-02,-0.139605515,0.115301856,-2.440893179E-02, 0001741P0001491 +-0.139605515,0.115301856; 0001741P0001492 +110,-2.440893179E-02,-0.139605515,0.115301856,-2.440893179E-02, 0001743P0001493 +-0.107715715,0.115301856; 0001743P0001494 +110,-2.440893179E-02,-0.107715715,0.115301856,2.283506821E-02, 0001745P0001495 +-0.107715715,0.115301856; 0001745P0001496 +110,2.283506821E-02,-0.107715715,0.115301856,2.283506821E-02, 0001747P0001497 +-0.139605515,0.115301856; 0001747P0001498 +402,3,1751,1787,1801; 0001749P0001499 +144,1753,1,0,1761; 0001751P0001500 +120,1757,1759,-5.329070518E-15,6.283185307; 0001753P0001501 +124,-1.,6.106227E-16,-1.898746E-16,-0.154485432,6.106227E-16,1., 0001755P0001502 +3.798993E-17,-6.484121513E-02,1.898746E-16,3.798993E-17,-1., 0001755P0001503 +0.188530205; 0001755P0001504 +110,0.,0.,3.937007874E-02,0.,0.,0.; 0001757P0001505 +110,1.968503937E-02,0.,-3.937007874E-04,1.968503937E-02,0., 0001759P0001506 +9.168764829E-18; 0001759P0001507 +142,0,1753,1763,1773,3; 0001761P0001508 +102,4,1765,1767,1769,1771; 0001763P0001509 +126,24,3,0,0,1,0,0.,0.,0.,0.,0.285599332,0.571198664, 0001765P0001510 +0.856797996,1.142397329,1.427996661,1.713595993,1.999195325, 0001765P0001511 +2.284794657,2.570393989,2.855993321,3.141592654,3.427191986, 0001765P0001512 +3.712791318,3.99839065,4.283989982,4.569589314,4.855188646, 0001765P0001513 +5.140787979,5.426387311,5.711986643,5.997585975,6.283185307, 0001765P0001514 +6.283185307,6.283185307,6.283185307,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001765P0001515 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,3.764349943E-14, 0001765P0001516 +6.283185307,0.,3.612887728E-14,6.18798553,0.,3.309963298E-14, 0001765P0001517 +5.997585975,0.,2.716798774E-14,5.711986643,0.,2.036898077E-14, 0001765P0001518 +5.426387311,0.,1.374344615E-14,5.140787979,0.,6.077077441E-15, 0001765P0001519 +4.855188646,0.,-1.762763615E-15,4.569589314,0.,-9.602604671E-15, 0001765P0001520 +4.283989982,0.,-1.692202868E-14,3.99839065,0.,-2.458839739E-14, 0001765P0001521 +3.712791318,0.,-3.086698732E-14,3.427191986,0.,-3.73190496E-14, 0001765P0001522 +3.141592654,0.,-4.255680544E-14,2.855993321,0.,-4.692719954E-14, 0001765P0001523 +2.570393989,0.,-5.043023191E-14,2.284794657,0.,-5.341284723E-14, 0001765P0001524 +1.999195325,0.,-5.604851786E-14,1.713595993,0.,-5.851071614E-14, 0001765P0001525 +1.427996661,0.,-6.062596973E-14,1.142397329,0.,-6.34351127E-14, 0001765P0001526 +0.856797996,0.,-6.641772803E-14,0.571198664,0.,-6.940034335E-14, 0001765P0001527 +0.285599332,0.,-7.225611531E-14,9.519977738E-02,0., 0001765P0001528 +-7.377073746E-14,1.776356839E-15,0.,0.,6.283185307,0.,0.,1.; 0001765P0001529 +126,24,3,0,0,1,0,-1.E-02,-1.E-02,-1.E-02,-1.E-02, 0001767P0001530 +-9.545454545E-03,-9.090909091E-03,-8.636363636E-03, 0001767P0001531 +-8.181818182E-03,-7.727272727E-03,-7.272727273E-03, 0001767P0001532 +-6.818181818E-03,-6.363636364E-03,-5.909090909E-03, 0001767P0001533 +-5.454545455E-03,-5.E-03,-4.545454545E-03,-4.090909091E-03, 0001767P0001534 +-3.636363636E-03,-3.181818182E-03,-2.727272727E-03, 0001767P0001535 +-2.272727273E-03,-1.818181818E-03,-1.363636364E-03, 0001767P0001536 +-9.090909091E-04,-4.545454545E-04,0.,0.,0.,0.,1.,1.,1.,1.,1.,1., 0001767P0001537 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001767P0001538 +-8.816894231E-14,1.776356839E-15,0.,1.515151515E-02, 0001767P0001539 +1.776356839E-15,0.,4.545454545E-02,1.776356839E-15,0., 0001767P0001540 +9.090909091E-02,5.329070518E-15,0.,0.136363636,1.776356839E-15, 0001767P0001541 +0.,0.181818182,1.776356839E-15,0.,0.227272727,1.776356839E-15, 0001767P0001542 +0.,0.272727273,1.776356839E-15,0.,0.318181818,1.776356839E-15, 0001767P0001543 +0.,0.363636364,1.776356839E-15,0.,0.409090909,1.776356839E-15, 0001767P0001544 +0.,0.454545455,1.776356839E-15,0.,0.5,1.776356839E-15,0., 0001767P0001545 +0.545454545,1.776356839E-15,0.,0.590909091,1.776356839E-15,0., 0001767P0001546 +0.636363636,5.329070518E-15,0.,0.681818182,1.776356839E-15,0., 0001767P0001547 +0.727272727,1.776356839E-15,0.,0.772727273,1.776356839E-15,0., 0001767P0001548 +0.818181818,1.776356839E-15,0.,0.863636364,1.776356839E-15,0., 0001767P0001549 +0.909090909,1.776356839E-15,0.,0.954545455,1.776356839E-15,0., 0001767P0001550 +0.984848485,1.776356839E-15,0.,1.,1.776356839E-15,0.,-1.E-02,0., 0001767P0001551 +0.,0.,1.; 0001767P0001552 +126,24,3,0,0,1,0,0.,0.,0.,0.,0.285599332,0.571198664, 0001769P0001553 +0.856797996,1.142397329,1.427996661,1.713595993,1.999195325, 0001769P0001554 +2.284794657,2.570393989,2.855993321,3.141592654,3.427191986, 0001769P0001555 +3.712791318,3.99839065,4.283989982,4.569589314,4.855188646, 0001769P0001556 +5.140787979,5.426387311,5.711986643,5.997585975,6.283185307, 0001769P0001557 +6.283185307,6.283185307,6.283185307,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001769P0001558 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001769P0001559 +1.776356839E-15,0.,1.,9.519977738E-02,0.,1.,0.285599332,0.,1., 0001769P0001560 +0.571198664,0.,1.,0.856797996,0.,1.,1.142397329,0.,1., 0001769P0001561 +1.427996661,0.,1.,1.713595993,0.,1.,1.999195325,0.,1., 0001769P0001562 +2.284794657,0.,1.,2.570393989,0.,1.,2.855993321,0.,1., 0001769P0001563 +3.141592654,0.,1.,3.427191986,0.,1.,3.712791318,0.,1., 0001769P0001564 +3.99839065,0.,1.,4.283989982,0.,1.,4.569589314,0.,1., 0001769P0001565 +4.855188646,0.,1.,5.140787979,0.,1.,5.426387311,0.,1., 0001769P0001566 +5.711986643,0.,1.,5.997585975,0.,1.,6.18798553,0.,1., 0001769P0001567 +6.283185307,0.,0.,6.283185307,0.,0.,1.; 0001769P0001568 +126,24,3,0,0,1,0,-1.E-02,-1.E-02,-1.E-02,-1.E-02, 0001771P0001569 +-9.545454545E-03,-9.090909091E-03,-8.636363636E-03, 0001771P0001570 +-8.181818182E-03,-7.727272727E-03,-7.272727273E-03, 0001771P0001571 +-6.818181818E-03,-6.363636364E-03,-5.909090909E-03, 0001771P0001572 +-5.454545455E-03,-5.E-03,-4.545454545E-03,-4.090909091E-03, 0001771P0001573 +-3.636363636E-03,-3.181818182E-03,-2.727272727E-03, 0001771P0001574 +-2.272727273E-03,-1.818181818E-03,-1.363636364E-03, 0001771P0001575 +-9.090909091E-04,-4.545454545E-04,0.,0.,0.,0.,1.,1.,1.,1.,1.,1., 0001771P0001576 +1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1.,1., 0001771P0001577 +6.283185307,0.,0.984848485,6.283185307,0.,0.954545455, 0001771P0001578 +6.283185307,0.,0.909090909,6.283185307,0.,0.863636364, 0001771P0001579 +6.283185307,0.,0.818181818,6.283185307,0.,0.772727273, 0001771P0001580 +6.283185307,0.,0.727272727,6.283185307,0.,0.681818182, 0001771P0001581 +6.283185307,0.,0.636363636,6.283185307,0.,0.590909091, 0001771P0001582 +6.283185307,0.,0.545454545,6.283185307,0.,0.5,6.283185307,0., 0001771P0001583 +0.454545455,6.283185307,0.,0.409090909,6.283185307,0., 0001771P0001584 +0.363636364,6.283185307,0.,0.318181818,6.283185307,0., 0001771P0001585 +0.272727273,6.283185307,0.,0.227272727,6.283185307,0., 0001771P0001586 +0.181818182,6.283185307,0.,0.136363636,6.283185307,0., 0001771P0001587 +9.090909091E-02,6.283185307,0.,4.545454545E-02,6.283185307,0., 0001771P0001588 +1.515151515E-02,6.283185307,0.,2.324529458E-14,6.283185307,0., 0001771P0001589 +-1.E-02,0.,0.,0.,1.; 0001771P0001590 +102,4,1775,1779,1781,1785; 0001773P0001591 +100,-8.093099681E-18,-3.722142891E-18,2.603792619E-19, 0001775P0001592 +1.968503937E-02,-3.017838331E-18,1.968503937E-02, 0001775P0001593 +-3.017838331E-18; 0001775P0001594 +124,-1.,6.106227E-16,-1.898746E-16,-0.154485432,6.106227E-16,1., 0001777P0001595 +3.798993E-17,-6.484121513E-02,1.898746E-16,3.798993E-17,-1., 0001777P0001596 +0.188923906; 0001777P0001597 +126,1,1,1,0,1,0,-1.E-02,-1.E-02,0.,0.,1.,1.,-0.174170471, 0001779P0001598 +-6.484121513E-02,0.188923906,-0.174170471,-6.484121513E-02, 0001779P0001599 +0.188530205,-1.E-02,0.,1.,0.,-0.; 0001779P0001600 +100,8.093099681E-18,-3.798976116E-18,-2.475737244E-19, 0001781P0001601 +1.968503937E-02,3.030643868E-18,1.968503937E-02,3.030643868E-18; 0001781P0001602 +124,-1.,-6.106227E-16,1.898746E-16,-0.154485432,6.106227E-16, 0001783P0001603 +-1.,-3.798993E-17,-6.484121513E-02,1.898746E-16,-3.798993E-17, 0001783P0001604 +1.,0.188530205; 0001783P0001605 +126,1,1,1,0,1,0,-1.E-02,-1.E-02,0.,0.,1.,1.,-0.174170471, 0001785P0001606 +-6.484121513E-02,0.188530205,-0.174170471,-6.484121513E-02, 0001785P0001607 +0.188923906,-1.E-02,0.,-1.,0.,-0.; 0001785P0001608 +144,1789,1,0,1791; 0001787P0001609 +128,1,1,1,1,0,0,1,0,0,-3.670761278E-02,-3.670761278E-02, 0001789P0001610 +1.036707613,1.036707613,-0.536707613,-0.536707613,0.536707613, 0001789P0001611 +0.536707613,1.,1.,1.,1.,-0.133355211,-8.597143611E-02, 0001789P0001612 +0.188923906,-0.175615653,-8.597143611E-02,0.188923906, 0001789P0001613 +-0.133355211,-4.371099416E-02,0.188923906,-0.175615653, 0001789P0001614 +-4.371099416E-02,0.188923906,-3.670761278E-02,1.036707613, 0001789P0001615 +-0.536707613,0.536707613; 0001789P0001616 +142,0,1789,1793,1797,3; 0001791P0001617 +100,0.,0.,-3.611118646E-33,0.5,-7.222237291E-33,0.5, 0001793P0001618 +-7.222237291E-33; 0001793P0001619 +124,1.,-7.213322763E-33,0.,0.5,7.213322763E-33,1.,0., 0001795P0001620 +-3.0531135E-16,0.,0.,1.,0.; 0001795P0001621 +100,-8.093099681E-18,-3.722142891E-18,2.603792619E-19, 0001797P0001622 +1.968503937E-02,-3.017838331E-18,1.968503937E-02, 0001797P0001623 +-3.017838331E-18; 0001797P0001624 +124,-1.,6.106227E-16,-1.898746E-16,-0.154485432,6.106227E-16,1., 0001799P0001625 +3.798993E-17,-6.484121513E-02,1.898746E-16,3.798993E-17,-1., 0001799P0001626 +0.188923906; 0001799P0001627 +144,1803,1,0,1805; 0001801P0001628 +128,1,1,1,1,0,0,1,0,0,-3.670761278E-02,-3.670761278E-02, 0001803P0001629 +1.036707613,1.036707613,-0.536707613,-0.536707613,0.536707613, 0001803P0001630 +0.536707613,1.,1.,1.,1.,-0.133355211,-8.597143611E-02, 0001803P0001631 +0.188530205,-0.175615653,-8.597143611E-02,0.188530205, 0001803P0001632 +-0.133355211,-4.371099416E-02,0.188530205,-0.175615653, 0001803P0001633 +-4.371099416E-02,0.188530205,-3.670761278E-02,1.036707613, 0001803P0001634 +-0.536707613,0.536707613; 0001803P0001635 +142,0,1803,1807,1811,3; 0001805P0001636 +100,0.,0.,-3.611118646E-33,0.5,-7.222237291E-33,0.5, 0001807P0001637 +-7.222237291E-33; 0001807P0001638 +124,1.,-7.213322763E-33,0.,0.5,7.213322763E-33,1.,0., 0001809P0001639 +-3.0531135E-16,0.,0.,1.,0.; 0001809P0001640 +100,-8.093099681E-18,-3.798976116E-18,2.475737244E-19, 0001811P0001641 +1.968503937E-02,-3.030643868E-18,1.968503937E-02, 0001811P0001642 +-3.030643868E-18; 0001811P0001643 +124,-1.,6.106227E-16,-1.898746E-16,-0.154485432,6.106227E-16,1., 0001813P0001644 +3.798993E-17,-6.484121513E-02,1.898746E-16,3.798993E-17,-1., 0001813P0001645 +0.188530205; 0001813P0001646 +402,17,1817,1843,1869,1903,1929,1955,1981,2031,2057,2079,2109, 0001815P0001647 +2135,2161,2187,2213,2255,2305; 0001815P0001648 +144,1819,1,0,1821; 0001817P0001649 +128,1,1,1,1,0,0,1,0,0,-10.,-10.,5.257461789E-15,5.257461789E-15, 0001819P0001650 +-8.61000056,-8.61000056,0.,0.,1.,1.,1.,1.,-0.197637319, 0001819P0001651 +-0.108109415,0.18843958,0.196063468,-0.108109415,0.18843958, 0001819P0001652 +-0.197637319,0.230866985,0.18843958,0.196063468,0.230866985, 0001819P0001653 +0.18843958,-10.,5.257461789E-15,-8.61000056,0.; 0001819P0001654 +142,0,1819,1823,1833,3; 0001821P0001655 +102,4,1825,1827,1829,1831; 0001823P0001656 +110,-10.,-8.61000056,0.,5.257461789E-15,-8.61000056,0.; 0001825P0001657 +110,5.257461789E-15,-8.61000056,0.,5.257461789E-15,0.,0.; 0001827P0001658 +110,0.,-6.106227E-15,0.,-10.,-6.106227E-15,0.; 0001829P0001659 +110,-10.,-7.105427358E-15,0.,-10.,-8.61000056,0.; 0001831P0001660 +102,4,1835,1837,1839,1841; 0001833P0001661 +110,-0.197637319,-0.108109415,0.18843958,0.196063468, 0001835P0001662 +-0.108109415,0.18843958; 0001835P0001663 +110,0.196063468,-0.108109415,0.18843958,0.196063468,0.230866985, 0001837P0001664 +0.18843958; 0001837P0001665 +110,0.196063468,0.230866985,0.18843958,-0.197637319,0.230866985, 0001839P0001666 +0.18843958; 0001839P0001667 +110,-0.197637319,0.230866985,0.18843958,-0.197637319, 0001841P0001668 +-0.108109415,0.18843958; 0001841P0001669 +144,1845,1,0,1847; 0001843P0001670 +128,1,1,1,1,0,0,1,0,0,1.770142E-02,1.770142E-02,3.14999878, 0001845P0001671 +3.14999878,0.,0.,8.997808179,8.997808179,1.,1.,1.,1., 0001845P0001672 +0.196063468,-0.108109415,6.51207863E-02,0.196063468, 0001845P0001673 +-0.108109415,0.18843958,0.196063468,0.246135001,6.51207863E-02, 0001845P0001674 +0.196063468,0.246135001,0.18843958,1.770142E-02,3.14999878,0., 0001845P0001675 +8.997808179; 0001845P0001676 +142,0,1845,1849,1859,3; 0001847P0001677 +102,4,1851,1853,1855,1857; 0001849P0001678 +110,3.14999878,1.196682332E-16,0.,3.14999878,8.61000056,0.; 0001851P0001679 +110,3.14999878,8.61000056,0.,1.770142E-02,8.997808179,0.; 0001853P0001680 +110,1.770142E-02,8.997808179,0.,1.770142E-02,1.776356839E-15,0.; 0001855P0001681 +110,1.770142E-02,0.,0.,3.14999878,0.,0.; 0001857P0001682 +102,4,1861,1863,1865,1867; 0001859P0001683 +110,0.196063468,-0.108109415,0.18843958,0.196063468,0.230866985, 0001861P0001684 +0.18843958; 0001861P0001685 +110,0.196063468,0.230866985,0.18843958,0.196063468,0.246135001, 0001863P0001686 +6.51207863E-02; 0001863P0001687 +110,0.196063468,0.246135001,6.51207863E-02,0.196063468, 0001865P0001688 +-0.108109415,6.51207863E-02; 0001865P0001689 +110,0.196063468,-0.108109415,6.51207863E-02,0.196063468, 0001867P0001690 +-0.108109415,0.18843958; 0001867P0001691 +144,1871,1,0,1873; 0001869P0001692 +128,1,1,1,1,0,0,1,0,0,0.,0.,10.,10.,1.783657434E-02, 0001871P0001693 +1.783657434E-02,3.174049733,3.174049733,1.,1.,1.,1.,0.196063468, 0001871P0001694 +0.246135001,6.51207863E-02,-0.197637319,0.246135001, 0001871P0001695 +6.51207863E-02,0.196063468,0.230866985,0.18843958,-0.197637319, 0001871P0001696 +0.230866985,0.18843958,0.,10.,1.783657434E-02,3.174049733; 0001871P0001697 +142,0,1871,1875,1889,3; 0001873P0001698 +102,6,1877,1879,1881,1883,1885,1887; 0001875P0001699 +110,2.592263584E-18,1.783657434E-02,0.,1.88999876, 0001877P0001700 +1.783657434E-02,0.; 0001877P0001701 +110,1.88999876,1.783657434E-02,0.,8.11000156,1.783657434E-02,0.; 0001879P0001702 +110,8.11000156,1.783657434E-02,0.,10.,1.783657434E-02,0.; 0001881P0001703 +110,10.,1.783657434E-02,0.,10.,3.174049733,0.; 0001883P0001704 +110,10.,3.174049733,0.,0.,3.174049733,0.; 0001885P0001705 +110,4.612978579E-16,3.174049733,0.,4.612978579E-16, 0001887P0001706 +1.783657434E-02,0.; 0001887P0001707 +102,6,1891,1893,1895,1897,1899,1901; 0001889P0001708 +110,0.196063468,0.246135001,6.51207863E-02,0.121654068, 0001891P0001709 +0.246135001,6.51207863E-02; 0001891P0001710 +110,0.121654068,0.246135001,6.51207863E-02,-0.123227932, 0001893P0001711 +0.246135001,6.51207863E-02; 0001893P0001712 +110,-0.123227932,0.246135001,6.51207863E-02,-0.197637319, 0001895P0001713 +0.246135001,6.51207863E-02; 0001895P0001714 +110,-0.197637319,0.246135001,6.51207863E-02,-0.197637319, 0001897P0001715 +0.230866985,0.18843958; 0001897P0001716 +110,-0.197637319,0.230866985,0.18843958,0.196063468,0.230866985, 0001899P0001717 +0.18843958; 0001899P0001718 +110,0.196063468,0.230866985,0.18843958,0.196063468,0.246135001, 0001901P0001719 +6.51207863E-02; 0001901P0001720 +144,1905,1,0,1907; 0001903P0001721 +128,1,1,1,1,0,0,1,0,0,1.770142E-02,1.770142E-02,3.14999878, 0001905P0001722 +3.14999878,0.,0.,8.997808179,8.997808179,1.,1.,1.,1., 0001905P0001723 +-0.197637319,-0.108109415,6.51207863E-02,-0.197637319, 0001905P0001724 +-0.108109415,0.18843958,-0.197637319,0.246135001,6.51207863E-02, 0001905P0001725 +-0.197637319,0.246135001,0.18843958,1.770142E-02,3.14999878,0., 0001905P0001726 +8.997808179; 0001905P0001727 +142,0,1905,1909,1919,3; 0001907P0001728 +102,4,1911,1913,1915,1917; 0001909P0001729 +110,1.770142E-02,8.997808179,0.,1.770142E-02,0.,0.; 0001911P0001730 +110,1.770142E-02,0.,0.,3.14999878,0.,0.; 0001913P0001731 +110,3.14999878,1.196682332E-16,0.,3.14999878,8.61000056,0.; 0001915P0001732 +110,3.14999878,8.61000056,0.,1.770142E-02,8.997808179,0.; 0001917P0001733 +102,4,1921,1923,1925,1927; 0001919P0001734 +110,-0.197637319,0.246135001,6.51207863E-02,-0.197637319, 0001921P0001735 +-0.108109415,6.51207863E-02; 0001921P0001736 +110,-0.197637319,-0.108109415,6.51207863E-02,-0.197637319, 0001923P0001737 +-0.108109415,0.18843958; 0001923P0001738 +110,-0.197637319,-0.108109415,0.18843958,-0.197637319, 0001925P0001739 +0.230866985,0.18843958; 0001925P0001740 +110,-0.197637319,0.230866985,0.18843958,-0.197637319, 0001927P0001741 +0.246135001,6.51207863E-02; 0001927P0001742 +144,1931,1,0,1933; 0001929P0001743 +128,1,1,1,1,0,0,1,0,0,-8.796609274E-14,-8.796609274E-14, 0001931P0001744 +1.770142E-02,1.770142E-02,0.,0.,8.99999978,8.99999978,1.,1.,1., 0001931P0001745 +1.,0.196063468,-0.108109415,6.442388E-02,0.196063468, 0001931P0001746 +-0.108109415,6.51207863E-02,0.196063468,0.246221285, 0001931P0001747 +6.442388E-02,0.196063468,0.246221285,6.51207863E-02, 0001931P0001748 +-8.796609274E-14,1.770142E-02,0.,8.99999978; 0001931P0001749 +142,0,1931,1935,1945,3; 0001933P0001750 +102,4,1937,1939,1941,1943; 0001935P0001751 +110,1.770142E-02,1.776356839E-15,0.,1.770142E-02,8.997808179,0.; 0001937P0001752 +110,1.770142E-02,8.997808179,0.,-8.796609274E-14,8.99999978,0.; 0001939P0001753 +110,-3.419093616E-16,8.99999978,0.,-3.419093616E-16,0.,0.; 0001941P0001754 +110,0.,0.,0.,1.770142E-02,0.,0.; 0001943P0001755 +102,4,1947,1949,1951,1953; 0001945P0001756 +110,0.196063468,-0.108109415,6.51207863E-02,0.196063468, 0001947P0001757 +0.246135001,6.51207863E-02; 0001947P0001758 +110,0.196063468,0.246135001,6.51207863E-02,0.196063468, 0001949P0001759 +0.246221285,6.442388E-02; 0001949P0001760 +110,0.196063468,0.246221285,6.442388E-02,0.196063468, 0001951P0001761 +-0.108109415,6.442388E-02; 0001951P0001762 +110,0.196063468,-0.108109415,6.442388E-02,0.196063468, 0001953P0001763 +-0.108109415,6.51207863E-02; 0001953P0001764 +144,1957,1,0,1959; 0001955P0001765 +128,1,1,1,1,0,0,1,0,0,-1.88999876,-1.88999876,1.338241227E-18, 0001957P0001766 +1.338241227E-18,-2.191600847E-03,-2.191600847E-03, 0001957P0001767 +1.363317108E-32,1.363317108E-32,1.,1.,1.,1.,0.121654068, 0001957P0001768 +0.246135001,6.51207863E-02,0.196063468,0.246135001, 0001957P0001769 +6.51207863E-02,0.121654068,0.246221285,6.51207863E-02, 0001957P0001770 +0.196063468,0.246221285,6.51207863E-02,-1.88999876, 0001957P0001771 +1.338241227E-18,-2.191600847E-03,1.363317108E-32; 0001957P0001772 +142,0,1957,1961,1971,3; 0001959P0001773 +102,4,1963,1965,1967,1969; 0001961P0001774 +110,1.580872428E-35,-2.191600847E-03,0.,0.,0.,0.; 0001963P0001775 +110,0.,0.,0.,-1.88999876,1.363317108E-32,0.; 0001965P0001776 +110,-1.88999876,-1.154076146E-15,0.,-1.88999876, 0001967P0001777 +-2.191600847E-03,0.; 0001967P0001778 +110,-1.88999876,-2.191600847E-03,0.,1.338241227E-18, 0001969P0001779 +-2.191600847E-03,-0.; 0001969P0001780 +102,4,1973,1975,1977,1979; 0001971P0001781 +110,0.196063468,0.246135001,6.51207863E-02,0.196063468, 0001973P0001782 +0.246221285,6.51207863E-02; 0001973P0001783 +110,0.196063468,0.246221285,6.51207863E-02,0.121654068, 0001975P0001784 +0.246221285,6.51207863E-02; 0001975P0001785 +110,0.121654068,0.246221285,6.51207863E-02,0.121654068, 0001977P0001786 +0.246135001,6.51207863E-02; 0001977P0001787 +110,0.121654068,0.246135001,6.51207863E-02,0.196063468, 0001979P0001788 +0.246135001,6.51207863E-02; 0001979P0001789 +144,1983,1,0,1985; 0001981P0001790 +128,1,1,1,1,0,0,1,0,0,-8.11000156,-8.11000156,1.88999876, 0001983P0001791 +1.88999876,5.177808199,5.177808199,6.85999898,6.85999898,1.,1., 0001983P0001792 +1.,1.,0.196063468,0.246135001,6.51207863E-02,-0.197637332, 0001983P0001793 +0.246135001,6.51207863E-02,0.196063468,0.312362985, 0001983P0001794 +6.51207863E-02,-0.197637332,0.312362985,6.51207863E-02, 0001983P0001795 +-8.11000156,1.88999876,5.177808199,6.85999898; 0001983P0001796 +142,0,1983,1987,2009,3; 0001985P0001797 +102,10,1989,1991,1993,1995,1997,1999,2001,2003,2005,2007; 0001987P0001798 +110,-6.2200028,5.1799998,0.,-6.2200028,5.177808199,0.; 0001989P0001799 +110,-6.2200028,5.177808199,0.,3.552713679E-15,5.177808199,0.; 0001991P0001800 +110,3.734920174E-32,5.177808199,0.,3.736501047E-32,5.1799998,0.; 0001993P0001801 +110,3.163025464E-15,5.1799998,0.,1.88999876,5.1799998,0.; 0001995P0001802 +110,1.88999876,5.1799998,0.,1.88999876,6.02000066,0.; 0001997P0001803 +110,1.88999876,6.02000066,0.,2.400216527E-13,6.85999898,0.; 0001999P0001804 +110,4.188871099E-15,6.85999898,0.,-6.2200028,6.85999898,0.; 0002001P0001805 +110,-6.2200028,6.85999898,0.,-8.11000156,6.02000066,0.; 0002003P0001806 +110,-8.11000156,6.02000066,0.,-8.11000156,5.1799998,0.; 0002005P0001807 +110,-8.11000156,5.1799998,0.,-6.2200028,5.1799998,0.; 0002007P0001808 +102,10,2011,2013,2015,2017,2019,2021,2023,2025,2027,2029; 0002009P0001809 +110,0.121654068,0.246221285,6.51207863E-02,0.121654068, 0002011P0001810 +0.246135001,6.51207863E-02; 0002011P0001811 +110,0.121654068,0.246135001,6.51207863E-02,-0.123227932, 0002013P0001812 +0.246135001,6.51207863E-02; 0002013P0001813 +110,-0.123227932,0.246135001,6.51207863E-02,-0.123227932, 0002015P0001814 +0.246221285,6.51207863E-02; 0002015P0001815 +110,-0.123227932,0.246221285,6.51207863E-02,-0.197637332, 0002017P0001816 +0.246221285,6.51207863E-02; 0002017P0001817 +110,-0.197637332,0.246221285,6.51207863E-02,-0.197637332, 0002019P0001818 +0.279292185,6.51207863E-02; 0002019P0001819 +110,-0.197637332,0.279292185,6.51207863E-02,-0.123227932, 0002021P0001820 +0.312362985,6.51207863E-02; 0002021P0001821 +110,-0.123227932,0.312362985,6.51207863E-02,0.121654068, 0002023P0001822 +0.312362985,6.51207863E-02; 0002023P0001823 +110,0.121654068,0.312362985,6.51207863E-02,0.196063468, 0002025P0001824 +0.279292185,6.51207863E-02; 0002025P0001825 +110,0.196063468,0.279292185,6.51207863E-02,0.196063468, 0002027P0001826 +0.246221285,6.51207863E-02; 0002027P0001827 +110,0.196063468,0.246221285,6.51207863E-02,0.121654068, 0002029P0001828 +0.246221285,6.51207863E-02; 0002029P0001829 +144,2033,1,0,2035; 0002031P0001830 +128,1,1,1,1,0,0,1,0,0,-1.63229858,-1.63229858,0.,0.,-8.99999978, 0002033P0001831 +-8.99999978,6.201090879E-17,6.201090879E-17,1.,1.,1.,1., 0002033P0001832 +0.196063468,-0.108109415,6.442388E-02,0.196063468,-0.108109415, 0002033P0001833 +1.601563764E-04,0.196063468,0.246221285,6.442388E-02, 0002033P0001834 +0.196063468,0.246221285,1.601563764E-04,-1.63229858,0., 0002033P0001835 +-8.99999978,6.201090879E-17; 0002033P0001836 +142,0,2033,2037,2047,3; 0002035P0001837 +102,4,2039,2041,2043,2045; 0002037P0001838 +110,-1.63229858,6.201090879E-17,0.,-1.63229858,-8.99999978,0.; 0002039P0001839 +110,-1.63229858,-8.99999978,0.,-4.440892099E-16,-8.99999978,0.; 0002041P0001840 +110,-3.419093616E-16,-8.99999978,0.,-3.419093616E-16,0.,0.; 0002043P0001841 +110,0.,0.,0.,-1.63229858,-1.886215628E-33,0.; 0002045P0001842 +102,4,2049,2051,2053,2055; 0002047P0001843 +110,0.196063468,0.246221285,6.442388E-02,0.196063468, 0002049P0001844 +-0.108109415,6.442388E-02; 0002049P0001845 +110,0.196063468,-0.108109415,6.442388E-02,0.196063468, 0002051P0001846 +-0.108109415,1.601563764E-04; 0002051P0001847 +110,0.196063468,-0.108109415,1.601563764E-04,0.196063468, 0002053P0001848 +0.246221285,1.601563764E-04; 0002053P0001849 +110,0.196063468,0.246221285,1.601563764E-04,0.196063468, 0002055P0001850 +0.246221285,6.442388E-02; 0002055P0001851 +144,2059,1,0,2061; 0002057P0001852 +128,1,1,1,1,0,0,1,0,0,-1.65,-1.65,-1.63229858,-1.63229858, 0002059P0001853 +-2.191600847E-03,-2.191600847E-03,6.26833845E-17,6.26833845E-17, 0002059P0001854 +1.,1.,1.,1.,0.196063468,0.246135001,6.51207863E-02,0.196063468, 0002059P0001855 +0.246135001,6.442388E-02,0.196063468,0.246221285,6.51207863E-02, 0002059P0001856 +0.196063468,0.246221285,6.442388E-02,-1.65,-1.63229858, 0002059P0001857 +-2.191600847E-03,6.26833845E-17; 0002059P0001858 +142,0,2059,2063,2071,3; 0002061P0001859 +102,3,2065,2067,2069; 0002063P0001860 +110,-1.65,-2.191600847E-03,0.,-1.63229858,-7.073910143E-13,0.; 0002065P0001861 +110,-1.63229858,-1.886215628E-33,0.,-1.65,-1.906670645E-33,0.; 0002067P0001862 +110,-1.65,6.26833845E-17,0.,-1.65,-2.191600847E-03,0.; 0002069P0001863 +102,3,2073,2075,2077; 0002071P0001864 +110,0.196063468,0.246135001,6.51207863E-02,0.196063468, 0002073P0001865 +0.246221285,6.442388E-02; 0002073P0001866 +110,0.196063468,0.246221285,6.442388E-02,0.196063468, 0002075P0001867 +0.246221285,6.51207863E-02; 0002075P0001868 +110,0.196063468,0.246221285,6.51207863E-02,0.196063468, 0002077P0001869 +0.246135001,6.51207863E-02; 0002077P0001870 +144,2081,1,0,2083; 0002079P0001871 +128,1,1,1,1,0,0,1,0,0,-1.65,-1.65,3.208710425E-30, 0002081P0001872 +3.208710425E-30,-0.84000086,-0.84000086,6.26833845E-17, 0002081P0001873 +6.26833845E-17,1.,1.,1.,1.,0.196063468,0.246221285, 0002081P0001874 +6.51207863E-02,0.196063468,0.246221285,1.601563764E-04, 0002081P0001875 +0.196063468,0.279292185,6.51207863E-02,0.196063468,0.279292185, 0002081P0001876 +1.601563764E-04,-1.65,3.208710425E-30,-0.84000086, 0002081P0001877 +6.26833845E-17; 0002081P0001878 +142,0,2081,2085,2097,3; 0002083P0001879 +102,5,2087,2089,2091,2093,2095; 0002085P0001880 +110,-1.63229858,-0.84000086,0.,-3.191157387E-17,-0.84000086,0.; 0002087P0001881 +110,3.208710425E-30,-0.84000086,0.,0.,0.,0.; 0002089P0001882 +110,0.,0.,0.,-1.65,-1.906670645E-33,0.; 0002091P0001883 +110,-1.65,6.26833845E-17,0.,-1.65,-0.84000086,0.; 0002093P0001884 +110,-1.65,-0.84000086,0.,-1.63229858,-0.84000086,0.; 0002095P0001885 +102,5,2099,2101,2103,2105,2107; 0002097P0001886 +110,0.196063468,0.246221285,6.442388E-02,0.196063468, 0002099P0001887 +0.246221285,1.601563764E-04; 0002099P0001888 +110,0.196063468,0.246221285,1.601563764E-04,0.196063468, 0002101P0001889 +0.279292185,1.601563764E-04; 0002101P0001890 +110,0.196063468,0.279292185,1.601563764E-04,0.196063468, 0002103P0001891 +0.279292185,6.51207863E-02; 0002103P0001892 +110,0.196063468,0.279292185,6.51207863E-02,0.196063468, 0002105P0001893 +0.246221285,6.51207863E-02; 0002105P0001894 +110,0.196063468,0.246221285,6.51207863E-02,0.196063468, 0002107P0001895 +0.246221285,6.442388E-02; 0002107P0001896 +144,2111,1,0,2113; 0002109P0001897 +128,1,1,1,1,0,0,1,0,0,-1.050116347E-28,-1.050116347E-28,1.65, 0002111P0001898 +1.65,-3.117490123E-16,-3.117490123E-16,2.068258323,2.068258323, 0002111P0001899 +1.,1.,1.,1.,0.121654068,0.312362985,1.601563764E-04,0.121654068, 0002111P0001900 +0.312362985,6.51207863E-02,0.196063468,0.279292185, 0002111P0001901 +1.601563764E-04,0.196063468,0.279292185,6.51207863E-02, 0002111P0001902 +-1.050116347E-28,1.65,-3.117490123E-16,2.068258323; 0002111P0001903 +142,0,2111,2115,2125,3; 0002113P0001904 +102,4,2117,2119,2121,2123; 0002115P0001905 +110,1.65,2.068258323,0.,3.907742359E-16,2.068258323,0.; 0002117P0001906 +110,-1.050116347E-28,2.068258323,0.,0.,0.,0.; 0002119P0001907 +110,0.,0.,0.,1.65,-2.013920869E-32,0.; 0002121P0001908 +110,1.65,-3.117490123E-16,0.,1.65,2.068258323,0.; 0002123P0001909 +102,4,2127,2129,2131,2133; 0002125P0001910 +110,0.196063468,0.279292185,6.51207863E-02,0.196063468, 0002127P0001911 +0.279292185,1.601563764E-04; 0002127P0001912 +110,0.196063468,0.279292185,1.601563764E-04,0.121654068, 0002129P0001913 +0.312362985,1.601563764E-04; 0002129P0001914 +110,0.121654068,0.312362985,1.601563764E-04,0.121654068, 0002131P0001915 +0.312362985,6.51207863E-02; 0002131P0001916 +110,0.121654068,0.312362985,6.51207863E-02,0.196063468, 0002133P0001917 +0.279292185,6.51207863E-02; 0002133P0001918 +144,2137,1,0,2139; 0002135P0001919 +128,1,1,1,1,0,0,1,0,0,0.,0.,1.65,1.65,-3.1329309E-16, 0002137P0001920 +-3.1329309E-16,6.2200028,6.2200028,1.,1.,1.,1.,-0.123227932, 0002137P0001921 +0.312362985,1.601563764E-04,-0.123227932,0.312362985, 0002137P0001922 +6.51207863E-02,0.121654068,0.312362985,1.601563764E-04, 0002137P0001923 +0.121654068,0.312362985,6.51207863E-02,0.,1.65,-3.1329309E-16, 0002137P0001924 +6.2200028; 0002137P0001925 +142,0,2137,2141,2151,3; 0002139P0001926 +102,4,2143,2145,2147,2149; 0002141P0001927 +110,1.65,6.2200028,0.,1.181020544E-15,6.2200028,0.; 0002143P0001928 +110,1.442755697E-31,6.2200028,0.,0.,0.,0.; 0002145P0001929 +110,0.,0.,0.,1.65,-2.403199459E-33,0.; 0002147P0001930 +110,1.65,-3.1329309E-16,0.,1.65,6.2200028,0.; 0002149P0001931 +102,4,2153,2155,2157,2159; 0002151P0001932 +110,0.121654068,0.312362985,6.51207863E-02,0.121654068, 0002153P0001933 +0.312362985,1.601563764E-04; 0002153P0001934 +110,0.121654068,0.312362985,1.601563764E-04,-0.123227932, 0002155P0001935 +0.312362985,1.601563764E-04; 0002155P0001936 +110,-0.123227932,0.312362985,1.601563764E-04,-0.123227932, 0002157P0001937 +0.312362985,6.51207863E-02; 0002157P0001938 +110,-0.123227932,0.312362985,6.51207863E-02,0.121654068, 0002159P0001939 +0.312362985,6.51207863E-02; 0002159P0001940 +144,2163,1,0,2165; 0002161P0001941 +128,1,1,1,1,0,0,1,0,0,0.,0.,1.65,1.65,-2.608328022E-16, 0002163P0001942 +-2.608328022E-16,2.068258323,2.068258323,1.,1.,1.,1., 0002163P0001943 +-0.197637332,0.279292185,1.601563764E-04,-0.197637332, 0002163P0001944 +0.279292185,6.51207863E-02,-0.123227932,0.312362985, 0002163P0001945 +1.601563764E-04,-0.123227932,0.312362985,6.51207863E-02,0.,1.65, 0002163P0001946 +-2.608328022E-16,2.068258323; 0002163P0001947 +142,0,2163,2167,2177,3; 0002165P0001948 +102,4,2169,2171,2173,2175; 0002167P0001949 +110,1.65,2.068258323,0.,3.269512812E-16,2.068258323,0.; 0002169P0001950 +110,6.622400017E-29,2.068258323,0.,0.,0.,0.; 0002171P0001951 +110,0.,0.,0.,1.65,-5.958345765E-33,0.; 0002173P0001952 +110,1.65,-2.608328022E-16,0.,1.65,2.068258323,0.; 0002175P0001953 +102,4,2179,2181,2183,2185; 0002177P0001954 +110,-0.123227932,0.312362985,6.51207863E-02,-0.123227932, 0002179P0001955 +0.312362985,1.601563764E-04; 0002179P0001956 +110,-0.123227932,0.312362985,1.601563764E-04,-0.197637332, 0002181P0001957 +0.279292185,1.601563764E-04; 0002181P0001958 +110,-0.197637332,0.279292185,1.601563764E-04,-0.197637332, 0002183P0001959 +0.279292185,6.51207863E-02; 0002183P0001960 +110,-0.197637332,0.279292185,6.51207863E-02,-0.123227932, 0002185P0001961 +0.312362985,6.51207863E-02; 0002185P0001962 +144,2189,1,0,2191; 0002187P0001963 +128,1,1,1,1,0,0,1,0,0,-3.191157387E-17,-3.191157387E-17,1.65, 0002189P0001964 +1.65,-1.906670645E-33,-1.906670645E-33,0.84000086,0.84000086,1., 0002189P0001965 +1.,1.,1.,-0.197637332,0.246221285,1.601563764E-04,-0.197637332, 0002189P0001966 +0.246221285,6.51207863E-02,-0.197637332,0.279292185, 0002189P0001967 +1.601563764E-04,-0.197637332,0.279292185,6.51207863E-02, 0002189P0001968 +-3.191157387E-17,1.65,-1.906670645E-33,0.84000086; 0002189P0001969 +142,0,2189,2193,2203,3; 0002191P0001970 +102,4,2195,2197,2199,2201; 0002193P0001971 +110,1.65,0.84000086,0.,-3.191157387E-17,0.84000086,0.; 0002195P0001972 +110,9.739052514E-32,0.84000086,0.,0.,0.,0.; 0002197P0001973 +110,0.,0.,0.,1.65,-1.906670645E-33,0.; 0002199P0001974 +110,1.65,6.26833845E-17,0.,1.65,0.84000086,0.; 0002201P0001975 +102,4,2205,2207,2209,2211; 0002203P0001976 +110,-0.197637332,0.279292185,6.51207863E-02,-0.197637332, 0002205P0001977 +0.279292185,1.601563764E-04; 0002205P0001978 +110,-0.197637332,0.279292185,1.601563764E-04,-0.197637332, 0002207P0001979 +0.246221285,1.601563764E-04; 0002207P0001980 +110,-0.197637332,0.246221285,1.601563764E-04,-0.197637332, 0002209P0001981 +0.246221285,6.51207863E-02; 0002209P0001982 +110,-0.197637332,0.246221285,6.51207863E-02,-0.197637332, 0002211P0001983 +0.279292185,6.51207863E-02; 0002211P0001984 +144,2215,1,0,2217; 0002213P0001985 +128,1,1,1,1,0,0,1,0,0,-10.00000032,-10.00000032,5.495604166E-15, 0002215P0001986 +5.495604166E-15,-8.99999978,-8.99999978,1.363317108E-32, 0002215P0001987 +1.363317108E-32,1.,1.,1.,1.,-0.197637332,-0.108109415, 0002215P0001988 +1.601563764E-04,0.196063468,-0.108109415,1.601563764E-04, 0002215P0001989 +-0.197637332,0.246221285,1.601563764E-04,0.196063468, 0002215P0001990 +0.246221285,1.601563764E-04,-10.00000032,5.495604166E-15, 0002215P0001991 +-8.99999978,1.363317108E-32; 0002215P0001992 +142,0,2215,2219,2237,3; 0002217P0001993 +102,8,2221,2223,2225,2227,2229,2231,2233,2235; 0002219P0001994 +110,-10.00000032,-8.99999978,0.,5.329070518E-15,-8.99999978,0.; 0002221P0001995 +110,5.495604166E-15,-8.99999978,0.,5.495604166E-15,0.,0.; 0002223P0001996 +110,0.,0.,0.,-1.88999876,1.363317108E-32,0.; 0002225P0001997 +110,-1.88999876,-1.154076146E-15,0.,-1.88999876,-5.1799998,0.; 0002227P0001998 +110,-1.88999876,-5.1799998,0.,-8.11000156,-5.1799998,0.; 0002229P0001999 +110,-8.11000156,-5.1799998,0.,-8.11000156,-5.329070518E-15,0.; 0002231P0002000 +110,-8.11000156,-4.95215105E-15,0.,-10.00000032,-4.95215105E-15, 0002233P0002001 +0.; 0002233P0002002 +110,-10.00000032,-6.106227195E-15,0.,-10.00000032,-8.99999978, 0002235P0002003 +0.; 0002235P0002004 +102,8,2239,2241,2243,2245,2247,2249,2251,2253; 0002237P0002005 +110,-0.197637332,-0.108109415,1.601563764E-04,0.196063468, 0002239P0002006 +-0.108109415,1.601563764E-04; 0002239P0002007 +110,0.196063468,-0.108109415,1.601563764E-04,0.196063468, 0002241P0002008 +0.246221285,1.601563764E-04; 0002241P0002009 +110,0.196063468,0.246221285,1.601563764E-04,0.121654068, 0002243P0002010 +0.246221285,1.601563764E-04; 0002243P0002011 +110,0.121654068,0.246221285,1.601563764E-04,0.121654068, 0002245P0002012 +4.228428487E-02,1.601563764E-04; 0002245P0002013 +110,0.121654068,4.228428487E-02,1.601563764E-04,-0.123227932, 0002247P0002014 +4.228428487E-02,1.601563764E-04; 0002247P0002015 +110,-0.123227932,4.228428487E-02,1.601563764E-04,-0.123227932, 0002249P0002016 +0.246221285,1.601563764E-04; 0002249P0002017 +110,-0.123227932,0.246221285,1.601563764E-04,-0.197637332, 0002251P0002018 +0.246221285,1.601563764E-04; 0002251P0002019 +110,-0.197637332,0.246221285,1.601563764E-04,-0.197637332, 0002253P0002020 +-0.108109415,1.601563764E-04; 0002253P0002021 +144,2257,1,0,2259; 0002255P0002022 +128,1,1,1,1,0,0,1,0,0,-8.11000156,-8.11000156,1.88999876, 0002257P0002023 +1.88999876,0.,0.,6.85999898,6.85999898,1.,1.,1.,1.,0.196063468, 0002257P0002024 +4.228428487E-02,1.601563764E-04,-0.197637332,4.228428487E-02, 0002257P0002025 +1.601563764E-04,0.196063468,0.312362985,1.601563764E-04, 0002257P0002026 +-0.197637332,0.312362985,1.601563764E-04,-8.11000156,1.88999876, 0002257P0002027 +0.,6.85999898; 0002257P0002028 +142,0,2257,2261,2283,3; 0002259P0002029 +102,10,2263,2265,2267,2269,2271,2273,2275,2277,2279,2281; 0002261P0002030 +110,-6.2200028,5.1799998,0.,-6.2200028,3.552713679E-15,0.; 0002263P0002031 +110,-6.2200028,3.798074904E-15,0.,0.,3.798074904E-15,0.; 0002265P0002032 +110,0.,0.,0.,3.736501047E-32,5.1799998,0.; 0002267P0002033 +110,3.163025464E-15,5.1799998,0.,1.88999876,5.1799998,0.; 0002269P0002034 +110,1.88999876,5.1799998,0.,1.88999876,6.02000066,0.; 0002271P0002035 +110,1.88999876,6.02000066,0.,2.400216527E-13,6.85999898,0.; 0002273P0002036 +110,4.188871099E-15,6.85999898,0.,-6.2200028,6.85999898,0.; 0002275P0002037 +110,-6.2200028,6.85999898,0.,-8.11000156,6.02000066,0.; 0002277P0002038 +110,-8.11000156,6.02000066,0.,-8.11000156,5.1799998,0.; 0002279P0002039 +110,-8.11000156,5.1799998,0.,-6.2200028,5.1799998,0.; 0002281P0002040 +102,10,2285,2287,2289,2291,2293,2295,2297,2299,2301,2303; 0002283P0002041 +110,0.121654068,0.246221285,1.601563764E-04,0.121654068, 0002285P0002042 +4.228428487E-02,1.601563764E-04; 0002285P0002043 +110,0.121654068,4.228428487E-02,1.601563764E-04,-0.123227932, 0002287P0002044 +4.228428487E-02,1.601563764E-04; 0002287P0002045 +110,-0.123227932,4.228428487E-02,1.601563764E-04,-0.123227932, 0002289P0002046 +0.246221285,1.601563764E-04; 0002289P0002047 +110,-0.123227932,0.246221285,1.601563764E-04,-0.197637332, 0002291P0002048 +0.246221285,1.601563764E-04; 0002291P0002049 +110,-0.197637332,0.246221285,1.601563764E-04,-0.197637332, 0002293P0002050 +0.279292185,1.601563764E-04; 0002293P0002051 +110,-0.197637332,0.279292185,1.601563764E-04,-0.123227932, 0002295P0002052 +0.312362985,1.601563764E-04; 0002295P0002053 +110,-0.123227932,0.312362985,1.601563764E-04,0.121654068, 0002297P0002054 +0.312362985,1.601563764E-04; 0002297P0002055 +110,0.121654068,0.312362985,1.601563764E-04,0.196063468, 0002299P0002056 +0.279292185,1.601563764E-04; 0002299P0002057 +110,0.196063468,0.279292185,1.601563764E-04,0.196063468, 0002301P0002058 +0.246221285,1.601563764E-04; 0002301P0002059 +110,0.196063468,0.246221285,1.601563764E-04,0.121654068, 0002303P0002060 +0.246221285,1.601563764E-04; 0002303P0002061 +144,2307,1,0,2309; 0002305P0002062 +128,1,1,1,1,0,0,1,0,0,-3.419093616E-16,-3.419093616E-16,1.65, 0002307P0002063 +1.65,0.,0.,8.99999978,8.99999978,1.,1.,1.,1.,-0.197637332, 0002307P0002064 +-0.108109415,1.601563764E-04,-0.197637332,-0.108109415, 0002307P0002065 +6.51207863E-02,-0.197637332,0.246221285,1.601563764E-04, 0002307P0002066 +-0.197637332,0.246221285,6.51207863E-02,-3.419093616E-16,1.65, 0002307P0002067 +0.,8.99999978; 0002307P0002068 +142,0,2307,2311,2321,3; 0002309P0002069 +102,4,2313,2315,2317,2319; 0002311P0002070 +110,1.65,8.99999978,0.,-3.419093616E-16,8.99999978,0.; 0002313P0002071 +110,-3.419093616E-16,8.99999978,0.,-3.419093616E-16,0.,0.; 0002315P0002072 +110,0.,6.26833845E-17,0.,1.65,6.26833845E-17,0.; 0002317P0002073 +110,1.65,6.26833845E-17,0.,1.65,8.99999978,0.; 0002319P0002074 +102,4,2323,2325,2327,2329; 0002321P0002075 +110,-0.197637332,0.246221285,6.51207863E-02,-0.197637332, 0002323P0002076 +0.246221285,1.601563764E-04; 0002323P0002077 +110,-0.197637332,0.246221285,1.601563764E-04,-0.197637332, 0002325P0002078 +-0.108109415,1.601563764E-04; 0002325P0002079 +110,-0.197637332,-0.108109415,1.601563764E-04,-0.197637332, 0002327P0002080 +-0.108109415,6.51207863E-02; 0002327P0002081 +110,-0.197637332,-0.108109415,6.51207863E-02,-0.197637332, 0002329P0002082 +0.246221285,6.51207863E-02; 0002329P0002083 +S 1G 4D 2330P 2083 T0000001 diff --git a/src/Mod/Idf/lib/footprints_models.csv b/src/Mod/Idf/lib/footprints_models.csv index ac49ec372..3cf356eb6 100644 --- a/src/Mod/Idf/lib/footprints_models.csv +++ b/src/Mod/Idf/lib/footprints_models.csv @@ -1,5 +1,5 @@ "FOOTPRINT" "STEP FILE" -"SOT23-R" "SOT23.stp" +"SOT23-R" "SOT23.igs" "SMD_C_0805-R" "0805_SMD.stp" "SMD_C_1210-R" "1210_SMD.stp" "SMD_R_1206-R" "1206_SMD.stp" @@ -13,7 +13,7 @@ "MSOP10E_LT" "MSOP_10.stp" "TCMT11XX" "TCMT1107_4.stp" "SMB-TB" "SMB_DO_214AA.stp" -"SOT404-GDS-R" "SOT404.stp" +"SOT404-GDS-R" "SOT404.igs" "SOT428-A1-A2C-R" "SOT428_DPAK.stp" "SOT96-1-R" "SOT_96.stp" "SOT323-BEC-R" "SOT_323_3.stp" @@ -22,9 +22,9 @@ "SOD523-R" "SOD_523.stp" "TSM-104-01-L-DV" "TSM_104_01_L_DV_A.stp" "TSM-103-01-L-DV-A" "TSM_103_01_L_DV_A.stp" -"SOD323-R" "SOD_323.stp" +"SOD323-R" "SOD_323.igs" "VC0603-R" "VC0603_SMD.stp" -"RLF12545" "RLF_12545.stp" +"RLF12545" "RLF_12545.igs" "CAPAE830X1050" "CAP_50SGV_8_10.stp" "RLF7030-R" "RLF_7030.stp" "EPS_B66285E" "EPL22_6_16.stp" diff --git a/src/Mod/Sketcher/Gui/DrawSketchHandler.cpp b/src/Mod/Sketcher/Gui/DrawSketchHandler.cpp index 947299062..f75cc8329 100644 --- a/src/Mod/Sketcher/Gui/DrawSketchHandler.cpp +++ b/src/Mod/Sketcher/Gui/DrawSketchHandler.cpp @@ -195,7 +195,7 @@ int DrawSketchHandler::seekAutoConstraint(std::vector &suggested const float tangDeviation = 2.; int tangId = Constraint::GeoUndef; - float smlTangDist = 1e15; + float smlTangDist = 1e15f; // Get geometry list const std::vector geomlist = sketchgui->getSketchObject()->getCompleteGeometry(); diff --git a/src/WindowsInstaller/ModPart.wxi b/src/WindowsInstaller/ModPart.wxi index 2bf6ac3f2..eb5803e12 100644 --- a/src/WindowsInstaller/ModPart.wxi +++ b/src/WindowsInstaller/ModPart.wxi @@ -28,6 +28,8 @@ + + \ No newline at end of file diff --git a/src/WindowsInstaller/ModPartDesign.wxi b/src/WindowsInstaller/ModPartDesign.wxi index 87b95e22e..03e1905f1 100644 --- a/src/WindowsInstaller/ModPartDesign.wxi +++ b/src/WindowsInstaller/ModPartDesign.wxi @@ -28,6 +28,8 @@ + + diff --git a/src/WindowsInstaller/ModSketcher.wxi b/src/WindowsInstaller/ModSketcher.wxi index 703ffbc2b..4714d886f 100644 --- a/src/WindowsInstaller/ModSketcher.wxi +++ b/src/WindowsInstaller/ModSketcher.wxi @@ -28,7 +28,7 @@ - + \ No newline at end of file